diff --git a/Assets/Editor/DDSAtlasSlicerWindow.cs b/Assets/Editor/DDSAtlasSlicerWindow.cs new file mode 100644 index 0000000000..f79d014eb3 --- /dev/null +++ b/Assets/Editor/DDSAtlasSlicerWindow.cs @@ -0,0 +1,576 @@ +#if UNITY_EDITOR +using System; +using System.Collections.Generic; +using System.Globalization; +using System.IO; +using System.Linq; +using System.Text; +using UnityEditor; +using UnityEngine; + +public class DDSAtlasSlicerWindow : EditorWindow +{ + [SerializeField] private Texture2D _ddsAtlas; + [SerializeField] private TextAsset _txtAsset; // Reference to the .txt in Project + [SerializeField] private bool _txtIsGB2312 = true; + [SerializeField] private bool _trimEmptyNames = true; + [SerializeField] private bool _padIndexIfMissing = true; + [SerializeField] private int _paddingPixels = 0; + [SerializeField] private float _pixelsPerUnit = 100f; + [SerializeField] private bool _exportAsIndividualPngs = false; + [SerializeField] private string _exportFolder = string.Empty; // Project relative (starts with Assets/) + + private string _status; + + [MenuItem("Tools/Sprites/Slice DDS Atlas From TXT")] + private static void Open() + { + var win = GetWindow(true, "DDS Atlas Slicer", true); + win.minSize = new Vector2(520, 280); + win.Show(); + } + + private void OnGUI() + { + EditorGUILayout.LabelField("Input", EditorStyles.boldLabel); + _ddsAtlas = (Texture2D)EditorGUILayout.ObjectField("DDS Atlas", _ddsAtlas, typeof(Texture2D), false); + _txtAsset = (TextAsset)EditorGUILayout.ObjectField("TXT (name list)", _txtAsset, typeof(TextAsset), false); + _txtIsGB2312 = EditorGUILayout.ToggleLeft("Decode TXT with GB2312 (Chinese)", _txtIsGB2312); + _trimEmptyNames = EditorGUILayout.ToggleLeft("Trim empty or whitespace-only names", _trimEmptyNames); + _padIndexIfMissing = EditorGUILayout.ToggleLeft("If name missing, use index as fallback", _padIndexIfMissing); + _paddingPixels = EditorGUILayout.IntField("Sprite Padding (px)", _paddingPixels); + _pixelsPerUnit = EditorGUILayout.FloatField("Pixels Per Unit", _pixelsPerUnit); + + GUILayout.Space(6); + EditorGUILayout.LabelField("Output", EditorStyles.boldLabel); + _exportAsIndividualPngs = EditorGUILayout.ToggleLeft("Export each sprite as an individual PNG file", _exportAsIndividualPngs); + if (_exportAsIndividualPngs) + { + EditorGUILayout.BeginHorizontal(); + EditorGUILayout.PrefixLabel("Export Folder (Project)"); + EditorGUILayout.SelectableLabel(string.IsNullOrEmpty(_exportFolder) ? "(auto: /_slices)" : _exportFolder, GUILayout.Height(16)); + if (GUILayout.Button("Change...", GUILayout.Width(90))) + { + string start = string.IsNullOrEmpty(_exportFolder) ? Application.dataPath : ProjectPathToAbsolute(_exportFolder); + string chosen = EditorUtility.OpenFolderPanel("Choose export folder (inside Assets)", start, ""); + if (!string.IsNullOrEmpty(chosen)) + { + string projRel = AbsoluteToProjectPath(chosen); + if (!string.IsNullOrEmpty(projRel)) + { + _exportFolder = projRel; + } + else + { + EditorUtility.DisplayDialog("Export Folder", "Please choose a folder inside the project's Assets/ directory.", "OK"); + } + } + } + EditorGUILayout.EndHorizontal(); + } + + GUILayout.Space(8); + if (GUILayout.Button("Slice Atlas From TXT", GUILayout.Height(32))) + { + TrySlice(); + } + + if (!string.IsNullOrEmpty(_status)) + { + EditorGUILayout.HelpBox(_status, MessageType.Info); + } + } + + private void TrySlice() + { + _status = string.Empty; + + if (_ddsAtlas == null) + { + _status = "Please assign a DDS atlas Texture2D asset."; + Repaint(); + return; + } + if (_txtAsset == null) + { + _status = "Please assign the TXT definition asset."; + Repaint(); + return; + } + + string txtPath = AssetDatabase.GetAssetPath(_txtAsset); + string atlasPath = AssetDatabase.GetAssetPath(_ddsAtlas); + if (string.IsNullOrEmpty(txtPath) || string.IsNullOrEmpty(atlasPath)) + { + _status = "Invalid asset references."; + Repaint(); + return; + } + + try + { + var parsed = ParseTxt(txtPath, _txtIsGB2312); + if (parsed == null) + { + _status = "Failed to parse TXT (null)."; + Repaint(); + return; + } + + if (_exportAsIndividualPngs) + { + ExportSpritesAsPNGs(atlasPath, parsed.SpriteWidth, parsed.SpriteHeight, parsed.Columns, parsed.Rows, parsed.Names); + _status = $"Exported {parsed.Columns * parsed.Rows} PNG sprites."; + } + else + { + ApplySlicing(atlasPath, parsed.SpriteWidth, parsed.SpriteHeight, parsed.Columns, parsed.Rows, parsed.Names); + _status = $"Sliced {_ddsAtlas.name} into {parsed.Columns * parsed.Rows} sprites."; + } + } + catch (Exception ex) + { + Debug.LogError($"[DDSAtlasSlicer] Error: {ex}"); + _status = "Error. See Console."; + } + finally + { + Repaint(); + } + } + + private class TxtDefinition + { + public int SpriteWidth; + public int SpriteHeight; + public int Columns; + public int Rows; + public List Names; + } + + private TxtDefinition ParseTxt(string path, bool gb2312) + { + Encoding GetEncoding() + { +#if NET_STANDARD_2_1 || NET_6_0_OR_GREATER + Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); +#endif + return Encoding.GetEncoding("GB2312"); + } + + string[] lines; + if (gb2312) + { + var enc = GetEncoding(); + lines = File.ReadAllLines(path, enc); + } + else + { + lines = File.ReadAllLines(path, Encoding.UTF8); + } + + if (lines.Length < 4) + throw new InvalidDataException("TXT must have at least 4 lines: width, height, columns, rows."); + + int ReadInt(string s) + { + if (int.TryParse(s.Trim(), NumberStyles.Integer, CultureInfo.InvariantCulture, out int v)) return v; + if (int.TryParse(s.Trim(), out v)) return v; + throw new InvalidDataException($"Cannot parse integer: '{s}'"); + } + + int spriteWidth = ReadInt(lines[0]); + int spriteHeight = ReadInt(lines[1]); + int columns = ReadInt(lines[3]); + int rows = ReadInt(lines[2]); + + var names = new List(); + for (int i = 4; i < lines.Length; i++) + { + string raw = lines[i]; + string name = _trimEmptyNames ? raw.Trim() : raw; + if (string.IsNullOrEmpty(name)) + { + if (_padIndexIfMissing) + { + names.Add((i - 4).ToString()); + } + else + { + names.Add(string.Empty); + } + } + else + { + // Usually the list contains ".dds" suffix; strip it + if (name.EndsWith(".dds", StringComparison.OrdinalIgnoreCase)) + { + name = name.Substring(0, name.Length - 4); + } + names.Add(name); + } + } + + return new TxtDefinition + { + SpriteWidth = spriteWidth, + SpriteHeight = spriteHeight, + Columns = columns, + Rows = rows, + Names = names + }; + } + + private void ApplySlicing(string atlasAssetPath, int spriteWidth, int spriteHeight, int columns, int rows, List names) + { + var importer = AssetImporter.GetAtPath(atlasAssetPath) as TextureImporter; + if (importer == null) + { + // Fallback path for formats like DDS that don't use TextureImporter for sprite slicing + CreateSpritesAsSubAssets(atlasAssetPath, spriteWidth, spriteHeight, columns, rows, names); + return; + } + + // Ensure Readable settings and Multiple sprite mode + importer.textureType = TextureImporterType.Sprite; + importer.spriteImportMode = SpriteImportMode.Multiple; + importer.isReadable = true; + importer.mipmapEnabled = false; + importer.alphaIsTransparency = true; + + Texture2D tex = AssetDatabase.LoadAssetAtPath(atlasAssetPath); + if (tex == null) + throw new InvalidOperationException("Failed to load Texture2D from path."); + + int atlasWidth = tex.width; + int atlasHeight = tex.height; + + if (spriteWidth <= 0 || spriteHeight <= 0) + throw new InvalidDataException("Sprite width/height must be > 0."); + if (columns <= 0 || rows <= 0) + throw new InvalidDataException("Columns/Rows must be > 0."); + + int expected = columns * rows; + // Align names count + if (names.Count < expected) + { + for (int i = names.Count; i < expected; i++) + { + names.Add(_padIndexIfMissing ? i.ToString() : string.Empty); + } + } + else if (names.Count > expected) + { + names = names.Take(expected).ToList(); + } + + var metas = new List(expected); + for (int r = 0; r < rows; r++) + { + for (int c = 0; c < columns; c++) + { + int index = r * columns + c; + int x = c * spriteWidth; + int yFromTop = r * spriteHeight; // DDS starts from top-left + int yFromBottom = atlasHeight - yFromTop - spriteHeight; // Convert to Unity bottom-left origin + + var rect = new Rect(x, yFromBottom, spriteWidth, spriteHeight); + var meta = new SpriteMetaData + { + name = SafeSpriteName(names[index], index), + rect = rect, + alignment = (int)SpriteAlignment.Center, + border = Vector4.zero, + pivot = new Vector2(0.5f, 0.5f) + }; + metas.Add(meta); + } + } + + if (_paddingPixels > 0) + { + for (int i = 0; i < metas.Count; i++) + metas[i] = ApplyPadding(metas[i], _paddingPixels, atlasWidth, atlasHeight); + } + + importer.spritesheet = metas.ToArray(); + EditorUtility.SetDirty(importer); + importer.SaveAndReimport(); + + AssetDatabase.Refresh(); + } + + private void CreateSpritesAsSubAssets(string atlasAssetPath, int spriteWidth, int spriteHeight, int columns, int rows, List names) + { + Texture2D tex = AssetDatabase.LoadAssetAtPath(atlasAssetPath); + if (tex == null) + throw new InvalidOperationException($"Failed to load Texture2D from path: {atlasAssetPath}"); + + int atlasWidth = tex.width; + int atlasHeight = tex.height; + + if (spriteWidth <= 0 || spriteHeight <= 0) + throw new InvalidDataException("Sprite width/height must be > 0."); + if (columns <= 0 || rows <= 0) + throw new InvalidDataException("Columns/Rows must be > 0."); + if (columns * spriteWidth > atlasWidth || rows * spriteHeight > atlasHeight) + Debug.LogWarning($"[DDSAtlasSlicer] Grid exceeds atlas bounds: grid={columns}x{rows} cell={spriteWidth}x{spriteHeight} atlas={atlasWidth}x{atlasHeight}"); + + int expected = columns * rows; + if (names.Count < expected) + { + for (int i = names.Count; i < expected; i++) + names.Add(_padIndexIfMissing ? i.ToString() : string.Empty); + } + else if (names.Count > expected) + { + names = names.Take(expected).ToList(); + } + + // Clear previous Sprite sub-assets under this texture + var all = AssetDatabase.LoadAllAssetsAtPath(atlasAssetPath); + foreach (var obj in all) + { + if (obj is Sprite) + { + UnityEngine.Object.DestroyImmediate(obj, true); + } + } + + for (int r = 0; r < rows; r++) + { + for (int c = 0; c < columns; c++) + { + int index = r * columns + c; + int x = c * spriteWidth; + int yFromTop = r * spriteHeight; // DDS starts from top-left + int yFromBottom = atlasHeight - yFromTop - spriteHeight; // Convert to Unity bottom-left origin + + var rect = new Rect(x, yFromBottom, spriteWidth, spriteHeight); + if (_paddingPixels > 0) + { + float nx = Mathf.Max(0, rect.x - _paddingPixels); + float ny = Mathf.Max(0, rect.y - _paddingPixels); + float nw = Mathf.Min(atlasWidth - nx, rect.width + 2 * _paddingPixels); + float nh = Mathf.Min(atlasHeight - ny, rect.height + 2 * _paddingPixels); + rect = new Rect(nx, ny, nw, nh); + } + + string sprName = SafeSpriteName(names[index], index); + var sprite = Sprite.Create(tex, rect, new Vector2(0.5f, 0.5f), Mathf.Max(1f, _pixelsPerUnit)); + sprite.name = sprName; + AssetDatabase.AddObjectToAsset(sprite, tex); + } + } + + EditorUtility.SetDirty(tex); + AssetDatabase.SaveAssets(); + AssetDatabase.Refresh(); + } + + private void ExportSpritesAsPNGs(string atlasAssetPath, int spriteWidth, int spriteHeight, int columns, int rows, List names) + { + Texture2D atlasTex = AssetDatabase.LoadAssetAtPath(atlasAssetPath); + if (atlasTex == null) + throw new InvalidOperationException($"Failed to load Texture2D from path: {atlasAssetPath}"); + + int atlasWidth = atlasTex.width; + int atlasHeight = atlasTex.height; + + if (spriteWidth <= 0 || spriteHeight <= 0) + throw new InvalidDataException("Sprite width/height must be > 0."); + if (columns <= 0 || rows <= 0) + throw new InvalidDataException("Columns/Rows must be > 0."); + + int expected = columns * rows; + if (names.Count < expected) + { + for (int i = names.Count; i < expected; i++) + names.Add(_padIndexIfMissing ? i.ToString() : string.Empty); + } + else if (names.Count > expected) + { + names = names.Take(expected).ToList(); + } + + // Resolve export path + string targetFolderProject = _exportFolder; + if (string.IsNullOrEmpty(targetFolderProject)) + { + string atlasDir = Path.GetDirectoryName(atlasAssetPath).Replace('\\', '/'); + string atlasName = Path.GetFileNameWithoutExtension(atlasAssetPath); + targetFolderProject = $"{atlasDir}/{atlasName}_multisprite.png"; + } + else + { + string atlasName = Path.GetFileNameWithoutExtension(atlasAssetPath); + targetFolderProject = $"{targetFolderProject}/{atlasName}_multisprite.png"; + } + + string targetFolderAbs = ProjectPathToAbsolute(Path.GetDirectoryName(targetFolderProject)); + string fileName = Path.GetFileName(targetFolderProject); + string fileAbs = Path.Combine(targetFolderAbs, fileName); + fileAbs = GetUniqueFilePath(fileAbs); + + // Create a readable copy of the texture + Texture2D readableTex = new Texture2D(atlasWidth, atlasHeight, TextureFormat.RGBA32, false); + RenderTexture rt = RenderTexture.GetTemporary(atlasWidth, atlasHeight, 0, RenderTextureFormat.ARGB32, RenderTextureReadWrite.sRGB); + Graphics.Blit(atlasTex, rt); + RenderTexture.active = rt; + readableTex.ReadPixels(new Rect(0, 0, atlasWidth, atlasHeight), 0, 0); + readableTex.Apply(); + RenderTexture.active = null; + RenderTexture.ReleaseTemporary(rt); + + // Create PNG from readable copy + var png = ImageConversion.EncodeToPNG(readableTex); + File.WriteAllBytes(fileAbs, png); + + // Clean up + UnityEngine.Object.DestroyImmediate(readableTex); + + string fileProject = AbsoluteToProjectPath(fileAbs).Replace('\\', '/'); + if (!string.IsNullOrEmpty(fileProject)) + { + AssetDatabase.ImportAsset(fileProject); + var pngImporter = AssetImporter.GetAtPath(fileProject) as TextureImporter; + if (pngImporter != null) + { + pngImporter.textureType = TextureImporterType.Sprite; + pngImporter.spriteImportMode = SpriteImportMode.Multiple; + pngImporter.mipmapEnabled = false; + pngImporter.alphaIsTransparency = true; + pngImporter.spritePixelsPerUnit = Mathf.Max(1f, _pixelsPerUnit); + + // Create sprite metadata + var metas = new List(expected); + for (int r = 0; r < rows; r++) + { + for (int c = 0; c < columns; c++) + { + int index = r * columns + c; + int x = c * spriteWidth; + int yFromTop = r * spriteHeight; // DDS starts from top-left + int yFromBottom = atlasHeight - yFromTop - spriteHeight; // Convert to Unity bottom-left origin + + var rect = new Rect(x, yFromBottom, spriteWidth, spriteHeight); + if (_paddingPixels > 0) + { + float nx = Mathf.Max(0, rect.x - _paddingPixels); + float ny = Mathf.Max(0, rect.y - _paddingPixels); + float nw = Mathf.Min(atlasWidth - nx, rect.width + 2 * _paddingPixels); + float nh = Mathf.Min(atlasHeight - ny, rect.height + 2 * _paddingPixels); + rect = new Rect(nx, ny, nw, nh); + } + + var meta = new SpriteMetaData + { + name = SafeSpriteName(names[index], index), + rect = rect, + alignment = (int)SpriteAlignment.Center, + border = Vector4.zero, + pivot = new Vector2(0.5f, 0.5f) + }; + metas.Add(meta); + } + } + + pngImporter.spritesheet = metas.ToArray(); + pngImporter.SaveAndReimport(); + } + } + + AssetDatabase.Refresh(); + } + + private static void EnsureFolder(string projectFolderPath) + { + projectFolderPath = projectFolderPath.Replace('\\', '/'); + if (string.IsNullOrEmpty(projectFolderPath)) return; + if (!projectFolderPath.StartsWith("Assets")) + throw new InvalidOperationException("Export folder must be inside Assets/."); + + if (AssetDatabase.IsValidFolder(projectFolderPath)) return; + + string[] parts = projectFolderPath.Split('/'); + string current = parts[0]; // "Assets" + for (int i = 1; i < parts.Length; i++) + { + string next = current + "/" + parts[i]; + if (!AssetDatabase.IsValidFolder(next)) + { + AssetDatabase.CreateFolder(current, parts[i]); + } + current = next; + } + } + + private static string ProjectPathToAbsolute(string projectPath) + { + if (string.IsNullOrEmpty(projectPath)) return string.Empty; + string pp = projectPath.Replace('\\', '/'); + if (!pp.StartsWith("Assets")) return string.Empty; + string data = Application.dataPath.Replace('\\', '/'); + return data + pp.Substring("Assets".Length); + } + + private static string AbsoluteToProjectPath(string absolutePath) + { + if (string.IsNullOrEmpty(absolutePath)) return string.Empty; + string abs = absolutePath.Replace('\\', '/'); + string data = Application.dataPath.Replace('\\', '/'); + if (abs.StartsWith(data, StringComparison.OrdinalIgnoreCase)) + { + return "Assets" + abs.Substring(data.Length); + } + return string.Empty; + } + + private static string GetUniqueFilePath(string absolutePath) + { + string dir = Path.GetDirectoryName(absolutePath); + string name = Path.GetFileNameWithoutExtension(absolutePath); + string ext = Path.GetExtension(absolutePath); + string candidate = absolutePath; + int suffix = 1; + while (File.Exists(candidate)) + { + candidate = Path.Combine(dir, $"{name}_{suffix}{ext}"); + suffix++; + } + return candidate; + } + + private static SpriteMetaData ApplyPadding(SpriteMetaData meta, int pad, int atlasWidth, int atlasHeight) + { + var r = meta.rect; + float nx = Mathf.Max(0, r.x - pad); + float ny = Mathf.Max(0, r.y - pad); + float nw = Mathf.Min(atlasWidth - nx, r.width + 2 * pad); + float nh = Mathf.Min(atlasHeight - ny, r.height + 2 * pad); + meta.rect = new Rect(nx, ny, nw, nh); + return meta; + } + + private static string SafeSpriteName(string raw, int index) + { + string name = raw; + if (string.IsNullOrWhiteSpace(name)) name = index.ToString(); + // Unity dislikes slashes and some symbols in asset names + char[] invalid = Path.GetInvalidFileNameChars(); + var sb = new StringBuilder(name.Length); + foreach (char ch in name) + { + if (invalid.Contains(ch) || ch == '/' || ch == '\\' || ch == ':' || ch == '*') + { + sb.Append('_'); + } + else + { + sb.Append(ch); + } + } + return sb.ToString(); + } +} +#endif diff --git a/Assets/Editor/DDSAtlasSlicerWindow.cs.meta b/Assets/Editor/DDSAtlasSlicerWindow.cs.meta new file mode 100644 index 0000000000..aff67a0a26 --- /dev/null +++ b/Assets/Editor/DDSAtlasSlicerWindow.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: f66c1988f2c6e574c84c02a7c552f18f \ No newline at end of file diff --git a/Assets/PerfectWorld/Resources.meta b/Assets/PerfectWorld/Resources.meta new file mode 100644 index 0000000000..f21f33c957 --- /dev/null +++ b/Assets/PerfectWorld/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fce0cd26a1da70948bcd2dc8a49b506b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI.meta b/Assets/PerfectWorld/Resources/UI.meta new file mode 100644 index 0000000000..08b1b8c849 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7a3c432920f85c348a2ec2d318f1e6e9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Icon.meta b/Assets/PerfectWorld/Resources/UI/Icon.meta new file mode 100644 index 0000000000..896fd298b4 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Icon.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6561a7d3c5c2b52439357c35aae55f99 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Icon/iconlist_ivtrm.dds b/Assets/PerfectWorld/Resources/UI/Icon/iconlist_ivtrm.dds new file mode 100644 index 0000000000..0a96faee72 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Icon/iconlist_ivtrm.dds differ diff --git a/Assets/PerfectWorld/Resources/UI/Icon/iconlist_ivtrm.dds.meta b/Assets/PerfectWorld/Resources/UI/Icon/iconlist_ivtrm.dds.meta new file mode 100644 index 0000000000..ab12cf0376 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Icon/iconlist_ivtrm.dds.meta @@ -0,0 +1,21 @@ +fileFormatVersion: 2 +guid: f6ef10a15137cb44481b51ab73c71a98 +IHVImageFormatImporter: + externalObjects: {} + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + isReadable: 0 + sRGBTexture: 1 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + ignoreMipmapLimit: 0 + mipmapLimitGroupName: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Icon/iconlist_ivtrm.txt b/Assets/PerfectWorld/Resources/UI/Icon/iconlist_ivtrm.txt new file mode 100644 index 0000000000..1685e82d0a --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Icon/iconlist_ivtrm.txt @@ -0,0 +1,8753 @@ +32 +32 +69 +128 +unknown.dds +0.dds +0_东北当归.dds +0_剑麻.dds +1.dds +100000_水草01.dds +100001_水草02.dds +100002_水草03.dds +100003_水草04.dds +100004_水草05.dds +100005_水草06.dds +100006_水草07.dds +100007_水草08.dds +100008_水草09.dds +100009_水草10.dds +100010_水草11.dds +100011_水草12.dds +100012_水草13.dds +100013_水草14.dds +100014_水草15.dds +100_玄关影壁.dds +100块帽子女.dds +100块帽子男.dds +101_一级桌子.dds +102_一级椅子.dds +103_二级桌子.dds +104_二级椅子.dds +105_三级桌子.dds +106_三级椅子.dds +106_鹅卵石地面02.dds +107_四级桌子.dds +108_四级椅子.dds +108_鹅卵石地面04.dds +109_小船.dds +10_粉康萘薪01.dds +10年万圣节女装上衣.dds +10年万圣节女装头发.dds +10年万圣节女装手套.dds +10年万圣节女装裤子.dds +10年万圣节女装鞋子.dds +10年万圣节男装上衣.dds +10年万圣节男装头发.dds +10年万圣节男装手套.dds +10年万圣节男装裤子.dds +10年万圣节男装鞋子.dds +10级紫.dds +10级红.dds +10级蓝.dds +110_围棋.dds +111_圆石桌.dds +112_圆石凳.dds +113_方石桌.dds +114_方石凳.dds +115_古董如意.dds +116_古琴架.dds +117_一级屏风.dds +118_二级屏风.dds +119_三级屏风.dds +11_粉康萘薪02.dds +11级紫.dds +11级红.dds +11级蓝.dds +120_四级屏风.dds +121_五级屏风.dds +122_六级屏风.dds +123_七级屏风.dds +124_八级屏风.dds +125_大绿叶盆景.dds +126_双叶大盆景.dds +127_剑兰盆景.dds +128_金桃盆景.dds +129_小草盆景.dds +12_紫牵牛.dds +12年女礼服上衣.dds +12年女礼服头发.dds +12年女礼服手套.dds +12年女礼服鞋子.dds +12年男礼服上衣.dds +12年男礼服头发.dds +12年男礼服裤子.dds +12年男礼服鞋子.dds +12级紫.dds +12级红.dds +12级蓝.dds +130_蒲团草盆景.dds +131_一级牌匾.dds +132_二级牌匾.dds +133_三级牌匾.dds +134_四级牌匾.dds +135_方花架.dds +136_圆花架.dds +137_一级假窗.dds +138_二级假窗.dds +139_三级假窗.dds +13级紫.dds +13级红.dds +13级蓝.dds +140_古董花瓶.dds +141_仙界大叶草地.dds +141_豪华座椅.dds +142_仙界新道路.dds +142_果盘.dds +143_一级柜子.dds +144_二级柜子.dds +145_三级柜子.dds +146_四级柜子.dds +147_古琴.dds +148_高级梳妆台.dds +149_古董高花瓶.dds +149_杂石.dds +14_俄国橄榄.dds +14_芦苇.dds +14圣诞女上衣.dds +14圣诞女护腕.dds +14圣诞女装头发.dds +14圣诞女裤子.dds +14圣诞女鞋子.dds +14圣诞男上衣.dds +14圣诞男护腕.dds +14圣诞男装头发.dds +14圣诞男裤子.dds +14圣诞男鞋子.dds +14级紫.dds +14级红.dds +14级蓝.dds +150_一级床.dds +150_沙滩01.dds +151_二级床.dds +152_三级床.dds +152_沙滩贝壳.dds +153_四级床.dds +154_低级梳妆台.dds +155_一级对联左联.dds +155_沙漠03.dds +156_一级对联右联.dds +157_二级对联左联.dds +158_二级对联右联.dds +159_三级对联左联.dds +15_绿色英国像树.dds +15品单刀.dds +15品单剑.dds +15品双手斧.dds +15品女法泡法腕.dds +15品女法泡法鞋.dds +15品女法袍法衣.dds +15品女法袍法裤.dds +15品女轻甲手腕.dds +15品女轻甲衣服.dds +15品女轻甲裤子.dds +15品女轻甲鞋.dds +15品女重甲手腕.dds +15品女重甲衣服.dds +15品女重甲衣裤子.dds +15品女重甲鞋.dds +15品弓.dds +15品披风.dds +15品拳套.dds +15品法仗.dds +15品法剑.dds +15品法器.dds +15品法戒1.dds +15品法戒2.dds +15品法腰.dds +15品法项链.dds +15品爪.dds +15品物戒1.dds +15品物戒2.dds +15品物腰.dds +15品物项链.dds +15品男法袍法腕.dds +15品男法袍法衣.dds +15品男法袍法裤.dds +15品男法袍法鞋.dds +15品男轻甲手腕.dds +15品男轻甲衣服.dds +15品男轻甲裤子.dds +15品男轻甲鞋.dds +15品男重甲手腕.dds +15品男重甲衣服.dds +15品男重甲裤子.dds +15品男重甲鞋.dds +15品长枪.dds +15品长锤.dds +15品闪腰.dds +15品闪项链.dds +15圣诞装女头发.dds +15圣诞装女护腕.dds +15圣诞装女衣服.dds +15圣诞装女鞋子.dds +15圣诞装男上衣.dds +15圣诞装男下衣.dds +15圣诞装男头发.dds +15圣诞装男护腕.dds +15圣诞装男鞋子.dds +15年蝴蝶女装上衣.dds +15年蝴蝶女装头发.dds +15年蝴蝶女装护腕.dds +15年蝴蝶女装鞋子.dds +15新年装女上衣.dds +15新年装女鞋子.dds +15新年装男上衣.dds +15新年装男鞋子.dds +15级紫.dds +15级红.dds +15级蓝.dds +160_三级对联右联.dds +161_四级对联左联.dds +161_湿土杂草.dds +162_四级对联右联.dds +163_一级地毯.dds +164_二级地毯.dds +165_三级地毯.dds +166_四级地毯.dds +167_五级地毯.dds +168_六级地毯.dds +169_七级地毯.dds +16_夹杂碎石01.dds +16品单刀.dds +16品单剑.dds +16品双斧.dds +16品弓.dds +16品拳套.dds +16品法剑.dds +16品法器.dds +16品法杖.dds +16品爪.dds +16品长枪.dds +16品长锤.dds +170_八级地毯.dds +17173小章鱼.dds +171_九级地毯.dds +172_十级地毯.dds +173_一级灯.dds +174_二级灯.dds +175_三级灯.dds +176_四级灯.dds +177_五级灯.dds +178_石板路.dds +178_茶盘.dds +179_1级建筑.dds +179_碎石混合草地.dds +17品单刀.dds +17品单剑.dds +17品双刀.dds +17品双剑.dds +17品双斧.dds +17品弓.dds +17品弩.dds +17品弹弓.dds +17品拳套.dds +17品法丈.dds +17品法剑.dds +17品法器.dds +17品法术戒指.dds +17品法术腰饰.dds +17品法术项链.dds +17品法球.dds +17品法袍上衣.dds +17品法袍头盔.dds +17品法袍护腕.dds +17品法袍披风.dds +17品法袍裤子.dds +17品法袍鞋子.dds +17品灵巧腰饰.dds +17品灵巧项链.dds +17品物理戒指.dds +17品物理腰饰.dds +17品物理项链.dds +17品短刃.dds +17品短杖.dds +17品短锤.dds +17品轻甲上衣.dds +17品轻甲头盔.dds +17品轻甲护腕.dds +17品轻甲披风.dds +17品轻甲裤子.dds +17品轻甲鞋子.dds +17品重甲上衣.dds +17品重甲头盔.dds +17品重甲护腕.dds +17品重甲披风.dds +17品重甲裤子.dds +17品重甲鞋子.dds +17品钺.dds +17品长刀.dds +17品长斧.dds +17品长枪.dds +17品长锤.dds +180_一级建筑大粮仓.dds +181_一级建筑小粮仓.dds +182_一级建筑马车.dds +183_一级建筑晾衣架.dds +184_一级建筑笸箩.dds +185_一级建筑磨盘.dds +186_一级建筑水井.dds +187_4级建筑.dds +188_3级建筑.dds +188_贝壳.dds +189_2级建筑.dds +189_路边石壁.dds +18_陆地03.dds +18品单刀.dds +18品单剑.dds +18品双刀.dds +18品双剑.dds +18品双斧.dds +18品双锤.dds +18品弓.dds +18品弩.dds +18品弹弓.dds +18品拳套.dds +18品法仗.dds +18品法剑.dds +18品法器.dds +18品法术戒指.dds +18品法术腰饰.dds +18品法术项链.dds +18品法袍上衣.dds +18品法袍头盔.dds +18品法袍护腕.dds +18品法袍披风.dds +18品法袍裤子.dds +18品法袍鞋子.dds +18品灵巧腰饰.dds +18品灵巧项链.dds +18品物理戒指.dds +18品物理腰饰.dds +18品物理项链.dds +18品短丈.dds +18品短刃.dds +18品轻甲上衣.dds +18品轻甲头盔.dds +18品轻甲护腕.dds +18品轻甲披风.dds +18品轻甲裤子.dds +18品轻甲鞋子.dds +18品重甲上衣.dds +18品重甲头盔.dds +18品重甲护腕.dds +18品重甲披风.dds +18品重甲裤子.dds +18品重甲鞋子.dds +18品钺.dds +18品长刀.dds +18品长斧.dds +18品长枪.dds +18品长锤.dds +190_西方2级建筑.dds +190_雨林小花.dds +191_教堂.dds +192_雨林石头路.dds +193_西方3级建筑.dds +194_西方公共区长廊.dds +196_西方路灯.dds +196_雨林落叶.dds +199_西方3级窗帘.dds +19_干裂纹干黄土.dds +19_陆地04.dds +19品匕首.dds +19品单刀.dds +19品单剑.dds +19品双刀.dds +19品双剑.dds +19品双斧.dds +19品双锤.dds +19品弓.dds +19品弩.dds +19品弹弓.dds +19品戒指.dds +19品拳套.dds +19品法剑.dds +19品法器.dds +19品法杖.dds +19品法球.dds +19品法袍上衣.dds +19品法袍下衣.dds +19品法袍护腕.dds +19品法袍鞋子.dds +19品法装头盔.dds +19品法装披风.dds +19品短刃.dds +19品短杖.dds +19品腰佩.dds +19品轻甲上衣.dds +19品轻甲下衣.dds +19品轻甲护腕.dds +19品轻甲鞋子.dds +19品轻装头盔.dds +19品轻装披风.dds +19品重甲上衣.dds +19品重甲下衣.dds +19品重甲护腕.dds +19品重甲鞋子.dds +19品重装头盔.dds +19品重装披风.dds +19品钺.dds +19品长刀.dds +19品长斧.dds +19品长矛.dds +19品长锤.dds +1_仙人柱.dds +1_向日葵01.dds +1级时装技能书.dds +1级紫.dds +1级红.dds +1级蓝.dds +1级颜料.dds +1级飞剑技能书.dds +2.dds +2010年12月飞行器拍品.dds +2010拉拉队装2女上衣.dds +2010拉拉队装2女头发.dds +2010拉拉队装2女裤子.dds +2010拉拉队装2女鞋子.dds +2011圣诞女装头发.dds +2011圣诞女装护腕.dds +2011圣诞女装衣服.dds +2011圣诞女装鞋子.dds +2011圣诞男装上衣.dds +2011圣诞男装头发.dds +2011圣诞男装裤子.dds +2011圣诞男装鞋子.dds +2012圣诞女帽.dds +2012圣诞女装.dds +2012圣诞女装护腕.dds +2012圣诞女装鞋.dds +2012圣诞彩球.dds +2012圣诞彩袜.dds +2012圣诞拐杖糖.dds +2012圣诞星星.dds +2012圣诞男帽.dds +2012圣诞男装上衣.dds +2012圣诞男装裤.dds +2012圣诞男装鞋.dds +2012圣诞缎带.dds +2012圣诞老人的袋子.dds +2012圣诞铃铛.dds +2012埃及酒.dds +2012拉拉队装女上衣.dds +2012拉拉队装女头发.dds +2012拉拉队装女裤子.dds +2012拉拉队装女鞋子.dds +2012春天女装上衣.dds +2012春天女装头发.dds +2012春天女装护腕.dds +2012春天女装鞋子.dds +2012春天男装上衣.dds +2012春天男装头发.dds +2012春天男装护腕.dds +2012春天男装鞋子.dds +2012球衣装男上衣.dds +2012球衣装男头发.dds +2012球衣装男裤子.dds +2012球衣装男鞋子.dds +2012葡萄酒.dds +2012酒瓶1.dds +2012酒瓶2.dds +2012酒瓶3.dds +2012雪球.dds +2013圣诞女装上衣.dds +2013圣诞女装头发.dds +2013圣诞女装护手.dds +2013圣诞女装鞋子.dds +2013圣诞男装上衣.dds +2013圣诞男装头发.dds +2013圣诞男装护手.dds +2013圣诞男装裤子.dds +2013圣诞男装鞋子.dds +2013飞天猪.dds +2014女巴西球衣上衣.dds +2014女巴西球衣鞋子.dds +2014女德国球衣上衣.dds +2014女德国球衣鞋子.dds +2014女意大利球衣衣服.dds +2014女意大利球衣鞋子.dds +2014女法国球衣上衣.dds +2014女法国球衣鞋子.dds +2014女荷兰球衣衣服.dds +2014女荷兰球衣鞋子.dds +2014女葡萄牙球衣衣服.dds +2014女葡萄牙球衣鞋子.dds +2014女西班牙球衣衣服.dds +2014女西班牙球衣鞋子.dds +2014女阿根廷球衣上衣.dds +2014女阿根廷球衣鞋子.dds +2014春节女装上衣.dds +2014春节女装头发.dds +2014春节女装护腕.dds +2014春节女装鞋子.dds +2014春节男装上衣.dds +2014春节男装头发.dds +2014春节男装护手.dds +2014春节男装鞋子.dds +2014男巴西球衣上衣.dds +2014男巴西球衣裤子.dds +2014男巴西球衣鞋子.dds +2014男德国球衣上衣.dds +2014男德国球衣裤子.dds +2014男德国球衣鞋子.dds +2014男意大利球衣上衣.dds +2014男意大利球衣裤子.dds +2014男意大利球衣鞋子.dds +2014男法国球衣上衣.dds +2014男法国球衣裤子.dds +2014男法国球衣鞋子.dds +2014男荷兰球衣上衣.dds +2014男荷兰球衣裤子.dds +2014男荷兰球衣鞋子.dds +2014男葡萄牙球衣上衣.dds +2014男葡萄牙球衣裤子.dds +2014男葡萄牙球衣鞋子.dds +2014男西班牙球衣上衣.dds +2014男西班牙球衣裤子.dds +2014男西班牙球衣鞋子.dds +2014男阿根廷球衣上衣.dds +2014男阿根廷球衣裤子.dds +2014男阿根廷球衣鞋子.dds +2014花匕首.dds +2014花单手短.dds +2014花单手短2.dds +2014花双手短.dds +2014花双手长.dds +2014花弓.dds +2014花法球.dds +2015不系舟.dds +2015不问苍生问鬼神.dds +2015人族竹简.dds +2015人族钥匙.dds +2015会挽雕弓如满月.dds +2015力拔山兮气盖世.dds +2015北美狮子.dds +2015卫武纹章.dds +2015圣诞气球.dds +2015圣诞袜子.dds +2015圣诞雪花.dds +2015大风起兮云飞扬.dds +2015天若有情天亦老.dds +2015妖兽白炎兽.dds +2015妖族翼龙飞行器.dds +2015妖族飞羊.dds +2015家园圣诞小雪人扫把.dds +2015家园圣诞小雪人雪球.dds +2015家园圣诞树.dds +2015家园圣诞礼盒.dds +2015家园圣诞糖果屋.dds +2015家园圣诞老人.dds +2015家园圣诞降落伞.dds +2015家园圣诞靴子.dds +2015小楼一夜听春雨.dds +2015帮派冰龙.dds +2015帮派火龙.dds +2015年2季度羽族飞行器.dds +2015拉弥亚.dds +2015月如无恨月常圆.dds +2015机器人宠物.dds +2015柯基宠物.dds +2015梦里挑灯醉看剑.dds +2015樱花扇.dds +2015汐族双鱼座.dds +2015汐族特效翅膀.dds +2015汐族黄绿.dds +2015灵族芭蕉扇.dds +2015灵族花灯.dds +2015灵族花灵.dds +2015热气球飞骑.dds +2015独角兽.dds +2015狮鹫坐骑.dds +2015猴年摆摊.dds +2015破碎山河印.dds +2015糖葫芦双手短.dds +2015羽族墨染.dds +2015羽族灿蝶.dds +2015羽族醉祥云.dds +2015胧族神器.dds +2015胧族蓝光轮.dds +2015胧族金华.dds +2015西方恶龙.dds +2015雪花武器匕首.dds +2015雪花武器单手短.dds +2015雪花武器双手短.dds +2015雪花武器双手长.dds +2015雪花武器弓.dds +2015雪花武器拳套.dds +2015雪花武器月镰.dds +2015雪花武器法球.dds +2015雪花武器胧刀.dds +2016vip汐族武器.dds +2016vip汐族翅膀.dds +2016vip羽族武器.dds +2016vip羽族翅膀.dds +2016vip胧族武器.dds +2016vip胧族飞行器.dds +2016人族炫彩风车.dds +2016冰淇淋单手短.dds +2016冰淇淋法球.dds +2016悟空坐骑.dds +2016新春福袋.dds +2016春节女装上衣.dds +2016春节女装头发.dds +2016春节女装护腕.dds +2016春节女装鞋子.dds +2016春节男装上衣.dds +2016春节男装下衣.dds +2016春节男装头发.dds +2016春节男装护腕.dds +2016春节男装鞋子.dds +2016灰姑娘马车.dds +2016糖果匕首.dds +2016糖果双手短.dds +2016糖果双手长.dds +2016糖果弩.dds +2016糖果弹弓.dds +2016糖果拳套.dds +2016糖果胧刀.dds +2016糖果镰刀.dds +2016红包一.dds +2016红包三.dds +2016红包二.dds +2016红包五.dds +2016红包六.dds +2016红包四.dds +2016音符女上衣.dds +2016音符女头发.dds +2016音符女护腕.dds +2016音符女鞋子.dds +202_西方1级建筑.dds +202_西方2级窗帘.dds +203_西方一级窗帘.dds +204_西方1级油画.dds +205_西方2级油画.dds +206_西方3级油画.dds +207_西方1级台灯.dds +208_西方2级台灯.dds +209_西方3级台灯.dds +20_灰绿草01.dds +20品匕首.dds +20品双剑.dds +20品双斧.dds +20品弓.dds +20品拳套.dds +20品法剑.dds +20品法器.dds +20品法袍上衣.dds +20品法袍护腕.dds +20品法袍裤子.dds +20品法袍鞋子.dds +20品轻甲上衣.dds +20品轻甲护腕.dds +20品轻甲裤子.dds +20品轻甲鞋子.dds +20品重甲上衣.dds +20品重甲护腕.dds +20品重甲裤子.dds +20品重甲鞋子.dds +210_西方1级椅子.dds +211_西方2级椅子.dds +212_西方3级椅子.dds +213_西方1级台灯.dds +214_西方2级台灯.dds +214_黄色小花.dds +215_乱杂碎草.dds +215_西方3级台灯.dds +216_农田01.dds +216_西方竖琴.dds +217_西方1级梳妆台.dds +218_西方2级梳妆台.dds +219_西方3级梳妆台.dds +21_灰绿草02.dds +21品匕首.dds +21品单刀.dds +21品头部.dds +21品弩.dds +21品法器.dds +21品法宝.dds +21品法袍上衣.dds +21品法袍护腕.dds +21品法袍裤子.dds +21品法袍鞋子.dds +21品轻甲上衣.dds +21品轻甲护腕.dds +21品轻甲裤子.dds +21品轻甲鞋子.dds +21品重甲上衣.dds +21品重甲护腕.dds +21品重甲裤子.dds +21品重甲鞋子.dds +21品长枪.dds +21品长锤.dds +220_西方国际象棋.dds +221_山壁2.dds +221_西方1级吊灯.dds +222_山壁3.dds +222_西方2级吊灯.dds +223_山壁4.dds +223_西方3级吊灯.dds +224_山壁5.dds +224_西方小提琴.dds +225_山石.dds +225_西方红地毯.dds +226_西方红兰毯.dds +227_西方1级落地灯.dds +228_干裂地面.dds +228_西方2级落地灯.dds +229_西方3级落地灯.dds +22品匕首.dds +22品双刀.dds +22品双斧.dds +22品头部.dds +22品拳套.dds +22品法剑.dds +22品法袍上衣.dds +22品法袍手套.dds +22品法袍裤子.dds +22品法袍鞋子.dds +22品短刃.dds +22品轻甲上衣.dds +22品轻甲手套.dds +22品轻甲裤子.dds +22品轻甲鞋子.dds +22品重甲上衣.dds +22品重甲护腕.dds +22品重甲裤子.dds +22品重甲鞋子.dds +22品长斧.dds +22弹弓.dds +22法宝.dds +22短杖.dds +230_烂泥草地.dds +230_西方大提琴.dds +231_西方1级床.dds +232_石头地03.dds +232_西方2级床.dds +233_西方3级床.dds +234_石头地面.dds +234_西方1级台灯.dds +235_石头地面2.dds +235_西方2级吊灯.dds +236_石头地面3.dds +236_西方3级吊灯.dds +237_石头路.dds +237_西方1级桌子.dds +238_破石板路.dds +238_西方2级桌子.dds +239_碎渣地.dds +239_西方3级桌子.dds +23_杂碎石锈红土.dds +23_灰绿草03.dds +23单剑.dds +23品匕首.dds +23品双锤.dds +23品头部.dds +23品幡杖.dds +23品弓.dds +23品无妄法球.dds +23品法袍上衣.dds +23品法袍护腕.dds +23品法袍裤子.dds +23品法袍鞋子.dds +23品轻甲上衣.dds +23品轻甲护腕.dds +23品轻甲裤子.dds +23品轻甲鞋子.dds +23品重甲上衣.dds +23品重甲护腕.dds +23品重甲裤子.dds +23品重甲鞋子.dds +23品长刀.dds +242_碎渣地4.dds +243_苔藓泥土.dds +244_草地.dds +245_草地2.dds +246_褐土杂草.dds +249_鹅卵石地面.dds +24_杂碎石黄土.dds +24品匕首.dds +24品双剑.dds +24品双剑新.dds +24品双斧.dds +24品头部.dds +24品弓.dds +24品弩.dds +24品法器.dds +24品法宝.dds +24品短刃.dds +250_黄土地.dds +25_杂碎石黑褐土.dds +25_灰绿草04.dds +25品匕首.dds +25品单剑.dds +25品弓.dds +25品法剑.dds +25品法宝.dds +25品长斧.dds +25品长枪.dds +264_大叶草地.dds +268_大纹理草地2.dds +26_绿草01.dds +26匕首.dds +26单剑.dds +26品匕首.dds +26品双斧.dds +26品幡杖.dds +26品弓.dds +26品法剑.dds +26法器.dds +26法球.dds +26短杖.dds +26长锤.dds +271_白花杂草.dds +272_薄裂土-02.dds +273_薄裂土.dds +275_黄花草地.dds +27_怪异松树.dds +27_绿草02.dds +27匕首.dds +27单刀.dds +27双刀.dds +27双斧子.dds +27毛弓.dds +27法剑.dds +27法球.dds +27法轮.dds +27番仗.dds +27短杖.dds +27长锤.dds +284_嫩杂草.dds +286_橙和灰黄叶橄榄绿杂草.dds +289_灰褐土嫩杂草.dds +28_怪异松树01.dds +28_浅灰黄土.dds +28_绿草03.dds +28匕首.dds +28品双刀.dds +28品双剑.dds +28品双手斧.dds +28品弓.dds +28品短杖.dds +28幡丈.dds +28法剑.dds +28法器.dds +28法球.dds +28长枪.dds +290_灰黄土嫩杂草.dds +29_绿草04.dds +29品匕首.dds +29品双刀(斧).dds +29品双手双剑.dds +29品幡杖.dds +29品弓.dds +29品法剑.dds +29品法器.dds +29品法器2.dds +29品法球.dds +29品短刃.dds +29品短杖.dds +29品长刀.dds +29品长锤.dds +2_仙界树木.dds +2_向日葵02.dds +2级时装技能书.dds +2级紫.dds +2级红.dds +2级蓝.dds +2级颜料.dds +2级飞剑技能书.dds +3.dds +302_雨林草地.dds +306_草地刘.dds +30_绿草05.dds +31_深灰黄土.dds +31_绿草06.dds +32_绿草07.dds +33_深锈红土.dds +33_绿草08.dds +34_花草.dds +35_田地.dds +35_黄绿草01.dds +37_红碎叶锈红土.dds +38_柳树.dds +38_黄草01.dds +39_桃树.dds +39_黄草02.dds +3_像树.dds +3_小黄花01.dds +3级时装技能书.dds +3级紫.dds +3级红.dds +3级蓝.dds +3级飞剑技能书.dds +4.dds +40_桃树小.dds +40_锈红土.dds +41_桃树小小.dds +41_锈黄土.dds +42_桑树.dds +43_梨树.dds +44_梨树01.dds +45_棕榈.dds +46_棕榈01.dds +47_椰子树.dds +48_椰子树01.dds +49关色子_1.dds +49关色子_2.dds +49关色子_3.dds +49关色子_4.dds +49关色子_5.dds +49关色子_6.dds +4_印度榕.dds +4_小黄花02.dds +4级时装技能书.dds +4级紫.dds +4级红.dds +4级蓝.dds +4级飞剑技能书.dds +5.dds +50_千层红.dds +53_大假山.dds +53_大朵黄花.dds +54_大朵黄花01.dds +54_小假山.dds +55_喷泉.dds +55_小碎黄花01.dds +56_小碎黄花02.dds +56_石桥.dds +57_小碎黄花03.dds +58_小黄花05.dds +58_白杨.dds +59_小黄花06.dds +59_深灰褐土.dds +59_白杨01.dds +5_外脖白树.dds +5_小黄花03.dds +5级时装技能书.dds +5级紫.dds +5级红.dds +5级蓝.dds +5级飞剑技能书.dds +6.dds +60_大石狮子.dds +60_康奈薪.dds +60_深灰黄土.dds +61_小石狮子.dds +61_康奈薪01.dds +61_深锈红土.dds +61_竹林01.dds +62_桃金娘.dds +62_深黄土.dds +62_竹林02.dds +63_灰色土.dds +63_狭叶番.dds +63_竹林03.dds +64_玉米.dds +64_白土.dds +64_竹林04.dds +65_糖梧桐.dds +65_紫色小花.dds +66_糖梧桐01.dds +68_锈红杂草点土.dds +69_芦苇花.dds +69_英国像树.dds +69_雨林土.dds +6_橡胶树.dds +6级紫.dds +6级红.dds +6级蓝.dds +7.dds +70_花腾.dds +71_蝴蝶花.dds +71_黄土.dds +72_菩提树.dds +72_麦子.dds +73_灌木01.dds +73_菩提树01.dds +74_灌木02.dds +75_灌木03.dds +76_灌木04.dds +77_灌木05.dds +78_灌木06.dds +79_灌木07.dds +7_小黄花04.dds +7_沙树.dds +7级紫.dds +7级红.dds +7级蓝.dds +8.dds +80_灌木球.dds +82_草藤01.dds +83_草藤02.dds +85_京城地面.dds +86_草藤03.dds +88_一级字画.dds +88_高灌木01.dds +89_二级字画.dds +89_高灌木02.dds +8_沙树01.dds +8_狗尾草.dds +8级紫.dds +8级红.dds +8级蓝.dds +9.dds +90_三级字画.dds +90_小方砖地面03.dds +91_四级字画.dds +91_条石地面.dds +91_高灌木03.dds +92_五级字画.dds +92_鹅卵石像树大.dds +93_六级字画.dds +93_鹅卵石像树01.dds +94_七级字画.dds +94_鹅卵石像树02.dds +95_八级字画.dds +95_鹅卵石像树03.dds +96_白蜡烛.dds +96_石头地.dds +96_鹅卵石像树04.dds +97_红蜡烛.dds +98_纱罩灯.dds +99_古董玉璧.dds +99单刀3.dds +99双剑1.dds +99双斧1.dds +99宝轮.dds +99弓2.dds +99弩1.dds +99成就之翼.dds +99枪4.dds +99法剑5.dds +99藩杖.dds +99长锤.dds +9_英格兰像树.dds +9月翅膀.dds +9月飞剑.dds +9级紫.dds +9级红.dds +9级蓝.dds +gm奖章.dds +hana.dds +happybirthday.dds +iloveyou.dds +it男手指拳套.dds +love.dds +merrychristmas.dds +q小龙.dds +rmb道具_带锁的宝箱.dds +rmb道具_打开的宝箱.dds +rmb道具_神秘锤子.dds +sina小浪.dds +yy女熊.dds +yy男熊.dds +zippo.dds +2012圣诞袜子1.dds +2012圣诞袜子2.dds +2012圣诞袜子3.dds +2012圣诞袜子4.dds +2012圣诞袜子5.dds +一.dds +一串红.dds +一元复始令.dds +一元石.dds +一半的金手镯.dds +一周年坐骑龙.dds +一星龙珠.dds +一本彩色的书.dds +一根牛角.dds +一步登天·动天.dds +一步登天周天.dds +一步登天幻天.dds +一步登天玄天.dds +一歩莲华台.dds +一等奖.dds +一等祖龙勋章.dds +一等镌刻.dds +一箭倾心.dds +一级九阳丹.dds +一级九龙散.dds +一级归元散.dds +一级木精.dds +一级沉香丸.dds +一级活血散.dds +一级神气丸.dds +一级精金.dds +一级绫罗.dds +一级还灵水.dds +一级金创药.dds +一级龙涎香.dds +一见钟情.dds +丁.dds +七.dds +七兜兽元魂.dds +七夕之夜执手鹊桥.dds +七彩大礼包.dds +七彩神石.dds +七星剑.dds +七星石.dds +七星神剑.dds +七星龙珠.dds +七曜华晶.dds +七曜腰饰.dds +七杀令·明.dds +七杀令·暗.dds +七杀令·虚.dds +七杀印·明.dds +七杀印·暗.dds +七杀印·虚.dds +七杀帖·太微.dds +七杀帖·少微.dds +七杀帖·紫微.dds +七等奖.dds +七等镌刻.dds +七罪.dds +万人敌.dds +万劫护腿.dds +万劫披风.dds +万化城精元.dds +万圣南瓜铜栅栏.dds +万圣戒.dds +万圣节南瓜头女头发.dds +万圣节南瓜头男头发.dds +万壑松风图.dds +万宝石刻路灯.dds +万寿福字柜.dds +万年槽.dds +万年灵芝.dds +万毒母液.dds +万象履.dds +万象护腕.dds +万象更新石.dds +万象袍.dds +万象裤.dds +万钧巨斧.dds +三.dds +三刃矢.dds +三叉戟.dds +三叠瓷樽壁盏.dds +三头狗.dds +三尊下凡.dds +三尸星卡.dds +三山五岳卡.dds +三岁星卡.dds +三彩宝月瓶.dds +三彩洗口瓶.dds +三才石.dds +三星龙珠.dds +三曜熠火魂.dds +三清佩.dds +三清卡.dds +三清太极坊.dds +三玄合剂.dds +三生树.dds +三生石七彩.dds +三生石橙.dds +三生石白.dds +三生石紫.dds +三生石绿.dds +三生石蓝.dds +三生石赤.dds +三生石青.dds +三生石黄.dds +三生石黑.dds +三界之剑.dds +三界神水.dds +三神卡.dds +三等奖.dds +三等祖龙勋章.dds +三等镌刻.dds +三级九阳丹.dds +三级九龙散.dds +三级归元散.dds +三级沉香丸.dds +三级活血散.dds +三级神气丸.dds +三级还灵水.dds +三级金创药.dds +三级龙涎香.dds +三耀骨氤灵.dds +三色球.dds +三连爆.dds +上冥剑.dds +上古元灵.dds +上古兽.dds +上古冰魄.dds +上帝武装.dds +上清之剑.dds +上清卡.dds +不服pk.dds +不破项链.dds +不系舟.dds +不败意志.dds +与子谐老.dds +丑.dds +世.dds +世界树.dds +世精血璃.dds +世精血璃镜.dds +丘樊迎仙框.dds +丙.dds +丛林之眼法1档.dds +丛林之眼法2档.dds +丛林之眼法3档.dds +丛林之眼物1档.dds +丛林之眼物2档.dds +丛林之眼物3档.dds +丛林之石.dds +丛林遗佩·密匙.dds +丛林遗玉·橙露.dds +丛林遗玉·白翼.dds +丛林遗玉·碧灵.dds +丛林遗玉·紫幻.dds +丛林遗玉·蓝缘.dds +丛林遗玉·赤火.dds +丛林遗玉·黄楚.dds +丛林遗玉·黑烬.dds +丛林遗环·遁魔.dds +丛林遗环·飞仙.dds +丛林遗珠.dds +东斗卡.dds +东方不败女帽子.dds +东方不败女衣服.dds +东方不败女鞋子.dds +东方不败男帽子.dds +东方不败男衣服.dds +东方不败男鞋子.dds +丝巾.dds +丝带.dds +丝线.dds +丝绸护腕绣面.dds +丝绸法术鞋底.dds +丝绸法袍衣襟.dds +丝绸法裤下摆.dds +丝绸灵力幡绦.dds +丝绸香囊.dds +两仪履.dds +两仪护腕.dds +两仪石.dds +两仪袍.dds +两仪裤.dds +两昆仑.dds +个性皮衣长裙时装上衣.dds +个性皮衣长裙时装头发.dds +个性皮衣长裙时装鞋子.dds +个性莫西干男头发.dds +中.dds +中世纪贵妇装女上衣.dds +中世纪贵妇装女头发.dds +中世纪贵妇装女手套.dds +中世纪贵妇装女鞋子.dds +中世纪风情女装-衣服32.dds +中世纪风情女装-鞋32.dds +中世纪风情男装-衣服32.dds +中世纪风情男装-裤子32.dds +中世纪风情男装-鞋32.dds +中九阳丹.dds +中国结女上衣32.dds +中国结女头发32.dds +中国结女手套32.dds +中国结女鞋子32.dds +中国金龙.dds +中境神丹玄天.dds +中式中级主屋.dds +中式低级主屋.dds +中式婚礼装女上衣.dds +中式婚礼装女鞋子.dds +中式婚礼装男上衣.dds +中式婚礼装男裤子.dds +中式婚礼装男鞋子.dds +中式高级主屋.dds +中斗卡.dds +中神气丸.dds +中秋快乐.dds +中秋月饼.dds +中秋礼盒.dds +中级全能洗点券.dds +中级厚磷符.dds +中级头盔图标.dds +中级火云符.dds +中级石头.dds +中级能力洗点券.dds +中级蓝影符.dds +中级青光符.dds +中舆幻本.dds +中金创药.dds +中隐披风.dds +临摹印记.dds +丹书折画屏.dds +丹枫呦鹿图.dds +丹霞晚枫.dds +丹鼎.dds +为爱守候.dds +为爱走遍天涯.dds +主基地.dds +举国同欢.dds +义德之徽.dds +义德之章.dds +乌游王蛇的血液.dds +乌龟.dds +乌龟卡.dds +乐.dds +乘胜万里伏.dds +乙.dds +九.dds +九冥朔影.dds +九命下铠.dds +九命战铠.dds +九命腕甲.dds +九命鞋.dds +九地妖王卡片1.dds +九地妖王卡片2.dds +九地妖王卡片3.dds +九地妖王卡片4.dds +九地妖王卡片5.dds +九地妖王卡片6.dds +九地妖王卡片7.dds +九地妖王卡片8.dds +九天伏魔刀.dds +九天息壤.dds +九宫石.dds +九宫锤.dds +九尺墨影.dds +九尾火狐.dds +九幽刃.dds +九幽精魄32.dds +九星龙珠.dds +九曜星卡.dds +九焱华晶.dds +九等奖.dds +九等镌刻.dds +九耳锡杖.dds +九莲托宝烛台.dds +九转活肺丹.dds +九转活血丸.dds +九转还魂丹.dds +九里香.dds +九阳丹.dds +九难长刀.dds +九霄碧穹玉.dds +九霄碧穹玉流通.dds +九霄血灵石.dds +九霄血灵石流通.dds +九霄金瓴铁.dds +九霄金瓴铁流通.dds +九香虫.dds +九香虫1.dds +九鬼归命.dds +九鬼破天.dds +九鬼裂风.dds +九鬼闪雷.dds +九鼎战甲.dds +九鼎腿甲.dds +九鼎袖甲.dds +九鼎靴.dds +乡村风格陶瓷娃娃.dds +乡间黄杨栅栏.dds +书断列传.dds +书籍1.dds +书籍2.dds +书籍3.dds +书籍4.dds +乱舞斗醉.dds +乾之表徽.dds +乾之魂.dds +乾坤一掷.dds +乾坤石.dds +二.dds +二十八宿卡.dds +二星龙珠.dds +二等奖.dds +二等祖龙勋章.dds +二等镌刻.dds +二级九阳丹.dds +二级九龙散.dds +二级归元散.dds +二级沉香丸.dds +二级活血散.dds +二级神气丸.dds +二级还灵水.dds +二级金创药.dds +二级龙涎香.dds +二连爆.dds +云剑.dds +云岚烟翠图.dds +云母双联柜.dds +云母画屏罗汉床.dds +云海望松瓶.dds +云涛弩.dds +云瑶腰饰.dds +云纹万寿玉如意.dds +云纹点翠立柜.dds +云纹男装礼包.dds +云纹虎符.dds +云翔.dds +云雕万寿菊漆盒.dds +云霄之丝.dds +云霄之爱.dds +云霄之纱.dds +云霄之翼.dds +云霄之舞.dds +云霄之露.dds +五.dds +五一劳动节奖章.dds +五威将令.dds +五帝奇珍.dds +五府卡.dds +五彩寒冰.dds +五彩盏.dds +五方斋粽.dds +五星连珠土.dds +五星连珠木.dds +五星连珠水.dds +五星连珠火.dds +五星连珠金.dds +五星龙珠.dds +五毒液.dds +五烨华晶.dds +五瓣梅纹隔断.dds +五等奖.dds +五等镌刻.dds +五级九阳丹.dds +五级九龙散.dds +五级归元散.dds +五级沉香丸.dds +五级活血散.dds +五级神气丸.dds +五级还灵水.dds +五级金创药.dds +五级龙涎香.dds +五色琅琊腰饰.dds +五色神佑项链.dds +五色神护项链.dds +五色神秀项链.dds +五色神谏项链.dds +五色粘合剂.dds +五色舜日腰饰.dds +五色英华腰饰.dds +五色鹿.dds +五色麟嘉腰饰.dds +五花蛛.dds +五花蝎.dds +五行乾坤令.dds +五行元气.dds +五行天轮.dds +五行石.dds +五遁盔.dds +五铢钱.dds +五香桂花糕.dds +亟雷子卡片1.dds +亟雷子卡片2.dds +亟雷子卡片3.dds +亟雷子卡片4.dds +亟雷子卡片5.dds +亟雷子卡片6.dds +亟雷子卡片7.dds +亟雷子卡片8.dds +亡者之冠.dds +亥.dds +亦.dds +亮片梦幻男装上衣.dds +亮片梦幻男装头发.dds +亮片梦幻男装裤子.dds +亮片梦幻男装鞋子.dds +亮花番莲双靠垫.dds +亮银枪.dds +亮银锤.dds +亲亲密密的动作.dds +人仙石.dds +人参果.dds +人族13a武侠职业装上衣.dds +人族13a武侠职业装护腕.dds +人族13a武侠职业装裤子.dds +人族13a武侠职业装鞋子.dds +人族13a法师职业装上衣.dds +人族13a法师职业装护腕.dds +人族13a法师职业装裤子.dds +人族13a法师职业装鞋子.dds +人族13b武侠职业装上衣.dds +人族13b武侠职业装护手.dds +人族13b武侠职业装裤子.dds +人族13b武侠职业装鞋子.dds +人族13b法师职业装上衣.dds +人族13b法师职业装护手.dds +人族13b法师职业装裤子.dds +人族13b法师职业装鞋子.dds +人族卷轴飞行器.dds +人族双龙飞剑.dds +人族如意.dds +人族小花蝴蝶剑.dds +人族拂尘飞剑.dds +人族武侠职业装上衣.dds +人族武侠职业装护腕.dds +人族武侠职业装裤子.dds +人族武侠职业装鞋子.dds +人族法师职业装上衣.dds +人族法师职业装护腕.dds +人族法师职业装裤子.dds +人族法师职业装鞋子.dds +人族烈红飞剑.dds +人族狼头.dds +人族紫琼.dds +人族鱼.dds +人族龙帝血裔.dds +人民币.dds +人王元精.dds +人的脑袋.dds +人类飞行器.dds +人鱼.dds +人鱼之心.dds +人鱼宝藏.dds +人鱼摆摊小.dds +人鱼玩偶.dds +人鱼鳍.dds +仁德之徽.dds +仁德之章.dds +仇人追踪.dds +从境神丹·周天.dds +从革项链.dds +仓库扩充石.dds +仓鼠.dds +仕女图.dds +仕女装.dds +仕女裙子.dds +仕女鞋.dds +仙人掌.dds +仙人球.dds +仙佑护身符.dds +仙佑魔力符.dds +仙冥之丝.dds +仙冥之爱.dds +仙冥之纱.dds +仙冥之翼.dds +仙冥之舞.dds +仙冥之露.dds +仙境奇缘.dds +仙宗秘笈.dds +仙履干红摆件.dds +仙时装包裹2.dds +仙树果.dds +仙灵丹.dds +仙灵之丝.dds +仙灵之息.dds +仙灵之爱.dds +仙灵之纱.dds +仙灵之翼.dds +仙灵之舞.dds +仙灵之露.dds +仙灵佩.dds +仙灵彩佩.dds +仙灵护腿.dds +仙灵法袍.dds +仙灵盔.dds +仙灵神力戒.dds +仙灵秘法戒.dds +仙灵符.dds +仙灵绝魔佩.dds +仙灵轻铠.dds +仙灵项链.dds +仙石碎片.dds +仙芝草.dds +仙锢令.dds +仙霓笑隐.dds +仙风之丝.dds +仙风之爱.dds +仙风之纱.dds +仙风之翼.dds +仙风之舞.dds +仙风之露.dds +仙风履.dds +仙风护手.dds +仙风袍.dds +仙风裤.dds +仙风项链.dds +仙魔印记.dds +仙魔尺.dds +仙魔尺模具.dds +仙魔碎片.dds +仙魔神尺.dds +仙魔秘笈.dds +仙魔秘笺.dds +仙魔袋.dds +仙鹤草.dds +代表财富的纸张.dds +令箭.dds +仲夏之粽.dds +任.dds +任务栏扩充石.dds +企鹅发射器.dds +企鹅喇叭.dds +企鹅娃娃.dds +伉俪情深.dds +伏羲易名石.dds +伏羲易名石1.dds +伏羲易名石2.dds +伏羲易名石3.dds +伏羲珠.dds +伏羲遗魄.dds +伏羲魂守.dds +伐木厂.dds +会动的勺子.dds +传国玉玺.dds +伤痕之匙.dds +伤麒森林之叶.dds +伯爵玫瑰骨瓷杯.dds +伯爵男装上衣.dds +伯爵男装头发.dds +伯爵男装裤子.dds +伯爵男装鞋子.dds +低级头盔图标.dds +低级石头.dds +佐罗时装男上衣.dds +佐罗时装男头发.dds +佐罗时装男手套.dds +佐罗时装男裤子.dds +佐罗时装男鞋子.dds +体能丹.dds +佛光项链.dds +佛手.dds +你是我的唯一.dds +侍女装头发.dds +侍应男装上衣.dds +侍应男装头发.dds +侍应男装裤子.dds +侍应男装鞋子.dds +侠客上衣.dds +侠客包子小图标.dds +侠客行.dds +侠客装.dds +侠客裤子.dds +侠客鞋.dds +侠风之力.dds +俄罗斯抹胸裙女头发.dds +俄罗斯抹胸裙女护腕.dds +俄罗斯抹胸裙女裙子.dds +俄罗斯抹胸裙女鞋子.dds +俏丽蝴蝶女装-头发32.dds +俏丽蝴蝶女装-衣服32.dds +俏丽蝴蝶女装-裤子32.dds +俏丽蝴蝶女装-鞋32.dds +俏皮粉色装女上衣.dds +俏皮粉色装女头发.dds +俏皮粉色装女裤子.dds +俏皮粉色装女鞋子.dds +保命符.dds +信.dds +信仰戒指.dds +信件.dds +信德之徽.dds +信德之章.dds +修好的剑.dds +修好的烧火棍.dds +修炼台.dds +修真匕首葫芦.dds +修真双魔镜.dds +修真桃花弓.dds +修真罐子.dds +修真长灯.dds +修真魔镜.dds +修罗.dds +修罗之心.dds +修罗之石.dds +修罗之角.dds +修罗天音.dds +修罗杵.dds +修行履.dds +修行护腕.dds +修行袍.dds +修行裤.dds +修造任务开启道具.dds +修造配方包裹.dds +修造配方包裹2.dds +修造配方包裹3.dds +倚天镇魂剑.dds +倚天镇魂杖.dds +倚荫长乐.dds +借书积分卡.dds +倭奴铳.dds +偃月长刀.dds +催云助雨卡.dds +僧侣技能书.dds +僵尸兵.dds +儿童节快乐.dds +元宵.dds +元晶.dds +元神之珠.dds +元素之光.dds +元素之核.dds +元素之灵.dds +元素之石.dds +元素宝钻.dds +元素微尘.dds +元素碎片.dds +元素粉末.dds +元素精华.dds +元素结晶.dds +元阳之石.dds +元霸锤.dds +元魂中级普通.dds +元魂中级稀有.dds +元魂低级普通.dds +元魂低级稀有.dds +元魂高级普通.dds +元魂高级稀有.dds +元魂魔塿.dds +兄弟守护卷轴.dds +兄弟移山卷轴.dds +兄弟识海卷轴.dds +兄弟诸世界卷轴.dds +兄弟迅捷卷轴.dds +充满的融灵之鼎.dds +充能器.dds +充能器2.dds +光之叶.dds +光刃符.dds +光明万圣戒.dds +光明千佛戒.dds +光明奋扬戒.dds +光明真言戒.dds +光石.dds +光翼09.dds +光翼定光.dds +光芒宝石.dds +兑之表徽.dds +兑之魂.dds +兑奖券1.dds +兑奖券2.dds +兑奖券3.dds +兑奖券4.dds +兑奖券5.dds +兑奖券6.dds +兑奖券7.dds +兔女郎包裹.dds +兔女郎女头发.dds +兔女郎女手套.dds +兔女郎女衣服.dds +兔女郎女裤子.dds +兔女郎女鞋子.dds +兔子卡.dds +兔子幼年.dds +兔幼年.dds +兔绒.dds +兔齿山猫.dds +全民礼包.dds +八.dds +八卦履.dds +八卦护腕.dds +八卦盘.dds +八卦石.dds +八卦袍.dds +八卦裤.dds +八卦阵.dds +八卦阵_2.dds +八宝佩.dds +八方锤.dds +八星龙珠.dds +八棱净水瓶.dds +八等奖.dds +八等镌刻.dds +八角铜锤.dds +公主上衣.dds +公主裙.dds +公主鞋.dds +公孙剑器.dds +公爵装女上衣.dds +公爵装女冠.dds +公爵装女护腕.dds +公爵装女裤子.dds +公爵装女鞋子.dds +公爵装男上衣.dds +公爵装男冠.dds +公爵装男护腕.dds +公爵装男裤子.dds +公爵装男鞋子.dds +六.dds +六叶玉莲立灯.dds +六合石.dds +六星龙珠.dds +六等奖.dds +六等镌刻.dds +六翼.dds +六芒星纹章.dds +六转指玄珠.dds +六道转轮.dds +兰晶树.dds +兰格尔木屋.dds +兰田玉佩.dds +兰顶千脚楼.dds +兰香渐幽路灯.dds +共工之石.dds +共工魂守.dds +关海法.dds +兵器架.dds +兵器架_2.dds +兵器架_3.dds +养心草.dds +养晦披风.dds +养生石.dds +养生石大.dds +兽王鼓舞.dds +兽面玉牌.dds +兽骨.dds +兽骨项链.dds +再.dds +再生丹.dds +军事时装女上衣.dds +军事时装女裙子.dds +军事时装女鞋.dds +军事时装男上衣.dds +军事时装男手套.dds +军事时装男裤子.dds +军事时装男鞋.dds +军旗.dds +军装男上衣.dds +军装男手套.dds +军装男裤子.dds +军装男鞋.dds +冠军勇士戒指.dds +冠军徽记.dds +冠军贤者戒指.dds +冥兽皮.dds +冥想金鳞石.dds +冥灭洪荒的心脏.dds +冥狮之毛.dds +冥祥下铠.dds +冥祥战铠.dds +冥祥腕甲.dds +冥祥鞋.dds +冥符.dds +冥鸦利爪.dds +冬.dds +冬季校服装女-头发32.dds +冬季校服装女-衣服32.dds +冬季校服装女-裤子32.dds +冬季校服装女-鞋32.dds +冬季校服装男-头发32.dds +冬季校服装男-衣服32.dds +冬季校服装男-裤子32.dds +冬季校服装男-鞋32.dds +冰之印.dds +冰之魂魄上半.dds +冰之魂魄下半.dds +冰凝之石.dds +冰凤凰.dds +冰晶蓝染色剂.dds +冰杖.dds +冰炎飞剑小.dds +冰爪.dds +冰石行者.dds +冰蚕丝冠.dds +冰雪令牌.dds +冰雪护符.dds +冰雪神谕.dds +冰风花.dds +冰魂宝珠.dds +冰魄弹.dds +冲天冠.dds +冲霄令乾.dds +冲霄令亘久.dds +冲霄令兑.dds +冲霄令坎.dds +冲霄令坤.dds +冲霄令巽.dds +冲霄令无常.dds +冲霄令离.dds +冲霄令艮.dds +冲霄令震.dds +决阵长刀.dds +冶仙塔.dds +冶仙塔_2.dds +冷艳锯.dds +净化之珠.dds +净水.dds +净灵原石.dds +净身露.dds +凌云宝袋1.dds +凌云宝袋2.dds +凌云宝袋3.dds +凌云碑残玦.dds +凌云结云.dds +凌云结雨.dds +凌云结风.dds +凌墟八觉髓.dds +凌墟八觉髓流通.dds +凌墟天玄骨.dds +凌墟天玄骨流通.dds +凌墟渎神木.dds +凌墟渎神木流通.dds +凌霄宝殿镇守卡.dds +凌霜冠.dds +凌风的剑.dds +凌风的护符.dds +凌风的玉佩.dds +凌风的遗物.dds +凌风锁心.dds +凝神丸.dds +凝神丹药.dds +凝神符.dds +凝结的内丹.dds +凝血战甲.dds +凝血腿甲.dds +凝血袖甲.dds +凝血靴.dds +凝露剑.dds +凝魂钛晶.dds +几根白的小碎骨.dds +凡尔赛典雅宫墙.dds +凤仪珍珠泉.dds +凤凰之翼.dds +凤凰粉台.dds +凤凰羽.dds +凤凰骑宠.dds +凤尾弓弦.dds +凤尾竹丛.dds +凤尾箭.dds +凤尾绞丝.dds +凤尾连接环.dds +凤羽护腕绣面.dds +凤羽法术鞋底.dds +凤羽法袍衣襟.dds +凤羽法裤下摆.dds +凤羽灵力幡绦.dds +凤羽香囊.dds +凤翅镗.dds +凤翔之弓.dds +凤翼天翔.dds +凤舞令.dds +凤鸣灵珠.dds +凭虚净羽.dds +凯撒英姿装男发.dds +凯旋之心.dds +凶神挂件.dds +凶签.dds +凶豺暴牙.dds +出售成就模式门票.dds +刃不加身.dds +刃不加身1.dds +刃不加身2.dds +刃甲犀牛肉.dds +分光盔.dds +刑天斧.dds +列刺剑齿鲨.dds +刚玉粉.dds +初暝幡杖.dds +初级全能洗点券.dds +初级厚磷符.dds +初级合金钢.dds +初级强化皮革.dds +初级淬火剂.dds +初级火云符.dds +初级焦炭.dds +初级能力洗点券.dds +初级蓝影符.dds +初级青光符.dds +利刃徽记.dds +利刃徽记巨蛋.dds +利爪.dds +刮刮卡.dds +制霸装男上衣.dds +制霸装男头发.dds +制霸装男手套.dds +制霸装男裤子.dds +制霸装男鞋子.dds +刺客专用服装01上衣.dds +刺客专用服装01护腕.dds +刺客专用服装01裤子.dds +刺客专用服装01鞋子.dds +刺客专用服装02上衣.dds +刺客专用服装02护腕.dds +刺客专用服装02裤子.dds +刺客专用服装02鞋子.dds +刺客专用服装03上衣.dds +刺客专用服装03护腕.dds +刺客专用服装03裤子.dds +刺客专用服装03鞋子.dds +刺客专用服装04上衣.dds +刺客专用服装04护腕.dds +刺客专用服装04裤子.dds +刺客专用服装04鞋子.dds +刺客仙魔技能书.dds +刺客大师.dds +刺客星盘.dds +刺球汁液.dds +刺绣插屏罗汉床.dds +刺鳞鱼.dds +前锋战地报告.dds +剑仙城精元.dds +剑坛印记.dds +剑灵16品剑.dds +剑灵七贤剑.dds +剑灵专有剑1.dds +剑灵专有剑2.dds +剑灵专有剑3.dds +剑灵专有剑4.dds +剑灵专有双剑1.dds +剑灵专有双剑2.dds +剑灵专有双剑4.dds +剑灵专用服装01上衣.dds +剑灵专用服装01手套.dds +剑灵专用服装01裤子.dds +剑灵专用服装01鞋子.dds +剑灵专用服装02上衣.dds +剑灵专用服装02手套.dds +剑灵专用服装02裤子.dds +剑灵专用服装02鞋子.dds +剑灵专用服装03上衣.dds +剑灵专用服装03手套.dds +剑灵专用服装03裤子.dds +剑灵专用服装03鞋子.dds +剑灵专用服装04上衣.dds +剑灵专用服装04手套.dds +剑灵专用服装04裤子.dds +剑灵专用服装04鞋子.dds +剑灵专用服装05上衣.dds +剑灵专用服装05手套.dds +剑灵专用服装05裤子.dds +剑灵专用服装05鞋子.dds +剑灵仙技能书.dds +剑灵八军剑.dds +剑灵大师.dds +剑灵技能书.dds +剑灵新手剑.dds +剑灵星盘.dds +剑灵腰牌.dds +剑灵铭牌.dds +剑灵魔技能书.dds +剑纹章.dds +剑魂.dds +剑魂1.dds +剑魂2.dds +剑魂3.dds +剑魂4.dds +剑魂5.dds +剑魂6.dds +剑齿虎的巨牙.dds +剔透的合欢坠子.dds +剔透的忘忧坠子.dds +剔透的无常项链.dds +剔透的无量坠子.dds +剔透的涵虚项链.dds +剔透的玉壶项链.dds +剔透的碧空项链.dds +剔透的紫微坠子.dds +剪纸1.dds +剪纸2.dds +剪纸3.dds +剪纸4.dds +割鹿刀.dds +劈挂刀.dds +劈空长斧.dds +力士.dds +力量之源.dds +力量之灯.dds +力量之证.dds +力量结晶.dds +力量铸材.dds +加速器.dds +劣魔.dds +动感迷彩裤时装上衣.dds +动感迷彩裤时装头发.dds +动感迷彩裤时装手套.dds +动感迷彩裤时装裤子.dds +动感迷彩裤时装鞋子.dds +动物皮毛.dds +动物胶.dds +劲草扶风.dds +劳动光荣.dds +勇士奖章1.dds +勇士奖章2.dds +勇气之证.dds +勇气徽章.dds +勇气项链.dds +勇者之力.dds +勇者水晶.dds +勾魂牌.dds +包子喇叭.dds +包裹栏扩充石.dds +匕首01.dds +匕首02.dds +匕首03.dds +匕首04.dds +匕首05.dds +匕首06.dds +匕首07.dds +匕首08.dds +匕首09.dds +匕首10.dds +匕首11.dds +匕首12.dds +匕首13.dds +匕首14.dds +匕首15.dds +匕首16.dds +匕首17.dds +匕首18.dds +匕首乒乓球拍.dds +匕首叉子.dds +匕首小辣椒.dds +匕首羊.dds +匕首铸具1.dds +匕首铸具10.dds +匕首铸具2.dds +匕首铸具3.dds +匕首铸具4.dds +匕首铸具5.dds +匕首铸具6.dds +匕首铸具7.dds +匕首铸具8.dds +匕首铸具9.dds +化婴丹.dds +化极留意框.dds +化解灵符.dds +化身项链.dds +北冥下铠.dds +北冥战铠.dds +北冥腕甲.dds +北冥鞋.dds +北山酒经.dds +北斗卡.dds +北美头盔.dds +北美披风.dds +北美法帽.dds +北美法术戒指.dds +北美法术项链.dds +北美物理戒指.dds +北美物理项链.dds +匠心之丝.dds +匠心之爱.dds +匠心之纱.dds +匠心之翼.dds +匠心之舞.dds +匠心之露.dds +匡庐高山图.dds +十.dds +十一.dds +十一星龙珠.dds +十二.dds +十二峰陶砚.dds +十二星龙珠.dds +十字弩.dds +十字星.dds +十字白男军装男上衣.dds +十字白男军装男头发.dds +十字白男军装男裤子.dds +十字白男军装男鞋子.dds +十方天罗宝印.dds +十星龙珠.dds +十等奖.dds +十等镌刻.dds +千佛戒.dds +千年雪莲.dds +千心结.dds +千眼神耳卡.dds +千里共婵娟.dds +千金子.dds +升级版加速器小.dds +午.dds +午夜叛逆女装-衣服32.dds +午夜叛逆女装-鞋32.dds +午夜叛逆女装下装32.dds +午夜叛逆女装护腕32.dds +半支白羽.dds +华丽长剑.dds +华光会之印.dds +华光会先锋令牌.dds +华光会勇者令牌.dds +华光会徽记.dds +华光会统领令牌.dds +华胥引迷香炉.dds +单手短五星杖.dds +单手短夜影羊.dds +单手短巴掌.dds +单手短扳手.dds +单手短羊.dds +单手短胡萝卜.dds +单手短香蕉.dds +单肩宝石上衣.dds +单肩宝石头发.dds +单肩宝石护腕.dds +单肩宝石鞋子.dds +单臂法螺路灯.dds +南冥离火剑.dds +南斗卡.dds +南瓜裙上身.dds +南瓜裙头发.dds +南瓜裙护腕.dds +南瓜裙鞋子.dds +博古冠.dds +博古花楹柜.dds +卡.dds +卡牌完璧类橙色.dds +卡牌完璧紫色.dds +卡牌完璧红色.dds +卡牌完璧蓝色.dds +卡牌完璧黄色.dds +卡牌宝箱a.dds +卡牌宝箱b.dds +卡牌宝箱c.dds +卡牌宝箱s.dds +卡牌宝箱ss.dds +卡牌玄命类橙色.dds +卡牌玄命类紫色.dds +卡牌玄命类红色.dds +卡牌玄命类蓝色.dds +卡牌玄命类黄色.dds +卡牌玄魂类橙色.dds +卡牌玄魂类紫色.dds +卡牌玄魂类红色.dds +卡牌玄魂类蓝色.dds +卡牌玄魂类黄色.dds +卡牌破军类橙色.dds +卡牌破军类紫色.dds +卡牌破军类红色.dds +卡牌破军类蓝色.dds +卡牌破军类黄色.dds +卡牌破阵类橙色.dds +卡牌破阵类紫色.dds +卡牌破阵类红色.dds +卡牌破阵类蓝色.dds +卡牌破阵类黄色.dds +卡牌长生橙色.dds +卡牌长生紫色.dds +卡牌长生红色.dds +卡牌长生蓝色.dds +卡牌长生黄色.dds +卧虎咆岩.dds +卫士奖章1.dds +卫士奖章2.dds +卯.dds +印度舞娘时装上衣.dds +印度舞娘时装头发.dds +印度舞娘时装护腕.dds +印度舞娘时装裤子.dds +印度舞娘时装鞋子.dds +印花蝴蝶少女装头发.dds +印花蝴蝶少女装衣服.dds +印花蝴蝶少女装鞋子.dds +卷云托盏烛台.dds +卷云石坊.dds +卷草卷纹隔断.dds +卷轴.dds +厄运拳套.dds +厚土之力.dds +厚土之意.dds +厚实的板角.dds +厚德载物.dds +厚磷中级.dds +厚磷初级.dds +厚磷高级.dds +原始人.dds +原始人面具.dds +原木.dds +厨房.dds +去.dds +参合密卷.dds +参宿石刻.dds +又.dds +友谊地久天长.dds +双倍经验卷轴.dds +双凤出廓壁.dds +双刀千足虫触角.dds +双囍同心楼.dds +双城争霸.dds +双头狼.dds +双子星.dds +双层绿萝花架.dds +双层转龙庐.dds +双手短大葱.dds +双手短小木槌.dds +双手短羊.dds +双手长五星杖.dds +双手长甘蔗.dds +双手长羊.dds +双手长莲藕之锤.dds +双手长铁锹.dds +双掌刀.dds +双管猎枪.dds +双翼行左铜狮.dds +双翼贯右铜狮.dds +双莓传奇.dds +双轮木板车.dds +双飞燕.dds +双龙戏珠柜.dds +发电器官.dds +发白的眼睛.dds +发黑的狼爪.dds +变异毒囊蛙.dds +变异的野狗.dds +变种刺针.dds +口号.dds +古伞单手短.dds +古利特男头发.dds +古剑残片.dds +古剑碎片.dds +古式素罩立灯.dds +古文书.dds +古朴香盒.dds +古物.dds +古玉虎符.dds +古画品录.dds +古色古香的情书.dds +古藤杖.dds +古藤神笔.dds +古装上衣.dds +古装下衣.dds +古装小女孩.dds +古装小男孩.dds +古装护腕.dds +古装男头发.dds +古装男护腕.dds +古装鞋子.dds +另类非主流男装-上衣32.dds +另类非主流男装-裤子32.dds +另类非主流男装-鞋子32.dds +召神符.dds +可乐.dds +可可豆.dds +可爱时尚女装-头发32.dds +可爱时尚女装-护腕32.dds +可爱时尚女装-衣服32.dds +可爱时尚女装-裤子32.dds +可爱时尚女装-鞋32.dds +可爱气泡鱼.dds +可爱螃蟹.dds +可爱鱼妖.dds +叱咤下铠.dds +叱咤战铠.dds +叱咤腕甲.dds +叱咤鞋.dds +叱风战锤.dds +右虎符.dds +号角胧刀.dds +合家团圆.dds +合成丝.dds +合成油.dds +合欢坠子.dds +合金弩机.dds +合金矢.dds +合金药室.dds +吉祥佩.dds +吉祥戏球狮.dds +吉祥纹刻象牙雕.dds +吉祥腰饰.dds +吉祥锁.dds +吉祥麒麟.dds +吉签.dds +后土魂守.dds +向日葵.dds +向日葵装腕.dds +向日葵装衣.dds +向日葵装裤.dds +向日葵装鞋.dds +君之印绶.dds +君子兰.dds +吞云盔.dds +吞佛魔尊的神志精华.dds +吞佛魔尊的鼻环碎片.dds +吞魔戒.dds +含情脉脉.dds +启天残章.dds +吴恒的信.dds +吴钩剑.dds +吹雪冠.dds +周天残页.dds +周年庆大礼包小.dds +呼吸球.dds +命运金牌.dds +命运魔方.dds +命运魔方之轮1.dds +命运魔方之轮2.dds +命运魔方之轮3.dds +命运魔方之轮4.dds +命运魔方之轮5.dds +命运魔方之轮6.dds +命运魔方徽记.dds +咆哮长斧.dds +和田玉佩.dds +和风灵珠.dds +咒术履.dds +咒术护腕.dds +咒术袍.dds +咒术裤.dds +咒术逆天戒.dds +咒灵符.dds +哈雷套装女上衣.dds +哈雷套装女头发.dds +哈雷套装女护手.dds +哈雷套装女鞋子.dds +哈雷套装男上衣.dds +哈雷套装男帽子.dds +哈雷套装男护腕.dds +哈雷套装男裤子.dds +哈雷套装男鞋子.dds +哥特萝莉装女发.dds +哥特风萝莉装上衣.dds +哥特风萝莉装裤子.dds +哥特风萝莉装鞋子.dds +哼哈二将卡.dds +唐才子传.dds +唐装男上衣.dds +唐装男裤子.dds +唐装男鞋.dds +啤酒瓶.dds +啮霜长锤.dds +啸风斧.dds +喜从天降.dds +喜报春花灯.dds +喜糖.dds +喜纸.dds +喜贴.dds +喜酒.dds +喜钱.dds +嘶风镗.dds +嘻哈女腕.dds +嘻哈女装.dds +嘻哈女裙.dds +嘻哈女鞋.dds +噬光.dds +噬魂下铠.dds +噬魂之戒.dds +噬魂刃.dds +噬魂戒.dds +嚎月旗帜.dds +囚龙杖.dds +四.dds +四圣门徒浮雕.dds +四大天王卡.dds +四季仕女图.dds +四季慕斯蛋糕拼盘.dds +四方神卡.dds +四星天牛王的翅膀.dds +四星龙珠.dds +四猛锤.dds +四相履.dds +四相护腕.dds +四相袍.dds +四相裤.dds +四等奖.dds +四等镌刻.dds +四级九阳丹.dds +四级九龙散.dds +四级归元散.dds +四级沉香丸.dds +四级活血散.dds +四级神气丸.dds +四级还灵水.dds +四级金创药.dds +四级龙涎香.dds +四象石.dds +回.dds +回城石.dds +回城香.dds +回天戒.dds +回春散.dds +回阳丹.dds +团结就是力量.dds +园艺剪刀手.dds +园艺区哨兵.dds +固神符.dds +固魂钛晶.dds +国.dds +国色天香刻瓷.dds +圆形月饼.dds +圆盾勋章巨蛋.dds +圆盾徽章.dds +圆顶围龙屋.dds +土之髓.dds +土元素精华.dds +土拔鼠国王.dds +土蝼卫兵.dds +土蝼哨兵.dds +土蝼战士.dds +土貂.dds +土铳.dds +圣殿之石.dds +圣殿之石包裹.dds +圣母珠.dds +圣泉.dds +圣洁之丝.dds +圣洁之爱.dds +圣洁之纱.dds +圣洁之翼.dds +圣洁之舞.dds +圣洁之露.dds +圣灵.dds +圣灵丹.dds +圣莲令.dds +圣诞大礼盒.dds +圣诞套装女.dds +圣诞套装男.dds +圣诞女装原色手套.dds +圣诞女装原色衣服.dds +圣诞女装原色裙子.dds +圣诞女装原色鞋子.dds +圣诞女装变色手套.dds +圣诞女装变色衣服.dds +圣诞女装变色裙子.dds +圣诞女装变色鞋子.dds +圣诞女装头发.dds +圣诞快乐.dds +圣诞新老人头.dds +圣诞新装女上裙.dds +圣诞新装女手套.dds +圣诞新装女装鞋.dds +圣诞新装男上衣.dds +圣诞新装男手套.dds +圣诞新装男裤子.dds +圣诞新装男鞋.dds +圣诞树的小星星.dds +圣诞男装原色帽子.dds +圣诞男装原色护腕.dds +圣诞男装原色衣服.dds +圣诞男装原色裤子.dds +圣诞男装原色鞋子.dds +圣诞男装变色护腕.dds +圣诞男装变色衣服.dds +圣诞男装变色裤子.dds +圣诞男装变色鞋子.dds +圣诞礼服原色女-上身.dds +圣诞礼服原色女-下身.dds +圣诞礼服原色女-头发.dds +圣诞礼服原色女-护腕.dds +圣诞礼服原色女-鞋.dds +圣诞礼服原色男-上身.dds +圣诞礼服原色男-下身.dds +圣诞礼服原色男-头发.dds +圣诞礼服原色男-手套.dds +圣诞礼服原色男-鞋.dds +圣诞礼服女-上身.dds +圣诞礼服女-下身.dds +圣诞礼服女-头发.dds +圣诞礼服女-护腕.dds +圣诞礼服女-鞋.dds +圣诞礼服男-上身.dds +圣诞礼服男-下身.dds +圣诞礼服男-头发.dds +圣诞礼服男-手套.dds +圣诞礼服男-鞋.dds +圣诞礼服男上衣-变色.dds +圣诞礼服男上衣.dds +圣诞礼服男手套-变色.dds +圣诞礼服男裤-变色.dds +圣诞礼服男裤子.dds +圣诞礼服男鞋-变色.dds +圣诞礼服男鞋.dds +圣诞老人的帽子.dds +圣诞老人的日记.dds +圣诞袜子(紫).dds +圣诞袜子(绿).dds +圣诞袜子(蓝).dds +圣诞袜子(黄).dds +圣诞袜子.dds +圣诞装女上衣.dds +圣诞装女上裙-变色.dds +圣诞装女上裙.dds +圣诞装女手套-变色.dds +圣诞装女手套.dds +圣诞装女装鞋-变色.dds +圣诞装女裙子.dds +圣诞装女靴子.dds +圣诞装男上衣.dds +圣诞装男手套.dds +圣诞装男裤子.dds +圣诞装男靴子.dds +圣诞邀请函.dds +圣诞金币.dds +圣诞铜币.dds +圣诞银币.dds +圣诞麋鹿坐骑.dds +地之圣印.dds +地之碎片.dds +地之精华.dds +地仙石.dds +地佑宝书.dds +地元石.dds +地喷花1.dds +地喷花2.dds +地喷花3.dds +地喷花4.dds +地喷花5.dds +地旋花1.dds +地旋花2.dds +地旋花3.dds +地旋花4.dds +地旋花5.dds +地渊妖将卡片1.dds +地渊妖将卡片2.dds +地渊妖将卡片3.dds +地渊妖将卡片4.dds +地渊妖将卡片5.dds +地渊妖将卡片6.dds +地渊妖将卡片7.dds +地渊妖将卡片8.dds +地灵石.dds +地煞元精.dds +地煞星卡.dds +地煞石.dds +地煞长锤.dds +地狱狮王.dds +地缚密卷.dds +地藏菩萨.dds +地藏菩萨碎片.dds +地行彩鸟.dds +地鬼牙.dds +坎之表徽.dds +坎之魂.dds +坏人卡.dds +坏掉的弓.dds +坐骑夸父.dds +坐骑宠物兑换牌.dds +坐骑机械战狮.dds +坐骑猛犸巨象.dds +坐骑章鱼龙怪.dds +坐骑葫芦.dds +坐骑蛇.dds +坐骑飞龙.dds +坐骑鼠轮车.dds +坚城.dds +坚壁之石.dds +坚壁之石包裹.dds +坚定红星.dds +坚硬的喙.dds +坚硬虫翅.dds +坤之表徽.dds +坤之魂.dds +垂月喷泉.dds +垂线流星.dds +垂花诗门.dds +垒丝缠魂·紫.dds +垒丝缠魂·蓝.dds +垒丝缠魂·赤.dds +垒丝缠魂·青.dds +城市徽记.dds +增长无量木.dds +墨.dds +墨炎长斧.dds +墨雨之弓.dds +墨鲶.dds +复古玻璃垂灯.dds +复古纹饰筒灯.dds +复活卷轴.dds +复苏的云剑.dds +夏威夷时装女上身.dds +夏威夷时装女下身.dds +夏威夷时装女头发.dds +夏威夷时装女护腕.dds +夏威夷时装女鞋子.dds +夏季校服男装-衣服32.dds +夏季校服男装-裤子32.dds +夏季校服男装-鞋32.dds +夏季校服装女-衣服32.dds +夏季校服装女-裙子32.dds +夏季校服装女-鞋32.dds +夏季沙漠男装上衣.dds +夏季沙漠男装下衣.dds +夏季沙漠男装头发.dds +夏季沙漠男装鞋子.dds +夏日清凉装衣.dds +夏日清凉装裙.dds +夏日清凉装鞋.dds +夏日阳光沙滩椅.dds +夕儿缝的征衣.dds +多宝沉香笔架.dds +多寿水饺.dds +多彩项链12.dds +多彩项链13.dds +多情剑.dds +多福水饺.dds +多闻无双丝.dds +夜光之丝.dds +夜光之爱.dds +夜光之纱.dds +夜光之翼.dds +夜光之舞.dds +夜光之露.dds +夜光宝珠.dds +夜叉之石.dds +夜影技能书.dds +夜影星盘.dds +夜明珠.dds +夜明珠变色.dds +夜煞.dds +大.dds +大九阳丹.dds +大刀.dds +大力丸.dds +大力神.dds +大力神之冠.dds +大包裹.dds +大嘟嘟熊.dds +大地之石.dds +大型凌云物资箱.dds +大型凌云物资袋.dds +大头丸.dds +大明宣德炉.dds +大漠孤烟.dds +大珍珠.dds +大神气丸.dds +大禹帝骨.dds +大自在轮.dds +大花旗袍头发.dds +大花旗袍裙子.dds +大花旗袍鞋子.dds +大虾弓.dds +大虾拳套.dds +大贝壳.dds +大贝壳亮.dds +大金创药.dds +大金锭.dds +大钳子.dds +大银锭.dds +大隐披风.dds +大黄.dds +大龙虾.dds +天一水.dds +天上人间.dds +天上天下礼盒.dds +天下第一帮.dds +天之昊镜.dds +天之碎片.dds +天之精华.dds +天书_一剪梅.dds +天书_一夫当关.dds +天书_一苇渡江.dds +天书_七娘子.dds +天书_三学士.dds +天书_三昧真火.dds +天书_丘比特.dds +天书_业火.dds +天书_东风破.dds +天书_九重葛.dds +天书_二郎神.dds +天书_五更转.dds +天书_优钵罗.dds +天书_八声甘州.dds +天书_六州歌头.dds +天书_冰夷.dds +天书_冰火麒麟.dds +天书_凤来朝.dds +天书_力拔千钧.dds +天书_力挽狂澜.dds +天书_勾魂摄魄.dds +天书_北冥.dds +天书_十三太保.dds +天书_十八学士.dds +天书_十样锦.dds +天书_千秋岁.dds +天书_千里烟波.dds +天书_双飞翼.dds +天书_变乱.dds +天书_四大皆空.dds +天书_四时好.dds +天书_土地拜寿.dds +天书_坐忘禅.dds +天书_塞下.dds +天书_天地变色.dds +天书_天地和谐.dds +天书_天残地缺.dds +天书_天香.dds +天书_天鼓妙叹(雷).dds +天书_夸父.dds +天书_奇异恩典.dds +天书_如沐春风.dds +天书_如蒙神助.dds +天书_妃子笑.dds +天书_嫦娥.dds +天书_子夜歌.dds +天书_宿命.dds +天书_对酒当歌.dds +天书_射天狼.dds +天书_崩坏.dds +天书_巨灵.dds +天书_弱水三千.dds +天书_弹弓客.dds +天书_弹球手.dds +天书_心如止水(定).dds +天书_忆江南.dds +天书_念奴娇.dds +天书_怒火攻心.dds +天书_捻花一笑.dds +天书_无字天书.dds +天书_昆仑.dds +天书_杀破狼.dds +天书_桃之夭夭.dds +天书_桃花扇.dds +天书_梨花烟雨.dds +天书_水滴石穿.dds +天书_水龙吟.dds +天书_江南.dds +天书_波律香颂.dds +天书_波浩淼.dds +天书_洛神.dds +天书_浴火鸾凤.dds +天书_海啸.dds +天书_满江红.dds +天书_潜龙.dds +天书_火宵之月.dds +天书_点绛唇.dds +天书_烟光残照.dds +天书_焚情.dds +天书_玉壶冰心.dds +天书_玫瑰刺.dds +天书_百兽之王.dds +天书_盘古.dds +天书_破阵子.dds +天书_碧云天.dds +天书_离恨天.dds +天书_离歌.dds +天书_空境.dds +天书_笑疯癫.dds +天书_红莲.dds +天书_美人香.dds +天书_美女蛇.dds +天书_胭脂红泪.dds +天书_般若汤.dds +天书_荒漠甘泉.dds +天书_莎乐美.dds +天书_菩提明镜.dds +天书_蚩尤.dds +天书_蝶恋花.dds +天书_血雨腥风.dds +天书_赤壁.dds +天书_赤炼.dds +天书_醉红尘.dds +天书_钢铁神兵.dds +天书_长生殿.dds +天书_阳关.dds +天书_雨师.dds +天书_风虎云龙.dds +天人合一符.dds +天人捧秋溪.dds +天仙子.dds +天仙石.dds +天使喇叭.dds +天使心.dds +天使护士装女上衣.dds +天使护士装女头发.dds +天使护士装女护腕.dds +天使护士装女裙子.dds +天使护士装女鞋.dds +天刃符.dds +天劫射日弓.dds +天劫戒.dds +天劫腰佩.dds +天劫项链.dds +天印轮.dds +天叱宝刀.dds +天命之书.dds +天命冠.dds +天命幡杖.dds +天命逍遥礼盒.dds +天喻兽图.dds +天地灵光宝盒.dds +天天想你.dds +天威.dds +天子行玺.dds +天山雪枭的尸体.dds +天工符文.dds +天师令剑.dds +天心战甲.dds +天心腿甲.dds +天心袖甲.dds +天心靴.dds +天机轮.dds +天枢之剑.dds +天歌.dds +天水净体露.dds +天泪之匙.dds +天泽圣典.dds +天玄骨.dds +天玄骨流通.dds +天生我才.dds +天界遗卷.dds +天皇续魂丹.dds +天空鸿毛.dds +天罗节鞭.dds +天罡元精.dds +天罡地煞卡.dds +天罡星.dds +天罡星卡.dds +天罡石.dds +天罡长锤.dds +天荒地老.dds +天蓝色染料.dds +天蚕丝.dds +天衣.dds +天衣碎片.dds +天长地久丝.dds +天门礼乐浮雕.dds +天青蓝染料.dds +天马战士的血液.dds +天马独角兽.dds +天魄石.dds +天魔淬体丸.dds +天鹅.dds +天鹅之翼.dds +天鹅之翼2.dds +天鹅之翼3.dds +天龙玉髓石.dds +天龙精血石.dds +太乙之剑.dds +太乙破阕弩.dds +太乙破阙弓.dds +太初华晶.dds +太岁.dds +太岁卡.dds +太极履.dds +太极护腕.dds +太极纹样扇.dds +太极袍.dds +太极裤.dds +太清卡.dds +太虚之剑.dds +太阳元气.dds +太阴之剑.dds +太阴元气.dds +夫诸王.dds +夫诸角.dds +失心密卷.dds +失效的魔方齿轮.dds +头盔1.dds +头盔2.dds +头盔3.dds +头领佩刀.dds +夸父追日丸.dds +夺天之翼.dds +夺灵追魂皿.dds +夺魂刃.dds +夺魄刃.dds +奇妙果.dds +奇峰万木图.dds +奇怪的钥匙.dds +奇特的树枝.dds +奇皇点金尺.dds +奇门战甲.dds +奇门盔.dds +奇门腿甲.dds +奇门袖甲.dds +奇门靴.dds +奉灵火牌.dds +奋扬戒.dds +契约.dds +奔流.dds +奔雷镗.dds +女.dds +女仆女装上衣.dds +女仆女装裙子.dds +女仆女装鞋子.dds +女双色婚纱手套.dds +女双色婚纱裙.dds +女双色婚纱鞋.dds +女唐装.dds +女式恶魔套装上衣.dds +女式恶魔套装下衣.dds +女式恶魔套装头发.dds +女式恶魔套装鞋子.dds +女忍者头发.dds +女忍者手套.dds +女忍者衣服.dds +女忍者裤子.dds +女忍者鞋子.dds +女时尚短裙上衣.dds +女时尚短裙帽子.dds +女时尚短裙裤子.dds +女时尚短裙鞋子.dds +女暗色蕾丝-护腕.dds +女暗色蕾丝-衣服.dds +女暗色蕾丝-鞋.dds +女机车装上衣.dds +女机车装头发.dds +女机车装裤子.dds +女机车装鞋子.dds +女水晶芭蕾-衣服32.dds +女水晶芭蕾-鞋32.dds +女海砂-短裙.dds +女海砂-衣服.dds +女海砂-鞋.dds +女球鞋.dds +女白球戎装上衣.dds +女白球戎装头发.dds +女白球戎装鞋子.dds +女皇冠.dds +女神礼赞.dds +女豹纹吊带装-头发32.dds +女豹纹吊带装-衣服32.dds +女豹纹吊带装-裤子32.dds +女豹纹吊带装-鞋32.dds +女豹纹比基尼上衣.dds +女豹纹比基尼下衣.dds +女豹纹比基尼头发.dds +女豹纹比基尼鞋子.dds +女闪耀礼服上衣.dds +女闪耀礼服头发.dds +女闪耀礼服护腕.dds +女闪耀礼服鞋子.dds +好人卡.dds +如意佩.dds +如意弓.dds +如意白墙.dds +如意白檐柱.dds +如意腰饰.dds +如意麒麟.dds +如胶似漆.dds +如虎添翼.dds +如风之信.dds +如风剑.dds +妃红色染料.dds +妖.dds +妖兽合体神兽.dds +妖兽大师.dds +妖兽妖虎.dds +妖兽技能书.dds +妖兽时装上衣.dds +妖兽时装护腕.dds +妖兽时装裤子.dds +妖兽时装鞋子.dds +妖兽星盘.dds +妖兽炎鸠坐骑.dds +妖兽石斑鱼.dds +妖兽飞怪.dds +妖兽飞蜻龙.dds +妖冥虫卡片1.dds +妖冥虫卡片2.dds +妖冥虫卡片3.dds +妖冥虫卡片4.dds +妖冥虫卡片5.dds +妖冥虫卡片6.dds +妖冥虫卡片7.dds +妖冥虫卡片8.dds +妖护护身符.dds +妖护魔力符.dds +妖族13b妖兽职业装上衣.dds +妖族13b妖兽职业装护手.dds +妖族13b妖兽职业装裤子.dds +妖族13b妖兽职业装鞋子.dds +妖族13b妖精职业装上衣.dds +妖族13b妖精职业装护手.dds +妖族13b妖精职业装裤子.dds +妖族13b妖精职业装鞋子.dds +妖族夜枭探险家.dds +妖族女13a妖精职业装上衣.dds +妖族女13a妖精职业装护腕.dds +妖族女13a妖精职业装裤子.dds +妖族女13a妖精职业装鞋子.dds +妖族女妖精职业装上衣.dds +妖族女妖精职业装护腕.dds +妖族女妖精职业装裤子.dds +妖族女妖精职业装鞋子.dds +妖族男13a妖兽职业装上衣.dds +妖族男13a妖兽职业装护腕.dds +妖族男13a妖兽职业装裤子.dds +妖族男13a妖兽职业装鞋子.dds +妖族男妖兽职业装上衣.dds +妖族男妖兽职业装护腕.dds +妖族男妖兽职业装裤子.dds +妖族男妖兽职业装鞋子.dds +妖族神鹤.dds +妖族荷花飞行器.dds +妖族蜻蜓飞行器.dds +妖族黄蜂.dds +妖牛角.dds +妖精大师.dds +妖精技能书.dds +妖精星盘.dds +妙计锦囊.dds +妩媚娘上衣.dds +妩媚娘头发.dds +妩媚娘鞋子.dds +姜小虎-包裹.dds +姜小虎_包裹表情.dds +姜小虎宠物.dds +威凛斗篷.dds +娶我吧.dds +婆罗子.dds +婚庆喜帖.dds +婚庆蛋糕.dds +婚庆香槟.dds +婚戒女.dds +婚戒男.dds +婚礼小精灵.dds +婚礼服装原色女上衣.dds +婚礼服装原色女头饰.dds +婚礼服装原色女鞋子.dds +婚礼服装原色男上衣.dds +婚礼服装原色男鞋子.dds +婚礼服装变色女上衣.dds +婚礼服装变色女鞋子.dds +婚礼服装变色男上衣.dds +婚礼服装变色男头饰.dds +婚礼服装变色男鞋子.dds +婚礼男头发.dds +婚礼男衣服.dds +婚礼男裤子.dds +婚礼男鞋子.dds +婚礼请柬.dds +婚纱.dds +婚纱手套.dds +婚纱鞋子.dds +嫁给我吧.dds +嫣红色染色剂.dds +子.dds +子午参.dds +子弹袋.dds +子母剑.dds +子母离魂镖.dds +孔雀石链子.dds +字牌.dds +孟婆汤.dds +孤穹剑.dds +宁素石柱.dds +宁素铁墙.dds +宁素铁门.dds +宁芙石柱.dds +宁芙铁墙.dds +宁芙铁门.dds +守护战甲.dds +守护斗篷.dds +守护腿甲.dds +守护袖甲.dds +守护靴.dds +安济和春桥.dds +完.dds +完整的手机商券.dds +完整的皮囊.dds +完整虎符.dds +完璧.dds +完璧包.dds +完璧的碎片.dds +完美_五铢钱.dds +完美上上签.dds +完美上上签变色.dds +完美上上签彩票用小.dds +完美上签.dds +完美世界.dds +完美伏波币.dds +完美军备箱.dds +完美军章1.dds +完美军章2.dds +完美军章3.dds +完美号角.dds +完美吊带装女手套.dds +完美吊带装女装.dds +完美吊带装女裤.dds +完美吊带装女鞋.dds +完美和服女小.dds +完美和服女鞋.dds +完美和服男小.dds +完美和服男鞋.dds +完美唐装女上衣.dds +完美唐装女裙.dds +完美唐装女鞋.dds +完美唐装男上衣.dds +完美唐装男裤.dds +完美唐装男鞋.dds +完美夏装女上衣.dds +完美夏装女头发.dds +完美夏装女鞋子.dds +完美大礼包1.dds +完美大礼包2.dds +完美大礼包3.dds +完美大礼包4.dds +完美大礼包5.dds +完美大礼包6.dds +完美大礼包7.dds +完美大礼包8.dds +完美拉拉队女.dds +完美拉拉队女鞋.dds +完美水饺.dds +完美流银币.dds +完美狼兽.dds +完美皮装女上.dds +完美皮装女手套.dds +完美皮装女裙.dds +完美皮装女鞋.dds +完美皮装男上.dds +完美皮装男裤.dds +完美皮装男鞋.dds +完美石.dds +完美神气丸.dds +完美粽子.dds +完美粽子2.dds +完美粽子3.dds +完美金创药.dds +完美银票.dds +完美黑礼服女.dds +完美黑礼服女手套.dds +完美黑礼服女手鞋.dds +宗师之语.dds +定光拳套.dds +定海长锤.dds +定灵符.dds +定神符.dds +定音长锤.dds +定魂丸.dds +宝图残页.dds +宝图碎片.dds +宝物卷轴.dds +宝蓝贡多拉.dds +实惠礼包.dds +宠物笼.dds +宠物蛋.dds +宠物默认.dds +宠物龟.dds +宣传女装上衣.dds +宣传女装头发.dds +宣传女装护腕.dds +宣传女装裤子.dds +宣传女装鞋子.dds +宣传时装男上衣.dds +宣传时装男头发.dds +宣传时装男手套.dds +宣传时装男裤子.dds +宣传时装男鞋子.dds +宣花斧.dds +宫廷布艺立灯.dds +家传宝佩.dds +家和万事兴.dds +家园书法装饰横.dds +家园人参果.dds +家园人参果种子.dds +家园兔子.dds +家园兔子幼崽.dds +家园南瓜.dds +家园南瓜种子.dds +家园国画横.dds +家园国画竖.dds +家园奶牛.dds +家园奶牛幼崽.dds +家园对联.dds +家园小麦.dds +家园小麦种子.dds +家园山体.dds +家园山羊.dds +家园山羊幼崽.dds +家园山鸡.dds +家园山鸡幼崽.dds +家园扇形墙饰.dds +家园桃金娘.dds +家园桃金娘种子.dds +家园猪.dds +家园猪幼崽.dds +家园聚宝盆.dds +家园荷花.dds +家园莲雾.dds +家园莲雾种子.dds +家园辣椒.dds +家园辣椒种子.dds +家园配方卷轴中级.dds +家园配方卷轴初级.dds +家园配方卷轴高级.dds +家园配方通关文牒中级.dds +家园配方通关文牒初级.dds +家园配方通关文牒高级.dds +家园马.dds +家园马幼崽.dds +家园鹿.dds +家园鹿幼崽.dds +家园黄金果.dds +家园黄金果种子.dds +宽嘴奇足.dds +宾客胸花.dds +寂照犀变.dds +寄卖店铺开店凭证周.dds +寄卖店铺开店凭证月.dds +寄居蟹壳.dds +寄魂花蕊.dds +寅.dds +寒.dds +寒之印.dds +寒之意右半.dds +寒之意左半.dds +寒冰之心.dds +寒冰公主.dds +寒武龙.dds +寒水之力.dds +寒水之意.dds +寒烟翠.dds +寒绯樱遮榻.dds +寰世古本.dds +寰宇令牌.dds +寻宝网摆摊.dds +寿.dds +封印之刀.dds +封印之弓.dds +封印之玉瓶.dds +封印之轮.dds +封印残片.dds +封印的神剑.dds +封喉刃.dds +封神书卷.dds +封神橙色卡.dds +封神紫色卡.dds +封神绿色卡.dds +封神蓝色卡.dds +封神赤色卡.dds +封神青色卡.dds +封神黄色卡.dds +射天矢.dds +射手雕像核心.dds +射日弩.dds +将军宝剑.dds +小九阳丹.dds +小倩的护符.dds +小叶蜂.dds +小型凌云物资箱.dds +小型凌云物资袋.dds +小恐龙黑.dds +小恶魔宝宝.dds +小星星.dds +小浣熊2013.dds +小清新沙滩男上衣.dds +小清新沙滩男下衣.dds +小清新沙滩男头发.dds +小清新沙滩男鞋子.dds +小清新连体装女上衣.dds +小清新连体装女头发.dds +小清新连体装女护腕.dds +小清新连体装女鞋子.dds +小熊猫.dds +小爱神.dds +小猪风格男装上衣.dds +小猪风格男装下衣.dds +小猪风格男装头发.dds +小猪风格男装鞋子.dds +小猫装上衣.dds +小猫装手套.dds +小猫装裤子.dds +小猫装鞋子.dds +小神气丸.dds +小神龙.dds +小章鱼_包裹图标.dds +小精冬1形态.dds +小精冬2形态.dds +小精冬3形态.dds +小精冬4形态.dds +小精夏1形态.dds +小精夏2形态.dds +小精夏3形态.dds +小精夏4形态.dds +小精春1形态.dds +小精春2形态.dds +小精春3形态.dds +小精春4形态.dds +小精灵冬1形态.dds +小精灵冬2形态.dds +小精灵冬3形态.dds +小精灵冬4形态.dds +小精灵夏1形态.dds +小精灵夏2形态.dds +小精灵夏3形态.dds +小精灵夏4形态.dds +小精灵技能秘籍1.dds +小精灵技能秘籍10.dds +小精灵技能秘籍2.dds +小精灵技能秘籍3.dds +小精灵技能秘籍4.dds +小精灵技能秘籍5.dds +小精灵技能秘籍6.dds +小精灵技能秘籍7.dds +小精灵技能秘籍8.dds +小精灵技能秘籍9.dds +小精灵春1形态.dds +小精灵春2形态.dds +小精灵春3形态.dds +小精灵春4形态.dds +小精灵秋1形态.dds +小精灵秋2形态.dds +小精灵秋3形态.dds +小精灵秋4形态.dds +小精灵装备玉1.dds +小精灵装备玉1_1.dds +小精灵装备玉1_2.dds +小精灵装备玉1_3.dds +小精灵装备玉1_4.dds +小精灵装备玉1_5.dds +小精灵装备玉2.dds +小精灵装备玉2_1.dds +小精灵装备玉2_2.dds +小精灵装备玉2_3.dds +小精灵装备玉2_4.dds +小精灵装备玉2_5.dds +小精灵装备玉3.dds +小精灵装备玉3_1.dds +小精灵装备玉3_2.dds +小精灵装备玉3_3.dds +小精灵装备玉3_4.dds +小精灵装备玉3_5.dds +小精灵装备玉4.dds +小精灵装备玉4_1.dds +小精灵装备玉4_2.dds +小精灵装备玉4_3.dds +小精灵装备玉4_4.dds +小精灵装备玉4_5.dds +小精灵装备玉5.dds +小精灵装备玉5_1.dds +小精灵装备玉5_2.dds +小精灵装备玉5_3.dds +小精灵装备玉6.dds +小精灵装备玉6_1.dds +小精灵装备玉6_2.dds +小精灵装备玉6_3.dds +小精灵装备玉新1.dds +小精灵装备玉新2.dds +小精灵装备玉新3.dds +小精灵装备玉新4.dds +小精灵装备玉新5.dds +小精灵装备玉新6.dds +小精灵装备珠1.dds +小精灵装备珠1_1.dds +小精灵装备珠1_2.dds +小精灵装备珠1_3.dds +小精灵装备珠1_4.dds +小精灵装备珠1_5.dds +小精灵装备珠2.dds +小精灵装备珠2_1.dds +小精灵装备珠2_2.dds +小精灵装备珠2_3.dds +小精灵装备珠2_4.dds +小精灵装备珠2_5.dds +小精灵装备珠3.dds +小精灵装备珠3_1.dds +小精灵装备珠3_2.dds +小精灵装备珠3_3.dds +小精灵装备珠3_4.dds +小精灵装备珠3_5.dds +小精灵装备珠4.dds +小精灵装备珠4_1.dds +小精灵装备珠4_2.dds +小精灵装备珠4_3.dds +小精灵装备珠4_4.dds +小精灵装备珠4_5.dds +小精灵装备珠5.dds +小精灵装备珠5_1.dds +小精灵装备珠5_2.dds +小精灵装备珠5_3.dds +小精灵装备珠6.dds +小精灵装备珠6_1.dds +小精灵装备珠6_2.dds +小精灵装备珠6_3.dds +小精灵装备珠新1.dds +小精灵装备珠新2.dds +小精灵装备珠新3.dds +小精灵装备珠新4.dds +小精灵装备珠新5.dds +小精灵装备珠新6.dds +小精灵装备符1.dds +小精灵装备符1_1.dds +小精灵装备符1_2.dds +小精灵装备符1_3.dds +小精灵装备符1_4.dds +小精灵装备符1_5.dds +小精灵装备符2.dds +小精灵装备符2_1.dds +小精灵装备符2_2.dds +小精灵装备符2_3.dds +小精灵装备符2_4.dds +小精灵装备符2_5.dds +小精灵装备符3.dds +小精灵装备符3_1.dds +小精灵装备符3_2.dds +小精灵装备符3_3.dds +小精灵装备符3_4.dds +小精灵装备符3_5.dds +小精灵装备符4.dds +小精灵装备符4_1.dds +小精灵装备符4_2.dds +小精灵装备符4_3.dds +小精灵装备符4_4.dds +小精灵装备符4_5.dds +小精灵装备符5.dds +小精灵装备符5_1.dds +小精灵装备符5_2.dds +小精灵装备符5_3.dds +小精灵装备符6.dds +小精灵装备符6_1.dds +小精灵装备符6_2.dds +小精灵装备符6_3.dds +小精灵装备符新1.dds +小精灵装备符新2.dds +小精灵装备符新3.dds +小精灵装备符新4.dds +小精灵装备符新5.dds +小精灵装备符新6.dds +小精灵装备镜1.dds +小精灵装备镜1_1.dds +小精灵装备镜1_2.dds +小精灵装备镜1_3.dds +小精灵装备镜1_4.dds +小精灵装备镜1_5.dds +小精灵装备镜2.dds +小精灵装备镜2_1.dds +小精灵装备镜2_2.dds +小精灵装备镜2_3.dds +小精灵装备镜2_4.dds +小精灵装备镜2_5.dds +小精灵装备镜3.dds +小精灵装备镜3_1.dds +小精灵装备镜3_2.dds +小精灵装备镜3_3.dds +小精灵装备镜3_4.dds +小精灵装备镜3_5.dds +小精灵装备镜4.dds +小精灵装备镜4_1.dds +小精灵装备镜4_2.dds +小精灵装备镜4_3.dds +小精灵装备镜4_4.dds +小精灵装备镜4_5.dds +小精灵装备镜5.dds +小精灵装备镜5_1.dds +小精灵装备镜5_2.dds +小精灵装备镜5_3.dds +小精灵装备镜6.dds +小精灵装备镜6_1.dds +小精灵装备镜6_2.dds +小精灵装备镜6_3.dds +小精灵装备镜新1.dds +小精灵装备镜新2.dds +小精灵装备镜新3.dds +小精灵装备镜新4.dds +小精灵装备镜新5.dds +小精灵装备镜新6.dds +小精秋1形态.dds +小精秋2形态.dds +小精秋3形态.dds +小精秋4形态.dds +小红旗.dds +小虫.dds +小虫网.dds +小贝莫西干男头发.dds +小辣椒.dds +小野人宠物蛋.dds +小金创药.dds +小隐披风.dds +小青蛙.dds +小鱼人蓝.dds +小鸟烟花简单.dds +小鸟玫瑰烟花.dds +小鸟装女发.dds +少阳元气.dds +少阴元气.dds +尖嘴奇足.dds +尖牙.dds +山居秋暝.dds +山河地理图.dds +山河壮丽.dds +山海凌云契.dds +山盟海誓.dds +山盟海誓女装上衣.dds +山盟海誓女装裤子.dds +山盟海誓女装鞋.dds +山盟海誓男装上衣.dds +山盟海誓男装裤子.dds +山盟海誓男装鞋.dds +山羊肉.dds +山脉之心.dds +岁.dds +岩心.dds +岩灵战士.dds +岳王.dds +峥嵘岁月.dds +崛.dds +巡检令.dds +工会战服女-手套32.dds +工会战服女-衣服32.dds +工会战服女-裤子32.dds +工会战服女-鞋32.dds +工会战服男-手套32.dds +工会战服男-衣服32.dds +工会战服男-裤子32.dds +工会战服男-鞋32.dds +工坊.dds +工锤.dds +左虎符.dds +巧克力.dds +巧匠大师之匣小.dds +巧匠精通.dds +巨嘴奇足.dds +巨型羊角.dds +巨大的羊角.dds +巨灵斧.dds +巨灵鸟.dds +巨牛皮革.dds +巨蜥骑宠.dds +巨蟒皮.dds +巨阙.dds +巫婴宁亲启.dds +巫师专用服装01上衣.dds +巫师专用服装01护腕.dds +巫师专用服装01裤子.dds +巫师专用服装01鞋子.dds +巫师专用服装02上衣.dds +巫师专用服装02护腕.dds +巫师专用服装02裤子.dds +巫师专用服装02鞋子.dds +巫师专用服装03上衣.dds +巫师专用服装03护腕.dds +巫师专用服装03裤子.dds +巫师专用服装03鞋子.dds +巫师专用服装04上衣.dds +巫师专用服装04护腕.dds +巫师专用服装04裤子.dds +巫师专用服装04鞋子.dds +巫师仙魔技能书.dds +巫师大师.dds +巫师星盘.dds +巫毒娃娃.dds +巫水佛奴的镇魂牌.dds +己.dds +巳.dds +巴乔男头发.dds +巴洛克浮雕立柜.dds +巴洛克皇家展示柜.dds +巴蜀晚渔亭.dds +巴黎时尚男装上衣.dds +巴黎时尚男装头发.dds +巴黎时尚男装裤子.dds +巴黎时尚男装鞋子.dds +巽之表徽.dds +巽之魂.dds +市场.dds +布.dds +布娃娃.dds +布娃娃(蓝).dds +布巾.dds +布护腕绣面.dds +布料.dds +布法术鞋底.dds +布法袍衣襟.dds +布法裤下摆.dds +布灵力幡绦.dds +布香囊.dds +帅哥看这里.dds +希望之光.dds +希望青石风车.dds +希腊女上衣.dds +希腊女头发.dds +希腊女鞋子.dds +希腊男上衣.dds +希腊男头发.dds +希腊男鞋子.dds +帝.dds +帝星卡.dds +帝王.dds +帝蛮锤.dds +帝骨.dds +帮派独霸天下.dds +帮派集结令.dds +常春藤十字花架.dds +常青果.dds +常青项链.dds +年.dds +年兽.dds +年年有余.dds +年年有鱼垂灯.dds +年糕.dds +并蒂莲花.dds +幸运斗篷 .dds +幸运斗篷.dds +幸运珊瑚.dds +幸运碧玺.dds +幻仙石箱子32.dds +幻天戒.dds +幻天残页.dds +幻彩翅膀.dds +幻彩蟠运碧玺.dds +幻彩遥极碧玺.dds +幻明项链.dds +幻气冰剑.dds +幻灵戒指(阳).dds +幻灵戒指(阴).dds +幻灵符.dds +幻胧披风.dds +幻舞隐月剑.dds +幻金守神符.dds +幻金护身符.dds +幻魔履.dds +幻魔戒(阳).dds +幻魔戒(阴).dds +幻魔护手.dds +幻魔法衣.dds +幻魔玉.dds +幻魔裤.dds +幻魔项链.dds +幼年狗.dds +幼纤嘴奇足的羽毛.dds +幼纹蝎.dds +幼蝎尾.dds +幼鹰小草.dds +幽兰的项链.dds +幽冥之眼.dds +幽冥之血.dds +幽冥冠.dds +幽冥利爪.dds +幽冥履.dds +幽冥戒.dds +幽冥护腕.dds +幽冥皮毛.dds +幽冥肉块.dds +幽冥腰佩.dds +幽冥轻铠.dds +幽冥项链.dds +幽怨的灵光.dds +幽浮之灵.dds +幽浮玄光.dds +幽灵战士.dds +幽魂灵龛.dds +幽魂珠.dds +广弘明集.dds +广播喇叭.dds +广法棍.dds +广济轮.dds +广目无边石.dds +庆.dds +庇佑圣灵.dds +庇护符石.dds +应龙之威.dds +应龙之爪.dds +应龙战甲.dds +应龙腿甲.dds +应龙袖甲.dds +应龙靴.dds +庚.dds +度劫剑.dds +度劫项链.dds +康乃馨.dds +开.dds +开天长斧.dds +开窍石.dds +异界精魄.dds +异象宝盒.dds +弓.dds +弓羊.dds +张郺脸谱.dds +弥勒菩萨.dds +弥勒菩萨碎片.dds +弥撒双层木桌.dds +弦纹执壶.dds +弩ak47.dds +弩藕节.dds +弯角蚩虎铜兽.dds +弹指十年一琉璃.dds +强力胶.dds +强效九阳丹.dds +强效神气丸.dds +强效金创药.dds +强酸.dds +归元拳套.dds +归元盔.dds +归去来.dds +归心剑.dds +归星盘.dds +归真冠.dds +彩.dds +彩丹粉.dds +彩云镜.dds +彩瓷木香花架.dds +彩画白瓷烟盅.dds +彩绘骏马灯笼瓶.dds +彩色的叶子.dds +彩虹马卡龙拼盘.dds +彩蛋.dds +彩蝶精.dds +彩蝶翼.dds +彩鳞.dds +彩鹫之心.dds +彩鹫之羽.dds +影族专用装备法袍头盔01.dds +影族专用装备法袍头盔02.dds +影族专用装备法袍头盔03.dds +影族专用装备法袍头盔04.dds +影族专用装备法袍披风01.dds +影族专用装备法袍披风02.dds +影族专用装备法袍披风03.dds +影族专用装备法袍披风04.dds +影族专用装备轻甲头盔01.dds +影族专用装备轻甲头盔02.dds +影族专用装备轻甲头盔03.dds +影族专用装备轻甲头盔04.dds +影族专用装备轻甲披风01.dds +影族专用装备轻甲披风02.dds +影族专用装备轻甲披风03.dds +影族专用装备轻甲披风04.dds +影族专用装备重甲头盔01.dds +影族专用装备重甲头盔02.dds +影族专用装备重甲头盔03.dds +影族专用装备重甲头盔04.dds +影族专用装备重甲披风01.dds +影族专用装备重甲披风02.dds +影族专用装备重甲披风03.dds +影族专用装备重甲披风04.dds +影族腰牌.dds +影遁项链.dds +役鬼弩.dds +往复项链.dds +很吊的披风.dds +律令.dds +御甲符.dds +御龙宝鉴.dds +微光之尘.dds +心.dds +心形红宝石.dds +心心相映.dds +心怜水.dds +心手相依女装上衣.dds +心手相依女装裙子.dds +心手相依女装鞋子.dds +心手相依男装上衣.dds +心手相依男装裤子.dds +心手相依男装鞋子.dds +心有灵犀.dds +忍冬祥云柜.dds +忘尘蛟龙腾.dds +忘忧坠子.dds +忠义关圣附体.dds +忠义火红之石.dds +忠义白雾之石.dds +忠义锐利之石.dds +忠义黄沉之石.dds +忠勇磨刀石.dds +忧郁之眼.dds +快.dds +怒放.dds +怒旌盔.dds +怒沙草.dds +怒海蓝鲸.dds +怒火之核.dds +怒眼.dds +怒雷长锤.dds +怡情悦性.dds +性感套裙上衣.dds +性感套裙裙子.dds +性感套裙鞋.dds +性感淑女装衣.dds +性感淑女装裤.dds +性感淑女装鞋.dds +性感皮衣战士女手套.dds +性感皮衣战士女装.dds +性感皮衣战士女鞋.dds +怨灵塔碎片.dds +怨魂履.dds +怨魂护腕.dds +怨魂袍.dds +怨魂裤.dds +怪物残骸.dds +怪物特征.dds +恒爆剑.dds +恨别离.dds +恩恩爱爱.dds +恭喜发财.dds +恶灵精华.dds +恶狼王獠牙.dds +恶魂灵龛.dds +恶魔图腾.dds +恶魔城装男上衣.dds +恶魔城装男头发.dds +恶魔城装男手套.dds +恶魔城装男裤子.dds +恶魔城装男鞋子.dds +恶魔武士.dds +恶魔的尾巴.dds +恶魔羽翼.dds +悠嘻猴_包裹图标.dds +悠嘻猴特别_包裹图标.dds +悠游腰饰.dds +悲悯拳套.dds +情丝节鞭.dds +情人女伞.dds +情人王子装上衣.dds +情人王子装头饰.dds +情人王子装护腕.dds +情人王子装裤子.dds +情人王子装鞋子.dds +情人男伞.dds +情人男天鹅短兵.dds +情人男天鹅长兵.dds +情人男玫瑰弓.dds +情人男玫瑰短兵.dds +情人男玫瑰长兵.dds +情人男玫瑰长兵1.dds +情人节love.dds +情人节巧克力.dds +情人节永远爱你.dds +情人节玫瑰花.dds +情人节礼物.dds +情人节腰佩.dds +情人节蜂蜜.dds +情人节郁金香.dds +情人英伦风女上衣.dds +情人英伦风女头发.dds +情人英伦风女手套.dds +情人英伦风女裤子.dds +情人英伦风女鞋子.dds +情人英伦风男上衣.dds +情人英伦风男头发.dds +情人英伦风男手套.dds +情人英伦风男裤子.dds +情人英伦风男鞋子.dds +情意绵绵.dds +情有独钟.dds +情比金坚.dds +情迷加勒比女装-护腕32.dds +情迷加勒比女装-衣服32.dds +情迷加勒比女装-裤子32.dds +情迷加勒比女装-鞋32.dds +情非得已.dds +惊涛城精元.dds +惊涛幡杖.dds +惊雷戒.dds +惊风剑.dds +惊龙残卷.dds +惊龙礼包.dds +惑.dds +惟美礼服裙.dds +惟美礼服裙头发.dds +惟美礼服裙手套.dds +惟美礼服裙鞋子.dds +惩戒圣灵.dds +惹火装女上衣.dds +惹火装女头发.dds +惹火装女手套.dds +惹火装女裤子.dds +惹火装女鞋子.dds +意乱情迷.dds +慊粉色染料.dds +慕寒丰礼.dds +戊.dds +戌.dds +成就之翼神月.dds +成年虫翅.dds +成形的内丹.dds +我只.dds +我爱你.dds +我爱你02.dds +戒指1.dds +戒指2.dds +戒指3.dds +戒指4.dds +战场钱币1.dds +战场钱币2.dds +战歌之城·勇士 法系1.dds +战歌之城·勇士 法系2.dds +战歌之城·勇士 法系3.dds +战歌之城·勇士 物理1.dds +战歌之城·勇士 物理2.dds +战歌之城·勇士 物理3.dds +战歌统帅徽章.dds +战灵之源.dds +战灵宝具.dds +战灵宝袋.dds +战灵触媒.dds +战灵触媒s.dds +战灵触媒精.dds +战神之靴.dds +战神戒指(阳).dds +战神戒指(阴).dds +战神护腕.dds +战神护腿.dds +战神玉佩.dds +战神铠.dds +战神项链.dds +战锤.dds +战马雕像核心.dds +战魂虎符.dds +所罗门王浮雕.dds +手抄乐谱.dds +手抄诗词本.dds +手拉手红.dds +手拉手蓝.dds +手持竖琴.dds +手机商券上.dds +手机商券下.dds +手杖.dds +手虎.dds +手锤.dds +扑克少女上衣.dds +扑克少女头发.dds +扑克少女护腕.dds +扑克少女鞋子.dds +打打打劫啦.dds +打磨精通.dds +执子之手.dds +执子之手与子偕老.dds +扫刀.dds +技巧之证.dds +折冲项链.dds +折枝纱.dds +折铁刀.dds +折门刀.dds +护甲符.dds +披萨匕首.dds +披风刀.dds +抱抱兔.dds +抽髓鞭.dds +拓金千瓣莲柱.dds +拓魂一杯倒怀醉.dds +拓魂乐天女.dds +拓魂图包专业级.dds +拓魂图包入门级.dds +拓魂图包初学级.dds +拓魂图包大师级.dds +拓魂图包宗师级.dds +拓魂图包巨匠级.dds +拓魂图包有学级.dds +拓魂图包游学级.dds +拓魂图包禅宗级.dds +拓魂图包精纯级.dds +拓魂无字真君.dds +拓魂险道神.dds +拓魂黑将军.dds +拓魂:三千世界·碧游.dds +拓魂:九子鬼母.dds +拓魂:伊舍.dds +拓魂:佛魔波洵.dds +拓魂:冥府牛头.dds +拓魂:冰雪女王.dds +拓魂:刺客·沐风.dds +拓魂:剑灵·修罗.dds +拓魂:叶孤寒.dds +拓魂:啸天辰煌.dds +拓魂:墨羽风华·鬼鹤.dds +拓魂:夏风将军.dds +拓魂:夜影·风桀骜.dds +拓魂:女儿国国王.dds +拓魂:妖兽·破山.dds +拓魂:妖精·琉璃.dds +拓魂:巫师·绯月.dds +拓魂:幻海领主.dds +拓魂:异化弥勒.dds +拓魂:心宿 小美 .dds +拓魂:悲愤菩提.dds +拓魂:暴君之子·穆释桓.dds +拓魂:月仙·南月千陵.dds +拓魂:武侠·柳坚营.dds +拓魂:法师·田彩.dds +拓魂:浣熊酋长.dds +拓魂:浮光掠影·夜刑.dds +拓魂:火鳞怒蛟·敖阖.dds +拓魂:炽龙先锋.dds +拓魂:炽龙渊督军.dds +拓魂:煌烈之舞·楼辰.dds +拓魂:画水无风.dds +拓魂:画水而行.dds +拓魂:画语幽莲.dds +拓魂:白帝·席尔瓦.dds +拓魂:百岁金蛤.dds +拓魂:禅姬.dds +拓魂:竹笛乐童.dds +拓魂:羽灵·云锦.dds +拓魂:羽芒·岚枫.dds +拓魂:落木仙子.dds +拓魂:虚空壁障·尺勾.dds +拓魂:赤帝·晓纯.dds +拓魂:邪恶半龙·萨德蒙.dds +拓魂:霜龙先锋.dds +拓魂:青帝·冷月.dds +拓魂:魅灵·樱瞳.dds +拓魂:魅鬼花王.dds +拓魂:魔礼青.dds +拓魂:黑帝·伊蒂丝.dds +招行金葵花大礼包.dds +招财灵蛇粉.dds +招财灵蛇绿.dds +招财猫女上衣.dds +招财猫女帽子.dds +招财猫女手套.dds +招财猫女鞋子.dds +招财虎男帽子.dds +招财虎男手套.dds +招财虎男衣服.dds +招财虎男鞋子.dds +招财进宝卡.dds +招魂幡杖.dds +拜年帖.dds +拨浪鼓双手短.dds +拨浪鼓双手长.dds +拳套.dds +拳套棒球手套.dds +拳套羊.dds +拳套菠萝.dds +持国无敌玉.dds +指示之羽.dds +挖矿道具土.dds +挖矿道具木.dds +挖矿道具水.dds +挖矿道具火.dds +挖矿道具金.dds +挪移幡.dds +振霆盔.dds +挽留节鞭.dds +捆仙绳.dds +捕火灵网.dds +捷元电脑.dds +掉落的果实.dds +掌运纹章.dds +排空弩.dds +掠影.dds +掠虹戒.dds +探险者.dds +掣风之矛.dds +接骨木.dds +掩日断水.dds +提炼油.dds +搜神器.dds +搜魂鞭.dds +搞怪男装头发.dds +搞怪男装护手.dds +搞怪男装衣服.dds +搞怪男装裤子.dds +搞怪男装鞋子.dds +摄心魔卡片1.dds +摄心魔卡片2.dds +摄心魔卡片3.dds +摄心魔卡片4.dds +摄心魔卡片5.dds +摄心魔卡片6.dds +摄心魔卡片7.dds +摄心魔卡片8.dds +摄魂瓶47.dds +摆摊_圣诞袜小.dds +摆摊兔.dds +摆摊兔女.dds +摆摊兔男.dds +摆摊小马.dds +摆摊老虎.dds +摇光之剑.dds +摧意之爪.dds +摩托车01.dds +撼天锤.dds +擂鼓轰金.dds +擒龙杖.dds +支配之力.dds +收费帮派集结令.dds +收费能量水晶.dds +收费队伍集结令.dds +改造之石.dds +敌军军服.dds +敏捷铸材.dds +救赎.dds +救赎圣灵.dds +敖蒙.dds +散.dds +散落的武器.dds +文文蜂.dds +文殊菩萨.dds +文殊菩萨碎片副本.dds +斑斓豹.dds +斑点狗.dds +斗士之力.dds +斗战胜佛.dds +斗笠.dds +斗转星移.dds +斗部连卡.dds +斧头帮口号.dds +斩将刀.dds +斩石剑.dds +斩马刀.dds +断剑.dds +断头之石.dds +断岳刀.dds +断流斧.dds +断肠刃.dds +断裂的渔枪.dds +断门刀.dds +断首骑兵的头颅.dds +断首骑兵的心脏.dds +斯巴达男上衣.dds +斯巴达男头发.dds +斯巴达男手套.dds +斯巴达男鞋子.dds +新17品匕首.dds +新17品单刀.dds +新17品双剑.dds +新17品双斧.dds +新17品幡杖.dds +新17品弓.dds +新17品拳套.dds +新17品法剑.dds +新17品法器.dds +新17品法宝.dds +新17品爪.dds +新17品短杖.dds +新17品胧刀.dds +新17品镰刀.dds +新17品长枪.dds +新17品长锤.dds +新八卦盘.dds +新夜叉之石.dds +新娘大礼包.dds +新娘胸花.dds +新婚大礼包.dds +新婚花束.dds +新年快乐.dds +新年装女头发.dds +新年装男头发.dds +新手之箭.dds +新手礼包.dds +新春个性旗袍上衣.dds +新春个性旗袍头发.dds +新春个性旗袍手套.dds +新春个性旗袍鞋子.dds +新春古装女头发.dds +新春古装女衣服.dds +新春古装女鞋子.dds +新春大灯笼.dds +新春大炮仗.dds +新春大礼炮.dds +新春小炮仗.dds +新春符印猴.dds +新春红纸.dds +新月传奇礼包.dds +新月镶金艇.dds +新梦幻王子装上衣.dds +新梦幻王子装头发.dds +新梦幻王子装护腕.dds +新梦幻王子装裤子.dds +新梦幻王子装鞋子.dds +新白蘑菇.dds +新百障之石.dds +新的铁钳.dds +新礼盒.dds +新羽毛.dds +新郎大礼包.dds +新郎胸花.dds +新金砖.dds +新金鱼.dds +新鲜的龟壳.dds +新黄昏法术戒指发穿等级绝天戒.dds +新黄昏法术腰佩攻击等级英雄腰饰.dds +新黄昏法术腰佩法穿等级英雄腰饰.dds +新黄昏法术项链法穿等级神护项链.dds +新黄昏法术项链防御等级神护项链.dds +新黄昏物理戒指物穿等级千佛戒.dds +新黄昏物理腰佩攻击等级海天佩.dds +新黄昏物理腰佩物穿等级海天佩.dds +新黄昏物理项链物穿等级往复项链.dds +新黄昏物理项链防御等级往复项链.dds +方形画眉笼.dds +方舟密函.dds +方青子的元婴.dds +旋风斧.dds +旋龟.dds +旋龟壳.dds +旗袍.dds +旗袍男头发.dds +旗袍男衣服.dds +旗袍男裤子.dds +旗袍男鞋子.dds +旗袍鞋.dds +无上之拥.dds +无上徽章1.dds +无上徽章2.dds +无上指环1.dds +无上指环2.dds +无伤佩.dds +无双.dds +无双之翼兑换牌.dds +无双夜明珠.dds +无双戒.dds +无双锦囊.dds +无名的尸骨.dds +无头骑兵将军.dds +无妄斧.dds +无定神令.dds +无常项链.dds +无影刃.dds +无敌翅膀.dds +无敌锦囊.dds +无本奇抄.dds +无极冠.dds +无极法神.dds +无极逍遥令.dds +无梦草.dds +无烟煤.dds +无畏之证.dds +无畏戒指.dds +无畏锦囊.dds +无盾不摧只矛.dds +无袖街舞男装上身32.dds +无袖街舞男装下身32.dds +无袖街舞男装头发32.dds +无袖街舞男装鞋32.dds +无邪精魄.dds +无量坠子.dds +无间双子.dds +无音披风.dds +日.dds +日服侍女装上衣.dds +日服侍女装鞋子.dds +日本时装女上衣.dds +日本时装女头发.dds +日本时装女护腕.dds +日本时装女裤子.dds +日本时装女鞋子.dds +日本时装男上衣.dds +日本时装男头发.dds +日本时装男裤子.dds +日本时装男鞋子.dds +日直神卡.dds +日系萝莉上衣.dds +日系萝莉头发.dds +日系萝莉护腕.dds +日系萝莉鞋子.dds +旱水精.dds +时尚女警上衣.dds +时尚女警上衣绿.dds +时尚女警下衣.dds +时尚女警下衣绿.dds +时尚女警头发.dds +时尚女警护腕.dds +时尚女警护腕绿.dds +时尚女警鞋子.dds +时尚女警鞋子绿.dds +时空书卷.dds +时装仓库扩充石小.dds +时装武器元宝.dds +时装武器毛笔.dds +时装武器狮子手.dds +时装武器糖葫芦.dds +时装武器红灯笼.dds +时装武器铜镲.dds +时装武器鞭炮丈.dds +时装武器饺子.dds +时装武器馒头.dds +时装武器鲤鱼.dds +时装精通.dds +昆虫翅膀.dds +昊天之石.dds +昊天轮.dds +明光下铠.dds +明光战铠.dds +明光腕甲.dds +明光鞋.dds +明光项链.dds +明王之石.dds +明王轮.dds +明瓷烫金茶几.dds +明镜止水笔架.dds +星云散聚石.dds +星光闪闪小礼服上衣.dds +星光闪闪小礼服头发.dds +星光闪闪小礼服鞋子.dds +星宿长锤.dds +星星时装男头发.dds +星星时装男衣服.dds +星星时装男裤子.dds +星星时装男鞋子.dds +星月映.dds +星月相辉.dds +星河玉落.dds +星灵奇引珠1级.dds +星灵奇引珠2级.dds +星灵奇引珠3级.dds +星灵奇引珠4级.dds +星灵奇引珠全.dds +星球大战男头发.dds +星球大战男装上衣.dds +星球大战男装下衣.dds +星球大战男装护腕.dds +星球大战男装鞋子.dds +星行诡道散.dds +星辰之石.dds +星运图章.dds +星魂百纳丹1级.dds +星魂百纳丹2级.dds +星魂百纳丹3级.dds +星鸿秘匣.dds +映彤冠.dds +映月铜镜.dds +春.dds +春堂酒滴垆.dds +春天机车装男上衣.dds +春天机车装男手套.dds +春天机车装男裤.dds +春天机车装男鞋.dds +春天温暖装女上衣.dds +春天温暖装女群.dds +春天温暖装女鞋.dds +春节舞狮头饰男.dds +春节鲤鱼头饰女.dds +春节黑肩男上衣.dds +春节黑肩男头发.dds +春节黑肩男裤子.dds +春节黑肩男鞋子.dds +春风暖雪鲜馥饺.dds +晒干的沙虫硬壳.dds +晧石.dds +晨云的信.dds +普天同庆.dds +普贤菩萨.dds +普贤菩萨碎片.dds +普通徽记1.dds +普通徽记2.dds +普通徽记3.dds +普通徽记4.dds +普通徽记5.dds +普通易容卷轴.dds +普通晚礼服.dds +普通晚礼服手套.dds +普通晚礼服鞋.dds +普通红玫瑰.dds +晴峦春霭图.dds +晶石.dds +晶莹石.dds +智德之徽.dds +智德之章.dds +智慧之证.dds +智慧结晶.dds +智慧项链.dds +智者之冠.dds +暖.dds +暗影刃.dds +暗灵之核.dds +暗炎.dds +暗色套腕.dds +暗色套裙.dds +暗色套裙下身.dds +暗色套鞋.dds +暗诡优钵的忧郁.dds +暗隐会之印.dds +暗隐会会章.dds +暗隐会先锋令牌.dds +暗隐会勇者令牌.dds +暗隐会徽记.dds +暗隐会统领令牌.dds +暗青之石.dds +暗黑.dds +暗黑玄天戒.dds +暗黑绝天戒.dds +暗黑魔天戒.dds +暮雨冠.dds +暴帅骑马男装上衣.dds +暴帅骑马男装头发.dds +暴帅骑马男装护腕.dds +暴帅骑马男装裤子.dds +暴帅骑马男装鞋子.dds +暴牙牛喽罗.dds +暴风弩.dds +暴食之刃.dds +暹罗异果.dds +曜光剑.dds +曲直项链.dds +曳影宫闱烛台.dds +更境神丹·动天.dds +曼珠沙华.dds +曼珠沙华1.dds +替身娃娃.dds +月.dds +月仙技能书.dds +月仙星盘.dds +月光女神上衣.dds +月光女神头发.dds +月光女神鞋子.dds +月光宝盒.dds +月影弓.dds +月影金椟.dds +月神镜像.dds +月羿妄书.dds +月轮长斧.dds +月镰羊.dds +月饼.dds +月饼桂花.dds +月饼蜜糖.dds +朋克装男上衣.dds +朋克装男裤.dds +朋克装男鞋.dds +望月玲珑.dds +朝.dds +木之灵.dds +木偶.dds +木元素精华.dds +木制头颅.dds +木剑.dds +木变石链子.dds +木头兽2012.dds +木弓.dds +木料精华.dds +木材.dds +木棉.dds +木棒.dds +木槿沉斗柜.dds +木槿花夕陶杯.dds +木灵之石.dds +木灵实.dds +木盒.dds +木蝴蝶.dds +木香.dds +未.dds +未知的石头.dds +末.dds +末世男装上衣.dds +末世男装护腕.dds +末世男装裤子.dds +末世男装鞋子.dds +末世装男发.dds +末日天平.dds +末日庇护.dds +末日的救赎.dds +末日经文.dds +朱果月饼.dds +朱雀之列.dds +朱雀之地.dds +朱雀之天.dds +朱雀之宇.dds +朱雀之宙.dds +朱雀之宿.dds +朱雀之张.dds +朱雀之日.dds +朱雀之昃.dds +朱雀之月.dds +朱雀之洪.dds +朱雀之盈.dds +朱雀之荒.dds +朱雀之辰.dds +朱雀之黄.dds +朱雀磐玺.dds +朴刀.dds +机械女装上衣.dds +机械女装下衣.dds +机械女装头发.dds +机械女装护腕.dds +机械女装鞋子.dds +机械战狮.dds +机械翼.dds +机械翼2.dds +机械装置.dds +杀人蜂.dds +杀手之谜.dds +杉木素面长方凳.dds +杉树.dds +材料仓库扩充石小.dds +村长手谕.dds +杜鞅的护身符.dds +杜鹃.dds +条纹宝石白紫装上衣.dds +条纹宝石白紫装裤子.dds +条纹宝石白紫装鞋子.dds +条纹宝石装男发.dds +条纹小礼服群.dds +条纹小礼服腕.dds +条纹小礼服鞋.dds +条纹蝴蝶蕾丝女装上衣.dds +条纹蝴蝶蕾丝装上衣.dds +条纹蝴蝶蕾丝装下衣.dds +条纹蝴蝶蕾丝装护腕.dds +条纹蝴蝶蕾丝装鞋子.dds +条纹蝴蝶装女发.dds +来.dds +杨树.dds +松柏延年.dds +松溪渔乐图.dds +松纹古剑.dds +松骨长青柜.dds +松鹤钧天屏.dds +松鼠.dds +板斧.dds +板正男装上衣.dds +板正男装裤子.dds +板正男装鞋子.dds +板正装男发.dds +极乐鸟.dds +极酷装.dds +极酷装上衣.dds +极酷装鞋子.dds +构装电虎.dds +林俊杰的专辑(2).dds +林俊杰装上衣.dds +林俊杰装护腕.dds +林俊杰装裤子.dds +林俊杰装鞋子.dds +枪手长风衣女-上身.dds +枪手长风衣女-下身.dds +枪手长风衣女-头发.dds +枪手长风衣女-鞋.dds +枫树.dds +枭雄之冠.dds +枯木杖.dds +枯荣杖.dds +枯萎的手 副本.dds +柏树.dds +染色剂礼包.dds +染色的宝图.dds +染血的竹笛.dds +染血的鱼皮口袋.dds +柚木描金弥勒榻.dds +柠檬色染料.dds +柠檬色染色卡.dds +查特酒绿.dds +柳叶双刀.dds +柳树.dds +标记的宝图.dds +树枝.dds +树种.dds +树苗.dds +格子马甲男装上衣.dds +格子马甲男装帽子.dds +格子马甲男装裤子.dds +格子马甲男装鞋子.dds +桂圆.dds +桂子.dds +桂枝.dds +桂花酒.dds +桂花酒糟.dds +桃心.dds +桃木剑.dds +桃木小段.dds +桃木手掌模板.dds +桃木杖柄.dds +桃木欧式矮柜.dds +桃木节扣.dds +桃树.dds +桃符1.dds +桃符2.dds +桃符3.dds +桃符4.dds +桃红色染料.dds +桃花皮女装上衣.dds +桃花皮女装护腕.dds +桃花皮女装鞋子.dds +桃花装女发.dds +桔子喇叭.dds +桔槔龙骨水车.dds +桦树.dds +梁祝之翼.dds +梅纹雕花柜.dds +梅花鹿.dds +梦幻之丝.dds +梦幻之爱.dds +梦幻之纱.dds +梦幻之翼.dds +梦幻之舞.dds +梦幻之露.dds +梦幻亮片女上衣.dds +梦幻亮片女头发.dds +梦幻亮片女手套.dds +梦幻亮片女鞋子.dds +梦幻少女装上衣.dds +梦幻少女装头发.dds +梦幻少女装护腕.dds +梦幻少女装鞋子.dds +梦魇飞剑.dds +梧桐.dds +梨木两仪架子床.dds +梨树.dds +梳子镰刀.dds +棉布.dds +棉布鞋底.dds +棉线.dds +棉花.dds +棒球棍.dds +棕榈树.dds +棘刺鞭.dds +棘木棒.dds +椰壳绿染料.dds +楠木海棠纹圆凳.dds +楸木镶翠多宝格.dds +榄石.dds +榆木雕花案.dds +榉木古典欧式床.dds +榉木禅心拔步床.dds +榕树.dds +榕树须.dds +榴石.dds +樱木木碗.dds +樱花女裙装上衣.dds +樱花女裙装下衣.dds +樱花女裙装头发.dds +樱花女裙装护腕.dds +樱花女裙装鞋子.dds +樱花树.dds +橙味芬达.dds +橙心凤梨.dds +橙玉.dds +橙色染色剂.dds +橙色棉线.dds +橡木雕花四柱床.dds +橡树.dds +欢乐淘淘包.dds +欣欣向荣.dds +欧式刺绣梳妆凳.dds +欧式古典布艺沙发.dds +欧式天鹅绒靠背椅.dds +欧式建筑.dds +欧式花坛1.dds +欧式花坛2.dds +欧式花坛3.dds +欧式院落.dds +欧式雕花梳妆凳.dds +欧美企鹅特工队.dds +欧美斗牛犬.dds +欧美泰迪熊.dds +欧美犀牛.dds +欧美青蛙骑宠.dds +欧美鸭嘴兽.dds +此地无银.dds +武侠大师.dds +武侠技能书.dds +武侠星盘.dds +武器库.dds +武威令.dds +武状元腰佩.dds +武者的福音.dds +武者的福音1.dds +武者的福音2.dds +死亡之戒.dds +死沼戒.dds +死沼秘法裤.dds +死沼腰佩.dds +死沼轻铠.dds +死沼重盔.dds +死沼重靴.dds +死沼项链.dds +死灵杖.dds +死神镰刀.dds +残木.dds +残破的日记.dds +残破的木箱.dds +残破的藏宝图.dds +残破的衣甲.dds +残缺的纸条.dds +毁灭之核.dds +毒囊.dds +毒液.dds +毒花的种子.dds +毒蟾.dds +毒蟾之泪.dds +毒鳞蛇皮.dds +比武战场本服凭证.dds +比武战场跨服凭证.dds +比武战场门票.dds +比翼双飞.dds +比翼双飞上衣.dds +比翼双飞女装上衣.dds +比翼双飞女装裙子.dds +比翼双飞女装鞋.dds +比翼双飞男装上衣.dds +比翼双飞男装裤子.dds +比翼双飞男装鞋.dds +毕螭兽卡片1.dds +毕螭兽卡片2.dds +毕螭兽卡片3.dds +毕螭兽卡片4.dds +毕螭兽卡片5.dds +毕螭兽卡片6.dds +毕螭兽卡片7.dds +毕螭兽卡片8.dds +毛尾巴男上衣.dds +毛尾巴男头发.dds +毛尾巴男裤子.dds +毛尾巴男鞋子.dds +毛茸茸的尾巴.dds +毛虫飞行器.dds +水下三甲虫.dds +水之结晶.dds +水之胆.dds +水云珠.dds +水元素精华.dds +水原石.dds +水寒精华.dds +水晶.dds +水晶宝盒.dds +水晶心形宝盒.dds +水晶棺材.dds +水晶法帽.dds +水晶球.dds +水晶节杖.dds +水样1.dds +水样2.dds +水样3.dds +水母.dds +水灵石.dds +水神卡.dds +水精.dds +水罐.dds +水草.dds +水蜜桃芬达.dds +水饺1.dds +水饺2.dds +水饺3.dds +水饺4.dds +水龙吟.dds +永恒烈焰.dds +永结同心.dds +求救.dds +汐族13a刺客职业装上衣.dds +汐族13a刺客职业装护腕.dds +汐族13a刺客职业装裤子.dds +汐族13a刺客职业装鞋子.dds +汐族13a巫师职业装上衣.dds +汐族13a巫师职业装护腕.dds +汐族13a巫师职业装裤子.dds +汐族13a巫师职业装鞋子.dds +汐族13b刺客职业装上衣.dds +汐族13b刺客职业装护手.dds +汐族13b刺客职业装裤子.dds +汐族13b刺客职业装鞋子.dds +汐族13b巫师职业装上衣.dds +汐族13b巫师职业装护手.dds +汐族13b巫师职业装裤子.dds +汐族13b巫师职业装鞋子.dds +汐族光翼1小.dds +汐族光翼2小.dds +汐族光翼3小.dds +汐族光翼4小.dds +汐族光翼5小.dds +汐族光翼6小.dds +汐族光翼7.dds +汐族光翼8.dds +汐族冰凌翅.dds +汐族刺客职业装上衣.dds +汐族刺客职业装护腕.dds +汐族刺客职业装裤子.dds +汐族刺客职业装鞋子.dds +汐族勋章.dds +汐族双鸟光翼.dds +汐族吉光.dds +汐族圣枝翅膀.dds +汐族圣诞翅膀小.dds +汐族基础翅膀1.dds +汐族基础翅膀2.dds +汐族巫师职业装上衣.dds +汐族巫师职业装护腕.dds +汐族巫师职业装裤子.dds +汐族巫师职业装鞋子.dds +汐族幻蝶光翼.dds +汐族时间之轮.dds +汐族点翠.dds +汐族白炽翅.dds +汐族聚花.dds +汐族金鱼.dds +汐族阳光辉翼.dds +汐族霓虹光翼.dds +汐族魔灵翅膀.dds +江山雪.dds +汤圆1.dds +汤圆2.dds +汤圆3.dds +汤圆4.dds +沉星戒.dds +沉水龙雀.dds +沉香.dds +沉鱼落雁.dds +沉默之金.dds +沙之塔泉水.dds +沙之塔雕.dds +沙发.dds +沙滩透明装上衣.dds +沙滩透明装头发.dds +沙滩透明装裤子.dds +沙滩透明装鞋子.dds +沙漏.dds +沙漠判官男上衣.dds +沙漠判官男头发.dds +沙漠判官男手套.dds +沙漠判官男裤子.dds +沙漠判官男鞋子.dds +沙虫之鳍.dds +沙虫的硬壳 .dds +沥泉之矛.dds +沥泉长矛.dds +河豚.dds +河马喇叭小.dds +泉水.dds +法兰绒圆形靠垫.dds +法华杵.dds +法宝01.dds +法宝02.dds +法宝03.dds +法宝04.dds +法宝05.dds +法宝06.dds +法宝07.dds +法宝08.dds +法宝09.dds +法宝10.dds +法宝11.dds +法宝12.dds +法宝13.dds +法宝14.dds +法宝15.dds +法宝16.dds +法宝17.dds +法宝18.dds +法师大师.dds +法师技能书.dds +法师星盘.dds +法师的福音.dds +法师的福音1.dds +法师的福音2.dds +法杖.dds +法球.dds +法球番茄.dds +法球羊.dds +法球铸具1.dds +法球铸具10.dds +法球铸具2.dds +法球铸具3.dds +法球铸具4.dds +法球铸具5.dds +法球铸具6.dds +法球铸具7.dds +法球铸具8.dds +法球铸具9.dds +法球饭.dds +法轮.dds +泡泡棒.dds +泡泡裙女装.dds +泡泡裙女装鞋.dds +波希米亚上衣.dds +波希米亚裤子.dds +波希米亚鞋.dds +波斯太阳铜座钟.dds +波斯菊.dds +波波鸟宝宝.dds +泥鬼.dds +注射器.dds +注射药剂.dds +泰森.dds +泰泉乡礼.dds +泳装女上衣.dds +泳装女短裤.dds +泳装女裹裙.dds +泳装女鞋.dds +泳装斑马上.dds +泳装斑马下.dds +泳装斑马鞋.dds +泳装男短裤.dds +泳装男鞋.dds +泳装虎纹上.dds +泳装虎纹下.dds +泳装虎纹鞋.dds +泳装豹纹上.dds +泳装豹纹下.dds +泳装豹纹鞋.dds +洁白之丝.dds +洁白之爱.dds +洁白之纱.dds +洁白之翼.dds +洁白之舞.dds +洁白之露.dds +洋桔梗.dds +洋红色染料.dds +洋葱紫染料.dds +洗点卡.dds +洗礼尘寰屠赦.dds +洗礼尘寰御行.dds +洛可可杨木梳妆台.dds +洛阳牡丹记.dds +洞察之眼.dds +洞犀项链.dds +洪荒履.dds +洪荒护腕.dds +洪荒袍.dds +洪荒裤.dds +活力藤杖.dds +流云拱门.dds +流云纱.dds +流云逐风笔筒.dds +流光下铠.dds +流光之丝.dds +流光之爱.dds +流光之纱.dds +流光之翼.dds +流光之舞.dds +流光之露.dds +流光战铠.dds +流光腕甲.dds +流光鞋.dds +流星剑.dds +流火之石.dds +流火石肤.dds +流火蝶元魂.dds +流炎刀.dds +流苏刺绣靠垫.dds +流苏巨菇树.dds +流转水晶.dds +流转水晶礼包.dds +流金岁月.dds +流金粽叶.dds +流银币.dds +流霜剑.dds +浅海沙染料.dds +浅海沙染色卡.dds +浑天尘降.dds +浑铁枪.dds +浓情蜜意.dds +浓情蜜意1.dds +浓情蜜意果篮.dds +浓缩胶.dds +浣熊宝宝对娃.dds +浪漫之丝.dds +浪漫之爱.dds +浪漫之纱.dds +浪漫之翼.dds +浪漫之舞.dds +浪漫之露.dds +浪蝶精灵.dds +浮华剑.dds +浮屠棍.dds +浮沉刀.dds +浮灵巢穴.dds +浮花小亭路灯.dds +海之战.dds +海刃冰皇.dds +海天佩.dds +海子蓝染料.dds +海星.dds +海星人.dds +海枯石烂.dds +海枯石烂印.dds +海洋徽记.dds +海生灵菇.dds +海盗喽罗的心脏.dds +海盗岛地形图.dds +海盗船长男装-护腕32.dds +海盗船长男装-衣服32.dds +海盗船长男装-裤子32.dds +海盗船长男装-鞋32.dds +海胆.dds +海蓝之石.dds +海蓝真珑阁.dds +海螺杖.dds +海贝紫染料.dds +海错群览.dds +海马水幕遮.dds +海鳐甲.dds +涅磐之杖.dds +涡纹红木梳妆台.dds +涤魂石.dds +涵珍广济桥.dds +涵虚项链.dds +淘宝新手礼包.dds +淬体散.dds +淬铁剑.dds +深水杀手卡片1.dds +深水杀手卡片2.dds +深水杀手卡片3.dds +深水杀手卡片4.dds +深水杀手卡片5.dds +深水杀手卡片6.dds +深水杀手卡片7.dds +深水杀手卡片8.dds +深海恐鱼.dds +深渊之石.dds +深渊魔晶.dds +深潭旋龟的硬壳.dds +混元佩.dds +混元锤.dds +混沌之元.dds +混沌斧.dds +混沌精元.dds +清尘.dds +清明上河图.dds +清水.dds +清漓灵璧石.dds +清翼蜓.dds +清静琉璃.dds +渔樵戏葫芦.dds +温情之丝.dds +温情之爱.dds +温情之纱.dds +温情之翼.dds +温情之舞.dds +温情之露.dds +温润的不破项链.dds +温润的往复项链.dds +温润的折冲项链.dds +温润的无伤佩.dds +温润的海天佩.dds +温润的灵龟佩.dds +温润的盈泰项链.dds +温润的祖龙佩.dds +温馨祝福.dds +游荡的鹦鹉.dds +游龙腰饰.dds +湖蓝色染料.dds +源生精华.dds +溢情金杯2015.dds +溢水之石.dds +溪山秋高图.dds +溪山绝尘图.dds +满天星.dds +漆盒石板砚.dds +漏斗.dds +潋滟长刀.dds +潜伏战地报告.dds +灞桥风雪图.dds +火之精.dds +火云中级.dds +火云初级.dds +火云邪神剑.dds +火云高级.dds +火元素精华.dds +火凤凰.dds +火凤凰翅膀32.dds +火尖枪.dds +火岩戒.dds +火岩秘法袍.dds +火岩腰佩.dds +火岩轻靴.dds +火岩重甲.dds +火岩项链.dds +火树烟花.dds +火炎结晶.dds +火烧天.dds +火焰图腾.dds +火焰音符.dds +火狐尾.dds +火眼项链.dds +火石.dds +火石之心.dds +火磷短杖.dds +火神卡.dds +火神祝融.dds +火红之石.dds +火红灰烬.dds +火红的贝壳.dds +火羽.dds +火胆之锤.dds +火药用木炭.dds +火药用硝石.dds +火药用硫磺.dds +火莲纹章.dds +火鸡.dds +灭度拳套.dds +灭影之弓.dds +灭神箭.dds +灭魂拳套.dds +灯映康安五色汤圆.dds +灯灰.dds +灯角钩檐亭.dds +灯魂.dds +灰姑娘上衣.dds +灰姑娘头发.dds +灰姑娘王子上衣.dds +灰姑娘王子头发.dds +灰姑娘王子裤子.dds +灰姑娘王子鞋子.dds +灰姑娘鞋子.dds +灰暗的中舆幻本.dds +灰暗的摧意之爪.dds +灰暗的缚地之蕊.dds +灰暗的藏空奇卷.dds +灰暗的辟心之玉.dds +灰暗的鸿蒙秘抄.dds +灵佐护身符.dds +灵佐魔力符.dds +灵光宝盒.dds +灵光项链.dds +灵力铸材.dds +灵动之兆.dds +灵动结晶.dds +灵反震之卷.dds +灵壁坠子.dds +灵媒.dds +灵幽静门.dds +灵悟之语.dds +灵族13a剑灵职业装上衣.dds +灵族13a剑灵职业装护腕.dds +灵族13a剑灵职业装裤子.dds +灵族13a剑灵职业装鞋子.dds +灵族13a魅灵职业装上衣.dds +灵族13a魅灵职业装护腕.dds +灵族13a魅灵职业装裤子.dds +灵族13a魅灵职业装鞋子.dds +灵族13b剑灵职业装上衣.dds +灵族13b剑灵职业装护手.dds +灵族13b剑灵职业装裤子.dds +灵族13b剑灵职业装鞋子.dds +灵族13b魅灵职业装上衣.dds +灵族13b魅灵职业装护手.dds +灵族13b魅灵职业装裤子.dds +灵族13b魅灵职业装鞋子.dds +灵族剑灵职业装上衣.dds +灵族剑灵职业装护腕.dds +灵族剑灵职业装裤子.dds +灵族剑灵职业装鞋子.dds +灵族双子风筝.dds +灵族明神风筝.dds +灵族机械灵.dds +灵族水玉风筝.dds +灵族深海魔鳐.dds +灵族白雀.dds +灵族翩翩舞蝶飞行器.dds +灵族蒸汽幻想.dds +灵族风筝.dds +灵族风筝梦魇.dds +灵族魅灵职业装上衣.dds +灵族魅灵职业装护腕.dds +灵族魅灵职业装裤子.dds +灵族魅灵职业装鞋子.dds +灵智法旗.dds +灵智法签.dds +灵曦履.dds +灵曦护腕.dds +灵曦袍.dds +灵曦裤.dds +灵机宝匣.dds +灵机小匣.dds +灵根仙石.dds +灵气藤杖.dds +灵泉奇酿.dds +灵火.dds +灵犀城精元.dds +灵犀扇.dds +灵犀释厄剑.dds +灵狐.dds +灵狮下铠.dds +灵狮战铠.dds +灵狮腕甲.dds +灵狮鞋.dds +灵猴之血.dds +灵石精华.dds +灵符履.dds +灵符护腕.dds +灵符袍.dds +灵符裤.dds +灵芝.dds +灵芝羊脂玉如意.dds +灵药.dds +灵蛮秘药.dds +灵蜥猎人兀突子.dds +灵魂图腾.dds +灵魂宝珠.dds +灵魂石.dds +灵魂碎片.dds +灵魂精华.dds +灵龟佩.dds +灼流拳套.dds +灾厄幻影.dds +灿烂绚羽女装3-护腕32.dds +灿烂绚羽女装3-衣服32.dds +灿烂绚羽女装3-裤子32.dds +灿烂绚羽女装3-鞋32.dds +灿烂绚羽男装-护腕32.dds +灿烂绚羽男装-衣服32.dds +灿烂绚羽男装-裤子32.dds +灿烂绚羽男装-鞋32.dds +炎冰翅小.dds +炎击铳.dds +炎刹铳.dds +炎灭铳.dds +炎灵铳.dds +炎灼铳.dds +炎烈铳.dds +炎爆幻影.dds +炎爆铳.dds +炎精.dds +炎魂铳.dds +炎龙铳.dds +炫酷绅士男装上衣.dds +炫酷绅士男装上衣绿.dds +炫酷绅士男装头发.dds +炫酷绅士男装护腕.dds +炫酷绅士男装护腕绿.dds +炫酷绅士男装裤子.dds +炫酷绅士男装裤子绿.dds +炫酷绅士男装鞋子.dds +炫酷绅士男装鞋子绿.dds +点钢枪.dds +炼丹炉.dds +炼丹炉_2.dds +炼丹炉_3.dds +炼狱之火.dds +炼狱腿甲.dds +炼狱袖甲.dds +炼狱金甲.dds +炼狱靴.dds +炼雷长斧.dds +炽天凤凰.dds +炽天戒.dds +炽岩碎片.dds +炽怒夜叉.dds +炽情奖杯2015.dds +炽烈拳套.dds +炽焰锤.dds +烁光之石.dds +烂银枪.dds +烈火恐鸟.dds +烈炎杖.dds +烈炎珠粉.dds +烈焰之子.dds +烈焰宝珠.dds +烈红水玉.dds +烈红飞剑.dds +烟斗.dds +烟江叠嶂图.dds +烟灰.dds +烟煤.dds +烟花.dds +烟花1.dds +烟袋.dds +烤好的肉.dds +烤鱼.dds +烧火棍.dds +烧饼喇叭道具.dds +焕血之石.dds +焚天令.dds +焚天戒.dds +焚毁的旗帜.dds +焚阳荡天屠赦.dds +焚阳荡天御行.dds +焚阳豹元魂.dds +焰光弹.dds +煞灵鬼头锤.dds +煤气灯.dds +煤粉.dds +煮龙巫师小巴尔罕.dds +熊喇叭.dds +熊幼年.dds +熊幼年amd.dds +熊成年.dds +熊猫骑宠.dds +熔岩之石.dds +熔岩甲片.dds +熔岩结晶.dds +熔焰之核.dds +熠星争辉.dds +熠星河吊桥.dds +燃情灵株.dds +燃烧之心.dds +燃烧的厉灼鬼丧眼球.dds +燕生的头发.dds +燕石坠子.dds +燕窝.dds +燕骏千金.dds +爆炸头套装男上衣.dds +爆炸头套装男头发.dds +爆炸头套装男手套.dds +爆炸头套装男裤子.dds +爆炸头套装男鞋子.dds +爆破拳.dds +爆竹1.dds +爆竹2.dds +爆竹3.dds +爆竹4.dds +爆竹喜到.dds +爆竹来福.dds +爆裂弹.dds +爆雷长锤.dds +爱你.dds +爱你一棒槌.dds +爱你没商量.dds +爱你生生世世.dds +爱如潮水.dds +爱心气球.dds +爱莲说.dds +牙刷.dds +牛人.dds +牛毛鞭.dds +牛皮弓弦.dds +牛皮绞丝.dds +牛皮连接环.dds +牛角戒.dds +牛角项链.dds +牛逼的戒指.dds +牛逼的物品礼盒.dds +牛逼的腰坠.dds +牛郎织女.dds +牛黄.dds +牛黄2.dds +牡丹.dds +牡丹松雀.dds +牧场.dds +特供破空令.dds +特制墨汁.dds +特效独角兽.dds +特效蓝宝石装女上衣.dds +特效蓝宝石装女头发.dds +特效蓝宝石装女护腕.dds +特效蓝宝石装女鞋子.dds +特效蓝宝石装男上衣.dds +特效蓝宝石装男下衣.dds +特效蓝宝石装男头发.dds +特效蓝宝石装男护腕.dds +特效蓝宝石装男鞋子.dds +特等奖.dds +犀角.dds +犀角戒.dds +犰狳 副本.dds +狂刃符.dds +狂欢节女头发.dds +狂欢节女装上身.dds +狂欢节女鞋子.dds +狂欢节男头发.dds +狂欢节男装上身.dds +狂欢节男装手套.dds +狂欢节男装裤子.dds +狂欢节男鞋子.dds +狂澜刀.dds +狂狮战斧.dds +狂魔刀.dds +狄龙康脸谱.dds +狐狸喇叭.dds +狗圈.dds +狗幼年.dds +狗狗喇叭.dds +独山玉佩.dds +独步刀.dds +独角兽黑.dds +独角雷尊的遗信.dds +狮吼重甲.dds +狮子.dds +狮子鱼.dds +狮心项链.dds +狮睛.dds +狮鹫.dds +狮鹫32.dds +狼人信物.dds +狼族密令.dds +狼族徽记.dds +狼族火炬.dds +狼爪.dds +狼牙棒.dds +狼牙箭.dds +狼牙项链.dds +狼皮帽檐.dds +狼皮护心镜组件.dds +狼皮护腕组件.dds +狼皮护膝组件.dds +狼皮护踝组件.dds +狼皮飘带组件.dds +猎叉.dds +猛毒液.dds +猞猁山猫.dds +猪头喇叭道具.dds +猪成年.dds +猫头鹰.dds +猫幼年.dds +猫猫喇叭.dds +猫眼戒.dds +猫眼石戒指.dds +猴子喇叭.dds +猴子坐骑.dds +猴年锦囊.dds +獠牙.dds +獠牙狼.dds +玄光飞魅.dds +玄冥珠.dds +玄冥长锤.dds +玄冰结晶.dds +玄冰项链.dds +玄命包.dds +玄天丹32.dds +玄天戒.dds +玄天残页.dds +玄影.dds +玄影退魔剑.dds +玄德之剑.dds +玄德双剑.dds +玄晶杖.dds +玄椎之弓.dds +玄椎之杖.dds +玄武之列.dds +玄武之地.dds +玄武之天.dds +玄武之宇.dds +玄武之宿.dds +玄武之庙.dds +玄武之张.dds +玄武之日.dds +玄武之昃.dds +玄武之月.dds +玄武之洪.dds +玄武之盈.dds +玄武之荒.dds +玄武之辰.dds +玄武之黄.dds +玄武刻印.dds +玄武磐玺.dds +玄火飞剑32.dds +玄灵木.dds +玄甲符.dds +玄真剑.dds +玄磷箭.dds +玄绒独角仙的骨髓.dds +玄荒之血.dds +玄荒血魂.dds +玄虎.dds +玄蛇珠.dds +玄金残页.dds +玄鉴丹.dds +玄鉴丹礼包.dds +玄钢拳套.dds +玄铁令牌.dds +玄铁块.dds +玄铁弩机.dds +玄铁方坞.dds +玄铁石.dds +玄铁精金.dds +玄铁药室.dds +玄铁重锤.dds +玄铁锭.dds +玄阙奇枢环法系.dds +玄阙奇枢环物理.dds +玄阴刀.dds +玄魂包.dds +玄黄履.dds +玄黄护腕.dds +玄黄袍.dds +玄黄裤.dds +玉佩腰饰12.dds +玉佩腰饰13.dds +玉兔呈祥.dds +玉兔送福.dds +玉刀锋铸模.dds +玉剑刃铸模.dds +玉堂觐匣.dds +玉壶项链.dds +玉如意.dds +玉子母斧铸模.dds +玉子母锤铸模.dds +玉戒.dds +玉指环铸模.dds +玉斧刃铸模.dds +玉桃胸扣.dds +玉清卡.dds +玉璃梵晶.dds +玉石玛瑙戒指12.dds +玉石玛瑙戒指13.dds +玉笛.dds +玉米双手长.dds +玉臂任务开启道具.dds +玉臂配方包裹.dds +玉臂配方包裹2.dds +玉臂配方包裹3.dds +玉釉盥洗盆.dds +玉金刚杵铸模.dds +玉锤头铸模.dds +玉髓管珠项链.dds +玉鸳鸯刀铸模.dds +玉鸳鸯剑铸模.dds +王.dds +王二力的传家宝.dds +王大力的传家宝.dds +王子装上衣.dds +王子装下衣.dds +王子装鞋.dds +王家的传家宝.dds +王朝之心.dds +王者之冠.dds +王者之力.dds +王者之戒.dds +王(金).dds +王(铁).dds +王(铜).dds +王(银).dds +玛瑙串.dds +玛瑙佛珠.dds +玛瑙戒.dds +玛瑙石链子.dds +玩偶时装女上衣.dds +玩偶时装女下衣.dds +玩偶时装女头发.dds +玩偶时装女护腕.dds +玩偶时装女鞋子.dds +玩偶时装男上衣.dds +玩偶时装男头发.dds +玩偶时装男护腕.dds +玩偶时装男鞋子.dds +玩具熊猫.dds +玫瑰-1.dds +玫瑰-11.dds +玫瑰-3.dds +玫瑰.dds +玫瑰匕首.dds +玫瑰双姝圆耳瓶.dds +玫瑰双手短兵.dds +玫瑰珐琅笔筒.dds +玫瑰花.dds +玫瑰花束中.dds +玫瑰花束大.dds +玫瑰花束小.dds +玫瑰花束最小.dds +玫瑰骑士装上衣.dds +玫瑰骑士装裤子.dds +玫瑰骑士装鞋子.dds +现.dds +玲珑修罗.dds +玳瑁手镯.dds +玻璃鞋.dds +珊瑚小段.dds +珊瑚木手掌模板.dds +珊瑚杖柄.dds +珊瑚树.dds +珊瑚红.dds +珊瑚节扣.dds +珍珠塔.dds +珍珠宝塔.dds +珍珠戒.dds +珍贵的玻片.dds +珐琅彩梅枝贯耳瓶.dds +珐琅彩牡丹贯耳瓶.dds +珠宝盒.dds +珠玑幻青鸾.dds +球形玫瑰挂花.dds +球衣女上衣.dds +球衣女短裤.dds +球衣男上衣.dds +球衣男短裤.dds +琅琊腰饰.dds +琉曲环石1.dds +琉曲环石2.dds +琉曲环石灰.dds +琉曲环石蓝.dds +琉曲环石金.dds +琉璃刀锋铸模.dds +琉璃剑刃铸模.dds +琉璃子母斧铸模.dds +琉璃子母锤铸模.dds +琉璃宝鉴.dds +琉璃指环铸模.dds +琉璃斧刃铸模.dds +琉璃爵杯.dds +琉璃耳杯.dds +琉璃金刚杵铸模.dds +琉璃锤头铸模.dds +琉璃鸳鸯刀铸模.dds +琉璃鸳鸯剑铸模.dds +琥珀蜜蜡.dds +琼魂魔塿.dds +瑞兽呈祥镇纸.dds +瑶池大蟠桃.dds +瑶池嬉鹤浮雕.dds +瑶池献寿图.dds +璇玑杖.dds +瓜瓞绵绵瓶.dds +瓦棱锤.dds +瓶子.dds +瓶装的暗影.dds +瓷樽壁盏.dds +瓷葫芦2012.dds +生命女神的祝福.dds +生命女神的祝福1.dds +生命女神的祝福2.dds +生日快乐.dds +生日蛋糕.dds +生死凝息卷轴.dds +生死意境卷轴.dds +生死感悟卷轴.dds +生铁.dds +田园白桦栅栏.dds +田园风格陶瓷娃娃.dds +甲.dds +甲片.dds +申.dds +申屠冥的遗信.dds +男中国风上衣32.dds +男中国风头发32.dds +男中国风裤子32.dds +男中国风鞋子32.dds +男另类瘦身装护腕32.dds +男唐装.dds +男夏装-短裤32.dds +男夏装-衣服32.dds +男夏装-鞋32.dds +男巴洛克-衣服.dds +男巴洛克-裤子.dds +男巴洛克-鞋.dds +男式恶魔套装上衣.dds +男式恶魔套装头发.dds +男式恶魔套装护腕.dds +男式恶魔套装裤子.dds +男式恶魔套装鞋子.dds +男忍者头发.dds +男忍者手套.dds +男忍者衣服.dds +男忍者裤子.dds +男忍者鞋子.dds +男时尚套装-上身.dds +男时尚套装-下身.dds +男时尚套装-头发.dds +男时尚套装-鞋.dds +男时尚豹装上身.dds +男时尚豹装下身.dds +男时尚豹装帽子.dds +男时尚豹装鞋子.dds +男春天毛衣装上衣.dds +男春天毛衣装头发.dds +男春天毛衣装裤子.dds +男春天毛衣装鞋子.dds +男机车装上衣.dds +男机车装头发.dds +男机车装手套.dds +男机车装裤子.dds +男机车装鞋子.dds +男梦想终极装上衣.dds +男梦想终极装裤子.dds +男梦想终极装鞋.dds +男毛领黑魅装-头发32.dds +男毛领黑魅装-衣服32.dds +男毛领黑魅装-裤子32.dds +男毛领黑魅装-鞋32.dds +男海盗装上衣.dds +男海盗装头发.dds +男海盗装裤子.dds +男海盗装鞋子.dds +男玫瑰花球.dds +男球鞋.dds +男皇冠.dds +男眩舞透明装-衣服.dds +男眩舞透明装-裤子.dds +男眩舞透明装-鞋.dds +男草裙上衣.dds +男草裙帽子.dds +男草裙护手.dds +男草裙裤子.dds +男草裙鞋子.dds +男闪钻礼服男头发.dds +男龟灵裤.dds +画皮.dds +界.dds +留白坠子.dds +留音海螺.dds +番莲纹宝蓝樽罍.dds +疯狂时装男上衣.dds +疯狂时装男护腕.dds +疯狂时装男裤子.dds +疯狂时装男鞋子.dds +疯狂男头发.dds +疯狂飞猪.dds +疯魔杖.dds +疾云之丝.dds +疾云之爱.dds +疾云之纱.dds +疾云之翼.dds +疾云之舞.dds +疾云之露.dds +疾光项链.dds +疾火之丝.dds +疾火之爱.dds +疾火之纱.dds +疾火之翼.dds +疾火之舞.dds +疾火之露.dds +疾电.dds +疾电戒.dds +疾风丹.dds +疾风之丝.dds +疾风之爱.dds +疾风之纱.dds +疾风之翼.dds +疾风之舞.dds +疾风之露.dds +疾风破空令.dds +痘神卡.dds +瘟神卡.dds +癸.dds +登仙秘笈.dds +登楼赋.dds +登陆1周年时装上身.dds +登陆1周年时装下身.dds +登陆1周年时装护腕.dds +登陆1周年时装鞋子.dds +白松欧式展示柜.dds +白水晶坠子.dds +白沙毒鳞蛇牙.dds +白熊.dds +白玉之石.dds +白玉戟耳炉.dds +白玉石佩.dds +白玉镯.dds +白玉雕花笔.dds +白纱纱女装头发.dds +白纱纱女装护腕.dds +白纱纱女装衣服.dds +白纱纱女装鞋子.dds +白羽护符.dds +白色三角钢琴.dds +白色圣诞袜.dds +白色染料.dds +白色染色剂.dds +白色水晶石.dds +白色狼牙.dds +白色药粉.dds +白花.dds +白莲戒.dds +白萼梅.dds +白蘑菇.dds +白虎之列.dds +白虎之地.dds +白虎之天.dds +白虎之宇.dds +白虎之宿.dds +白虎之庙.dds +白虎之张.dds +白虎之日.dds +白虎之昃.dds +白虎之月.dds +白虎之洪.dds +白虎之盈.dds +白虎之荒.dds +白虎之辰.dds +白虎之黄.dds +白虎磐玺.dds +白虎项链.dds +白蚁巨颚.dds +白蚁蛹.dds +白象.dds +白豹.dds +白金守神符.dds +白金护身符.dds +白金拼图.dds +白钻.dds +白银守神符.dds +白银守身符.dds +白银徽记.dds +白银护身符.dds +白银护身锁.dds +白银棍棒护手.dds +白银状·仙幻天.dds +白银矛柄.dds +白银短刃柄.dds +白银礼包.dds +白银股甲合页.dds +白银肩甲合页.dds +白银腕甲合页.dds +白银虎符.dds +白银踝甲合页.dds +白银镶宝石六角徽章.dds +白银长刀刀格.dds +白银长杆接榫.dds +白银面罩合页.dds +白雪莲.dds +白雾之石.dds +白霖项链.dds +白鹤.dds +白龙袍男.dds +白龙袍男裤.dds +白龙袍男鞋.dds +百利金金笔习笺.dds +百匠工心石.dds +百味药引.dds +百宝箱.dds +百年好合.dds +百战刀.dds +百炼剑.dds +百炼天道.dds +百炼钢.dds +百花裙上衣.dds +百花裙裤.dds +百花裙鞋.dds +百草露.dds +百辟腰饰.dds +百里追风弩.dds +百障之石.dds +皇后装上衣.dds +皇后装头发.dds +皇后装鞋子.dds +皇家典藏.dds +皇帝装上衣.dds +皇帝装头发.dds +皇帝装鞋子.dds +皇榜.dds +皇(金).dds +皇(铁).dds +皇(铜).dds +皇(银).dds +皓月环松.dds +皮拳套.dds +皮皮鼠喇叭.dds +皮短裙女.dds +皮短裙女腕.dds +皮短裙女鞋.dds +皮装男上衣.dds +皮装男头发.dds +皮装男手套.dds +皮装男裤子.dds +皮装男鞋子.dds +皮革.dds +盈天戒.dds +盈泰项链.dds +益.dds +盐石.dds +监牢钥匙.dds +盘古之石.dds +盘螭龙纹觥.dds +盘龙棍.dds +盘龙草.dds +盛世万年.dds +相依相偎的动作.dds +相忘江湖.dds +相思入骨.dds +相濡以沫.dds +盾牌.dds +眉目传情.dds +真光项链.dds +真冰之印.dds +真刚拳套.dds +真寒之印.dds +真正的卷轴.dds +真武之剑.dds +真武战甲.dds +真武盔.dds +真武腿甲.dds +真武袖甲.dds +真武靴.dds +真虎鞭洗髓露.dds +真言戒.dds +真豹胎易筋丸.dds +真雪之印.dds +真鬼子母的锤柄宝石.dds +真龙杵.dds +眩光之石.dds +眷世之泪.dds +眼泪水晶.dds +眼睛猴.dds +眼镜猴.dds +瞬杀刃.dds +瞬移铃.dds +知秋项链.dds +短弓.dds +短弩.dds +短斧.dds +短杖.dds +短棍.dds +短火枪.dds +短铲.dds +石像之颅.dds +石吼怪.dds +石斑鱼.dds +石料.dds +石斧.dds +石梁御水桥.dds +石榴红染料.dds +石榴红染色卡.dds +石灰粉.dds +石碑拓片.dds +石钺.dds +石锥下铠.dds +石锥戒指.dds +石锥护腕.dds +石锥秘法裤.dds +石锥腰佩.dds +石锥项链.dds +石魔王卡片1.dds +石魔王卡片2.dds +石魔王卡片3.dds +石魔王卡片4.dds +石魔王卡片5.dds +石魔王卡片6.dds +石魔王卡片7.dds +石魔王卡片8.dds +矶珠乾.dds +矶珠兑.dds +矶珠坎.dds +矶珠坤.dds +矶珠巽.dds +矶珠离.dds +矶珠艮.dds +矶珠震.dds +矾石.dds +砂刀锋铸模.dds +砂剑刃铸模.dds +砂子母斧铸模.dds +砂子母锤铸模.dds +砂指环铸模.dds +砂斧刃铸模.dds +砂石.dds +砂糖.dds +砂金刚杵铸模.dds +砂锤头铸模.dds +砂鸳鸯刀铸模.dds +砂鸳鸯剑铸模.dds +研钵.dds +砚.dds +破军七杀的牙齿.dds +破军包.dds +破军戒.dds +破城枪.dds +破天戒.dds +破损的剑.dds +破毛皮.dds +破煞刀.dds +破碎水晶.dds +破碎的印记.dds +破空令.dds +破空弹.dds +破罡箭.dds +破胆幻影.dds +破野.dds +破阵刀.dds +破阵包.dds +破魔项链.dds +硬币.dds +硬甲符.dds +碎梦刀.dds +碎橙玉.dds +碎灵镗.dds +碎玉丹简.dds +碎石.dds +碎紫玉.dds +碎翠玉.dds +碎蓝玉.dds +碎赤玉.dds +碎青玉.dds +碎骨.dds +碎魄符印.dds +碎黄玉.dds +碧水莲华.dds +碧玉珠.dds +碧空项链.dds +碧苔太湖石.dds +碧落剑.dds +碧血杯.dds +碧血精.dds +磁刀锋铸模.dds +磁剑刃铸模.dds +磁器碎片.dds +磁子母斧铸模.dds +磁子母锤铸模.dds +磁指环铸模.dds +磁斧刃铸模.dds +磁金刚杵铸模.dds +磁锤头铸模.dds +磁鸳鸯刀铸模.dds +磁鸳鸯剑铸模.dds +磐甲之石.dds +磐甲宝玉.dds +磐石巨锤.dds +磐隐山门.dds +磨刀石属性增强1级.dds +磨刀石属性增强2级.dds +磨刀石属性增强3级.dds +磨刀石法术攻击1级.dds +磨刀石法术攻击2级.dds +磨刀石法术攻击3级.dds +磨刀石物理攻击1级.dds +磨刀石物理攻击2级.dds +磨刀石物理攻击3级.dds +磨刀石特殊属性1级.dds +磨刀石特殊属性2级.dds +磨刀石特殊属性3级.dds +磨刀石生命增强1级.dds +磨刀石生命增强2级.dds +磨刀石生命增强3级.dds +磨石粉.dds +礼德之徽.dds +礼德之章.dds +祈愿香.dds +祖龙佩.dds +祖龙十字勋章.dds +祖龙卫士勋章.dds +祖龙卿云勋章.dds +祖龙城精元.dds +祖龙宝鼎勋章.dds +祖龙景星勋章.dds +祖龙秘藏.dds +祝你生日快乐.dds +祝福石.dds +祝融之石.dds +祝融魂守.dds +神仙鱼.dds +神佑.dds +神佑项链.dds +神像.dds +神光项链.dds +神农护佑丹.dds +神农琥珀眼.dds +神农百草丸.dds +神农鼎.dds +神农鼎_2.dds +神农鼎_3.dds +神力丸.dds +神器之魂.dds +神圣火种.dds +神威战甲.dds +神威腿甲.dds +神威袖甲.dds +神威长刀.dds +神威靴.dds +神护项链.dds +神明项链.dds +神月之徽·护.dds +神月头配件.dds +神月戒子配件.dds +神月项链配件.dds +神武镇天弓.dds +神猴悟空.dds +神玺灵灯.dds +神目果.dds +神目水.dds +神秀项链.dds +神秘卷轴.dds +神秘图腾.dds +神秘晶体.dds +神秘服饰.dds +神秘的书籍.dds +神秘的令牌.dds +神秘筹码箱.dds +神秘筹码箱子32.dds +神秘花瓣.dds +神蕴披风.dds +神谏项链.dds +神辅护身符.dds +神辅魔力符.dds +神镜.dds +神韵.dds +神韵之丝.dds +神韵之爱.dds +神韵之纱.dds +神韵之舞.dds +神韵之露.dds +神马刻印.dds +祥乐秀实.dds +祥云.dds +祭祀使徒高级.dds +禁忌之海.dds +禄.dds +禅定项链.dds +禅心云雷屏.dds +禅意圣灵.dds +福.dds +福临门.dds +福泽绵长.dds +福牛.dds +福禄丹核.dds +福禄宝鉴.dds +离之表徽.dds +离之魂.dds +离别鞭.dds +禽兽回血丹.dds +秀才腰佩.dds +秋.dds +秋刀鱼胧刀.dds +秋山清远图.dds +秋山问道图.dds +秋景山水图.dds +秘制九龙散.dds +秘制活血散.dds +秘制还灵水.dds +秘宝卷轴.dds +秘宝藏图残片.dds +秘宝飞剑.dds +秘法履.dds +秘法护腕.dds +秘法袍.dds +秘法裤.dds +秘银弹.dds +秘银矢.dds +秘银胸甲.dds +秘银腿甲.dds +秘银袖甲.dds +秘银锭.dds +秘银靴.dds +秘银靴刺.dds +秦皇.dds +积羽城精元.dds +积血红玉坠.dds +空幽项链.dds +空明佩.dds +空灵斧.dds +空灵项链.dds +空玻璃瓶.dds +穿云令.dds +穿云弓.dds +穿山甲.dds +窈鸟.dds +窦尔敦脸谱.dds +竞选_a组_100w级别_兑奖道具.dds +竞选_a组_10w级别_兑奖道具.dds +竞选_a组_20w级别_兑奖道具.dds +竞选_a组_50w级别_兑奖道具.dds +竞选_a组_竞选权道具(物品a).dds +竞选_a组_竞选权道具(物品a)副本.dds +竞选_a组_竞选权道具(物品b)副本.dds +竞选_b组_100w级别_兑奖道具.dds +竞选_b组_10w级别_兑奖道具.dds +竞选_b组_20w级别_兑奖道具.dds +竞选_b组_50w级别_兑奖道具.dds +竞选_b组_竞选权道具(物品b).dds +章鱼的触手.dds +章鱼龙怪坐骑.dds +童子观潮餐盘.dds +端午竞渡餐盘.dds +竹刀.dds +竹蜻蜓.dds +竹雕香筒.dds +笑醉书怀刻瓷.dds +笔.dds +笛子单手短.dds +符咒1.dds +符咒2.dds +符咒3.dds +符文腰饰12.dds +符文腰饰13.dds +符杖.dds +第01种样式.dds +第02种样式.dds +第03种样式.dds +第04种样式.dds +第05种样式.dds +第06种样式.dds +第07种样式.dds +第08种样式.dds +第09种样式.dds +第10种样式.dds +第11种样式.dds +第12种样式.dds +策梦仙机.dds +策梦仙机old.dds +签到年度奖.dds +签到月度奖.dds +箭袋.dds +簪子.dds +粉彩花盘.dds +粉红年华.dds +粉蔷半壶花架.dds +粉蝶海棠妆匣.dds +粗制皮.dds +粗布.dds +粗布鞋底.dds +粗木料.dds +粗糙的马蹄铁.dds +粗重项链12.dds +粗重项链13.dds +粘稠的液体.dds +粮食.dds +粽子.dds +精巧的护符.dds +精木料.dds +精武年装上衣.dds +精武年装护腕.dds +精武年装裤子.dds +精武年装鞋.dds +精灵狼.dds +精灵礼盒x.dds +精灵裙.dds +精灵裙手套.dds +精灵裙鞋子.dds +精炼火种.dds +精石玉器.dds +精绝纵目图腾.dds +精肉.dds +精致的武器箱.dds +精金弹.dds +精金矢.dds +精金锭.dds +精钢弩机.dds +精钢护身锁.dds +精钢棍棒护手.dds +精钢矛柄.dds +精钢矢.dds +精钢短刃柄.dds +精钢股甲合页.dds +精钢肩甲合页.dds +精钢腕甲合页.dds +精钢药室.dds +精钢踝甲合页.dds +精钢长刀刀格.dds +精钢长杆接榫.dds +精钢面罩合页.dds +精铁靴刺.dds +精饰任务开启道具.dds +精饰配方包裹.dds +精饰配方包裹2.dds +精饰配方包裹3.dds +精魄土.dds +精魄木.dds +精魄水.dds +精魄火.dds +精魄金.dds +糕点1.dds +糕点2.dds +糕点3.dds +糕点4.dds +糖果.dds +糖果手杖.dds +糖瓜.dds +糯米.dds +素绢折纹垂灯.dds +素面紫檀笔筒.dds +索魂冠.dds +紫丁香.dds +紫丁香染料.dds +紫丹参.dds +紫微坠子.dds +紫檀蝠纹太师椅.dds +紫檀蝠纹太师椅组合.dds +紫檀蝠纹矮桌.dds +紫水晶坠子.dds +紫灵雀.dds +紫玉.dds +紫珠沁香果篮.dds +紫琉璃.dds +紫电辟邪.dds +紫绶履.dds +紫绶护腕.dds +紫绶袍.dds +紫绶裤.dds +紫罗兰染料.dds +紫色情怀.dds +紫色染色剂.dds +紫色棉线.dds +紫色的石头.dds +紫萝项链.dds +紫藤小段.dds +紫藤手掌模板.dds +紫藤杖柄.dds +紫藤节扣.dds +紫贝壳.dds +紫金佩.dds +紫金兵翼.dds +紫金守神符.dds +紫金护身符.dds +紫金沙.dds +紫金胸甲.dds +紫金腿甲.dds +紫金葫芦.dds +紫金袖甲.dds +紫金钥匙.dds +紫金靴.dds +紫钻.dds +紫铃草.dds +紫铜靴刺.dds +紫阳槊.dds +紫霞腰饰.dds +繁木之力.dds +繁木之意.dds +繁花似锦.dds +繁花似锦1.dds +繁花似锦花台.dds +繁荣昌盛.dds +红光锤.dds +红双喜.dds +红宝石戒指大.dds +红宝石戒指小.dds +红宝石项链(女).dds +红尘氐惆香炉.dds +红斑天牛.dds +红木云纹扶手椅.dds +红木瓜叶纹矮墩.dds +红木笑佛茶桌.dds +红枣.dds +红格尔木屋.dds +红水晶坠子.dds +红灯笼喜迎春节.dds +红灯笼恭贺新禧.dds +红灵片.dds +红玫瑰牛仔男上衣.dds +红玫瑰牛仔男头发.dds +红玫瑰牛仔男裤子.dds +红玫瑰牛仔男鞋子.dds +红珊瑚佛珠.dds +红白四漩涡.dds +红砂岩佛像.dds +红碧熹金戒.dds +红红灯笼排排挂.dds +红纱锦绣立柜.dds +红线.dds +红色三角钢琴.dds +红色信件.dds +红色圣器残片.dds +红色小烟花.dds +红色心形宝石.dds +红色松鼠.dds +红色染色剂.dds +红色水晶球.dds +红色水晶石.dds +红色浆草.dds +红色狼牙.dds +红色药粉.dds +红色鹅毛笔习笺.dds +红苹果.dds +红莲戒.dds +红萼梅.dds +红蔷紫薇门.dds +红蘑菇.dds +红蘑菇2.dds +红蝴蝶.dds +红袖刀.dds +红豆.dds +红豆1.dds +红钻.dds +红顶千脚楼.dds +红高头鎏金.dds +红鱼卵.dds +纤细项链12.dds +纤细项链13.dds +纪念币.dds +纪念版仙时装女上衣.dds +纪念版仙时装女头发.dds +纪念版仙时装女裤子.dds +纪念版仙时装女鞋子.dds +纪念版仙时装男上衣.dds +纪念版仙时装男头发.dds +纪念版仙时装男裤子.dds +纪念版仙时装男鞋子.dds +纪念版变色时装女衣服.dds +纪念版变色时装女裤子.dds +纪念版变色时装女鞋子.dds +纪念版变色时装男衣服.dds +纪念版变色时装男裤子.dds +纪念版变色时装男鞋子.dds +纪念版魔时装女上衣.dds +纪念版魔时装女下身.dds +纪念版魔时装女头发.dds +纪念版魔时装女鞋子.dds +纪念版魔时装男上衣.dds +纪念版魔时装男下身本.dds +纪念版魔时装男头发.dds +纪念版魔时装男鞋子.dds +纯净的鳄鱼之泪.dds +纯净草药.dds +纯洁之丝.dds +纯洁之爱.dds +纯洁之纱.dds +纯洁之翼.dds +纯洁之舞.dds +纯洁之露.dds +纯白染色卡.dds +纯金酒杯.dds +纯黑亚麻沙发.dds +纯黑亚麻沙发组合.dds +纯黑染色卡.dds +纵横令.dds +纸.dds +纸扇.dds +纸燕.dds +纸短情长.dds +纸萤.dds +纸虎宝盒.dds +纸蝶.dds +纸鸢.dds +纹身装女上衣.dds +纹身装女头发.dds +纹身装女手套.dds +纹身装女裤子.dds +纹身装女鞋子.dds +纺织厂.dds +线轴.dds +练功房.dds +细刀100级.dds +细刀16品.dds +细刀准顶级.dds +细刀初始.dds +细刀势力.dds +细刀新16品.dds +细刀新九军.dds +细刀新八军.dds +细刀神月.dds +细刀过渡1.dds +细刀过渡2.dds +细刀过渡3.dds +细刀过渡4.dds +细刀过渡5.dds +细刀过渡6.dds +细刀过渡7.dds +细刀过渡8.dds +细刀黄昏.dds +织女丝.dds +终极技能书.dds +终极技能书残页.dds +经典版.dds +结丹石.dds +结义守护卷轴.dds +结义神行卷轴.dds +结义移山卷轴.dds +结义识海卷轴.dds +结义诸世界卷轴.dds +结义迅捷卷轴.dds +结合之石.dds +结婚百年好合.dds +结婚红包.dds +结缘伞.dds +给华光会联络员的信.dds +给暗隐会联络员的信.dds +给辉夜军会联络员的信.dds +绚烂花朵黑纱裙头发.dds +绚烂花朵黑纱裙护腕.dds +绚烂花朵黑纱裙衣服.dds +绚烂花朵黑纱裙鞋子.dds +绛珠草.dds +绛鈺.dds +绝圣丹.dds +绝天戒.dds +绝天龙牙枪.dds +绝情刀.dds +绝情斩.dds +统御之心.dds +绢丝.dds +绣球法球.dds +绣绮四面亭.dds +绣花鞋.dds +绯红幻影.dds +绯红水晶酒具.dds +绰约披风.dds +维多利亚的秘密女装上衣.dds +维多利亚的秘密女装头发.dds +维多利亚的秘密女装裙子.dds +维多利亚的秘密女装鞋子.dds +维纳斯玫瑰花亭.dds +绷带男装男上身.dds +绷带男装男头发.dds +绷带男装男手套.dds +绷带男装男裤子.dds +绷带男装男鞋子.dds +绽红莲花灯.dds +绿松石坠子.dds +绿狮子.dds +绿玉石佩.dds +绿眼石染料.dds +绿磷.dds +绿绮焦桐琴.dds +绿色圣器残片.dds +绿色小星星.dds +绿色小烟花.dds +绿色染色剂.dds +绿色棉线.dds +绿色药粉.dds +绿茶棒棒糖.dds +绿萝木栅栏.dds +绿萼叶.dds +绿萼梅.dds +绿鱼卵.dds +缉古算经.dds +缚地之蕊.dds +缚魂履.dds +缠绵软鞭.dds +缤纷烟花.dds +罔极刀.dds +罗刹之石.dds +罗刹妃的眼珠.dds +罗喉轮.dds +罗甸黑珍珠.dds +罗盘.dds +罗纱女装礼包.dds +罗马式宫廷展示柜.dds +罗马式胡桃立柜.dds +罗马风胡桃书桌.dds +罡风徽章1.dds +罡风徽章2.dds +罡风徽章灰.dds +罡风徽章蓝.dds +罡风徽章金.dds +罪恶之翼.dds +羊人的信物.dds +羊年摆摊女.dds +羊年摆摊男.dds +羊族徽记.dds +羊皮地图.dds +羊皮符纸.dds +美.dds +美人蕉.dds +美人鱼.dds +美女看这里.dds +羡境神丹幻天.dds +群星璀璨卡.dds +群鹰峭壁.dds +羽之守护(神鹰祝福).dds +羽嘉下铠.dds +羽嘉战铠.dds +羽嘉腕甲.dds +羽嘉鞋.dds +羽族13a羽灵职业装上衣.dds +羽族13a羽灵职业装护腕.dds +羽族13a羽灵职业装裤子.dds +羽族13a羽灵职业装鞋子.dds +羽族13a羽芒职业装上衣.dds +羽族13a羽芒职业装护腕.dds +羽族13a羽芒职业装裤子.dds +羽族13a羽芒职业装鞋子.dds +羽族13b羽灵职业装上衣.dds +羽族13b羽灵职业装护手.dds +羽族13b羽灵职业装裤子.dds +羽族13b羽灵职业装鞋子.dds +羽族13b羽芒职业装上衣.dds +羽族13b羽芒职业装护手.dds +羽族13b羽芒职业装裤子.dds +羽族13b羽芒职业装鞋子.dds +羽族圣魔.dds +羽族枫色羽毛.dds +羽族灵翔羽翼.dds +羽族灿蝶粉.dds +羽族炽天使翅膀.dds +羽族白羽翅膀.dds +羽族紫耀羽翅.dds +羽族红机械翅膀.dds +羽族羽灵职业装上衣.dds +羽族羽灵职业装护腕.dds +羽族羽灵职业装裤子.dds +羽族羽灵职业装鞋子.dds +羽族羽芒职业装上衣.dds +羽族羽芒职业装护腕.dds +羽族羽芒职业装裤子.dds +羽族羽芒职业装鞋子.dds +羽族蓝宙.dds +羽族部落之光.dds +羽族飞行器.dds +羽族飞行器膀子.dds +羽族黑魔焰.dds +羽毛印度男装上衣.dds +羽毛印度男装头发.dds +羽毛印度男装裤子.dds +羽毛印度男装鞋子.dds +羽灵大师.dds +羽灵技能书.dds +羽灵星盘.dds +羽灵版粉女装上衣.dds +羽神之翼.dds +羽芒大师.dds +羽芒戒(阳).dds +羽芒戒(阴).dds +羽芒战甲.dds +羽芒技能书.dds +羽芒护手.dds +羽芒护腿.dds +羽芒星盘.dds +羽芒版黄男装上衣.dds +羽芒袋.dds +羽芒鞋.dds +羽芒项链.dds +羽裙装女上衣.dds +羽裙装女护腕.dds +羽裙装女裙子.dds +羽裙装女鞋子.dds +羽魂之弓.dds +羽鳞冠.dds +翅灵1.dds +翅灵2.dds +翅灵3.dds +翅灵4.dds +翅灵5.dds +翅灵6.dds +翅膀赤霄.dds +翎雀戏春刻瓷.dds +翔云令牌.dds +翔空之丝.dds +翔空之爱.dds +翔空之纱.dds +翔空之翼.dds +翔空之舞.dds +翔空之露.dds +翠涛惊门.dds +翠玉.dds +翠玉润珠项链.dds +翠琼壶.dds +翠竹流水.dds +翠绿之石.dds +翠藓花石纲.dds +翠青莲花笔洗.dds +翡翠之叶.dds +翡翠人像.dds +翡翠戒.dds +翡翠手镯.dds +翡翠白菜.dds +翡翠色染料.dds +翡翠链.dds +耀世重生.dds +耀光项链.dds +耀星项链.dds +耀月项链.dds +耀炎之矛.dds +耀空项链.dds +耀辉项链.dds +耀阳古宝.dds +老虎.dds +老虎的眼睛.dds +老马的尸骨.dds +老鼠爱大米.dds +耐力之证.dds +耐力铸材.dds +耗星卡.dds +聚仙符.dds +聚元神石.dds +聚宝盆.dds +聚灵弩.dds +聚神符.dds +聚魂披风.dds +肉盾项链.dds +肉芝.dds +肥修罗.dds +胜利.dds +胜利戒指.dds +胡杨.dds +胡桃典雅欧式床.dds +胡琴.dds +胡萝卜.dds +胧族近战100上衣.dds +胧族近战100护腕.dds +胧族近战100裤子.dds +胧族近战100鞋子.dds +胧族近战准顶级上衣.dds +胧族近战准顶级护腕.dds +胧族近战准顶级裤子.dds +胧族近战准顶级鞋子.dds +胧族近战新九军上衣.dds +胧族近战新九军护腕.dds +胧族近战新九军裤子.dds +胧族近战新九军鞋子.dds +胧族近战新手装上衣.dds +胧族近战新手装护腕.dds +胧族近战新手装裤子.dds +胧族近战新手装鞋子.dds +胧族近战过渡1上衣.dds +胧族近战过渡1护腕.dds +胧族近战过渡1裤子.dds +胧族近战过渡1鞋子.dds +胧族近战过渡2上衣.dds +胧族近战过渡2护腕.dds +胧族近战过渡2裤子.dds +胧族近战过渡2鞋子.dds +胧族近战过渡3上衣.dds +胧族近战过渡3护腕.dds +胧族近战过渡3裤子.dds +胧族近战过渡3鞋子.dds +胧族近战过渡4上衣.dds +胧族近战过渡4护腕.dds +胧族近战过渡4裤子.dds +胧族近战过渡4鞋子.dds +胧族远程100级上衣.dds +胧族远程100级护腕.dds +胧族远程100级裤子.dds +胧族远程100级鞋子.dds +胧族远程准顶级上衣.dds +胧族远程准顶级护腕.dds +胧族远程准顶级裤子.dds +胧族远程准顶级鞋子.dds +胧族远程新九军上衣.dds +胧族远程新九军护腕.dds +胧族远程新九军裤子.dds +胧族远程新九军鞋子.dds +胧族远程新手装上衣.dds +胧族远程新手装护腕.dds +胧族远程新手装裤子.dds +胧族远程新手装鞋子.dds +胧族远程过渡1上衣.dds +胧族远程过渡1护腕.dds +胧族远程过渡1裤子.dds +胧族远程过渡1鞋子.dds +胧族远程过渡2上衣.dds +胧族远程过渡2护腕.dds +胧族远程过渡2裤子.dds +胧族远程过渡2鞋子.dds +胧族远程过渡3上衣.dds +胧族远程过渡3护腕.dds +胧族远程过渡3裤子.dds +胧族远程过渡3鞋子.dds +胧族远程过渡4上衣.dds +胧族远程过渡4护腕.dds +胧族远程过渡4裤子.dds +胧族远程过渡4鞋子.dds +胧族金属轮.dds +胧族飞行器.dds +胧族飞行器1.dds +胧族飞行器11.dds +胧族飞行器12.dds +胧族飞行器2.dds +胧族飞行器3.dds +胧族飞行器4.dds +胧族飞行器5.dds +胧族飞行器6.dds +胧族飞行器7.dds +胧族飞行器8.dds +能言草.dds +能量水晶.dds +能量结晶体冰.dds +脂肪.dds +脸谱拳套.dds +腊八粥.dds +腐化鸟蛋.dds +腺体.dds +腾云令牌.dds +腾蛟之矛.dds +自然碎片.dds +自然精华.dds +至·诸神之佑.dds +至尊武圣.dds +至尊盔.dds +至尊缩地铃.dds +致命毒液.dds +致命的破绽.dds +致命的破绽1.dds +舍利子.dds +舜日腰饰.dds +艮之表徽.dds +艮之魂.dds +艳丽女装上衣.dds +艳丽女装头发.dds +艳丽女装护腕.dds +艳丽女装鞋子.dds +艺伎骨.dds +节日挂灯.dds +节节富贵.dds +芊芊中华结.dds +芒果色染料.dds +芙苓.dds +芙蓉刺.dds +芙蓉并蒂垂灯.dds +芝人.dds +芝马.dds +芦苇.dds +芦苇秋锦双耳壶.dds +芭蕉扇双手长.dds +花.dds +花之比基尼上衣.dds +花之比基尼下衣.dds +花之比基尼鞋.dds +花卉天鹅摆件.dds +花双手长2.dds +花园长木椅.dds +花好月圆.dds +花好月圆1.dds +花开富贵.dds +花朵匕首.dds +花朵弩.dds +花束浮雕三人沙发.dds +花束浮雕双人沙发.dds +花束浮雕大双人沙发.dds +花束浮雕皮沙发.dds +花样年华.dds +花瓣.dds +花生.dds +花知女装上衣.dds +花知女装头发.dds +花知女装裙子.dds +花知女装鞋子.dds +花纹小礼服上衣.dds +花纹小礼服裤.dds +花纹小礼服鞋.dds +花苞疯女.dds +花蕾年装衣服.dds +花蕾年装鞋.dds +花虫腺体.dds +花蝶红锦榻.dds +花边刺客男时装上衣.dds +花边刺客男时装头发.dds +花边刺客男时装手套.dds +花边刺客男时装裤子.dds +花边刺客男时装鞋子.dds +花间荡.dds +芳华盈室刻瓷.dds +芳艳彩绢立灯.dds +芷悬圃.dds +苍园翠草.dds +苍羽天珠.dds +苍茫之石.dds +苍茫杖.dds +苍蝇拍.dds +苍鹰图腾.dds +苏格兰酷装女上衣.dds +苏格兰酷装裙子.dds +苏格兰酷装鞋.dds +苦海.dds +苦海无涯胶.dds +英伦街头男装上衣.dds +英伦街头男装头发.dds +英伦街头男装裤子.dds +英伦街头男装鞋子.dds +英华腰饰.dds +英雄之血.dds +英雄腰饰.dds +苹果树.dds +苹果芬达.dds +茜瓦月牙门.dds +茶壶.dds +荆棘刺.dds +荆棘刺球.dds +荆棘棒.dds +草原小花1.dds +草原小花2.dds +草原小花3.dds +草原小花4.dds +草原小花5.dds +草芯色染料.dds +草药粉.dds +草莓红棒棒糖.dds +荣草.dds +荧光之翼.dds +药师大师之匣小.dds +药师精通.dds +药房.dds +药王手札.dds +荷叶边男装头发.dds +荷叶边男装衣服.dds +荷叶边男装裤子.dds +荷叶边男装鞋子.dds +荷花.dds +荷花拳套.dds +荷香满夏.dds +荼蘼花事.dds +莲子.dds +莲弯折扇楼.dds +莲花.dds +莲花灯.dds +莲花灯烟花.dds +莲花灯烟花简单.dds +莲蓉.dds +莲蓬.dds +莺莺燕燕.dds +菊花.dds +菖蒲竹叶.dds +菡昙赐语石.dds +菩提仙祖.dds +菩提宝杖.dds +菩提木.dds +萌妹装上衣.dds +萌妹装下衣.dds +萌妹装头发.dds +萌妹装护腕.dds +萌妹装鞋子.dds +萌小妹.dds +萝兰铁艺门.dds +萝莉装头发32.dds +萝莉装衣服32.dds +萝莉装鞋子32.dds +萤火虫囊.dds +落凤弩.dds +落星.dds +葡萄喇叭.dds +蓝一.dds +蓝二.dds +蓝宝水晶酒具.dds +蓝宝石.dds +蓝宝石戒指大.dds +蓝宝石戒指小.dds +蓝宝石装.dds +蓝影中级.dds +蓝影初级.dds +蓝影高级.dds +蓝玉.dds +蓝精灵.dds +蓝绿一.dds +蓝绿二.dds +蓝色圣器残片.dds +蓝色大眼睛.dds +蓝色妖姬.dds +蓝色小星星.dds +蓝色思念.dds +蓝色恋情.dds +蓝色星球.dds +蓝色染色剂.dds +蓝色水晶石.dds +蓝色浆草.dds +蓝色老鹰.dds +蓝莓棒棒糖片.dds +蓝蘑菇.dds +蓝蘑菇2.dds +蓝豹子.dds +蓝钻.dds +蔓越莓物语.dds +蔚蓝蟠运碧玺.dds +蔚蓝遥极碧玺.dds +蔽日鸢卡片1.dds +蔽日鸢卡片2.dds +蔽日鸢卡片3.dds +蔽日鸢卡片4.dds +蔽日鸢卡片5.dds +蔽日鸢卡片6.dds +蔽日鸢卡片7.dds +蔽日鸢卡片8.dds +蕊光浮香树.dds +薄荷色染料.dds +薏米.dds +薰衣草.dds +藏宝图.dds +藏宝图1级.dds +藏宝图2级.dds +藏宝图3级.dds +藏宝图4级.dds +藏宝图5级.dds +藏宝图6级.dds +藏宝图7级.dds +藏宝图8级.dds +藏影披风.dds +藏星剑.dds +藏烟墨.dds +藏空奇卷.dds +藏锋剑.dds +藕荷色染料.dds +藕荷色染色卡.dds +藤杖.dds +藤蔓雕镂屏风.dds +藤鞭.dds +藤黄.dds +藿香.dds +蘸金斧.dds +虎啸靴.dds +虎头盔.dds +虎头红包.dds +虎威函.dds +虎年充实红包.dds +虎年厚重红包.dds +虎年春节大红包.dds +虎年春节松.dds +虎年春节梅.dds +虎年春节竹.dds +虎年春节请帖.dds +虎年春节香.dds +虎年略鼓的红包.dds +虎年镶金红包.dds +虎斑符.dds +虎牙突.dds +虎珠唾液.dds +虎皮帽檐.dds +虎皮护心镜组件.dds +虎皮护腕组件.dds +虎皮护膝组件.dds +虎皮护踝组件.dds +虎皮飘带组件.dds +虎符.dds +虎耳草.dds +虎虎生风.dds +虎风腰佩.dds +虎魄.dds +虚假宝藏.dds +虚无宝珠.dds +虚无游神.dds +虚空藏菩萨.dds +虚空藏菩萨碎片.dds +虫卵.dds +虫皮.dds +虬龙青石印.dds +虹之卵.dds +虾壳.dds +蚀血巨锤.dds +蚂蚁卵.dds +蚂蚁面具.dds +蚊香.dds +蚌珠.dds +蚌精珍珠.dds +蚕丝.dds +蚕丝弓弦.dds +蚕丝绞丝.dds +蚕丝连接环.dds +蚩尤战甲.dds +蚩尤腿甲.dds +蚩尤袖甲.dds +蚩尤靴.dds +蚰蜒.dds +蛇含草.dds +蛇年大吉.dds +蛇焰箭.dds +蛇王杖.dds +蛇矛.dds +蛇肉.dds +蛇胆.dds +蛇链腰带男装上衣.dds +蛇链腰带男装头发.dds +蛇链腰带男装护腕.dds +蛇链腰带男装裤子.dds +蛇链腰带男装鞋子.dds +蛊惑女装上衣.dds +蛊惑女装护腕.dds +蛊惑女装裤子.dds +蛊惑女装鞋子.dds +蛊惑男装上衣.dds +蛊惑男装裤子.dds +蛊惑男装鞋子.dds +蛋糕帽子.dds +蛋糕法球.dds +蛋黄.dds +蛛丝.dds +蛟玉.dds +蛤蟆林树.dds +蛮族的爪.dds +蛮族的角.dds +蛮蛮的羽毛.dds +蜂蜜.dds +蜂蜜精.dds +蜈蚣.dds +蜈蚣毒液.dds +蜈蚣鞭.dds +蜘蛛毒液.dds +蜘蛛毒针.dds +蜘蛛网纹女装头发.dds +蜘蛛网纹女装手腕.dds +蜘蛛网纹女装衣服.dds +蜘蛛网纹女装裤子.dds +蜘蛛网纹女装鞋子.dds +蜜汁.dds +蜜汁百合粽.dds +蜡烛.dds +蜻蜓.dds +蜻蜓刺玉.dds +蜻蜓复眼.dds +蜻蜓翅膀.dds +蝉翼匕首.dds +蝉翼纱.dds +蝎子壳.dds +蝎子尾钉.dds +蝎尾.dds +蝎尾鞭.dds +蝎王鳞甲片.dds +蝴蝶兰精.dds +蝴蝶婚纱女头发.dds +蝴蝶婚纱女手套.dds +蝴蝶婚纱女衣服.dds +蝴蝶婚纱女鞋子.dds +蝴蝶结喇叭.dds +蝴蝶结套装女上衣.dds +蝴蝶结套装女头发.dds +蝴蝶结套装女鞋子.dds +蝴蝶结淑女时装头发.dds +蝴蝶结淑女时装护腕.dds +蝴蝶结淑女时装衣服.dds +蝴蝶结淑女时装鞋子.dds +蝴蝶翅膀女上衣.dds +蝴蝶翅膀女头发.dds +蝴蝶翅膀女护手.dds +蝴蝶翅膀女裤子.dds +蝴蝶翅膀女鞋子.dds +蝴蝶翼2.dds +蝴蝶翼3.dds +蝴蝶翼4.dds +蝴蝶蛹.dds +蝴蝶裙上衣.dds +蝴蝶裙裙子.dds +蝴蝶裙鞋子.dds +蝶戏殿春柜.dds +融灵之鼎.dds +融雪珍藏.dds +螭虎碧玉玺.dds +螳螂的巨爪.dds +螺旋木.dds +蟒骨鞭.dds +蟠桃果.dds +蟠龙三足砚.dds +蟠龙雕花笔架.dds +蟹爪.dds +蟹肉.dds +血凤凰.dds +血影项链.dds +血晶石.dds +血晶虎符.dds +血杀刃.dds +血河魔刀.dds +血炼妖蜂卡片1.dds +血炼妖蜂卡片2.dds +血炼妖蜂卡片3.dds +血炼妖蜂卡片4.dds +血炼妖蜂卡片5.dds +血炼妖蜂卡片6.dds +血炼妖蜂卡片7.dds +血炼妖蜂卡片8.dds +血煞斧.dds +血狼勇士.dds +血狼爪.dds +血璃残片.dds +血石残片山.dds +血石残片山流通.dds +血石残片海.dds +血石残片海流通.dds +血红骨.dds +血蹄狼.dds +血雨长矛.dds +血雾之丝.dds +血雾之爱.dds +血雾之纱.dds +血雾之翼.dds +血雾之舞.dds +血雾之露.dds +血鹫之心.dds +行千里证明.dds +行百里证明.dds +衔环之石.dds +衔环之石包裹.dds +街头流行密码男装-头发32.dds +街头流行密码男装-衣服32.dds +街头流行密码男装-裤子32.dds +街头流行密码男装-鞋32.dds +衣服内衬.dds +衣襟.dds +补天胶.dds +补签令.dds +袂雪狐元魂.dds +袖剑.dds +袖箭.dds +被劫的药品.dds +被困的梦魇.dds +被困的虫子.dds +被感染的爪子.dds +被掠去的货物.dds +被解读的卷轴.dds +被解读的卷轴变色.dds +袭影回礼.dds +袭影物资.dds +裁缝大师之匣小.dds +裁缝精通.dds +裂刃符.dds +裂地长斧.dds +裂天之斧.dds +裂岩拳套.dds +装有毒药的玻璃瓶.dds +装有蜂蜜的玻璃瓶.dds +装有魔药的玻璃瓶.dds +装满酒的酒杯.dds +装葺任务开启道具.dds +装葺配方包裹.dds +装葺配方包裹2.dds +装葺配方包裹3.dds +裹铜缠丝垂灯.dds +西式中级主屋.dds +西式低级主屋.dds +西式大门豪华.dds +西式婚礼女士礼盒.dds +西式婚礼服纪念女头发.dds +西式婚礼服纪念女手套.dds +西式婚礼服纪念女裙子.dds +西式婚礼服纪念女鞋子.dds +西式婚礼服纪念男上衣.dds +西式婚礼服纪念男头发.dds +西式婚礼服纪念男手套.dds +西式婚礼服纪念男裤子.dds +西式婚礼服纪念男鞋子.dds +西式婚礼男士礼盒.dds +西式高级主屋.dds +西斗卡.dds +西方喷泉1.dds +西方喷泉2.dds +西方喷泉3.dds +西服男装上衣.dds +西服男装裤子.dds +西服男装鞋子.dds +西部牛仔男上衣.dds +西部牛仔男头发.dds +西部牛仔男手套.dds +西部牛仔男裤子.dds +西部牛仔男鞋子.dds +覆霜之徽·护.dds +观世音菩萨.dds +观世音菩萨碎片副本.dds +观嚣之印1.dds +观嚣之印2.dds +观嚣之印灰.dds +观嚣之印蓝.dds +观嚣之印金.dds +观潮下铠.dds +观澜剑.dds +观音坐像.dds +觉醒披风1.dds +觉醒披风2.dds +角色改名.dds +解毒露.dds +解牛刀.dds +触角.dds +誓血杖.dds +许愿树.dds +许愿树_2.dds +许愿牌.dds +许愿签.dds +证.dds +试炼之石.dds +诚心牌.dds +诚意回馈礼包.dds +诚意牌.dds +诛仙剑.dds +诛神剑.dds +诡异法杖.dds +诱人的元宝.dds +诸天乐行.dds +诸葛弩.dds +豆沙.dds +象棋指归.dds +象牙六方笔筒.dds +象牙小段.dds +象牙嵌金竖琴钟.dds +象牙戒.dds +象牙手掌模板.dds +象牙杖柄.dds +象牙节扣.dds +豹子成年.dds +豹子的尾巴.dds +豹纹皮衣女上衣32.dds +豹纹皮衣女头发32.dds +豹纹皮衣女手套32.dds +豹纹皮衣女裤子32.dds +豹纹皮衣女鞋子32.dds +豹纹皮衣男上衣32.dds +豹纹皮衣男头发32.dds +豹纹皮衣男手套32.dds +豹纹皮衣男裤子32.dds +豹纹皮衣男鞋子32.dds +貂皮.dds +贝叶鲛人元魂.dds +贝壳.dds +贝壳面具.dds +贝币.dds +财宝天珠.dds +贤者之戒.dds +贤者之语.dds +货物.dds +货郎的工具箱.dds +贪狼镗.dds +购置任务物品单本.dds +购置任务物品单本正红.dds +购置任务物品单本白.dds +购置任务物品单本粉.dds +购置任务物品单本紫.dds +购置任务物品单本红.dds +购置任务物品单本绿.dds +购置任务物品单本蓝.dds +购置任务物品单本青.dds +购置任务物品单本黑.dds +贯征拳套.dds +贯耳锤.dds +贯芒长斧.dds +贯魂雕文.dds +贵人卡.dds +贵夫人女上衣.dds +贵夫人女头发.dds +贵夫人女手套.dds +贵夫人女裤子.dds +贵夫人女鞋子.dds +贵族情侣装女腕.dds +贵族情侣装女裙.dds +贵族情侣装女靴.dds +贵族情侣装男腕.dds +贵族情侣装男装.dds +贵族情侣装男裤.dds +贵族情侣装男鞋.dds +贺卡-1.dds +贺卡-10.dds +贺卡-2.dds +贺卡-3.dds +贺卡-4.dds +贺卡-5.dds +贺卡-6.dds +贺卡-7.dds +贺卡-9.dds +贺岁鼠.dds +赌球.dds +赎罪雕像核心.dds +赤头千足虫虫卵.dds +赤灵石.dds +赤炎领主卡片1.dds +赤炎领主卡片2.dds +赤炎领主卡片3.dds +赤炎领主卡片4.dds +赤炎领主卡片5.dds +赤炎领主卡片6.dds +赤炎领主卡片7.dds +赤炎领主卡片8.dds +赤炼鞭.dds +赤炼风骸的中枢水晶.dds +赤炼风骸的水晶碎片.dds +赤焰之力.dds +赤焰之意.dds +赤焰战斧.dds +赤焰铜樽路灯.dds +赤玉.dds +赤玉之石.dds +赤目戒.dds +赤眼之石.dds +赤练蛇.dds +赤虚头饰.dds +赤虚履.dds +赤虚戒(阳).dds +赤虚戒(阴).dds +赤虚护手.dds +赤虚护符.dds +赤虚袍.dds +赤虚裤.dds +赤血石坠子.dds +走兽血液.dds +起.dds +超短白纱小鸟装上衣.dds +超短白纱小鸟装鞋子.dds +超级九阳丹.dds +超级全勤奖.dds +超级神气丸.dds +超级金创药.dds +足球.dds +足球宝贝.dds +跨服喇叭.dds +路标.dds +跳跃的动作1.dds +跳跃的动作2.dds +踏雪熊.dds +身份证明.dds +轩窗如意门.dds +轩辕战甲.dds +轩辕玉玺.dds +轩辕盔.dds +轩辕腿甲.dds +轩辕袖甲.dds +轩辕靴.dds +转世之符.dds +转云千峰楼.dds +转动的魔方齿轮.dds +转运玲珑.dds +轮回梭.dds +轮椅.dds +轮转之石巨蛋.dds +软毛皮.dds +软猬刺球的刺.dds +软皮下铠.dds +软皮战铠.dds +软皮腕甲.dds +软皮鞋.dds +软筋.dds +轰霆异世璧法系.dds +轰霆异世璧物理.dds +轻巧之丝.dds +轻巧之爱.dds +轻巧之纱.dds +轻巧之翼.dds +轻巧之舞.dds +轻巧之露.dds +轻灵之丝.dds +轻灵之爱.dds +轻灵之纱.dds +轻灵之翼.dds +轻灵之舞.dds +轻灵之露.dds +轻烟灵珠.dds +轻盈之丝.dds +轻盈之爱.dds +轻盈之纱.dds +轻盈之翼.dds +轻盈之舞.dds +轻盈之露.dds +轻纱女上衣.dds +轻纱女头发.dds +轻纱女裤子.dds +轻纱女鞋子.dds +轻羽蕾丝女装上衣.dds +轻羽蕾丝女装头发.dds +轻羽蕾丝女装裤子.dds +轻羽蕾丝女装鞋子.dds +载.dds +辉夜军之印.dds +辉夜军先锋令牌.dds +辉夜军勇者令牌.dds +辉夜军徽记.dds +辉夜军统领令牌.dds +辉煌之丝.dds +辉煌之爱.dds +辉煌之纱.dds +辉煌之翼.dds +辉煌之舞.dds +辉煌之露.dds +辉煌印记.dds +辉石.dds +辛.dds +辟尘角.dds +辟岳之石.dds +辟心之玉.dds +辟犀项链.dds +辟邪幡杖.dds +辟邪盔.dds +辰.dds +迎客松.dds +迎风招展的紫旗.dds +迎风招展的红旗.dds +迎风招展的蓝旗.dds +运动健将披风.dds +返墣冠.dds +返老还童丹.dds +返魂草.dds +还魂精华.dds +进化蛋.dds +远古图腾.dds +远古驯鹿的血.dds +远行之靴.dds +连云弩.dds +连击弩.dds +连横剑.dds +连环下铠.dds +连环战铠.dds +连环腕甲.dds +连环鞋.dds +迦蓝之石1.dds +迦蓝之石2.dds +迦蓝之石灰.dds +迦蓝之石蓝.dds +迦蓝之石金.dds +迪赛奥黑龙.dds +迷彩装男上衣.dds +迷彩装男手套.dds +迷彩装男裤.dds +迷彩装男鞋.dds +迷蝶梦迴刻印.dds +追云奔马.dds +追月连弩.dds +追风豹.dds +逆仙果.dds +逆天戒.dds +逆转宝珠.dds +逆鳞斧.dds +逍遥下铠.dds +逍遥战铠.dds +逍遥游令牌.dds +逍遥灵玉.dds +逍遥腕甲.dds +逍遥鞋.dds +透名龙女装衣服.dds +透明龙女装头发.dds +透明龙女装鞋子.dds +逐光之弓.dds +逐光异化鳗.dds +逐光弩.dds +通今冠.dds +通幽杖.dds +通幽魔虎.dds +通幽魔虎宝宝.dds +通灵使者令.dds +通玄仙虎.dds +通玄仙虎宝宝.dds +通用技能书.dds +通用活动门票.dds +通用活动门票2.dds +通用活动门票3.dds +通用活动门票4.dds +通用活动门票5.dds +通用配方包裹.dds +通经草.dds +速射弩.dds +速度之证.dds +逢.dds +道灵符.dds +遗书.dds +遗失的包裹.dds +遗失的货物.dds +遗失的首饰.dds +遗训刻文.dds +遗迹徽章碎片.dds +遮天幡杖.dds +邀仙坠子.dds +邀月坠子.dds +邀神坠子.dds +邀霞坠子.dds +邪魂之印.dds +邪魂令.dds +邪魂灵龛.dds +郁金.dds +郁金香.dds +郁金香1.dds +郎情妾意.dds +郡主裙.dds +郡主褂.dds +郡主鞋.dds +酉.dds +酒杯.dds +酷客牛仔男装-头发32.dds +酷客牛仔男装-护腕32.dds +酷客牛仔男装-衣服32.dds +酷客牛仔男装-裤子32.dds +酷客牛仔男装-鞋32.dds +酷皮衣深色男手套.dds +酷皮衣深色男装.dds +酷皮衣深色男裤.dds +酷皮衣深色男鞋.dds +酷绚舞台装男上衣.dds +酷绚舞台装男腕.dds +酷绚舞台装男裤子.dds +酷绚舞台装男鞋.dds +醉仙露.dds +醉玉盏.dds +醉青猴元魂.dds +醍醐香.dds +采石场.dds +采矿场.dds +重要信物.dds +野兽的毛.dds +野外开仓库石.dds +野外开商店石.dds +野外开邮箱石.dds +野山参.dds +野性漆皮装上衣.dds +野性漆皮装头发.dds +野性漆皮装裤子.dds +野性漆皮装鞋子.dds +野果.dds +野猬精的刺.dds +野趣图葫芦.dds +金zippo.dds +金丹.dds +金之精华.dds +金之英.dds +金乌之石.dds +金元宝花灯.dds +金元素精华.dds +金光狮子.dds +金光电母.dds +金光闪闪的鲤鱼.dds +金刚之石.dds +金刚天音.dds +金刚手菩萨.dds +金刚手菩萨碎片.dds +金刚护符.dds +金刚撅.dds +金刚木.dds +金刚杵.dds +金刚石链子.dds +金刚砂.dds +金刚菩提念.dds +金创药.dds +金叶子.dds +金属翼.dds +金属花朵.dds +金币.dds +金币袋子.dds +金条.dds +金毛犬.dds +金毛狮王.dds +金汤战甲.dds +金汤盔.dds +金汤腿甲.dds +金汤袖甲.dds +金汤靴.dds +金涛广亮门.dds +金涛红墙.dds +金涛红檐柱.dds +金澜守护卷轴.dds +金澜神行卷轴.dds +金澜移山卷轴.dds +金澜识海卷轴.dds +金澜迅捷卷轴.dds +金牌一等伯爵.dds +金牌一等侯爵.dds +金牌一等公爵.dds +金牌一等子爵.dds +金牌一等男爵.dds +金牌三等伯爵.dds +金牌三等侯爵.dds +金牌三等公爵.dds +金牌三等子爵.dds +金牌三等男爵.dds +金牌二等伯爵.dds +金牌二等侯爵.dds +金牌二等公爵.dds +金牌二等子爵.dds +金牌二等男爵.dds +金猪.dds +金甲天神.dds +金睛珠.dds +金砖.dds +金碧杉木舟.dds +金箔.dds +金线芍.dds +金线镶边长靠垫.dds +金绘龙纹宫纸.dds +金翅蜂.dds +金色铜球.dds +金芙蓉羊绒靠垫.dds +金花坠浮灯.dds +金葵银丝瓶.dds +金虎令牌.dds +金虎匣.dds +金蛇纳福.dds +金蛇胆.dds +金蛋.dds +金豹.dds +金质令牌.dds +金质发票.dds +金质奖章.dds +金质成就徽章·仙幻天.dds +金质返券.dds +金质首饰盒.dds +金质高级令牌.dds +金边木盒.dds +金钟罩.dds +金银花.dds +金银铜铁戒指12.dds +金银铜铁戒指13.dds +金锭.dds +金雷之力.dds +金雷之意.dds +金雾枭将.dds +金项圈.dds +金魄之石.dds +金鱼.dds +金鱼1.dds +金鱼2小.dds +金鱼amd.dds +金鱼装女上衣.dds +金鱼装女头发.dds +金鱼装女裤子.dds +金鱼装女鞋子.dds +金鳞.dds +金黄色的胡须.dds +鎏金芙蓉彩蛋.dds +鎏金铜叶西洋钟.dds +鏊馨石乾.dds +鏊馨石亘久.dds +鏊馨石兑.dds +鏊馨石坎.dds +鏊馨石坤.dds +鏊馨石巽.dds +鏊馨石无常.dds +鏊馨石离.dds +鏊馨石艮.dds +鏊馨石震.dds +针尾沙锥的卵.dds +钉耙.dds +钗匕首.dds +钝爪.dds +钢刀.dds +钢爪.dds +钥珠.dds +钱堆.dds +钱庄通票1.dds +钱庄通票2.dds +钱庄通票3.dds +钱庄通票4.dds +钱庄通票5.dds +钺刀.dds +钻杆虫.dds +钻杆虫2.dds +钻石女王装上衣.dds +钻石女王装下衣.dds +钻石女王装头发.dds +钻石女王装鞋子.dds +钻石女萌装上衣.dds +钻石女萌装下衣.dds +钻石女萌装头发.dds +钻石女萌装鞋子.dds +钻石徽记.dds +钻石戒.dds +钻石拼图.dds +钻石铂金戒指(女).dds +钻石铂金戒指(男).dds +钻秆虫.dds +铁丝网.dds +铁匠大师之匣小.dds +铁匠精通.dds +铁拳套.dds +铁条.dds +铁桶.dds +铁牌一等伯爵.dds +铁牌一等侯爵.dds +铁牌一等公爵.dds +铁牌一等子爵.dds +铁牌一等男爵.dds +铁牌三等伯爵.dds +铁牌三等侯爵.dds +铁牌三等公爵.dds +铁牌三等子爵.dds +铁牌三等男爵.dds +铁牌二等伯爵.dds +铁牌二等侯爵.dds +铁牌二等公爵.dds +铁牌二等子爵.dds +铁牌二等男爵.dds +铁疙瘩.dds +铁矢.dds +铁矿.dds +铁砂弹.dds +铁胎弓.dds +铁脊剑2012.dds +铁虎匣.dds +铁质令牌.dds +铁质发票.dds +铁质花篮工艺钟.dds +铁质返券.dds +铁质高级令牌.dds +铁铳.dds +铁锤.dds +铁锹.dds +铁靴刺.dds +铂金徽记.dds +铃儿手镯.dds +铃兰.dds +铃兰1.dds +铃铛儿.dds +铅霰弹.dds +铜币.dds +铜拳套.dds +铜牌一等伯爵.dds +铜牌一等侯爵.dds +铜牌一等公爵.dds +铜牌一等子爵.dds +铜牌一等男爵.dds +铜牌三等伯爵.dds +铜牌三等侯爵.dds +铜牌三等公爵.dds +铜牌三等子爵.dds +铜牌三等男爵.dds +铜牌二等伯爵.dds +铜牌二等侯爵.dds +铜牌二等公爵.dds +铜牌二等子爵.dds +铜牌二等男爵.dds +铜盔.dds +铜虎匣.dds +铜质令牌.dds +铜质发票.dds +铜质奖章.dds +铜质成就徽章·仙幻天.dds +铜质百灵笼.dds +铜质返券.dds +铜质高级令牌.dds +铜鎏金佛.dds +铜钱.dds +铜钺.dds +铜铃七宝鼎炉.dds +铜镇纸2012.dds +铜靴刺.dds +铜项圈.dds +银丝象牙笔.dds +银制耳环.dds +银币.dds +银杏色染料.dds +银牌一等伯爵.dds +银牌一等侯爵.dds +银牌一等公爵.dds +银牌一等子爵.dds +银牌一等男爵.dds +银牌三等伯爵.dds +银牌三等侯爵.dds +银牌三等公爵.dds +银牌三等子爵.dds +银牌三等男爵.dds +银牌二等伯爵.dds +银牌二等侯爵.dds +银牌二等公爵.dds +银牌二等子爵.dds +银牌二等男爵.dds +银牡丹羊绒靠垫.dds +银狐尾.dds +银翼之弓.dds +银翼狐.dds +银色之恋长裙.dds +银色之恋鞋子.dds +银虎匣.dds +银装男上衣.dds +银装男头发.dds +银装男手套.dds +银装男裤子.dds +银装男鞋子.dds +银质令牌.dds +银质发票.dds +银质奖章.dds +银质成就徽章·仙幻天.dds +银质返券.dds +银质高级令牌.dds +银钩.dds +银靴刺.dds +银项圈.dds +铸铁弩机.dds +铸铁强力机簧.dds +铸铁徽记.dds +铸铁护身锁.dds +铸铁棍棒护手.dds +铸铁矛柄.dds +铸铁短刃柄.dds +铸铁股甲合页.dds +铸铁肩甲合页.dds +铸铁腕甲合页.dds +铸铁药室.dds +铸铁裹边箱.dds +铸铁踝甲合页.dds +铸铁长刀刀格.dds +铸铁长杆接榫.dds +铸铁面罩合页.dds +铸魂钛晶.dds +锁子胸甲.dds +锁子腿甲.dds +锁子袖甲.dds +锁子靴.dds +锋利的爪子.dds +锐利之石.dds +锟铻之刃1.dds +锟铻之刃2.dds +锟铻之刃灰.dds +锟铻之刃蓝.dds +锟铻之刃金.dds +锡虎匣.dds +锡酒壶.dds +锦上添花.dds +锦囊.dds +锦囊妙计.dds +锦绣牡丹瓷杯.dds +锦绣群芳果篮.dds +锦绣雕花门.dds +锦缎护腕绣面.dds +锦缎法术鞋底.dds +锦缎法袍衣襟.dds +锦缎法裤下摆.dds +锦缎灵力幡绦.dds +锦缎香囊.dds +锦锻护腕绣面.dds +锦雀鎏银摆件.dds +镂花玻璃酒具.dds +镇元锤.dds +镇压之力.dds +镇海腰饰.dds +镇鬼灵符.dds +镇魂短杖.dds +镌刻铭文.dds +镏金锤.dds +镐子.dds +镖袋.dds +镜之泉水.dds +镰刀100级.dds +镰刀16品.dds +镰刀准顶级.dds +镰刀初始.dds +镰刀势力.dds +镰刀新16品.dds +镰刀新九军.dds +镰刀新八军.dds +镰刀神月.dds +镰刀过渡1.dds +镰刀过渡2.dds +镰刀过渡3.dds +镰刀过渡4.dds +镰刀过渡5.dds +镰刀过渡6.dds +镰刀过渡7.dds +镰刀过渡8.dds +镰刀黄昏.dds +镶碧秀竹.dds +镶边下铠.dds +长击刀.dds +长刀羊.dds +长叶片.dds +长弓.dds +长征皮带扣.dds +长旗袍.dds +长火枪.dds +长生包.dds +长生秘券.dds +长生诀.dds +长相厮守.dds +长相守.dds +长空之丝.dds +长空之爱.dds +长空之纱.dds +长空之翼.dds +长空之舞.dds +长空之露.dds +长臂蛮.dds +长街醉月坊.dds +长鞭.dds +闪光之剑.dds +闪光碎片.dds +闪华斧.dds +闪电鳐.dds +闪空之矛.dds +闪钻礼服男上衣.dds +闪钻礼服男手套.dds +闪钻礼服男裤子.dds +闪钻礼服男鞋子.dds +闭月羞花.dds +闷尖狮子头.dds +闻膦.dds +阎王令.dds +阎魔盔.dds +阔心林木.dds +阖家团圆.dds +队伍集结令.dds +阳光瓶.dds +阴差阳错卡.dds +阴锣.dds +阴阳剑.dds +阴阳夺魄轮.dds +阴阳符.dds +阴霾之丝.dds +阴霾之爱.dds +阴霾之纱.dds +阴霾之翼.dds +阴霾之舞.dds +阴霾之露.dds +阴魔令.dds +阵雨刀.dds +阿拉丁飞毯.dds +阿星的包裹.dds +陆化的海龟褐色.dds +陆生机器螃蟹.dds +陈旧的令牌.dds +降世之冠.dds +降焰魔宗.dds +降魔杵.dds +除盖障菩萨.dds +除盖障菩萨碎片.dds +陨星剑.dds +陨铁残片山.dds +陨铁残片山流通.dds +陨铁残片海.dds +陨铁残片海流通.dds +陶刀锋铸模.dds +陶剑刃铸模.dds +陶器.dds +陶子母斧铸模.dds +陶子母锤铸模.dds +陶指环铸模.dds +陶斧刃铸模.dds +陶金刚杵铸模.dds +陶锤头铸模.dds +陶鸳鸯刀铸模.dds +陶鸳鸯剑铸模.dds +陷阱.dds +随世仙姑卡.dds +随候遗珠.dds +随机染色剂.dds +随身背包.dds +隐士之镜.dds +隐色草.dds +隔水刀.dds +雀画弓.dds +雀石.dds +雀舞翅.dds +雄鹰之翼.dds +雄黄.dds +雅宝缠枝笔筒.dds +雅玲的灵魂.dds +雏鹰小草.dds +雕1.dds +雕2.dds +雕3.dds +雕4.dds +雕像之心.dds +雕翎箭.dds +雕花围龙屋.dds +雕花点颏笼.dds +雕花玻璃铁座钟.dds +雕花马甲男装上衣.dds +雕花马甲男装头发.dds +雕花马甲男装裤子.dds +雕花马甲男装鞋子.dds +雨伞.dds +雨花石坠子.dds +雪之印.dds +雪之灵上半.dds +雪之灵下半.dds +雪人坐骑.dds +雪兔宝宝.dds +雪后山行图.dds +雪女.dds +雪娃娃.dds +雪战士.dds +雪浪坠子.dds +雪球.dds +雪碧.dds +雪羽毛.dds +雪舞鎏晶.dds +雪蛮神官塔塔.dds +雪麒麟.dds +零.dds +雷光刺.dds +雷刃符.dds +雷妖之角.dds +雷牙片1.dds +雷牙片2.dds +雷牙片3.dds +雷牙片4.dds +雷牙片5.dds +雷牙片6.dds +雷牙片7.dds +雷牙片8.dds +雷电羊骑宠.dds +雷霆震.dds +雷音棍.dds +震之表徽.dds +震之魂.dds +震地弹.dds +震怒幻影.dds +露丸.dds +露华腰饰.dds +露渐清荷垂灯.dds +霸业.dds +霸海之玉.dds +霸海之靴.dds +霸海戒(阳).dds +霸海戒(阴).dds +霸海护手.dds +霸海护腿.dds +霸海玄甲.dds +霸海项链.dds +霹雳兽的獠牙.dds +霹雳弹.dds +青光中级.dds +青光初级.dds +青光高级.dds +青娥佩.dds +青影项链.dds +青枝迎客.dds +青水龙兽卡片1.dds +青水龙兽卡片2.dds +青水龙兽卡片3.dds +青水龙兽卡片4.dds +青水龙兽卡片5.dds +青水龙兽卡片6.dds +青水龙兽卡片7.dds +青水龙兽卡片8.dds +青玉.dds +青玉之石.dds +青瑶露鳞魄.dds +青瓷水注.dds +青白玉镇纸.dds +青石暗纹桌椅.dds +青罗软鞭.dds +青翠玉佩.dds +青色染色剂.dds +青花烟雨刻瓷.dds +青花玲珑留香壶.dds +青花瓷女装上衣.dds +青花瓷女装头发.dds +青花瓷女装鞋子.dds +青花笔筒.dds +青花缠枝瓶.dds +青草.dds +青莲色染料.dds +青藤绕梗.dds +青蚨.dds +青蚨皮.dds +青蛙下雨女装上衣.dds +青蛙下雨女装下衣.dds +青蛙下雨女装头发.dds +青蛙下雨女装鞋子.dds +青釉莲花碗.dds +青釉葫芦笔洗.dds +青金佩.dds +青金雷石图腾.dds +青铜剑.dds +青铜守神符.dds +青铜守身符.dds +青铜弩机.dds +青铜强力机簧.dds +青铜徽记.dds +青铜护身符.dds +青铜护身锁.dds +青铜棍棒护手.dds +青铜状·仙幻天.dds +青铜矛柄.dds +青铜短刃柄.dds +青铜股甲合页.dds +青铜肩甲合页.dds +青铜腕甲合页.dds +青铜药室.dds +青铜虎符.dds +青铜踝甲合页.dds +青铜长刀刀格.dds +青铜长杆接榫.dds +青铜面罩合页.dds +青锋剑.dds +青鸟之羽.dds +青鸟之风.dds +青鹤顶礼烛台.dds +青龙之列.dds +青龙之地.dds +青龙之天.dds +青龙之宇.dds +青龙之宙.dds +青龙之宿.dds +青龙之张.dds +青龙之日.dds +青龙之昃.dds +青龙之月.dds +青龙之洪.dds +青龙之盈.dds +青龙之荒.dds +青龙之辰.dds +青龙之黄.dds +青龙磐玺.dds +静岳之石.dds +静心水.dds +静心石.dds +静泉剑.dds +静魂灯.dds +靛蓝色染料.dds +靛青星河镇纸.dds +靛青色染料.dds +非主流婚礼女装上衣.dds +非主流婚礼女装头发.dds +非主流婚礼女装手套.dds +非主流婚礼女装裤子.dds +非主流婚礼女装鞋子.dds +非主流婚礼男装上衣.dds +非主流婚礼男装头发.dds +非主流婚礼男装手套.dds +非主流婚礼男装裤子.dds +非主流婚礼男装鞋子.dds +非常完美包小.dds +非镜.dds +面粉.dds +鞋子.dds +鞭子.dds +鞭炮.dds +韦陀杵.dds +韧之丝.dds +韬光披风.dds +顶.dds +顶灯.dds +顶针.dds +须陀.dds +颂唱之语.dds +颅骨.dds +领带休闲装上衣.dds +领带休闲装裤子.dds +领带休闲装鞋.dds +风.dds +风之女神的祝福.dds +风之精灵.dds +风之精魄.dds +风信子.dds +风情月意.dds +风暖酒旗楼.dds +风火轮1.dds +风火轮2.dds +风火轮3.dds +风火轮4.dds +风火轮5.dds +风筝.dds +风筝绯梦.dds +风骚凯撒男装上衣.dds +风骚凯撒男装护腕.dds +风骚凯撒男装裤子.dds +风骚凯撒男装鞋子.dds +飘渺之弓.dds +飘渺仙丹.dds +飞兽承影.dds +飞刀.dds +飞剑1.dds +飞剑10.dds +飞剑11.dds +飞剑13.dds +飞剑14.dds +飞剑15.dds +飞剑2.dds +飞剑3.dds +飞剑4.dds +飞剑5.dds +飞剑6.dds +飞剑7.dds +飞剑8.dds +飞剑9.dds +飞剑技能书.dds +飞剑新修青铜底子.dds +飞剑箱.dds +飞剑龙渊.dds +飞升之翼.dds +飞圣.dds +飞圣剑.dds +飞天上衣.dds +飞天狂鲨.dds +飞天猪.dds +飞天神豚.dds +飞天虎妖.dds +飞天蜈蚣.dds +飞天裙.dds +飞天鞋.dds +飞斧.dds +飞沙怪卡片1.dds +飞沙怪卡片2.dds +飞沙怪卡片3.dds +飞沙怪卡片4.dds +飞沙怪卡片5.dds +飞沙怪卡片6.dds +飞沙怪卡片7.dds +飞沙怪卡片8.dds +飞狐之羽.dds +飞箭技能书.dds +飞羽之翼.dds +飞翔之羽.dds +飞翔鲨的牙齿.dds +飞虎兽恶灵.dds +飞虎兽遗骸.dds +飞蛇之翼.dds +飞行器09.dds +飞行器加速器.dds +飞行器妖兽白凤凰.dds +飞行器贴龙渊承影.dds +飞镖.dds +飞鳐.dds +飞鳐1.dds +飞鳐2.dds +飞鳐3.dds +飞鸟血液.dds +飞鹰金令.dds +飞鹰金钥.dds +飞鹰钥匙铸件.dds +飞龙坐骑.dds +食人花种子.dds +飨赞秋实果篮.dds +餐厅.dds +饕餮纹葫芦.dds +饱满的种子.dds +饷银.dds +饿狼.dds +首乌.dds +首级雕像.dds +首领头颅.dds +首领尸体.dds +首饰盒.dds +香丸粉.dds +香囊腰饰12.dds +香囊腰饰13.dds +香木雕扇.dds +香柏沐浴桶.dds +香槟玫瑰.dds +香槟玫瑰瓜棱罐.dds +香精绳.dds +香肠单手短.dds +香肠镰刀.dds +香草棒棒糖.dds +香蕉.dds +马上有福.dds +马牌.dds +马蹄莲.dds +驭兽令.dds +驭兽令2.dds +驭兽令3.dds +驭魔幡杖.dds +驱虫药.dds +驱邪水晶.dds +驱鬼粉.dds +驱魔箭.dds +驱龙杖.dds +驼绒色染料.dds +骆驼.dds +骐骥下铠.dds +骐骥战铠.dds +骐骥腕甲.dds +骐骥鞋.dds +骑宠马白.dds +骑宠马红.dds +骑宠马绿.dds +骑宠马黑.dds +骑龙.dds +骨杖.dds +骨灰.dds +骨矢.dds +骨齿项链.dds +骰子兑换券.dds +骷髅.dds +高原旋龟肉.dds +高炭钢.dds +高级.dds +高级厚磷符.dds +高级合金钢.dds +高级周天残页.dds +高级头盔图标.dds +高级幻天残页.dds +高级弓.dds +高级强化皮革.dds +高级御神录.dds +高级易容卷轴.dds +高级木料.dds +高级淬火剂.dds +高级火云符.dds +高级焦炭.dds +高级狼兽.dds +高级玄天残页.dds +高级级全能洗点券.dds +高级能力洗点券.dds +高级蓝影符.dds +高级青光符.dds +高脚玻璃空酒杯.dds +鬼冥下铠.dds +鬼冥戒指.dds +鬼冥秘法裤.dds +鬼冥符文佩.dds +鬼冥重甲.dds +鬼冥重盔.dds +鬼冥项链.dds +鬼刹追魂铳.dds +鬼啸战斧.dds +鬼头刀.dds +鬼帆戒.dds +鬼帆腰佩.dds +鬼帆轻帽.dds +鬼帆轻腕.dds +鬼帆重甲.dds +鬼帆重腕.dds +鬼帆项链.dds +鬼怒长刀.dds +鬼扶护身符.dds +鬼扶魔力符.dds +鬼斧徽记.dds +鬼火.dds +鬼画符.dds +鬼脸面具.dds +鬼门十三针.dds +鬼阴火枪.dds +鬼雄拳套.dds +鬼雄杵.dds +魂力魔盒.dds +魂印之石.dds +魂印之石包裹.dds +魂印之石巨蛋.dds +魂牵梦萦.dds +魂魄之火.dds +魅.dds +魅之水晶.dds +魅力公主装上衣.dds +魅力公主装下衣.dds +魅力公主装头饰.dds +魅力公主装护腕.dds +魅力公主装鞋子.dds +魅影.dds +魅影拳套.dds +魅影换色橙色.dds +魅灵16品杖.dds +魅灵七贤杖.dds +魅灵专有杖1.dds +魅灵专有杖2.dds +魅灵专有杖4.dds +魅灵专用服装01上衣.dds +魅灵专用服装01手套.dds +魅灵专用服装01裤子.dds +魅灵专用服装01鞋子.dds +魅灵专用服装02上衣.dds +魅灵专用服装02手套.dds +魅灵专用服装02裤子.dds +魅灵专用服装02鞋子.dds +魅灵专用服装03上衣.dds +魅灵专用服装03手套.dds +魅灵专用服装03裤子.dds +魅灵专用服装03鞋子.dds +魅灵专用服装04上衣.dds +魅灵专用服装04手套.dds +魅灵专用服装04裤子.dds +魅灵专用服装04鞋子.dds +魅灵专用服装05上衣.dds +魅灵专用服装05手套.dds +魅灵专用服装05裤子.dds +魅灵专用服装05鞋子.dds +魅灵专用杖3.dds +魅灵仙技能书.dds +魅灵八军杖.dds +魅灵大师.dds +魅灵技能书.dds +魅灵新手杖.dds +魅灵星盘.dds +魅灵腰牌.dds +魅灵铭牌.dds +魅灵魔技能书.dds +魔天戒.dds +魔方vip贵宾卡.dds +魔方乐透币.dds +魔方乐透邀请函.dds +魔方董事会密信.dds +魔方董事委托书.dds +魔时装包裹.dds +魔械蝠的毒牙.dds +魔法壶.dds +魔法心.dds +魔法晶石.dds +魔法贵族女巫-衣服32.dds +魔法贵族女巫-鞋32.dds +魔法贵族女巫护腕32.dds +魔法贵族男巫-上衣32.dds +魔法贵族男巫-裤子32.dds +魔法贵族男巫-鞋32.dds +魔煞护腿.dds +魔煞法袍.dds +魔煞盔.dds +魔煞秘法戒.dds +魔煞腰佩.dds +魔煞轻甲.dds +魔煞项链.dds +魔煞鬼力戒.dds +魔牙项链.dds +魔甲玄武卡片1.dds +魔甲玄武卡片2.dds +魔甲玄武卡片3.dds +魔甲玄武卡片4.dds +魔甲玄武卡片5.dds +魔甲玄武卡片6.dds +魔甲玄武卡片7.dds +魔甲玄武卡片8.dds +魔界战刀.dds +魔界法剑.dds +魔神精魄.dds +魔神蚩尤.dds +魔种.dds +魔罐.dds +魔魂灵龛.dds +魔魂秘笈.dds +鱼.dds +鱼2.dds +鱼人的头.dds +鱼翅.dds +鱼骨.dds +鱼骨竖琴.dds +鱼鳍.dds +鲜橙色染料.dds +鲜肉.dds +鲜花.dds +鲨皮帽檐.dds +鲨皮护心镜组件.dds +鲨皮护腕组件.dds +鲨皮护膝组件.dds +鲨皮护踝组件.dds +鲨皮飘带组件.dds +鲲鹏.dds +鲲鹏下铠.dds +鲲鹏之游.dds +鲲鹏之鳞.dds +鲲鹏战铠.dds +鲲鹏紫羽.dds +鲲鹏腕甲.dds +鲲鹏鞋.dds +鲸涛通灵师鲸哈尔.dds +鲸皮帽檐.dds +鲸皮护心镜组件.dds +鲸皮护腕组件.dds +鲸皮护膝组件.dds +鲸皮护踝组件.dds +鲸皮飘带组件.dds +鲸胶弓弦.dds +鲸胶绞丝.dds +鲸胶连接环.dds +鲸锢之眼.dds +鳄鱼的眼泪.dds +鳄鱼皮.dds +鳄鱼血.dds +鳐精1.dds +鳐精2.dds +鳐精3.dds +鳐精4.dds +鳐精5.dds +鳐精6.dds +鳞片.dds +鳞甲山猫.dds +鸟窝.dds +鸟窝2.dds +鸡腿.dds +鸡蛋仔.dds +鸢尾.dds +鸣鸾腰饰.dds +鸣鸿长刀.dds +鸭子.dds +鸳蝶舞.dds +鸳鸯剑.dds +鸳鸯腰佩(男).dds +鸽子坐骑.dds +鸿蒙秘抄.dds +鹅黄色染料.dds +鹤坐骑.dds +鹦鹉.dds +鹰击之弓.dds +鹿皮下铠.dds +鹿皮战铠.dds +鹿皮腕甲.dds +鹿皮鞋.dds +鹿茸.dds +麋鹿.dds +麒麟之志.dds +麒麟之角.dds +麒麟墨.dds +麒麟绿.dds +麒麟青铜印.dds +麝灵珠.dds +麟嘉腰饰.dds +麟甲符.dds +麦芽黄染料.dds +黄橙棒棒糖.dds +黄檀描金集锦格.dds +黄檀束腰太师椅.dds +黄檀束腰钩云桌.dds +黄檀束草纹圈椅组合.dds +黄檀素面八仙桌.dds +黄水晶坠子.dds +黄沉之石.dds +黄油.dds +黄泉之水.dds +黄泉刀.dds +黄玉.dds +黄玉之石.dds +黄色小烟花.dds +黄色染色剂.dds +黄色浆草.dds +黄色的琥珀玉.dds +黄花梨透雕方凳.dds +黄苹果.dds +黄豆.dds +黄金五角星.dds +黄金匕首补充1.dds +黄金匕首补充2.dds +黄金匕首补充3.dds +黄金匕首补充4.dds +黄金匕首补充5.dds +黄金匕首补充6.dds +黄金双剑13.dds +黄金双斧13.dds +黄金守神符.dds +黄金守身符.dds +黄金布鞋靴子12.dds +黄金布鞋靴子13.dds +黄金弓12.dds +黄金弩13.dds +黄金徽记.dds +黄金护身符.dds +黄金护身锁.dds +黄金棍棒护手.dds +黄金法剑13.dds +黄金法宝补充1.dds +黄金法宝补充2.dds +黄金法宝补充3.dds +黄金法宝补充4.dds +黄金法宝补充5.dds +黄金法宝补充6.dds +黄金法袍上衣12.dds +黄金法袍上衣13.dds +黄金法袍腿裤子12.dds +黄金法袍腿裤子13.dds +黄金状·仙幻天.dds +黄金矛柄.dds +黄金短刃柄.dds +黄金短杖12.dds +黄金礼包.dds +黄金股甲合页.dds +黄金肩甲合页.dds +黄金腕甲合页.dds +黄金虎符.dds +黄金踝甲合页.dds +黄金轻型护腕12.dds +黄金轻型护腕13.dds +黄金轻帽头盔12.dds +黄金轻帽头盔13.dds +黄金轻甲上衣12.dds +黄金轻甲上衣13.dds +黄金轻甲护腕护腕12.dds +黄金轻甲护腕护腕13.dds +黄金轻甲腿裤子12.dds +黄金轻甲腿裤子13.dds +黄金轻靴靴子12.dds +黄金轻靴靴子13.dds +黄金通用披风12.dds +黄金通用披风13.dds +黄金重型护腕12.dds +黄金重型护腕13.dds +黄金重头12.dds +黄金重甲上衣12.dds +黄金重甲上衣13.dds +黄金重甲腿裤子12.dds +黄金重甲腿裤子13.dds +黄金重盔头盔12.dds +黄金重盔头盔13.dds +黄金重靴靴子12.dds +黄金重靴靴子13.dds +黄金长刀刀格.dds +黄金长斧12.dds +黄金长杆接榫.dds +黄金雕塑.dds +黄金面具.dds +黄金面罩合页.dds +黄金鹤嘴锄.dds +黄钻.dds +黄铜浮雕笔筒.dds +黄鱼卵.dds +黑五星礼服女头发.dds +黑五星礼服女手套.dds +黑五星礼服女裙子.dds +黑五星礼服女鞋子.dds +黑巢布履.dds +黑巢戒指.dds +黑巢护腿.dds +黑巢腰佩.dds +黑巢轻铠.dds +黑巢降魔斧.dds +黑巢项链.dds +黑巧克力棒棒糖.dds +黑市.dds +黑暗之血.dds +黑暗徘徊者.dds +黑暗斥候.dds +黑暗水晶.dds +黑曜虎符.dds +黑杆铱金笔习笺.dds +黑水晶坠子.dds +黑洞剑.dds +黑炫小礼服男装上衣.dds +黑炫小礼服男装头发.dds +黑炫小礼服男装裤子.dds +黑炫小礼服男装鞋子.dds +黑玉.dds +黑玉之石.dds +黑玉佩.dds +黑甲虫32.dds +黑红羽翼.dds +黑耀石链子.dds +黑色宠物蛋.dds +黑色染料.dds +黑色染色剂.dds +黑色狼牙.dds +黑色矿石.dds +黑色禁药男上衣.dds +黑色禁药男头发.dds +黑色禁药男裤子.dds +黑色禁药男鞋子.dds +黑豹.dds +黑钻.dds +默音鸾鸟元魂.dds +黛瓦月牙门.dds +鼠尾草.dds +鼠齿.dds +齐天戒.dds +齐眉棍.dds +齐眉辊.dds +齿蛮人.dds +齿轮零件.dds +龙凤虎首璜.dds +龙卷斧.dds +龙坐骑.dds +龙头棒双手短.dds +龙女之血.dds +龙女之鳞.dds +龙宫神仙鱼.dds +龙年摆摊.dds +龙年春节坐骑.dds +龙彩双锤.dds +龙息.dds +龙杖.dds +龙涎.dds +龙炎之石.dds +龙现之弓.dds +龙皮帽檐.dds +龙皮护心镜组件.dds +龙皮护腕组件.dds +龙皮护膝组件.dds +龙皮护踝组件.dds +龙皮飘带组件.dds +龙眼坠子.dds +龙神宝藏.dds +龙神的叹息.dds +龙祥戒.dds +龙筋弓弦.dds +龙筋绞丝.dds +龙筋连接环.dds +龙粪便.dds +龙胆紫.dds +龙腾战盔.dds +龙虎盔.dds +龙蛭.dds +龙须护腕绣面.dds +龙须法术鞋底.dds +龙须法袍衣襟.dds +龙须法裤下摆.dds +龙须灵力幡绦.dds +龙须箭.dds +龙须香囊.dds +龙马踏灵芝.dds +龙驭九天的角.dds +龙驭九天的鳞片.dds +龙骨公爵卡片1.dds +龙骨公爵卡片2.dds +龙骨公爵卡片3.dds +龙骨公爵卡片4.dds +龙骨公爵卡片5.dds +龙骨公爵卡片6.dds +龙骨公爵卡片7.dds +龙骨公爵卡片8.dds +龙骨小段.dds +龙骨手掌模板.dds +龙骨杖柄.dds +龙骨突.dds +龙骨节扣.dds +龙鳞法袍.dds +龙鳞项链.dds +龙鹫之翼.dds +龙鹫皮.dds +龟灵履.dds +龟灵护腕.dds +龟灵袍.dds +龟灵裤.dds +龟蛇下铠.dds +龟蛇战铠.dds +龟蛇腕甲.dds +龟蛇鞋.dds diff --git a/Assets/PerfectWorld/Resources/UI/Icon/iconlist_ivtrm.txt.meta b/Assets/PerfectWorld/Resources/UI/Icon/iconlist_ivtrm.txt.meta new file mode 100644 index 0000000000..3eb498a664 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Icon/iconlist_ivtrm.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d0079e79add41774e9c860b7d90ba716 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/IconSprites.meta b/Assets/PerfectWorld/Resources/UI/IconSprites.meta new file mode 100644 index 0000000000..bfaf507025 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/IconSprites.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ea85d19d6c588f0409a4c330d1c0d6a3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/IconSprites/iconlist_ivtrm_multisprite.png b/Assets/PerfectWorld/Resources/UI/IconSprites/iconlist_ivtrm_multisprite.png new file mode 100644 index 0000000000..108f97016c Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/IconSprites/iconlist_ivtrm_multisprite.png differ diff --git a/Assets/PerfectWorld/Resources/UI/IconSprites/iconlist_ivtrm_multisprite.png.meta b/Assets/PerfectWorld/Resources/UI/IconSprites/iconlist_ivtrm_multisprite.png.meta new file mode 100644 index 0000000000..81267afe6c --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/IconSprites/iconlist_ivtrm_multisprite.png.meta @@ -0,0 +1,203266 @@ +fileFormatVersion: 2 +guid: a141ce1b94af3cf46aa0695ab5ed6cdd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: unknown + rect: + serializedVersion: 2 + x: 0 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4e4f7bf167e47d00800000000000000 + internalID: 969654227808767567 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 0 + rect: + serializedVersion: 2 + x: 32 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cbacb9754e2ba3ab0800000000000000 + internalID: -5027509340213622084 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "0_\u4E1C\u5317\u5F53\u5F52" + rect: + serializedVersion: 2 + x: 64 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ee4b86b8bd5e03f0800000000000000 + internalID: -932705024901165342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "0_\u5251\u9EBB" + rect: + serializedVersion: 2 + x: 96 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 003ac5b9ffe3b0060800000000000000 + internalID: 6920694519929021184 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 1 + rect: + serializedVersion: 2 + x: 128 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a2918aa5d01d0fd0800000000000000 + internalID: -2374222918679686493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100000_\u6C34\u834901" + rect: + serializedVersion: 2 + x: 160 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ca4157adcec68c50800000000000000 + internalID: 6667243681039338185 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100001_\u6C34\u834902" + rect: + serializedVersion: 2 + x: 192 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 143a6e5a6203aa860800000000000000 + internalID: 7541893468535563073 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100002_\u6C34\u834903" + rect: + serializedVersion: 2 + x: 224 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de70175efa05f44b0800000000000000 + internalID: -5454051907323492371 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100003_\u6C34\u834904" + rect: + serializedVersion: 2 + x: 256 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1350012dfa19c7750800000000000000 + internalID: 6304073762741421361 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100004_\u6C34\u834905" + rect: + serializedVersion: 2 + x: 288 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec6096d15e9743cd0800000000000000 + internalID: -2579302661628557618 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100005_\u6C34\u834906" + rect: + serializedVersion: 2 + x: 320 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9522b315d06777690800000000000000 + internalID: -7604479646222310823 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100006_\u6C34\u834907" + rect: + serializedVersion: 2 + x: 352 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fee0a309e16ebfa00800000000000000 + internalID: 791479178476785391 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100007_\u6C34\u834908" + rect: + serializedVersion: 2 + x: 384 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 866170c0ec738d6e0800000000000000 + internalID: -1812637491912042904 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100008_\u6C34\u834909" + rect: + serializedVersion: 2 + x: 416 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ef05df61bae47d60800000000000000 + internalID: 7887186895238926307 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100009_\u6C34\u834910" + rect: + serializedVersion: 2 + x: 448 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1fe9969a030606f0800000000000000 + internalID: -718883746507788515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100010_\u6C34\u834911" + rect: + serializedVersion: 2 + x: 480 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e717d5946b6ddca30800000000000000 + internalID: 4237278902828757374 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100011_\u6C34\u834912" + rect: + serializedVersion: 2 + x: 512 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 15c105d94e471c070800000000000000 + internalID: 8124903727993723985 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100012_\u6C34\u834913" + rect: + serializedVersion: 2 + x: 544 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90170e73e453d1bd0800000000000000 + internalID: -2657909595017547511 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100013_\u6C34\u834914" + rect: + serializedVersion: 2 + x: 576 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6f83d22c25c4cf770800000000000000 + internalID: 8645869302973282550 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100014_\u6C34\u834915" + rect: + serializedVersion: 2 + x: 608 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c586e4017352f1cf0800000000000000 + internalID: -279463733446678436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100_\u7384\u5173\u5F71\u58C1" + rect: + serializedVersion: 2 + x: 640 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cfab661dfea86a000800000000000000 + internalID: 46877608748956412 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100\u5757\u5E3D\u5B50\u5973" + rect: + serializedVersion: 2 + x: 672 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 984b06804c16338c0800000000000000 + internalID: -4020762547729681271 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "100\u5757\u5E3D\u5B50\u7537" + rect: + serializedVersion: 2 + x: 704 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f83025fa97bdfbe0800000000000000 + internalID: -1441794429523314439 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "101_\u4E00\u7EA7\u684C\u5B50" + rect: + serializedVersion: 2 + x: 736 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd0506c2f45279ae0800000000000000 + internalID: -1542723325373951779 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "102_\u4E00\u7EA7\u6905\u5B50" + rect: + serializedVersion: 2 + x: 768 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 516ec0c9d9bf9a0f0800000000000000 + internalID: -1105075579196217835 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "103_\u4E8C\u7EA7\u684C\u5B50" + rect: + serializedVersion: 2 + x: 800 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: abd2743ba05fe5120800000000000000 + internalID: 2404628677368688058 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "104_\u4E8C\u7EA7\u6905\u5B50" + rect: + serializedVersion: 2 + x: 832 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8696c40da2f8e7f20800000000000000 + internalID: 3422330180894222696 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "105_\u4E09\u7EA7\u684C\u5B50" + rect: + serializedVersion: 2 + x: 864 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 163f5d4cb76951620800000000000000 + internalID: 2744265006279684961 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "106_\u4E09\u7EA7\u6905\u5B50" + rect: + serializedVersion: 2 + x: 896 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b77946f87ab6f1c40800000000000000 + internalID: 5485221238569998203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "106_\u9E45\u5375\u77F3\u5730\u976202" + rect: + serializedVersion: 2 + x: 928 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3fe2c478faed6f7c0800000000000000 + internalID: -4037795170420510989 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "107_\u56DB\u7EA7\u684C\u5B50" + rect: + serializedVersion: 2 + x: 960 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c74fef8c1940ac590800000000000000 + internalID: -7653299592573815684 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "108_\u56DB\u7EA7\u6905\u5B50" + rect: + serializedVersion: 2 + x: 992 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3de596383c4f917a0800000000000000 + internalID: -6405819874397298989 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "108_\u9E45\u5375\u77F3\u5730\u976204" + rect: + serializedVersion: 2 + x: 1024 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf610141e5a55fdb0800000000000000 + internalID: -4758798071137036549 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "109_\u5C0F\u8239" + rect: + serializedVersion: 2 + x: 1056 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 19a21c127e1071a10800000000000000 + internalID: 1879973461665852049 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "10_\u7C89\u5EB7\u8418\u85AA01" + rect: + serializedVersion: 2 + x: 1088 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6974f93b052aa2ff0800000000000000 + internalID: -60057177521436778 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "10\u5E74\u4E07\u5723\u8282\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1120 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b8d0f82e5b927d00800000000000000 + internalID: 969007698554181816 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "10\u5E74\u4E07\u5723\u8282\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1152 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab43501ae1708e690800000000000000 + internalID: -7572794945291602758 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "10\u5E74\u4E07\u5723\u8282\u5973\u88C5\u624B\u5957" + rect: + serializedVersion: 2 + x: 1184 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bf04a689b522a410800000000000000 + internalID: 1486792305743761330 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "10\u5E74\u4E07\u5723\u8282\u5973\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1216 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fbc1c5a3b1fcf5790800000000000000 + internalID: -7539079535344739137 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "10\u5E74\u4E07\u5723\u8282\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1248 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2eab87685108f5410800000000000000 + internalID: 1468032833484798690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "10\u5E74\u4E07\u5723\u8282\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1280 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bdf275297667e8710800000000000000 + internalID: 1697424296774152155 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "10\u5E74\u4E07\u5723\u8282\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1312 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b91c9f1a937a8ad0800000000000000 + internalID: -2699217920862709321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "10\u5E74\u4E07\u5723\u8282\u7537\u88C5\u624B\u5957" + rect: + serializedVersion: 2 + x: 1344 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fcce327ce648fd70800000000000000 + internalID: 9077083030308179188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "10\u5E74\u4E07\u5723\u8282\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1376 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de90960446606bb00800000000000000 + internalID: 843869007825668589 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "10\u5E74\u4E07\u5723\u8282\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1408 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f58abd05f3d4b400800000000000000 + internalID: 339128921410405873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "10\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 1440 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b9d36b448d72f530800000000000000 + internalID: 3887307435528149431 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "10\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 1472 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2345ad8ef1adbb2e0800000000000000 + internalID: -2108852169907481550 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "10\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 1504 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7aa850440310a9060800000000000000 + internalID: 6960877480865794727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "110_\u56F4\u68CB" + rect: + serializedVersion: 2 + x: 1536 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9615b2158c9481f10800000000000000 + internalID: 2240621939320901993 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "111_\u5706\u77F3\u684C" + rect: + serializedVersion: 2 + x: 1568 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70fc94bcf126b6b20800000000000000 + internalID: 3128702254833061639 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "112_\u5706\u77F3\u51F3" + rect: + serializedVersion: 2 + x: 1600 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8db4fcb55e85bd920800000000000000 + internalID: 3016102117565746136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "113_\u65B9\u77F3\u684C" + rect: + serializedVersion: 2 + x: 1632 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09d4f3bf7bee69730800000000000000 + internalID: 4005651392554290576 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "114_\u65B9\u77F3\u51F3" + rect: + serializedVersion: 2 + x: 1664 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7e3fbcda2aa6dfc0800000000000000 + internalID: -3470399361773519233 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "115_\u53E4\u8463\u5982\u610F" + rect: + serializedVersion: 2 + x: 1696 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83bf2b5c98cfc5660800000000000000 + internalID: 7376047958383590200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "116_\u53E4\u7434\u67B6" + rect: + serializedVersion: 2 + x: 1728 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54e66e4330f43ecd0800000000000000 + internalID: -2530091690461073851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "117_\u4E00\u7EA7\u5C4F\u98CE" + rect: + serializedVersion: 2 + x: 1760 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bbc3cb06db9127ae0800000000000000 + internalID: -1553150620326937413 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "118_\u4E8C\u7EA7\u5C4F\u98CE" + rect: + serializedVersion: 2 + x: 1792 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b1fc6d7be90f44e0800000000000000 + internalID: -1995365202875584071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "119_\u4E09\u7EA7\u5C4F\u98CE" + rect: + serializedVersion: 2 + x: 1824 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7803cbdad9a1eea0800000000000000 + internalID: -5845204083895236486 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "11_\u7C89\u5EB7\u8418\u85AA02" + rect: + serializedVersion: 2 + x: 1856 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b949e94757fb9c060800000000000000 + internalID: 6974316009148552347 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "11\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 1888 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37af8142fdd3ffb30800000000000000 + internalID: 4323242195891583603 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "11\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 1920 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc33edec317c23f20800000000000000 + internalID: 3400999556507120587 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "11\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 1952 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7dcf43420eb50030800000000000000 + internalID: 3460380805632609660 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "120_\u56DB\u7EA7\u5C4F\u98CE" + rect: + serializedVersion: 2 + x: 1984 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4766ee64682dcfc30800000000000000 + internalID: 4394618810564241012 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "121_\u4E94\u7EA7\u5C4F\u98CE" + rect: + serializedVersion: 2 + x: 2016 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8abf688aebfa75140800000000000000 + internalID: 4708425168845208488 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "122_\u516D\u7EA7\u5C4F\u98CE" + rect: + serializedVersion: 2 + x: 2048 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc1b0971d765d7660800000000000000 + internalID: 7385154059223740877 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "123_\u4E03\u7EA7\u5C4F\u98CE" + rect: + serializedVersion: 2 + x: 2080 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6645e9694b1b7400800000000000000 + internalID: 322881800410318446 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "124_\u516B\u7EA7\u5C4F\u98CE" + rect: + serializedVersion: 2 + x: 2112 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f35caaca60a509f0800000000000000 + internalID: -502819402854673419 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "125_\u5927\u7EFF\u53F6\u76C6\u666F" + rect: + serializedVersion: 2 + x: 2144 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 151ce49b3657c6f90800000000000000 + internalID: -6959058253023100591 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "126_\u53CC\u53F6\u5927\u76C6\u666F" + rect: + serializedVersion: 2 + x: 2176 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e25870f455e24b90800000000000000 + internalID: -7258987496393387293 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "127_\u5251\u5170\u76C6\u666F" + rect: + serializedVersion: 2 + x: 2208 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be3c773480f2ca280800000000000000 + internalID: -9030791440246520853 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "128_\u91D1\u6843\u76C6\u666F" + rect: + serializedVersion: 2 + x: 2240 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55077369126be9610800000000000000 + internalID: 1629940370525089877 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "129_\u5C0F\u8349\u76C6\u666F" + rect: + serializedVersion: 2 + x: 2272 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8c86c334f945fd30800000000000000 + internalID: 4464555918797212813 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "12_\u7D2B\u7275\u725B" + rect: + serializedVersion: 2 + x: 2304 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 794f4d3429ef1ad50800000000000000 + internalID: 6746953620934423703 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "12\u5E74\u5973\u793C\u670D\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2336 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dddc048eb8cc64ac0800000000000000 + internalID: -3871181928409281059 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "12\u5E74\u5973\u793C\u670D\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2368 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba77e07e0f990b5f0800000000000000 + internalID: -742924678568446037 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "12\u5E74\u5973\u793C\u670D\u624B\u5957" + rect: + serializedVersion: 2 + x: 2400 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c07f3d4c2b2fc34b0800000000000000 + internalID: -5459221798659557620 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "12\u5E74\u5973\u793C\u670D\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2432 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67734b3a42b070ae0800000000000000 + internalID: -1583284492004214922 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "12\u5E74\u7537\u793C\u670D\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2464 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71e59fa494357b120800000000000000 + internalID: 2429502098245246487 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "12\u5E74\u7537\u793C\u670D\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2496 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5512e5a19e333690800000000000000 + internalID: -7623680948933880484 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "12\u5E74\u7537\u793C\u670D\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2528 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a6a711a90f94c840800000000000000 + internalID: 5243490729872303780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "12\u5E74\u7537\u793C\u670D\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2560 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d16a61681acb60330800000000000000 + internalID: 3676833547719976477 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "12\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 2592 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d61c4bff703feee0800000000000000 + internalID: -1229710847013808423 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "12\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 2624 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3cbb094852aa9660800000000000000 + internalID: 7393400238348418107 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "12\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 2656 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e518927e3836a4a0800000000000000 + internalID: -6582511964493703703 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "130_\u84B2\u56E2\u8349\u76C6\u666F" + rect: + serializedVersion: 2 + x: 2688 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69c4a9e03e4933070800000000000000 + internalID: 8084969458983652502 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "131_\u4E00\u7EA7\u724C\u533E" + rect: + serializedVersion: 2 + x: 2720 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 952c8d6df42b8c2e0800000000000000 + internalID: -2105236769819016615 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "132_\u4E8C\u7EA7\u724C\u533E" + rect: + serializedVersion: 2 + x: 2752 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c0db8d9d911b6680800000000000000 + internalID: -8760889281468444472 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "133_\u4E09\u7EA7\u724C\u533E" + rect: + serializedVersion: 2 + x: 2784 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e784785750ce1d20800000000000000 + internalID: 3251247462386796517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "134_\u56DB\u7EA7\u724C\u533E" + rect: + serializedVersion: 2 + x: 2816 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ab74e771551093a0800000000000000 + internalID: -6660800409232966752 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "135_\u65B9\u82B1\u67B6" + rect: + serializedVersion: 2 + x: 2848 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 167ba5f639fdbb160800000000000000 + internalID: 7042468266645305185 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "136_\u5706\u82B1\u67B6" + rect: + serializedVersion: 2 + x: 2880 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 229518db769183650800000000000000 + internalID: 6212743619309295906 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "137_\u4E00\u7EA7\u5047\u7A97" + rect: + serializedVersion: 2 + x: 2912 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b033a7bd7d889220800000000000000 + internalID: 2492897964840923319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "138_\u4E8C\u7EA7\u5047\u7A97" + rect: + serializedVersion: 2 + x: 2944 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1986d46ed0341b540800000000000000 + internalID: 5021868786472282257 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "139_\u4E09\u7EA7\u5047\u7A97" + rect: + serializedVersion: 2 + x: 2976 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c78d581028a697ed0800000000000000 + internalID: -2415782618503718788 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "13\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 3008 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9a84755a7db89e3e0800000000000000 + internalID: -2023932799218136919 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "13\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 3040 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a576aad851633430800000000000000 + internalID: 3761457148037854630 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "13\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 3072 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a6826660c3c15f60800000000000000 + internalID: 8021407642442434208 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "140_\u53E4\u8463\u82B1\u74F6" + rect: + serializedVersion: 2 + x: 3104 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2e9537c0009c0690800000000000000 + internalID: -7634568935283253717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "141_\u4ED9\u754C\u5927\u53F6\u8349\u5730" + rect: + serializedVersion: 2 + x: 3136 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8098c8825f7d9aef0800000000000000 + internalID: -96308469064496888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "141_\u8C6A\u534E\u5EA7\u6905" + rect: + serializedVersion: 2 + x: 3168 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a654301ef1da75f0800000000000000 + internalID: -758062698134743386 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "142_\u4ED9\u754C\u65B0\u9053\u8DEF" + rect: + serializedVersion: 2 + x: 3200 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 368714f089a90ba60800000000000000 + internalID: 7687814541803092067 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "142_\u679C\u76D8" + rect: + serializedVersion: 2 + x: 3232 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c3062abc6e4ec090800000000000000 + internalID: -8012380458159045692 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "143_\u4E00\u7EA7\u67DC\u5B50" + rect: + serializedVersion: 2 + x: 3264 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92377b3727eb3e2a0800000000000000 + internalID: -6709309621074955479 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "144_\u4E8C\u7EA7\u67DC\u5B50" + rect: + serializedVersion: 2 + x: 3296 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3bc41dc0d73f408b0800000000000000 + internalID: -5186753152412463949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "145_\u4E09\u7EA7\u67DC\u5B50" + rect: + serializedVersion: 2 + x: 3328 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ceb8b9a52af30c20800000000000000 + internalID: 3171653602267152070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "146_\u56DB\u7EA7\u67DC\u5B50" + rect: + serializedVersion: 2 + x: 3360 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b44bbb2b6b55e9a0800000000000000 + internalID: -6204452395779668813 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "147_\u53E4\u7434" + rect: + serializedVersion: 2 + x: 3392 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 93bb95bfd6c252780800000000000000 + internalID: -8708505453570966727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "148_\u9AD8\u7EA7\u68B3\u5986\u53F0" + rect: + serializedVersion: 2 + x: 3424 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6dd78f104e21f96a0800000000000000 + internalID: -6440408171621614122 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "149_\u53E4\u8463\u9AD8\u82B1\u74F6" + rect: + serializedVersion: 2 + x: 3456 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d077c5e12f7d09e0800000000000000 + internalID: -1653525704609402671 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "149_\u6742\u77F3" + rect: + serializedVersion: 2 + x: 3488 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4d6cc30bdeacfab0800000000000000 + internalID: -4972907632839070387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14_\u4FC4\u56FD\u6A44\u6984" + rect: + serializedVersion: 2 + x: 3520 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ad9903610f7e43c0800000000000000 + internalID: -4373418544196903519 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14_\u82A6\u82C7" + rect: + serializedVersion: 2 + x: 3552 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 210f7da1ebfc02f00800000000000000 + internalID: 1090099525224755218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14\u5723\u8BDE\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3584 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51ab2078aa47993c0800000000000000 + internalID: -4352319289118508523 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14\u5723\u8BDE\u5973\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3616 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 462338ff44ead70a0800000000000000 + internalID: -6882153044184452508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14\u5723\u8BDE\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3648 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7d6144298b3bfa60800000000000000 + internalID: 7708820647379561855 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14\u5723\u8BDE\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3680 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0675baac5d934860800000000000000 + internalID: 7513021624710690317 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14\u5723\u8BDE\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3712 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d1b4577d12b31600800000000000000 + internalID: 437889428410905044 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14\u5723\u8BDE\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3744 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4826a27fcf3ec5c00800000000000000 + internalID: 890837501930529412 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14\u5723\u8BDE\u7537\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3776 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86da8ee61140553f0800000000000000 + internalID: -912818876550959768 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14\u5723\u8BDE\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3808 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e419c0c57fada9160800000000000000 + internalID: 7033174524028555598 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14\u5723\u8BDE\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3840 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 747749e6e5194f7f0800000000000000 + internalID: -579678617255774393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14\u5723\u8BDE\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3872 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: faa5606c6af3dab10800000000000000 + internalID: 1994320195514423983 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 3904 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b6156fbd545df370800000000000000 + internalID: 8357929245089273529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 3936 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a4d626c4137f1350800000000000000 + internalID: 5989632562487022760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "14\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 3968 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aac7e47023320ab50800000000000000 + internalID: 6602315751503068330 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "150_\u4E00\u7EA7\u5E8A" + rect: + serializedVersion: 2 + x: 4000 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22c71b3e747455760800000000000000 + internalID: 7445935933015292962 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "150_\u6C99\u6EE901" + rect: + serializedVersion: 2 + x: 4032 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a04c9d3413b74dd0800000000000000 + internalID: -2501834168466653016 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "151_\u4E8C\u7EA7\u5E8A" + rect: + serializedVersion: 2 + x: 4064 + y: 4064 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c30c1475efdabd10800000000000000 + internalID: 2142270749356590025 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "152_\u4E09\u7EA7\u5E8A" + rect: + serializedVersion: 2 + x: 0 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b941e23162e5f2a40800000000000000 + internalID: 5345594800335623323 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "152_\u6C99\u6EE9\u8D1D\u58F3" + rect: + serializedVersion: 2 + x: 32 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f823af4fd70bf0f20800000000000000 + internalID: 3391123099460711055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "153_\u56DB\u7EA7\u5E8A" + rect: + serializedVersion: 2 + x: 64 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4839651162b2a0380800000000000000 + internalID: -9004337062474247292 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "154_\u4F4E\u7EA7\u68B3\u5986\u53F0" + rect: + serializedVersion: 2 + x: 96 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba3374fe62091b590800000000000000 + internalID: -7660182994282925141 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "155_\u4E00\u7EA7\u5BF9\u8054\u5DE6\u8054" + rect: + serializedVersion: 2 + x: 128 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf18c8e857d2973b0800000000000000 + internalID: -5514326285812465156 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "155_\u6C99\u6F2003" + rect: + serializedVersion: 2 + x: 160 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7730f037ccf5e03d0800000000000000 + internalID: -3238545750324477065 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "156_\u4E00\u7EA7\u5BF9\u8054\u53F3\u8054" + rect: + serializedVersion: 2 + x: 192 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f070dad4015b0850800000000000000 + internalID: 6344253581374288119 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "157_\u4E8C\u7EA7\u5BF9\u8054\u5DE6\u8054" + rect: + serializedVersion: 2 + x: 224 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a08f7fb3ffa43280800000000000000 + internalID: -9064426688565247834 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "158_\u4E8C\u7EA7\u5BF9\u8054\u53F3\u8054" + rect: + serializedVersion: 2 + x: 256 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6bcba4e1870c8fcf0800000000000000 + internalID: -218212959790646090 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "159_\u4E09\u7EA7\u5BF9\u8054\u5DE6\u8054" + rect: + serializedVersion: 2 + x: 288 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc58934eecc860560800000000000000 + internalID: 7279660667911112143 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15_\u7EFF\u8272\u82F1\u56FD\u50CF\u6811" + rect: + serializedVersion: 2 + x: 320 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 220b4b7029bc173f0800000000000000 + internalID: -904718222069813214 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5355\u5200" + rect: + serializedVersion: 2 + x: 352 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 428dcc049eb0ba640800000000000000 + internalID: 5092176900114929700 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5355\u5251" + rect: + serializedVersion: 2 + x: 384 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b82297897cae129e0800000000000000 + internalID: -1647777845663423861 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u53CC\u624B\u65A7" + rect: + serializedVersion: 2 + x: 416 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1baf9b410645cc7b0800000000000000 + internalID: -5202690697878439247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5973\u6CD5\u6CE1\u6CD5\u8155" + rect: + serializedVersion: 2 + x: 448 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91768c2e84d76e400800000000000000 + internalID: 353107372791064345 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5973\u6CD5\u6CE1\u6CD5\u978B" + rect: + serializedVersion: 2 + x: 480 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9063118eabea4a70800000000000000 + internalID: 8812114755626164383 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5973\u6CD5\u888D\u6CD5\u8863" + rect: + serializedVersion: 2 + x: 512 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aea5959302a644f00800000000000000 + internalID: 1100120895618898666 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5973\u6CD5\u888D\u6CD5\u88E4" + rect: + serializedVersion: 2 + x: 544 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c0e6331029821790800000000000000 + internalID: -7560830053547319104 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5973\u8F7B\u7532\u624B\u8155" + rect: + serializedVersion: 2 + x: 576 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03e4c30adabc35890800000000000000 + internalID: -7470403410299433424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5973\u8F7B\u7532\u8863\u670D" + rect: + serializedVersion: 2 + x: 608 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b7bb589ffbf25690800000000000000 + internalID: -7614746944738707527 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5973\u8F7B\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 640 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a5fc5116fedd4cf0800000000000000 + internalID: -266311654510365277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5973\u8F7B\u7532\u978B" + rect: + serializedVersion: 2 + x: 672 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 931e73560b998bf20800000000000000 + internalID: 3438667298388828473 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5973\u91CD\u7532\u624B\u8155" + rect: + serializedVersion: 2 + x: 704 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b59181647efad600800000000000000 + internalID: 493986884956034489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5973\u91CD\u7532\u8863\u670D" + rect: + serializedVersion: 2 + x: 736 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40bfd385e82ea7bc0800000000000000 + internalID: -3784463435857790204 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5973\u91CD\u7532\u8863\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 768 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2dc0ef075342f810800000000000000 + internalID: 1797573242481855790 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5973\u91CD\u7532\u978B" + rect: + serializedVersion: 2 + x: 800 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 745bd66a88bb82db0800000000000000 + internalID: -4816393605890591417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u5F13" + rect: + serializedVersion: 2 + x: 832 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 826464fd2974d3980800000000000000 + internalID: -8557605020797352408 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 864 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c9e8eb2188222170800000000000000 + internalID: 8152122810746595782 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u62F3\u5957" + rect: + serializedVersion: 2 + x: 896 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61616ca8a3f4651e0800000000000000 + internalID: -2209491454323714538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u6CD5\u4ED7" + rect: + serializedVersion: 2 + x: 928 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cdba55fa5424b8000800000000000000 + internalID: 39197888824585180 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u6CD5\u5251" + rect: + serializedVersion: 2 + x: 960 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c356144f57c79c1b0800000000000000 + internalID: -5635836612626520772 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u6CD5\u5668" + rect: + serializedVersion: 2 + x: 992 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22f1c9d4258c89aa0800000000000000 + internalID: -6153948634986832094 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u6CD5\u62121" + rect: + serializedVersion: 2 + x: 1024 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a108cee86f7c87100800000000000000 + internalID: 106054453016952858 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u6CD5\u62122" + rect: + serializedVersion: 2 + x: 1056 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 548330a62f7e16040800000000000000 + internalID: 4639244119515019333 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u6CD5\u8170" + rect: + serializedVersion: 2 + x: 1088 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a77d840f9989231d0800000000000000 + internalID: -3372465384018356358 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u6CD5\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1120 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8cabda78654af390800000000000000 + internalID: -7783832690916348787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u722A" + rect: + serializedVersion: 2 + x: 1152 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92f01050135e55c40800000000000000 + internalID: 5500554518603042601 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7269\u62121" + rect: + serializedVersion: 2 + x: 1184 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83d59c771fc3b5370800000000000000 + internalID: 8312304545036852536 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7269\u62122" + rect: + serializedVersion: 2 + x: 1216 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4978a1ca090269320800000000000000 + internalID: 2564272843568875412 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7269\u8170" + rect: + serializedVersion: 2 + x: 1248 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd8d56e5b7b82f0b0800000000000000 + internalID: -5696337216689284899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7269\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1280 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bda925b2b1c362b90800000000000000 + internalID: -7267054861327099173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7537\u6CD5\u888D\u6CD5\u8155" + rect: + serializedVersion: 2 + x: 1312 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1e7883154626ab70800000000000000 + internalID: 8909850990921416221 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7537\u6CD5\u888D\u6CD5\u8863" + rect: + serializedVersion: 2 + x: 1344 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5897a54e3319553b0800000000000000 + internalID: -5524349715839551099 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7537\u6CD5\u888D\u6CD5\u88E4" + rect: + serializedVersion: 2 + x: 1376 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1eed8627e522793f0800000000000000 + internalID: -894208211968008479 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7537\u6CD5\u888D\u6CD5\u978B" + rect: + serializedVersion: 2 + x: 1408 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4c07ddc2ef265940800000000000000 + internalID: 5284463863928392781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7537\u8F7B\u7532\u624B\u8155" + rect: + serializedVersion: 2 + x: 1440 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07c1ac21a8d88d3f0800000000000000 + internalID: -875794503363322768 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7537\u8F7B\u7532\u8863\u670D" + rect: + serializedVersion: 2 + x: 1472 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 926e0a9879752bf80800000000000000 + internalID: -8092309272070658519 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7537\u8F7B\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1504 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 387f747be6240b790800000000000000 + internalID: -7516434734792575101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7537\u8F7B\u7532\u978B" + rect: + serializedVersion: 2 + x: 1536 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ccf8e0d56847ae3e0800000000000000 + internalID: -2023676962113941556 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7537\u91CD\u7532\u624B\u8155" + rect: + serializedVersion: 2 + x: 1568 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab8ba8abf3127adc0800000000000000 + internalID: -3627894417227335494 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7537\u91CD\u7532\u8863\u670D" + rect: + serializedVersion: 2 + x: 1600 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f524d9d5d5465760800000000000000 + internalID: 7446215818688603637 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7537\u91CD\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1632 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03c845973ad0a3b50800000000000000 + internalID: 6573581601867074608 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u7537\u91CD\u7532\u978B" + rect: + serializedVersion: 2 + x: 1664 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5cdcdb28eb14bf8e0800000000000000 + internalID: -1658659751262827067 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u957F\u67AA" + rect: + serializedVersion: 2 + x: 1696 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1be4a81924faeeaa0800000000000000 + internalID: -6129769342360203599 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u957F\u9524" + rect: + serializedVersion: 2 + x: 1728 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4231a0a884baa98f0800000000000000 + internalID: -532925277848071388 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u95EA\u8170" + rect: + serializedVersion: 2 + x: 1760 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0473d7abfebd7610800000000000000 + internalID: 1620661428984968207 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u54C1\u95EA\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1792 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1da41a7d460d5b2d0800000000000000 + internalID: -3263473223427077423 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u5723\u8BDE\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1824 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d115c1bbf3bba0c60800000000000000 + internalID: 7785240788259852573 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u5723\u8BDE\u88C5\u5973\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1856 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1efe5208049cc36e0800000000000000 + internalID: -1856387667518427167 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u5723\u8BDE\u88C5\u5973\u8863\u670D" + rect: + serializedVersion: 2 + x: 1888 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a5aaccd3f5d75920800000000000000 + internalID: 2979084921886909861 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u5723\u8BDE\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1920 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d05f080e6b731e710800000000000000 + internalID: 1720717791222363405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u5723\u8BDE\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1952 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f30a06ace647c15f0800000000000000 + internalID: -784624215878754241 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u5723\u8BDE\u88C5\u7537\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 1984 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54b691d35183be680800000000000000 + internalID: -8724818189229659323 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u5723\u8BDE\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2016 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 168ed276035bf3020800000000000000 + internalID: 2323775152240584801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u5723\u8BDE\u88C5\u7537\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2048 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae791bb205409e250800000000000000 + internalID: 5974311123060627434 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u5723\u8BDE\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2080 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c0fd26308573e7f0800000000000000 + internalID: -584494333102788414 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u5E74\u8774\u8776\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2112 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e42598d300f41e8b0800000000000000 + internalID: -5124728038519909810 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u5E74\u8774\u8776\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2144 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 961592b8991755920800000000000000 + internalID: 2978411632854126953 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u5E74\u8774\u8776\u5973\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2176 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9cb2012ae59a93400800000000000000 + internalID: 304460673735207881 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u5E74\u8774\u8776\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2208 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 661301f3a9f156660800000000000000 + internalID: 7378338311859876198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u65B0\u5E74\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2240 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be1168f80f3259810800000000000000 + internalID: 1771361544547209707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u65B0\u5E74\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2272 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d7f70bb53ebd0110800000000000000 + internalID: 1228847411322419156 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u65B0\u5E74\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2304 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d214e700b39ac310800000000000000 + internalID: 1426114616272098004 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u65B0\u5E74\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2336 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a61280f5caefb1f10800000000000000 + internalID: 2241665255829152106 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 2368 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 492c538f8c79cf8c0800000000000000 + internalID: -3964126682579352940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 2400 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57a7def6ca81682c0800000000000000 + internalID: -4429826054581028235 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "15\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 2432 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dfc63d06e7cd9bf10800000000000000 + internalID: 2286100721215696125 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "160_\u4E09\u7EA7\u5BF9\u8054\u53F3\u8054" + rect: + serializedVersion: 2 + x: 2464 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f731ff6989b799a0800000000000000 + internalID: -6226303959876683784 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "161_\u56DB\u7EA7\u5BF9\u8054\u5DE6\u8054" + rect: + serializedVersion: 2 + x: 2496 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2430381d106587e0800000000000000 + internalID: -1763898000969550802 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "161_\u6E7F\u571F\u6742\u8349" + rect: + serializedVersion: 2 + x: 2528 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44b9294e75974db00800000000000000 + internalID: 852439647883795268 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "162_\u56DB\u7EA7\u5BF9\u8054\u53F3\u8054" + rect: + serializedVersion: 2 + x: 2560 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b197d779e3a76a1b0800000000000000 + internalID: -5645690673614194405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "163_\u4E00\u7EA7\u5730\u6BEF" + rect: + serializedVersion: 2 + x: 2592 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f6d24dfd9e1beeb90800000000000000 + internalID: -7210630335332864657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "164_\u4E8C\u7EA7\u5730\u6BEF" + rect: + serializedVersion: 2 + x: 2624 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0b21f071285caed0800000000000000 + internalID: -2401447600643298549 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "165_\u4E09\u7EA7\u5730\u6BEF" + rect: + serializedVersion: 2 + x: 2656 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 241a03833fc51a7e0800000000000000 + internalID: -1756020180008263358 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "166_\u56DB\u7EA7\u5730\u6BEF" + rect: + serializedVersion: 2 + x: 2688 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: adb8e0a86a36599c0800000000000000 + internalID: -3921118333624218662 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "167_\u4E94\u7EA7\u5730\u6BEF" + rect: + serializedVersion: 2 + x: 2720 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67608b850391ae390800000000000000 + internalID: -7788384910146271626 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "168_\u516D\u7EA7\u5730\u6BEF" + rect: + serializedVersion: 2 + x: 2752 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe61fd4925f1444d0800000000000000 + internalID: -3151359399707076881 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "169_\u4E03\u7EA7\u5730\u6BEF" + rect: + serializedVersion: 2 + x: 2784 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b7639e6417e3aa10800000000000000 + internalID: 1919631941130479544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "16_\u5939\u6742\u788E\u77F301" + rect: + serializedVersion: 2 + x: 2816 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59286d2071454be20800000000000000 + internalID: 3365407279361196693 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "16\u54C1\u5355\u5200" + rect: + serializedVersion: 2 + x: 2848 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c89edab31f2825210800000000000000 + internalID: 1320261613372959116 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "16\u54C1\u5355\u5251" + rect: + serializedVersion: 2 + x: 2880 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78b6683c19ff281e0800000000000000 + internalID: -2196912666687673465 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "16\u54C1\u53CC\u65A7" + rect: + serializedVersion: 2 + x: 2912 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a3e6ad31dcc0cf60800000000000000 + internalID: 8052661332793025444 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "16\u54C1\u5F13" + rect: + serializedVersion: 2 + x: 2944 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c5d6b40727da4780800000000000000 + internalID: -8697903167729904185 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "16\u54C1\u62F3\u5957" + rect: + serializedVersion: 2 + x: 2976 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0165f646bf3f0b960800000000000000 + internalID: 7615855230930867728 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "16\u54C1\u6CD5\u5251" + rect: + serializedVersion: 2 + x: 3008 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6684252c0bf8064d0800000000000000 + internalID: -3143354550567417754 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "16\u54C1\u6CD5\u5668" + rect: + serializedVersion: 2 + x: 3040 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b554da07508a8d30800000000000000 + internalID: 4434497894431872440 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "16\u54C1\u6CD5\u6756" + rect: + serializedVersion: 2 + x: 3072 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14b40edd27da23430800000000000000 + internalID: 3761259347668126529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "16\u54C1\u722A" + rect: + serializedVersion: 2 + x: 3104 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c233cf2b6f313dee0800000000000000 + internalID: -1237623522310999252 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "16\u54C1\u957F\u67AA" + rect: + serializedVersion: 2 + x: 3136 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc6e4ebb6774fa160800000000000000 + internalID: 7038923317887428300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "16\u54C1\u957F\u9524" + rect: + serializedVersion: 2 + x: 3168 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9eba9166df582160800000000000000 + internalID: 7000950995112607391 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "170_\u516B\u7EA7\u5730\u6BEF" + rect: + serializedVersion: 2 + x: 3200 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f0d885b99a0daa70800000000000000 + internalID: 8839733298890068208 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17173\u5C0F\u7AE0\u9C7C" + rect: + serializedVersion: 2 + x: 3232 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e4932a5faf844160800000000000000 + internalID: 7008884903389664485 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "171_\u4E5D\u7EA7\u5730\u6BEF" + rect: + serializedVersion: 2 + x: 3264 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1efbcda0d9fa3960800000000000000 + internalID: 7582647597295992351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "172_\u5341\u7EA7\u5730\u6BEF" + rect: + serializedVersion: 2 + x: 3296 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c4f0cc8422f76660800000000000000 + internalID: 7379132753264047298 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "173_\u4E00\u7EA7\u706F" + rect: + serializedVersion: 2 + x: 3328 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5940194cddea5d000800000000000000 + internalID: 60146437548213397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "174_\u4E8C\u7EA7\u706F" + rect: + serializedVersion: 2 + x: 3360 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16240b14b40e31630800000000000000 + internalID: 3896704716434850401 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "175_\u4E09\u7EA7\u706F" + rect: + serializedVersion: 2 + x: 3392 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4afdd1b3e1efe4d20800000000000000 + internalID: 3264826185684475812 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "176_\u56DB\u7EA7\u706F" + rect: + serializedVersion: 2 + x: 3424 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23f1b73a756587710800000000000000 + internalID: 1691196594482519858 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "177_\u4E94\u7EA7\u706F" + rect: + serializedVersion: 2 + x: 3456 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a36fd23eeaa186d0800000000000000 + internalID: -2989920737564859486 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "178_\u77F3\u677F\u8DEF" + rect: + serializedVersion: 2 + x: 3488 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1de9a6cfdce3334e0800000000000000 + internalID: -2003188354825675055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "178_\u8336\u76D8" + rect: + serializedVersion: 2 + x: 3520 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c41f1927915a83e40800000000000000 + internalID: 5636436462369108300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "179_1\u7EA7\u5EFA\u7B51" + rect: + serializedVersion: 2 + x: 3552 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21958cd98f68256c0800000000000000 + internalID: -4156111103752382190 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "179_\u788E\u77F3\u6DF7\u5408\u8349\u5730" + rect: + serializedVersion: 2 + x: 3584 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e14a685a6ca6d690800000000000000 + internalID: -7577679750254411292 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u5355\u5200" + rect: + serializedVersion: 2 + x: 3616 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56da5e37ab1345ae0800000000000000 + internalID: -1561568493912609435 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u5355\u5251" + rect: + serializedVersion: 2 + x: 3648 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 888799642364e0850800000000000000 + internalID: 6345086106758379656 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u53CC\u5200" + rect: + serializedVersion: 2 + x: 3680 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2be322cbf145bb50800000000000000 + internalID: 6608260577785801518 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u53CC\u5251" + rect: + serializedVersion: 2 + x: 3712 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ca25b1e14d65a9f0800000000000000 + internalID: -457839657381188921 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u53CC\u65A7" + rect: + serializedVersion: 2 + x: 3744 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e16c5bf43f24b88d0800000000000000 + internalID: -2843105126972537314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u5F13" + rect: + serializedVersion: 2 + x: 3776 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a81317b5bd30a2ef0800000000000000 + internalID: -132288998387142262 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u5F29" + rect: + serializedVersion: 2 + x: 3808 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d28dbbb403114b70800000000000000 + internalID: 8881400851201884880 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u5F39\u5F13" + rect: + serializedVersion: 2 + x: 3840 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 15694b02fea80f1f0800000000000000 + internalID: -1013157156507838895 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u62F3\u5957" + rect: + serializedVersion: 2 + x: 3872 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9290745a3ab4e29b0800000000000000 + internalID: -5103058161539544791 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u6CD5\u4E08" + rect: + serializedVersion: 2 + x: 3904 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ddf914795162de20800000000000000 + internalID: 3373866107681766864 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u6CD5\u5251" + rect: + serializedVersion: 2 + x: 3936 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16579039d199c6890800000000000000 + internalID: -7463422130159782559 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u6CD5\u5668" + rect: + serializedVersion: 2 + x: 3968 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bf247172c81e6ec0800000000000000 + internalID: -3571890231052062798 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u6CD5\u672F\u6212\u6307" + rect: + serializedVersion: 2 + x: 4000 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f796ad8e6b66e49b0800000000000000 + internalID: -5094021192732743297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u6CD5\u672F\u8170\u9970" + rect: + serializedVersion: 2 + x: 4032 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ad75673b62aa3260800000000000000 + internalID: 7078148345740754338 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u6CD5\u672F\u9879\u94FE" + rect: + serializedVersion: 2 + x: 4064 + y: 4032 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0a29299b88826740800000000000000 + internalID: 5143823857561971213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u6CD5\u7403" + rect: + serializedVersion: 2 + x: 0 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c3c67219255259c0800000000000000 + internalID: -3939993089103969336 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u6CD5\u888D\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 32 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 15f3b5d07b8394660800000000000000 + internalID: 7370484624022781777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u6CD5\u888D\u5934\u76D4" + rect: + serializedVersion: 2 + x: 64 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3c5540f2579b3c70800000000000000 + internalID: 8951915066803182652 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u6CD5\u888D\u62A4\u8155" + rect: + serializedVersion: 2 + x: 96 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5001ae60cb7ccde0800000000000000 + internalID: -1311537325051674532 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u6CD5\u888D\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 128 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3faef38fa3d9380e0800000000000000 + internalID: -2268796910665995533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u6CD5\u888D\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 160 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bde4dd99d6c1785b0800000000000000 + internalID: -5366289173930225957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u6CD5\u888D\u978B\u5B50" + rect: + serializedVersion: 2 + x: 192 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75838bffee3b71cc0800000000000000 + internalID: -3740323126434056105 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u7075\u5DE7\u8170\u9970" + rect: + serializedVersion: 2 + x: 224 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8677ad12f61116630800000000000000 + internalID: 3918432319796049768 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u7075\u5DE7\u9879\u94FE" + rect: + serializedVersion: 2 + x: 256 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc82ab7bdb950d2f0800000000000000 + internalID: -950160850009052980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u7269\u7406\u6212\u6307" + rect: + serializedVersion: 2 + x: 288 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 554fd5ace4372bcc0800000000000000 + internalID: -3696765561877957547 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u7269\u7406\u8170\u9970" + rect: + serializedVersion: 2 + x: 320 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb42a5caab4d3f8f0800000000000000 + internalID: -507828434742139713 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u7269\u7406\u9879\u94FE" + rect: + serializedVersion: 2 + x: 352 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2eded56b17b7e5d0800000000000000 + internalID: -3033254495709635030 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u77ED\u5203" + rect: + serializedVersion: 2 + x: 384 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2ec0ec5ab1f60130800000000000000 + internalID: 3532776740443180588 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u77ED\u6756" + rect: + serializedVersion: 2 + x: 416 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4c0f9be170bcc130800000000000000 + internalID: 3588437006438304844 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u77ED\u9524" + rect: + serializedVersion: 2 + x: 448 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5bd08ac6b9432ef30800000000000000 + internalID: 4603299611273596341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u8F7B\u7532\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 480 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1611834cd734caec0800000000000000 + internalID: -3554391798460182175 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u8F7B\u7532\u5934\u76D4" + rect: + serializedVersion: 2 + x: 512 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8475fc744b9fed00800000000000000 + internalID: 1004191960383452303 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u8F7B\u7532\u62A4\u8155" + rect: + serializedVersion: 2 + x: 544 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 93bec10b3ac50a610800000000000000 + internalID: 1630404923212229433 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u8F7B\u7532\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 576 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 302bbc9e5091176d0800000000000000 + internalID: -2994584764036697597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u8F7B\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 608 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bee9c0ae67b583d40800000000000000 + internalID: 5564297905907212011 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u8F7B\u7532\u978B\u5B50" + rect: + serializedVersion: 2 + x: 640 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d0eb096dab13fca0800000000000000 + internalID: -5984409048239578920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u91CD\u7532\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 672 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0654d4be1e257b9f0800000000000000 + internalID: -452802107258616480 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u91CD\u7532\u5934\u76D4" + rect: + serializedVersion: 2 + x: 704 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6811775f737a5910800000000000000 + internalID: 1826899589617227882 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u91CD\u7532\u62A4\u8155" + rect: + serializedVersion: 2 + x: 736 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60a5b6f12916d4440800000000000000 + internalID: 4921697248006068742 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u91CD\u7532\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 768 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61edf2be7c2353a50800000000000000 + internalID: 6500157471404842518 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u91CD\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 800 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb1aef6a9e0d32090800000000000000 + internalID: -8060369206115393093 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u91CD\u7532\u978B\u5B50" + rect: + serializedVersion: 2 + x: 832 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12a5679d0f6b6b6e0800000000000000 + internalID: -1822067853667968479 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u94BA" + rect: + serializedVersion: 2 + x: 864 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e218e60ac7defb80800000000000000 + internalID: -8359006595653823773 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u957F\u5200" + rect: + serializedVersion: 2 + x: 896 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe77159cc872a07e0800000000000000 + internalID: -1798581615554627601 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u957F\u65A7" + rect: + serializedVersion: 2 + x: 928 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4db6ae02875b661b0800000000000000 + internalID: -5663639953818883116 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u957F\u67AA" + rect: + serializedVersion: 2 + x: 960 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eef1ebb80ef3e10e0800000000000000 + internalID: -2297328526262657042 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "17\u54C1\u957F\u9524" + rect: + serializedVersion: 2 + x: 992 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16038e38fc13f9e20800000000000000 + internalID: 3359458614382702689 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "180_\u4E00\u7EA7\u5EFA\u7B51\u5927\u7CAE\u4ED3" + rect: + serializedVersion: 2 + x: 1024 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 891cb3a051badeaf0800000000000000 + internalID: -365447887892790888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "181_\u4E00\u7EA7\u5EFA\u7B51\u5C0F\u7CAE\u4ED3" + rect: + serializedVersion: 2 + x: 1056 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c339c60d390c61f0800000000000000 + internalID: -1050454455372663869 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "182_\u4E00\u7EA7\u5EFA\u7B51\u9A6C\u8F66" + rect: + serializedVersion: 2 + x: 1088 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9be9ebeb527a97310800000000000000 + internalID: 1403336539458412217 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "183_\u4E00\u7EA7\u5EFA\u7B51\u667E\u8863\u67B6" + rect: + serializedVersion: 2 + x: 1120 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bca1dc3b7d9d1bc00800000000000000 + internalID: 914751719790680779 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "184_\u4E00\u7EA7\u5EFA\u7B51\u7B38\u7BA9" + rect: + serializedVersion: 2 + x: 1152 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5dacf534e9eca09e0800000000000000 + internalID: -1654282733974730027 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "185_\u4E00\u7EA7\u5EFA\u7B51\u78E8\u76D8" + rect: + serializedVersion: 2 + x: 1184 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54037f5fa63a3a820800000000000000 + internalID: 2928363862509432901 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "186_\u4E00\u7EA7\u5EFA\u7B51\u6C34\u4E95" + rect: + serializedVersion: 2 + x: 1216 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9f758e74cae5a630800000000000000 + internalID: 3937811578862534554 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "187_4\u7EA7\u5EFA\u7B51" + rect: + serializedVersion: 2 + x: 1248 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 100358338225dccd0800000000000000 + internalID: -2536280682523185151 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "188_3\u7EA7\u5EFA\u7B51" + rect: + serializedVersion: 2 + x: 1280 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d3bb3663ad0ae770800000000000000 + internalID: 8640733830509736917 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "188_\u8D1D\u58F3" + rect: + serializedVersion: 2 + x: 1312 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb2164ea123e1e550800000000000000 + internalID: 6188477096781025979 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "189_2\u7EA7\u5EFA\u7B51" + rect: + serializedVersion: 2 + x: 1344 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3274367d2099edc40800000000000000 + internalID: 5539032829194880803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "189_\u8DEF\u8FB9\u77F3\u58C1" + rect: + serializedVersion: 2 + x: 1376 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e427861f2b7208d0800000000000000 + internalID: -2881605369392061209 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18_\u9646\u573003" + rect: + serializedVersion: 2 + x: 1408 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 200e0e1df254c2710800000000000000 + internalID: 1669785633534566402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u5355\u5200" + rect: + serializedVersion: 2 + x: 1440 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d5555d56deeeb6f0800000000000000 + internalID: -666833090347969063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u5355\u5251" + rect: + serializedVersion: 2 + x: 1472 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c954b6fd7dc920900800000000000000 + internalID: 649253747275023772 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u53CC\u5200" + rect: + serializedVersion: 2 + x: 1504 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6aac85e007af9c970800000000000000 + internalID: 8775820708092103334 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u53CC\u5251" + rect: + serializedVersion: 2 + x: 1536 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 049c9a209b752a8b0800000000000000 + internalID: -5142451372378437312 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u53CC\u65A7" + rect: + serializedVersion: 2 + x: 1568 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e589aa84c6bac0a50800000000000000 + internalID: 6488749644697999454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u53CC\u9524" + rect: + serializedVersion: 2 + x: 1600 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02c43fdec0beafd40800000000000000 + internalID: 5619061925862394912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u5F13" + rect: + serializedVersion: 2 + x: 1632 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cfa6f936cb95c0420800000000000000 + internalID: 2597549750746049276 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u5F29" + rect: + serializedVersion: 2 + x: 1664 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e303dcaec1095e750800000000000000 + internalID: 6333626904839270462 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u5F39\u5F13" + rect: + serializedVersion: 2 + x: 1696 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d2adc158144399f80800000000000000 + internalID: -8099384998838347219 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u62F3\u5957" + rect: + serializedVersion: 2 + x: 1728 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8dbb207e395b50770800000000000000 + internalID: 8576460712237513688 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u6CD5\u4ED7" + rect: + serializedVersion: 2 + x: 1760 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d76f8ee6009d36b00800000000000000 + internalID: 820738152995550845 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u6CD5\u5251" + rect: + serializedVersion: 2 + x: 1792 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae1cfc67f97fe8ce0800000000000000 + internalID: -1400910169800457750 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u6CD5\u5668" + rect: + serializedVersion: 2 + x: 1824 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 284960d375f030b70800000000000000 + internalID: 8863945358955680898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u6CD5\u672F\u6212\u6307" + rect: + serializedVersion: 2 + x: 1856 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f6146867af67793c0800000000000000 + internalID: -4352879696727883409 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u6CD5\u672F\u8170\u9970" + rect: + serializedVersion: 2 + x: 1888 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b879dcb3dee8a4ad0800000000000000 + internalID: -2717202275602950261 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u6CD5\u672F\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1920 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2fd55ec9dd72e7170800000000000000 + internalID: 8178017806124932594 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u6CD5\u888D\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1952 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf2f8dc8fd36984b0800000000000000 + internalID: -5437705263281278212 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u6CD5\u888D\u5934\u76D4" + rect: + serializedVersion: 2 + x: 1984 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0c66320cb23c1620800000000000000 + internalID: 2746125655861521419 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u6CD5\u888D\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2016 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08cfef2b47dd17930800000000000000 + internalID: 4139333025819196544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u6CD5\u888D\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 2048 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b30a2d72cc97722e0800000000000000 + internalID: -2150616379297718213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u6CD5\u888D\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2080 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1e2d807bfb8a7a80800000000000000 + internalID: -8468302237275443682 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u6CD5\u888D\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2112 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96959dee2d52bb610800000000000000 + internalID: 1637944477359888745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u7075\u5DE7\u8170\u9970" + rect: + serializedVersion: 2 + x: 2144 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 654a922e460785860800000000000000 + internalID: 7518883156488463446 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u7075\u5DE7\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2176 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10d0310006c9658e0800000000000000 + internalID: -1705003472781112063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u7269\u7406\u6212\u6307" + rect: + serializedVersion: 2 + x: 2208 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a50aefd2fee3ffbd0800000000000000 + internalID: -2594285663352348582 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u7269\u7406\u8170\u9970" + rect: + serializedVersion: 2 + x: 2240 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98386ea0d34812640800000000000000 + internalID: 5053465654597157769 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u7269\u7406\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2272 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1e55d47dc1479960800000000000000 + internalID: 7608622446149983774 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u77ED\u4E08" + rect: + serializedVersion: 2 + x: 2304 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 47352ef3a0229a820800000000000000 + internalID: 2929910459998032756 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u77ED\u5203" + rect: + serializedVersion: 2 + x: 2336 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb0680132dac887d0800000000000000 + internalID: -2915857754607820613 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u8F7B\u7532\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2368 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4cc4f1b5ff812430800000000000000 + internalID: 3756441849619074122 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u8F7B\u7532\u5934\u76D4" + rect: + serializedVersion: 2 + x: 2400 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b76867739da46b2b0800000000000000 + internalID: -5569181592398166405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u8F7B\u7532\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2432 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 228e9357a88950d20800000000000000 + internalID: 3244166827029948450 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u8F7B\u7532\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 2464 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc059d6ab030abae0800000000000000 + internalID: -1532909374587449141 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u8F7B\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2496 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 753991990291c8c90800000000000000 + internalID: -7166325279255063721 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u8F7B\u7532\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2528 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 139e476a770bc89c0800000000000000 + internalID: -3923567147406268111 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u91CD\u7532\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2560 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9428fe0a010444cb0800000000000000 + internalID: -4880705655999069623 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u91CD\u7532\u5934\u76D4" + rect: + serializedVersion: 2 + x: 2592 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1a081845f141cff0800000000000000 + internalID: -17660401800443361 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u91CD\u7532\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2624 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20151d19b813ff7c0800000000000000 + internalID: -4035452265584045822 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u91CD\u7532\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 2656 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8dae600c37fbd420800000000000000 + internalID: 2655988242342391182 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u91CD\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2688 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52e4568918ad37590800000000000000 + internalID: -7677552689594151387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u91CD\u7532\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2720 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f591f08d4d0d59c0800000000000000 + internalID: -3936975872724986381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u94BA" + rect: + serializedVersion: 2 + x: 2752 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60a6ca38ba5e0f7d0800000000000000 + internalID: -2886554836333204986 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u957F\u5200" + rect: + serializedVersion: 2 + x: 2784 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c779c01a20b867d0800000000000000 + internalID: -2924894263260383292 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u957F\u65A7" + rect: + serializedVersion: 2 + x: 2816 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b54ace4ab046a1de0800000000000000 + internalID: -1361665936151763877 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u957F\u67AA" + rect: + serializedVersion: 2 + x: 2848 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 074b843d77b18e9f0800000000000000 + internalID: -439070762208807824 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "18\u54C1\u957F\u9524" + rect: + serializedVersion: 2 + x: 2880 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c804bdf0a35ee0910800000000000000 + internalID: 1805632538159038604 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "190_\u897F\u65B92\u7EA7\u5EFA\u7B51" + rect: + serializedVersion: 2 + x: 2912 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db7f638a2745f64b0800000000000000 + internalID: -5445040573042460739 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "190_\u96E8\u6797\u5C0F\u82B1" + rect: + serializedVersion: 2 + x: 2944 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ccf335819944c9090800000000000000 + internalID: -8026465011552272436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "191_\u6559\u5802" + rect: + serializedVersion: 2 + x: 2976 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10bf332fa0a9be9c0800000000000000 + internalID: -3896851680755188991 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "192_\u96E8\u6797\u77F3\u5934\u8DEF" + rect: + serializedVersion: 2 + x: 3008 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 664061541bee7afb0800000000000000 + internalID: -4636474846218943386 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "193_\u897F\u65B93\u7EA7\u5EFA\u7B51" + rect: + serializedVersion: 2 + x: 3040 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71f06e96db6addb60800000000000000 + internalID: 7772551864367058711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "194_\u897F\u65B9\u516C\u5171\u533A\u957F\u5ECA" + rect: + serializedVersion: 2 + x: 3072 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ebee5576156931350800000000000000 + internalID: 5986293606075723454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "196_\u897F\u65B9\u8DEF\u706F" + rect: + serializedVersion: 2 + x: 3104 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9aedd1b9a3f849d30800000000000000 + internalID: 4437329014740082345 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "196_\u96E8\u6797\u843D\u53F6" + rect: + serializedVersion: 2 + x: 3136 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ffcee755f221ac8d0800000000000000 + internalID: -2825425821714420481 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "199_\u897F\u65B93\u7EA7\u7A97\u5E18" + rect: + serializedVersion: 2 + x: 3168 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef16dba89ce6a1790800000000000000 + internalID: -7558607212692807170 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19_\u5E72\u88C2\u7EB9\u5E72\u9EC4\u571F" + rect: + serializedVersion: 2 + x: 3200 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2de329250f4a09f10800000000000000 + internalID: 2274499163906522834 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19_\u9646\u573004" + rect: + serializedVersion: 2 + x: 3232 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f70f4a0ccb84688e0800000000000000 + internalID: -1691584634507956097 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u5315\u9996" + rect: + serializedVersion: 2 + x: 3264 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32636610e217d7a80800000000000000 + internalID: -8467487281980754397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u5355\u5200" + rect: + serializedVersion: 2 + x: 3296 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86cdb71a30499e060800000000000000 + internalID: 6983275440529726568 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u5355\u5251" + rect: + serializedVersion: 2 + x: 3328 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1711ed029d59b8240800000000000000 + internalID: 4795090988057891185 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u53CC\u5200" + rect: + serializedVersion: 2 + x: 3360 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d7e419098045fbf0800000000000000 + internalID: -291255643588466735 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u53CC\u5251" + rect: + serializedVersion: 2 + x: 3392 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f76b1b324a00e3d70800000000000000 + internalID: 9024651408270538367 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u53CC\u65A7" + rect: + serializedVersion: 2 + x: 3424 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae35a1a296b877c70800000000000000 + internalID: 8968790466725827562 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u53CC\u9524" + rect: + serializedVersion: 2 + x: 3456 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f897f78891a0a500800000000000000 + internalID: 405501642951596277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u5F13" + rect: + serializedVersion: 2 + x: 3488 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a40852ff1c21f9640800000000000000 + internalID: 5088806728370585674 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u5F29" + rect: + serializedVersion: 2 + x: 3520 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2dbe8dcf70e695990800000000000000 + internalID: -7396759932393428014 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u5F39\u5F13" + rect: + serializedVersion: 2 + x: 3552 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0869e6948ca97e7d0800000000000000 + internalID: -2889170450918762880 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u6212\u6307" + rect: + serializedVersion: 2 + x: 3584 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aeb3bde97621d0890800000000000000 + internalID: -7490310368991167510 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u62F3\u5957" + rect: + serializedVersion: 2 + x: 3616 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6488f3e5cb49445e0800000000000000 + internalID: -1926251203851745210 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u6CD5\u5251" + rect: + serializedVersion: 2 + x: 3648 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13c38a2b8bdcfe470800000000000000 + internalID: 8426179620988533809 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u6CD5\u5668" + rect: + serializedVersion: 2 + x: 3680 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f8a1dfe5c6930b70800000000000000 + internalID: 8864094268471486705 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u6CD5\u6756" + rect: + serializedVersion: 2 + x: 3712 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c92f1c8e9eb3248b0800000000000000 + internalID: -5169503546449464676 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u6CD5\u7403" + rect: + serializedVersion: 2 + x: 3744 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2bfa8956617623d0800000000000000 + internalID: -3231770998188868817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u6CD5\u888D\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3776 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 076caa25f1faee980800000000000000 + internalID: -8507670096990517648 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u6CD5\u888D\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 3808 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a29f7864794c20180800000000000000 + internalID: -9150535338861004502 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u6CD5\u888D\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3840 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0417c6c11b016f6a0800000000000000 + internalID: -6415922266270568128 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u6CD5\u888D\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3872 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 806ae2fac899ef910800000000000000 + internalID: 1873103324546246152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u6CD5\u88C5\u5934\u76D4" + rect: + serializedVersion: 2 + x: 3904 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8d386c30d8c4fd40800000000000000 + internalID: 5617335431930068366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u6CD5\u88C5\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 3936 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3317f58872b405c30800000000000000 + internalID: 4346056273576292659 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u77ED\u5203" + rect: + serializedVersion: 2 + x: 3968 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dede9fba433d34b70800000000000000 + internalID: 8882175113281793517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u77ED\u6756" + rect: + serializedVersion: 2 + x: 4000 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21913a832a1ad8900800000000000000 + internalID: 688384036164540690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u8170\u4F69" + rect: + serializedVersion: 2 + x: 4032 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11fda78e1fc216570800000000000000 + internalID: 8458090992677609233 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u8F7B\u7532\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 4064 + y: 4000 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7af488676cb31fa0800000000000000 + internalID: -5831109940193461633 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u8F7B\u7532\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 0 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e02e26c0b6d7dbd50800000000000000 + internalID: 6754692914848391694 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u8F7B\u7532\u62A4\u8155" + rect: + serializedVersion: 2 + x: 32 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 985f2dff63d3ff650800000000000000 + internalID: 6268796512752563593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u8F7B\u7532\u978B\u5B50" + rect: + serializedVersion: 2 + x: 64 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1cbc99aa1b77c3810800000000000000 + internalID: 1746402360468032449 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u8F7B\u88C5\u5934\u76D4" + rect: + serializedVersion: 2 + x: 96 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dadf17fadfdb3cd00800000000000000 + internalID: 991845240219499949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u8F7B\u88C5\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 128 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7cd837cb4b383cbc0800000000000000 + internalID: -3764020051272561209 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u91CD\u7532\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 160 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 161686bfb4dcbea10800000000000000 + internalID: 1939869790737293665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u91CD\u7532\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 192 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 514edeee703d73e90800000000000000 + internalID: -7045931060971052011 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u91CD\u7532\u62A4\u8155" + rect: + serializedVersion: 2 + x: 224 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ac739d2e4e660110800000000000000 + internalID: 1226789230556183719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u91CD\u7532\u978B\u5B50" + rect: + serializedVersion: 2 + x: 256 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13b713d307ebb6c60800000000000000 + internalID: 7812547367876524849 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u91CD\u88C5\u5934\u76D4" + rect: + serializedVersion: 2 + x: 288 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a0da65550bd9ec40800000000000000 + internalID: 5542201632410488995 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u91CD\u88C5\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 320 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bb045bab36c3dd10800000000000000 + internalID: 2149279406765640628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u94BA" + rect: + serializedVersion: 2 + x: 352 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37d09219731492de0800000000000000 + internalID: -1357482105761100429 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u957F\u5200" + rect: + serializedVersion: 2 + x: 384 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b82941b7a67551640800000000000000 + internalID: 5050038672008974987 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u957F\u65A7" + rect: + serializedVersion: 2 + x: 416 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 620fb7d73b9b0f110800000000000000 + internalID: 1292737273610891302 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u957F\u77DB" + rect: + serializedVersion: 2 + x: 448 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb1d4a8c6172eb520800000000000000 + internalID: 2719654203787366846 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "19\u54C1\u957F\u9524" + rect: + serializedVersion: 2 + x: 480 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2f9a9c0479e679d0800000000000000 + internalID: -2776775435590394065 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "1_\u4ED9\u4EBA\u67F1" + rect: + serializedVersion: 2 + x: 512 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce71d6fd33a7ba3a0800000000000000 + internalID: -6653089661299386388 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "1_\u5411\u65E5\u847501" + rect: + serializedVersion: 2 + x: 544 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55e368667111ca6c0800000000000000 + internalID: -4130907966003593643 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "1\u7EA7\u65F6\u88C5\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 576 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7a8a2337ad614e30800000000000000 + internalID: 4485987268723116666 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "1\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 608 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9d1bd0d17e760f30800000000000000 + internalID: 4541456301550149018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "1\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 640 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 35c5596998886cd60800000000000000 + internalID: 7910159920041122899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "1\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 672 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4225febfd836384d0800000000000000 + internalID: -3133551454251429340 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "1\u7EA7\u989C\u6599" + rect: + serializedVersion: 2 + x: 704 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fa225ac1c30b1a090800000000000000 + internalID: -8024939288772402513 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "1\u7EA7\u98DE\u5251\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 736 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd232a3c88b6e5d20800000000000000 + internalID: 3269168614659470045 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 2 + rect: + serializedVersion: 2 + x: 768 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca7be4610311d65f0800000000000000 + internalID: -761933863725385812 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2010\u5E7412\u6708\u98DE\u884C\u5668\u62CD\u54C1" + rect: + serializedVersion: 2 + x: 800 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10a8686e139d88190800000000000000 + internalID: -7959873533033149951 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2010\u62C9\u62C9\u961F\u88C52\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 832 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3005b352e31dad10800000000000000 + internalID: 2138387260858761274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2010\u62C9\u62C9\u961F\u88C52\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 864 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 175df4ad3b40d9f80800000000000000 + internalID: -8098311384433961615 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2010\u62C9\u62C9\u961F\u88C52\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 896 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1596c68f7ff0fae0800000000000000 + internalID: -1517432151236766433 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2010\u62C9\u62C9\u961F\u88C52\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 928 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d2fbec5daf39c80c0800000000000000 + internalID: -4572116816149692627 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2011\u5723\u8BDE\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 960 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8bf96f505d56532b0800000000000000 + internalID: -5605462195590225992 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2011\u5723\u8BDE\u5973\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 992 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5f012faa95aea500800000000000000 + internalID: 409446699919019869 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2011\u5723\u8BDE\u5973\u88C5\u8863\u670D" + rect: + serializedVersion: 2 + x: 1024 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4e198401b86a2550800000000000000 + internalID: 6136832551740317263 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2011\u5723\u8BDE\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1056 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd6da79a9e4968fd0800000000000000 + internalID: -2340019225080703267 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2011\u5723\u8BDE\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1088 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b141a6a9f54924b40800000000000000 + internalID: 5423060039640945691 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2011\u5723\u8BDE\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1120 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cbddc65ca9fab7cd0800000000000000 + internalID: -2559258883957924420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2011\u5723\u8BDE\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1152 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4873e56bfb2cc1560800000000000000 + internalID: 7285912425832789892 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2011\u5723\u8BDE\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1184 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8fa22614cb754f40800000000000000 + internalID: 5712107784504520590 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u5973\u5E3D" + rect: + serializedVersion: 2 + x: 1216 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c526c5c0024f8590800000000000000 + internalID: -7669839069303134782 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u5973\u88C5" + rect: + serializedVersion: 2 + x: 1248 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dab5b3202384a7480800000000000000 + internalID: -8900722333921354835 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u5973\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1280 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 28be90b82c4993ea0800000000000000 + internalID: -5892515074160333950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u5973\u88C5\u978B" + rect: + serializedVersion: 2 + x: 1312 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d2e1e3f2f1f141d0800000000000000 + internalID: -3368145020520373544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u5F69\u7403" + rect: + serializedVersion: 2 + x: 1344 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1179f651ca4aa2b20800000000000000 + internalID: 3110479551653713681 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u5F69\u889C" + rect: + serializedVersion: 2 + x: 1376 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2084fcff282c7fc0800000000000000 + internalID: -3495875024173891540 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u62D0\u6756\u7CD6" + rect: + serializedVersion: 2 + x: 1408 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3704ae4f3072a970800000000000000 + internalID: 8764691242021029690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u661F\u661F" + rect: + serializedVersion: 2 + x: 1440 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8986e9a2bd120fdb0800000000000000 + internalID: -4760267580934035304 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u7537\u5E3D" + rect: + serializedVersion: 2 + x: 1472 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5a1797fce60a6300800000000000000 + internalID: 246016744481036891 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1504 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b43605d8bd1ebfd10800000000000000 + internalID: 2160568779339227979 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u7537\u88C5\u88E4" + rect: + serializedVersion: 2 + x: 1536 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9b05e1528be0b840800000000000000 + internalID: 5237945311584127899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u7537\u88C5\u978B" + rect: + serializedVersion: 2 + x: 1568 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 692e1d2244aec3640800000000000000 + internalID: 5061177659620450966 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u7F0E\u5E26" + rect: + serializedVersion: 2 + x: 1600 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70f97c927dfdbf9f0800000000000000 + internalID: -433506823899209977 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u8001\u4EBA\u7684\u888B\u5B50" + rect: + serializedVersion: 2 + x: 1632 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9513dbe448a7e35c0800000000000000 + internalID: -4233811891006394023 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u5723\u8BDE\u94C3\u94DB" + rect: + serializedVersion: 2 + x: 1664 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5692c63ad28e1fa60800000000000000 + internalID: 7706195720120576357 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u57C3\u53CA\u9152" + rect: + serializedVersion: 2 + x: 1696 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11d223120b5457da0800000000000000 + internalID: -5947771110099374831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u62C9\u62C9\u961F\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1728 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d652e561ecd8bc310800000000000000 + internalID: 1426389623270942061 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u62C9\u62C9\u961F\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1760 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e01e0289d5f265610800000000000000 + internalID: 1609525995862286606 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u62C9\u62C9\u961F\u88C5\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1792 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce28458e064e82d80800000000000000 + internalID: -8275113210427440404 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u62C9\u62C9\u961F\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1824 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 173c5df57e9416c30800000000000000 + internalID: 4350839973110727537 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u6625\u5929\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1856 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12efc24b484754be0800000000000000 + internalID: -1493659588096098783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u6625\u5929\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1888 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 416077877b01a8760800000000000000 + internalID: 7460794112878773780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u6625\u5929\u5973\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1920 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf0f40aaca27e23e0800000000000000 + internalID: -2076596292258828036 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u6625\u5929\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1952 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ed5ac6bc1d5788c50800000000000000 + internalID: 6667708792243529182 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u6625\u5929\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1984 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6677c4a1d151931f0800000000000000 + internalID: -1064796622156957850 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u6625\u5929\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2016 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9725d297997938f10800000000000000 + internalID: 2270825322543665785 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u6625\u5929\u7537\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2048 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b66263649c36a5c00800000000000000 + internalID: 890133592476624491 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u6625\u5929\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2080 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c94e3d1a609a04e0800000000000000 + internalID: -2014639097863321146 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u7403\u8863\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2112 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a4f71bf1a6be5a40800000000000000 + internalID: 5358921413436109986 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u7403\u8863\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2144 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 26589771e29316cf0800000000000000 + internalID: -260864433285659294 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u7403\u8863\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2176 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b38768c2660c26f40800000000000000 + internalID: 5720346021780158523 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u7403\u8863\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2208 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d8639e2c6e3fa7d0800000000000000 + internalID: -2905034600271877927 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u8461\u8404\u9152" + rect: + serializedVersion: 2 + x: 2240 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08d13538e3f583300800000000000000 + internalID: 232040102905453952 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u9152\u74F61" + rect: + serializedVersion: 2 + x: 2272 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 166a769e272f65710800000000000000 + internalID: 1681798086225536609 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u9152\u74F62" + rect: + serializedVersion: 2 + x: 2304 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 298de357bb91d19c0800000000000000 + internalID: -3954976604844795758 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u9152\u74F63" + rect: + serializedVersion: 2 + x: 2336 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a6e6470ee4265df0800000000000000 + internalID: -191925329373763932 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2012\u96EA\u7403" + rect: + serializedVersion: 2 + x: 2368 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cea375582d9845bb0800000000000000 + internalID: -4948178553300108564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2013\u5723\u8BDE\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2400 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60d6d07844e51e370800000000000000 + internalID: 8350058832538201350 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2013\u5723\u8BDE\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2432 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2973d6ae158c10310800000000000000 + internalID: 1369596015848273810 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2013\u5723\u8BDE\u5973\u88C5\u62A4\u624B" + rect: + serializedVersion: 2 + x: 2464 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51d5a82d066ad34c0800000000000000 + internalID: -4306102733916971755 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2013\u5723\u8BDE\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2496 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 061b5da27dde99e80800000000000000 + internalID: -8171238540494655136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2013\u5723\u8BDE\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2528 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3551ffc399e59810800000000000000 + internalID: 1771578849498322239 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2013\u5723\u8BDE\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2560 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 538b1cbe516d78400800000000000000 + internalID: 326464887645648949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2013\u5723\u8BDE\u7537\u88C5\u62A4\u624B" + rect: + serializedVersion: 2 + x: 2592 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f09f39a448ccd45c0800000000000000 + internalID: -4229499606472066801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2013\u5723\u8BDE\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2624 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58dbb784ece5521f0800000000000000 + internalID: -1070345096358281851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2013\u5723\u8BDE\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2656 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 171f7d914e847ce50800000000000000 + internalID: 6829507504453972337 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2013\u98DE\u5929\u732A" + rect: + serializedVersion: 2 + x: 2688 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0880a84fdc4de8800800000000000000 + internalID: 616664180032407680 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u5DF4\u897F\u7403\u8863\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2720 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2583c619d35007fb0800000000000000 + internalID: -4652212653082789806 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u5DF4\u897F\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2752 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 307ea0851463a3ab0800000000000000 + internalID: -5027646379727853821 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u5FB7\u56FD\u7403\u8863\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2784 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a62ad2cb0f2a73a0800000000000000 + internalID: -6666964570808375642 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u5FB7\u56FD\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2816 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 258cf54d877796e70800000000000000 + internalID: 9108943082176366674 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u610F\u5927\u5229\u7403\u8863\u8863\u670D" + rect: + serializedVersion: 2 + x: 2848 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4f095c9869d5cfc0800000000000000 + internalID: -3475132494123561140 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u610F\u5927\u5229\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2880 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 150433fd85b2b09e0800000000000000 + internalID: -1654180777426730927 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u6CD5\u56FD\u7403\u8863\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2912 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96603ea92f98afed0800000000000000 + internalID: -2379437778038225303 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u6CD5\u56FD\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2944 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e0857d24d51077e0800000000000000 + internalID: -1769890652516679454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u8377\u5170\u7403\u8863\u8863\u670D" + rect: + serializedVersion: 2 + x: 2976 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f37629f3d9dd9e20800000000000000 + internalID: 3359080401529631729 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u8377\u5170\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3008 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: afe6ecfd929daa410800000000000000 + internalID: 1489241400671104762 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u8461\u8404\u7259\u7403\u8863\u8863\u670D" + rect: + serializedVersion: 2 + x: 3040 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08b28c9dd17b90fb0800000000000000 + internalID: -4681008998839211136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u8461\u8404\u7259\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3072 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1926e9dce5c281ba0800000000000000 + internalID: -6118091308094561647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u897F\u73ED\u7259\u7403\u8863\u8863\u670D" + rect: + serializedVersion: 2 + x: 3104 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d5460042d7a75030800000000000000 + internalID: 3483437358253491666 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u897F\u73ED\u7259\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3136 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf5c6168b42c13560800000000000000 + internalID: 7291822901317518843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u963F\u6839\u5EF7\u7403\u8863\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3168 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 027552b412fba4770800000000000000 + internalID: 8595892988505577248 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u5973\u963F\u6839\u5EF7\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3200 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70ef54a4ea19d4790800000000000000 + internalID: -7544213623019274745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u6625\u8282\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3232 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b59f90fbfe4f2140800000000000000 + internalID: 4697059780351464888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u6625\u8282\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3264 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78a8a0946d90e5ff0800000000000000 + internalID: -45588130274047353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u6625\u8282\u5973\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3296 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65bd6235fd3a011c0800000000000000 + internalID: -4534944645193999530 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u6625\u8282\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3328 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40e40cd9ff3a6c160800000000000000 + internalID: 7045498985326333444 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u6625\u8282\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3360 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 05ff968947b6fb740800000000000000 + internalID: 5169969045762080592 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u6625\u8282\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3392 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 442a1d210b7d64020800000000000000 + internalID: 2325783408813384260 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u6625\u8282\u7537\u88C5\u62A4\u624B" + rect: + serializedVersion: 2 + x: 3424 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d30c2066070b4a80800000000000000 + internalID: -8481677749257501741 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u6625\u8282\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3456 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 182523deccd1602d0800000000000000 + internalID: -3312927709894389119 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u5DF4\u897F\u7403\u8863\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3488 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df806727daae083c0800000000000000 + internalID: -4359226408624060163 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u5DF4\u897F\u7403\u8863\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3520 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da6887c3405eea700800000000000000 + internalID: 553631610570311341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u5DF4\u897F\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3552 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: debaff84d6fcf6870800000000000000 + internalID: 8678383075249335277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u5FB7\u56FD\u7403\u8863\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3584 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 146fdde906a0ce9b0800000000000000 + internalID: -5049649672090683839 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u5FB7\u56FD\u7403\u8863\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3616 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46c244aa193d1df90800000000000000 + internalID: -6930525728966169500 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u5FB7\u56FD\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3648 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8e3964fe4fc80b50800000000000000 + internalID: 6559720795280064141 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u610F\u5927\u5229\u7403\u8863\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3680 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a91e9a7652732400800000000000000 + internalID: 298207716086520228 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u610F\u5927\u5229\u7403\u8863\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3712 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7dae9452646cb9210800000000000000 + internalID: 1340883318648466135 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u610F\u5927\u5229\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3744 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c772455ceed3da070800000000000000 + internalID: 8119213798941009788 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u6CD5\u56FD\u7403\u8863\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3776 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 207ff4c8c7762be60800000000000000 + internalID: 7976551674654226178 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u6CD5\u56FD\u7403\u8863\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3808 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 639d45c1190aefcb0800000000000000 + internalID: -4828245205388568266 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u6CD5\u56FD\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3840 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 318a37a6e33e4b9d0800000000000000 + internalID: -2759330814457829357 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u8377\u5170\u7403\u8863\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3872 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d126bbc9c0b2e030800000000000000 + internalID: 3522572239309775315 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u8377\u5170\u7403\u8863\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3904 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3afc894eea04a740800000000000000 + internalID: 5162263091425901115 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u8377\u5170\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3936 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 953c4078819687910800000000000000 + internalID: 1835332402218845017 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u8461\u8404\u7259\u7403\u8863\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3968 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1889ca222ecef9850800000000000000 + internalID: 6386083252623153281 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u8461\u8404\u7259\u7403\u8863\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 4000 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5bd57da91e24c7370800000000000000 + internalID: 8321599748206714293 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u8461\u8404\u7259\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 4032 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 308fc3db27b461fb0800000000000000 + internalID: -4677468206804436989 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u897F\u73ED\u7259\u7403\u8863\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 4064 + y: 3968 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b6666b0804babae0800000000000000 + internalID: -1532714776522234183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u897F\u73ED\u7259\u7403\u8863\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 0 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7fec71dcabeee6c50800000000000000 + internalID: 6660523384999759607 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u897F\u73ED\u7259\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 32 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d051f50e8c1775b0800000000000000 + internalID: -5370792634305392428 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u963F\u6839\u5EF7\u7403\u8863\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 64 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 998f8eafd6f3cebe0800000000000000 + internalID: -1446711638699214695 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u963F\u6839\u5EF7\u7403\u8863\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 96 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd6d6e367e8d9ab30800000000000000 + internalID: 4299205807626966751 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u7537\u963F\u6839\u5EF7\u7403\u8863\u978B\u5B50" + rect: + serializedVersion: 2 + x: 128 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: acdb0ab5bfda9ed10800000000000000 + internalID: 2155445191759150538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u82B1\u5315\u9996" + rect: + serializedVersion: 2 + x: 160 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e21b22c523070430800000000000000 + internalID: 3748968675515503332 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u82B1\u5355\u624B\u77ED" + rect: + serializedVersion: 2 + x: 192 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86225dab554a75760800000000000000 + internalID: 7446601196994110056 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u82B1\u5355\u624B\u77ED2" + rect: + serializedVersion: 2 + x: 224 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f11384cef40d0ba0800000000000000 + internalID: -6121230826261507597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u82B1\u53CC\u624B\u77ED" + rect: + serializedVersion: 2 + x: 256 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c2227ea5b05bf3b0800000000000000 + internalID: -5477695780520058172 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u82B1\u53CC\u624B\u957F" + rect: + serializedVersion: 2 + x: 288 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3681788c70622a7c0800000000000000 + internalID: -4061642099063842717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u82B1\u5F13" + rect: + serializedVersion: 2 + x: 320 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45d3af8e2fe81a9f0800000000000000 + internalID: -458928513073136300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2014\u82B1\u6CD5\u7403" + rect: + serializedVersion: 2 + x: 352 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b8b530398c55feb0800000000000000 + internalID: -4686738092920031056 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u4E0D\u7CFB\u821F" + rect: + serializedVersion: 2 + x: 384 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd7e8ae9974103800800000000000000 + internalID: 589994063771002845 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u4E0D\u95EE\u82CD\u751F\u95EE\u9B3C\u795E" + rect: + serializedVersion: 2 + x: 416 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b30c49000712dad0800000000000000 + internalID: -2679053539408608335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u4EBA\u65CF\u7AF9\u7B80" + rect: + serializedVersion: 2 + x: 448 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f20bb603bddbeb0e0800000000000000 + internalID: -2252154014530818001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u4EBA\u65CF\u94A5\u5319" + rect: + serializedVersion: 2 + x: 480 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5af5a9f78e66bfeb0800000000000000 + internalID: -4685037838589599835 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u4F1A\u633D\u96D5\u5F13\u5982\u6EE1\u6708" + rect: + serializedVersion: 2 + x: 512 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f3af5ca1a257d740800000000000000 + internalID: 5176697151020835824 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u529B\u62D4\u5C71\u516E\u6C14\u76D6\u4E16" + rect: + serializedVersion: 2 + x: 544 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99c7957e74828f8a0800000000000000 + internalID: -6271218191824225127 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5317\u7F8E\u72EE\u5B50" + rect: + serializedVersion: 2 + x: 576 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9cbc3d00604560e50800000000000000 + internalID: 6775195074185907145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u536B\u6B66\u7EB9\u7AE0" + rect: + serializedVersion: 2 + x: 608 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d77426ef02ca498a0800000000000000 + internalID: -6299220721077696643 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5723\u8BDE\u6C14\u7403" + rect: + serializedVersion: 2 + x: 640 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79e5f00e7eb109ff0800000000000000 + internalID: -31494514681094505 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5723\u8BDE\u889C\u5B50" + rect: + serializedVersion: 2 + x: 672 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 854af3a199b62fde0800000000000000 + internalID: -1300859037042105256 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5723\u8BDE\u96EA\u82B1" + rect: + serializedVersion: 2 + x: 704 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d3b8e2224831fd0c0800000000000000 + internalID: -4548895640390825155 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5927\u98CE\u8D77\u516E\u4E91\u98DE\u626C" + rect: + serializedVersion: 2 + x: 736 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9abceabb425c01d0800000000000000 + internalID: -3383238734849983841 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5929\u82E5\u6709\u60C5\u5929\u4EA6\u8001" + rect: + serializedVersion: 2 + x: 768 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b040e5ea227181460800000000000000 + internalID: 7212540240955573259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5996\u517D\u767D\u708E\u517D" + rect: + serializedVersion: 2 + x: 800 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 617b6ca033d6daf80800000000000000 + internalID: -8093692889323358442 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5996\u65CF\u7FFC\u9F99\u98DE\u884C\u5668" + rect: + serializedVersion: 2 + x: 832 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe0ad2e37c5b18960800000000000000 + internalID: 7602557513324404975 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5996\u65CF\u98DE\u7F8A" + rect: + serializedVersion: 2 + x: 864 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ceddf283e9f93620800000000000000 + internalID: 2754507402664337088 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5BB6\u56ED\u5723\u8BDE\u5C0F\u96EA\u4EBA\u626B\u628A" + rect: + serializedVersion: 2 + x: 896 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d85d8830ff92f2d0800000000000000 + internalID: -3246356527290951472 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5BB6\u56ED\u5723\u8BDE\u5C0F\u96EA\u4EBA\u96EA\u7403" + rect: + serializedVersion: 2 + x: 928 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9739908e902956800800000000000000 + internalID: 605050296196502393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5BB6\u56ED\u5723\u8BDE\u6811" + rect: + serializedVersion: 2 + x: 960 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 703f74afb9bf22e30800000000000000 + internalID: 4477417626897216263 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5BB6\u56ED\u5723\u8BDE\u793C\u76D2" + rect: + serializedVersion: 2 + x: 992 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87bec9cd11ce46ea0800000000000000 + internalID: -5880315651979154568 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5BB6\u56ED\u5723\u8BDE\u7CD6\u679C\u5C4B" + rect: + serializedVersion: 2 + x: 1024 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1377b2e2b144cc1d0800000000000000 + internalID: -3329211141004232911 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5BB6\u56ED\u5723\u8BDE\u8001\u4EBA" + rect: + serializedVersion: 2 + x: 1056 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6da44595a17505f0800000000000000 + internalID: -791101203545805461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5BB6\u56ED\u5723\u8BDE\u964D\u843D\u4F1E" + rect: + serializedVersion: 2 + x: 1088 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2737a4a3e7e111d80800000000000000 + internalID: -8281804712264961166 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5BB6\u56ED\u5723\u8BDE\u9774\u5B50" + rect: + serializedVersion: 2 + x: 1120 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21435c65da4d7ca10800000000000000 + internalID: 1929744806301742098 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5C0F\u697C\u4E00\u591C\u542C\u6625\u96E8" + rect: + serializedVersion: 2 + x: 1152 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f715dfb22b1b74900800000000000000 + internalID: 668698448488124799 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5E2E\u6D3E\u51B0\u9F99" + rect: + serializedVersion: 2 + x: 1184 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b34557be9ef65800800000000000000 + internalID: 600947557934646198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5E2E\u6D3E\u706B\u9F99" + rect: + serializedVersion: 2 + x: 1216 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f5b2c270ab93994a0800000000000000 + internalID: -6586169508905604257 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u5E742\u5B63\u5EA6\u7FBD\u65CF\u98DE\u884C\u5668" + rect: + serializedVersion: 2 + x: 1248 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec9beebc607944d90800000000000000 + internalID: -7114395455891523122 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u62C9\u5F25\u4E9A" + rect: + serializedVersion: 2 + x: 1280 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 964bc5747d00feac0800000000000000 + internalID: -3823836633999035287 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u6708\u5982\u65E0\u6068\u6708\u5E38\u5706" + rect: + serializedVersion: 2 + x: 1312 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48341b03b692afc40800000000000000 + internalID: 5546791431415350148 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u673A\u5668\u4EBA\u5BA0\u7269" + rect: + serializedVersion: 2 + x: 1344 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c3ee4b0fa110eb00800000000000000 + internalID: 855703372707062729 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u67EF\u57FA\u5BA0\u7269" + rect: + serializedVersion: 2 + x: 1376 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3b3bf189c1ce1ef0800000000000000 + internalID: -135457867561223366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u68A6\u91CC\u6311\u706F\u9189\u770B\u5251" + rect: + serializedVersion: 2 + x: 1408 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9d16f048f2b0f6d0800000000000000 + internalID: -2958668175870911073 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u6A31\u82B1\u6247" + rect: + serializedVersion: 2 + x: 1440 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 30910bf2b5fd91aa0800000000000000 + internalID: -6189670630108948221 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u6C50\u65CF\u53CC\u9C7C\u5EA7" + rect: + serializedVersion: 2 + x: 1472 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ab9d915369e9dfb0800000000000000 + internalID: -4622406929738785883 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u6C50\u65CF\u7279\u6548\u7FC5\u8180" + rect: + serializedVersion: 2 + x: 1504 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60fe616fa6e552d40800000000000000 + internalID: 5558953128546987782 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u6C50\u65CF\u9EC4\u7EFF" + rect: + serializedVersion: 2 + x: 1536 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09f002b6a08738ab0800000000000000 + internalID: -5007026374563590256 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u7075\u65CF\u82AD\u8549\u6247" + rect: + serializedVersion: 2 + x: 1568 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e8cb4588508b4cf0800000000000000 + internalID: -266978635216598816 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u7075\u65CF\u82B1\u706F" + rect: + serializedVersion: 2 + x: 1600 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba1abfff9588b6c70800000000000000 + internalID: 8965409403339252139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u7075\u65CF\u82B1\u7075" + rect: + serializedVersion: 2 + x: 1632 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a0d0f1be725206d0800000000000000 + internalID: -3025765295534845784 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u70ED\u6C14\u7403\u98DE\u9A91" + rect: + serializedVersion: 2 + x: 1664 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d86f787fb1274b8a0800000000000000 + internalID: -6290277315087174003 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u72EC\u89D2\u517D" + rect: + serializedVersion: 2 + x: 1696 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41e21a3b58cc2b2d0800000000000000 + internalID: -3264321905273786860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u72EE\u9E6B\u5750\u9A91" + rect: + serializedVersion: 2 + x: 1728 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c02c001be5f91b370800000000000000 + internalID: 8336619614284857868 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u7334\u5E74\u6446\u644A" + rect: + serializedVersion: 2 + x: 1760 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c31afd713a323ddc0800000000000000 + internalID: -3615506892461203140 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u7834\u788E\u5C71\u6CB3\u5370" + rect: + serializedVersion: 2 + x: 1792 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a1c614b95d40ea40800000000000000 + internalID: 5395397401258672548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u7CD6\u846B\u82A6\u53CC\u624B\u77ED" + rect: + serializedVersion: 2 + x: 1824 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 689f874677163a130800000000000000 + internalID: 3576809694476958086 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u7FBD\u65CF\u58A8\u67D3" + rect: + serializedVersion: 2 + x: 1856 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba32eb8a0b0e8c5a0800000000000000 + internalID: -6500699012759411797 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u7FBD\u65CF\u707F\u8776" + rect: + serializedVersion: 2 + x: 1888 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e539cd0b3dbdd74b0800000000000000 + internalID: -5440951072541863074 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u7FBD\u65CF\u9189\u7965\u4E91" + rect: + serializedVersion: 2 + x: 1920 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a534f65abe36fadf0800000000000000 + internalID: -166804797445422246 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u80E7\u65CF\u795E\u5668" + rect: + serializedVersion: 2 + x: 1952 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8466fb68c4814e3b0800000000000000 + internalID: -5484231729273149880 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u80E7\u65CF\u84DD\u5149\u8F6E" + rect: + serializedVersion: 2 + x: 1984 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e02e086e09bb0ce0800000000000000 + internalID: -1437852184488304412 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u80E7\u65CF\u91D1\u534E" + rect: + serializedVersion: 2 + x: 2016 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0026b9d715c3d710800000000000000 + internalID: 1716932589185802250 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u897F\u65B9\u6076\u9F99" + rect: + serializedVersion: 2 + x: 2048 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d90550a4c3538e80800000000000000 + internalID: -8177600394406065707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u96EA\u82B1\u6B66\u5668\u5315\u9996" + rect: + serializedVersion: 2 + x: 2080 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd4778097d14b6cc0800000000000000 + internalID: -3716804673365642017 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u96EA\u82B1\u6B66\u5668\u5355\u624B\u77ED" + rect: + serializedVersion: 2 + x: 2112 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ad01de3b1388cb10800000000000000 + internalID: 2001994187407429024 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u96EA\u82B1\u6B66\u5668\u53CC\u624B\u77ED" + rect: + serializedVersion: 2 + x: 2144 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c8126a6027c9f3a0800000000000000 + internalID: -6631050034288650041 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u96EA\u82B1\u6B66\u5668\u53CC\u624B\u957F" + rect: + serializedVersion: 2 + x: 2176 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e92eaa1f822fe6bb0800000000000000 + internalID: -4940745483511733602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u96EA\u82B1\u6B66\u5668\u5F13" + rect: + serializedVersion: 2 + x: 2208 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08e6d7789434cc230800000000000000 + internalID: 3660374580230188672 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u96EA\u82B1\u6B66\u5668\u62F3\u5957" + rect: + serializedVersion: 2 + x: 2240 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edb95c1c2908c0f70800000000000000 + internalID: 9154833510341909470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u96EA\u82B1\u6B66\u5668\u6708\u9570" + rect: + serializedVersion: 2 + x: 2272 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8551874101c827b40800000000000000 + internalID: 5436561700880389464 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u96EA\u82B1\u6B66\u5668\u6CD5\u7403" + rect: + serializedVersion: 2 + x: 2304 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f942214d667c9fa80800000000000000 + internalID: -8432489582815992673 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2015\u96EA\u82B1\u6B66\u5668\u80E7\u5200" + rect: + serializedVersion: 2 + x: 2336 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7104aa670155b060800000000000000 + internalID: 6968565090721464698 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016vip\u6C50\u65CF\u6B66\u5668" + rect: + serializedVersion: 2 + x: 2368 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b808d0f1e25abc70800000000000000 + internalID: 8987587136733055161 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016vip\u6C50\u65CF\u7FC5\u8180" + rect: + serializedVersion: 2 + x: 2400 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 033443a0577bed6a0800000000000000 + internalID: -6422494305273494736 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016vip\u7FBD\u65CF\u6B66\u5668" + rect: + serializedVersion: 2 + x: 2432 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd348a032e38da610800000000000000 + internalID: 1634107247307539420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016vip\u7FBD\u65CF\u7FC5\u8180" + rect: + serializedVersion: 2 + x: 2464 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a10da9a6cbcd78a0800000000000000 + internalID: -6305659849138175576 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016vip\u80E7\u65CF\u6B66\u5668" + rect: + serializedVersion: 2 + x: 2496 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e45e63162c879870800000000000000 + internalID: 8689568101197305062 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016vip\u80E7\u65CF\u98DE\u884C\u5668" + rect: + serializedVersion: 2 + x: 2528 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4563b63356a6d80b0800000000000000 + internalID: -5724802568431126956 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u4EBA\u65CF\u70AB\u5F69\u98CE\u8F66" + rect: + serializedVersion: 2 + x: 2560 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a4cad7a968fea8c0800000000000000 + internalID: -3985975487504923487 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u51B0\u6DC7\u6DCB\u5355\u624B\u77ED" + rect: + serializedVersion: 2 + x: 2592 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b4e491d88c017b20800000000000000 + internalID: 3130296997770486966 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u51B0\u6DC7\u6DCB\u6CD5\u7403" + rect: + serializedVersion: 2 + x: 2624 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c46de72e6e8d70a0800000000000000 + internalID: -6882188051784833851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u609F\u7A7A\u5750\u9A91" + rect: + serializedVersion: 2 + x: 2656 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68e87199e931e4f00800000000000000 + internalID: 1102840530646568582 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u65B0\u6625\u798F\u888B" + rect: + serializedVersion: 2 + x: 2688 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6368afa9f14d8c40800000000000000 + internalID: 5516137659248436074 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u6625\u8282\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2720 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6f68b9e9984615d60800000000000000 + internalID: 7877187765481998070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u6625\u8282\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2752 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6766a4f1c36d0a90800000000000000 + internalID: -7346105732487026837 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u6625\u8282\u5973\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2784 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca400470ab9c383e0800000000000000 + internalID: -2052575204328078164 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u6625\u8282\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2816 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f2d401c2a9f45740800000000000000 + internalID: 5140007552154915572 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u6625\u8282\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2848 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c38beffd088951f10800000000000000 + internalID: 2239864068967938108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u6625\u8282\u7537\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 2880 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 392b82f7a491c37b0800000000000000 + internalID: -5243288058414452077 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u6625\u8282\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2912 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9935a66b328a07e90800000000000000 + internalID: -7029934146987600999 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u6625\u8282\u7537\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2944 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6a96faa81fbfd6e0800000000000000 + internalID: -1810518412511241621 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u6625\u8282\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2976 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6fcfa31891bb84fb0800000000000000 + internalID: -4663271695925445386 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7070\u59D1\u5A18\u9A6C\u8F66" + rect: + serializedVersion: 2 + x: 3008 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 690cd2a5d80aa2820800000000000000 + internalID: 2894302239502745750 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7CD6\u679C\u5315\u9996" + rect: + serializedVersion: 2 + x: 3040 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b321dadad5fd38210800000000000000 + internalID: 1334155508070552123 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7CD6\u679C\u53CC\u624B\u77ED" + rect: + serializedVersion: 2 + x: 3072 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9b70f4134e6875c0800000000000000 + internalID: -4217499816639300708 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7CD6\u679C\u53CC\u624B\u957F" + rect: + serializedVersion: 2 + x: 3104 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2484733ceea9e920800000000000000 + internalID: 3020137354627417134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7CD6\u679C\u5F29" + rect: + serializedVersion: 2 + x: 3136 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3205866b3e8e55270800000000000000 + internalID: 8238747158059700259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7CD6\u679C\u5F39\u5F13" + rect: + serializedVersion: 2 + x: 3168 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54347d7c309e4d200800000000000000 + internalID: 204044085585462085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7CD6\u679C\u62F3\u5957" + rect: + serializedVersion: 2 + x: 3200 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e5b188fb1fb3f0540800000000000000 + internalID: 4976262022754212702 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7CD6\u679C\u80E7\u5200" + rect: + serializedVersion: 2 + x: 3232 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3209ee097de3d800800000000000000 + internalID: 636113076586349114 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7CD6\u679C\u9570\u5200" + rect: + serializedVersion: 2 + x: 3264 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f97b9dca47d33ba10800000000000000 + internalID: 1923949037142783903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7EA2\u5305\u4E00" + rect: + serializedVersion: 2 + x: 3296 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b62b6f00ad673b60800000000000000 + internalID: 7725764219998250672 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7EA2\u5305\u4E09" + rect: + serializedVersion: 2 + x: 3328 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 93dfd2b5dcef519f0800000000000000 + internalID: -498212025803080391 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7EA2\u5305\u4E8C" + rect: + serializedVersion: 2 + x: 3360 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78b499da263e17cd0800000000000000 + internalID: -2562016700038296697 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7EA2\u5305\u4E94" + rect: + serializedVersion: 2 + x: 3392 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bed3f1a221475b0a0800000000000000 + internalID: -6866454435491529237 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7EA2\u5305\u516D" + rect: + serializedVersion: 2 + x: 3424 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac5d8b1c13c7655b0800000000000000 + internalID: -5379976151702121014 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u7EA2\u5305\u56DB" + rect: + serializedVersion: 2 + x: 3456 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 310ec2bd138a77060800000000000000 + internalID: 6951209481953665043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u97F3\u7B26\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3488 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eef7fc4c73a8b8980800000000000000 + internalID: -8535576696620875794 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u97F3\u7B26\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3520 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98c750d1e69767010800000000000000 + internalID: 1186269065698966665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u97F3\u7B26\u5973\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3552 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ddd343e5bc943e450800000000000000 + internalID: 6116813856706936285 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2016\u97F3\u7B26\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3584 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9637749a75f95bb50800000000000000 + internalID: 6608363227087074153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "202_\u897F\u65B91\u7EA7\u5EFA\u7B51" + rect: + serializedVersion: 2 + x: 3616 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91d402dbafec13750800000000000000 + internalID: 6283030531468709145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "202_\u897F\u65B92\u7EA7\u7A97\u5E18" + rect: + serializedVersion: 2 + x: 3648 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4e0662549728ce60800000000000000 + internalID: 7982673857505267278 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "203_\u897F\u65B9\u4E00\u7EA7\u7A97\u5E18" + rect: + serializedVersion: 2 + x: 3680 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: efdf56f3e1ee0d6d0800000000000000 + internalID: -2967610340757078530 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "204_\u897F\u65B91\u7EA7\u6CB9\u753B" + rect: + serializedVersion: 2 + x: 3712 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2e17d8693dd4a790800000000000000 + internalID: -7519642239160082897 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "205_\u897F\u65B92\u7EA7\u6CB9\u753B" + rect: + serializedVersion: 2 + x: 3744 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba6491878094cb880800000000000000 + internalID: -8593913688206260565 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "206_\u897F\u65B93\u7EA7\u6CB9\u753B" + rect: + serializedVersion: 2 + x: 3776 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a352d54c16b78090800000000000000 + internalID: -8032251177845238875 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "207_\u897F\u65B91\u7EA7\u53F0\u706F" + rect: + serializedVersion: 2 + x: 3808 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c83810a9d8c074190800000000000000 + internalID: -7978394412549831796 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "208_\u897F\u65B92\u7EA7\u53F0\u706F" + rect: + serializedVersion: 2 + x: 3840 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04064a2cadf1f4ea0800000000000000 + internalID: -5886451163521064896 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "209_\u897F\u65B93\u7EA7\u53F0\u706F" + rect: + serializedVersion: 2 + x: 3872 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 598e16ec0e0657160800000000000000 + internalID: 7022625712605620373 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20_\u7070\u7EFF\u834901" + rect: + serializedVersion: 2 + x: 3904 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e484547f1f6cbd0e0800000000000000 + internalID: -2243981246776129458 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u5315\u9996" + rect: + serializedVersion: 2 + x: 3936 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9f53fc46c09b16a0800000000000000 + internalID: -6477424457673384033 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u53CC\u5251" + rect: + serializedVersion: 2 + x: 3968 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5b0c5c4617261e00800000000000000 + internalID: 1015041742742489948 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u53CC\u65A7" + rect: + serializedVersion: 2 + x: 4000 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ece4241eb48d5380800000000000000 + internalID: -8980876129990284059 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u5F13" + rect: + serializedVersion: 2 + x: 4032 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d50a43f8ab902f730800000000000000 + internalID: 4031295313321173085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u62F3\u5957" + rect: + serializedVersion: 2 + x: 4064 + y: 3936 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6af0fe6ec2914c420800000000000000 + internalID: 2649270161444376486 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u6CD5\u5251" + rect: + serializedVersion: 2 + x: 0 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 880e93fbd3169ca30800000000000000 + internalID: 4236023842347802760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u6CD5\u5668" + rect: + serializedVersion: 2 + x: 32 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d98cf117c7fececd0800000000000000 + internalID: -2527381973108799331 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u6CD5\u888D\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 64 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc3962196a303a3e0800000000000000 + internalID: -2043785791961394227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u6CD5\u888D\u62A4\u8155" + rect: + serializedVersion: 2 + x: 96 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8332c51adaecd9f50800000000000000 + internalID: 6889890250078561080 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u6CD5\u888D\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 128 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dfd999a01e1062000800000000000000 + internalID: 10698115172113917 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u6CD5\u888D\u978B\u5B50" + rect: + serializedVersion: 2 + x: 160 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 209e6da14a5256cf0800000000000000 + internalID: -259760016748779262 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u8F7B\u7532\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 192 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 811399279d9a6ed10800000000000000 + internalID: 2154596223139000600 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u8F7B\u7532\u62A4\u8155" + rect: + serializedVersion: 2 + x: 224 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3ec108987811fed0800000000000000 + internalID: -2382095821676884420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u8F7B\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 256 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e716796f05c8fa90800000000000000 + internalID: -7279852127659878425 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u8F7B\u7532\u978B\u5B50" + rect: + serializedVersion: 2 + x: 288 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ed3362cafb8c8460800000000000000 + internalID: 7245319809651654112 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u91CD\u7532\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 320 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec67dadfae4279040800000000000000 + internalID: 4654229331607647950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u91CD\u7532\u62A4\u8155" + rect: + serializedVersion: 2 + x: 352 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b14334cf6da654570800000000000000 + internalID: 8450277747418412059 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u91CD\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 384 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d177176b49a030a80800000000000000 + internalID: -8501940037713037539 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "20\u54C1\u91CD\u7532\u978B\u5B50" + rect: + serializedVersion: 2 + x: 416 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41a38cfff5c01c8a0800000000000000 + internalID: -6286729998379763180 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "210_\u897F\u65B91\u7EA7\u6905\u5B50" + rect: + serializedVersion: 2 + x: 448 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8cde4f764e09a9cc0800000000000000 + internalID: -3703488432887763512 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "211_\u897F\u65B92\u7EA7\u6905\u5B50" + rect: + serializedVersion: 2 + x: 480 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d3c17a27ca3cf870800000000000000 + internalID: 8717907605767439316 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "212_\u897F\u65B93\u7EA7\u6905\u5B50" + rect: + serializedVersion: 2 + x: 512 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23ddac0738f178970800000000000000 + internalID: 8757002649838738738 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "213_\u897F\u65B91\u7EA7\u53F0\u706F" + rect: + serializedVersion: 2 + x: 544 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c92aa0cc316e24950800000000000000 + internalID: 6431956190540505756 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "214_\u897F\u65B92\u7EA7\u53F0\u706F" + rect: + serializedVersion: 2 + x: 576 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63c0f4225ef0299d0800000000000000 + internalID: -2769133344081900490 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "214_\u9EC4\u8272\u5C0F\u82B1" + rect: + serializedVersion: 2 + x: 608 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81b051400bdcc5480800000000000000 + internalID: -8909019806979257576 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "215_\u4E71\u6742\u788E\u8349" + rect: + serializedVersion: 2 + x: 640 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e485ee3318e61270800000000000000 + internalID: 8221013339168670951 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "215_\u897F\u65B93\u7EA7\u53F0\u706F" + rect: + serializedVersion: 2 + x: 672 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33a5fa1aa0da4abf0800000000000000 + internalID: -313935812835190221 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "216_\u519C\u753001" + rect: + serializedVersion: 2 + x: 704 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14823fcf252f19f40800000000000000 + internalID: 5733630238864386113 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "216_\u897F\u65B9\u7AD6\u7434" + rect: + serializedVersion: 2 + x: 736 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 05c623f4752cb9a00800000000000000 + internalID: 764418242016078928 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "217_\u897F\u65B91\u7EA7\u68B3\u5986\u53F0" + rect: + serializedVersion: 2 + x: 768 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9071f13a563cef630800000000000000 + internalID: 3962819563428452105 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "218_\u897F\u65B92\u7EA7\u68B3\u5986\u53F0" + rect: + serializedVersion: 2 + x: 800 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 033208a48f6d12c80800000000000000 + internalID: -8349155872278043856 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "219_\u897F\u65B93\u7EA7\u68B3\u5986\u53F0" + rect: + serializedVersion: 2 + x: 832 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 389eb4638aaf69a30800000000000000 + internalID: 4221837301078813059 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21_\u7070\u7EFF\u834902" + rect: + serializedVersion: 2 + x: 864 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc5fefa72910df580800000000000000 + internalID: -8791869168916957745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u5315\u9996" + rect: + serializedVersion: 2 + x: 896 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff8c01282de57f9a0800000000000000 + internalID: -6199382103833917185 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u5355\u5200" + rect: + serializedVersion: 2 + x: 928 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f53da2647beeb830800000000000000 + internalID: 4088964396803241459 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u5934\u90E8" + rect: + serializedVersion: 2 + x: 960 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d261c972c9d9ba890800000000000000 + internalID: -7445684264921983443 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u5F29" + rect: + serializedVersion: 2 + x: 992 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 64421cf1d08748010800000000000000 + internalID: 1190208199295312966 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u6CD5\u5668" + rect: + serializedVersion: 2 + x: 1024 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27cde96b2f11e9f00800000000000000 + internalID: 1125356691032824946 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u6CD5\u5B9D" + rect: + serializedVersion: 2 + x: 1056 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d9c3cbbb1a7ae2f0800000000000000 + internalID: -942806912447821360 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u6CD5\u888D\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1088 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 331c726f5548c91e0800000000000000 + internalID: -2189729814072016589 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u6CD5\u888D\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1120 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6d23b37679567330800000000000000 + internalID: 3708249708468317547 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u6CD5\u888D\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1152 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: acaeced9ad77c0480800000000000000 + internalID: -8931632180146410806 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u6CD5\u888D\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1184 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6b54402aded3b060800000000000000 + internalID: 6968158076897876843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u8F7B\u7532\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1216 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1cc516878e1177a10800000000000000 + internalID: 1907012657364425921 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u8F7B\u7532\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1248 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b24f398fe78f0d480800000000000000 + internalID: -8876321641327234005 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u8F7B\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1280 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a6fdc84bd0e217d0800000000000000 + internalID: -2949047573550336346 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u8F7B\u7532\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1312 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba2def01a2b84ddf0800000000000000 + internalID: -156347074261101909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u91CD\u7532\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1344 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6d5fdee8882416b0800000000000000 + internalID: -5326587890684174994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u91CD\u7532\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1376 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d828063290077c540800000000000000 + internalID: 5028110693532992141 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u91CD\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1408 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c871c7e62a743d3c0800000000000000 + internalID: -4336043253263755380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u91CD\u7532\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1440 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be4fcd778306f9980800000000000000 + internalID: -8529993373571025685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u957F\u67AA" + rect: + serializedVersion: 2 + x: 1472 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b59c1126ebc807e60800000000000000 + internalID: 7958015290880674139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "21\u54C1\u957F\u9524" + rect: + serializedVersion: 2 + x: 1504 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ea1286c5d7d35910800000000000000 + internalID: 1825039587173604065 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "220_\u897F\u65B9\u56FD\u9645\u8C61\u68CB" + rect: + serializedVersion: 2 + x: 1536 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c30aa41ea01483f80800000000000000 + internalID: -8126674012604817348 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "221_\u5C71\u58C12" + rect: + serializedVersion: 2 + x: 1568 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f6b5a6a343a29400800000000000000 + internalID: 329505233705481972 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "221_\u897F\u65B91\u7EA7\u540A\u706F" + rect: + serializedVersion: 2 + x: 1600 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d5e35874b3d74790800000000000000 + internalID: -7545829878569638439 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "222_\u5C71\u58C13" + rect: + serializedVersion: 2 + x: 1632 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 380ee8e8fe09d3150800000000000000 + internalID: 5853994449214824579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "222_\u897F\u65B92\u7EA7\u540A\u706F" + rect: + serializedVersion: 2 + x: 1664 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c30bc212bbe619dd0800000000000000 + internalID: -2481080169709916100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "223_\u5C71\u58C14" + rect: + serializedVersion: 2 + x: 1696 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5663ae95614ed3830800000000000000 + internalID: 4052646024352249445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "223_\u897F\u65B93\u7EA7\u540A\u706F" + rect: + serializedVersion: 2 + x: 1728 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88d50e35950dab500800000000000000 + internalID: 412871397935701384 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "224_\u5C71\u58C15" + rect: + serializedVersion: 2 + x: 1760 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc78262a3ed7af790800000000000000 + internalID: -7495540213169354803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "224_\u897F\u65B9\u5C0F\u63D0\u7434" + rect: + serializedVersion: 2 + x: 1792 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 904b7b5635e631240800000000000000 + internalID: 4761270535528625161 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "225_\u5C71\u77F3" + rect: + serializedVersion: 2 + x: 1824 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1baf0502556b00bb0800000000000000 + internalID: -4971773511886374223 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "225_\u897F\u65B9\u7EA2\u5730\u6BEF" + rect: + serializedVersion: 2 + x: 1856 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6f58dd0a98dd32a50800000000000000 + internalID: 6495278670777517558 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "226_\u897F\u65B9\u7EA2\u5170\u6BEF" + rect: + serializedVersion: 2 + x: 1888 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a118abe7f1374fd0800000000000000 + internalID: -2357860939024821849 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "227_\u897F\u65B91\u7EA7\u843D\u5730\u706F" + rect: + serializedVersion: 2 + x: 1920 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06f8eb760d88ad4c0800000000000000 + internalID: -4261943668677636256 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "228_\u5E72\u88C2\u5730\u9762" + rect: + serializedVersion: 2 + x: 1952 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f22a3bf603f226900800000000000000 + internalID: 676154779137974831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "228_\u897F\u65B92\u7EA7\u843D\u5730\u706F" + rect: + serializedVersion: 2 + x: 1984 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f97b4d2a791d2cdc0800000000000000 + internalID: -3620100701250340961 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "229_\u897F\u65B93\u7EA7\u843D\u5730\u706F" + rect: + serializedVersion: 2 + x: 2016 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6839567d56a4a43f0800000000000000 + internalID: -915837772950563962 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u5315\u9996" + rect: + serializedVersion: 2 + x: 2048 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef53e5a1dc2c9c770800000000000000 + internalID: 8631644346998732286 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u53CC\u5200" + rect: + serializedVersion: 2 + x: 2080 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25bd13d2721a0a130800000000000000 + internalID: 3576035293766212434 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u53CC\u65A7" + rect: + serializedVersion: 2 + x: 2112 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aefe8c9f41f055ba0800000000000000 + internalID: -6100953537439010838 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u5934\u90E8" + rect: + serializedVersion: 2 + x: 2144 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 00900ce6b092bc300800000000000000 + internalID: 273357331465505024 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u62F3\u5957" + rect: + serializedVersion: 2 + x: 2176 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8e0a2ddc468010a20800000000000000 + internalID: 3026709653612568808 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u6CD5\u5251" + rect: + serializedVersion: 2 + x: 2208 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0b3b598290c345c0800000000000000 + internalID: -4232327489195918577 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u6CD5\u888D\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2240 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ad3b3e0f5ca3a380800000000000000 + internalID: -8961129309276521048 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u6CD5\u888D\u624B\u5957" + rect: + serializedVersion: 2 + x: 2272 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 522990423190a09a0800000000000000 + internalID: -6266185953718988251 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u6CD5\u888D\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2304 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0104a22fbd1c00b90800000000000000 + internalID: -7277603847425867760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u6CD5\u888D\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2336 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12d39c498eadf0d30800000000000000 + internalID: 4399976053427748129 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u77ED\u5203" + rect: + serializedVersion: 2 + x: 2368 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13f249cfa37c72fa0800000000000000 + internalID: -5825468536820846799 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u8F7B\u7532\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2400 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3f5805b8f1158830800000000000000 + internalID: 4072681197913268026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u8F7B\u7532\u624B\u5957" + rect: + serializedVersion: 2 + x: 2432 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4744ea34500b957a0800000000000000 + internalID: -6387881059791518604 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u8F7B\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2464 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7a5f00510fa7da20800000000000000 + internalID: 3087128489758775930 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u8F7B\u7532\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2496 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 412c2df0b01c24ff0800000000000000 + internalID: -53267992320753132 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u91CD\u7532\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2528 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f55ff267456ec620800000000000000 + internalID: 2796283775921640949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u91CD\u7532\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2560 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f557dfbb5bad6a70800000000000000 + internalID: 8821895655637603829 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u91CD\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2592 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b152ddb3e448ee880800000000000000 + internalID: -8579774768547551973 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u91CD\u7532\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2624 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef6dc3fa2775b7970800000000000000 + internalID: 8753686450802579198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u54C1\u957F\u65A7" + rect: + serializedVersion: 2 + x: 2656 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e573ce9b735dbb290800000000000000 + internalID: -7873465088207997090 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u5F39\u5F13" + rect: + serializedVersion: 2 + x: 2688 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a8d2a0733d1188c0800000000000000 + internalID: -3998882887358031704 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u6CD5\u5B9D" + rect: + serializedVersion: 2 + x: 2720 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 284100e03ef6da8d0800000000000000 + internalID: -2833485569563028350 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "22\u77ED\u6756" + rect: + serializedVersion: 2 + x: 2752 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d821f197f58b7b450800000000000000 + internalID: 6104550540117480077 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "230_\u70C2\u6CE5\u8349\u5730" + rect: + serializedVersion: 2 + x: 2784 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0590036c3ccf7da0800000000000000 + internalID: -5944808423374678769 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "230_\u897F\u65B9\u5927\u63D0\u7434" + rect: + serializedVersion: 2 + x: 2816 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6789039b0992f7d0800000000000000 + internalID: -2886076136200501396 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "231_\u897F\u65B91\u7EA7\u5E8A" + rect: + serializedVersion: 2 + x: 2848 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0db6db019bfadc3d0800000000000000 + internalID: -3184696152096412720 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "232_\u77F3\u5934\u573003" + rect: + serializedVersion: 2 + x: 2880 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e62ee8f295da5350800000000000000 + internalID: 6006347880270276326 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "232_\u897F\u65B92\u7EA7\u5E8A" + rect: + serializedVersion: 2 + x: 2912 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a94889af5ea115e60800000000000000 + internalID: 7949164392339768474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "233_\u897F\u65B93\u7EA7\u5E8A" + rect: + serializedVersion: 2 + x: 2944 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94ed2d96fec525430800000000000000 + internalID: 3770178021404892745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "234_\u77F3\u5934\u5730\u9762" + rect: + serializedVersion: 2 + x: 2976 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13789a3ee0b57abb0800000000000000 + internalID: -4924867547999140047 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "234_\u897F\u65B91\u7EA7\u53F0\u706F" + rect: + serializedVersion: 2 + x: 3008 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d79120e4b1d47260800000000000000 + internalID: 7094525887799990227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "235_\u77F3\u5934\u5730\u97622" + rect: + serializedVersion: 2 + x: 3040 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34bfd3af63d096ad0800000000000000 + internalID: -2708619171108881597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "235_\u897F\u65B92\u7EA7\u540A\u706F" + rect: + serializedVersion: 2 + x: 3072 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4fd08fd38407c540800000000000000 + internalID: 5027992473419439948 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "236_\u77F3\u5934\u5730\u97623" + rect: + serializedVersion: 2 + x: 3104 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 26d48fcbc138b87f0800000000000000 + internalID: -609249165125857950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "236_\u897F\u65B93\u7EA7\u540A\u706F" + rect: + serializedVersion: 2 + x: 3136 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04dbcffa7e43ef030800000000000000 + internalID: 3530317327599713600 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "237_\u77F3\u5934\u8DEF" + rect: + serializedVersion: 2 + x: 3168 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 35ee47a669be64a00800000000000000 + internalID: 740538220012695123 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "237_\u897F\u65B91\u7EA7\u684C\u5B50" + rect: + serializedVersion: 2 + x: 3200 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b5b7bc7105323a90800000000000000 + internalID: -7335742562529462858 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "238_\u7834\u77F3\u677F\u8DEF" + rect: + serializedVersion: 2 + x: 3232 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16d62479e172f1860800000000000000 + internalID: 7502758516562750817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "238_\u897F\u65B92\u7EA7\u684C\u5B50" + rect: + serializedVersion: 2 + x: 3264 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f366fe276478f6720800000000000000 + internalID: 2841638626539824703 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "239_\u788E\u6E23\u5730" + rect: + serializedVersion: 2 + x: 3296 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86310e481ae10fe20800000000000000 + internalID: 3382236999223087976 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "239_\u897F\u65B93\u7EA7\u684C\u5B50" + rect: + serializedVersion: 2 + x: 3328 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6200ae29ac9f85c0800000000000000 + internalID: -4210974876122480020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23_\u6742\u788E\u77F3\u9508\u7EA2\u571F" + rect: + serializedVersion: 2 + x: 3360 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22d30312006b2f0c0800000000000000 + internalID: -4543368962390344414 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23_\u7070\u7EFF\u834903" + rect: + serializedVersion: 2 + x: 3392 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b029088a3c46458f0800000000000000 + internalID: -552706062751329781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u5355\u5251" + rect: + serializedVersion: 2 + x: 3424 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb325be5a7700d150800000000000000 + internalID: 5895220134384313278 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u5315\u9996" + rect: + serializedVersion: 2 + x: 3456 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 535d3d4cf32214040800000000000000 + internalID: 4630019549194081589 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u53CC\u9524" + rect: + serializedVersion: 2 + x: 3488 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d04998b853fbda4d0800000000000000 + internalID: -3121628730002664435 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u5934\u90E8" + rect: + serializedVersion: 2 + x: 3520 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49cf79efcacfa0e10800000000000000 + internalID: 2164820390840892564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u5E61\u6756" + rect: + serializedVersion: 2 + x: 3552 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fa0d5e90aacd39ed0800000000000000 + internalID: -2408338752844476241 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u5F13" + rect: + serializedVersion: 2 + x: 3584 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e77e1ed2b801bec20800000000000000 + internalID: 3236698947152111486 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u65E0\u5984\u6CD5\u7403" + rect: + serializedVersion: 2 + x: 3616 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3af3021cf50cd3ee0800000000000000 + internalID: -1279655201608810589 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u6CD5\u888D\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3648 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 952331fe3133f0400800000000000000 + internalID: 292508661510779481 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u6CD5\u888D\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3680 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9bfb1a74f91cecc0800000000000000 + internalID: -3680538257657168995 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u6CD5\u888D\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3712 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c9f0c7dc0861c1a0800000000000000 + internalID: -6791032358729352761 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u6CD5\u888D\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3744 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08bd891f3a1c708f0800000000000000 + internalID: -574277517589292160 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u8F7B\u7532\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3776 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44e79c88b2e3c6850800000000000000 + internalID: 6371535929521831492 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u8F7B\u7532\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3808 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9029162c44bcdb8e0800000000000000 + internalID: -1675959990132567543 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u8F7B\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3840 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4337afbc2796bad30800000000000000 + internalID: 4443761399100502836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u8F7B\u7532\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3872 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f21c3dbcbb2fb410800000000000000 + internalID: 1494961690938970872 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u91CD\u7532\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3904 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ccc9fb53e3fa8d30800000000000000 + internalID: 4434624940925897926 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u91CD\u7532\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3936 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc875ba3f00c84170800000000000000 + internalID: 8162985496251037899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u91CD\u7532\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3968 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba229dffe7b17da30800000000000000 + internalID: 4239887806464860843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u91CD\u7532\u978B\u5B50" + rect: + serializedVersion: 2 + x: 4000 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b610924107a610e0800000000000000 + internalID: -2299466935872514376 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "23\u54C1\u957F\u5200" + rect: + serializedVersion: 2 + x: 4032 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a920059618920aa50800000000000000 + internalID: 6530265095481590426 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "242_\u788E\u6E23\u57304" + rect: + serializedVersion: 2 + x: 4064 + y: 3904 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe81d55fde52e3030800000000000000 + internalID: 3476257666330597615 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "243_\u82D4\u85D3\u6CE5\u571F" + rect: + serializedVersion: 2 + x: 0 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ac3dcdb40243c120800000000000000 + internalID: 2432860811841846436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "244_\u8349\u5730" + rect: + serializedVersion: 2 + x: 32 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6430f2070aad3870800000000000000 + internalID: 8664268205221491820 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "245_\u8349\u57302" + rect: + serializedVersion: 2 + x: 64 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77cd957d0f8bed430800000000000000 + internalID: 3809685679346670711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "246_\u8910\u571F\u6742\u8349" + rect: + serializedVersion: 2 + x: 96 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c6b4e6ddf8b32ec0800000000000000 + internalID: -3592824677339973947 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "249_\u9E45\u5375\u77F3\u5730\u9762" + rect: + serializedVersion: 2 + x: 128 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45a8d1488786e7a60800000000000000 + internalID: 7673685681907796564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "24_\u6742\u788E\u77F3\u9EC4\u571F" + rect: + serializedVersion: 2 + x: 160 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6d0962c55876bb0f0800000000000000 + internalID: -1100171861487611690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "24\u54C1\u5315\u9996" + rect: + serializedVersion: 2 + x: 192 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de6affc4168cc8f50800000000000000 + internalID: 6885098250571851501 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "24\u54C1\u53CC\u5251" + rect: + serializedVersion: 2 + x: 224 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c02e8b77dc5867d10800000000000000 + internalID: 2123031391875162636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "24\u54C1\u53CC\u5251\u65B0" + rect: + serializedVersion: 2 + x: 256 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a839476be1a1fd7b0800000000000000 + internalID: -5197406725749828726 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "24\u54C1\u53CC\u65A7" + rect: + serializedVersion: 2 + x: 288 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6bb011202ef173990800000000000000 + internalID: -7406416006629749834 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "24\u54C1\u5934\u90E8" + rect: + serializedVersion: 2 + x: 320 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e671bc2c564bd3da0800000000000000 + internalID: -5963411982415882386 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "24\u54C1\u5F13" + rect: + serializedVersion: 2 + x: 352 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe3e0c33fa0cfdeb0800000000000000 + internalID: -4692820427976678417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "24\u54C1\u5F29" + rect: + serializedVersion: 2 + x: 384 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d3736d6fe827e8bb0800000000000000 + internalID: -4931878583571957955 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "24\u54C1\u6CD5\u5668" + rect: + serializedVersion: 2 + x: 416 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7cecd9e2ba7588d0800000000000000 + internalID: -2844732680768263046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "24\u54C1\u6CD5\u5B9D" + rect: + serializedVersion: 2 + x: 448 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1429f3b07fd9d3f90800000000000000 + internalID: -6972242963728461247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "24\u54C1\u77ED\u5203" + rect: + serializedVersion: 2 + x: 480 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d69f37606b1d2e60800000000000000 + internalID: 7939031818987083476 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "250_\u9EC4\u571F\u5730" + rect: + serializedVersion: 2 + x: 512 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2cf03d9746c83750800000000000000 + internalID: 6284991290877738027 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "25_\u6742\u788E\u77F3\u9ED1\u8910\u571F" + rect: + serializedVersion: 2 + x: 544 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 53fc557728e2af310800000000000000 + internalID: 1439514168781033269 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "25_\u7070\u7EFF\u834904" + rect: + serializedVersion: 2 + x: 576 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5de2b40688c740810800000000000000 + internalID: 1730645081990049493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "25\u54C1\u5315\u9996" + rect: + serializedVersion: 2 + x: 608 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b818ef50048a07580800000000000000 + internalID: -8831373876341603957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "25\u54C1\u5355\u5251" + rect: + serializedVersion: 2 + x: 640 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3acdb051284788730800000000000000 + internalID: 4001576370966355107 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "25\u54C1\u5F13" + rect: + serializedVersion: 2 + x: 672 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8765860e5b1406720800000000000000 + internalID: 2837340014653232760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "25\u54C1\u6CD5\u5251" + rect: + serializedVersion: 2 + x: 704 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 030947ed2791a50c0800000000000000 + internalID: -4586325289374281680 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "25\u54C1\u6CD5\u5B9D" + rect: + serializedVersion: 2 + x: 736 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f2d538d18024c820800000000000000 + internalID: 2937508599002682105 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "25\u54C1\u957F\u65A7" + rect: + serializedVersion: 2 + x: 768 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bed12cc6294b2f3e0800000000000000 + internalID: -2021354741753045525 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "25\u54C1\u957F\u67AA" + rect: + serializedVersion: 2 + x: 800 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 18f8bf237c8f96660800000000000000 + internalID: 7379702998860795777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "264_\u5927\u53F6\u8349\u5730" + rect: + serializedVersion: 2 + x: 832 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8325c952537ad320800000000000000 + internalID: 2583504133781005195 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "268_\u5927\u7EB9\u7406\u8349\u57302" + rect: + serializedVersion: 2 + x: 864 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ead91d2075cf5c470800000000000000 + internalID: 8414408929451285934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "26_\u7EFF\u834901" + rect: + serializedVersion: 2 + x: 896 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ed9ba7429d53118f0800000000000000 + internalID: -571616470963144226 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "26\u5315\u9996" + rect: + serializedVersion: 2 + x: 928 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e30b741a823df9c90800000000000000 + internalID: -7160772711037816770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "26\u5355\u5251" + rect: + serializedVersion: 2 + x: 960 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dab1d8cf9fedf2c20800000000000000 + internalID: 3184008626839559085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "26\u54C1\u5315\u9996" + rect: + serializedVersion: 2 + x: 992 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f5094b89aad49230800000000000000 + internalID: 3644778420170720755 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "26\u54C1\u53CC\u65A7" + rect: + serializedVersion: 2 + x: 1024 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9cd4e2da72c5ad440800000000000000 + internalID: 4961379264980995529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "26\u54C1\u5E61\u6756" + rect: + serializedVersion: 2 + x: 1056 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9009f3866c1632ed0800000000000000 + internalID: -2439999068324261879 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "26\u54C1\u5F13" + rect: + serializedVersion: 2 + x: 1088 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49c3639d724c5fcb0800000000000000 + internalID: -4830739349858009964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "26\u54C1\u6CD5\u5251" + rect: + serializedVersion: 2 + x: 1120 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b489d246136134860800000000000000 + internalID: 7512873004774037579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "26\u6CD5\u5668" + rect: + serializedVersion: 2 + x: 1152 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd889106f9d0fbf70800000000000000 + internalID: 9205091141531830493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "26\u6CD5\u7403" + rect: + serializedVersion: 2 + x: 1184 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4533755bd318cf40800000000000000 + internalID: 5748866757090817354 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "26\u77ED\u6756" + rect: + serializedVersion: 2 + x: 1216 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 136dbda4d18e19690800000000000000 + internalID: -7597035883889699279 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "26\u957F\u9524" + rect: + serializedVersion: 2 + x: 1248 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b699edbd945b8410800000000000000 + internalID: 1480369938994140852 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "271_\u767D\u82B1\u6742\u8349" + rect: + serializedVersion: 2 + x: 1280 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c1bc8757078699c0800000000000000 + internalID: -3920797959976078909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "272_\u8584\u88C2\u571F-02" + rect: + serializedVersion: 2 + x: 1312 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56b02e1422dd94b30800000000000000 + internalID: 4272188860741585765 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "273_\u8584\u88C2\u571F" + rect: + serializedVersion: 2 + x: 1344 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02586ddd9e3c6e880800000000000000 + internalID: -8581956630691281632 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "275_\u9EC4\u82B1\u8349\u5730" + rect: + serializedVersion: 2 + x: 1376 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b5f33d2a764be780800000000000000 + internalID: -8652744768503941707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "27_\u602A\u5F02\u677E\u6811" + rect: + serializedVersion: 2 + x: 1408 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5988821aaa96cda60800000000000000 + internalID: 7700145644465850517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "27_\u7EFF\u834902" + rect: + serializedVersion: 2 + x: 1440 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5fbc7419d15d0c580800000000000000 + internalID: -8808806548168520715 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "27\u5315\u9996" + rect: + serializedVersion: 2 + x: 1472 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fd667bae1ce361d0800000000000000 + internalID: -3358581280618418696 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "27\u5355\u5200" + rect: + serializedVersion: 2 + x: 1504 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a073f93c604ac9db0800000000000000 + internalID: -4783768355215558902 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "27\u53CC\u5200" + rect: + serializedVersion: 2 + x: 1536 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d1fa73131e92f300800000000000000 + internalID: 284463531246154201 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "27\u53CC\u65A7\u5B50" + rect: + serializedVersion: 2 + x: 1568 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06c2fd73927d0c010800000000000000 + internalID: 1207201272166296672 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "27\u6BDB\u5F13" + rect: + serializedVersion: 2 + x: 1600 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63af72b6c20d06c40800000000000000 + internalID: 5503627633841666614 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "27\u6CD5\u5251" + rect: + serializedVersion: 2 + x: 1632 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21a0647dee9be70c0800000000000000 + internalID: -4576015735896798702 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "27\u6CD5\u7403" + rect: + serializedVersion: 2 + x: 1664 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3933df403c7521e0800000000000000 + internalID: -2223234294097954497 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "27\u6CD5\u8F6E" + rect: + serializedVersion: 2 + x: 1696 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9f49acb8e996d2e0800000000000000 + internalID: -2101322951245082721 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "27\u756A\u4ED7" + rect: + serializedVersion: 2 + x: 1728 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e5b64f7005504d810800000000000000 + internalID: 1789060793261910878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "27\u77ED\u6756" + rect: + serializedVersion: 2 + x: 1760 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77a61c2660c7843e0800000000000000 + internalID: -2069267661908252041 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "27\u957F\u9524" + rect: + serializedVersion: 2 + x: 1792 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9575de2ed1c6ec00800000000000000 + internalID: 929643533111227803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "284_\u5AE9\u6742\u8349" + rect: + serializedVersion: 2 + x: 1824 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 973090d5be0036fa0800000000000000 + internalID: -5808798083499621511 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "286_\u6A59\u548C\u7070\u9EC4\u53F6\u6A44\u6984\u7EFF\u6742\u8349" + rect: + serializedVersion: 2 + x: 1856 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b71263b46fcb7e800800000000000000 + internalID: 641689237933400443 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "289_\u7070\u8910\u571F\u5AE9\u6742\u8349" + rect: + serializedVersion: 2 + x: 1888 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0eca0a270ff1b300800000000000000 + internalID: 266274259226775053 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "28_\u602A\u5F02\u677E\u681101" + rect: + serializedVersion: 2 + x: 1920 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85b1aa6c397aeea70800000000000000 + internalID: 8858201770219412312 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "28_\u6D45\u7070\u9EC4\u571F" + rect: + serializedVersion: 2 + x: 1952 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89f8b9a4c01ab5d00800000000000000 + internalID: 962540019537121176 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "28_\u7EFF\u834903" + rect: + serializedVersion: 2 + x: 1984 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 643d88185d890f7a0800000000000000 + internalID: -6345403832196345018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "28\u5315\u9996" + rect: + serializedVersion: 2 + x: 2016 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ce81b47316679320800000000000000 + internalID: 2564630746558992064 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "28\u54C1\u53CC\u5200" + rect: + serializedVersion: 2 + x: 2048 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a006935af890ac920800000000000000 + internalID: 3011229813407571978 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "28\u54C1\u53CC\u5251" + rect: + serializedVersion: 2 + x: 2080 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff98d63edc9450370800000000000000 + internalID: 8288111837877996031 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "28\u54C1\u53CC\u624B\u65A7" + rect: + serializedVersion: 2 + x: 2112 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8e7e125726bdb5b0800000000000000 + internalID: -5350920502248571253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "28\u54C1\u5F13" + rect: + serializedVersion: 2 + x: 2144 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b673a5fc77891b3d0800000000000000 + internalID: -3192603020481644693 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "28\u54C1\u77ED\u6756" + rect: + serializedVersion: 2 + x: 2176 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f53e5332267dfcb0800000000000000 + internalID: -4828573336208525840 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "28\u5E61\u4E08" + rect: + serializedVersion: 2 + x: 2208 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a55a5dea14b835e90800000000000000 + internalID: -7038128678427581094 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "28\u6CD5\u5251" + rect: + serializedVersion: 2 + x: 2240 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29f9a1e6bb1ff61c0800000000000000 + internalID: -4508118914666160238 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "28\u6CD5\u5668" + rect: + serializedVersion: 2 + x: 2272 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ed61e5277883a4070800000000000000 + internalID: 8091341834915026654 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "28\u6CD5\u7403" + rect: + serializedVersion: 2 + x: 2304 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88731c5a989ffacc0800000000000000 + internalID: -3697462399461148792 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "28\u957F\u67AA" + rect: + serializedVersion: 2 + x: 2336 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c1f71ecbc23011d0800000000000000 + internalID: -3382147469237816892 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "290_\u7070\u9EC4\u571F\u5AE9\u6742\u8349" + rect: + serializedVersion: 2 + x: 2368 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e746dafbdd49645f0800000000000000 + internalID: -772766605922966402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "29_\u7EFF\u834904" + rect: + serializedVersion: 2 + x: 2400 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f44f01dae191e8620800000000000000 + internalID: 2778185639677457487 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "29\u54C1\u5315\u9996" + rect: + serializedVersion: 2 + x: 2432 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0db9f102e4ab37510800000000000000 + internalID: 1545783941827369936 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "29\u54C1\u53CC\u5200\uFF08\u65A7\uFF09" + rect: + serializedVersion: 2 + x: 2464 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 28915a69a63e89710800000000000000 + internalID: 1700358906265803138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "29\u54C1\u53CC\u624B\u53CC\u5251" + rect: + serializedVersion: 2 + x: 2496 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54d116311f5d429b0800000000000000 + internalID: -5105720846142333627 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "29\u54C1\u5E61\u6756" + rect: + serializedVersion: 2 + x: 2528 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba4e65cc45a171e80800000000000000 + internalID: -8208062844351617877 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "29\u54C1\u5F13" + rect: + serializedVersion: 2 + x: 2560 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36ed03137736269e0800000000000000 + internalID: -1629630751577153949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "29\u54C1\u6CD5\u5251" + rect: + serializedVersion: 2 + x: 2592 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c2cb17fc222dda80800000000000000 + internalID: -8440552550102744379 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "29\u54C1\u6CD5\u5668" + rect: + serializedVersion: 2 + x: 2624 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d54fa1ee39c615340800000000000000 + internalID: 4850777656265471069 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "29\u54C1\u6CD5\u56682" + rect: + serializedVersion: 2 + x: 2656 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d68da39c538fc860800000000000000 + internalID: 7552399533761464025 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "29\u54C1\u6CD5\u7403" + rect: + serializedVersion: 2 + x: 2688 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f9054a68e1d2ec50800000000000000 + internalID: 6693142792371505651 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "29\u54C1\u77ED\u5203" + rect: + serializedVersion: 2 + x: 2720 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff7439f2d522056c0800000000000000 + internalID: -4156784672437483521 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "29\u54C1\u77ED\u6756" + rect: + serializedVersion: 2 + x: 2752 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61048d2f6202d83a0800000000000000 + internalID: -6661632922155991018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "29\u54C1\u957F\u5200" + rect: + serializedVersion: 2 + x: 2784 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f33c3373279be450800000000000000 + internalID: 6119150697225925617 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "29\u54C1\u957F\u9524" + rect: + serializedVersion: 2 + x: 2816 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f147d6ea24ccac2d0800000000000000 + internalID: -3257566793682815969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2_\u4ED9\u754C\u6811\u6728" + rect: + serializedVersion: 2 + x: 2848 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2fc5f956551a17e60800000000000000 + internalID: 7958319404689612018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2_\u5411\u65E5\u847502" + rect: + serializedVersion: 2 + x: 2880 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aea51e2da8a6e7600800000000000000 + internalID: 467928555769125610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2\u7EA7\u65F6\u88C5\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 2912 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 903cbf29a70f6ac50800000000000000 + internalID: 6676287906865988361 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 2944 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b804ed4b61548660800000000000000 + internalID: 7387118810104596658 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 2976 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68aac0ca287b14040800000000000000 + internalID: 4630183663773723270 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 3008 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 062c22140fc29e5c0800000000000000 + internalID: -4185764968267595168 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2\u7EA7\u989C\u6599" + rect: + serializedVersion: 2 + x: 3040 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db87579734a8d1610800000000000000 + internalID: 1593581865564207293 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "2\u7EA7\u98DE\u5251\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 3072 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 131e4ab9c66c77f80800000000000000 + internalID: -8108794434287247055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 3 + rect: + serializedVersion: 2 + x: 3104 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f31205e63c870ea0800000000000000 + internalID: -5906598218874874896 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "302_\u96E8\u6797\u8349\u5730" + rect: + serializedVersion: 2 + x: 3136 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5c37c5fb727d8fb0800000000000000 + internalID: -4643929764019094435 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "306_\u8349\u5730\u5218" + rect: + serializedVersion: 2 + x: 3168 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d8d28d358fab3900800000000000000 + internalID: 665318356764776657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "30_\u7EFF\u834905" + rect: + serializedVersion: 2 + x: 3200 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63cc3ec05ee1aae10800000000000000 + internalID: 2209612536291249206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "31_\u6DF1\u7070\u9EC4\u571F" + rect: + serializedVersion: 2 + x: 3232 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42e282f76184d6500800000000000000 + internalID: 391048004110921252 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "31_\u7EFF\u834906" + rect: + serializedVersion: 2 + x: 3264 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b95461fba1db1760800000000000000 + internalID: 7429762546697263542 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "32_\u7EFF\u834907" + rect: + serializedVersion: 2 + x: 3296 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 332739b76c5d51890800000000000000 + internalID: -7487843756980080077 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "33_\u6DF1\u9508\u7EA2\u571F" + rect: + serializedVersion: 2 + x: 3328 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82a432b7efcbc7a50800000000000000 + internalID: 6520294161699260968 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "33_\u7EFF\u834908" + rect: + serializedVersion: 2 + x: 3360 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f3c16015cc0326c0800000000000000 + internalID: -4169474789492014091 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "34_\u82B1\u8349" + rect: + serializedVersion: 2 + x: 3392 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 283e51990d6fb7f90800000000000000 + internalID: -6954693823761620094 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "35_\u7530\u5730" + rect: + serializedVersion: 2 + x: 3424 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4427479cb79f533f0800000000000000 + internalID: -921556238671252924 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "35_\u9EC4\u7EFF\u834901" + rect: + serializedVersion: 2 + x: 3456 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3b3b13253fde0520800000000000000 + internalID: 2670317048392530746 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "37_\u7EA2\u788E\u53F6\u9508\u7EA2\u571F" + rect: + serializedVersion: 2 + x: 3488 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85ebfda51c1a40f10800000000000000 + internalID: 2235089166907981400 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "38_\u67F3\u6811" + rect: + serializedVersion: 2 + x: 3520 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cfce65c6f84568490800000000000000 + internalID: -7744409534242296580 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "38_\u9EC4\u834901" + rect: + serializedVersion: 2 + x: 3552 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 173ee96798e68c450800000000000000 + internalID: 6109254431207777137 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "39_\u6843\u6811" + rect: + serializedVersion: 2 + x: 3584 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e798890a385719c0800000000000000 + internalID: -3956596741330397214 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "39_\u9EC4\u834902" + rect: + serializedVersion: 2 + x: 3616 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8570966c7f58abf0800000000000000 + internalID: -312895186200922742 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "3_\u50CF\u6811" + rect: + serializedVersion: 2 + x: 3648 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7229b367d16265e90800000000000000 + internalID: -7037395459740298713 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "3_\u5C0F\u9EC4\u82B101" + rect: + serializedVersion: 2 + x: 3680 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e27f16101e0bc5890800000000000000 + internalID: -7467899601649797330 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "3\u7EA7\u65F6\u88C5\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 3712 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8103fcc51951dc10800000000000000 + internalID: 2076538853362172300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "3\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 3744 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46b3157e58e055340800000000000000 + internalID: 4851800141835877220 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "3\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 3776 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f99e7bab08659ff0800000000000000 + internalID: -30003423176910344 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "3\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 3808 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6847c859cedb5810800000000000000 + internalID: 1755241436150188140 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "3\u7EA7\u98DE\u5251\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 3840 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51b12b761b7999480800000000000000 + internalID: -8891909201061602539 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 4 + rect: + serializedVersion: 2 + x: 3872 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf00de4547699c6e0800000000000000 + internalID: -1816755548282093316 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "40_\u6843\u6811\u5C0F" + rect: + serializedVersion: 2 + x: 3904 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 450822188ef8e1ff0800000000000000 + internalID: -63455115974901676 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "40_\u9508\u7EA2\u571F" + rect: + serializedVersion: 2 + x: 3936 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e6d549f66f1bd330800000000000000 + internalID: 3736614842963187424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "41_\u6843\u6811\u5C0F\u5C0F" + rect: + serializedVersion: 2 + x: 3968 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e088e1cfde69d3b00800000000000000 + internalID: 809969456877832206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "41_\u9508\u9EC4\u571F" + rect: + serializedVersion: 2 + x: 4000 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 653347b8fb26cf480800000000000000 + internalID: -8864101391754054826 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "42_\u6851\u6811" + rect: + serializedVersion: 2 + x: 4032 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6dfdd1389e4039520800000000000000 + internalID: 2707513201953464278 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "43_\u68A8\u6811" + rect: + serializedVersion: 2 + x: 4064 + y: 3872 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0344a68fcbca1e340800000000000000 + internalID: 4891380597922612272 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "44_\u68A8\u681101" + rect: + serializedVersion: 2 + x: 0 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 161aba6811ef66880800000000000000 + internalID: -8617921485699571359 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "45_\u68D5\u6988" + rect: + serializedVersion: 2 + x: 32 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd8ab051b3d7850a0800000000000000 + internalID: -6892621536980916003 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "46_\u68D5\u698801" + rect: + serializedVersion: 2 + x: 64 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 824608b024bbfacb0800000000000000 + internalID: -4850452381319535576 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "47_\u6930\u5B50\u6811" + rect: + serializedVersion: 2 + x: 96 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6756084a6776d32b0800000000000000 + internalID: -5603208602115349130 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "48_\u6930\u5B50\u681101" + rect: + serializedVersion: 2 + x: 128 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a08cb7b8d0986ac90800000000000000 + internalID: -7158883866391099382 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "49\u5173\u8272\u5B50_1" + rect: + serializedVersion: 2 + x: 160 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b20eedc12160f0d80800000000000000 + internalID: -8282394514847506389 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "49\u5173\u8272\u5B50_2" + rect: + serializedVersion: 2 + x: 192 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9a5f79c7dd65e9840800000000000000 + internalID: 5232715326329189801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "49\u5173\u8272\u5B50_3" + rect: + serializedVersion: 2 + x: 224 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0ab61d13633fefe0800000000000000 + internalID: -1157650078428120564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "49\u5173\u8272\u5B50_4" + rect: + serializedVersion: 2 + x: 256 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25d0862bb60dcaa50800000000000000 + internalID: 6533826320380988754 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "49\u5173\u8272\u5B50_5" + rect: + serializedVersion: 2 + x: 288 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4dafe518c4b032b00800000000000000 + internalID: 802497581817985748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "49\u5173\u8272\u5B50_6" + rect: + serializedVersion: 2 + x: 320 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6983959bfb6685ac0800000000000000 + internalID: -3866227306463151978 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "4_\u5370\u5EA6\u6995" + rect: + serializedVersion: 2 + x: 352 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6fb53211cd2b78380800000000000000 + internalID: -8969003474634974218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "4_\u5C0F\u9EC4\u82B102" + rect: + serializedVersion: 2 + x: 384 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 53542539e32233e50800000000000000 + internalID: 6787806715532428597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "4\u7EA7\u65F6\u88C5\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 416 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf6fe3949a856cc50800000000000000 + internalID: 6685128180979660539 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "4\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 448 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99dea476f481dc960800000000000000 + internalID: 7623776473522564505 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "4\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 480 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9282213e2a91b0010800000000000000 + internalID: 1156045916735678505 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "4\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 512 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 115cd98d8fa2ffec0800000000000000 + internalID: -3531056334560705263 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "4\u7EA7\u98DE\u5251\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 544 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6a44790a191a3780800000000000000 + internalID: -8702615730321601940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 5 + rect: + serializedVersion: 2 + x: 576 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c129b93bb97edb10800000000000000 + internalID: 2008176328888099268 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "50_\u5343\u5C42\u7EA2" + rect: + serializedVersion: 2 + x: 608 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58ea9aff6c4e49030800000000000000 + internalID: 3500674353717685893 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "53_\u5927\u5047\u5C71" + rect: + serializedVersion: 2 + x: 640 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 189fde9fa22de6f70800000000000000 + internalID: 9182507772278602113 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "53_\u5927\u6735\u9EC4\u82B1" + rect: + serializedVersion: 2 + x: 672 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff1f645df79a4aee0800000000000000 + internalID: -1250688429998018049 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "54_\u5927\u6735\u9EC4\u82B101" + rect: + serializedVersion: 2 + x: 704 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6d9a540ba4ba0ce20800000000000000 + internalID: 3368880858546416086 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "54_\u5C0F\u5047\u5C71" + rect: + serializedVersion: 2 + x: 736 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc594ee35a5c11ed0800000000000000 + internalID: -2444955809170025009 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "55_\u55B7\u6CC9" + rect: + serializedVersion: 2 + x: 768 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e2c51c90129ceaa0800000000000000 + internalID: -6130364392722283801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "55_\u5C0F\u788E\u9EC4\u82B101" + rect: + serializedVersion: 2 + x: 800 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3720945ba1277f3d0800000000000000 + internalID: -3172941953423048077 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "56_\u5C0F\u788E\u9EC4\u82B102" + rect: + serializedVersion: 2 + x: 832 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 801479a67fa492660800000000000000 + internalID: 7361497492419461384 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "56_\u77F3\u6865" + rect: + serializedVersion: 2 + x: 864 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78ed875136b07ffb0800000000000000 + internalID: -4614206773027873145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "57_\u5C0F\u788E\u9EC4\u82B103" + rect: + serializedVersion: 2 + x: 896 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f143244ce9e1fbaf0800000000000000 + internalID: -378550176429493217 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "58_\u5C0F\u9EC4\u82B105" + rect: + serializedVersion: 2 + x: 928 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fb8c93cc0e4218f0800000000000000 + internalID: -571308385994241036 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "58_\u767D\u6768" + rect: + serializedVersion: 2 + x: 960 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 630105f588a2e5fb0800000000000000 + internalID: -4657238199451512778 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "59_\u5C0F\u9EC4\u82B106" + rect: + serializedVersion: 2 + x: 992 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b7b2437f5953a2740800000000000000 + internalID: 5127970043928521595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "59_\u6DF1\u7070\u8910\u571F" + rect: + serializedVersion: 2 + x: 1024 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 138b243d5145c3190800000000000000 + internalID: -7981411986891950031 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "59_\u767D\u676801" + rect: + serializedVersion: 2 + x: 1056 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 673fef1781e727560800000000000000 + internalID: 7310043788632585078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "5_\u5916\u8116\u767D\u6811" + rect: + serializedVersion: 2 + x: 1088 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f11397f50f47aad40800000000000000 + internalID: 5596414062704013599 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "5_\u5C0F\u9EC4\u82B103" + rect: + serializedVersion: 2 + x: 1120 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ecccd7a6847287c0800000000000000 + internalID: -4070562991498801943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "5\u7EA7\u65F6\u88C5\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 1152 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb590df50f54d5ec0800000000000000 + internalID: -3576625630360332866 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "5\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 1184 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0679639f31e228300800000000000000 + internalID: 252815192406529888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "5\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 1216 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee6960f8900719c70800000000000000 + internalID: 8976078718682699502 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "5\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 1248 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eacebb3b3a0700ca0800000000000000 + internalID: -6052714050788528978 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "5\u7EA7\u98DE\u5251\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 1280 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff5d26d45ae661e90800000000000000 + internalID: -7055330109982321153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 6 + rect: + serializedVersion: 2 + x: 1312 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2398439b7f762b060800000000000000 + internalID: 6967745887157389618 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "60_\u5927\u77F3\u72EE\u5B50" + rect: + serializedVersion: 2 + x: 1344 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0eb8d45925e573610800000000000000 + internalID: 1600851901338717152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "60_\u5EB7\u5948\u85AA" + rect: + serializedVersion: 2 + x: 1376 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f1260ce8d1847f40800000000000000 + internalID: 5725343794967486962 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "60_\u6DF1\u7070\u9EC4\u571F" + rect: + serializedVersion: 2 + x: 1408 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54f92ca79e2dbe250800000000000000 + internalID: 5975101230865882949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "61_\u5C0F\u77F3\u72EE\u5B50" + rect: + serializedVersion: 2 + x: 1440 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cdc10c44e626ce8c0800000000000000 + internalID: -3968688945880884004 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "61_\u5EB7\u5948\u85AA01" + rect: + serializedVersion: 2 + x: 1472 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7bf877827f071da40800000000000000 + internalID: 5391214435777351607 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "61_\u6DF1\u9508\u7EA2\u571F" + rect: + serializedVersion: 2 + x: 1504 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7019c82d11da511e0800000000000000 + internalID: -2227684148606365433 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "61_\u7AF9\u679701" + rect: + serializedVersion: 2 + x: 1536 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c467dee21f055650800000000000000 + internalID: 6220895034273129670 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "62_\u6843\u91D1\u5A18" + rect: + serializedVersion: 2 + x: 1568 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22f98f728923984e0800000000000000 + internalID: -1978994932165599454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "62_\u6DF1\u9EC4\u571F" + rect: + serializedVersion: 2 + x: 1600 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4378d706b4c64790800000000000000 + internalID: -7546127839517969586 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "62_\u7AF9\u679702" + rect: + serializedVersion: 2 + x: 1632 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 335ea52df29a44e40800000000000000 + internalID: 5639818656232432947 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "63_\u7070\u8272\u571F" + rect: + serializedVersion: 2 + x: 1664 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88eb84eea743bd530800000000000000 + internalID: 3880753206498213512 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "63_\u72ED\u53F6\u756A" + rect: + serializedVersion: 2 + x: 1696 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32ac1656d06e1d670800000000000000 + internalID: 8561877311817894435 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "63_\u7AF9\u679703" + rect: + serializedVersion: 2 + x: 1728 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 134f96b84a4163c90800000000000000 + internalID: -7190537058104249295 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "64_\u7389\u7C73" + rect: + serializedVersion: 2 + x: 1760 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fca9dcfe699742560800000000000000 + internalID: 7288083786167589583 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "64_\u767D\u571F" + rect: + serializedVersion: 2 + x: 1792 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d642c46ead35c96c0800000000000000 + internalID: -4135338158201232275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "64_\u7AF9\u679704" + rect: + serializedVersion: 2 + x: 1824 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a5a0028598e5b1a0800000000000000 + internalID: -6794268733989673567 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "65_\u7CD6\u68A7\u6850" + rect: + serializedVersion: 2 + x: 1856 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d3443d869ccd24b80800000000000000 + internalID: -8411918396369451971 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "65_\u7D2B\u8272\u5C0F\u82B1" + rect: + serializedVersion: 2 + x: 1888 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fa6a565d8c2b32260800000000000000 + internalID: 7071692415545222831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "66_\u7CD6\u68A7\u685001" + rect: + serializedVersion: 2 + x: 1920 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d2b6fc8d5b90a5e0800000000000000 + internalID: -1900348216651107623 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "68_\u9508\u7EA2\u6742\u8349\u70B9\u571F" + rect: + serializedVersion: 2 + x: 1952 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1cf52a37e69fc4d30800000000000000 + internalID: 4417179587325353921 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "69_\u82A6\u82C7\u82B1" + rect: + serializedVersion: 2 + x: 1984 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5797ce02e19e00cf0800000000000000 + internalID: -287974060541052555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "69_\u82F1\u56FD\u50CF\u6811" + rect: + serializedVersion: 2 + x: 2016 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9a1fff1fb2f78fae0800000000000000 + internalID: -1515321447889768023 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "69_\u96E8\u6797\u571F" + rect: + serializedVersion: 2 + x: 2048 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 697f221a5c56803a0800000000000000 + internalID: -6698992546227226730 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "6_\u6A61\u80F6\u6811" + rect: + serializedVersion: 2 + x: 2080 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20c2b2301d25e4dd0800000000000000 + internalID: -2499969685489243134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "6\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 2112 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4165f7a32ba84330800000000000000 + internalID: 3695391663887573322 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "6\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 2144 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e15e74751be365b0800000000000000 + internalID: -5376195052768964125 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "6\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 2176 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 496afe0e4a1140e60800000000000000 + internalID: 7927480643925026452 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 7 + rect: + serializedVersion: 2 + x: 2208 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d02697f23f0493a50800000000000000 + internalID: 6501298950303736333 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "70_\u82B1\u817E" + rect: + serializedVersion: 2 + x: 2240 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8366d58fa37e6ce10800000000000000 + internalID: 2217714106987537976 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "71_\u8774\u8776\u82B1" + rect: + serializedVersion: 2 + x: 2272 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d21f14100d9705e80800000000000000 + internalID: -8191913787905674963 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "71_\u9EC4\u571F" + rect: + serializedVersion: 2 + x: 2304 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b2b14f9d3241a0b0800000000000000 + internalID: -5719217219351498062 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "72_\u83E9\u63D0\u6811" + rect: + serializedVersion: 2 + x: 2336 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d5ae9beb72f55e20800000000000000 + internalID: 3338841312813032921 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "72_\u9EA6\u5B50" + rect: + serializedVersion: 2 + x: 2368 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff6b5d06c1aee92d0800000000000000 + internalID: -3269918871819798785 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "73_\u704C\u672801" + rect: + serializedVersion: 2 + x: 2400 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9440cc648dd8e9090800000000000000 + internalID: -8025821525887417271 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "73_\u83E9\u63D0\u681101" + rect: + serializedVersion: 2 + x: 2432 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c738cc2a5d4582690800000000000000 + internalID: -7626752692415855748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "74_\u704C\u672802" + rect: + serializedVersion: 2 + x: 2464 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd0e473123d4249f0800000000000000 + internalID: -485740932332461860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "75_\u704C\u672803" + rect: + serializedVersion: 2 + x: 2496 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a019dfede4cde9640800000000000000 + internalID: 5088746860281958666 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "76_\u704C\u672804" + rect: + serializedVersion: 2 + x: 2528 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c08c5ce04dc766e0800000000000000 + internalID: -1844279843657842496 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "77_\u704C\u672805" + rect: + serializedVersion: 2 + x: 2560 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 127668d1d09511da0800000000000000 + internalID: -5975897317679143135 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "78_\u704C\u672806" + rect: + serializedVersion: 2 + x: 2592 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b703fed8f171e2500800000000000000 + internalID: 373261243411017851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "79_\u704C\u672807" + rect: + serializedVersion: 2 + x: 2624 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 18cff6c53456242b0800000000000000 + internalID: -5601803646507418495 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "7_\u5C0F\u9EC4\u82B104" + rect: + serializedVersion: 2 + x: 2656 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3af711a9c3717f600800000000000000 + internalID: 501895432525414307 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "7_\u6C99\u6811" + rect: + serializedVersion: 2 + x: 2688 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32427c64086212ec0800000000000000 + internalID: -3593548695279819741 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "7\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 2720 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0446c17d02f947ac0800000000000000 + internalID: -3858284017352940480 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "7\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 2752 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b43d4818f67be07d0800000000000000 + internalID: -2950219016338877621 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "7\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 2784 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cabee4948a1b52700800000000000000 + internalID: 515013068746320812 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8 + rect: + serializedVersion: 2 + x: 2816 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fbbdbd3b0aa8d3d0800000000000000 + internalID: -3181606171480048652 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "80_\u704C\u6728\u7403" + rect: + serializedVersion: 2 + x: 2848 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 225fe6c60318b4f30800000000000000 + internalID: 4560881092620383522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "82_\u8349\u85E401" + rect: + serializedVersion: 2 + x: 2880 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ede62220055db7030800000000000000 + internalID: 3493620475565862622 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "83_\u8349\u85E402" + rect: + serializedVersion: 2 + x: 2912 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ddc2657b71d8f58e0800000000000000 + internalID: -1702487001123115811 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "85_\u4EAC\u57CE\u5730\u9762" + rect: + serializedVersion: 2 + x: 2944 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5625de48aea0e7ba0800000000000000 + internalID: -6089417643789561243 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "86_\u8349\u85E403" + rect: + serializedVersion: 2 + x: 2976 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b936d73314dc39470800000000000000 + internalID: 8400283409896530843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "88_\u4E00\u7EA7\u5B57\u753B" + rect: + serializedVersion: 2 + x: 3008 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 28f8e5dfe25dab660800000000000000 + internalID: 7402463335332876162 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "88_\u9AD8\u704C\u672801" + rect: + serializedVersion: 2 + x: 3040 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d4f427fb0e2397c0800000000000000 + internalID: -4065855409659513648 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "89_\u4E8C\u7EA7\u5B57\u753B" + rect: + serializedVersion: 2 + x: 3072 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08c70fc18466d9620800000000000000 + internalID: 2782492604694035584 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "89_\u9AD8\u704C\u672802" + rect: + serializedVersion: 2 + x: 3104 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07a7abe3949935450800000000000000 + internalID: 6076368862117001840 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "8_\u6C99\u681101" + rect: + serializedVersion: 2 + x: 3136 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb0ce52f1677a91a0800000000000000 + internalID: -6801993024627883841 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "8_\u72D7\u5C3E\u8349" + rect: + serializedVersion: 2 + x: 3168 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f632c675fc1431250800000000000000 + internalID: 5914143094448333679 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "8\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 3200 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b35447d9becb4bf30800000000000000 + internalID: 4590501640342357307 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "8\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 3232 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ebd24c74df3cb3440800000000000000 + internalID: 4916738910803209662 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "8\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 3264 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b471baff85d0713d0800000000000000 + internalID: -3236103131344726197 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 9 + rect: + serializedVersion: 2 + x: 3296 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 227e93f76ec86be90800000000000000 + internalID: -7010260848350730462 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "90_\u4E09\u7EA7\u5B57\u753B" + rect: + serializedVersion: 2 + x: 3328 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e2b5f4143970b750800000000000000 + internalID: 6318683541797712608 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "90_\u5C0F\u65B9\u7816\u5730\u976203" + rect: + serializedVersion: 2 + x: 3360 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ae66653cb46d6d70800000000000000 + internalID: 9037990786714988193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "91_\u56DB\u7EA7\u5B57\u753B" + rect: + serializedVersion: 2 + x: 3392 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd00bd714c355f820800000000000000 + internalID: 2951357232490152156 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "91_\u6761\u77F3\u5730\u9762" + rect: + serializedVersion: 2 + x: 3424 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b9c9b7e9049b8570800000000000000 + internalID: 8470026294463678905 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "91_\u9AD8\u704C\u672803" + rect: + serializedVersion: 2 + x: 3456 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b23e294caf0720a60800000000000000 + internalID: 7638792140315878187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "92_\u4E94\u7EA7\u5B57\u753B" + rect: + serializedVersion: 2 + x: 3488 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 502efb7a77f32aad0800000000000000 + internalID: -2692519844066106875 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "92_\u9E45\u5375\u77F3\u50CF\u6811\u5927" + rect: + serializedVersion: 2 + x: 3520 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8c950f646bbc4300800000000000000 + internalID: 237770920377556108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "93_\u516D\u7EA7\u5B57\u753B" + rect: + serializedVersion: 2 + x: 3552 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 097698c90f53f92b0800000000000000 + internalID: -5575678506126710896 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "93_\u9E45\u5375\u77F3\u50CF\u681101" + rect: + serializedVersion: 2 + x: 3584 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e11a519cae1e12c0800000000000000 + internalID: -4459092854528405015 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "94_\u4E03\u7EA7\u5B57\u753B" + rect: + serializedVersion: 2 + x: 3616 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7dc571858c4e23880800000000000000 + internalID: -8632585986593301289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "94_\u9E45\u5375\u77F3\u50CF\u681102" + rect: + serializedVersion: 2 + x: 3648 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce448091e17a20000800000000000000 + internalID: 746697664251116 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "95_\u516B\u7EA7\u5B57\u753B" + rect: + serializedVersion: 2 + x: 3680 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e493599312ee19fd0800000000000000 + internalID: -2336824905161164466 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "95_\u9E45\u5375\u77F3\u50CF\u681103" + rect: + serializedVersion: 2 + x: 3712 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 95f51f852034f2e60800000000000000 + internalID: 7939638345438682969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "96_\u767D\u8721\u70DB" + rect: + serializedVersion: 2 + x: 3744 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 353f405a6c82d23b0800000000000000 + internalID: -5535723533331270829 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "96_\u77F3\u5934\u5730" + rect: + serializedVersion: 2 + x: 3776 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 00f833b228923d2e0800000000000000 + internalID: -2102290962004603136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "96_\u9E45\u5375\u77F3\u50CF\u681104" + rect: + serializedVersion: 2 + x: 3808 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21cd923830e9ab7f0800000000000000 + internalID: -595990262750520302 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "97_\u7EA2\u8721\u70DB" + rect: + serializedVersion: 2 + x: 3840 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 18576a43f5d672750800000000000000 + internalID: 6280108461064091009 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "98_\u7EB1\u7F69\u706F" + rect: + serializedVersion: 2 + x: 3872 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57e7d1d881abcd380800000000000000 + internalID: -8945070145255145867 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "99_\u53E4\u8463\u7389\u74A7" + rect: + serializedVersion: 2 + x: 3904 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a190738da84f5450800000000000000 + internalID: 6079657932045193637 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "99\u5355\u52003" + rect: + serializedVersion: 2 + x: 3936 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 236bf2eeb5d3540e0800000000000000 + internalID: -2286353770773236174 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "99\u53CC\u52511" + rect: + serializedVersion: 2 + x: 3968 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 405a6183a708b1440800000000000000 + internalID: 4907657481365660932 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "99\u53CC\u65A71" + rect: + serializedVersion: 2 + x: 4000 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d93083ec9e8ef2d10800000000000000 + internalID: 2103155641890112413 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "99\u5B9D\u8F6E" + rect: + serializedVersion: 2 + x: 4032 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bfdae2d8af25f490800000000000000 + internalID: -7713206384662487116 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "99\u5F132" + rect: + serializedVersion: 2 + x: 4064 + y: 3840 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32577e69ac442c290800000000000000 + internalID: -7871653561784371933 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "99\u5F291" + rect: + serializedVersion: 2 + x: 0 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c64887aa940d46f50800000000000000 + internalID: 6873847946085434476 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "99\u6210\u5C31\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 32 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46f7baac3fbc07200800000000000000 + internalID: 175864633405177700 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "99\u67AA4" + rect: + serializedVersion: 2 + x: 64 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 26b9e3a9f4d946f40800000000000000 + internalID: 5720870391883144034 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "99\u6CD5\u52515" + rect: + serializedVersion: 2 + x: 96 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1106f461ed299a300800000000000000 + internalID: 263903535732580369 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "99\u85E9\u6756" + rect: + serializedVersion: 2 + x: 128 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 405ddc1968c548850800000000000000 + internalID: 6378324705305023748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "99\u957F\u9524" + rect: + serializedVersion: 2 + x: 160 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c5122a792f647840800000000000000 + internalID: 5220920091962643910 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "9_\u82F1\u683C\u5170\u50CF\u6811" + rect: + serializedVersion: 2 + x: 192 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0e8190a57c8a2390800000000000000 + internalID: -7842301364279341553 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "9\u6708\u7FC5\u8180" + rect: + serializedVersion: 2 + x: 224 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16591979b16a3e890800000000000000 + internalID: -7429912322793958047 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "9\u6708\u98DE\u5251" + rect: + serializedVersion: 2 + x: 256 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 874ad017ba2cf14d0800000000000000 + internalID: -3161594371798883208 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "9\u7EA7\u7D2B" + rect: + serializedVersion: 2 + x: 288 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: addecc5df72a95a20800000000000000 + internalID: 3051648892451745242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "9\u7EA7\u7EA2" + rect: + serializedVersion: 2 + x: 320 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f484b41fc20c3f80800000000000000 + internalID: -8125616539254356745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "9\u7EA7\u84DD" + rect: + serializedVersion: 2 + x: 352 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 411c370979272dc50800000000000000 + internalID: 6688534391887741204 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "gm\u5956\u7AE0" + rect: + serializedVersion: 2 + x: 384 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 734e0c30159710080800000000000000 + internalID: -9222957173015780297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: hana + rect: + serializedVersion: 2 + x: 416 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77a37508e01d4eaf0800000000000000 + internalID: -367939409324590473 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: happybirthday + rect: + serializedVersion: 2 + x: 448 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34c3de62f6a85f360800000000000000 + internalID: 7202815389048060995 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: iloveyou + rect: + serializedVersion: 2 + x: 480 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5676b61753b8c4210800000000000000 + internalID: 1318581852565104485 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "it\u7537\u624B\u6307\u62F3\u5957" + rect: + serializedVersion: 2 + x: 512 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 224897314cd9359f0800000000000000 + internalID: -480867269732629470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: love + rect: + serializedVersion: 2 + x: 544 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fc249dc4172dfbe0800000000000000 + internalID: -1441953335386821384 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: merrychristmas + rect: + serializedVersion: 2 + x: 576 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23650dbf92b792720800000000000000 + internalID: 2821922061772936754 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "q\u5C0F\u9F99" + rect: + serializedVersion: 2 + x: 608 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c535a5ca5babc4a0800000000000000 + internalID: -6571970824865761847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "rmb\u9053\u5177_\u5E26\u9501\u7684\u5B9D\u7BB1" + rect: + serializedVersion: 2 + x: 640 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0022043423568b3b0800000000000000 + internalID: -5496532078654643712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "rmb\u9053\u5177_\u6253\u5F00\u7684\u5B9D\u7BB1" + rect: + serializedVersion: 2 + x: 672 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8e19bcf49ffe044e0800000000000000 + internalID: -1999334380487863832 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "rmb\u9053\u5177_\u795E\u79D8\u9524\u5B50" + rect: + serializedVersion: 2 + x: 704 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4abf92ad827addac0800000000000000 + internalID: -3828720314294338652 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "sina\u5C0F\u6D6A" + rect: + serializedVersion: 2 + x: 736 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 375047699ac064a10800000000000000 + internalID: 1893214615869064563 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "yy\u5973\u718A" + rect: + serializedVersion: 2 + x: 768 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1fe05fe779e7b7b10800000000000000 + internalID: 1980315650294615793 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "yy\u7537\u718A" + rect: + serializedVersion: 2 + x: 800 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 72d1a3c3ac18a0ca0800000000000000 + internalID: -6049880443825021657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: zippo + rect: + serializedVersion: 2 + x: 832 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25cf55ed1331e7110800000000000000 + internalID: 1260466050614819922 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\x7F2012\u5723\u8BDE\u889C\u5B501" + rect: + serializedVersion: 2 + x: 864 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a09055baa0c766d0800000000000000 + internalID: -2997215187572846431 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\x7F2012\u5723\u8BDE\u889C\u5B502" + rect: + serializedVersion: 2 + x: 896 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf701c92a0e2d50b0800000000000000 + internalID: -5738379729015076869 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\x7F2012\u5723\u8BDE\u889C\u5B503" + rect: + serializedVersion: 2 + x: 928 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54e1b44af6f4d9030800000000000000 + internalID: 3503043426080464453 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\x7F2012\u5723\u8BDE\u889C\u5B504" + rect: + serializedVersion: 2 + x: 960 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75acc1adb379eec30800000000000000 + internalID: 4390612970050996823 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\x7F2012\u5723\u8BDE\u889C\u5B505" + rect: + serializedVersion: 2 + x: 992 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57c506820082c2720800000000000000 + internalID: 2822675047596973173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00" + rect: + serializedVersion: 2 + x: 1024 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a315f1de900b4c70800000000000000 + internalID: 8956252966083695526 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u4E32\u7EA2" + rect: + serializedVersion: 2 + x: 1056 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 752354589fc4892c0800000000000000 + internalID: -4424701999325040041 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u5143\u590D\u59CB\u4EE4" + rect: + serializedVersion: 2 + x: 1088 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ed63eec3168a06580800000000000000 + internalID: -8835877333313374498 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u5143\u77F3" + rect: + serializedVersion: 2 + x: 1120 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b37941bedc8464050800000000000000 + internalID: 5784390820653471547 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u534A\u7684\u91D1\u624B\u956F" + rect: + serializedVersion: 2 + x: 1152 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b7e506b898cab4c90800000000000000 + internalID: -7184459073790648709 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u5468\u5E74\u5750\u9A91\u9F99" + rect: + serializedVersion: 2 + x: 1184 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 503dbe7cf458b9960800000000000000 + internalID: 7609822573075616517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u661F\u9F99\u73E0" + rect: + serializedVersion: 2 + x: 1216 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a03b64b68e95f940800000000000000 + internalID: 5329340035452580005 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u672C\u5F69\u8272\u7684\u4E66" + rect: + serializedVersion: 2 + x: 1248 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8b76dece7f878ad0800000000000000 + internalID: -2700031676786508918 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u6839\u725B\u89D2" + rect: + serializedVersion: 2 + x: 1280 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8b21e0f8e6c89540800000000000000 + internalID: 5014976888853048205 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u6B65\u767B\u5929\xB7\u52A8\u5929" + rect: + serializedVersion: 2 + x: 1312 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21ad2fe749f622690800000000000000 + internalID: -7628412135236511214 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u6B65\u767B\u5929\u5468\u5929" + rect: + serializedVersion: 2 + x: 1344 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9a156f5767df195d0800000000000000 + internalID: -3057383986780810839 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u6B65\u767B\u5929\u5E7B\u5929" + rect: + serializedVersion: 2 + x: 1376 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6e147484cccb3980800000000000000 + internalID: -8558021522479636886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u6B65\u767B\u5929\u7384\u5929" + rect: + serializedVersion: 2 + x: 1408 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 289b078502cbd2df0800000000000000 + internalID: -203299561053046398 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u6B69\u83B2\u534E\u53F0" + rect: + serializedVersion: 2 + x: 1440 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f550a413901cbeb0800000000000000 + internalID: -4702865686989351432 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7B49\u5956" + rect: + serializedVersion: 2 + x: 1472 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d93b847a00193d120800000000000000 + internalID: 2437451255330157469 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7B49\u7956\u9F99\u52CB\u7AE0" + rect: + serializedVersion: 2 + x: 1504 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af6766a7d1f9a6700800000000000000 + internalID: 534414454753228538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7B49\u954C\u523B" + rect: + serializedVersion: 2 + x: 1536 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7a802c91784f7050800000000000000 + internalID: 5800434497864370813 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7BAD\u503E\u5FC3" + rect: + serializedVersion: 2 + x: 1568 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca1f5a9a59b978490800000000000000 + internalID: -7744049967141621332 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7EA7\u4E5D\u9633\u4E39" + rect: + serializedVersion: 2 + x: 1600 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 649b01d62f034d8c0800000000000000 + internalID: -3975498753291273914 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7EA7\u4E5D\u9F99\u6563" + rect: + serializedVersion: 2 + x: 1632 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2daf9260421280040800000000000000 + internalID: 4613974256847026898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7EA7\u5F52\u5143\u6563" + rect: + serializedVersion: 2 + x: 1664 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d124bb8f8c7364ff0800000000000000 + internalID: -52293009362173411 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7EA7\u6728\u7CBE" + rect: + serializedVersion: 2 + x: 1696 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 186d174d588fca1f0800000000000000 + internalID: -1032176960896117119 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7EA7\u6C89\u9999\u4E38" + rect: + serializedVersion: 2 + x: 1728 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9cc8eb3a3b3d4440800000000000000 + internalID: 4921655089085074589 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7EA7\u6D3B\u8840\u6563" + rect: + serializedVersion: 2 + x: 1760 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9a8f764155d51930800000000000000 + internalID: 4113428379724647069 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7EA7\u795E\u6C14\u4E38" + rect: + serializedVersion: 2 + x: 1792 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1757614ce41ac2fb0800000000000000 + internalID: -4671181353820719759 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7EA7\u7CBE\u91D1" + rect: + serializedVersion: 2 + x: 1824 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41222918534da0b30800000000000000 + internalID: 4254446124277047828 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7EA7\u7EEB\u7F57" + rect: + serializedVersion: 2 + x: 1856 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 53cacc9862c50ee80800000000000000 + internalID: -8151414004950193099 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7EA7\u8FD8\u7075\u6C34" + rect: + serializedVersion: 2 + x: 1888 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c9f878cb7bb9a0c0800000000000000 + internalID: -4563910607044544064 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7EA7\u91D1\u521B\u836F" + rect: + serializedVersion: 2 + x: 1920 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f08abf6a8908b0760800000000000000 + internalID: 7425169803775289359 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u7EA7\u9F99\u6D8E\u9999" + rect: + serializedVersion: 2 + x: 1952 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7942faa5db90ab6f0800000000000000 + internalID: -668210885836200809 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E00\u89C1\u949F\u60C5" + rect: + serializedVersion: 2 + x: 1984 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7937c255dbcae5820800000000000000 + internalID: 2908952338505692055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E01" + rect: + serializedVersion: 2 + x: 2016 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9a4aa6921767035e0800000000000000 + internalID: -1931914011743705943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03" + rect: + serializedVersion: 2 + x: 2048 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f5e106f4e2f35640800000000000000 + internalID: 5067661070915724786 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u515C\u517D\u5143\u9B42" + rect: + serializedVersion: 2 + x: 2080 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92bebac372b2d5ec0800000000000000 + internalID: -3576655081540687063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u5915\u4E4B\u591C\u6267\u624B\u9E4A\u6865" + rect: + serializedVersion: 2 + x: 2112 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b58fbe6db1e4226d0800000000000000 + internalID: -3016762918907938725 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u5F69\u5927\u793C\u5305" + rect: + serializedVersion: 2 + x: 2144 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a9804196977f02d0800000000000000 + internalID: -3310295712528299608 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u5F69\u795E\u77F3" + rect: + serializedVersion: 2 + x: 2176 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1fa9a5d39d548990800000000000000 + internalID: -7384674599454527714 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u661F\u5251" + rect: + serializedVersion: 2 + x: 2208 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db36013b3680457e0800000000000000 + internalID: -1777786728605523011 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u661F\u77F3" + rect: + serializedVersion: 2 + x: 2240 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62026707112e6d0d0800000000000000 + internalID: -3398280304275349466 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u661F\u795E\u5251" + rect: + serializedVersion: 2 + x: 2272 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc8898d624e14df40800000000000000 + internalID: 5752255894713370828 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u661F\u9F99\u73E0" + rect: + serializedVersion: 2 + x: 2304 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9f8d8d9d7b2ce340800000000000000 + internalID: 4894334713559093146 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u66DC\u534E\u6676" + rect: + serializedVersion: 2 + x: 2336 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f23143051e5d92f00800000000000000 + internalID: 1092639548304003887 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u66DC\u8170\u9970" + rect: + serializedVersion: 2 + x: 2368 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1a597c62fd3d9620800000000000000 + internalID: 2782448256196106782 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u6740\u4EE4\xB7\u660E" + rect: + serializedVersion: 2 + x: 2400 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ce0025c21e9c3a40800000000000000 + internalID: 5349324260863119046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u6740\u4EE4\xB7\u6697" + rect: + serializedVersion: 2 + x: 2432 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ccd38adff200e3d70800000000000000 + internalID: 9024650909416177100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u6740\u4EE4\xB7\u865A" + rect: + serializedVersion: 2 + x: 2464 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 05cccdc19c0ef6870800000000000000 + internalID: 8678402161343515728 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u6740\u5370\xB7\u660E" + rect: + serializedVersion: 2 + x: 2496 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27ab4c1cf559b2ff0800000000000000 + internalID: -59789931534042510 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u6740\u5370\xB7\u6697" + rect: + serializedVersion: 2 + x: 2528 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2eda0b3d6fcccdf60800000000000000 + internalID: 8060542793571937762 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u6740\u5370\xB7\u865A" + rect: + serializedVersion: 2 + x: 2560 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e577a7cfb4fb4d4a0800000000000000 + internalID: -6569415623347374242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u6740\u5E16\xB7\u592A\u5FAE" + rect: + serializedVersion: 2 + x: 2592 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f7def20b3ffb2c10800000000000000 + internalID: 2029996685978949623 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u6740\u5E16\xB7\u5C11\u5FAE" + rect: + serializedVersion: 2 + x: 2624 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce9629021c3515ba0800000000000000 + internalID: -6102003931170051604 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u6740\u5E16\xB7\u7D2B\u5FAE" + rect: + serializedVersion: 2 + x: 2656 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cb1c5fd6cd1c1a510800000000000000 + internalID: 1558740098528690620 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u7B49\u5956" + rect: + serializedVersion: 2 + x: 2688 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79f23f681eca032f0800000000000000 + internalID: -995105433017176169 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u7B49\u954C\u523B" + rect: + serializedVersion: 2 + x: 2720 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b7acace2130d847a0800000000000000 + internalID: -6392630761395402117 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E03\u7F6A" + rect: + serializedVersion: 2 + x: 2752 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a03bfb26d4c58950800000000000000 + internalID: 6450778465418031265 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u4EBA\u654C" + rect: + serializedVersion: 2 + x: 2784 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b625a6c5b3f2f5860800000000000000 + internalID: 7520781834732065387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u52AB\u62A4\u817F" + rect: + serializedVersion: 2 + x: 2816 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6fdcecbaaa3a07260800000000000000 + internalID: 7093349366530756086 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u52AB\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 2848 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 674461b47f7706b00800000000000000 + internalID: 819787036181808246 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u5316\u57CE\u7CBE\u5143" + rect: + serializedVersion: 2 + x: 2880 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59f7069cbac0d0e90800000000000000 + internalID: -7057971109062213739 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u5723\u5357\u74DC\u94DC\u6805\u680F" + rect: + serializedVersion: 2 + x: 2912 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21db7acf67004bf10800000000000000 + internalID: 2284451422028676370 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u5723\u6212" + rect: + serializedVersion: 2 + x: 2944 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 620955f93eca638b0800000000000000 + internalID: -5172757028357697498 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u5723\u8282\u5357\u74DC\u5934\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2976 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 31dc96f55e63c37f0800000000000000 + internalID: -631569488962532077 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u5723\u8282\u5357\u74DC\u5934\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3008 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ba62ef635bea71d0800000000000000 + internalID: -3352108229031990601 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u58D1\u677E\u98CE\u56FE" + rect: + serializedVersion: 2 + x: 3040 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50d083b421bee8cc0800000000000000 + internalID: -3706766979475436283 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u5B9D\u77F3\u523B\u8DEF\u706F" + rect: + serializedVersion: 2 + x: 3072 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24bfb4dcf5bb40250800000000000000 + internalID: 5910054631157529410 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u5BFF\u798F\u5B57\u67DC" + rect: + serializedVersion: 2 + x: 3104 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74b33101e3be9d680800000000000000 + internalID: -8729687750890800313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u5E74\u69FD" + rect: + serializedVersion: 2 + x: 3136 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea2b62a948301de90800000000000000 + internalID: -7002812077527616850 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u5E74\u7075\u829D" + rect: + serializedVersion: 2 + x: 3168 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c7fa68d54b22a6b0800000000000000 + internalID: -5286615433595914300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u6BD2\u6BCD\u6DB2" + rect: + serializedVersion: 2 + x: 3200 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0130cd46adecc7300800000000000000 + internalID: 251303116616237840 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u8C61\u5C65" + rect: + serializedVersion: 2 + x: 3232 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 451ab5d2ffd213030800000000000000 + internalID: 3472607361680253268 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u8C61\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3264 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 877b069e4d4853680800000000000000 + internalID: -8775962248878180488 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u8C61\u66F4\u65B0\u77F3" + rect: + serializedVersion: 2 + x: 3296 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88579969beffec970800000000000000 + internalID: 8777234111100712328 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u8C61\u888D" + rect: + serializedVersion: 2 + x: 3328 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e25bfcc8bee86b190800000000000000 + internalID: -7947007350117780178 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u8C61\u88E4" + rect: + serializedVersion: 2 + x: 3360 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3eb44cd80ca856370800000000000000 + internalID: 8315204846626294755 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E07\u94A7\u5DE8\u65A7" + rect: + serializedVersion: 2 + x: 3392 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a23cc711acd7cc790800000000000000 + internalID: -7508488171903204566 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09" + rect: + serializedVersion: 2 + x: 3424 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 468a120e0bb418a00800000000000000 + internalID: 756969435421583460 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u5203\u77E2" + rect: + serializedVersion: 2 + x: 3456 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7ecfd5cb2f533400800000000000000 + internalID: 302690241571966588 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u53C9\u621F" + rect: + serializedVersion: 2 + x: 3488 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf82f3b498e466830800000000000000 + internalID: 4064022065328367867 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u53E0\u74F7\u6A3D\u58C1\u76CF" + rect: + serializedVersion: 2 + x: 3520 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3032dbfa4f55155e0800000000000000 + internalID: -1922661056501701885 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u5934\u72D7" + rect: + serializedVersion: 2 + x: 3552 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c128b7f37b190f370800000000000000 + internalID: 8354337525002371612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u5C0A\u4E0B\u51E1" + rect: + serializedVersion: 2 + x: 3584 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0eeb2c4566cbfd560800000000000000 + internalID: 7340793065331932896 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u5C38\u661F\u5361" + rect: + serializedVersion: 2 + x: 3616 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 164a39a1d8e56ccd0800000000000000 + internalID: -2538237379847412639 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u5C71\u4E94\u5CB3\u5361" + rect: + serializedVersion: 2 + x: 3648 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: efdbebc802f12b5d0800000000000000 + internalID: -3048339773115679234 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u5C81\u661F\u5361" + rect: + serializedVersion: 2 + x: 3680 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 204ad665c120da5d0800000000000000 + internalID: -3049779051927591934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u5F69\u5B9D\u6708\u74F6" + rect: + serializedVersion: 2 + x: 3712 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bafc9499c47523160800000000000000 + internalID: 7003756357015424939 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u5F69\u6D17\u53E3\u74F6" + rect: + serializedVersion: 2 + x: 3744 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11bfb4b0b41483920800000000000000 + internalID: 2970195744818723601 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u624D\u77F3" + rect: + serializedVersion: 2 + x: 3776 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4aa1365ec8e6180c0800000000000000 + internalID: -4575254195008759132 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u661F\u9F99\u73E0" + rect: + serializedVersion: 2 + x: 3808 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c4932bc36e7a68d0800000000000000 + internalID: -2852328446910819131 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u66DC\u71A0\u706B\u9B42" + rect: + serializedVersion: 2 + x: 3840 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b3ec9b20f857ea80800000000000000 + internalID: -8437677588308237386 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u6E05\u4F69" + rect: + serializedVersion: 2 + x: 3872 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1bf8e5e059f6fcb90800000000000000 + internalID: -7219428991669727311 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u6E05\u5361" + rect: + serializedVersion: 2 + x: 3904 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7997555a4a1fc0b70800000000000000 + internalID: 8866727455836436887 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u6E05\u592A\u6781\u574A" + rect: + serializedVersion: 2 + x: 3936 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 067bc5b2194ff3820800000000000000 + internalID: 2900305589384820576 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u7384\u5408\u5242" + rect: + serializedVersion: 2 + x: 3968 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0aff1e2de114dd040800000000000000 + internalID: 4673963588923293600 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u751F\u6811" + rect: + serializedVersion: 2 + x: 4000 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a829665d35cd38d0800000000000000 + internalID: -2864916920704358236 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u751F\u77F3\u4E03\u5F69" + rect: + serializedVersion: 2 + x: 4032 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2394b9193357977f0800000000000000 + internalID: -614331009812707022 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u751F\u77F3\u6A59" + rect: + serializedVersion: 2 + x: 4064 + y: 3808 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8019703c1142e6890800000000000000 + internalID: -7462987873801236216 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u751F\u77F3\u767D" + rect: + serializedVersion: 2 + x: 0 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d0a8a95ecaa2d050800000000000000 + internalID: 5823905071387680983 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u751F\u77F3\u7D2B" + rect: + serializedVersion: 2 + x: 32 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 582da03232e5192f0800000000000000 + internalID: -967888939903167867 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u751F\u77F3\u7EFF" + rect: + serializedVersion: 2 + x: 64 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36b99d2d831e48cb0800000000000000 + internalID: -4862514063481398429 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u751F\u77F3\u84DD" + rect: + serializedVersion: 2 + x: 96 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 173e52be3f16d1af0800000000000000 + internalID: -424075089652882575 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u751F\u77F3\u8D64" + rect: + serializedVersion: 2 + x: 128 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c788988cf662f0570800000000000000 + internalID: 8435002888635910268 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u751F\u77F3\u9752" + rect: + serializedVersion: 2 + x: 160 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 097addfcda3e45d70800000000000000 + internalID: 9031093488440944528 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u751F\u77F3\u9EC4" + rect: + serializedVersion: 2 + x: 192 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b27249e0d47d81080800000000000000 + internalID: -9216379911456676053 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u751F\u77F3\u9ED1" + rect: + serializedVersion: 2 + x: 224 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 30dc10f8add40ce10800000000000000 + internalID: 2215856617763753219 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u754C\u4E4B\u5251" + rect: + serializedVersion: 2 + x: 256 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91331473d8a3ef640800000000000000 + internalID: 5115590604931281689 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u754C\u795E\u6C34" + rect: + serializedVersion: 2 + x: 288 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a99ba9f7decc05c60800000000000000 + internalID: 7804963474653231514 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u795E\u5361" + rect: + serializedVersion: 2 + x: 320 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb71e90ecd63a57b0800000000000000 + internalID: -5234811294575618114 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u7B49\u5956" + rect: + serializedVersion: 2 + x: 352 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51c387572c30abdc0800000000000000 + internalID: -3622578816536789995 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u7B49\u7956\u9F99\u52CB\u7AE0" + rect: + serializedVersion: 2 + x: 384 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46affae79151f1d60800000000000000 + internalID: 7863026673656003172 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u7B49\u954C\u523B" + rect: + serializedVersion: 2 + x: 416 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ecf92700fdbca4f0800000000000000 + internalID: -816068593850909465 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u7EA7\u4E5D\u9633\u4E39" + rect: + serializedVersion: 2 + x: 448 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f80030386376bb20800000000000000 + internalID: 3149831880714488050 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u7EA7\u4E5D\u9F99\u6563" + rect: + serializedVersion: 2 + x: 480 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3f77c70ec4a9e7a0800000000000000 + internalID: -6347360995001270469 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u7EA7\u5F52\u5143\u6563" + rect: + serializedVersion: 2 + x: 512 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23179c315841d1670800000000000000 + internalID: 8510981432595280178 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u7EA7\u6C89\u9999\u4E38" + rect: + serializedVersion: 2 + x: 544 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dcee7ac4f90fcee20800000000000000 + internalID: 3381341987224940237 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u7EA7\u6D3B\u8840\u6563" + rect: + serializedVersion: 2 + x: 576 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e5232ee6c09d16fc0800000000000000 + internalID: -3503280387694382498 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u7EA7\u795E\u6C14\u4E38" + rect: + serializedVersion: 2 + x: 608 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a073cbf18523534c0800000000000000 + internalID: -4308482114439071990 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u7EA7\u8FD8\u7075\u6C34" + rect: + serializedVersion: 2 + x: 640 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ed5254fc806d1570800000000000000 + internalID: 8439007435272904164 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u7EA7\u91D1\u521B\u836F" + rect: + serializedVersion: 2 + x: 672 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fe50c481f6913650800000000000000 + internalID: 6210911325179109112 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u7EA7\u9F99\u6D8E\u9999" + rect: + serializedVersion: 2 + x: 704 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae539d5b234413010800000000000000 + internalID: 1166788763055633898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u8000\u9AA8\u6C24\u7075" + rect: + serializedVersion: 2 + x: 736 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 73fe483e7f489fee0800000000000000 + internalID: -1226803223272820937 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u8272\u7403" + rect: + serializedVersion: 2 + x: 768 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb6d6e285f7629270800000000000000 + internalID: 8255775371084355262 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E09\u8FDE\u7206" + rect: + serializedVersion: 2 + x: 800 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0302ea1c025d9fd0800000000000000 + internalID: -2333618819963944181 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E0A\u51A5\u5251" + rect: + serializedVersion: 2 + x: 832 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4e5f7983e3b8f3c0800000000000000 + internalID: -4325509652243587509 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E0A\u53E4\u5143\u7075" + rect: + serializedVersion: 2 + x: 864 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5d65dd465b4beec0800000000000000 + internalID: -3536650248324289187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E0A\u53E4\u517D" + rect: + serializedVersion: 2 + x: 896 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3989fbdcdbcbfde90800000000000000 + internalID: -6998667772523734893 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E0A\u53E4\u51B0\u9B44" + rect: + serializedVersion: 2 + x: 928 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9871621284803870800000000000000 + internalID: 8660567777622456476 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E0A\u5E1D\u6B66\u88C5" + rect: + serializedVersion: 2 + x: 960 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5762cdb7891f7e720800000000000000 + internalID: 2875532524314699381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E0A\u6E05\u4E4B\u5251" + rect: + serializedVersion: 2 + x: 992 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ceac2e006a168590800000000000000 + internalID: -7672415915322069306 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E0A\u6E05\u5361" + rect: + serializedVersion: 2 + x: 1024 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6834b841c6dc761f0800000000000000 + internalID: -1051646123882888314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E0D\u670Dpk" + rect: + serializedVersion: 2 + x: 1056 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 596b5969de6ee1640800000000000000 + internalID: 5052729740064306837 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E0D\u7834\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1088 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3160dcb50f9f58a10800000000000000 + internalID: 1911208427616273939 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E0D\u7CFB\u821F" + rect: + serializedVersion: 2 + x: 1120 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2fc32fa18895ca20800000000000000 + internalID: 3082037202761535275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E0D\u8D25\u610F\u5FD7" + rect: + serializedVersion: 2 + x: 1152 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee5cfcf6918696c50800000000000000 + internalID: 6658967982503347694 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E0E\u5B50\u8C10\u8001" + rect: + serializedVersion: 2 + x: 1184 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fdfa7e29e3da7e080800000000000000 + internalID: -9158160832970379297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E11" + rect: + serializedVersion: 2 + x: 1216 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 01776cda281d90470800000000000000 + internalID: 8361444542381455120 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E16" + rect: + serializedVersion: 2 + x: 1248 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 226b6133e0c4f7150800000000000000 + internalID: 5872496062984795682 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E16\u754C\u6811" + rect: + serializedVersion: 2 + x: 1280 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 619be4f29e4986bb0800000000000000 + internalID: -4942536861797140202 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E16\u7CBE\u8840\u7483" + rect: + serializedVersion: 2 + x: 1312 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e43187e4fdc3b2d70800000000000000 + internalID: 9019369608531415886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E16\u7CBE\u8840\u7483\u955C" + rect: + serializedVersion: 2 + x: 1344 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d74b19aaa6f3221e0800000000000000 + internalID: -2224145538606844803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E18\u6A0A\u8FCE\u4ED9\u6846" + rect: + serializedVersion: 2 + x: 1376 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b56a43cbdcb012370800000000000000 + internalID: 8295924966846932571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E19" + rect: + serializedVersion: 2 + x: 1408 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e1d6c4f7727662c0800000000000000 + internalID: -4438734523193699868 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u4E4B\u773C\u6CD51\u6863" + rect: + serializedVersion: 2 + x: 1440 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7514d2b36398364f0800000000000000 + internalID: -836674239746719401 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u4E4B\u773C\u6CD52\u6863" + rect: + serializedVersion: 2 + x: 1472 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71badbd21e11d9610800000000000000 + internalID: 1629478299010706199 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u4E4B\u773C\u6CD53\u6863" + rect: + serializedVersion: 2 + x: 1504 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 349c51e27cde77960800000000000000 + internalID: 7599804335938455875 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u4E4B\u773C\u72691\u6863" + rect: + serializedVersion: 2 + x: 1536 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c294e96b3dc08f920800000000000000 + internalID: 3024181253220747564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u4E4B\u773C\u72692\u6863" + rect: + serializedVersion: 2 + x: 1568 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7148f791a3baf4c0800000000000000 + internalID: -4252889391477276294 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u4E4B\u773C\u72693\u6863" + rect: + serializedVersion: 2 + x: 1600 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 296eeb28c0a97a1e0800000000000000 + internalID: -2186609715541252462 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1632 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14be26671b7152130800000000000000 + internalID: 3541262732959607617 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u9057\u4F69\xB7\u5BC6\u5319" + rect: + serializedVersion: 2 + x: 1664 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b96539d69f578a70800000000000000 + internalID: 8829130695977036209 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u9057\u7389\xB7\u6A59\u9732" + rect: + serializedVersion: 2 + x: 1696 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0be10680d00bc8670800000000000000 + internalID: 8542396163236568752 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u9057\u7389\xB7\u767D\u7FFC" + rect: + serializedVersion: 2 + x: 1728 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5d6f964d8aa56ec0800000000000000 + internalID: -3574263205496656547 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u9057\u7389\xB7\u78A7\u7075" + rect: + serializedVersion: 2 + x: 1760 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16568fcd2f868c910800000000000000 + internalID: 1857850238588970337 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u9057\u7389\xB7\u7D2B\u5E7B" + rect: + serializedVersion: 2 + x: 1792 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d00dcebfc7ef9a020800000000000000 + internalID: 2353692093033795597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u9057\u7389\xB7\u84DD\u7F18" + rect: + serializedVersion: 2 + x: 1824 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bdc9049c5a864d300800000000000000 + internalID: 275960538431790299 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u9057\u7389\xB7\u8D64\u706B" + rect: + serializedVersion: 2 + x: 1856 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7a1cc2d941b4ec50800000000000000 + internalID: 6693669876806720125 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u9057\u7389\xB7\u9EC4\u695A" + rect: + serializedVersion: 2 + x: 1888 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4aa8a7bd12784610800000000000000 + internalID: 1605658739118484044 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u9057\u7389\xB7\u9ED1\u70EC" + rect: + serializedVersion: 2 + x: 1920 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89ad1962181ef3790800000000000000 + internalID: -7548066505635538280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u9057\u73AF\xB7\u9041\u9B54" + rect: + serializedVersion: 2 + x: 1952 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 493b67eb52ccba310800000000000000 + internalID: 1417450970219459476 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u9057\u73AF\xB7\u98DE\u4ED9" + rect: + serializedVersion: 2 + x: 1984 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c75b41869bf26830800000000000000 + internalID: 4063086437674473415 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1B\u6797\u9057\u73E0" + rect: + serializedVersion: 2 + x: 2016 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f045550deaf5aa40800000000000000 + internalID: 5378981225867591929 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1C\u6597\u5361" + rect: + serializedVersion: 2 + x: 2048 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 002851d1b8b5efde0800000000000000 + internalID: -1297498989589593600 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1C\u65B9\u4E0D\u8D25\u5973\u5E3D\u5B50" + rect: + serializedVersion: 2 + x: 2080 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5486ae0248c3f4060800000000000000 + internalID: 6939832088986806341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1C\u65B9\u4E0D\u8D25\u5973\u8863\u670D" + rect: + serializedVersion: 2 + x: 2112 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b7a535963c6248350800000000000000 + internalID: 6017977622801373819 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1C\u65B9\u4E0D\u8D25\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2144 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f07d7d932e6a84840800000000000000 + internalID: 5208596459617244943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1C\u65B9\u4E0D\u8D25\u7537\u5E3D\u5B50" + rect: + serializedVersion: 2 + x: 2176 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f36f5c32fff8cc4a0800000000000000 + internalID: -6571719430260787649 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1C\u65B9\u4E0D\u8D25\u7537\u8863\u670D" + rect: + serializedVersion: 2 + x: 2208 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e82f59f373815e230800000000000000 + internalID: 3667364097132196494 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1C\u65B9\u4E0D\u8D25\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2240 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1698c6b8cd3014b70800000000000000 + internalID: 8881384185918163297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1D\u5DFE" + rect: + serializedVersion: 2 + x: 2272 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1052bf8bbac2bcd0800000000000000 + internalID: -2543747932592386018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1D\u5E26" + rect: + serializedVersion: 2 + x: 2304 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 553f384f4ed933800800000000000000 + internalID: 590989582796059477 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1D\u7EBF" + rect: + serializedVersion: 2 + x: 2336 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c633a578f4ca6d0f0800000000000000 + internalID: -1092496402017537172 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1D\u7EF8\u62A4\u8155\u7EE3\u9762" + rect: + serializedVersion: 2 + x: 2368 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4cc2fab1f124ad5f0800000000000000 + internalID: -731199288118399804 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1D\u7EF8\u6CD5\u672F\u978B\u5E95" + rect: + serializedVersion: 2 + x: 2400 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1162a1d4c0ee689e0800000000000000 + internalID: -1619345279392537071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1D\u7EF8\u6CD5\u888D\u8863\u895F" + rect: + serializedVersion: 2 + x: 2432 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ce070d3b2eb1ca10800000000000000 + internalID: 1928031208408026817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1D\u7EF8\u6CD5\u88E4\u4E0B\u6446" + rect: + serializedVersion: 2 + x: 2464 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 365d3b89a1e9dabd0800000000000000 + internalID: -2617261971364129437 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1D\u7EF8\u7075\u529B\u5E61\u7EE6" + rect: + serializedVersion: 2 + x: 2496 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45eae9321d95944e0800000000000000 + internalID: -1996966204981465516 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E1D\u7EF8\u9999\u56CA" + rect: + serializedVersion: 2 + x: 2528 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1e63b39423857050800000000000000 + internalID: 5797684288429452827 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E24\u4EEA\u5C65" + rect: + serializedVersion: 2 + x: 2560 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 340cd749918718f30800000000000000 + internalID: 4576070747645919299 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E24\u4EEA\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2592 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9044e82b115b5160800000000000000 + internalID: 7015290021651693722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E24\u4EEA\u77F3" + rect: + serializedVersion: 2 + x: 2624 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ef85a1c78ab4c560800000000000000 + internalID: 7333191185498214373 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E24\u4EEA\u888D" + rect: + serializedVersion: 2 + x: 2656 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07ff18af9a6e1ca80800000000000000 + internalID: -8448217808243654800 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E24\u4EEA\u88E4" + rect: + serializedVersion: 2 + x: 2688 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b234faff25dede740800000000000000 + internalID: 5183059686906086187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E24\u6606\u4ED1" + rect: + serializedVersion: 2 + x: 2720 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f61ed04def5696cf0800000000000000 + internalID: -258563358443314833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2A\u6027\u76AE\u8863\u957F\u88D9\u65F6\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2752 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0a2b19668507a5e0800000000000000 + internalID: -1898542643066230262 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2A\u6027\u76AE\u8863\u957F\u88D9\u65F6\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2784 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ad2cf53a214a36f0800000000000000 + internalID: -704178742179910234 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2A\u6027\u76AE\u8863\u957F\u88D9\u65F6\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2816 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8f02371a0181e3d0800000000000000 + internalID: -3179117981608046708 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2A\u6027\u83AB\u897F\u5E72\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2848 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1160369ddb3c39430800000000000000 + internalID: 3788586931712099857 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D" + rect: + serializedVersion: 2 + x: 2880 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4dfc7c2721cc6f9d0800000000000000 + internalID: -2740778943601193004 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u4E16\u7EAA\u8D35\u5987\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2912 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1375f46a102a6d3a0800000000000000 + internalID: -6640942472542333135 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u4E16\u7EAA\u8D35\u5987\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2944 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd8e8ef05a2f57c50800000000000000 + internalID: 6662498014514964703 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u4E16\u7EAA\u8D35\u5987\u88C5\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 2976 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 450be4070a840f8d0800000000000000 + internalID: -2814669913190387628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u4E16\u7EAA\u8D35\u5987\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3008 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1df6bf2e22a51ac80800000000000000 + internalID: -8313264331265708079 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u4E16\u7EAA\u98CE\u60C5\u5973\u88C5-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 3040 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71607133deb3d32d0800000000000000 + internalID: -3297413462214900201 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u4E16\u7EAA\u98CE\u60C5\u5973\u88C5-\u978B32" + rect: + serializedVersion: 2 + x: 3072 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1715d93ed4de776b0800000000000000 + internalID: -5298505517791096463 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u4E16\u7EAA\u98CE\u60C5\u7537\u88C5-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 3104 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42bdb90ac9c9bc760800000000000000 + internalID: 7479243802702240548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u4E16\u7EAA\u98CE\u60C5\u7537\u88C5-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 3136 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea27885d297cce6e0800000000000000 + internalID: -1806849917020769618 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u4E16\u7EAA\u98CE\u60C5\u7537\u88C5-\u978B32" + rect: + serializedVersion: 2 + x: 3168 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ba6df43f413534f0800000000000000 + internalID: -849718738428269899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u4E5D\u9633\u4E39" + rect: + serializedVersion: 2 + x: 3200 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f53e4757f99ee5c0800000000000000 + internalID: -4184237716179896839 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u56FD\u7ED3\u5973\u4E0A\u886332" + rect: + serializedVersion: 2 + x: 3232 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1e36e4a93b5e61f0800000000000000 + internalID: -1049801359992930788 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u56FD\u7ED3\u5973\u5934\u53D132" + rect: + serializedVersion: 2 + x: 3264 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b3f60016e99b89b0800000000000000 + internalID: -5076794941539683408 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u56FD\u7ED3\u5973\u624B\u595732" + rect: + serializedVersion: 2 + x: 3296 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e5010ed9346ab740800000000000000 + internalID: 5168553722061587936 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u56FD\u7ED3\u5973\u978B\u5B5032" + rect: + serializedVersion: 2 + x: 3328 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d731c39bcd062d870800000000000000 + internalID: 8706127530777383805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u56FD\u91D1\u9F99" + rect: + serializedVersion: 2 + x: 3360 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 824bffbe2d00c7630800000000000000 + internalID: 3926013881062765608 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u5883\u795E\u4E39\u7384\u5929" + rect: + serializedVersion: 2 + x: 3392 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8de25efbdc1849250800000000000000 + internalID: 5950523728351014616 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u5F0F\u4E2D\u7EA7\u4E3B\u5C4B" + rect: + serializedVersion: 2 + x: 3424 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b370e371bac6761d0800000000000000 + internalID: -3357595515096266949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u5F0F\u4F4E\u7EA7\u4E3B\u5C4B" + rect: + serializedVersion: 2 + x: 3456 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 31d18f17f696d5ed0800000000000000 + internalID: -2423665097081086701 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u5F0F\u5A5A\u793C\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3488 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9bd2d018ad0f7f770800000000000000 + internalID: 8644642831019617721 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u5F0F\u5A5A\u793C\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3520 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e087f73d200dccd20800000000000000 + internalID: 3300241337512589326 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u5F0F\u5A5A\u793C\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3552 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a848da1a88216930800000000000000 + internalID: 4134630506523805864 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u5F0F\u5A5A\u793C\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3584 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2ade0425dc7f3150800000000000000 + internalID: 5854535295479765548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u5F0F\u5A5A\u793C\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3616 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d719d3473dfbe8a0800000000000000 + internalID: -6274643242007324716 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u5F0F\u9AD8\u7EA7\u4E3B\u5C4B" + rect: + serializedVersion: 2 + x: 3648 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8e55013af68357dd0800000000000000 + internalID: -2489021166924048920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u6597\u5361" + rect: + serializedVersion: 2 + x: 3680 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc597f22f890a2d70800000000000000 + internalID: 9019031714134463949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u795E\u6C14\u4E38" + rect: + serializedVersion: 2 + x: 3712 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 140dfee74b1f843c0800000000000000 + internalID: -4374981280464383935 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u79CB\u5FEB\u4E50" + rect: + serializedVersion: 2 + x: 3744 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98165127447ed99e0800000000000000 + internalID: -1612878810370973303 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u79CB\u6708\u997C" + rect: + serializedVersion: 2 + x: 3776 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d81f1cdeaba76adf0800000000000000 + internalID: -169312992708398707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u79CB\u793C\u76D2" + rect: + serializedVersion: 2 + x: 3808 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 210be2ebe6db59330800000000000000 + internalID: 3717085350798995474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u7EA7\u5168\u80FD\u6D17\u70B9\u5238" + rect: + serializedVersion: 2 + x: 3840 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 929f66128ec58c570800000000000000 + internalID: 8487135649842264361 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u7EA7\u539A\u78F7\u7B26" + rect: + serializedVersion: 2 + x: 3872 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d6383ae2baf48c50800000000000000 + internalID: 6666728994755851988 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u7EA7\u5934\u76D4\u56FE\u6807" + rect: + serializedVersion: 2 + x: 3904 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11b34402db40843c0800000000000000 + internalID: -4375241827653764335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u7EA7\u706B\u4E91\u7B26" + rect: + serializedVersion: 2 + x: 3936 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ade9339a86c286820800000000000000 + internalID: 2911625987121979098 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u7EA7\u77F3\u5934" + rect: + serializedVersion: 2 + x: 3968 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e50746d84cdc02a0800000000000000 + internalID: -6769793934453963292 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u7EA7\u80FD\u529B\u6D17\u70B9\u5238" + rect: + serializedVersion: 2 + x: 4000 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c76e80282e13081b0800000000000000 + internalID: -5656466283063351684 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u7EA7\u84DD\u5F71\u7B26" + rect: + serializedVersion: 2 + x: 4032 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f5e0c802b1d5340f0800000000000000 + internalID: -1133960310075683233 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u7EA7\u9752\u5149\u7B26" + rect: + serializedVersion: 2 + x: 4064 + y: 3776 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec521f106d4447a70800000000000000 + internalID: 8823753255871915470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u8206\u5E7B\u672C" + rect: + serializedVersion: 2 + x: 0 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b35db200eb056770800000000000000 + internalID: 8603295719907742641 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u91D1\u521B\u836F" + rect: + serializedVersion: 2 + x: 32 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b884f61f8dfee5720800000000000000 + internalID: 2836968530332567691 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E2D\u9690\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 64 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fbe1c579a05b40cc0800000000000000 + internalID: -3745669932971712833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E34\u6479\u5370\u8BB0" + rect: + serializedVersion: 2 + x: 96 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0dd70aa833bb589f0800000000000000 + internalID: -466761156319478320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E39\u4E66\u6298\u753B\u5C4F" + rect: + serializedVersion: 2 + x: 128 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34b2313780e3f84e0800000000000000 + internalID: -1977293505381061821 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E39\u67AB\u5466\u9E7F\u56FE" + rect: + serializedVersion: 2 + x: 160 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e763d69c52135dc0800000000000000 + internalID: -3651554683990612000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E39\u971E\u665A\u67AB" + rect: + serializedVersion: 2 + x: 192 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d6344a7369bbbd20800000000000000 + internalID: 3295431389255841490 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E39\u9F0E" + rect: + serializedVersion: 2 + x: 224 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e72336112a1b75a60800000000000000 + internalID: 7662788600628720254 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E3A\u7231\u5B88\u5019" + rect: + serializedVersion: 2 + x: 256 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6f25ec1663abe880800000000000000 + internalID: -8580585006057574548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E3A\u7231\u8D70\u904D\u5929\u6DAF" + rect: + serializedVersion: 2 + x: 288 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22b73b4550e518a70800000000000000 + internalID: 8827440121611778850 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E3B\u57FA\u5730" + rect: + serializedVersion: 2 + x: 320 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: defdf55fa294528f0800000000000000 + internalID: -565965729310973971 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E3E\u56FD\u540C\u6B22" + rect: + serializedVersion: 2 + x: 352 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45d6e9b99c24db220800000000000000 + internalID: 2503230401554574676 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E49\u5FB7\u4E4B\u5FBD" + rect: + serializedVersion: 2 + x: 384 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc05caf949b1935f0800000000000000 + internalID: -776559135596719924 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E49\u5FB7\u4E4B\u7AE0" + rect: + serializedVersion: 2 + x: 416 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9560617a881786370800000000000000 + internalID: 8316021543672350297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E4C\u6E38\u738B\u86C7\u7684\u8840\u6DB2" + rect: + serializedVersion: 2 + x: 448 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 231147a65c0ec3100800000000000000 + internalID: 89193231139737906 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E4C\u9F9F" + rect: + serializedVersion: 2 + x: 480 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf80a5c00b6428490800000000000000 + internalID: -7745550687188416261 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E4C\u9F9F\u5361" + rect: + serializedVersion: 2 + x: 512 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a540747e46bfa040800000000000000 + internalID: 4661144587428971943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E50" + rect: + serializedVersion: 2 + x: 544 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7e1d99e85867c770800000000000000 + internalID: 8630981941964643966 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E58\u80DC\u4E07\u91CC\u4F0F" + rect: + serializedVersion: 2 + x: 576 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e03a9222ce72b1260800000000000000 + internalID: 7069287935227044622 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E59" + rect: + serializedVersion: 2 + x: 608 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 26aa440e75f4a6fa0800000000000000 + internalID: -5806741530697487774 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D" + rect: + serializedVersion: 2 + x: 640 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2574aa00ea4a15f20800000000000000 + internalID: 3409687460138600274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u51A5\u6714\u5F71" + rect: + serializedVersion: 2 + x: 672 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41644bdbdadbc5050800000000000000 + internalID: 5790711774801315348 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u547D\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 704 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88aac0090db44acb0800000000000000 + internalID: -4853671139256522104 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u547D\u6218\u94E0" + rect: + serializedVersion: 2 + x: 736 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eff6449b22a589320800000000000000 + internalID: 2564899092971155454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u547D\u8155\u7532" + rect: + serializedVersion: 2 + x: 768 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77f4a7ff1ea738d50800000000000000 + internalID: 6738364578548830071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u547D\u978B" + rect: + serializedVersion: 2 + x: 800 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65056ad1b01a11f10800000000000000 + internalID: 2238747558893998166 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5730\u5996\u738B\u5361\u72471" + rect: + serializedVersion: 2 + x: 832 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ccd2c00edd095d30800000000000000 + internalID: 4420579756387523777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5730\u5996\u738B\u5361\u72472" + rect: + serializedVersion: 2 + x: 864 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78343acc67a293de0800000000000000 + internalID: -1353003523320364153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5730\u5996\u738B\u5361\u72473" + rect: + serializedVersion: 2 + x: 896 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec385274f90248110800000000000000 + internalID: 1262169664036111310 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5730\u5996\u738B\u5361\u72474" + rect: + serializedVersion: 2 + x: 928 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e73d5836a942e3bc0800000000000000 + internalID: -3801560789940841602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5730\u5996\u738B\u5361\u72475" + rect: + serializedVersion: 2 + x: 960 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7c4dcc5ebc877e20800000000000000 + internalID: 3348299597201886334 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5730\u5996\u738B\u5361\u72476" + rect: + serializedVersion: 2 + x: 992 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bc9c609f46733d60800000000000000 + internalID: 7868763058043919538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5730\u5996\u738B\u5361\u72477" + rect: + serializedVersion: 2 + x: 1024 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c1cb983711f9f3c0800000000000000 + internalID: -4325160885076377143 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5730\u5996\u738B\u5361\u72478" + rect: + serializedVersion: 2 + x: 1056 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f7b500ffb1005450800000000000000 + internalID: 6075357821200087026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5929\u4F0F\u9B54\u5200" + rect: + serializedVersion: 2 + x: 1088 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f299d4eca20a0b10800000000000000 + internalID: 1948372730388255476 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5929\u606F\u58E4" + rect: + serializedVersion: 2 + x: 1120 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cdfeade6a6b8365a0800000000000000 + internalID: -6529221745514450980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5BAB\u77F3" + rect: + serializedVersion: 2 + x: 1152 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a141b046c71420a60800000000000000 + internalID: 7638739920483980314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5BAB\u9524" + rect: + serializedVersion: 2 + x: 1184 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5f48dcf9d8613170800000000000000 + internalID: 8156415685603905372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5C3A\u58A8\u5F71" + rect: + serializedVersion: 2 + x: 1216 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11b0bdc84eb54a3e0800000000000000 + internalID: -2043407293745525999 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5C3E\u706B\u72D0" + rect: + serializedVersion: 2 + x: 1248 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 400e886446f5777a0800000000000000 + internalID: -6379525462862274556 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5E7D\u5203" + rect: + serializedVersion: 2 + x: 1280 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb23f65f95aed6090800000000000000 + internalID: -8039512087695772994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u5E7D\u7CBE\u9B4432" + rect: + serializedVersion: 2 + x: 1312 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b4032434d3e02070800000000000000 + internalID: 8079708232049951923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u661F\u9F99\u73E0" + rect: + serializedVersion: 2 + x: 1344 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbe27f4ca23ea0fd0800000000000000 + internalID: -2374836080651850051 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u66DC\u661F\u5361" + rect: + serializedVersion: 2 + x: 1376 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7720a0e8a20acf480800000000000000 + internalID: -8864033861939887497 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u7131\u534E\u6676" + rect: + serializedVersion: 2 + x: 1408 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c6be0a50c7e81570800000000000000 + internalID: 8437748715209275072 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u7B49\u5956" + rect: + serializedVersion: 2 + x: 1440 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6bb0be366f1f7fc0800000000000000 + internalID: -3495040261817320598 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u7B49\u954C\u523B" + rect: + serializedVersion: 2 + x: 1472 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9917db2cb39ae710800000000000000 + internalID: 1723352243821287836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u8033\u9521\u6756" + rect: + serializedVersion: 2 + x: 1504 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 38504fb45d5a752e0800000000000000 + internalID: -2137057162643110525 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u83B2\u6258\u5B9D\u70DB\u53F0" + rect: + serializedVersion: 2 + x: 1536 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59593f35cb7926c50800000000000000 + internalID: 6657050034325132693 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u8F6C\u6D3B\u80BA\u4E39" + rect: + serializedVersion: 2 + x: 1568 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5f5075a3d50293b0800000000000000 + internalID: -5507332987748851878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u8F6C\u6D3B\u8840\u4E38" + rect: + serializedVersion: 2 + x: 1600 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d2bf5fc15b10d1eb0800000000000000 + internalID: -4747636554792043731 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u8F6C\u8FD8\u9B42\u4E39" + rect: + serializedVersion: 2 + x: 1632 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ebe3c0c2f618d340800000000000000 + internalID: 4888682627382635496 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u91CC\u9999" + rect: + serializedVersion: 2 + x: 1664 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac6e3c6b5a960fe70800000000000000 + internalID: 9146927003646289610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9633\u4E39" + rect: + serializedVersion: 2 + x: 1696 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac4f4894135233db0800000000000000 + internalID: -4813462683111852854 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u96BE\u957F\u5200" + rect: + serializedVersion: 2 + x: 1728 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2714a9114d991b6f0800000000000000 + internalID: -670585733394054798 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9704\u78A7\u7A79\u7389" + rect: + serializedVersion: 2 + x: 1760 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf7ffbe4709801cd0800000000000000 + internalID: -2589419121259055108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9704\u78A7\u7A79\u7389\u6D41\u901A" + rect: + serializedVersion: 2 + x: 1792 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aeeccf7064b6ed790800000000000000 + internalID: -7503441980626776342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9704\u8840\u7075\u77F3" + rect: + serializedVersion: 2 + x: 1824 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 607caf7133438ba00800000000000000 + internalID: 772424730144327430 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9704\u8840\u7075\u77F3\u6D41\u901A" + rect: + serializedVersion: 2 + x: 1856 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b35ae56d091fad10800000000000000 + internalID: 2138955893359399860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9704\u91D1\u74F4\u94C1" + rect: + serializedVersion: 2 + x: 1888 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 30a73a0b2819da4a0800000000000000 + internalID: -6580443490023147005 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9704\u91D1\u74F4\u94C1\u6D41\u901A" + rect: + serializedVersion: 2 + x: 1920 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd0bfea78c2d48f40800000000000000 + internalID: 5729936384419934431 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9999\u866B" + rect: + serializedVersion: 2 + x: 1952 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55f30813ee8f95db0800000000000000 + internalID: -4802533825697530027 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9999\u866B1" + rect: + serializedVersion: 2 + x: 1984 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 608a7f028f9f31170800000000000000 + internalID: 8148130994943666182 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9B3C\u5F52\u547D" + rect: + serializedVersion: 2 + x: 2016 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 827889e369f32cbd0800000000000000 + internalID: -2611454919393638616 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9B3C\u7834\u5929" + rect: + serializedVersion: 2 + x: 2048 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f71bbec2b1d71d40800000000000000 + internalID: 5555139231287547893 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9B3C\u88C2\u98CE" + rect: + serializedVersion: 2 + x: 2080 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb906248c00fa33f0800000000000000 + internalID: -920159237296485957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9B3C\u95EA\u96F7" + rect: + serializedVersion: 2 + x: 2112 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2212c0a41015e6380800000000000000 + internalID: -8976147941323693790 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9F0E\u6218\u7532" + rect: + serializedVersion: 2 + x: 2144 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21a850bf903d2f080800000000000000 + internalID: -9155023052671186414 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9F0E\u817F\u7532" + rect: + serializedVersion: 2 + x: 2176 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f12d970fd022e2b40800000000000000 + internalID: 5417304845037720095 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9F0E\u8896\u7532" + rect: + serializedVersion: 2 + x: 2208 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6211791626288dbc0800000000000000 + internalID: -3758110529984982746 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E5D\u9F0E\u9774" + rect: + serializedVersion: 2 + x: 2240 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 024a6194c142ee150800000000000000 + internalID: 5903695865433203744 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E61\u6751\u98CE\u683C\u9676\u74F7\u5A03\u5A03" + rect: + serializedVersion: 2 + x: 2272 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f62e05174bf54f3c0800000000000000 + internalID: -4326728113396325777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E61\u95F4\u9EC4\u6768\u6805\u680F" + rect: + serializedVersion: 2 + x: 2304 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e27d76ba613162ac0800000000000000 + internalID: -3880393040847186130 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E66\u65AD\u5217\u4F20" + rect: + serializedVersion: 2 + x: 2336 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 19a0efa74e7f77270800000000000000 + internalID: 8248333803240426129 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E66\u7C4D1" + rect: + serializedVersion: 2 + x: 2368 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5623351da5dbae230800000000000000 + internalID: 3668953044203287141 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E66\u7C4D2" + rect: + serializedVersion: 2 + x: 2400 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 66d9cef596eed72f0800000000000000 + internalID: -973359808093840026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E66\u7C4D3" + rect: + serializedVersion: 2 + x: 2432 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f62a26dc395a12c0800000000000000 + internalID: -4460154363131058445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E66\u7C4D4" + rect: + serializedVersion: 2 + x: 2464 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10c5edd5ce70fe090800000000000000 + internalID: -8003169301045552127 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E71\u821E\u6597\u9189" + rect: + serializedVersion: 2 + x: 2496 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cbcb31cacbf34f0f0800000000000000 + internalID: -1084171530716070724 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E7E\u4E4B\u8868\u5FBD" + rect: + serializedVersion: 2 + x: 2528 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44a237bd52be45ba0800000000000000 + internalID: -6100993047352104380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E7E\u4E4B\u9B42" + rect: + serializedVersion: 2 + x: 2560 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02652c8e7a59e4ff0800000000000000 + internalID: -49937997457369568 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E7E\u5764\u4E00\u63B7" + rect: + serializedVersion: 2 + x: 2592 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d7082011f64ecd10800000000000000 + internalID: 2147732073474426839 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E7E\u5764\u77F3" + rect: + serializedVersion: 2 + x: 2624 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f48940e122cf9f720800000000000000 + internalID: 2880610660142848079 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C" + rect: + serializedVersion: 2 + x: 2656 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1fc3a9ef35c4aa500800000000000000 + internalID: 408222639867968753 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u5341\u516B\u5BBF\u5361" + rect: + serializedVersion: 2 + x: 2688 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c915b10ae66a2b810800000000000000 + internalID: 1779667796827525532 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u661F\u9F99\u73E0" + rect: + serializedVersion: 2 + x: 2720 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ebfa7a438738eab40800000000000000 + internalID: 5453440751094968254 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u7B49\u5956" + rect: + serializedVersion: 2 + x: 2752 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bae5b185741d40720800000000000000 + internalID: 2811602171737104043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u7B49\u7956\u9F99\u52CB\u7AE0" + rect: + serializedVersion: 2 + x: 2784 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d6778414c8a862a0800000000000000 + internalID: -6743954881875839279 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u7B49\u954C\u523B" + rect: + serializedVersion: 2 + x: 2816 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad95b1242891081c0800000000000000 + internalID: -4503571580124964390 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u7EA7\u4E5D\u9633\u4E39" + rect: + serializedVersion: 2 + x: 2848 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 739b04b6592c730f0800000000000000 + internalID: -1137226433882441417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u7EA7\u4E5D\u9F99\u6563" + rect: + serializedVersion: 2 + x: 2880 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25077d26056523a00800000000000000 + internalID: 734744592470470738 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u7EA7\u5F52\u5143\u6563" + rect: + serializedVersion: 2 + x: 2912 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a202c54002281f630800000000000000 + internalID: 3959088621459087402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u7EA7\u6C89\u9999\u4E38" + rect: + serializedVersion: 2 + x: 2944 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40ae8247cc0039830800000000000000 + internalID: 4076602965822597636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u7EA7\u6D3B\u8840\u6563" + rect: + serializedVersion: 2 + x: 2976 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f94e63705ad61ced0800000000000000 + internalID: -2395512971226323809 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u7EA7\u795E\u6C14\u4E38" + rect: + serializedVersion: 2 + x: 3008 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2fca6df8e2ac9440800000000000000 + internalID: 4944005612513709867 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u7EA7\u8FD8\u7075\u6C34" + rect: + serializedVersion: 2 + x: 3040 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 819b748da81db6f40800000000000000 + internalID: 5722898145768618264 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u7EA7\u91D1\u521B\u836F" + rect: + serializedVersion: 2 + x: 3072 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dace6c8f805c8e0f0800000000000000 + internalID: -1087402667685778259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u7EA7\u9F99\u6D8E\u9999" + rect: + serializedVersion: 2 + x: 3104 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f8b8d79a182add90800000000000000 + internalID: -7072296170150119184 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E8C\u8FDE\u7206" + rect: + serializedVersion: 2 + x: 3136 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2660b2f10ad1c520800000000000000 + internalID: 2720695351809959471 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u5251" + rect: + serializedVersion: 2 + x: 3168 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6da80474d750fa530800000000000000 + internalID: 3868316640559008470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u5C9A\u70DF\u7FE0\u56FE" + rect: + serializedVersion: 2 + x: 3200 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b85c2d84abc85ed0800000000000000 + internalID: -2424964491735443280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u6BCD\u53CC\u8054\u67DC" + rect: + serializedVersion: 2 + x: 3232 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5d98c9249f2cbd70800000000000000 + internalID: 9060168863765273946 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u6BCD\u753B\u5C4F\u7F57\u6C49\u5E8A" + rect: + serializedVersion: 2 + x: 3264 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04fa6761a9e45d3b0800000000000000 + internalID: -5488394147172274368 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u6D77\u671B\u677E\u74F6" + rect: + serializedVersion: 2 + x: 3296 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 588bd3c4e8b98f9f0800000000000000 + internalID: -434426328574478203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u6D9B\u5F29" + rect: + serializedVersion: 2 + x: 3328 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ac624c553094ca50800000000000000 + internalID: 6540511117704326313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u7476\u8170\u9970" + rect: + serializedVersion: 2 + x: 3360 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c72e6a7f53ca959a0800000000000000 + internalID: -6243770060584328580 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u7EB9\u4E07\u5BFF\u7389\u5982\u610F" + rect: + serializedVersion: 2 + x: 3392 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b45ab69e18165b80800000000000000 + internalID: -8406505134783572809 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u7EB9\u70B9\u7FE0\u7ACB\u67DC" + rect: + serializedVersion: 2 + x: 3424 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46ba11e3a666ae850800000000000000 + internalID: 6407046026381863780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u7EB9\u7537\u88C5\u793C\u5305" + rect: + serializedVersion: 2 + x: 3456 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4979c8013e98e24f0800000000000000 + internalID: -851591671198214252 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u7EB9\u864E\u7B26" + rect: + serializedVersion: 2 + x: 3488 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 00090a3f7ebf7b8e0800000000000000 + internalID: -1677595362528817152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u7FD4" + rect: + serializedVersion: 2 + x: 3520 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1c21c81d44e9a230800000000000000 + internalID: 3650699992739425307 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u96D5\u4E07\u5BFF\u83CA\u6F06\u76D2" + rect: + serializedVersion: 2 + x: 3552 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97357317ac12b4790800000000000000 + internalID: -7544899597362572423 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u9704\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 3584 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44293e530758176c0800000000000000 + internalID: -4147387064844578236 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u9704\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 3616 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 451b928f8d5074a80800000000000000 + internalID: -8482804943694483116 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u9704\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 3648 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b287566ad8b0edbe0800000000000000 + internalID: -1450709326956758997 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u9704\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 3680 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 194c49e86a26284b0800000000000000 + internalID: -5439676932413930351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u9704\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 3712 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32d07413378169f50800000000000000 + internalID: 6887719563136797987 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E91\u9704\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 3744 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8479d25a1c871310800000000000000 + internalID: 1375722255871997069 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94" + rect: + serializedVersion: 2 + x: 3776 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b31ae9559cc327580800000000000000 + internalID: -8830929083897568965 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u4E00\u52B3\u52A8\u8282\u5956\u7AE0" + rect: + serializedVersion: 2 + x: 3808 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2885e24f2027ffd0800000000000000 + internalID: -2308340896646199253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u5A01\u5C06\u4EE4" + rect: + serializedVersion: 2 + x: 3840 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12449046d67523740800000000000000 + internalID: 5130259052869796897 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u5E1D\u5947\u73CD" + rect: + serializedVersion: 2 + x: 3872 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ac27a83ff5861770800000000000000 + internalID: 8581193471214693544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u5E9C\u5361" + rect: + serializedVersion: 2 + x: 3904 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0dc7fbbcab7c8a080800000000000000 + internalID: -9175864635671216944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u5F69\u5BD2\u51B0" + rect: + serializedVersion: 2 + x: 3936 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60f42f801fe5f73d0800000000000000 + internalID: -3206740020334276858 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u5F69\u76CF" + rect: + serializedVersion: 2 + x: 3968 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb7509e09c17a87f0800000000000000 + internalID: -609549691208575042 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u65B9\u658B\u7CBD" + rect: + serializedVersion: 2 + x: 4000 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87333f4402fcd1380800000000000000 + internalID: -8998808742913690760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u661F\u8FDE\u73E0\u571F" + rect: + serializedVersion: 2 + x: 4032 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8268445461b1ffad0800000000000000 + internalID: -2666382671914695128 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u661F\u8FDE\u73E0\u6728" + rect: + serializedVersion: 2 + x: 4064 + y: 3744 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0598f85c62608e80800000000000000 + internalID: -8178428705816144627 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u661F\u8FDE\u73E0\u6C34" + rect: + serializedVersion: 2 + x: 0 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a99d353733606ea0800000000000000 + internalID: -5881592024578287197 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u661F\u8FDE\u73E0\u706B" + rect: + serializedVersion: 2 + x: 32 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dca060b814d7ad450800000000000000 + internalID: 6114337164567644877 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u661F\u8FDE\u73E0\u91D1" + rect: + serializedVersion: 2 + x: 64 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7db0cb9dc447214c0800000000000000 + internalID: -4318261219275568169 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u661F\u9F99\u73E0" + rect: + serializedVersion: 2 + x: 96 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40bb262689fbb3af0800000000000000 + internalID: -415527879395067132 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u6BD2\u6DB2" + rect: + serializedVersion: 2 + x: 128 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6bd515c967fa659a0800000000000000 + internalID: -6244610909339034186 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u70E8\u534E\u6676" + rect: + serializedVersion: 2 + x: 160 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90568af455bc5d550800000000000000 + internalID: 6185073230532338953 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u74E3\u6885\u7EB9\u9694\u65AD" + rect: + serializedVersion: 2 + x: 192 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 385ee4c5e5102d290800000000000000 + internalID: -7867224094275607165 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u7B49\u5956" + rect: + serializedVersion: 2 + x: 224 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9fdc6795ce117510800000000000000 + internalID: 1545049981162676125 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u7B49\u954C\u523B" + rect: + serializedVersion: 2 + x: 256 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9a3b2a8026aff5f60800000000000000 + internalID: 8025408359956132777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u7EA7\u4E5D\u9633\u4E39" + rect: + serializedVersion: 2 + x: 288 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02ec3d5c4d7ab1500800000000000000 + internalID: 368072326854725152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u7EA7\u4E5D\u9F99\u6563" + rect: + serializedVersion: 2 + x: 320 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d65bd98cab0da1a60800000000000000 + internalID: 7645652818063111533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u7EA7\u5F52\u5143\u6563" + rect: + serializedVersion: 2 + x: 352 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f1b4a396fda6a450800000000000000 + internalID: 6099754019870519800 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u7EA7\u6C89\u9999\u4E38" + rect: + serializedVersion: 2 + x: 384 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16243e49c86796310800000000000000 + internalID: 1398779505440670305 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u7EA7\u6D3B\u8840\u6563" + rect: + serializedVersion: 2 + x: 416 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8aed62ff4fa704eb0800000000000000 + internalID: -4737651615322415448 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u7EA7\u795E\u6C14\u4E38" + rect: + serializedVersion: 2 + x: 448 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ffd145695c1d04ec0800000000000000 + internalID: -3584634656826057217 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u7EA7\u8FD8\u7075\u6C34" + rect: + serializedVersion: 2 + x: 480 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25daab022f8dd6480800000000000000 + internalID: -8904222353798812334 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u7EA7\u91D1\u521B\u836F" + rect: + serializedVersion: 2 + x: 512 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13ea53efe58421f70800000000000000 + internalID: 9156460565226696241 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u7EA7\u9F99\u6D8E\u9999" + rect: + serializedVersion: 2 + x: 544 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91fe939aef49e82d0800000000000000 + internalID: -3274516057570021607 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u8272\u7405\u740A\u8170\u9970" + rect: + serializedVersion: 2 + x: 576 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02ebf4ce2d35b7810800000000000000 + internalID: 1764095844418567712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u8272\u795E\u4F51\u9879\u94FE" + rect: + serializedVersion: 2 + x: 608 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2906841cd8006b3f0800000000000000 + internalID: -885519667898589038 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u8272\u795E\u62A4\u9879\u94FE" + rect: + serializedVersion: 2 + x: 640 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b56c85d04dc8cfe0800000000000000 + internalID: -1168458424958294600 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u8272\u795E\u79C0\u9879\u94FE" + rect: + serializedVersion: 2 + x: 672 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc2fb991a64c30ff0800000000000000 + internalID: -70997209132567859 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u8272\u795E\u8C0F\u9879\u94FE" + rect: + serializedVersion: 2 + x: 704 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d94ab735e7e4c650800000000000000 + internalID: 6252377154365573592 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u8272\u7C98\u5408\u5242" + rect: + serializedVersion: 2 + x: 736 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a15acc1a48b37e60800000000000000 + internalID: 7958907594943910309 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u8272\u821C\u65E5\u8170\u9970" + rect: + serializedVersion: 2 + x: 768 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e22f52ae5519272f0800000000000000 + internalID: -976558370999373266 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u8272\u82F1\u534E\u8170\u9970" + rect: + serializedVersion: 2 + x: 800 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22da912a060046b90800000000000000 + internalID: -7249669085123203806 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u8272\u9E7F" + rect: + serializedVersion: 2 + x: 832 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14c2a6efba941f2e0800000000000000 + internalID: -2093811348693963711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u8272\u9E9F\u5609\u8170\u9970" + rect: + serializedVersion: 2 + x: 864 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6cdf764da490465c0800000000000000 + internalID: -4223240333570867770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u82B1\u86DB" + rect: + serializedVersion: 2 + x: 896 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ee8db0a20b60bbf0800000000000000 + internalID: -310630715257680158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u82B1\u874E" + rect: + serializedVersion: 2 + x: 928 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50b9a5c8b69d453a0800000000000000 + internalID: -6677473291544126715 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u884C\u4E7E\u5764\u4EE4" + rect: + serializedVersion: 2 + x: 960 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: afa8c96e0bfcc94e0800000000000000 + internalID: -1973474178004907270 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u884C\u5143\u6C14" + rect: + serializedVersion: 2 + x: 992 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43bceb7e025e6a380800000000000000 + internalID: -8960222479117268172 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u884C\u5929\u8F6E" + rect: + serializedVersion: 2 + x: 1024 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ce69b35eb0baf930800000000000000 + internalID: 4177845935834492612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u884C\u77F3" + rect: + serializedVersion: 2 + x: 1056 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 242b5011c582a9b50800000000000000 + internalID: 6600632579752571458 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u9041\u76D4" + rect: + serializedVersion: 2 + x: 1088 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f82e1a9ca072518a0800000000000000 + internalID: -6335114373540748657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u94E2\u94B1" + rect: + serializedVersion: 2 + x: 1120 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a13fdbf941faac60800000000000000 + internalID: 7830336202197643685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E94\u9999\u6842\u82B1\u7CD5" + rect: + serializedVersion: 2 + x: 1152 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32b7c2151b8eea670800000000000000 + internalID: 8552028590691875619 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E9F\u96F7\u5B50\u5361\u72471" + rect: + serializedVersion: 2 + x: 1184 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a932eba161ff58c0800000000000000 + internalID: -4008219741538600537 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E9F\u96F7\u5B50\u5361\u72472" + rect: + serializedVersion: 2 + x: 1216 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ae8244f38fc128f0800000000000000 + internalID: -566943912426303840 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E9F\u96F7\u5B50\u5361\u72473" + rect: + serializedVersion: 2 + x: 1248 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3f619c15887cad90800000000000000 + internalID: -7085155600655356098 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E9F\u96F7\u5B50\u5361\u72474" + rect: + serializedVersion: 2 + x: 1280 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42b3e83a13558cef0800000000000000 + internalID: -87726521047958748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E9F\u96F7\u5B50\u5361\u72475" + rect: + serializedVersion: 2 + x: 1312 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1bc418911f9688100800000000000000 + internalID: 110454675106516145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E9F\u96F7\u5B50\u5361\u72476" + rect: + serializedVersion: 2 + x: 1344 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c327b86607ac65940800000000000000 + internalID: 5284633796871418428 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E9F\u96F7\u5B50\u5361\u72477" + rect: + serializedVersion: 2 + x: 1376 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 17c7facad935ce960800000000000000 + internalID: 7632567405158300785 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4E9F\u96F7\u5B50\u5361\u72478" + rect: + serializedVersion: 2 + x: 1408 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 324a1b5d5c6777e30800000000000000 + internalID: 4501196944645923875 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EA1\u8005\u4E4B\u51A0" + rect: + serializedVersion: 2 + x: 1440 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1f7d0b206b68eb50800000000000000 + internalID: 6622661312831651612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EA5" + rect: + serializedVersion: 2 + x: 1472 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cde4b4266f8cda6c0800000000000000 + internalID: -4130424322692264228 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EA6" + rect: + serializedVersion: 2 + x: 1504 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4718ac81113b813c0800000000000000 + internalID: -4388560950860807820 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EAE\u7247\u68A6\u5E7B\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1536 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a51327dc31c00c00800000000000000 + internalID: 864903595506734497 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EAE\u7247\u68A6\u5E7B\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1568 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 910c51ff2f5680700800000000000000 + internalID: 506767052415287321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EAE\u7247\u68A6\u5E7B\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1600 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3a3c31cc87266860800000000000000 + internalID: 7522743713059846716 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EAE\u7247\u68A6\u5E7B\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1632 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f52b93848c3a95110800000000000000 + internalID: 1250210452172550751 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EAE\u82B1\u756A\u83B2\u53CC\u9760\u57AB" + rect: + serializedVersion: 2 + x: 1664 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e58f67a7b9275eb0800000000000000 + internalID: -4731267014764558875 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EAE\u94F6\u67AA" + rect: + serializedVersion: 2 + x: 1696 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43e2f2d69fd87fb10800000000000000 + internalID: 2015235460689767988 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EAE\u94F6\u9524" + rect: + serializedVersion: 2 + x: 1728 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef19382f2dd4170c0800000000000000 + internalID: -4579793777651904002 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EB2\u4EB2\u5BC6\u5BC6\u7684\u52A8\u4F5C" + rect: + serializedVersion: 2 + x: 1760 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 18a2a6e92fee7cf70800000000000000 + internalID: 9207590688989522561 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u4ED9\u77F3" + rect: + serializedVersion: 2 + x: 1792 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 167f65901961707e0800000000000000 + internalID: -1799444713928460447 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u53C2\u679C" + rect: + serializedVersion: 2 + x: 1824 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c55ba44584967710800000000000000 + internalID: 1690702010227840454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13a\u6B66\u4FA0\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1856 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b48f62484b13854d0800000000000000 + internalID: -3145709688337270709 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13a\u6B66\u4FA0\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1888 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a5f6b33dd16daa00800000000000000 + internalID: 769378714033517990 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13a\u6B66\u4FA0\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1920 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92d2fb75b5428ede0800000000000000 + internalID: -1303752117390987991 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13a\u6B66\u4FA0\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1952 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3129789bfb224a560800000000000000 + internalID: 7324017100858036755 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13a\u6CD5\u5E08\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1984 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7c8b4b87d2417c80800000000000000 + internalID: -8326800742508950404 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13a\u6CD5\u5E08\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2016 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 781368685bb8a9370800000000000000 + internalID: 8330124072537436551 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13a\u6CD5\u5E08\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2048 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12978a2f59e132e40800000000000000 + internalID: 5630377588513339681 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13a\u6CD5\u5E08\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2080 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb473c665588122f0800000000000000 + internalID: -999367741921856325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13b\u6B66\u4FA0\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2112 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 738c6e5d1b30efb50800000000000000 + internalID: 6628739763868715063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13b\u6B66\u4FA0\u804C\u4E1A\u88C5\u62A4\u624B" + rect: + serializedVersion: 2 + x: 2144 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cdfd051ff005b7ba0800000000000000 + internalID: -6090186041685123108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13b\u6B66\u4FA0\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2176 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b2dcb5bf7e798db0800000000000000 + internalID: -4789157641756814668 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13b\u6B66\u4FA0\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2208 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f2462ecdcef196e0800000000000000 + internalID: -1832403413482716429 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13b\u6CD5\u5E08\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2240 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3a91a97c08dd8db0800000000000000 + internalID: -4787933280733128133 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13b\u6CD5\u5E08\u804C\u4E1A\u88C5\u62A4\u624B" + rect: + serializedVersion: 2 + x: 2272 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bccbd32c69b9288e0800000000000000 + internalID: -1692619438131659573 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13b\u6CD5\u5E08\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2304 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c94b496d8edb66e0800000000000000 + internalID: -1843134923539789370 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF13b\u6CD5\u5E08\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2336 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e487130da051f4420800000000000000 + internalID: 2616333044712306766 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u5377\u8F74\u98DE\u884C\u5668" + rect: + serializedVersion: 2 + x: 2368 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 705bd4e082fa90df0800000000000000 + internalID: -213446920749861625 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u53CC\u9F99\u98DE\u5251" + rect: + serializedVersion: 2 + x: 2400 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6d0cd0a7605be4a40800000000000000 + internalID: 5354416046412251350 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u5982\u610F" + rect: + serializedVersion: 2 + x: 2432 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e003c011e990e6d0800000000000000 + internalID: -2963199362881879839 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u5C0F\u82B1\u8774\u8776\u5251" + rect: + serializedVersion: 2 + x: 2464 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2b01b5690b6b6a80800000000000000 + internalID: -8472560585862477012 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u62C2\u5C18\u98DE\u5251" + rect: + serializedVersion: 2 + x: 2496 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e70427347eba7bbc0800000000000000 + internalID: -3767353553514774402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u6B66\u4FA0\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2528 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e28340532d6bf82c0800000000000000 + internalID: -4427118894733051858 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u6B66\u4FA0\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2560 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a88cc41fad358860800000000000000 + internalID: 7531493774024542374 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u6B66\u4FA0\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2592 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 18defd2bdb0f768d0800000000000000 + internalID: -2853047141375414911 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u6B66\u4FA0\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2624 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e246aea58fccf3ed0800000000000000 + internalID: -2431999906707512274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u6CD5\u5E08\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2656 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 992a3744a279b3aa0800000000000000 + internalID: -6180179855843024231 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u6CD5\u5E08\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2688 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a97df25ffb58d2f60800000000000000 + internalID: 8011206371660781466 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u6CD5\u5E08\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2720 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58dace6e74ed7e230800000000000000 + internalID: 3668144821914873221 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u6CD5\u5E08\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2752 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ec490de12e615920800000000000000 + internalID: 2977281920658394341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u70C8\u7EA2\u98DE\u5251" + rect: + serializedVersion: 2 + x: 2784 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d41bcd19a26086ae0800000000000000 + internalID: -1555986891350953651 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u72FC\u5934" + rect: + serializedVersion: 2 + x: 2816 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ca3f68cda5de4b70800000000000000 + internalID: 8885274057217358535 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u7D2B\u743C" + rect: + serializedVersion: 2 + x: 2848 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ec9cb40c00577ce0800000000000000 + internalID: -1407568345980691228 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u9C7C" + rect: + serializedVersion: 2 + x: 2880 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b53664d8310da28f0800000000000000 + internalID: -564410020888419493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u65CF\u9F99\u5E1D\u8840\u88D4" + rect: + serializedVersion: 2 + x: 2912 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 31259ee2b07e2eda0800000000000000 + internalID: -5916912925193711085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u6C11\u5E01" + rect: + serializedVersion: 2 + x: 2944 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f59a4a3b9cb17e330800000000000000 + internalID: 3739988568670775647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u738B\u5143\u7CBE" + rect: + serializedVersion: 2 + x: 2976 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ff8be30f69fe8730800000000000000 + internalID: 4003411373981405173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u7684\u8111\u888B" + rect: + serializedVersion: 2 + x: 3008 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8bde39f249e577ab0800000000000000 + internalID: -5010432069879992904 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u7C7B\u98DE\u884C\u5668" + rect: + serializedVersion: 2 + x: 3040 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b36e8c284b231aef0800000000000000 + internalID: -98741965955733957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u9C7C" + rect: + serializedVersion: 2 + x: 3072 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a062f6a6fdd000470800000000000000 + internalID: 8358696161614177802 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u9C7C\u4E4B\u5FC3" + rect: + serializedVersion: 2 + x: 3104 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87c1810e85ce34f50800000000000000 + internalID: 6864590123503721592 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u9C7C\u5B9D\u85CF" + rect: + serializedVersion: 2 + x: 3136 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de3a106c7d4f56ea0800000000000000 + internalID: -5880024530885172243 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u9C7C\u6446\u644A\u5C0F" + rect: + serializedVersion: 2 + x: 3168 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23f116ae88c89e670800000000000000 + internalID: 8568534285724753714 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u9C7C\u73A9\u5076" + rect: + serializedVersion: 2 + x: 3200 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: effb3755f8000ee40800000000000000 + internalID: 5683543345355538430 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EBA\u9C7C\u9CCD" + rect: + serializedVersion: 2 + x: 3232 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb078c6dfb97f2d20800000000000000 + internalID: 3255954920461332670 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EC1\u5FB7\u4E4B\u5FBD" + rect: + serializedVersion: 2 + x: 3264 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a90c58daeee93eb70800000000000000 + internalID: 8927153634329084058 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EC1\u5FB7\u4E4B\u7AE0" + rect: + serializedVersion: 2 + x: 3296 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a762dbcc6ebcba280800000000000000 + internalID: -9030900435623532934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EC7\u4EBA\u8FFD\u8E2A" + rect: + serializedVersion: 2 + x: 3328 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 088a15f8e1093df20800000000000000 + internalID: 3446256600796473472 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ECE\u5883\u795E\u4E39\xB7\u5468\u5929" + rect: + serializedVersion: 2 + x: 3360 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36b89f505b0a06d20800000000000000 + internalID: 3269790028820745059 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ECE\u9769\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3392 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9279b9f5b5d87f50800000000000000 + internalID: 6879483408363909787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED3\u5E93\u6269\u5145\u77F3" + rect: + serializedVersion: 2 + x: 3424 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe1f2a68e44039330800000000000000 + internalID: 3716318852823577071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED3\u9F20" + rect: + serializedVersion: 2 + x: 3456 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3df145a6ab2f3c0d0800000000000000 + internalID: -3403610010900226093 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED5\u5973\u56FE" + rect: + serializedVersion: 2 + x: 3488 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc2ba7008c4b0b3b0800000000000000 + internalID: -5498696373924875573 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED5\u5973\u88C5" + rect: + serializedVersion: 2 + x: 3520 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a05fdfe53d90cda0800000000000000 + internalID: -5926564254636355424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED5\u5973\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 3552 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7af7fd0b1fc0218a0800000000000000 + internalID: -6335987493562777689 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED5\u5973\u978B" + rect: + serializedVersion: 2 + x: 3584 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a503e47f7a005b390800000000000000 + internalID: -7803330057940881318 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u4EBA\u638C" + rect: + serializedVersion: 2 + x: 3616 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 15dd52e8467fa7db0800000000000000 + internalID: -4793246842128835247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u4EBA\u7403" + rect: + serializedVersion: 2 + x: 3648 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f13ebde8a92b1880800000000000000 + internalID: -8639265654660255243 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u4F51\u62A4\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 3680 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e55d3530e1e81d370800000000000000 + internalID: 8345607844050228574 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u4F51\u9B54\u529B\u7B26" + rect: + serializedVersion: 2 + x: 3712 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6faa482bf4aed240800000000000000 + internalID: 4818470049952739180 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u51A5\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 3744 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 974b582ba33c7f0a0800000000000000 + internalID: -6847790051522923399 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u51A5\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 3776 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1df2e257ed4916730800000000000000 + internalID: 3990634427996581841 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u51A5\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 3808 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b345e0b53713ad5e0800000000000000 + internalID: -1884139122582465477 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u51A5\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 3840 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1950e378ae9657570800000000000000 + internalID: 8463787530724967825 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u51A5\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 3872 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d406ebaf1ebd1d2e0800000000000000 + internalID: -2102657787384405939 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u51A5\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 3904 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7bb13e00a1bbc0080800000000000000 + internalID: -9219788616775820361 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u5883\u5947\u7F18" + rect: + serializedVersion: 2 + x: 3936 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86e629ae4625f4510800000000000000 + internalID: 1535536591342300776 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u5B97\u79D8\u7B08" + rect: + serializedVersion: 2 + x: 3968 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1784c05aca5d4ab90800000000000000 + internalID: -7231420164170037135 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u5C65\u5E72\u7EA2\u6446\u4EF6" + rect: + serializedVersion: 2 + x: 4000 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e2781600da98cc70800000000000000 + internalID: 8991606874291335904 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u65F6\u88C5\u5305\u88F92" + rect: + serializedVersion: 2 + x: 4032 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23833dd0f71bb2ed0800000000000000 + internalID: -2437659614040082382 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u6811\u679C" + rect: + serializedVersion: 2 + x: 4064 + y: 3712 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc57969b5d9f4b990800000000000000 + internalID: -7370991993764612657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u4E39" + rect: + serializedVersion: 2 + x: 0 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a27b946d3bb70040800000000000000 + internalID: 4613862215619670690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 32 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 730db92615e0cd9a0800000000000000 + internalID: -6207070443713867721 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u4E4B\u606F" + rect: + serializedVersion: 2 + x: 64 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 484c7b7532ac8b550800000000000000 + internalID: 6176909142082962564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 96 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77ed3311f0866a190800000000000000 + internalID: -7951553678153621897 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 128 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3922655ed643a4c50800000000000000 + internalID: 6650185446369665683 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 160 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 804dd08d75806cce0800000000000000 + internalID: -1385410661989886968 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 192 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af752c3cce668e020800000000000000 + internalID: 2371258370893174778 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 224 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 690094bac54cea310800000000000000 + internalID: 1418286834958008470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u4F69" + rect: + serializedVersion: 2 + x: 256 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61c9b2350b03c8430800000000000000 + internalID: 3786454920579488790 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u5F69\u4F69" + rect: + serializedVersion: 2 + x: 288 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b98ceab6992c13bf0800000000000000 + internalID: -346281732138415973 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u62A4\u817F" + rect: + serializedVersion: 2 + x: 320 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 17d8498e2c7291f60800000000000000 + internalID: 8005473530706955633 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u6CD5\u888D" + rect: + serializedVersion: 2 + x: 352 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bb22ca220fff4f60800000000000000 + internalID: 8020909846142528434 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u76D4" + rect: + serializedVersion: 2 + x: 384 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b0c03717fe633180800000000000000 + internalID: -9136837211479555915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u795E\u529B\u6212" + rect: + serializedVersion: 2 + x: 416 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f84c58cbeac85490800000000000000 + internalID: -7757227244118062855 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u79D8\u6CD5\u6212" + rect: + serializedVersion: 2 + x: 448 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b94b632ddf3479f0800000000000000 + internalID: -471681841952503367 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u7B26" + rect: + serializedVersion: 2 + x: 480 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bbe6687a96a117bc0800000000000000 + internalID: -3787216770557382981 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u7EDD\u9B54\u4F69" + rect: + serializedVersion: 2 + x: 512 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16c4c840078017c20800000000000000 + internalID: 3202350087242796129 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u8F7B\u94E0" + rect: + serializedVersion: 2 + x: 544 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3047f65d2a56a150800000000000000 + internalID: 5883489113985204287 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u7075\u9879\u94FE" + rect: + serializedVersion: 2 + x: 576 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4c378e41a5c4ecb0800000000000000 + internalID: -4835522803291177909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u77F3\u788E\u7247" + rect: + serializedVersion: 2 + x: 608 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58d42e511f7150b00800000000000000 + internalID: 794067233522470277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u829D\u8349" + rect: + serializedVersion: 2 + x: 640 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 503577ae2cd479b10800000000000000 + internalID: 1988143260060046085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u9522\u4EE4" + rect: + serializedVersion: 2 + x: 672 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89fee9c4057b1e120800000000000000 + internalID: 2441434028522270616 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u9713\u7B11\u9690" + rect: + serializedVersion: 2 + x: 704 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a6e87738104a1c40800000000000000 + internalID: 5483765969031063206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u98CE\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 736 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9fe3aae6f0fff0720800000000000000 + internalID: 2814748733876092665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u98CE\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 768 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 05c53b7cf4ae34530800000000000000 + internalID: 3838168935823531088 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u98CE\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 800 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cdd4a1bce720c7800800000000000000 + internalID: 611366393012178396 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u98CE\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 832 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a9d4849ce28863e0800000000000000 + internalID: -2060252876906374749 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u98CE\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 864 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2284d4d0c7cc0a5e0800000000000000 + internalID: -1900294209579169758 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u98CE\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 896 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5698d3b3ae7a92a50800000000000000 + internalID: 6496908561916725605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u98CE\u5C65" + rect: + serializedVersion: 2 + x: 928 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f046b272ad0e73f30800000000000000 + internalID: 4555356775673193487 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u98CE\u62A4\u624B" + rect: + serializedVersion: 2 + x: 960 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 196fe4a54616e3ce0800000000000000 + internalID: -1423593348562749807 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u98CE\u888D" + rect: + serializedVersion: 2 + x: 992 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a25dc519fbd34cd90800000000000000 + internalID: -7078464821332749014 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u98CE\u88E4" + rect: + serializedVersion: 2 + x: 1024 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ef96b7fa3d6c65f0800000000000000 + internalID: -762114136900984859 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u98CE\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1056 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b783a40fcfd22eef0800000000000000 + internalID: -80451278952843141 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u9B54\u5370\u8BB0" + rect: + serializedVersion: 2 + x: 1088 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22bf794ac90ee2ff0800000000000000 + internalID: -58862781728294110 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u9B54\u5C3A" + rect: + serializedVersion: 2 + x: 1120 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d2d565b6eb27a05c0800000000000000 + internalID: -4248457136300466899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u9B54\u5C3A\u6A21\u5177" + rect: + serializedVersion: 2 + x: 1152 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 28a5f27f28a341010800000000000000 + internalID: 1158615338308295298 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u9B54\u788E\u7247" + rect: + serializedVersion: 2 + x: 1184 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ba57209b9f57d4a0800000000000000 + internalID: -6568676409753511240 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u9B54\u795E\u5C3A" + rect: + serializedVersion: 2 + x: 1216 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a93242bff8079d950800000000000000 + internalID: 6474329703017882522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u9B54\u79D8\u7B08" + rect: + serializedVersion: 2 + x: 1248 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee90ce9bc0be19720800000000000000 + internalID: 2851318478993623534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u9B54\u79D8\u7B3A" + rect: + serializedVersion: 2 + x: 1280 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f91823ea68cb8ef50800000000000000 + internalID: 6910980914834211231 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u9B54\u888B" + rect: + serializedVersion: 2 + x: 1312 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4eafea66a3c896290800000000000000 + internalID: -7896626289158718748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4ED9\u9E64\u8349" + rect: + serializedVersion: 2 + x: 1344 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aede5bb3d18333690800000000000000 + internalID: -7623688046001132054 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EE3\u8868\u8D22\u5BCC\u7684\u7EB8\u5F20" + rect: + serializedVersion: 2 + x: 1376 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 708e97e85ff732f40800000000000000 + internalID: 5702542245815248903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EE4\u7BAD" + rect: + serializedVersion: 2 + x: 1408 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5676d66f5129f24a0800000000000000 + internalID: -6615908704557635739 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EF2\u590F\u4E4B\u7CBD" + rect: + serializedVersion: 2 + x: 1440 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c25fb614a9261ef20800000000000000 + internalID: 3450147204204590380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EFB" + rect: + serializedVersion: 2 + x: 1472 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07f4e711038db61e0800000000000000 + internalID: -2203429891704205456 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4EFB\u52A1\u680F\u6269\u5145\u77F3" + rect: + serializedVersion: 2 + x: 1504 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc9eff157c7ca59a0800000000000000 + internalID: -6243458274507626037 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F01\u9E45\u53D1\u5C04\u5668" + rect: + serializedVersion: 2 + x: 1536 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbcfb588886976e30800000000000000 + internalID: 4496728266100178109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F01\u9E45\u5587\u53ED" + rect: + serializedVersion: 2 + x: 1568 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 416361b07e1c18730800000000000000 + internalID: 3999691142149322260 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F01\u9E45\u5A03\u5A03" + rect: + serializedVersion: 2 + x: 1600 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea2dd3f3990ce2d80800000000000000 + internalID: -8273463701009476946 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F09\u4FEA\u60C5\u6DF1" + rect: + serializedVersion: 2 + x: 1632 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee422ec2568b1d220800000000000000 + internalID: 2508989212106302702 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F0F\u7FB2\u6613\u540D\u77F3" + rect: + serializedVersion: 2 + x: 1664 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5388bc5ef7015aa30800000000000000 + internalID: 4225801966859290677 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F0F\u7FB2\u6613\u540D\u77F31" + rect: + serializedVersion: 2 + x: 1696 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d92168d8dbe236940800000000000000 + internalID: 5288121779121164957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F0F\u7FB2\u6613\u540D\u77F32" + rect: + serializedVersion: 2 + x: 1728 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81364408072d7c0a0800000000000000 + internalID: -6861284126645525736 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F0F\u7FB2\u6613\u540D\u77F33" + rect: + serializedVersion: 2 + x: 1760 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51f0edbf8d53904c0800000000000000 + internalID: -4320863161430438123 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F0F\u7FB2\u73E0" + rect: + serializedVersion: 2 + x: 1792 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21f34f37921e16160800000000000000 + internalID: 7017137262575238930 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F0F\u7FB2\u9057\u9B44" + rect: + serializedVersion: 2 + x: 1824 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df169e735580657b0800000000000000 + internalID: -5235988354668338691 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F0F\u7FB2\u9B42\u5B88" + rect: + serializedVersion: 2 + x: 1856 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3e9937086c6cf5e0800000000000000 + internalID: -1874504150839353797 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F10\u6728\u5382" + rect: + serializedVersion: 2 + x: 1888 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff8171d6eedb452f0800000000000000 + internalID: -984953586757199617 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F1A\u52A8\u7684\u52FA\u5B50" + rect: + serializedVersion: 2 + x: 1920 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0b2af37fa1c7f7d0800000000000000 + internalID: -2884624076998300915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F20\u56FD\u7389\u73BA" + rect: + serializedVersion: 2 + x: 1952 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6636dcab386f6e10800000000000000 + internalID: 2193086149064799851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F24\u75D5\u4E4B\u5319" + rect: + serializedVersion: 2 + x: 1984 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c49becff1a2998a40800000000000000 + internalID: 5370985255095155020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F24\u9E92\u68EE\u6797\u4E4B\u53F6" + rect: + serializedVersion: 2 + x: 2016 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c0dbb33679427320800000000000000 + internalID: 2554184710695407811 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F2F\u7235\u73AB\u7470\u9AA8\u74F7\u676F" + rect: + serializedVersion: 2 + x: 2048 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54d03803e1a06a960800000000000000 + internalID: 7612783344895593797 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F2F\u7235\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2080 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ad2ac2fc2cda4300800000000000000 + internalID: 237244016000380322 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F2F\u7235\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2112 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6244d7b7cd196ef50800000000000000 + internalID: 6910371054397244454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F2F\u7235\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2144 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71ab5796360125a50800000000000000 + internalID: 6508282430660917783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F2F\u7235\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2176 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f6e4276868273b60800000000000000 + internalID: 7725688114649556722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F4E\u7EA7\u5934\u76D4\u56FE\u6807" + rect: + serializedVersion: 2 + x: 2208 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27637c8f7e41f2d80800000000000000 + internalID: -8273371003912505742 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F4E\u7EA7\u77F3\u5934" + rect: + serializedVersion: 2 + x: 2240 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22d909704e1d68660800000000000000 + internalID: 7387823016057543970 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F50\u7F57\u65F6\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2272 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3e9bb5b27064ac50800000000000000 + internalID: 6675566593461427771 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F50\u7F57\u65F6\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2304 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 461bf938245d4bff0800000000000000 + internalID: -21157616577171100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F50\u7F57\u65F6\u88C5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 2336 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97e81fdf5bddd0640800000000000000 + internalID: 5047934531071479417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F50\u7F57\u65F6\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2368 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e39d3fc23d0adafc0800000000000000 + internalID: -3481950108034803394 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F50\u7F57\u65F6\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2400 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65c35e24032bae3c0800000000000000 + internalID: -4329452171412816810 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F53\u80FD\u4E39" + rect: + serializedVersion: 2 + x: 2432 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 53b58452b6a42c190800000000000000 + internalID: -7943704968680678603 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F5B\u5149\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2464 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0321c4bc24d75d90800000000000000 + internalID: -7108980198304832756 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F5B\u624B" + rect: + serializedVersion: 2 + x: 2496 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 285348d4f2f42c160800000000000000 + internalID: 7044279831743444354 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F60\u662F\u6211\u7684\u552F\u4E00" + rect: + serializedVersion: 2 + x: 2528 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec3990089959eaae0800000000000000 + internalID: -1536125936376114226 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F8D\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2560 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4a8f3eb8461be3b0800000000000000 + internalID: -5482263619708155315 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F8D\u5E94\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2592 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da7397bc8748b5980800000000000000 + internalID: -8549093813288093779 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F8D\u5E94\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2624 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e6e2a6534901e540800000000000000 + internalID: 5035316043197900517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F8D\u5E94\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2656 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad05f6d1b80171260800000000000000 + internalID: 7068136329861615834 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4F8D\u5E94\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2688 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f4e6033967eecf60800000000000000 + internalID: 8056631222426068217 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FA0\u5BA2\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2720 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d86570ca6783366b0800000000000000 + internalID: -5304333853768853875 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FA0\u5BA2\u5305\u5B50\u5C0F\u56FE\u6807" + rect: + serializedVersion: 2 + x: 2752 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4470f24a8b8332340800000000000000 + internalID: 4837772790405728068 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FA0\u5BA2\u884C" + rect: + serializedVersion: 2 + x: 2784 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd86234cdc464a0a0800000000000000 + internalID: -6871256296537823009 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FA0\u5BA2\u88C5" + rect: + serializedVersion: 2 + x: 2816 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de72b1b9a11aa2750800000000000000 + internalID: 6281009765965047789 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FA0\u5BA2\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2848 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4ce5a37308795bb0800000000000000 + internalID: -4946790759469290417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FA0\u5BA2\u978B" + rect: + serializedVersion: 2 + x: 2880 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99d6401ba7d6e6870800000000000000 + internalID: 8677993905712819609 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FA0\u98CE\u4E4B\u529B" + rect: + serializedVersion: 2 + x: 2912 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63a9fdf1299cae280800000000000000 + internalID: -9013170074791470538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FC4\u7F57\u65AF\u62B9\u80F8\u88D9\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2944 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9c03c6b6a549dd50800000000000000 + internalID: 6762512897806634138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FC4\u7F57\u65AF\u62B9\u80F8\u88D9\u5973\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2976 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78cd219ae22692040800000000000000 + internalID: 4623334445017128071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FC4\u7F57\u65AF\u62B9\u80F8\u88D9\u5973\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 3008 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6af02ddabad9bb30800000000000000 + internalID: 4303711415037917805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FC4\u7F57\u65AF\u62B9\u80F8\u88D9\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3040 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1eb0c76d8fcead990800000000000000 + internalID: -7360310087489156127 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FCF\u4E3D\u8774\u8776\u5973\u88C5-\u5934\u53D132" + rect: + serializedVersion: 2 + x: 3072 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d69f648f88fe8d3b0800000000000000 + internalID: -5487372774390957715 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FCF\u4E3D\u8774\u8776\u5973\u88C5-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 3104 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11028c946d9b33da0800000000000000 + internalID: -5966220751323783151 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FCF\u4E3D\u8774\u8776\u5973\u88C5-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 3136 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ea6103786c574650800000000000000 + internalID: 6217039414284085993 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FCF\u4E3D\u8774\u8776\u5973\u88C5-\u978B32" + rect: + serializedVersion: 2 + x: 3168 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fb20fa6954f4f230800000000000000 + internalID: 3671828261097188340 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FCF\u76AE\u7C89\u8272\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3200 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4f1da1663d6be000800000000000000 + internalID: 66266699861401422 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FCF\u76AE\u7C89\u8272\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3232 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40ed1bfe6757897a0800000000000000 + internalID: -6370212519227564540 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FCF\u76AE\u7C89\u8272\u88C5\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3264 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0872da657fd9c1e0800000000000000 + internalID: -2176963249460578293 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FCF\u76AE\u7C89\u8272\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3296 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2d2dae3babdc1790800000000000000 + internalID: -7557924546097107665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FDD\u547D\u7B26" + rect: + serializedVersion: 2 + x: 3328 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 082aeea42cbfac210800000000000000 + internalID: 1354171449877635712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FE1" + rect: + serializedVersion: 2 + x: 3360 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 559fedf9f1ebf8620800000000000000 + internalID: 2778648538146339157 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FE1\u4EF0\u6212\u6307" + rect: + serializedVersion: 2 + x: 3392 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16e5a71a193bf05b0800000000000000 + internalID: -5399899990133154207 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FE1\u4EF6" + rect: + serializedVersion: 2 + x: 3424 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e26d5f748691e690800000000000000 + internalID: -7574607602443787548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FE1\u5FB7\u4E4B\u5FBD" + rect: + serializedVersion: 2 + x: 3456 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6567b5e21358fa220800000000000000 + internalID: 2499362764491552342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FE1\u5FB7\u4E4B\u7AE0" + rect: + serializedVersion: 2 + x: 3488 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ffc925e84142ab60800000000000000 + internalID: 7755833289623588849 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u597D\u7684\u5251" + rect: + serializedVersion: 2 + x: 3520 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7c19033348959680800000000000000 + internalID: -8748919286710854530 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u597D\u7684\u70E7\u706B\u68CD" + rect: + serializedVersion: 2 + x: 3552 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 619fe68a3813815d0800000000000000 + internalID: -3091666702653523690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u70BC\u53F0" + rect: + serializedVersion: 2 + x: 3584 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03f5a9b9bf00cace0800000000000000 + internalID: -1392737104116949200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u771F\u5315\u9996\u846B\u82A6" + rect: + serializedVersion: 2 + x: 3616 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8e9eebbe4822c1530800000000000000 + internalID: 3826971737644263912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u771F\u53CC\u9B54\u955C" + rect: + serializedVersion: 2 + x: 3648 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 592e7bc29937827d0800000000000000 + internalID: -2942975254769180011 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u771F\u6843\u82B1\u5F13" + rect: + serializedVersion: 2 + x: 3680 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3f8b5953e81ca670800000000000000 + internalID: 8551237157205544764 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u771F\u7F50\u5B50" + rect: + serializedVersion: 2 + x: 3712 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0db2aa168dce4a20800000000000000 + internalID: 3048599973632589067 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u771F\u957F\u706F" + rect: + serializedVersion: 2 + x: 3744 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4377002066801fa10800000000000000 + internalID: 1941342148586665780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u771F\u9B54\u955C" + rect: + serializedVersion: 2 + x: 3776 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44934073f78211fa0800000000000000 + internalID: -5831835515619100348 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u7F57" + rect: + serializedVersion: 2 + x: 3808 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62cc6f66277e453c0800000000000000 + internalID: -4371614859730170842 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u7F57\u4E4B\u5FC3" + rect: + serializedVersion: 2 + x: 3840 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78eb5cdebeab00840800000000000000 + internalID: 5188352293200051847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u7F57\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3872 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96eea5727fabc06a0800000000000000 + internalID: -6481600193013027223 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u7F57\u4E4B\u89D2" + rect: + serializedVersion: 2 + x: 3904 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 024abc35f84569f20800000000000000 + internalID: 3429021140852122656 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u7F57\u5929\u97F3" + rect: + serializedVersion: 2 + x: 3936 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b384e852b9cd2c640800000000000000 + internalID: 5098880287044945979 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u7F57\u6775" + rect: + serializedVersion: 2 + x: 3968 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 905566d7e41709ad0800000000000000 + internalID: -2697531594869680887 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u884C\u5C65" + rect: + serializedVersion: 2 + x: 4000 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bec75401ff3452e0800000000000000 + internalID: -2138013618701611342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u884C\u62A4\u8155" + rect: + serializedVersion: 2 + x: 4032 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67d1175245614b9a0800000000000000 + internalID: -6218320634830578314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u884C\u888D" + rect: + serializedVersion: 2 + x: 4064 + y: 3680 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 719b3166ce6e89b70800000000000000 + internalID: 8906122166124394775 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u884C\u88E4" + rect: + serializedVersion: 2 + x: 0 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e05028ba338daaf0800000000000000 + internalID: -383506105036156700 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u9020\u4EFB\u52A1\u5F00\u542F\u9053\u5177" + rect: + serializedVersion: 2 + x: 32 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 528beaef2d20eccf0800000000000000 + internalID: -230243425710065627 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u9020\u914D\u65B9\u5305\u88F9" + rect: + serializedVersion: 2 + x: 64 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b43e990afb0826830800000000000000 + internalID: 4062951374363157323 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u9020\u914D\u65B9\u5305\u88F92" + rect: + serializedVersion: 2 + x: 96 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf77d6979c3eb98c0800000000000000 + internalID: -3991346190268663812 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u4FEE\u9020\u914D\u65B9\u5305\u88F93" + rect: + serializedVersion: 2 + x: 128 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 31310e28434117220800000000000000 + internalID: 2481787085424431891 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u501A\u5929\u9547\u9B42\u5251" + rect: + serializedVersion: 2 + x: 160 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe06742cac2e590b0800000000000000 + internalID: -5722418391033618193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u501A\u5929\u9547\u9B42\u6756" + rect: + serializedVersion: 2 + x: 192 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24854d0b9e3197170800000000000000 + internalID: 8176588492882860098 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u501A\u836B\u957F\u4E50" + rect: + serializedVersion: 2 + x: 224 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2edd54daac6298970800000000000000 + internalID: 8757573602330926562 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u501F\u4E66\u79EF\u5206\u5361" + rect: + serializedVersion: 2 + x: 256 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8db3dfbcc68aa3320800000000000000 + internalID: 2538526525209000920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u502D\u5974\u94F3" + rect: + serializedVersion: 2 + x: 288 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b28fdfdc9a3bed4b0800000000000000 + internalID: -5413692160165939157 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5043\u6708\u957F\u5200" + rect: + serializedVersion: 2 + x: 320 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6f667752aad930f90800000000000000 + internalID: -6988568842650294538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u50AC\u4E91\u52A9\u96E8\u5361" + rect: + serializedVersion: 2 + x: 352 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 043d38fda42d3b870800000000000000 + internalID: 8697526524401931072 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u50E7\u4FA3\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 384 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ce540fda53e630a0800000000000000 + internalID: -6902079399470539064 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u50F5\u5C38\u5175" + rect: + serializedVersion: 2 + x: 416 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc06e4380b8c11d90800000000000000 + internalID: -7128696074708033331 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u513F\u7AE5\u8282\u5FEB\u4E50" + rect: + serializedVersion: 2 + x: 448 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c72a61c3fb901400800000000000000 + internalID: 292905447003400135 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u5BB5" + rect: + serializedVersion: 2 + x: 480 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92d2d5c09a964c460800000000000000 + internalID: 7261044674005904681 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u6676" + rect: + serializedVersion: 2 + x: 512 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6cf014986ea34be0800000000000000 + internalID: -1494158887172899733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u795E\u4E4B\u73E0" + rect: + serializedVersion: 2 + x: 544 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81ca10ce6420149c0800000000000000 + internalID: -3944869294969345000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u7D20\u4E4B\u5149" + rect: + serializedVersion: 2 + x: 576 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad070696da20efb10800000000000000 + internalID: 2017052626929086682 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u7D20\u4E4B\u6838" + rect: + serializedVersion: 2 + x: 608 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06f552199604974d0800000000000000 + internalID: -3136404843335950496 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u7D20\u4E4B\u7075" + rect: + serializedVersion: 2 + x: 640 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7fe41fc13b23d9950800000000000000 + internalID: 6457373185585270519 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u7D20\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 672 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7bd28993c381c6000800000000000000 + internalID: 30425944428129719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u7D20\u5B9D\u94BB" + rect: + serializedVersion: 2 + x: 704 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a67b5a755c8c0a70800000000000000 + internalID: 8794558471100659363 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u7D20\u5FAE\u5C18" + rect: + serializedVersion: 2 + x: 736 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 64045c4989ed9f3b0800000000000000 + internalID: -5478102724807147450 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u7D20\u788E\u7247" + rect: + serializedVersion: 2 + x: 768 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fce27a25985233fe0800000000000000 + internalID: -1210582603105095985 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u7D20\u7C89\u672B" + rect: + serializedVersion: 2 + x: 800 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 270e46818157740d0800000000000000 + internalID: -3438651044125155214 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u7D20\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 832 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 636a7587dcb625f40800000000000000 + internalID: 5715749407318058550 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u7D20\u7ED3\u6676" + rect: + serializedVersion: 2 + x: 864 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 80a544d9e08e682e0800000000000000 + internalID: -2123755024792921592 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u9633\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 896 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e42131432af37c10800000000000000 + internalID: 2050257284708246757 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u9738\u9524" + rect: + serializedVersion: 2 + x: 928 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ecd83491509dc1980800000000000000 + internalID: -8566733775243604530 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u9B42\u4E2D\u7EA7\u666E\u901A" + rect: + serializedVersion: 2 + x: 960 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d774ba74853057c0800000000000000 + internalID: -4084706018914437168 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u9B42\u4E2D\u7EA7\u7A00\u6709" + rect: + serializedVersion: 2 + x: 992 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32c6cd5de33169810800000000000000 + internalID: 1771624664013761571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u9B42\u4F4E\u7EA7\u666E\u901A" + rect: + serializedVersion: 2 + x: 1024 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37c269bd3ae17d240800000000000000 + internalID: 4816352015608589427 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u9B42\u4F4E\u7EA7\u7A00\u6709" + rect: + serializedVersion: 2 + x: 1056 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45ee2670ae18b62c0800000000000000 + internalID: -4437310165697237420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u9B42\u9AD8\u7EA7\u666E\u901A" + rect: + serializedVersion: 2 + x: 1088 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db552a67d33bf40b0800000000000000 + internalID: -5742173923309365827 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u9B42\u9AD8\u7EA7\u7A00\u6709" + rect: + serializedVersion: 2 + x: 1120 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fa59ae1761588b540800000000000000 + internalID: 5023911715778762159 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5143\u9B42\u9B54\u587F" + rect: + serializedVersion: 2 + x: 1152 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7c13d45e0ace1b30800000000000000 + internalID: 4260064460440542333 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5144\u5F1F\u5B88\u62A4\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1184 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fd9b1cc497f7c570800000000000000 + internalID: 8487024241254571508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5144\u5F1F\u79FB\u5C71\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1216 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a8b81538fefe12e0800000000000000 + internalID: -2153003229840361309 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5144\u5F1F\u8BC6\u6D77\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1248 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8bdad153412e4460800000000000000 + internalID: 7227751024996047759 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5144\u5F1F\u8BF8\u4E16\u754C\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1280 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97d21fb4bd64514f0800000000000000 + internalID: -858702246258332295 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5144\u5F1F\u8FC5\u6377\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1312 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54c6965d90a2c9180800000000000000 + internalID: -9107358124726457275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5145\u6EE1\u7684\u878D\u7075\u4E4B\u9F0E" + rect: + serializedVersion: 2 + x: 1344 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2ffc3af05e47ed00800000000000000 + internalID: 1001855551815876399 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5145\u80FD\u5668" + rect: + serializedVersion: 2 + x: 1376 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7348d24b10ba8e80800000000000000 + internalID: -8175528542405639298 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5145\u80FD\u56682" + rect: + serializedVersion: 2 + x: 1408 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ec69f3773b4a4c80800000000000000 + internalID: -8337769058582041370 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5149\u4E4B\u53F6" + rect: + serializedVersion: 2 + x: 1440 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac3ce41a6393a8c40800000000000000 + internalID: 5515283600465904586 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5149\u5203\u7B26" + rect: + serializedVersion: 2 + x: 1472 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c30db64e018bb7f40800000000000000 + internalID: 5727373733822976060 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5149\u660E\u4E07\u5723\u6212" + rect: + serializedVersion: 2 + x: 1504 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 402a44e8d7fc0ff30800000000000000 + internalID: 4607410556964741636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5149\u660E\u5343\u4F5B\u6212" + rect: + serializedVersion: 2 + x: 1536 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7964b5dbe938ba930800000000000000 + internalID: 4155559798984361623 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5149\u660E\u594B\u626C\u6212" + rect: + serializedVersion: 2 + x: 1568 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3014295a49c9be7f0800000000000000 + internalID: -582199564567428861 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5149\u660E\u771F\u8A00\u6212" + rect: + serializedVersion: 2 + x: 1600 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 05e0a2356e459e720800000000000000 + internalID: 2875923185267248720 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5149\u77F3" + rect: + serializedVersion: 2 + x: 1632 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 822e6f438198ec4d0800000000000000 + internalID: -3112399555405618648 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5149\u7FFC09" + rect: + serializedVersion: 2 + x: 1664 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bbe7f114b1061ef00800000000000000 + internalID: 1144301450501783227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5149\u7FFC\u5B9A\u5149" + rect: + serializedVersion: 2 + x: 1696 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4122005e1c4e1d2a0800000000000000 + internalID: -6714334048010886636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5149\u8292\u5B9D\u77F3" + rect: + serializedVersion: 2 + x: 1728 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c95e8e99aad1d70a0800000000000000 + internalID: -6882312036988426852 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5151\u4E4B\u8868\u5FBD" + rect: + serializedVersion: 2 + x: 1760 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0665dfe13ae022e30800000000000000 + internalID: 4477157073322071648 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5151\u4E4B\u9B42" + rect: + serializedVersion: 2 + x: 1792 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89c225a20bad2bd00800000000000000 + internalID: 987091718506687640 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5151\u5956\u52381" + rect: + serializedVersion: 2 + x: 1824 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f58b5a60bb43e4a0800000000000000 + internalID: -6565320610705340937 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5151\u5956\u52382" + rect: + serializedVersion: 2 + x: 1856 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a6da3c26ee5ae560800000000000000 + internalID: 7343786485058557608 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5151\u5956\u52383" + rect: + serializedVersion: 2 + x: 1888 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12515d16360523ac0800000000000000 + internalID: -3876947941439236831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5151\u5956\u52384" + rect: + serializedVersion: 2 + x: 1920 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 842ebac8e795bfd90800000000000000 + internalID: -7062953190539664824 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5151\u5956\u52385" + rect: + serializedVersion: 2 + x: 1952 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 30ca436ab38f80010800000000000000 + internalID: 1155446239495760899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5151\u5956\u52386" + rect: + serializedVersion: 2 + x: 1984 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6a0f7eb48946ce40800000000000000 + internalID: 5676305214827596394 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5151\u5956\u52387" + rect: + serializedVersion: 2 + x: 2016 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68dbc964a6cdb7fc0800000000000000 + internalID: -3495958336713736826 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5154\u5973\u90CE\u5305\u88F9" + rect: + serializedVersion: 2 + x: 2048 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a128a2f3a31ddb90800000000000000 + internalID: -7215589433105964632 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5154\u5973\u90CE\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2080 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 362ab1c216d87f760800000000000000 + internalID: 7491611953645462115 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5154\u5973\u90CE\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 2112 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 841a4d27d17ce0c20800000000000000 + internalID: 3174693716637294920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5154\u5973\u90CE\u5973\u8863\u670D" + rect: + serializedVersion: 2 + x: 2144 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1023a8163d1494a50800000000000000 + internalID: 6505803512843743745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5154\u5973\u90CE\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2176 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f5a6999a09bfc61c0800000000000000 + internalID: -4508952528165442977 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5154\u5973\u90CE\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2208 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0bec07415e3c380e0800000000000000 + internalID: -2268754398606733648 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5154\u5B50\u5361" + rect: + serializedVersion: 2 + x: 2240 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48ad8970402e0ab70800000000000000 + internalID: 8908368569874045572 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5154\u5B50\u5E7C\u5E74" + rect: + serializedVersion: 2 + x: 2272 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca41b10136b942f90800000000000000 + internalID: -6979282672743148372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5154\u5E7C\u5E74" + rect: + serializedVersion: 2 + x: 2304 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 860fb4182452fa7b0800000000000000 + internalID: -5210905276277067672 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5154\u7ED2" + rect: + serializedVersion: 2 + x: 2336 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e366450c37b12360800000000000000 + internalID: 7143191952400737253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5154\u9F7F\u5C71\u732B" + rect: + serializedVersion: 2 + x: 2368 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0b70453220b4d0a0800000000000000 + internalID: -6857662671609627892 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5168\u6C11\u793C\u5305" + rect: + serializedVersion: 2 + x: 2400 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7ecfe2f55415d6e0800000000000000 + internalID: -1813520915566178689 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B" + rect: + serializedVersion: 2 + x: 2432 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aacda131fae92e750800000000000000 + internalID: 6332798500813331626 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u5366\u5C65" + rect: + serializedVersion: 2 + x: 2464 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44346b5985817b110800000000000000 + internalID: 1276515788130763588 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u5366\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2496 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 218925d1a61bcf8d0800000000000000 + internalID: -2811176998069430254 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u5366\u76D8" + rect: + serializedVersion: 2 + x: 2528 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d594c7be7b764b900800000000000000 + internalID: 699297881776736605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u5366\u77F3" + rect: + serializedVersion: 2 + x: 2560 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0fc359c58db2c7330800000000000000 + internalID: 3709888401312660720 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u5366\u888D" + rect: + serializedVersion: 2 + x: 2592 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 286d15a1f9c6339a0800000000000000 + internalID: -6254536026890316158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u5366\u88E4" + rect: + serializedVersion: 2 + x: 2624 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a87c0dd7b602b2870800000000000000 + internalID: 8659050354594334602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u5366\u9635" + rect: + serializedVersion: 2 + x: 2656 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51a4db4eb8e148390800000000000000 + internalID: -7817089467021440491 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u5366\u9635_2" + rect: + serializedVersion: 2 + x: 2688 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a164fbc8fb63bba10800000000000000 + internalID: 1926193461959018010 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u5B9D\u4F69" + rect: + serializedVersion: 2 + x: 2720 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f35bc25ac5026ce0800000000000000 + internalID: -1413560966510324748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u65B9\u9524" + rect: + serializedVersion: 2 + x: 2752 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0431d3b13fd3d230800000000000000 + internalID: 3662516326545568780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u661F\u9F99\u73E0" + rect: + serializedVersion: 2 + x: 2784 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ab75d6bd0c9218e0800000000000000 + internalID: -1724144124613526618 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u68F1\u51C0\u6C34\u74F6" + rect: + serializedVersion: 2 + x: 2816 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92f7c686cfd0943d0800000000000000 + internalID: -3222028680672018647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u7B49\u5956" + rect: + serializedVersion: 2 + x: 2848 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21cac0d12141e44f0800000000000000 + internalID: -842714012242367470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u7B49\u954C\u523B" + rect: + serializedVersion: 2 + x: 2880 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 957edb5554c035210800000000000000 + internalID: 1320412607680472921 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516B\u89D2\u94DC\u9524" + rect: + serializedVersion: 2 + x: 2912 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a4564b1a163811f0800000000000000 + internalID: -1074049025373219674 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516C\u4E3B\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2944 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ed3f53eb1d086550800000000000000 + internalID: 6154183304231730658 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516C\u4E3B\u88D9" + rect: + serializedVersion: 2 + x: 2976 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 562469a87bd3fec00800000000000000 + internalID: 932031506402394725 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516C\u4E3B\u978B" + rect: + serializedVersion: 2 + x: 3008 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 696d5036d77c76110800000000000000 + internalID: 1254190362592138902 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516C\u5B59\u5251\u5668" + rect: + serializedVersion: 2 + x: 3040 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1dd15f2f832e33740800000000000000 + internalID: 5130693134727323089 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516C\u7235\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3072 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6c5dddc819029650800000000000000 + internalID: 6238058435999259757 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516C\u7235\u88C5\u5973\u51A0" + rect: + serializedVersion: 2 + x: 3104 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac129d0d19c247050800000000000000 + internalID: 5797307625118441930 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516C\u7235\u88C5\u5973\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3136 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07feffbf70b28b5d0800000000000000 + internalID: -3046637834623520912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516C\u7235\u88C5\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3168 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9ac7ccd22fca4f20800000000000000 + internalID: 3407763816699120285 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516C\u7235\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3200 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 260e1745ffadf0610800000000000000 + internalID: 1589729983653339234 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516C\u7235\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3232 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1446756b0a56b910800000000000000 + internalID: 1852767301702927386 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516C\u7235\u88C5\u7537\u51A0" + rect: + serializedVersion: 2 + x: 3264 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6b2139738800bf80800000000000000 + internalID: -8092959169617777811 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516C\u7235\u88C5\u7537\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3296 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 630b6f06e80305b70800000000000000 + internalID: 8885655452872257590 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516C\u7235\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3328 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a28b4e1dbf5018190800000000000000 + internalID: -7962076087097968598 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516C\u7235\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3360 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e71ff9268d19fc5b0800000000000000 + internalID: -5345893874111876738 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516D" + rect: + serializedVersion: 2 + x: 3392 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d75bc7c8ad120fb0800000000000000 + internalID: -4683148051768191020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516D\u53F6\u7389\u83B2\u7ACB\u706F" + rect: + serializedVersion: 2 + x: 3424 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9afdb894db72de5b0800000000000000 + internalID: -5337566289427963991 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516D\u5408\u77F3" + rect: + serializedVersion: 2 + x: 3456 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bfc91a7606666f810800000000000000 + internalID: 1798737665422630139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516D\u661F\u9F99\u73E0" + rect: + serializedVersion: 2 + x: 3488 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c569d7188ab320510800000000000000 + internalID: 1513838019662943836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516D\u7B49\u5956" + rect: + serializedVersion: 2 + x: 3520 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5a4382e5322a1dd0800000000000000 + internalID: -2514659827104134563 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516D\u7B49\u954C\u523B" + rect: + serializedVersion: 2 + x: 3552 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8aecea0f13cdb9d0800000000000000 + internalID: -2756832858786174322 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516D\u7FFC" + rect: + serializedVersion: 2 + x: 3584 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3b0ddc1bfe0b03d0800000000000000 + internalID: -3239479035279111361 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516D\u8292\u661F\u7EB9\u7AE0" + rect: + serializedVersion: 2 + x: 3616 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d201d41027f628100800000000000000 + internalID: 108771876449095725 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516D\u8F6C\u6307\u7384\u73E0" + rect: + serializedVersion: 2 + x: 3648 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db2a9aa13b61f15c0800000000000000 + internalID: -4242647365457435971 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u516D\u9053\u8F6C\u8F6E" + rect: + serializedVersion: 2 + x: 3680 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 328d15250c6a63940800000000000000 + internalID: 5275587358456141859 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5170\u6676\u6811" + rect: + serializedVersion: 2 + x: 3712 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f067e9980d0d0210800000000000000 + internalID: 1300710197972918517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5170\u683C\u5C14\u6728\u5C4B" + rect: + serializedVersion: 2 + x: 3744 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea9f6257875cc16a0800000000000000 + internalID: -6477085042913379922 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5170\u7530\u7389\u4F69" + rect: + serializedVersion: 2 + x: 3776 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4af6754cb017a7750800000000000000 + internalID: 6303474923811073956 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5170\u9876\u5343\u811A\u697C" + rect: + serializedVersion: 2 + x: 3808 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b7f86878e3c3bda0800000000000000 + internalID: -5930180881096837192 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5170\u9999\u6E10\u5E7D\u8DEF\u706F" + rect: + serializedVersion: 2 + x: 3840 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81c0313a710f24cd0800000000000000 + internalID: -2575232052591653864 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5171\u5DE5\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3872 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 664e4266a577d9ce0800000000000000 + internalID: -1396829079270529946 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5171\u5DE5\u9B42\u5B88" + rect: + serializedVersion: 2 + x: 3904 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b87949748a79882d0800000000000000 + internalID: -3276201979900815477 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5173\u6D77\u6CD5" + rect: + serializedVersion: 2 + x: 3936 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90f43cd2bbc9eadc0800000000000000 + internalID: -3625788322246078711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5175\u5668\u67B6" + rect: + serializedVersion: 2 + x: 3968 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc09f216cf2a5a600800000000000000 + internalID: 478968140230791372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5175\u5668\u67B6_2" + rect: + serializedVersion: 2 + x: 4000 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6899e73b690d57ff0800000000000000 + internalID: -38895676087690874 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5175\u5668\u67B6_3" + rect: + serializedVersion: 2 + x: 4032 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85c024b4a7a22ac70800000000000000 + internalID: 8980787311667186776 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u517B\u5FC3\u8349" + rect: + serializedVersion: 2 + x: 4064 + y: 3648 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78df7d09963ebb6b0800000000000000 + internalID: -5279376095620629113 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u517B\u6666\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 0 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d195a0c21368e2da0800000000000000 + internalID: -5967684910468933347 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u517B\u751F\u77F3" + rect: + serializedVersion: 2 + x: 32 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13ce0f8a8f4233ea0800000000000000 + internalID: -5894326836892996559 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u517B\u751F\u77F3\u5927" + rect: + serializedVersion: 2 + x: 64 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54c7271ff55afb220800000000000000 + internalID: 2503901749332573253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u517D\u738B\u9F13\u821E" + rect: + serializedVersion: 2 + x: 96 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 762d39ef68d3a4a20800000000000000 + internalID: 3047315747875574375 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u517D\u9762\u7389\u724C" + rect: + serializedVersion: 2 + x: 128 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7df1253bedcc4e10800000000000000 + internalID: 2183346329460276606 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u517D\u9AA8" + rect: + serializedVersion: 2 + x: 160 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0eb2e1ed7c3ab1790800000000000000 + internalID: -7558267470790906912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u517D\u9AA8\u9879\u94FE" + rect: + serializedVersion: 2 + x: 192 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04083e232792241a0800000000000000 + internalID: -6826848514683469760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u518D" + rect: + serializedVersion: 2 + x: 224 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e83cbc51835bfa730800000000000000 + internalID: 4012625045498872718 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u518D\u751F\u4E39" + rect: + serializedVersion: 2 + x: 256 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9f2eaefc165500b0800000000000000 + internalID: -5763105465618780257 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u519B\u4E8B\u65F6\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 288 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e379370e44a54a10800000000000000 + internalID: 1893099873414771682 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u519B\u4E8B\u65F6\u88C5\u5973\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 320 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edea6dbc45bd764f0800000000000000 + internalID: -835458048610357538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u519B\u4E8B\u65F6\u88C5\u5973\u978B" + rect: + serializedVersion: 2 + x: 352 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ff17a06334204b10800000000000000 + internalID: 1963609240617033721 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u519B\u4E8B\u65F6\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 384 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c1085cdb8f333900800000000000000 + internalID: 662943440083354055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u519B\u4E8B\u65F6\u88C5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 416 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f5b237ccf5784d10800000000000000 + internalID: 2110066153957275122 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u519B\u4E8B\u65F6\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 448 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13a03d540d366b630800000000000000 + internalID: 3942448269985253937 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u519B\u4E8B\u65F6\u88C5\u7537\u978B" + rect: + serializedVersion: 2 + x: 480 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27377b6998b2023d0800000000000000 + internalID: -3233536662512897166 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u519B\u65D7" + rect: + serializedVersion: 2 + x: 512 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e364441c916405420800000000000000 + internalID: 2616668459932862014 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u519B\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 544 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1a1ff49c1e197d30800000000000000 + internalID: 4429604816603257373 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u519B\u88C5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 576 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0178b544e04d0510800000000000000 + internalID: 1516939998660161804 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u519B\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 608 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 804e6714ee53b8c10800000000000000 + internalID: 2056796952241562632 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u519B\u88C5\u7537\u978B" + rect: + serializedVersion: 2 + x: 640 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86cf75b3a58733720800000000000000 + internalID: 2824733720229444712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51A0\u519B\u52C7\u58EB\u6212\u6307" + rect: + serializedVersion: 2 + x: 672 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7cbf10e97716b90f0800000000000000 + internalID: -1109185716836762681 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51A0\u519B\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 704 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e1bf220f71ebe7f0800000000000000 + internalID: -582123791200570912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51A0\u519B\u8D24\u8005\u6212\u6307" + rect: + serializedVersion: 2 + x: 736 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8630cd116a6abd7a0800000000000000 + internalID: -6351299617281539224 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51A5\u517D\u76AE" + rect: + serializedVersion: 2 + x: 768 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2913a47c9efa9e410800000000000000 + internalID: 1506928968937910674 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51A5\u60F3\u91D1\u9CDE\u77F3" + rect: + serializedVersion: 2 + x: 800 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8972752beb511b0c0800000000000000 + internalID: -4561841038769576040 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51A5\u706D\u6D2A\u8352\u7684\u5FC3\u810F" + rect: + serializedVersion: 2 + x: 832 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6be38df756d7d3f90800000000000000 + internalID: -6972278773209612618 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51A5\u72EE\u4E4B\u6BDB" + rect: + serializedVersion: 2 + x: 864 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51c2c5c3962894e90800000000000000 + internalID: -7040953153921209323 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51A5\u7965\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 896 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4988f3c997be63f60800000000000000 + internalID: 8013851494497355924 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51A5\u7965\u6218\u94E0" + rect: + serializedVersion: 2 + x: 928 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c47afc5162cee3340800000000000000 + internalID: 4845569897416075084 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51A5\u7965\u8155\u7532" + rect: + serializedVersion: 2 + x: 960 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc181d7a54197db80800000000000000 + internalID: -8370061654090481201 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51A5\u7965\u978B" + rect: + serializedVersion: 2 + x: 992 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 333eaa3a81cd9a520800000000000000 + internalID: 2713942248850645811 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51A5\u7B26" + rect: + serializedVersion: 2 + x: 1024 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cac55413d8ede9980800000000000000 + internalID: -8530135946194756436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51A5\u9E26\u5229\u722A" + rect: + serializedVersion: 2 + x: 1056 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 571ae903b720fa870800000000000000 + internalID: 8696172133595652469 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51AC" + rect: + serializedVersion: 2 + x: 1088 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08582151bec6afe80800000000000000 + internalID: -8144077219219470976 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51AC\u5B63\u6821\u670D\u88C5\u5973-\u5934\u53D132" + rect: + serializedVersion: 2 + x: 1120 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58ab9459a43ddd880800000000000000 + internalID: -8584472997412619643 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51AC\u5B63\u6821\u670D\u88C5\u5973-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 1152 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0840a24156af55aa0800000000000000 + internalID: -6172752402204457856 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51AC\u5B63\u6821\u670D\u88C5\u5973-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 1184 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1dd7345d2e49ff940800000000000000 + internalID: 5332144185791446481 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51AC\u5B63\u6821\u670D\u88C5\u5973-\u978B32" + rect: + serializedVersion: 2 + x: 1216 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4495058f0c77ca30800000000000000 + internalID: 4235490380663329869 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51AC\u5B63\u6821\u670D\u88C5\u7537-\u5934\u53D132" + rect: + serializedVersion: 2 + x: 1248 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9cdc388fe5070ee0800000000000000 + internalID: -1295059841504715622 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51AC\u5B63\u6821\u670D\u88C5\u7537-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 1280 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f703fd20d096db420800000000000000 + internalID: 2647387660567392383 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51AC\u5B63\u6821\u670D\u88C5\u7537-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 1312 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 529b07ee26a76ac00800000000000000 + internalID: 911550539914852645 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51AC\u5B63\u6821\u670D\u88C5\u7537-\u978B32" + rect: + serializedVersion: 2 + x: 1344 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7117a97fe1ea8270800000000000000 + internalID: 8253657685764280698 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u4E4B\u5370" + rect: + serializedVersion: 2 + x: 1376 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d28392f5ec48f0e0800000000000000 + internalID: -2235952664488475943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u4E4B\u9B42\u9B44\u4E0A\u534A" + rect: + serializedVersion: 2 + x: 1408 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b003af00f0a59c10800000000000000 + internalID: 2059729357506805941 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u4E4B\u9B42\u9B44\u4E0B\u534A" + rect: + serializedVersion: 2 + x: 1440 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 045d9d95334e86030800000000000000 + internalID: 3488288820600362304 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u51DD\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1472 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fa187bfa22deeea90800000000000000 + internalID: -7282622814178803281 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u51E4\u51F0" + rect: + serializedVersion: 2 + x: 1504 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 350b3746e65a75200800000000000000 + internalID: 168785404599971923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u6676\u84DD\u67D3\u8272\u5242" + rect: + serializedVersion: 2 + x: 1536 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74552f217007073d0800000000000000 + internalID: -3210943358630210233 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u6756" + rect: + serializedVersion: 2 + x: 1568 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21bf461d09b63d1c0800000000000000 + internalID: -4480118934570992878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u708E\u98DE\u5251\u5C0F" + rect: + serializedVersion: 2 + x: 1600 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d02265dae9f130ba0800000000000000 + internalID: -6124016301920345587 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u722A" + rect: + serializedVersion: 2 + x: 1632 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4771eb5af6dd10b60800000000000000 + internalID: 7710687508626806644 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u77F3\u884C\u8005" + rect: + serializedVersion: 2 + x: 1664 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6c357295d9c625d0800000000000000 + internalID: -3087558575393522580 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u8695\u4E1D\u51A0" + rect: + serializedVersion: 2 + x: 1696 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2195ce4023c1edb0800000000000000 + internalID: -4764312387253333713 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u96EA\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 1728 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef7889348d78e8850800000000000000 + internalID: 6381187084947326974 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u96EA\u62A4\u7B26" + rect: + serializedVersion: 2 + x: 1760 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71d90e2d492447e40800000000000000 + internalID: 5653216639217343767 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u96EA\u795E\u8C15" + rect: + serializedVersion: 2 + x: 1792 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1206caf08842f800800000000000000 + internalID: 644657415467696670 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u98CE\u82B1" + rect: + serializedVersion: 2 + x: 1824 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f407d02430e23610800000000000000 + internalID: 1599587332163831033 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u9B42\u5B9D\u73E0" + rect: + serializedVersion: 2 + x: 1856 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7d42573baf82e560800000000000000 + internalID: 7341588308097650046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B0\u9B44\u5F39" + rect: + serializedVersion: 2 + x: 1888 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 391d798153024c010800000000000000 + internalID: 1208126012460093843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B2\u5929\u51A0" + rect: + serializedVersion: 2 + x: 1920 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b6fdf185dcfd4bc0800000000000000 + internalID: -3797100916864321866 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B2\u9704\u4EE4\u4E7E" + rect: + serializedVersion: 2 + x: 1952 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef39bbaf680b51cd0800000000000000 + internalID: -2587968317075778562 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B2\u9704\u4EE4\u4E98\u4E45" + rect: + serializedVersion: 2 + x: 1984 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68d96dc84759add10800000000000000 + internalID: 2151196099834453382 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B2\u9704\u4EE4\u5151" + rect: + serializedVersion: 2 + x: 2016 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e66f2dc65af1d0ea0800000000000000 + internalID: -5905028741057022354 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B2\u9704\u4EE4\u574E" + rect: + serializedVersion: 2 + x: 2048 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5edf6eb74750e16a0800000000000000 + internalID: -6476733216259113499 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B2\u9704\u4EE4\u5764" + rect: + serializedVersion: 2 + x: 2080 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef6786f7c9ecee560800000000000000 + internalID: 7345035213835630334 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B2\u9704\u4EE4\u5DFD" + rect: + serializedVersion: 2 + x: 2112 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 035962ee98705c230800000000000000 + internalID: 3658338561295815984 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B2\u9704\u4EE4\u65E0\u5E38" + rect: + serializedVersion: 2 + x: 2144 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cb661cf93a36c68f0800000000000000 + internalID: -545951900407601476 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B2\u9704\u4EE4\u79BB" + rect: + serializedVersion: 2 + x: 2176 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e40e33c97d7f45aa0800000000000000 + internalID: -6173036683807432626 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B2\u9704\u4EE4\u826E" + rect: + serializedVersion: 2 + x: 2208 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 773bc1e7479380060800000000000000 + internalID: 6919843999949566839 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B2\u9704\u4EE4\u9707" + rect: + serializedVersion: 2 + x: 2240 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e61e30977bc1f0490800000000000000 + internalID: -7777966457110666898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B3\u9635\u957F\u5200" + rect: + serializedVersion: 2 + x: 2272 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2746cf1ad3ad336d0800000000000000 + internalID: -3011823767535197070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B6\u4ED9\u5854" + rect: + serializedVersion: 2 + x: 2304 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5d30321c01c0e410800000000000000 + internalID: 1504414533130665309 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B6\u4ED9\u5854_2" + rect: + serializedVersion: 2 + x: 2336 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e5deb58c45978a1d0800000000000000 + internalID: -3339285718649541282 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51B7\u8273\u952F" + rect: + serializedVersion: 2 + x: 2368 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6ece8f12404c0b40800000000000000 + internalID: 5407767905306594925 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51C0\u5316\u4E4B\u73E0" + rect: + serializedVersion: 2 + x: 2400 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1ef8194119f4d0b0800000000000000 + internalID: -5704660975335440870 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51C0\u6C34" + rect: + serializedVersion: 2 + x: 2432 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b813eae0db20dde30800000000000000 + internalID: 4529779811222958475 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51C0\u7075\u539F\u77F3" + rect: + serializedVersion: 2 + x: 2464 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5e763a38d508ba10800000000000000 + internalID: 1925295266948611674 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51C0\u8EAB\u9732" + rect: + serializedVersion: 2 + x: 2496 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba46f1cdcac722040800000000000000 + internalID: 4621393249504814251 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u4E91\u5B9D\u888B1" + rect: + serializedVersion: 2 + x: 2528 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6eaacd45fdf5d3600800000000000000 + internalID: 449620950613011174 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u4E91\u5B9D\u888B2" + rect: + serializedVersion: 2 + x: 2560 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 80a2676e85d0483b0800000000000000 + internalID: -5511265368519857656 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u4E91\u5B9D\u888B3" + rect: + serializedVersion: 2 + x: 2592 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe94479b4ecd9bb60800000000000000 + internalID: 7762478307671820783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u4E91\u7891\u6B8B\u73A6" + rect: + serializedVersion: 2 + x: 2624 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3a9610f00ef60cc0800000000000000 + internalID: -3745026760130520514 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u4E91\u7ED3\u4E91" + rect: + serializedVersion: 2 + x: 2656 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b99fb69f6af8f2960800000000000000 + internalID: 7579434645199780251 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u4E91\u7ED3\u96E8" + rect: + serializedVersion: 2 + x: 2688 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52f133031f5fa0540800000000000000 + internalID: 4975059154628714277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u4E91\u7ED3\u98CE" + rect: + serializedVersion: 2 + x: 2720 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ccf01679bb8940490800000000000000 + internalID: -7780926324723347508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u589F\u516B\u89C9\u9AD3" + rect: + serializedVersion: 2 + x: 2752 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bb096c087231e350800000000000000 + internalID: 6044167666093591474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u589F\u516B\u89C9\u9AD3\u6D41\u901A" + rect: + serializedVersion: 2 + x: 2784 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e8be4a9cafe96d40800000000000000 + internalID: 5578253138077333731 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u589F\u5929\u7384\u9AA8" + rect: + serializedVersion: 2 + x: 2816 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e25df2db66b5303a0800000000000000 + internalID: -6700411323778345682 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u589F\u5929\u7384\u9AA8\u6D41\u901A" + rect: + serializedVersion: 2 + x: 2848 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cba129c4078252180800000000000000 + internalID: -9140855405892461892 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u589F\u6E0E\u795E\u6728" + rect: + serializedVersion: 2 + x: 2880 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 990f5a19f08f440a0800000000000000 + internalID: -6898115983472988007 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u589F\u6E0E\u795E\u6728\u6D41\u901A" + rect: + serializedVersion: 2 + x: 2912 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f46187dd54411f340800000000000000 + internalID: 4895716560229373519 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u9704\u5B9D\u6BBF\u9547\u5B88\u5361" + rect: + serializedVersion: 2 + x: 2944 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a8e889a7e05d2010800000000000000 + internalID: 1165676834470815907 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u971C\u51A0" + rect: + serializedVersion: 2 + x: 2976 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5212a3a2b32ccd270800000000000000 + internalID: 8276703774567440677 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u98CE\u7684\u5251" + rect: + serializedVersion: 2 + x: 3008 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 64b7444e1211af370800000000000000 + internalID: 8357010895800662854 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u98CE\u7684\u62A4\u7B26" + rect: + serializedVersion: 2 + x: 3040 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5d12c0f6b7c21090800000000000000 + internalID: -8065164394129908387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u98CE\u7684\u7389\u4F69" + rect: + serializedVersion: 2 + x: 3072 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf9aec79c9c1086f0800000000000000 + internalID: -684515684472935940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u98CE\u7684\u9057\u7269" + rect: + serializedVersion: 2 + x: 3104 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ce51881da9dbd350800000000000000 + internalID: 6042662662511353536 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51CC\u98CE\u9501\u5FC3" + rect: + serializedVersion: 2 + x: 3136 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c022317b55381a6c0800000000000000 + internalID: -4133878578782461428 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51DD\u795E\u4E38" + rect: + serializedVersion: 2 + x: 3168 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 759ca489cb946c120800000000000000 + internalID: 2433713722998049111 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51DD\u795E\u4E39\u836F" + rect: + serializedVersion: 2 + x: 3200 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8a7dc1b63cd7a4b0800000000000000 + internalID: -5429128698302465393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51DD\u795E\u7B26" + rect: + serializedVersion: 2 + x: 3232 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 26aa3679fc042b8b0800000000000000 + internalID: -5137972964534015390 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51DD\u7ED3\u7684\u5185\u4E39" + rect: + serializedVersion: 2 + x: 3264 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 632819ee203274f10800000000000000 + internalID: 2253808634021642806 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51DD\u8840\u6218\u7532" + rect: + serializedVersion: 2 + x: 3296 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 114414afc2cbd9be0800000000000000 + internalID: -1468811002089749487 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51DD\u8840\u817F\u7532" + rect: + serializedVersion: 2 + x: 3328 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d93dc8dc7655c1730800000000000000 + internalID: 3971142875752485789 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51DD\u8840\u8896\u7532" + rect: + serializedVersion: 2 + x: 3360 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 668378bf53d3bb640800000000000000 + internalID: 5096734705362352230 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51DD\u8840\u9774" + rect: + serializedVersion: 2 + x: 3392 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24df1c32d5e6e6fb0800000000000000 + internalID: -4652660018716213950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51DD\u9732\u5251" + rect: + serializedVersion: 2 + x: 3424 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0446aa506002afa40800000000000000 + internalID: 5402665913221276736 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51DD\u9B42\u949B\u6676" + rect: + serializedVersion: 2 + x: 3456 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b71f2302b72187ec0800000000000000 + internalID: -3569082384660631173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E0\u6839\u767D\u7684\u5C0F\u788E\u9AA8" + rect: + serializedVersion: 2 + x: 3488 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e218db81231d46e40800000000000000 + internalID: 5648869845723087150 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E1\u5C14\u8D5B\u5178\u96C5\u5BAB\u5899" + rect: + serializedVersion: 2 + x: 3520 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f5f3789639ea5310800000000000000 + internalID: 1394683455319832050 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u4EEA\u73CD\u73E0\u6CC9" + rect: + serializedVersion: 2 + x: 3552 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 345dfdcf1f1234bc0800000000000000 + internalID: -3800156337357204157 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u51F0\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 3584 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 95f790001ff702c40800000000000000 + internalID: 5485525019201732441 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u51F0\u7C89\u53F0" + rect: + serializedVersion: 2 + x: 3616 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ddf5ef986c6f9de40800000000000000 + internalID: 5681843737483698141 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u51F0\u7FBD" + rect: + serializedVersion: 2 + x: 3648 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e9fdee24f2c6ca90800000000000000 + internalID: -7293928192464782874 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u51F0\u9A91\u5BA0" + rect: + serializedVersion: 2 + x: 3680 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62038486ca884b620800000000000000 + internalID: 2789004343314493478 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u5C3E\u5F13\u5F26" + rect: + serializedVersion: 2 + x: 3712 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 300da0f79f1c77220800000000000000 + internalID: 2483666996840550403 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u5C3E\u7AF9\u4E1B" + rect: + serializedVersion: 2 + x: 3744 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b4f2f0830943f920800000000000000 + internalID: 3022840054292870321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u5C3E\u7BAD" + rect: + serializedVersion: 2 + x: 3776 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9284685f3d9e138f0800000000000000 + internalID: -562411381878011863 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u5C3E\u7EDE\u4E1D" + rect: + serializedVersion: 2 + x: 3808 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef7ede00e07bf8b60800000000000000 + internalID: 7750614754500929534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u5C3E\u8FDE\u63A5\u73AF" + rect: + serializedVersion: 2 + x: 3840 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 884634e066d905de0800000000000000 + internalID: -1346403226932255608 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u7FBD\u62A4\u8155\u7EE3\u9762" + rect: + serializedVersion: 2 + x: 3872 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16474fdb506b33480800000000000000 + internalID: -8920586301112814495 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u7FBD\u6CD5\u672F\u978B\u5E95" + rect: + serializedVersion: 2 + x: 3904 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 47d97437bee5d0310800000000000000 + internalID: 1372857826762268020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u7FBD\u6CD5\u888D\u8863\u895F" + rect: + serializedVersion: 2 + x: 3936 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9d502cb1e0a2a700800000000000000 + internalID: 550178995876945306 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u7FBD\u6CD5\u88E4\u4E0B\u6446" + rect: + serializedVersion: 2 + x: 3968 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 278f12fa01f2c85a0800000000000000 + internalID: -6517782812007729038 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u7FBD\u7075\u529B\u5E61\u7EE6" + rect: + serializedVersion: 2 + x: 4000 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8fa535150d54a850800000000000000 + internalID: 6387332447930265486 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u7FBD\u9999\u56CA" + rect: + serializedVersion: 2 + x: 4032 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 471dcfb308eaad9d0800000000000000 + internalID: -2748692756770795148 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u7FC5\u9557" + rect: + serializedVersion: 2 + x: 4064 + y: 3616 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6276e82187582570800000000000000 + internalID: 8442093713754583658 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u7FD4\u4E4B\u5F13" + rect: + serializedVersion: 2 + x: 0 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08898e6389f0e0620800000000000000 + internalID: 2742146369545869440 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u7FFC\u5929\u7FD4" + rect: + serializedVersion: 2 + x: 32 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6f53f4b60c268710800000000000000 + internalID: 1695090717068844910 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u821E\u4EE4" + rect: + serializedVersion: 2 + x: 64 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d7ababe4fac10230800000000000000 + internalID: 3603384330147833817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51E4\u9E23\u7075\u73E0" + rect: + serializedVersion: 2 + x: 96 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a922f49044f33a6d0800000000000000 + internalID: -2980468966942629222 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51ED\u865A\u51C0\u7FBD" + rect: + serializedVersion: 2 + x: 128 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 31fc97162b22ed610800000000000000 + internalID: 1647792663199076115 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51EF\u6492\u82F1\u59FF\u88C5\u7537\u53D1" + rect: + serializedVersion: 2 + x: 160 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 894a541515ee0bc00800000000000000 + internalID: 914492757379490968 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51EF\u65CB\u4E4B\u5FC3" + rect: + serializedVersion: 2 + x: 192 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 356ceda6df8a23480800000000000000 + internalID: -8920882105494354349 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51F6\u795E\u6302\u4EF6" + rect: + serializedVersion: 2 + x: 224 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20f7c706bb2374c80800000000000000 + internalID: -8338640404694139134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51F6\u7B7E" + rect: + serializedVersion: 2 + x: 256 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: adf7b7970e0289c80800000000000000 + internalID: -8315860563456720934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51F6\u8C7A\u66B4\u7259" + rect: + serializedVersion: 2 + x: 288 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: faf5b00baed096860800000000000000 + internalID: 7523559954126167983 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u51FA\u552E\u6210\u5C31\u6A21\u5F0F\u95E8\u7968" + rect: + serializedVersion: 2 + x: 320 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f61d9986efbf01f30800000000000000 + internalID: 4544409094112006511 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5203\u4E0D\u52A0\u8EAB" + rect: + serializedVersion: 2 + x: 352 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 736a4a23e236bd940800000000000000 + internalID: 5321956434737669687 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5203\u4E0D\u52A0\u8EAB1" + rect: + serializedVersion: 2 + x: 384 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d3732f844ed45fb0800000000000000 + internalID: -4659855328381013040 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5203\u4E0D\u52A0\u8EAB2" + rect: + serializedVersion: 2 + x: 416 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e382abbaaea5b3990800000000000000 + internalID: -7405225198330697666 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5203\u7532\u7280\u725B\u8089" + rect: + serializedVersion: 2 + x: 448 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c40009553c2641840800000000000000 + internalID: 5193884861358669900 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5206\u5149\u76D4" + rect: + serializedVersion: 2 + x: 480 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b08b45e6e6b14410800000000000000 + internalID: 1459648857050415283 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5211\u5929\u65A7" + rect: + serializedVersion: 2 + x: 512 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 673cec8ddc2374a90800000000000000 + internalID: -7329834008835079306 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5217\u523A\u5251\u9F7F\u9CA8" + rect: + serializedVersion: 2 + x: 544 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5394263dfec7a9740800000000000000 + internalID: 5159573692591786293 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u521A\u7389\u7C89" + rect: + serializedVersion: 2 + x: 576 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 017e4269b373b6fd0800000000000000 + internalID: -2347722051681982704 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u521D\u669D\u5E61\u6756" + rect: + serializedVersion: 2 + x: 608 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b83d9af6b27e4b980800000000000000 + internalID: -8523934020962495605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u521D\u7EA7\u5168\u80FD\u6D17\u70B9\u5238" + rect: + serializedVersion: 2 + x: 640 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dded1a807fc870f80800000000000000 + internalID: -8140382808819245347 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u521D\u7EA7\u539A\u78F7\u7B26" + rect: + serializedVersion: 2 + x: 672 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d4638c296a3adc40800000000000000 + internalID: 5537802915198231767 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u521D\u7EA7\u5408\u91D1\u94A2" + rect: + serializedVersion: 2 + x: 704 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ffc303405ad53430800000000000000 + internalID: 3762153101994479602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u521D\u7EA7\u5F3A\u5316\u76AE\u9769" + rect: + serializedVersion: 2 + x: 736 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8744ed72e45588290800000000000000 + internalID: -7887960953174735752 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u521D\u7EA7\u6DEC\u706B\u5242" + rect: + serializedVersion: 2 + x: 768 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 374cf659cf05ac310800000000000000 + internalID: 1426041277785293939 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u521D\u7EA7\u706B\u4E91\u7B26" + rect: + serializedVersion: 2 + x: 800 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83854d956553ba700800000000000000 + internalID: 552594024273565752 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u521D\u7EA7\u7126\u70AD" + rect: + serializedVersion: 2 + x: 832 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8c77e7de77e95e40800000000000000 + internalID: 5645798139859795085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u521D\u7EA7\u80FD\u529B\u6D17\u70B9\u5238" + rect: + serializedVersion: 2 + x: 864 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 28ec0f3f28e144e80800000000000000 + internalID: -8195391874120233342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u521D\u7EA7\u84DD\u5F71\u7B26" + rect: + serializedVersion: 2 + x: 896 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f031a0896c5438f20800000000000000 + internalID: 3423656860988347151 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u521D\u7EA7\u9752\u5149\u7B26" + rect: + serializedVersion: 2 + x: 928 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ffcdaf299b3afbcf0800000000000000 + internalID: -234288638169785089 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5229\u5203\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 960 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 17b1469286e801f10800000000000000 + internalID: 2238445592825305969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5229\u5203\u5FBD\u8BB0\u5DE8\u86CB" + rect: + serializedVersion: 2 + x: 992 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22aac1faa2578e610800000000000000 + internalID: 1650698089618254370 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5229\u722A" + rect: + serializedVersion: 2 + x: 1024 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8a6b5f9f19841710800000000000000 + internalID: 1663104931317115534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u522E\u522E\u5361" + rect: + serializedVersion: 2 + x: 1056 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a22146b22ffb5800800000000000000 + internalID: 602355499735786148 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5236\u9738\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1088 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0881239efd1053f0800000000000000 + internalID: -914197745128863731 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5236\u9738\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1120 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90a4762b4ca903ba0800000000000000 + internalID: -6111214524744381943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5236\u9738\u88C5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 1152 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54c2c344d74b90130800000000000000 + internalID: 3533553832757570629 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5236\u9738\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1184 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69131b32fc94ce220800000000000000 + internalID: 2516467445799137686 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5236\u9738\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1216 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e10ac098e118d5660800000000000000 + internalID: 7376193732851048478 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C501\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1248 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 109b5909239afbb80800000000000000 + internalID: -8376790747246642943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C501\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1280 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f06fb65dca7c970c0800000000000000 + internalID: -4577408001116473841 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C501\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1312 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a388f99c88d52ac0800000000000000 + internalID: -3880457405519592536 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C501\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1344 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b284d37210469b2b0800000000000000 + internalID: -5568309508150835157 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C502\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1376 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aec3e9fc63148c6e0800000000000000 + internalID: -1817130745976701718 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C502\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1408 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54280ea10e8c9bfc0800000000000000 + internalID: -3478528372317846971 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C502\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1440 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cbdd76a42f9fd72d0800000000000000 + internalID: -3279190134630130244 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C502\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1472 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc9aad5e4f33a5e20800000000000000 + internalID: 3340039200569993677 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C503\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1504 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3915d2f498b2b0620800000000000000 + internalID: 2741332666923962771 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C503\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1536 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a3b7b9bf72a233e0800000000000000 + internalID: -2075417808804007004 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C503\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1568 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b969aa9e153de2390800000000000000 + internalID: -7841097552439372133 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C503\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1600 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 214b701e47603b0e0800000000000000 + internalID: -2255451889321135086 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C504\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1632 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c35a8551016a4800800000000000000 + internalID: 597396558938002372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C504\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1664 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85cc3572c343c9390800000000000000 + internalID: -7810310220804797352 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C504\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1696 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 056220f26266ae760800000000000000 + internalID: 7487909644640331344 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4E13\u7528\u670D\u88C504\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1728 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db9e8cbfee01844b0800000000000000 + internalID: -5456092329946846787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u4ED9\u9B54\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 1760 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 38c734e8a75951e80800000000000000 + internalID: -8208490392207524733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u5927\u5E08" + rect: + serializedVersion: 2 + x: 1792 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54fb7dec38a6bbc60800000000000000 + internalID: 7834973091084615493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u5BA2\u661F\u76D8" + rect: + serializedVersion: 2 + x: 1824 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1f731c1f5b1741e0800000000000000 + internalID: -2213770596522426595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u7403\u6C41\u6DB2" + rect: + serializedVersion: 2 + x: 1856 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be167bf2c6329f570800000000000000 + internalID: 8500864719202509291 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u7EE3\u63D2\u5C4F\u7F57\u6C49\u5E8A" + rect: + serializedVersion: 2 + x: 1888 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fee7d327691a82e20800000000000000 + internalID: 3326085992346910447 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u523A\u9CDE\u9C7C" + rect: + serializedVersion: 2 + x: 1920 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1358e5ff06a2bc40800000000000000 + internalID: 5526662280217383706 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u524D\u950B\u6218\u5730\u62A5\u544A" + rect: + serializedVersion: 2 + x: 1952 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1e3997e5a7511fd0800000000000000 + internalID: -2373019158580740580 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u4ED9\u57CE\u7CBE\u5143" + rect: + serializedVersion: 2 + x: 1984 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33bc02798c8eddc50800000000000000 + internalID: 6691760569569037107 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u575B\u5370\u8BB0" + rect: + serializedVersion: 2 + x: 2016 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee3465e5ac2439ac0800000000000000 + internalID: -3849659819538103314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u707516\u54C1\u5251" + rect: + serializedVersion: 2 + x: 2048 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 163d9019a9131dd50800000000000000 + internalID: 6760239055587890017 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E03\u8D24\u5251" + rect: + serializedVersion: 2 + x: 2080 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d9df6635d9b16790800000000000000 + internalID: -7538539975849027117 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u6709\u52511" + rect: + serializedVersion: 2 + x: 2112 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81780bcea4a1db300800000000000000 + internalID: 269400461812991768 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u6709\u52512" + rect: + serializedVersion: 2 + x: 2144 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84ab051524f0064e0800000000000000 + internalID: -1990574257791255992 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u6709\u52513" + rect: + serializedVersion: 2 + x: 2176 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3365a474df2e5af90800000000000000 + internalID: -6942893673071094221 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u6709\u52514" + rect: + serializedVersion: 2 + x: 2208 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ca4233010aea4400800000000000000 + internalID: 309316814497794759 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u6709\u53CC\u52511" + rect: + serializedVersion: 2 + x: 2240 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7bef27d5fb2f4850800000000000000 + internalID: 6363353133375023999 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u6709\u53CC\u52512" + rect: + serializedVersion: 2 + x: 2272 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0682a2ccd7f4fa140800000000000000 + internalID: 4733089135104501856 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u6709\u53CC\u52514" + rect: + serializedVersion: 2 + x: 2304 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d1074dbbcf8c5930800000000000000 + internalID: 4133336663235953105 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C501\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2336 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a55d4bc7c2c99bca0800000000000000 + internalID: -6000593313609755302 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C501\u624B\u5957" + rect: + serializedVersion: 2 + x: 2368 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0fc99946cb8a2c3b0800000000000000 + internalID: -5493643068343477008 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C501\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2400 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a23e1d41b10c116c0800000000000000 + internalID: -4174344157049789654 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C501\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2432 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8aa67ac60f491770800000000000000 + internalID: 8581977455516363402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C502\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2464 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 486cc657bbbcbd430800000000000000 + internalID: 3808861915861272196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C502\u624B\u5957" + rect: + serializedVersion: 2 + x: 2496 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9cbfd2f27f3cf5b00800000000000000 + internalID: 819589123620600777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C502\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2528 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 605decde4e87a9380800000000000000 + internalID: -8963719183689919226 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C502\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2560 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97775d3a25d9a7210800000000000000 + internalID: 1331549618102957945 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C503\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2592 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 396a27a79f286a1e0800000000000000 + internalID: -2186916561028995437 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C503\u624B\u5957" + rect: + serializedVersion: 2 + x: 2624 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 28f543b0640c7f2c0800000000000000 + internalID: -4397835104035774590 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C503\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2656 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8db2fcb6d1f013300800000000000000 + internalID: 229981675009813464 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C503\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2688 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ba4331bbf12721f0800000000000000 + internalID: -1069849021583766857 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C504\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2720 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f26b167df37cf150800000000000000 + internalID: 5907724343648674551 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C504\u624B\u5957" + rect: + serializedVersion: 2 + x: 2752 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3515780af77d080e0800000000000000 + internalID: -2269577269040688813 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C504\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2784 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a066dcfb3269e1e70800000000000000 + internalID: 9087866178366170634 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C504\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2816 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43fca7c42d0046a90800000000000000 + internalID: -7321726190971334860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C505\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2848 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e4acd934727550f0800000000000000 + internalID: -1128870288073906970 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C505\u624B\u5957" + rect: + serializedVersion: 2 + x: 2880 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13a1fb293faf485f0800000000000000 + internalID: -755202913445406159 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C505\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2912 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d4f33c8c8e9c9630800000000000000 + internalID: 3935194500899796180 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4E13\u7528\u670D\u88C505\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2944 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 18d1474345042dd40800000000000000 + internalID: 5607615216431144321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u4ED9\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 2976 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 73afdf58e82271070800000000000000 + internalID: 8076962452240988727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u516B\u519B\u5251" + rect: + serializedVersion: 2 + x: 3008 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a137393b217a96e0800000000000000 + internalID: -1830025868115234399 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u5927\u5E08" + rect: + serializedVersion: 2 + x: 3040 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eec5af6915a907600800000000000000 + internalID: 464040436835179758 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 3072 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc27f2f8d3b3608e0800000000000000 + internalID: -1727628271468711220 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u65B0\u624B\u5251" + rect: + serializedVersion: 2 + x: 3104 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33bbb616d8e130230800000000000000 + internalID: 3603757719400201011 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u661F\u76D8" + rect: + serializedVersion: 2 + x: 3136 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba2dcaa7f636f15d0800000000000000 + internalID: -3089641488902204757 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u8170\u724C" + rect: + serializedVersion: 2 + x: 3168 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ada394fa81fb95e0800000000000000 + internalID: -1901660838522802784 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u94ED\u724C" + rect: + serializedVersion: 2 + x: 3200 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b72351d7ceeaf2520800000000000000 + internalID: 2679552634042790523 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7075\u9B54\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 3232 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c733b25d3e2e0fa20800000000000000 + internalID: 3094222412165362556 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u7EB9\u7AE0" + rect: + serializedVersion: 2 + x: 3264 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f7df6507acb23920800000000000000 + internalID: 2968642529927354353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u9B42" + rect: + serializedVersion: 2 + x: 3296 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e2fec3bfc0ff8970800000000000000 + internalID: 8759484575124484838 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u9B421" + rect: + serializedVersion: 2 + x: 3328 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2aa75374e56380280800000000000000 + internalID: -9076945270415721822 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u9B422" + rect: + serializedVersion: 2 + x: 3360 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7494384e028f6590800000000000000 + internalID: -7678775841790847876 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u9B423" + rect: + serializedVersion: 2 + x: 3392 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bf97fc828a8920a0800000000000000 + internalID: -6905836260280524876 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u9B424" + rect: + serializedVersion: 2 + x: 3424 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 209e2843e4dd69b80800000000000000 + internalID: -8388273927972787966 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u9B425" + rect: + serializedVersion: 2 + x: 3456 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a7524ec3f4176190800000000000000 + internalID: -7969377978238740568 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u9B426" + rect: + serializedVersion: 2 + x: 3488 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ec9f2b5f296f2b30800000000000000 + internalID: 4264743024257375465 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5251\u9F7F\u864E\u7684\u5DE8\u7259" + rect: + serializedVersion: 2 + x: 3520 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b43d8e2a79806a6e0800000000000000 + internalID: -1826763151485906101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5254\u900F\u7684\u5408\u6B22\u5760\u5B50" + rect: + serializedVersion: 2 + x: 3552 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1124619bf725c1130800000000000000 + internalID: 3538794115725935121 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5254\u900F\u7684\u5FD8\u5FE7\u5760\u5B50" + rect: + serializedVersion: 2 + x: 3584 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88fbbaeb26f87d700800000000000000 + internalID: 565077932526780296 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5254\u900F\u7684\u65E0\u5E38\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3616 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 30d2439203711b820800000000000000 + internalID: 2932150328012057859 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5254\u900F\u7684\u65E0\u91CF\u5760\u5B50" + rect: + serializedVersion: 2 + x: 3648 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 337e11d8624651760800000000000000 + internalID: 7427953277155796787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5254\u900F\u7684\u6DB5\u865A\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3680 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 18439f2dffb37b5c0800000000000000 + internalID: -4199822157557451647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5254\u900F\u7684\u7389\u58F6\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3712 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dcaf4bf8950789b10800000000000000 + internalID: 1988462765449476813 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5254\u900F\u7684\u78A7\u7A7A\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3744 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ebc5e1f7c6701a10800000000000000 + internalID: 1878131645742435296 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5254\u900F\u7684\u7D2B\u5FAE\u5760\u5B50" + rect: + serializedVersion: 2 + x: 3776 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: daa703d6db16f44e0800000000000000 + internalID: -1995268643693233491 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u526A\u7EB81" + rect: + serializedVersion: 2 + x: 3808 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c723f1c4eca87dde0800000000000000 + internalID: -1308424548082830724 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u526A\u7EB82" + rect: + serializedVersion: 2 + x: 3840 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44b32e742095b61f0800000000000000 + internalID: -1050648221730063548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u526A\u7EB83" + rect: + serializedVersion: 2 + x: 3872 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b416aeef5474f22c0800000000000000 + internalID: -4454263140491042485 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u526A\u7EB84" + rect: + serializedVersion: 2 + x: 3904 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 764a3e36fce50f1f0800000000000000 + internalID: -1013205671331257241 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5272\u9E7F\u5200" + rect: + serializedVersion: 2 + x: 3936 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 272b332d3ef58dc50800000000000000 + internalID: 6690202678547690098 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5288\u6302\u5200" + rect: + serializedVersion: 2 + x: 3968 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04c6196cac55e7330800000000000000 + internalID: 3710497472403041344 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5288\u7A7A\u957F\u65A7" + rect: + serializedVersion: 2 + x: 4000 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b48b30312d4d8b20800000000000000 + internalID: 3138249320285570225 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u529B\u58EB" + rect: + serializedVersion: 2 + x: 4032 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b471da09eb50e9430800000000000000 + internalID: 3791474252321724235 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u529B\u91CF\u4E4B\u6E90" + rect: + serializedVersion: 2 + x: 4064 + y: 3584 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8409daa8266752440800000000000000 + internalID: 4910461134322896968 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u529B\u91CF\u4E4B\u706F" + rect: + serializedVersion: 2 + x: 0 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23c20b16e73d7f890800000000000000 + internalID: -7424232920938697678 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u529B\u91CF\u4E4B\u8BC1" + rect: + serializedVersion: 2 + x: 32 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5be48e4ed43f188f0800000000000000 + internalID: -539882964429287755 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u529B\u91CF\u7ED3\u6676" + rect: + serializedVersion: 2 + x: 64 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c64cca55308d2b50800000000000000 + internalID: 6570048398048380608 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u529B\u91CF\u94F8\u6750" + rect: + serializedVersion: 2 + x: 96 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5dc34a7f23bc96a0800000000000000 + internalID: -6441076350550553252 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52A0\u901F\u5668" + rect: + serializedVersion: 2 + x: 128 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96fdd0635fdb07110800000000000000 + internalID: 1256713156907884393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52A3\u9B54" + rect: + serializedVersion: 2 + x: 160 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 502ca655fd04a0b40800000000000000 + internalID: 5407205630566646277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52A8\u611F\u8FF7\u5F69\u88E4\u65F6\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 192 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3689c710c8bab1fc0800000000000000 + internalID: -3523033665678567325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52A8\u611F\u8FF7\u5F69\u88E4\u65F6\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 224 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13b1f8fe199d25bd0800000000000000 + internalID: -2642810810500441295 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52A8\u611F\u8FF7\u5F69\u88E4\u65F6\u88C5\u624B\u5957" + rect: + serializedVersion: 2 + x: 256 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 334f20c8f5f88c7c0800000000000000 + internalID: -4050830224286092237 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52A8\u611F\u8FF7\u5F69\u88E4\u65F6\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 288 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: daa1162bcd437d020800000000000000 + internalID: 2366418251696642733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52A8\u611F\u8FF7\u5F69\u88E4\u65F6\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 320 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 750ab2f7ad6276540800000000000000 + internalID: 5001008631096516695 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52A8\u7269\u76AE\u6BDB" + rect: + serializedVersion: 2 + x: 352 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78879f0befccd5d60800000000000000 + internalID: 7880680317231134855 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52A8\u7269\u80F6" + rect: + serializedVersion: 2 + x: 384 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b11e27cd03c4abb00800000000000000 + internalID: 845071652826046747 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52B2\u8349\u6276\u98CE" + rect: + serializedVersion: 2 + x: 416 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f11133cd86e16daf0800000000000000 + internalID: -372076483491720929 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52B3\u52A8\u5149\u8363" + rect: + serializedVersion: 2 + x: 448 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3cc768b04dd0a22a0800000000000000 + internalID: -6761576686165787453 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52C7\u58EB\u5956\u7AE01" + rect: + serializedVersion: 2 + x: 480 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e74b567d29416eed0800000000000000 + internalID: -2385196331734551426 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52C7\u58EB\u5956\u7AE02" + rect: + serializedVersion: 2 + x: 512 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40a8993b4caae2700800000000000000 + internalID: 517538768997681668 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52C7\u6C14\u4E4B\u8BC1" + rect: + serializedVersion: 2 + x: 544 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c64d6f65747e1ee0800000000000000 + internalID: -1288464395651955007 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52C7\u6C14\u5FBD\u7AE0" + rect: + serializedVersion: 2 + x: 576 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 695e3af13f2056730800000000000000 + internalID: 3991599887964956054 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52C7\u6C14\u9879\u94FE" + rect: + serializedVersion: 2 + x: 608 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b25a60332a0243d00800000000000000 + internalID: 951421302294881579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52C7\u8005\u4E4B\u529B" + rect: + serializedVersion: 2 + x: 640 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 374045b7fd5c4fa50800000000000000 + internalID: 6554080921368396915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52C7\u8005\u6C34\u6676" + rect: + serializedVersion: 2 + x: 672 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e963a93f1fdf39f40800000000000000 + internalID: 5734205966188689054 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u52FE\u9B42\u724C" + rect: + serializedVersion: 2 + x: 704 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 726893e14da365ec0800000000000000 + internalID: -3578608171184716249 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5305\u5B50\u5587\u53ED" + rect: + serializedVersion: 2 + x: 736 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37fcf25e2cabe5810800000000000000 + internalID: 1756046250952609651 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5305\u88F9\u680F\u6269\u5145\u77F3" + rect: + serializedVersion: 2 + x: 768 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6dc0637b9704c2ec0800000000000000 + internalID: -3590423911412134698 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999601" + rect: + serializedVersion: 2 + x: 800 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db52f1bb8b8e8f450800000000000000 + internalID: 6122899573521196477 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999602" + rect: + serializedVersion: 2 + x: 832 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d87b59d94bb16dc0800000000000000 + internalID: -3647428297339733808 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999603" + rect: + serializedVersion: 2 + x: 864 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6d17ae25227d86e80800000000000000 + internalID: -8185055780325920298 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999604" + rect: + serializedVersion: 2 + x: 896 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90d62b01222d35860800000000000000 + internalID: 7517583246762339593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999605" + rect: + serializedVersion: 2 + x: 928 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c5631ac7bf96e370800000000000000 + internalID: 8351538170723263940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999606" + rect: + serializedVersion: 2 + x: 960 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d112ec29b43379c10800000000000000 + internalID: 2060171754223837469 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999607" + rect: + serializedVersion: 2 + x: 992 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9482efebddaacf00800000000000000 + internalID: 1137913015998514331 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999608" + rect: + serializedVersion: 2 + x: 1024 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 568d70961d8ba87e0800000000000000 + internalID: -1762393094612330395 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999609" + rect: + serializedVersion: 2 + x: 1056 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b586b4869a3cc190800000000000000 + internalID: -7940907624814967370 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999610" + rect: + serializedVersion: 2 + x: 1088 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c18c4ea0c57987d0800000000000000 + internalID: -2915669813327265343 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999611" + rect: + serializedVersion: 2 + x: 1120 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a653a8b18e4be2e10800000000000000 + internalID: 2174874579053983082 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999612" + rect: + serializedVersion: 2 + x: 1152 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc7b0ca26b3b2aea0800000000000000 + internalID: -5862926169900271667 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999613" + rect: + serializedVersion: 2 + x: 1184 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16eed78c7d8914420800000000000000 + internalID: 2612537311400685153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999614" + rect: + serializedVersion: 2 + x: 1216 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c171663672fc1cfc0800000000000000 + internalID: -3476269669275003108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999615" + rect: + serializedVersion: 2 + x: 1248 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba83dbb3cab1e9270800000000000000 + internalID: 8259069193194649771 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999616" + rect: + serializedVersion: 2 + x: 1280 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03175d9b3f28d0140800000000000000 + internalID: 4687546770468991280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999617" + rect: + serializedVersion: 2 + x: 1312 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7c110c1e3b5e3310800000000000000 + internalID: 1386646057592626302 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u999618" + rect: + serializedVersion: 2 + x: 1344 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f14b8536dd1c9c530800000000000000 + internalID: 3875842110927713311 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u9996\u4E52\u4E53\u7403\u62CD" + rect: + serializedVersion: 2 + x: 1376 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 30a09f2975cd52d80800000000000000 + internalID: -8275966471537358333 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u9996\u53C9\u5B50" + rect: + serializedVersion: 2 + x: 1408 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1ab7d985952dea10800000000000000 + internalID: 1940248338659523102 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u9996\u5C0F\u8FA3\u6912" + rect: + serializedVersion: 2 + x: 1440 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5cc72a4197f1e1b0800000000000000 + internalID: -5628945855849968548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u9996\u7F8A" + rect: + serializedVersion: 2 + x: 1472 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 377dafa12904353f0800000000000000 + internalID: -913315303164029069 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u9996\u94F8\u51771" + rect: + serializedVersion: 2 + x: 1504 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 611768b0a122a8b60800000000000000 + internalID: 7749043604102213910 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u9996\u94F8\u517710" + rect: + serializedVersion: 2 + x: 1536 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fa02873576d1a840800000000000000 + internalID: 5233700040912014072 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u9996\u94F8\u51772" + rect: + serializedVersion: 2 + x: 1568 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45b539efaf0df8170800000000000000 + internalID: 8182988824386952020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u9996\u94F8\u51773" + rect: + serializedVersion: 2 + x: 1600 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a7915c754c35b370800000000000000 + internalID: 8337636554282473381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u9996\u94F8\u51774" + rect: + serializedVersion: 2 + x: 1632 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1257ff89a8da16900800000000000000 + internalID: 676012229866255649 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u9996\u94F8\u51775" + rect: + serializedVersion: 2 + x: 1664 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d75a501603eb73d30800000000000000 + internalID: 4411203475028157821 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u9996\u94F8\u51776" + rect: + serializedVersion: 2 + x: 1696 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fda16bd5f63de4620800000000000000 + internalID: 2760376096891738847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u9996\u94F8\u51777" + rect: + serializedVersion: 2 + x: 1728 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd6d88e7759757720800000000000000 + internalID: 2843312156446349021 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u9996\u94F8\u51778" + rect: + serializedVersion: 2 + x: 1760 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf9f4851af1ef9880800000000000000 + internalID: -8601908299035248133 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5315\u9996\u94F8\u51779" + rect: + serializedVersion: 2 + x: 1792 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 130eaafd9cd3d2970800000000000000 + internalID: 8731703189791498289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5316\u5A74\u4E39" + rect: + serializedVersion: 2 + x: 1824 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56963062527dc6f80800000000000000 + internalID: -8111872274249586331 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5316\u6781\u7559\u610F\u6846" + rect: + serializedVersion: 2 + x: 1856 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba85a498d8dedc9b0800000000000000 + internalID: -5058125614317676373 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5316\u89E3\u7075\u7B26" + rect: + serializedVersion: 2 + x: 1888 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16d4d9d8a9d2c3840800000000000000 + internalID: 5205085411157560673 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5316\u8EAB\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1920 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3bb89f08a4e3fe5a0800000000000000 + internalID: -6489900048305255501 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5317\u51A5\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 1952 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1771010559d0e02f0800000000000000 + internalID: -1004850731912521871 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5317\u51A5\u6218\u94E0" + rect: + serializedVersion: 2 + x: 1984 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f6f305356b52ad600800000000000000 + internalID: 493748574162534255 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5317\u51A5\u8155\u7532" + rect: + serializedVersion: 2 + x: 2016 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d5ad6478f6e22ff0800000000000000 + internalID: -62233490050144811 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5317\u51A5\u978B" + rect: + serializedVersion: 2 + x: 2048 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ed569d8dc27a3bbf0800000000000000 + internalID: -309720138299906594 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5317\u5C71\u9152\u7ECF" + rect: + serializedVersion: 2 + x: 2080 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8bd3926618b30a850800000000000000 + internalID: 6386169698562162104 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5317\u6597\u5361" + rect: + serializedVersion: 2 + x: 2112 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af97fe04878e408f0800000000000000 + internalID: -575079249213425158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5317\u7F8E\u5934\u76D4" + rect: + serializedVersion: 2 + x: 2144 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96080e9eb0e60f370800000000000000 + internalID: 8354298306219769961 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5317\u7F8E\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 2176 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d92398d0de197220800000000000000 + internalID: 2484050551807093203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5317\u7F8E\u6CD5\u5E3D" + rect: + serializedVersion: 2 + x: 2208 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc4061899292ece80800000000000000 + internalID: -8156536616499411765 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5317\u7F8E\u6CD5\u672F\u6212\u6307" + rect: + serializedVersion: 2 + x: 2240 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca6e6483b085635d0800000000000000 + internalID: -3083180089676470612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5317\u7F8E\u6CD5\u672F\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2272 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6488b554f19da15a0800000000000000 + internalID: -6549683979726124986 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5317\u7F8E\u7269\u7406\u6212\u6307" + rect: + serializedVersion: 2 + x: 2304 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 522bacd904dc7fa10800000000000000 + internalID: 1943247441642566181 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5317\u7F8E\u7269\u7406\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2336 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 670f6ff188d7dd3e0800000000000000 + internalID: -2027326233641553802 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5320\u5FC3\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 2368 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fef1e94c791d5e6d0800000000000000 + internalID: -2961730730157269009 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5320\u5FC3\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 2400 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e2d11d6db3fb63b0800000000000000 + internalID: -5518048923508157727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5320\u5FC3\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 2432 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d4e9e78eb40df530800000000000000 + internalID: 3890270869488526547 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5320\u5FC3\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 2464 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21377084729601fa0800000000000000 + internalID: -5832045900011703534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5320\u5FC3\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 2496 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3605753139350ff40800000000000000 + internalID: 5760195814556651619 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5320\u5FC3\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 2528 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2a532c3dfb2e2940800000000000000 + internalID: 5273200580333099567 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5321\u5E90\u9AD8\u5C71\u56FE" + rect: + serializedVersion: 2 + x: 2560 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51f4f14784eb8ac50800000000000000 + internalID: 6676795665971891989 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341" + rect: + serializedVersion: 2 + x: 2592 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f1cdc375d39b24d0800000000000000 + internalID: -3158268168690089481 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u4E00" + rect: + serializedVersion: 2 + x: 2624 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6f2328fbe08ac630800000000000000 + internalID: 3948109774312386413 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u4E00\u661F\u9F99\u73E0" + rect: + serializedVersion: 2 + x: 2656 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa8d72dd154a87c70800000000000000 + internalID: 8969099329418025130 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u4E8C" + rect: + serializedVersion: 2 + x: 2688 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f008a1f5b8d13a6f0800000000000000 + internalID: -674663034742210545 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u4E8C\u5CF0\u9676\u781A" + rect: + serializedVersion: 2 + x: 2720 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b065cab0b3532490800000000000000 + internalID: -7772276513398497102 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u4E8C\u661F\u9F99\u73E0" + rect: + serializedVersion: 2 + x: 2752 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9208d4845a229f8c0800000000000000 + internalID: -3965099903645024215 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u5B57\u5F29" + rect: + serializedVersion: 2 + x: 2784 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc4556025ba1ad8e0800000000000000 + internalID: -1667991346752432945 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u5B57\u661F" + rect: + serializedVersion: 2 + x: 2816 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 024760df33fd11390800000000000000 + internalID: -7849247261148679136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u5B57\u767D\u7537\u519B\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2848 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82753ee4b8e492220800000000000000 + internalID: 2461585031565629224 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u5B57\u767D\u7537\u519B\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2880 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c664b7c76900461a0800000000000000 + internalID: -6817323289598540180 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u5B57\u767D\u7537\u519B\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2912 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b77408160f73acc0800000000000000 + internalID: -3700974804618938442 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u5B57\u767D\u7537\u519B\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2944 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a744fc5705361ac0800000000000000 + internalID: -3884859322819917920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u65B9\u5929\u7F57\u5B9D\u5370" + rect: + serializedVersion: 2 + x: 2976 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d496d6bb80974b10800000000000000 + internalID: 1965698692112880856 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u661F\u9F99\u73E0" + rect: + serializedVersion: 2 + x: 3008 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7837123129eb59910800000000000000 + internalID: 1843589157073548167 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u7B49\u5956" + rect: + serializedVersion: 2 + x: 3040 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85911b8dba7288e10800000000000000 + internalID: 2200052036998863192 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5341\u7B49\u954C\u523B" + rect: + serializedVersion: 2 + x: 3072 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 301bc9318e2f3e7e0800000000000000 + internalID: -1737277952659508989 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5343\u4F5B\u6212" + rect: + serializedVersion: 2 + x: 3104 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 884dcea3a83044eb0800000000000000 + internalID: -4736657015857949560 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5343\u5E74\u96EA\u83B2" + rect: + serializedVersion: 2 + x: 3136 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d82d625d0ac935f0800000000000000 + internalID: -776367302178428712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5343\u5FC3\u7ED3" + rect: + serializedVersion: 2 + x: 3168 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fcc09283043d346b0800000000000000 + internalID: -5313170862593471281 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5343\u773C\u795E\u8033\u5361" + rect: + serializedVersion: 2 + x: 3200 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4fa34babaf96b7d0800000000000000 + internalID: -2902957350132142258 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5343\u91CC\u5171\u5A75\u5A1F" + rect: + serializedVersion: 2 + x: 3232 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 308cf6b6946e13580800000000000000 + internalID: -8849038589796825085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5343\u91D1\u5B50" + rect: + serializedVersion: 2 + x: 3264 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a9c84cadfd540cd0800000000000000 + internalID: -2592844141360002654 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5347\u7EA7\u7248\u52A0\u901F\u5668\u5C0F" + rect: + serializedVersion: 2 + x: 3296 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8486b129e81471a0800000000000000 + internalID: -6812792946732661619 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5348" + rect: + serializedVersion: 2 + x: 3328 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 290452c294a4d5130800000000000000 + internalID: 3557080958826266770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5348\u591C\u53DB\u9006\u5973\u88C5-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 3360 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ec4886c0b8037fd0800000000000000 + internalID: -2345521425591808800 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5348\u591C\u53DB\u9006\u5973\u88C5-\u978B32" + rect: + serializedVersion: 2 + x: 3392 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d2f1f7d7ecf3a4b0800000000000000 + internalID: -5430218652988083500 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5348\u591C\u53DB\u9006\u5973\u88C5\u4E0B\u88C532" + rect: + serializedVersion: 2 + x: 3424 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 950b6616fc4a145f0800000000000000 + internalID: -774156450331709351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5348\u591C\u53DB\u9006\u5973\u88C5\u62A4\u815532" + rect: + serializedVersion: 2 + x: 3456 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74d3c772df48b63d0800000000000000 + internalID: -3212327686374671033 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u534A\u652F\u767D\u7FBD" + rect: + serializedVersion: 2 + x: 3488 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f10a14d96b6989a00800000000000000 + internalID: 763525847905837087 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u534E\u4E3D\u957F\u5251" + rect: + serializedVersion: 2 + x: 3520 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96276b1fa472534c0800000000000000 + internalID: -4308494265673682327 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u534E\u5149\u4F1A\u4E4B\u5370" + rect: + serializedVersion: 2 + x: 3552 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36cd98be8ad79b340800000000000000 + internalID: 4880069835692301411 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u534E\u5149\u4F1A\u5148\u950B\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 3584 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41a4471acf23cb510800000000000000 + internalID: 1566182831039990292 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u534E\u5149\u4F1A\u52C7\u8005\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 3616 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8e232dde0f5fd7520800000000000000 + internalID: 2701585766623097576 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u534E\u5149\u4F1A\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 3648 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 53debd42cb687a720800000000000000 + internalID: 2857400631220235573 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u534E\u5149\u4F1A\u7EDF\u9886\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 3680 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a37fb7e481a1f1f60800000000000000 + internalID: 8007147354186315578 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u534E\u80E5\u5F15\u8FF7\u9999\u7089" + rect: + serializedVersion: 2 + x: 3712 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d13d0a9421b37060800000000000000 + internalID: 6950093420724302289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5355\u624B\u77ED\u4E94\u661F\u6756" + rect: + serializedVersion: 2 + x: 3744 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b207f1e33cbcec60800000000000000 + internalID: 7848855181620347574 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5355\u624B\u77ED\u591C\u5F71\u7F8A" + rect: + serializedVersion: 2 + x: 3776 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c080b329ff932b910800000000000000 + internalID: 1851606166635481100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5355\u624B\u77ED\u5DF4\u638C" + rect: + serializedVersion: 2 + x: 3808 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8b5d800a111b3c60800000000000000 + internalID: 7798845983098231692 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5355\u624B\u77ED\u6273\u624B" + rect: + serializedVersion: 2 + x: 3840 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39fa290bf15203ac0800000000000000 + internalID: -3877558461129379949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5355\u624B\u77ED\u7F8A" + rect: + serializedVersion: 2 + x: 3872 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 73b25b6ff54d191b0800000000000000 + internalID: -5651502548747211977 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5355\u624B\u77ED\u80E1\u841D\u535C" + rect: + serializedVersion: 2 + x: 3904 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b51be68e225c1690800000000000000 + internalID: -7630133308886936137 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5355\u624B\u77ED\u9999\u8549" + rect: + serializedVersion: 2 + x: 3936 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f5e1b5ea63ae2a30800000000000000 + internalID: 4192467982644012530 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5355\u80A9\u5B9D\u77F3\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3968 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5922ba0681c0b32e0800000000000000 + internalID: -2145107498671332715 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5355\u80A9\u5B9D\u77F3\u5934\u53D1" + rect: + serializedVersion: 2 + x: 4000 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff9bc3caed6ba9a40800000000000000 + internalID: 5375810172708764159 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5355\u80A9\u5B9D\u77F3\u62A4\u8155" + rect: + serializedVersion: 2 + x: 4032 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f95e856073f4c8870800000000000000 + internalID: 8686404879039128991 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5355\u80A9\u5B9D\u77F3\u978B\u5B50" + rect: + serializedVersion: 2 + x: 4064 + y: 3552 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b09682ca706dbf00800000000000000 + internalID: 1134168761533108405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5355\u81C2\u6CD5\u87BA\u8DEF\u706F" + rect: + serializedVersion: 2 + x: 0 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a05235ecb95dd8040800000000000000 + internalID: 4651608855301793034 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5357\u51A5\u79BB\u706B\u5251" + rect: + serializedVersion: 2 + x: 32 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 212e01466223a6d20800000000000000 + internalID: 3272483219707060754 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5357\u6597\u5361" + rect: + serializedVersion: 2 + x: 64 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9a76031c74c2bf20800000000000000 + internalID: 3437025502811290266 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5357\u74DC\u88D9\u4E0A\u8EAB" + rect: + serializedVersion: 2 + x: 96 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e4588fb000faf3e0800000000000000 + internalID: -2019037596918197020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5357\u74DC\u88D9\u5934\u53D1" + rect: + serializedVersion: 2 + x: 128 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82ec89085807a5f20800000000000000 + internalID: 3412163386377031208 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5357\u74DC\u88D9\u62A4\u8155" + rect: + serializedVersion: 2 + x: 160 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f27ba8224c73f8b0800000000000000 + internalID: -5119611727798111496 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5357\u74DC\u88D9\u978B\u5B50" + rect: + serializedVersion: 2 + x: 192 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71369dac1389b5dc0800000000000000 + internalID: -3649155733429591273 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u535A\u53E4\u51A0" + rect: + serializedVersion: 2 + x: 224 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ce170b220f1d35c0800000000000000 + internalID: -4234193980486115647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u535A\u53E4\u82B1\u6979\u67DC" + rect: + serializedVersion: 2 + x: 256 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1acbb950f90c29a0800000000000000 + internalID: -6256614854422181346 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361" + rect: + serializedVersion: 2 + x: 288 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c729eadbd01219c0800000000000000 + internalID: -3958082586048649273 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u5B8C\u74A7\u7C7B\u6A59\u8272" + rect: + serializedVersion: 2 + x: 320 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6bb527d1bdee17d0800000000000000 + internalID: -2945655758179157140 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u5B8C\u74A7\u7D2B\u8272" + rect: + serializedVersion: 2 + x: 352 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1240e5560e7203380800000000000000 + internalID: -8993644611132062687 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u5B8C\u74A7\u7EA2\u8272" + rect: + serializedVersion: 2 + x: 384 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2fcb449c77c8a5160800000000000000 + internalID: 7015073815688690930 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u5B8C\u74A7\u84DD\u8272" + rect: + serializedVersion: 2 + x: 416 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e39624c17ce0a97d0800000000000000 + internalID: -2910997960806209218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u5B8C\u74A7\u9EC4\u8272" + rect: + serializedVersion: 2 + x: 448 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d5630828e8393a60800000000000000 + internalID: 7654211611447748052 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u5B9D\u7BB1a" + rect: + serializedVersion: 2 + x: 480 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 862558f1e7a0e8460800000000000000 + internalID: 7245740387296694888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u5B9D\u7BB1b" + rect: + serializedVersion: 2 + x: 512 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f70a7f2fcf975f900800000000000000 + internalID: 717613842950496383 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u5B9D\u7BB1c" + rect: + serializedVersion: 2 + x: 544 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a98dd18daf6851bd0800000000000000 + internalID: -2660071592966629222 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u5B9D\u7BB1s" + rect: + serializedVersion: 2 + x: 576 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e11d445c36f70030800000000000000 + internalID: 3461005577630323170 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u5B9D\u7BB1ss" + rect: + serializedVersion: 2 + x: 608 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a317b6d12a80d2a0800000000000000 + internalID: -6714715166468533339 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7384\u547D\u7C7B\u6A59\u8272" + rect: + serializedVersion: 2 + x: 640 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dee7946b5f9074a80800000000000000 + internalID: -8482800422199132435 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7384\u547D\u7C7B\u7D2B\u8272" + rect: + serializedVersion: 2 + x: 672 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b61cb7fe0d5eb470800000000000000 + internalID: 8412263472841889465 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7384\u547D\u7C7B\u7EA2\u8272" + rect: + serializedVersion: 2 + x: 704 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2f83a461d8e19cb0800000000000000 + internalID: -4858846536921805013 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7384\u547D\u7C7B\u84DD\u8272" + rect: + serializedVersion: 2 + x: 736 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5848d0557d9849c0800000000000000 + internalID: -3942728346569783203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7384\u547D\u7C7B\u9EC4\u8272" + rect: + serializedVersion: 2 + x: 768 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b74260df07923c320800000000000000 + internalID: 2576948977044169851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7384\u9B42\u7C7B\u6A59\u8272" + rect: + serializedVersion: 2 + x: 800 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 625f30489a63215c0800000000000000 + internalID: -4246271396964731610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7384\u9B42\u7C7B\u7D2B\u8272" + rect: + serializedVersion: 2 + x: 832 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 116c0cea8a1a4ccf0800000000000000 + internalID: -232883534857976303 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7384\u9B42\u7C7B\u7EA2\u8272" + rect: + serializedVersion: 2 + x: 864 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: afb27fb5f3a29b6d0800000000000000 + internalID: -2974299627287270406 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7384\u9B42\u7C7B\u84DD\u8272" + rect: + serializedVersion: 2 + x: 896 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fddd711121019610800000000000000 + internalID: 1626082181996469748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7384\u9B42\u7C7B\u9EC4\u8272" + rect: + serializedVersion: 2 + x: 928 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cff01fce299b04070800000000000000 + internalID: 8088668971448995836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7834\u519B\u7C7B\u6A59\u8272" + rect: + serializedVersion: 2 + x: 960 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 686df5086c2f391f0800000000000000 + internalID: -1039220154621241722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7834\u519B\u7C7B\u7D2B\u8272" + rect: + serializedVersion: 2 + x: 992 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7091cc37aab7ea430800000000000000 + internalID: 3796107507937319175 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7834\u519B\u7C7B\u7EA2\u8272" + rect: + serializedVersion: 2 + x: 1024 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c109685abc4c7f010800000000000000 + internalID: 1222662202788843548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7834\u519B\u7C7B\u84DD\u8272" + rect: + serializedVersion: 2 + x: 1056 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 956b3016b50ae2060800000000000000 + internalID: 6930653190899873369 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7834\u519B\u7C7B\u9EC4\u8272" + rect: + serializedVersion: 2 + x: 1088 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6d9bdbff72ea9290800000000000000 + internalID: -7882739158444434068 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7834\u9635\u7C7B\u6A59\u8272" + rect: + serializedVersion: 2 + x: 1120 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23229742fdec4ed50800000000000000 + internalID: 6765759998002274866 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7834\u9635\u7C7B\u7D2B\u8272" + rect: + serializedVersion: 2 + x: 1152 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 661539f373661d720800000000000000 + internalID: 2869186825087570278 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7834\u9635\u7C7B\u7EA2\u8272" + rect: + serializedVersion: 2 + x: 1184 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5901361ce072e9d80800000000000000 + internalID: -8242107323713908587 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7834\u9635\u7C7B\u84DD\u8272" + rect: + serializedVersion: 2 + x: 1216 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eef6a870bd01c1470800000000000000 + internalID: 8366580740657934318 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u7834\u9635\u7C7B\u9EC4\u8272" + rect: + serializedVersion: 2 + x: 1248 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4afa7b9e8c204e030800000000000000 + internalID: 3522943870448414628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u957F\u751F\u6A59\u8272" + rect: + serializedVersion: 2 + x: 1280 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e52fc396b3f7e3280800000000000000 + internalID: -9061665507077459362 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u957F\u751F\u7D2B\u8272" + rect: + serializedVersion: 2 + x: 1312 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1967ebccfb84dde50800000000000000 + internalID: 6835699798029268625 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u957F\u751F\u7EA2\u8272" + rect: + serializedVersion: 2 + x: 1344 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b8aca29da5bbe8d0800000000000000 + internalID: -2815957384895354701 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u957F\u751F\u84DD\u8272" + rect: + serializedVersion: 2 + x: 1376 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9dd43a045a19f71d0800000000000000 + internalID: -3350799458800284199 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5361\u724C\u957F\u751F\u9EC4\u8272" + rect: + serializedVersion: 2 + x: 1408 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 466ae1fa6d32d9490800000000000000 + internalID: -7737989179784649116 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5367\u864E\u5486\u5CA9" + rect: + serializedVersion: 2 + x: 1440 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 513f00880bf5f35d0800000000000000 + internalID: -3080638408297483499 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u536B\u58EB\u5956\u7AE01" + rect: + serializedVersion: 2 + x: 1472 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 131f396452712f300800000000000000 + internalID: 284315175343092017 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u536B\u58EB\u5956\u7AE02" + rect: + serializedVersion: 2 + x: 1504 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df63bc66dc66a7ce0800000000000000 + internalID: -1406698901220935939 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u536F" + rect: + serializedVersion: 2 + x: 1536 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 00f94ca54defd2e20800000000000000 + internalID: 3327595887706021632 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5370\u5EA6\u821E\u5A18\u65F6\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1568 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67187f3dd756ac460800000000000000 + internalID: 7262728940189876598 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5370\u5EA6\u821E\u5A18\u65F6\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1600 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e9af181acfb59240800000000000000 + internalID: 4797951852742158823 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5370\u5EA6\u821E\u5A18\u65F6\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1632 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea38d04663e351370800000000000000 + internalID: 8292602692200399790 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5370\u5EA6\u821E\u5A18\u65F6\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1664 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 76d50f19c08a5d390800000000000000 + internalID: -7794138808153252505 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5370\u5EA6\u821E\u5A18\u65F6\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1696 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5153bbf9a34f246f0800000000000000 + internalID: -701730059291249387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5370\u82B1\u8774\u8776\u5C11\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1728 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58fd3c353d9bfe260800000000000000 + internalID: 7129121052445368197 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5370\u82B1\u8774\u8776\u5C11\u5973\u88C5\u8863\u670D" + rect: + serializedVersion: 2 + x: 1760 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60c8cde00118b69b0800000000000000 + internalID: -5085829448216048634 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5370\u82B1\u8774\u8776\u5C11\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1792 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a432f01177ae9f60800000000000000 + internalID: 8043050088587736225 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5377\u4E91\u6258\u76CF\u70DB\u53F0" + rect: + serializedVersion: 2 + x: 1824 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c7b968d126d64570800000000000000 + internalID: 8450677191660386240 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5377\u4E91\u77F3\u574A" + rect: + serializedVersion: 2 + x: 1856 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33b03f2d6c2ea3790800000000000000 + internalID: -7549472481762669773 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5377\u8349\u5377\u7EB9\u9694\u65AD" + rect: + serializedVersion: 2 + x: 1888 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25d9ab5e194c4c070800000000000000 + internalID: 8125835758586731858 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1920 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11082d305c04d84a0800000000000000 + internalID: -6589539464856305647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5384\u8FD0\u62F3\u5957" + rect: + serializedVersion: 2 + x: 1952 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b71cd93a4027282c0800000000000000 + internalID: -4430853719128686213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u539A\u571F\u4E4B\u529B" + rect: + serializedVersion: 2 + x: 1984 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c63c1f63fc151a5b0800000000000000 + internalID: -5358912131172285588 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u539A\u571F\u4E4B\u610F" + rect: + serializedVersion: 2 + x: 2016 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77779535e3a152cc0800000000000000 + internalID: -3736551460845291657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u539A\u5B9E\u7684\u677F\u89D2" + rect: + serializedVersion: 2 + x: 2048 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: faa0caccc028faa60800000000000000 + internalID: 7687506080429771439 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u539A\u5FB7\u8F7D\u7269" + rect: + serializedVersion: 2 + x: 2080 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ab3ac27f148765b0800000000000000 + internalID: -5375182359638688858 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u539A\u78F7\u4E2D\u7EA7" + rect: + serializedVersion: 2 + x: 2112 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6fa6fcdf44ca9db10800000000000000 + internalID: 2006824521286249206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u539A\u78F7\u521D\u7EA7" + rect: + serializedVersion: 2 + x: 2144 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6584c311b3d959830800000000000000 + internalID: 4077337914671646806 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u539A\u78F7\u9AD8\u7EA7" + rect: + serializedVersion: 2 + x: 2176 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dae0f07251d79a010800000000000000 + internalID: 1200628305474031277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u539F\u59CB\u4EBA" + rect: + serializedVersion: 2 + x: 2208 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41bf077844ab6ec10800000000000000 + internalID: 2082556681198304020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u539F\u59CB\u4EBA\u9762\u5177" + rect: + serializedVersion: 2 + x: 2240 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67f80424a023ddfd0800000000000000 + internalID: -2315639613755977866 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u539F\u6728" + rect: + serializedVersion: 2 + x: 2272 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04b0a2a37bd171890800000000000000 + internalID: -7487483182688105664 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53A8\u623F" + rect: + serializedVersion: 2 + x: 2304 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f08a1638e232e4d40800000000000000 + internalID: 5570428471783565327 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53BB" + rect: + serializedVersion: 2 + x: 2336 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5630966caeeb64430800000000000000 + internalID: 3766908053902394213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53C2\u5408\u5BC6\u5377" + rect: + serializedVersion: 2 + x: 2368 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4f07bf26499f1c10800000000000000 + internalID: 2026506884067299150 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53C2\u5BBF\u77F3\u523B" + rect: + serializedVersion: 2 + x: 2400 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8942c2bd225d0d7a0800000000000000 + internalID: -6354344728537062248 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53C8" + rect: + serializedVersion: 2 + x: 2432 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02ea38836e2554b40800000000000000 + internalID: 5423832474981740064 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CB\u8C0A\u5730\u4E45\u5929\u957F" + rect: + serializedVersion: 2 + x: 2464 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1106bbf5b7cf4f240800000000000000 + internalID: 4824758707637936145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u500D\u7ECF\u9A8C\u5377\u8F74" + rect: + serializedVersion: 2 + x: 2496 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce555f62db5177630800000000000000 + internalID: 3924629502423291372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u51E4\u51FA\u5ED3\u58C1" + rect: + serializedVersion: 2 + x: 2528 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c6dd82e203472a60800000000000000 + internalID: 7649156171782018758 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u5200\u5343\u8DB3\u866B\u89E6\u89D2" + rect: + serializedVersion: 2 + x: 2560 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74bcd78401fea1f10800000000000000 + internalID: 2241366617784961863 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u56CD\u540C\u5FC3\u697C" + rect: + serializedVersion: 2 + x: 2592 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0fe07dca072a47150800000000000000 + internalID: 5869494819190410992 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u57CE\u4E89\u9738" + rect: + serializedVersion: 2 + x: 2624 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e3e13837e4ebaf30800000000000000 + internalID: 4588012327138354145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u5934\u72FC" + rect: + serializedVersion: 2 + x: 2656 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 19f5080de25f444c0800000000000000 + internalID: -4304045762443976815 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u5B50\u661F" + rect: + serializedVersion: 2 + x: 2688 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 26b80f742de3a1a30800000000000000 + internalID: 4186727876465298274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u5C42\u7EFF\u841D\u82B1\u67B6" + rect: + serializedVersion: 2 + x: 2720 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7df8c11b1e30f000800000000000000 + internalID: 67622280393981311 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u5C42\u8F6C\u9F99\u5E90" + rect: + serializedVersion: 2 + x: 2752 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1482be9c05565160800000000000000 + internalID: 7013886982366594075 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u624B\u77ED\u5927\u8471" + rect: + serializedVersion: 2 + x: 2784 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db7932ba508e67240800000000000000 + internalID: 4789270364798818237 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u624B\u77ED\u5C0F\u6728\u69CC" + rect: + serializedVersion: 2 + x: 2816 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6d0376f09cb248d0800000000000000 + internalID: -2863519082258166422 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u624B\u77ED\u7F8A" + rect: + serializedVersion: 2 + x: 2848 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 272e76c9bebe9f740800000000000000 + internalID: 5186435843067732594 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u624B\u957F\u4E94\u661F\u6756" + rect: + serializedVersion: 2 + x: 2880 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2583f57442a666f0800000000000000 + internalID: -691687077834422994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u624B\u957F\u7518\u8517" + rect: + serializedVersion: 2 + x: 2912 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3a670a148fa49c40800000000000000 + internalID: 5518228425342937662 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u624B\u957F\u7F8A" + rect: + serializedVersion: 2 + x: 2944 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bdca9a3d252304da0800000000000000 + internalID: -5962710575318717221 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u624B\u957F\u83B2\u85D5\u4E4B\u9524" + rect: + serializedVersion: 2 + x: 2976 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5997fda8a7587eee0800000000000000 + internalID: -1231869211700135531 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u624B\u957F\u94C1\u9539" + rect: + serializedVersion: 2 + x: 3008 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad6391855fe4662c0800000000000000 + internalID: -4438773567075043622 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u638C\u5200" + rect: + serializedVersion: 2 + x: 3040 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 482f593c85522bdb0800000000000000 + internalID: -4777715191517941116 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u7BA1\u730E\u67AA" + rect: + serializedVersion: 2 + x: 3072 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2acad84fa9ab57f0800000000000000 + internalID: -622717553154012625 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u7FFC\u884C\u5DE6\u94DC\u72EE" + rect: + serializedVersion: 2 + x: 3104 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58232b298d330c6e0800000000000000 + internalID: -1819397244190575995 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u7FFC\u8D2F\u53F3\u94DC\u72EE" + rect: + serializedVersion: 2 + x: 3136 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8ca8c5ad22df0af0800000000000000 + internalID: -427892346080154484 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u8393\u4F20\u5947" + rect: + serializedVersion: 2 + x: 3168 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1267721f74e63a360800000000000000 + internalID: 7179703486226331169 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u8F6E\u6728\u677F\u8F66" + rect: + serializedVersion: 2 + x: 3200 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 31f844eeb92373320800000000000000 + internalID: 2537552560345354003 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u98DE\u71D5" + rect: + serializedVersion: 2 + x: 3232 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02dc059d4255df110800000000000000 + internalID: 1296285884505705760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53CC\u9F99\u620F\u73E0\u67DC" + rect: + serializedVersion: 2 + x: 3264 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24bc94870b569d590800000000000000 + internalID: -7648970683505325246 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53D1\u7535\u5668\u5B98" + rect: + serializedVersion: 2 + x: 3296 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b732d655e7bc0b790800000000000000 + internalID: -7516284034621824133 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53D1\u767D\u7684\u773C\u775B" + rect: + serializedVersion: 2 + x: 3328 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81781bd2cbd832460800000000000000 + internalID: 7215766867337643800 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53D1\u9ED1\u7684\u72FC\u722A" + rect: + serializedVersion: 2 + x: 3360 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85fac7ef71e2fc220800000000000000 + internalID: 2508274198057365336 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53D8\u5F02\u6BD2\u56CA\u86D9" + rect: + serializedVersion: 2 + x: 3392 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3315e75eeb32ee9e0800000000000000 + internalID: -1590294315614187213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53D8\u5F02\u7684\u91CE\u72D7" + rect: + serializedVersion: 2 + x: 3424 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1be5fecddff13070800000000000000 + internalID: 8084524134231829274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53D8\u79CD\u523A\u9488" + rect: + serializedVersion: 2 + x: 3456 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83078f215f5c73300800000000000000 + internalID: 231871562208800824 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E3\u53F7" + rect: + serializedVersion: 2 + x: 3488 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37b02653b4e2fd8d0800000000000000 + internalID: -2819483941157598349 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u4F1E\u5355\u624B\u77ED" + rect: + serializedVersion: 2 + x: 3520 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1b1fd439b555d130800000000000000 + internalID: 3590870531842186010 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u5229\u7279\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3552 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 590901884497afda0800000000000000 + internalID: -5910278225722830699 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u5251\u6B8B\u7247" + rect: + serializedVersion: 2 + x: 3584 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7fb224cb2f30bdb0800000000000000 + internalID: -4778249747433341058 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u5251\u788E\u7247" + rect: + serializedVersion: 2 + x: 3616 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b33bc906b1ad279c0800000000000000 + internalID: -3930839713621167301 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u5F0F\u7D20\u7F69\u7ACB\u706F" + rect: + serializedVersion: 2 + x: 3648 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 846c2efe91e1ea6d0800000000000000 + internalID: -2977409206897686968 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u6587\u4E66" + rect: + serializedVersion: 2 + x: 3680 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78da7f1b06d139340800000000000000 + internalID: 4869267923257503111 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u6734\u9999\u76D2" + rect: + serializedVersion: 2 + x: 3712 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91ce33b4ccb96db20800000000000000 + internalID: 3158883490384309273 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u7269" + rect: + serializedVersion: 2 + x: 3744 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c91eb757074ff3120800000000000000 + internalID: 2395902290628960668 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u7389\u864E\u7B26" + rect: + serializedVersion: 2 + x: 3776 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f292a76e7d167780800000000000000 + internalID: -8685722402595630348 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u753B\u54C1\u5F55" + rect: + serializedVersion: 2 + x: 3808 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 80f87e80a2b288160800000000000000 + internalID: 7027914678049672968 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u8272\u53E4\u9999\u7684\u60C5\u4E66" + rect: + serializedVersion: 2 + x: 3840 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34711befc0be846a0800000000000000 + internalID: -6464658824045193405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u85E4\u6756" + rect: + serializedVersion: 2 + x: 3872 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 95e9c5178a55bf2c0800000000000000 + internalID: -4396826429252395431 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u85E4\u795E\u7B14" + rect: + serializedVersion: 2 + x: 3904 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f235a89a571f0c610800000000000000 + internalID: 1639575752020742959 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3936 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75295ece931ecae40800000000000000 + internalID: 5669153669856465495 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 3968 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: daf007edc6ab13210800000000000000 + internalID: 1311033943292645293 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u88C5\u5C0F\u5973\u5B69" + rect: + serializedVersion: 2 + x: 4000 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 435d7245969616830800000000000000 + internalID: 4062644239969277236 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u88C5\u5C0F\u7537\u5B69" + rect: + serializedVersion: 2 + x: 4032 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 19ddfe6316f77eb40800000000000000 + internalID: 5469480327975001489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 4064 + y: 3520 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 591da5505cdf5c280800000000000000 + internalID: -9023527255726698091 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 0 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c3abfd7d64ca95b0800000000000000 + internalID: -5360756431887031355 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u88C5\u7537\u62A4\u8155" + rect: + serializedVersion: 2 + x: 32 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e49e978303c3e3e0800000000000000 + internalID: -2025560987458956059 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E4\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 64 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba440ed95a8d86a90800000000000000 + internalID: -7320362988460817237 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E6\u7C7B\u975E\u4E3B\u6D41\u7537\u88C5-\u4E0A\u886332" + rect: + serializedVersion: 2 + x: 96 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77960701273756580800000000000000 + internalID: -8834528160278091401 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E6\u7C7B\u975E\u4E3B\u6D41\u7537\u88C5-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 128 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5abe2619dd031850800000000000000 + internalID: 6346431525926386269 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53E6\u7C7B\u975E\u4E3B\u6D41\u7537\u88C5-\u978B\u5B5032" + rect: + serializedVersion: 2 + x: 160 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 400c07ba99a98f6d0800000000000000 + internalID: -2956443170571763708 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53EC\u795E\u7B26" + rect: + serializedVersion: 2 + x: 192 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20cac46fdc3bcee70800000000000000 + internalID: 9145882640464522242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53EF\u4E50" + rect: + serializedVersion: 2 + x: 224 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 614c21f36e60768f0800000000000000 + internalID: -547461243731786730 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53EF\u53EF\u8C46" + rect: + serializedVersion: 2 + x: 256 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ed6d2ed4e4cce630800000000000000 + internalID: 3957754659810930146 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53EF\u7231\u65F6\u5C1A\u5973\u88C5-\u5934\u53D132" + rect: + serializedVersion: 2 + x: 288 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 325fb138fe1590f20800000000000000 + internalID: 3389330283711690019 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53EF\u7231\u65F6\u5C1A\u5973\u88C5-\u62A4\u815532" + rect: + serializedVersion: 2 + x: 320 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc1127b7d78051fb0800000000000000 + internalID: -4677823302919384628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53EF\u7231\u65F6\u5C1A\u5973\u88C5-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 352 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b062c254a898d620800000000000000 + internalID: 2799154999941292216 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53EF\u7231\u65F6\u5C1A\u5973\u88C5-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 384 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 554afe6b0defd83f0800000000000000 + internalID: -896780578401049515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53EF\u7231\u65F6\u5C1A\u5973\u88C5-\u978B32" + rect: + serializedVersion: 2 + x: 416 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86eeba2d7e29e9340800000000000000 + internalID: 4872493371231039080 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53EF\u7231\u6C14\u6CE1\u9C7C" + rect: + serializedVersion: 2 + x: 448 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4e7f41f9d16dc0b0800000000000000 + internalID: -5706797564124234163 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53EF\u7231\u8783\u87F9" + rect: + serializedVersion: 2 + x: 480 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e141333d9af31b390800000000000000 + internalID: -7804386680630995938 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53EF\u7231\u9C7C\u5996" + rect: + serializedVersion: 2 + x: 512 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ff4269fef158ec80800000000000000 + internalID: -8293288558255255568 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53F1\u54A4\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 544 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cac06ccb31af75070800000000000000 + internalID: 8095213817900174508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53F1\u54A4\u6218\u94E0" + rect: + serializedVersion: 2 + x: 576 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c571eed350b4f93c0800000000000000 + internalID: -4350676229130676388 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53F1\u54A4\u8155\u7532" + rect: + serializedVersion: 2 + x: 608 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c242d630bec634230800000000000000 + internalID: 3621858281966609452 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53F1\u54A4\u978B" + rect: + serializedVersion: 2 + x: 640 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 01938582e6a21fa10800000000000000 + internalID: 1941379566985034000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53F1\u98CE\u6218\u9524" + rect: + serializedVersion: 2 + x: 672 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 659b75a779c454cf0800000000000000 + internalID: -268724389282334378 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53F3\u864E\u7B26" + rect: + serializedVersion: 2 + x: 704 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac3359af277b35e40800000000000000 + internalID: 5644056462483600330 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u53F7\u89D2\u80E7\u5200" + rect: + serializedVersion: 2 + x: 736 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84233722fbb9bbd30800000000000000 + internalID: 4448320302177530440 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5408\u5BB6\u56E2\u5706" + rect: + serializedVersion: 2 + x: 768 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36c0856423c649280800000000000000 + internalID: -9037479589041402781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5408\u6210\u4E1D" + rect: + serializedVersion: 2 + x: 800 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91548401432b85550800000000000000 + internalID: 6149861227855627545 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5408\u6210\u6CB9" + rect: + serializedVersion: 2 + x: 832 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83f419687f73e1620800000000000000 + internalID: 2746694358996700984 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5408\u6B22\u5760\u5B50" + rect: + serializedVersion: 2 + x: 864 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a52169a93e6342c70800000000000000 + internalID: 8945335111043650138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5408\u91D1\u5F29\u673A" + rect: + serializedVersion: 2 + x: 896 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6881b950a2ac3e430800000000000000 + internalID: 3811111991517059206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5408\u91D1\u77E2" + rect: + serializedVersion: 2 + x: 928 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9c697d5131af7350800000000000000 + internalID: 6016704860583980188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5408\u91D1\u836F\u5BA4" + rect: + serializedVersion: 2 + x: 960 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9985ceadd0f7ceed0800000000000000 + internalID: -2383390405301610343 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5409\u7965\u4F69" + rect: + serializedVersion: 2 + x: 992 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1bf1971e1d505e60800000000000000 + internalID: 7948955726134770462 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5409\u7965\u620F\u7403\u72EE" + rect: + serializedVersion: 2 + x: 1024 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee10537e5f79ef510800000000000000 + internalID: 1584871201282785774 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5409\u7965\u7EB9\u523B\u8C61\u7259\u96D5" + rect: + serializedVersion: 2 + x: 1056 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f015948344e5bff00800000000000000 + internalID: 1151617776818409743 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5409\u7965\u8170\u9970" + rect: + serializedVersion: 2 + x: 1088 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99f49d51ca44970b0800000000000000 + internalID: -5730473544960618599 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5409\u7965\u9501" + rect: + serializedVersion: 2 + x: 1120 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4a32a38404cbb220800000000000000 + internalID: 2502809541601802827 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5409\u7965\u9E92\u9E9F" + rect: + serializedVersion: 2 + x: 1152 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5de969df5dcdeeb90800000000000000 + internalID: -7210583141732933931 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5409\u7B7E" + rect: + serializedVersion: 2 + x: 1184 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61bc8ae1c8cb735b0800000000000000 + internalID: -5388631119129687274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u540E\u571F\u9B42\u5B88" + rect: + serializedVersion: 2 + x: 1216 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6aa2a118fb6292440800000000000000 + internalID: 4911499472570821286 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5411\u65E5\u8475" + rect: + serializedVersion: 2 + x: 1248 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 037ba94d71c2e6870800000000000000 + internalID: 8677922012852303664 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5411\u65E5\u8475\u88C5\u8155" + rect: + serializedVersion: 2 + x: 1280 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08b9bf0f33c2b58a0800000000000000 + internalID: -6315405450859013248 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5411\u65E5\u8475\u88C5\u8863" + rect: + serializedVersion: 2 + x: 1312 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91d614a3ddb8bdcf0800000000000000 + internalID: -226433573970678503 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5411\u65E5\u8475\u88C5\u88E4" + rect: + serializedVersion: 2 + x: 1344 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e367a3ccdbf5dd210800000000000000 + internalID: 1359347931315598910 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5411\u65E5\u8475\u88C5\u978B" + rect: + serializedVersion: 2 + x: 1376 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49e422f7fe481e370800000000000000 + internalID: 8350101348286615188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u541B\u4E4B\u5370\u7EF6" + rect: + serializedVersion: 2 + x: 1408 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11fd2ff708c07f070800000000000000 + internalID: 8139988597537431313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u541B\u5B50\u5170" + rect: + serializedVersion: 2 + x: 1440 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f60bf6a9ab7614620800000000000000 + internalID: 2756598498080043119 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u541E\u4E91\u76D4" + rect: + serializedVersion: 2 + x: 1472 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77a4d99bad7339120800000000000000 + internalID: 2419338837384579703 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u541E\u4F5B\u9B54\u5C0A\u7684\u795E\u5FD7\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 1504 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b8e0bd264908f390800000000000000 + internalID: -7784461758890973005 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u541E\u4F5B\u9B54\u5C0A\u7684\u9F3B\u73AF\u788E\u7247" + rect: + serializedVersion: 2 + x: 1536 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14c2369d65641c420800000000000000 + internalID: 2648475394698849345 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u541E\u9B54\u6212" + rect: + serializedVersion: 2 + x: 1568 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d7f516145dc961d0800000000000000 + internalID: -3356926286196508719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u542B\u60C5\u8109\u8109" + rect: + serializedVersion: 2 + x: 1600 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c32ad769fdf76d60800000000000000 + internalID: 7883548920366375874 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u542F\u5929\u6B8B\u7AE0" + rect: + serializedVersion: 2 + x: 1632 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5952a0182334b570800000000000000 + internalID: 8481460245416270172 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5434\u6052\u7684\u4FE1" + rect: + serializedVersion: 2 + x: 1664 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7d87465bb6b18430800000000000000 + internalID: 3783506077690596733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5434\u94A9\u5251" + rect: + serializedVersion: 2 + x: 1696 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61136825306b61f10800000000000000 + internalID: 2240177990049083670 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5439\u96EA\u51A0" + rect: + serializedVersion: 2 + x: 1728 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa6b0877018f5a340800000000000000 + internalID: 4874574921306519210 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5468\u5929\u6B8B\u9875" + rect: + serializedVersion: 2 + x: 1760 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb8f6a44dd02a8e90800000000000000 + internalID: -7022764534219212609 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5468\u5E74\u5E86\u5927\u793C\u5305\u5C0F" + rect: + serializedVersion: 2 + x: 1792 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d3552063cade56990800000000000000 + internalID: -7393241889362520771 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u547C\u5438\u7403" + rect: + serializedVersion: 2 + x: 1824 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 947373585397a0d60800000000000000 + internalID: 7857225770676467529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u547D\u8FD0\u91D1\u724C" + rect: + serializedVersion: 2 + x: 1856 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 339e09590ac1ba280800000000000000 + internalID: -9031093151731750605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u547D\u8FD0\u9B54\u65B9" + rect: + serializedVersion: 2 + x: 1888 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d53fc4ccad0fb29e0800000000000000 + internalID: -1644956416352652451 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u547D\u8FD0\u9B54\u65B9\u4E4B\u8F6E1" + rect: + serializedVersion: 2 + x: 1920 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 997f0df2bfbd3aad0800000000000000 + internalID: -2692066280351926375 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u547D\u8FD0\u9B54\u65B9\u4E4B\u8F6E2" + rect: + serializedVersion: 2 + x: 1952 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5b747fa30520cee0800000000000000 + internalID: -1242952799395480739 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u547D\u8FD0\u9B54\u65B9\u4E4B\u8F6E3" + rect: + serializedVersion: 2 + x: 1984 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 592d768648d42d650800000000000000 + internalID: 6256148063453696661 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u547D\u8FD0\u9B54\u65B9\u4E4B\u8F6E4" + rect: + serializedVersion: 2 + x: 2016 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f85c3119c0e1f23f0800000000000000 + internalID: -923486359265229425 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u547D\u8FD0\u9B54\u65B9\u4E4B\u8F6E5" + rect: + serializedVersion: 2 + x: 2048 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b724e7f6826730870800000000000000 + internalID: 8647885625522799227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u547D\u8FD0\u9B54\u65B9\u4E4B\u8F6E6" + rect: + serializedVersion: 2 + x: 2080 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8dca7d7efd53cd460800000000000000 + internalID: 7267743134452788440 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u547D\u8FD0\u9B54\u65B9\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 2112 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8622aecc8ada4f390800000000000000 + internalID: -7785406915312737688 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5486\u54EE\u957F\u65A7" + rect: + serializedVersion: 2 + x: 2144 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60c3a2c5359d76570800000000000000 + internalID: 8459969377090550790 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u548C\u7530\u7389\u4F69" + rect: + serializedVersion: 2 + x: 2176 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4aa94465d88f73f60800000000000000 + internalID: 8014147347850500772 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u548C\u98CE\u7075\u73E0" + rect: + serializedVersion: 2 + x: 2208 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf0e127f5ac1ffde0800000000000000 + internalID: -1297286668518039301 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5492\u672F\u5C65" + rect: + serializedVersion: 2 + x: 2240 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 73d861f264cf233d0800000000000000 + internalID: -3228240604503306953 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5492\u672F\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2272 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f70c6164b2988c0a0800000000000000 + internalID: -6861083213346455425 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5492\u672F\u888D" + rect: + serializedVersion: 2 + x: 2304 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8509ccb2a685a240800000000000000 + internalID: 4802392611170616719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5492\u672F\u88E4" + rect: + serializedVersion: 2 + x: 2336 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6d66ce489ef61e7a0800000000000000 + internalID: -6349670950867540266 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5492\u672F\u9006\u5929\u6212" + rect: + serializedVersion: 2 + x: 2368 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd2044e76e84bd3e0800000000000000 + internalID: -2027947052402212132 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5492\u7075\u7B26" + rect: + serializedVersion: 2 + x: 2400 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e5b6c77db2ee53ac0800000000000000 + internalID: -3875930032216183970 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u54C8\u96F7\u5957\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2432 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 76c0411aa2fd4e3a0800000000000000 + internalID: -6636934576653202329 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u54C8\u96F7\u5957\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2464 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d3cf23aca4eb81640800000000000000 + internalID: 5050996210525207613 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u54C8\u96F7\u5957\u88C5\u5973\u62A4\u624B" + rect: + serializedVersion: 2 + x: 2496 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0cb98a7779d419e0800000000000000 + internalID: -1651456056157946870 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u54C8\u96F7\u5957\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2528 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74b4ce8bc22de72d0800000000000000 + internalID: -3278952389156254905 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u54C8\u96F7\u5957\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2560 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a28bbfcb3e7a9ec0800000000000000 + internalID: -3559393760129613144 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u54C8\u96F7\u5957\u88C5\u7537\u5E3D\u5B50" + rect: + serializedVersion: 2 + x: 2592 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94782c4c66fcad140800000000000000 + internalID: 4745333197682935625 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u54C8\u96F7\u5957\u88C5\u7537\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2624 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6503318365482c2d0800000000000000 + internalID: -3259897674419982250 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u54C8\u96F7\u5957\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2656 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 72536131eb51c5da0800000000000000 + internalID: -5954860701182446297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u54C8\u96F7\u5957\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2688 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78c2454ece3fe4ca0800000000000000 + internalID: -6030614652233962361 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u54E5\u7279\u841D\u8389\u88C5\u5973\u53D1" + rect: + serializedVersion: 2 + x: 2720 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 032a34fbd67ae18a0800000000000000 + internalID: -6332439936234184144 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u54E5\u7279\u98CE\u841D\u8389\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2752 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d03006b3754882df0800000000000000 + internalID: -204768272852188403 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u54E5\u7279\u98CE\u841D\u8389\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2784 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8112faa866f1a9b0800000000000000 + internalID: -5070500776037445233 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u54E5\u7279\u98CE\u841D\u8389\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2816 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c4c67a6c18455460800000000000000 + internalID: 7229764063695652037 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u54FC\u54C8\u4E8C\u5C06\u5361" + rect: + serializedVersion: 2 + x: 2848 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a959cb3072d419a40800000000000000 + internalID: 5373160660391466394 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5510\u624D\u5B50\u4F20" + rect: + serializedVersion: 2 + x: 2880 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ed3010b79f4ac180800000000000000 + internalID: -9094368984608784928 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5510\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2912 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a600e64d10979c80800000000000000 + internalID: -8316019731498793312 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5510\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2944 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f12eeac19c91c5910800000000000000 + internalID: 1827363900365922847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5510\u88C5\u7537\u978B" + rect: + serializedVersion: 2 + x: 2976 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a35e0532b93806580800000000000000 + internalID: -8835917766565239494 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5564\u9152\u74F6" + rect: + serializedVersion: 2 + x: 3008 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29f9eca4e3126ff40800000000000000 + internalID: 5761829324693872530 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u556E\u971C\u957F\u9524" + rect: + serializedVersion: 2 + x: 3040 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe3776c308c6ecf10800000000000000 + internalID: 2291888558403187695 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5578\u98CE\u65A7" + rect: + serializedVersion: 2 + x: 3072 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f7aa39cfc883f080800000000000000 + internalID: -9154823191498414089 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u559C\u4ECE\u5929\u964D" + rect: + serializedVersion: 2 + x: 3104 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a86b4a06aa079960800000000000000 + internalID: 7608561803719305377 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u559C\u62A5\u6625\u82B1\u706F" + rect: + serializedVersion: 2 + x: 3136 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 181674e9e35aecc30800000000000000 + internalID: 4381621175840104833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u559C\u7CD6" + rect: + serializedVersion: 2 + x: 3168 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b930f2fca859195f0800000000000000 + internalID: -751655239380171877 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u559C\u7EB8" + rect: + serializedVersion: 2 + x: 3200 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a21fe7cbfad182d30800000000000000 + internalID: 4406804876000948522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u559C\u8D34" + rect: + serializedVersion: 2 + x: 3232 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70e3d23764ec61980800000000000000 + internalID: -8568434439050412537 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u559C\u9152" + rect: + serializedVersion: 2 + x: 3264 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79ad8feae690471a0800000000000000 + internalID: -6812809965318120809 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u559C\u94B1" + rect: + serializedVersion: 2 + x: 3296 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 211e9184e688232f0800000000000000 + internalID: -994582560458022638 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5636\u98CE\u9557" + rect: + serializedVersion: 2 + x: 3328 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ecc5d4d7ec647180800000000000000 + internalID: -9118543602554385179 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u563B\u54C8\u5973\u8155" + rect: + serializedVersion: 2 + x: 3360 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d97bc9317493ad10800000000000000 + internalID: 2135713862325598672 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u563B\u54C8\u5973\u88C5" + rect: + serializedVersion: 2 + x: 3392 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50b8f3fb171877140800000000000000 + internalID: 4717381460233784069 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u563B\u54C8\u5973\u88D9" + rect: + serializedVersion: 2 + x: 3424 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ecd90ff1ce8c76100800000000000000 + internalID: 101270433112825294 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u563B\u54C8\u5973\u978B" + rect: + serializedVersion: 2 + x: 3456 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12a642c1da7d9d960800000000000000 + internalID: 7627364582430108193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u566C\u5149" + rect: + serializedVersion: 2 + x: 3488 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8e0ad6f8e5699080800000000000000 + internalID: -9180194314169741682 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u566C\u9B42\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 3520 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7c49daeed7ec5b90800000000000000 + internalID: -7251666355364475778 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u566C\u9B42\u4E4B\u6212" + rect: + serializedVersion: 2 + x: 3552 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 017d78923a645d4e0800000000000000 + internalID: -1957580796432230640 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u566C\u9B42\u5203" + rect: + serializedVersion: 2 + x: 3584 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec32fca6ecded8b40800000000000000 + internalID: 5444268995371803598 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u566C\u9B42\u6212" + rect: + serializedVersion: 2 + x: 3616 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ec90d32d8de7b000800000000000000 + internalID: 51771111185095906 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u568E\u6708\u65D7\u5E1C" + rect: + serializedVersion: 2 + x: 3648 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04cccd2c356c8ac10800000000000000 + internalID: 2065118492203207744 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DA\u9F99\u6756" + rect: + serializedVersion: 2 + x: 3680 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8555075cd7c05d830800000000000000 + internalID: 4095193170486252888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB" + rect: + serializedVersion: 2 + x: 3712 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b8e238b2686092c0800000000000000 + internalID: -4426923660498769741 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u5723\u95E8\u5F92\u6D6E\u96D5" + rect: + serializedVersion: 2 + x: 3744 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f24ffffe16b6df740800000000000000 + internalID: 5187420414183207983 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u5927\u5929\u738B\u5361" + rect: + serializedVersion: 2 + x: 3776 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b5f57813bdf82030800000000000000 + internalID: 3470302458540324279 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u5B63\u4ED5\u5973\u56FE" + rect: + serializedVersion: 2 + x: 3808 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6cdf15edee0609aa0800000000000000 + internalID: -6156314111567069754 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u5B63\u6155\u65AF\u86CB\u7CD5\u62FC\u76D8" + rect: + serializedVersion: 2 + x: 3840 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c5dbc50fc31a7eb0800000000000000 + internalID: -4721439479468141112 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u65B9\u795E\u5361" + rect: + serializedVersion: 2 + x: 3872 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03df19ba918b37b40800000000000000 + internalID: 5436891595558485296 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u661F\u5929\u725B\u738B\u7684\u7FC5\u8180" + rect: + serializedVersion: 2 + x: 3904 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57a00b2ba74374880800000000000000 + internalID: -8626868859616359819 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u661F\u9F99\u73E0" + rect: + serializedVersion: 2 + x: 3936 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d794e7df7969d2610800000000000000 + internalID: 1598099022323534205 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u731B\u9524" + rect: + serializedVersion: 2 + x: 3968 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aaa3fca9641dc9c90800000000000000 + internalID: -7161619206250743126 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u76F8\u5C65" + rect: + serializedVersion: 2 + x: 4000 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 302d62b64f93dbad0800000000000000 + internalID: -2684926080910437885 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u76F8\u62A4\u8155" + rect: + serializedVersion: 2 + x: 4032 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3369182b937d1e170800000000000000 + internalID: 8206076638853699123 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u76F8\u888D" + rect: + serializedVersion: 2 + x: 4064 + y: 3488 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c65982baaf380b7d0800000000000000 + internalID: -2904676647017343636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u76F8\u88E4" + rect: + serializedVersion: 2 + x: 0 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39f392a6bbd3d01c0800000000000000 + internalID: -4535901374542954605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u7B49\u5956" + rect: + serializedVersion: 2 + x: 32 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6de30543652693c50800000000000000 + internalID: 6645450847546261206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u7B49\u954C\u523B" + rect: + serializedVersion: 2 + x: 64 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 922c03fc5ac80f5d0800000000000000 + internalID: -3030767905446772183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u7EA7\u4E5D\u9633\u4E39" + rect: + serializedVersion: 2 + x: 96 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 80c127f87f61e20d0800000000000000 + internalID: -3445791412372497400 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u7EA7\u4E5D\u9F99\u6563" + rect: + serializedVersion: 2 + x: 128 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ae65bc4f28f59710800000000000000 + internalID: 1699537316436340393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u7EA7\u5F52\u5143\u6563" + rect: + serializedVersion: 2 + x: 160 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c5258a8ec4b0be50800000000000000 + internalID: 6823152234646545859 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u7EA7\u6C89\u9999\u4E38" + rect: + serializedVersion: 2 + x: 192 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7694f64054cd89c90800000000000000 + internalID: -7162733018347517593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u7EA7\u6D3B\u8840\u6563" + rect: + serializedVersion: 2 + x: 224 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c77485169142a880800000000000000 + internalID: -8601240225462323263 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u7EA7\u795E\u6C14\u4E38" + rect: + serializedVersion: 2 + x: 256 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33354ce9521079930800000000000000 + internalID: 4149786842734285619 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u7EA7\u8FD8\u7075\u6C34" + rect: + serializedVersion: 2 + x: 288 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eae6e99cc08c8cb80800000000000000 + internalID: -8374223549847671122 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u7EA7\u91D1\u521B\u836F" + rect: + serializedVersion: 2 + x: 320 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3609ffb09e262cd0800000000000000 + internalID: -2583326137019464133 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u7EA7\u9F99\u6D8E\u9999" + rect: + serializedVersion: 2 + x: 352 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f98bb1bcc9da80780800000000000000 + internalID: -8716526189841500001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DB\u8C61\u77F3" + rect: + serializedVersion: 2 + x: 384 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65ba6a29c1f779860800000000000000 + internalID: 7536632262124022614 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DE" + rect: + serializedVersion: 2 + x: 416 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3cb3854665b61bcf0800000000000000 + internalID: -238291286479062077 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DE\u57CE\u77F3" + rect: + serializedVersion: 2 + x: 448 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c189607f2d228ef0800000000000000 + internalID: -107473759330795071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DE\u57CE\u9999" + rect: + serializedVersion: 2 + x: 480 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0b13d7afe9890070800000000000000 + internalID: 8073135469444143885 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DE\u5929\u6212" + rect: + serializedVersion: 2 + x: 512 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f337e38f3e3c2860800000000000000 + internalID: 7506443121436603383 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DE\u6625\u6563" + rect: + serializedVersion: 2 + x: 544 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85e8cc1c849c221b0800000000000000 + internalID: -5682758465461907880 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56DE\u9633\u4E39" + rect: + serializedVersion: 2 + x: 576 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ab39d1da5af80f50800000000000000 + internalID: 6847998501391514533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56E2\u7ED3\u5C31\u662F\u529B\u91CF" + rect: + serializedVersion: 2 + x: 608 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b20a2e8f4d6d68d00800000000000000 + internalID: 974702579569303595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56ED\u827A\u526A\u5200\u624B" + rect: + serializedVersion: 2 + x: 640 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b7c79851f9b8b7d0800000000000000 + internalID: -2902365513615685705 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56ED\u827A\u533A\u54E8\u5175" + rect: + serializedVersion: 2 + x: 672 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6007f5b72f0aa8b40800000000000000 + internalID: 5443340062943047686 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56FA\u795E\u7B26" + rect: + serializedVersion: 2 + x: 704 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb97d13f29bf47e90800000000000000 + internalID: -7028716509855909445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56FA\u9B42\u949B\u6676" + rect: + serializedVersion: 2 + x: 736 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4f0b317981c5ff80800000000000000 + internalID: -8073333960937369780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56FD" + rect: + serializedVersion: 2 + x: 768 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f9777b0bb31b6a30800000000000000 + internalID: 4209479970780051954 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u56FD\u8272\u5929\u9999\u523B\u74F7" + rect: + serializedVersion: 2 + x: 800 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36439f5305e33c520800000000000000 + internalID: 2721087114085741667 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5706\u5F62\u6708\u997C" + rect: + serializedVersion: 2 + x: 832 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7465c01c852e0ec0800000000000000 + internalID: -3598897768715426689 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5706\u76FE\u52CB\u7AE0\u5DE8\u86CB" + rect: + serializedVersion: 2 + x: 864 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba947a91bea8bc4a0800000000000000 + internalID: -6572006488864765525 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5706\u76FE\u5FBD\u7AE0" + rect: + serializedVersion: 2 + x: 896 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: abf1dc16db41e7e10800000000000000 + internalID: 2197216471825588154 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5706\u9876\u56F4\u9F99\u5C4B" + rect: + serializedVersion: 2 + x: 928 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ae5d2af2c9ff7780800000000000000 + internalID: -8682946940730777945 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u571F\u4E4B\u9AD3" + rect: + serializedVersion: 2 + x: 960 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 643ba0fdba80c4400800000000000000 + internalID: 309632008656171846 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u571F\u5143\u7D20\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 992 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 636e0ba89913f1610800000000000000 + internalID: 1594047328639051318 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u571F\u62D4\u9F20\u56FD\u738B" + rect: + serializedVersion: 2 + x: 1024 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0f05321c6a0a4210800000000000000 + internalID: 1317877300237504268 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u571F\u877C\u536B\u5175" + rect: + serializedVersion: 2 + x: 1056 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 868546bf3a8a639c0800000000000000 + internalID: -3947782601092867992 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u571F\u877C\u54E8\u5175" + rect: + serializedVersion: 2 + x: 1088 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56e63f4149e8e3df0800000000000000 + internalID: -198564566899921307 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u571F\u877C\u6218\u58EB" + rect: + serializedVersion: 2 + x: 1120 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c672ffbb3b2488830800000000000000 + internalID: 4073579202677253996 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u571F\u8C82" + rect: + serializedVersion: 2 + x: 1152 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f72f788caee84c70800000000000000 + internalID: 8955670283818051571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u571F\u94F3" + rect: + serializedVersion: 2 + x: 1184 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 938b2abe8faaeb590800000000000000 + internalID: -7656494330401343431 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u6BBF\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1216 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97b0d6586319ad5c0800000000000000 + internalID: -4189876839962047623 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u6BBF\u4E4B\u77F3\u5305\u88F9" + rect: + serializedVersion: 2 + x: 1248 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 513dc652bc33db960800000000000000 + internalID: 7619303092180013845 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u6BCD\u73E0" + rect: + serializedVersion: 2 + x: 1280 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3787dde591ba8b940800000000000000 + internalID: 5312183885937604723 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u6CC9" + rect: + serializedVersion: 2 + x: 1312 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c989f3b9c4d4d73c0800000000000000 + internalID: -4360243872807282532 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u6D01\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 1344 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 172d8a882462b5500800000000000000 + internalID: 385944260272771697 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u6D01\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 1376 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 059e6d97425900850800000000000000 + internalID: 6341232259233147216 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u6D01\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 1408 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fd5f335cce8376e0800000000000000 + internalID: -1840970814443266572 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u6D01\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 1440 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a81f144b48b6a14e0800000000000000 + internalID: -2010176065963429494 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u6D01\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 1472 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10cfa992a0e29b470800000000000000 + internalID: 8410804400273685505 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u6D01\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 1504 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 348017c027d0634c0800000000000000 + internalID: -4308241210047133629 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u7075" + rect: + serializedVersion: 2 + x: 1536 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd14b1d7e7630a440800000000000000 + internalID: 4945012307745522141 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u7075\u4E39" + rect: + serializedVersion: 2 + x: 1568 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f57b28eed2b1872f0800000000000000 + internalID: -974999435236690081 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u83B2\u4EE4" + rect: + serializedVersion: 2 + x: 1600 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03271433761b73220800000000000000 + internalID: 2465634377808310832 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u5927\u793C\u76D2" + rect: + serializedVersion: 2 + x: 1632 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42853ee3a75703a10800000000000000 + internalID: 1887137411769784356 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u5957\u88C5\u5973" + rect: + serializedVersion: 2 + x: 1664 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96d7742a6a2fc4b20800000000000000 + internalID: 3120135439361998185 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u5957\u88C5\u7537" + rect: + serializedVersion: 2 + x: 1696 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1ebbbd8da83032f0800000000000000 + internalID: -995233199590490596 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u5973\u88C5\u539F\u8272\u624B\u5957" + rect: + serializedVersion: 2 + x: 1728 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e1339d3bc6eb74e0800000000000000 + internalID: -1982737450340765209 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u5973\u88C5\u539F\u8272\u8863\u670D" + rect: + serializedVersion: 2 + x: 1760 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f6c2936a119e337b0800000000000000 + internalID: -5245592878944015249 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u5973\u88C5\u539F\u8272\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 1792 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf543dbf075c85930800000000000000 + internalID: 4132269747164366331 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u5973\u88C5\u539F\u8272\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1824 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e0ac67b38d372950800000000000000 + internalID: 6424171029394661605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u5973\u88C5\u53D8\u8272\u624B\u5957" + rect: + serializedVersion: 2 + x: 1856 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51022909337560930800000000000000 + internalID: 4109067589002600469 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u5973\u88C5\u53D8\u8272\u8863\u670D" + rect: + serializedVersion: 2 + x: 1888 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ffd2defcfa366640800000000000000 + internalID: 5072806888560844791 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u5973\u88C5\u53D8\u8272\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 1920 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9ec91557ceb84f40800000000000000 + internalID: 5713025890654998171 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u5973\u88C5\u53D8\u8272\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1952 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c7395a7a7bb11840800000000000000 + internalID: 5193137980047964098 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1984 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8ec92816b6a25910800000000000000 + internalID: 1824704100058123916 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u5FEB\u4E50" + rect: + serializedVersion: 2 + x: 2016 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8552a0a3c4d80f940800000000000000 + internalID: 5327913717710071128 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u65B0\u8001\u4EBA\u5934" + rect: + serializedVersion: 2 + x: 2048 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cafb5fc6bff9c7a80800000000000000 + internalID: -8467717297149722708 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u65B0\u88C5\u5973\u4E0A\u88D9" + rect: + serializedVersion: 2 + x: 2080 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07f6fbae83b9b3200800000000000000 + internalID: 160892880460672880 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u65B0\u88C5\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 2112 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb1df862eaa674580800000000000000 + internalID: -8842982047114866241 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u65B0\u88C5\u5973\u88C5\u978B" + rect: + serializedVersion: 2 + x: 2144 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7cd9fa1f776e89080800000000000000 + internalID: -9180334437564441145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u65B0\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2176 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9301c0ca5cb73ef0800000000000000 + internalID: -128426966389816417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u65B0\u88C5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 2208 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a88de2c8ed0821220800000000000000 + internalID: 2455166440193317002 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u65B0\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2240 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b21bec940c945130800000000000000 + internalID: 3554637549528617655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u65B0\u88C5\u7537\u978B" + rect: + serializedVersion: 2 + x: 2272 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42d2c700781ca4430800000000000000 + internalID: 3768036823821724964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u6811\u7684\u5C0F\u661F\u661F" + rect: + serializedVersion: 2 + x: 2304 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 993e21d2a68b19fd0800000000000000 + internalID: -2336883965466319975 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u7537\u88C5\u539F\u8272\u5E3D\u5B50" + rect: + serializedVersion: 2 + x: 2336 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f7a00ad0785ce980800000000000000 + internalID: -8508328354292652047 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u7537\u88C5\u539F\u8272\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2368 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f244ed55810abf10800000000000000 + internalID: 2286141433161466612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u7537\u88C5\u539F\u8272\u8863\u670D" + rect: + serializedVersion: 2 + x: 2400 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29c1cd285a728d380800000000000000 + internalID: -8946357067952939886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u7537\u88C5\u539F\u8272\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2432 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b885cd0b3816bc40800000000000000 + internalID: 5527632234557049015 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u7537\u88C5\u539F\u8272\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2464 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce2b6a3b451043c70800000000000000 + internalID: 8949779822794945260 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u7537\u88C5\u53D8\u8272\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2496 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bd9c907c08400050800000000000000 + internalID: 5764686741300354482 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u7537\u88C5\u53D8\u8272\u8863\u670D" + rect: + serializedVersion: 2 + x: 2528 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51e24d4eef45d96f0800000000000000 + internalID: -676290915298169323 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u7537\u88C5\u53D8\u8272\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2560 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ef6832b266e784c0800000000000000 + internalID: -4285203208848511007 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u7537\u88C5\u53D8\u8272\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2592 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de21558f72afd81b0800000000000000 + internalID: -5652586907703110931 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u539F\u8272\u5973-\u4E0A\u8EAB" + rect: + serializedVersion: 2 + x: 2624 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 323d8b2a741d0bd80800000000000000 + internalID: -8236853612857732317 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u539F\u8272\u5973-\u4E0B\u8EAB" + rect: + serializedVersion: 2 + x: 2656 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3eb112511e2410fd0800000000000000 + internalID: -2377545593785345053 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u539F\u8272\u5973-\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2688 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee28d27f0b443c490800000000000000 + internalID: -7727257008785751314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u539F\u8272\u5973-\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2720 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b46db08e86ba4c8c0800000000000000 + internalID: -3979867703630637493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u539F\u8272\u5973-\u978B" + rect: + serializedVersion: 2 + x: 2752 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27d12d6caab181bd0800000000000000 + internalID: -2659345159668228750 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u539F\u8272\u7537-\u4E0A\u8EAB" + rect: + serializedVersion: 2 + x: 2784 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 686efb040de17a200800000000000000 + internalID: 191155388974884486 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u539F\u8272\u7537-\u4E0B\u8EAB" + rect: + serializedVersion: 2 + x: 2816 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6f7e82b273168b340800000000000000 + internalID: 4879757085831129078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u539F\u8272\u7537-\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2848 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96fa2d9c1bb92ce40800000000000000 + internalID: 5675269668337790825 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u539F\u8272\u7537-\u624B\u5957" + rect: + serializedVersion: 2 + x: 2880 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b0187746de8cde70800000000000000 + internalID: 9141338394628460722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u539F\u8272\u7537-\u978B" + rect: + serializedVersion: 2 + x: 2912 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60ac48598b1a65120800000000000000 + internalID: 2402285265403300358 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u5973-\u4E0A\u8EAB" + rect: + serializedVersion: 2 + x: 2944 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3fa59322565c9700800000000000000 + internalID: 548408165416677180 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u5973-\u4E0B\u8EAB" + rect: + serializedVersion: 2 + x: 2976 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f04288ccfdfe6cef0800000000000000 + internalID: -88119398198926321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u5973-\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3008 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7aa4730fb2fc40f0800000000000000 + internalID: -1131262504166184322 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u5973-\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3040 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33d1230b97fdca2f0800000000000000 + internalID: -960146906796647117 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u5973-\u978B" + rect: + serializedVersion: 2 + x: 3072 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f03e635e3211f0300800000000000000 + internalID: 220413752631550735 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u7537-\u4E0A\u8EAB" + rect: + serializedVersion: 2 + x: 3104 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46bfaa2d69c9d7350800000000000000 + internalID: 6016136848830298980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u7537-\u4E0B\u8EAB" + rect: + serializedVersion: 2 + x: 3136 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: daf2532c142416410800000000000000 + internalID: 1468527803698065325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u7537-\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3168 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be35a83084f9ecac0800000000000000 + internalID: -3832951101199854613 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u7537-\u624B\u5957" + rect: + serializedVersion: 2 + x: 3200 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 31632b5945e67d5f0800000000000000 + internalID: -731995104856623597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u7537-\u978B" + rect: + serializedVersion: 2 + x: 3232 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee881eb538ceb7450800000000000000 + internalID: 6087719370247735534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u7537\u4E0A\u8863-\u53D8\u8272" + rect: + serializedVersion: 2 + x: 3264 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e15e8a1caa477170800000000000000 + internalID: 8176085751554789865 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3296 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 848fc73a73e50d080800000000000000 + internalID: -9164721648639870904 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u7537\u624B\u5957-\u53D8\u8272" + rect: + serializedVersion: 2 + x: 3328 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bde914a6299879590800000000000000 + internalID: -7667508578634064165 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u7537\u88E4-\u53D8\u8272" + rect: + serializedVersion: 2 + x: 3360 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f1fceac218474970800000000000000 + internalID: 8739032847486874098 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3392 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b74a56b5ec79ad8e0800000000000000 + internalID: -1667853799434902405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u7537\u978B-\u53D8\u8272" + rect: + serializedVersion: 2 + x: 3424 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 151110231b9c93e70800000000000000 + internalID: 9095522685336752465 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u793C\u670D\u7537\u978B" + rect: + serializedVersion: 2 + x: 3456 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f35524aa29f6d7fb0800000000000000 + internalID: -4648436564664101569 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u8001\u4EBA\u7684\u5E3D\u5B50" + rect: + serializedVersion: 2 + x: 3488 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e1b5ae4302080a70800000000000000 + internalID: 8793280485668532707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u8001\u4EBA\u7684\u65E5\u8BB0" + rect: + serializedVersion: 2 + x: 3520 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 30edca1c2f08567c0800000000000000 + internalID: -4078712107394343421 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u889C\u5B50(\u7D2B)" + rect: + serializedVersion: 2 + x: 3552 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc3dda7814bfd6160800000000000000 + internalID: 7020543653008233419 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u889C\u5B50(\u7EFF)" + rect: + serializedVersion: 2 + x: 3584 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f22f5fa80a62f0c20800000000000000 + internalID: 3174798733287485999 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u889C\u5B50(\u84DD)" + rect: + serializedVersion: 2 + x: 3616 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f94ab3454c2303ed0800000000000000 + internalID: -2436391579599264609 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u889C\u5B50(\u9EC4)" + rect: + serializedVersion: 2 + x: 3648 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34a227903895ecd60800000000000000 + internalID: 7912360014670604867 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u889C\u5B50" + rect: + serializedVersion: 2 + x: 3680 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e382c327c3fcd360800000000000000 + internalID: 7195894341255201761 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3712 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f718230cb99960cf0800000000000000 + internalID: -286372632067931777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u88C5\u5973\u4E0A\u88D9-\u53D8\u8272" + rect: + serializedVersion: 2 + x: 3744 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c7ff21d842c44150800000000000000 + internalID: 5856019033491503046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u88C5\u5973\u4E0A\u88D9" + rect: + serializedVersion: 2 + x: 3776 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0740762b73ab5590800000000000000 + internalID: -7684368589856422131 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u88C5\u5973\u624B\u5957-\u53D8\u8272" + rect: + serializedVersion: 2 + x: 3808 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e91aad1d651adafc0800000000000000 + internalID: -3481949542627499618 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u88C5\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 3840 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e59f9c5438793de30800000000000000 + internalID: 4527128640504854878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u88C5\u5973\u88C5\u978B-\u53D8\u8272" + rect: + serializedVersion: 2 + x: 3872 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c92d627df2d8266c0800000000000000 + internalID: -4151600669869550948 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u88C5\u5973\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 3904 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97ce812a3d977c6d0800000000000000 + internalID: -2970271479362950023 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u88C5\u5973\u9774\u5B50" + rect: + serializedVersion: 2 + x: 3936 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88e4e16dcf768f3b0800000000000000 + internalID: -5478514611074478456 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3968 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c07b2a7ebdd8f8690800000000000000 + internalID: -7597698070727182580 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u88C5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 4000 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8477a911acfd151c0800000000000000 + internalID: -4516582892304173240 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 4032 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5eb9a9eff6ac805c0800000000000000 + internalID: -4248923666062337051 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u88C5\u7537\u9774\u5B50" + rect: + serializedVersion: 2 + x: 4064 + y: 3456 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56ae2d6af67ece4f0800000000000000 + internalID: -798008567225193883 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u9080\u8BF7\u51FD" + rect: + serializedVersion: 2 + x: 0 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b79d974962975d7b0800000000000000 + internalID: -5200116988122637957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u91D1\u5E01" + rect: + serializedVersion: 2 + x: 32 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb7eb866631ddaf60800000000000000 + internalID: 8047318140759828415 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u94DC\u5E01" + rect: + serializedVersion: 2 + x: 64 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c21899439d4553b0800000000000000 + internalID: -5524424072909811005 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u94F6\u5E01" + rect: + serializedVersion: 2 + x: 96 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db864474504889280800000000000000 + internalID: -9036327494113531715 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5723\u8BDE\u9E8B\u9E7F\u5750\u9A91" + rect: + serializedVersion: 2 + x: 128 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27c6530d680d92be0800000000000000 + internalID: -1501439723313992590 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u4E4B\u5723\u5370" + rect: + serializedVersion: 2 + x: 160 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44c244518054bce50800000000000000 + internalID: 6830629160856333380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u4E4B\u788E\u7247" + rect: + serializedVersion: 2 + x: 192 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8073acb2a71f602d0800000000000000 + internalID: -3312694968861444344 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u4E4B\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 224 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c0b3066cfa022de0800000000000000 + internalID: -1359512058352914235 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u4ED9\u77F3" + rect: + serializedVersion: 2 + x: 256 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb5cd9d9792e4ae70800000000000000 + internalID: 9125667885771769278 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u4F51\u5B9D\u4E66" + rect: + serializedVersion: 2 + x: 288 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dca97a66e90f1d070800000000000000 + internalID: 8129543365498215117 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u5143\u77F3" + rect: + serializedVersion: 2 + x: 320 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d414e7836566f6090800000000000000 + internalID: -8039094289332027059 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u55B7\u82B11" + rect: + serializedVersion: 2 + x: 352 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae3f2d1dc6ee1d6c0800000000000000 + internalID: -4120250032923151382 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u55B7\u82B12" + rect: + serializedVersion: 2 + x: 384 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 170e67a50cde065a0800000000000000 + internalID: -6529958049279975311 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u55B7\u82B13" + rect: + serializedVersion: 2 + x: 416 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e0efc43f8c218a5a0800000000000000 + internalID: -6509932607079383538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u55B7\u82B14" + rect: + serializedVersion: 2 + x: 448 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 93ae17ca5671aab00800000000000000 + internalID: 840510005910301241 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u55B7\u82B15" + rect: + serializedVersion: 2 + x: 480 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 506c58d537f4bf0e0800000000000000 + internalID: -2235105433150437883 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u65CB\u82B11" + rect: + serializedVersion: 2 + x: 512 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4d4cf09a2529f870800000000000000 + internalID: 8717039418503613775 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u65CB\u82B12" + rect: + serializedVersion: 2 + x: 544 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 013358794b0722e20800000000000000 + internalID: 3324343395891360528 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u65CB\u82B13" + rect: + serializedVersion: 2 + x: 576 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a6d725cc0c07ca40800000000000000 + internalID: 5388288728158951078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u65CB\u82B14" + rect: + serializedVersion: 2 + x: 608 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0e37f564287b6100800000000000000 + internalID: 102307514270825995 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u65CB\u82B15" + rect: + serializedVersion: 2 + x: 640 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c47bdf014d2c306b0800000000000000 + internalID: -5331203317802617012 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u6E0A\u5996\u5C06\u5361\u72471" + rect: + serializedVersion: 2 + x: 672 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 15fa4b743769f3600800000000000000 + internalID: 450243909628768081 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u6E0A\u5996\u5C06\u5361\u72472" + rect: + serializedVersion: 2 + x: 704 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5ac640a7db884450800000000000000 + internalID: 6073257855732337244 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u6E0A\u5996\u5C06\u5361\u72473" + rect: + serializedVersion: 2 + x: 736 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04a34ad686985bc50800000000000000 + internalID: 6680396703883082304 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u6E0A\u5996\u5C06\u5361\u72474" + rect: + serializedVersion: 2 + x: 768 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf24ecc0e31ca9d40800000000000000 + internalID: 5591994359580869371 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u6E0A\u5996\u5C06\u5361\u72475" + rect: + serializedVersion: 2 + x: 800 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: caee0df51a8814880800000000000000 + internalID: -8628465184386519380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u6E0A\u5996\u5C06\u5361\u72476" + rect: + serializedVersion: 2 + x: 832 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4c9782b8b0448470800000000000000 + internalID: 8395906767338839115 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u6E0A\u5996\u5C06\u5361\u72477" + rect: + serializedVersion: 2 + x: 864 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9cf520238efbc56a0800000000000000 + internalID: -6459076761563799607 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u6E0A\u5996\u5C06\u5361\u72478" + rect: + serializedVersion: 2 + x: 896 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5550040b25c00e7b0800000000000000 + internalID: -5197140420701715115 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u7075\u77F3" + rect: + serializedVersion: 2 + x: 928 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbd81eac89f83cad0800000000000000 + internalID: -2683143066581103171 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u715E\u5143\u7CBE" + rect: + serializedVersion: 2 + x: 960 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e9366120f6c9c3b0800000000000000 + internalID: -5491639535946810910 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u715E\u661F\u5361" + rect: + serializedVersion: 2 + x: 992 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: baa8b94fce637a600800000000000000 + internalID: 479412276682263211 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u715E\u77F3" + rect: + serializedVersion: 2 + x: 1024 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d50b7574cd1bea110800000000000000 + internalID: 1274151304240279645 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u715E\u957F\u9524" + rect: + serializedVersion: 2 + x: 1056 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4868976a88592d10800000000000000 + internalID: 2101308052611819599 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u72F1\u72EE\u738B" + rect: + serializedVersion: 2 + x: 1088 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b306a2de577a0ec0800000000000000 + internalID: -3599933702984563783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u7F1A\u5BC6\u5377" + rect: + serializedVersion: 2 + x: 1120 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1160df6951fd45a10800000000000000 + internalID: 1897386626850293265 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u85CF\u83E9\u8428" + rect: + serializedVersion: 2 + x: 1152 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 982e566fd1ee5cfb0800000000000000 + internalID: -4628031229597982071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u85CF\u83E9\u8428\u788E\u7247" + rect: + serializedVersion: 2 + x: 1184 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33d298a6209071260800000000000000 + internalID: 7068128046163242291 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u884C\u5F69\u9E1F" + rect: + serializedVersion: 2 + x: 1216 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 634063a13411dd870800000000000000 + internalID: 8709136234304635958 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5730\u9B3C\u7259" + rect: + serializedVersion: 2 + x: 1248 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d4eeb2687b260c00800000000000000 + internalID: 866427774368146641 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u574E\u4E4B\u8868\u5FBD" + rect: + serializedVersion: 2 + x: 1280 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 05d18f87f7b5d1000800000000000000 + internalID: 8263377373109584 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u574E\u4E4B\u9B42" + rect: + serializedVersion: 2 + x: 1312 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ac498f5738975a30800000000000000 + internalID: 4203996140767104166 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u574F\u4EBA\u5361" + rect: + serializedVersion: 2 + x: 1344 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2252138d6be10ef0800000000000000 + internalID: -143574857516166613 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u574F\u6389\u7684\u5F13" + rect: + serializedVersion: 2 + x: 1376 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: feccd6273b1f0cfb0800000000000000 + internalID: -4629434663915631377 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5750\u9A91\u5938\u7236" + rect: + serializedVersion: 2 + x: 1408 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5eb6398160b8fe050800000000000000 + internalID: 5832032900766460901 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5750\u9A91\u5BA0\u7269\u5151\u6362\u724C" + rect: + serializedVersion: 2 + x: 1440 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8ae5e108af4ca640800000000000000 + internalID: 5092532861654133387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5750\u9A91\u673A\u68B0\u6218\u72EE" + rect: + serializedVersion: 2 + x: 1472 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06ff006d8263d9000800000000000000 + internalID: 44251120360554336 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5750\u9A91\u731B\u72B8\u5DE8\u8C61" + rect: + serializedVersion: 2 + x: 1504 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60e40a7a20e0e8380800000000000000 + internalID: -8967214403483054586 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5750\u9A91\u7AE0\u9C7C\u9F99\u602A" + rect: + serializedVersion: 2 + x: 1536 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94389a6927aa70490800000000000000 + internalID: -7780062422128557239 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5750\u9A91\u846B\u82A6" + rect: + serializedVersion: 2 + x: 1568 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ec7d8bb64495a2a0800000000000000 + internalID: -6726807436892734239 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5750\u9A91\u86C7" + rect: + serializedVersion: 2 + x: 1600 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13fd7fd76fbfedbd0800000000000000 + internalID: -2603366498479644879 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5750\u9A91\u98DE\u9F99" + rect: + serializedVersion: 2 + x: 1632 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ac4c9901e33c31e0800000000000000 + internalID: -2216839874951230300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5750\u9A91\u9F20\u8F6E\u8F66" + rect: + serializedVersion: 2 + x: 1664 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 561b81ed35d2e55f0800000000000000 + internalID: -766125048374709915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u575A\u57CE" + rect: + serializedVersion: 2 + x: 1696 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b2c4a39643491aa0800000000000000 + internalID: -6189842242440215887 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u575A\u58C1\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1728 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c19da7dd8ff45a70800000000000000 + internalID: 8814951355344851392 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u575A\u58C1\u4E4B\u77F3\u5305\u88F9" + rect: + serializedVersion: 2 + x: 1760 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b89d8078c41be090800000000000000 + internalID: -8004281061606582093 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u575A\u5B9A\u7EA2\u661F" + rect: + serializedVersion: 2 + x: 1792 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7a901a4799396130800000000000000 + internalID: 3560440302358534783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u575A\u786C\u7684\u5599" + rect: + serializedVersion: 2 + x: 1824 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37b788838af601a20800000000000000 + internalID: 3031045317514001267 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u575A\u786C\u866B\u7FC5" + rect: + serializedVersion: 2 + x: 1856 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 091d597bb1846a5d0800000000000000 + internalID: -3051672413615566448 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5764\u4E4B\u8868\u5FBD" + rect: + serializedVersion: 2 + x: 1888 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fde298080765316e0800000000000000 + internalID: -1868054379235823905 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5764\u4E4B\u9B42" + rect: + serializedVersion: 2 + x: 1920 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b4b76b2e659b03a0800000000000000 + internalID: -6698095720376322888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5782\u6708\u55B7\u6CC9" + rect: + serializedVersion: 2 + x: 1952 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75d7d6f326266c990800000000000000 + internalID: -7366091966407410345 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5782\u7EBF\u6D41\u661F" + rect: + serializedVersion: 2 + x: 1984 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e43ec33f269ab8380800000000000000 + internalID: -8967887990525467826 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5782\u82B1\u8BD7\u95E8" + rect: + serializedVersion: 2 + x: 2016 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9944e6cddb892160800000000000000 + internalID: 7001280880365029786 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5792\u4E1D\u7F20\u9B42\xB7\u7D2B" + rect: + serializedVersion: 2 + x: 2048 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 384a51c7e3ff54230800000000000000 + internalID: 3622582119124280451 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5792\u4E1D\u7F20\u9B42\xB7\u84DD" + rect: + serializedVersion: 2 + x: 2080 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7ec6956fc9f7d1f0800000000000000 + internalID: -1020072121418199427 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5792\u4E1D\u7F20\u9B42\xB7\u8D64" + rect: + serializedVersion: 2 + x: 2112 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e10aa8b3881d59910800000000000000 + internalID: 1843610005522784286 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5792\u4E1D\u7F20\u9B42\xB7\u9752" + rect: + serializedVersion: 2 + x: 2144 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef1fa4e1ea54b66e0800000000000000 + internalID: -1843303008343232002 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u57CE\u5E02\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 2176 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70b1123eb4069ff60800000000000000 + internalID: 8068586086460365575 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u589E\u957F\u65E0\u91CF\u6728" + rect: + serializedVersion: 2 + x: 2208 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b107e55344dfdd320800000000000000 + internalID: 2584500230575517723 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u58A8" + rect: + serializedVersion: 2 + x: 2240 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69705a913c52f1df0800000000000000 + internalID: -207405537956657258 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u58A8\u708E\u957F\u65A7" + rect: + serializedVersion: 2 + x: 2272 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c62ab706e1bbb3340800000000000000 + internalID: 4844671563309228652 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u58A8\u96E8\u4E4B\u5F13" + rect: + serializedVersion: 2 + x: 2304 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a9b806966a61e0a0800000000000000 + internalID: -6854080169044821594 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u58A8\u9CB6" + rect: + serializedVersion: 2 + x: 2336 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc1e38caf7d879e70800000000000000 + internalID: 9121915149756916171 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590D\u53E4\u73BB\u7483\u5782\u706F" + rect: + serializedVersion: 2 + x: 2368 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82dac953730536eb0800000000000000 + internalID: -4727846985756005080 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590D\u53E4\u7EB9\u9970\u7B52\u706F" + rect: + serializedVersion: 2 + x: 2400 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62257ac607f0a8db0800000000000000 + internalID: -4788998278221442522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590D\u6D3B\u5377\u8F74" + rect: + serializedVersion: 2 + x: 2432 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08cfb5d7ca6562470800000000000000 + internalID: 8369472256352189568 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590D\u82CF\u7684\u4E91\u5251" + rect: + serializedVersion: 2 + x: 2464 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5c0724f7104c7c80800000000000000 + internalID: -8323707539662893990 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5A01\u5937\u65F6\u88C5\u5973\u4E0A\u8EAB" + rect: + serializedVersion: 2 + x: 2496 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c93563936095eee0800000000000000 + internalID: -1232420165666915903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5A01\u5937\u65F6\u88C5\u5973\u4E0B\u8EAB" + rect: + serializedVersion: 2 + x: 2528 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 157147aab44f13430800000000000000 + internalID: 3761055769650534225 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5A01\u5937\u65F6\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2560 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6fdfd8cce89c7a470800000000000000 + internalID: 8405908844664716790 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5A01\u5937\u65F6\u88C5\u5973\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2592 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb4fa66ef9e2c7330800000000000000 + internalID: 3709891457346892987 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5A01\u5937\u65F6\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2624 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9a4e5ebd26f435d0800000000000000 + internalID: -3083569168514135393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5B63\u6821\u670D\u7537\u88C5-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 2656 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 504578064b103d5a0800000000000000 + internalID: -6497847963140271099 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5B63\u6821\u670D\u7537\u88C5-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 2688 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b105732d26113dbe0800000000000000 + internalID: -1453799138579230693 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5B63\u6821\u670D\u7537\u88C5-\u978B32" + rect: + serializedVersion: 2 + x: 2720 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 633178f2484708df0800000000000000 + internalID: -180015874012933322 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5B63\u6821\u670D\u88C5\u5973-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 2752 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b37c67dbe5b02ca60800000000000000 + internalID: 7692723615035737915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5B63\u6821\u670D\u88C5\u5973-\u88D9\u5B5032" + rect: + serializedVersion: 2 + x: 2784 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 01aa9cfded1ec2c00800000000000000 + internalID: 877324374783928848 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5B63\u6821\u670D\u88C5\u5973-\u978B32" + rect: + serializedVersion: 2 + x: 2816 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c00c10b5c25940d20800000000000000 + internalID: 3243881649351540748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5B63\u6C99\u6F20\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2848 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eceac6f7b28f76590800000000000000 + internalID: -7680897773751980338 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5B63\u6C99\u6F20\u7537\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 2880 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f712782e0a310bf0800000000000000 + internalID: -359942662730410000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5B63\u6C99\u6F20\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2912 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f9de2528c6591170800000000000000 + internalID: 8149640418320898548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u5B63\u6C99\u6F20\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2944 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40f1c63210f914150800000000000000 + internalID: 5855135817796427524 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u65E5\u6E05\u51C9\u88C5\u8863" + rect: + serializedVersion: 2 + x: 2976 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 26d741fbe0231e080800000000000000 + internalID: -9159985128178156190 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u65E5\u6E05\u51C9\u88C5\u88D9" + rect: + serializedVersion: 2 + x: 3008 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2dc71a5467c1ab4d0800000000000000 + internalID: -3118148497700717358 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u65E5\u6E05\u51C9\u88C5\u978B" + rect: + serializedVersion: 2 + x: 3040 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec7963709a279a7f0800000000000000 + internalID: -600823004981192754 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u590F\u65E5\u9633\u5149\u6C99\u6EE9\u6905" + rect: + serializedVersion: 2 + x: 3072 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ffc48e16ff0b5840800000000000000 + internalID: 5213778543359873008 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5915\u513F\u7F1D\u7684\u5F81\u8863" + rect: + serializedVersion: 2 + x: 3104 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f6a4002fafaad5c60800000000000000 + internalID: 7808585323708959343 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591A\u5B9D\u6C89\u9999\u7B14\u67B6" + rect: + serializedVersion: 2 + x: 3136 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 077f1ea037d08c4d0800000000000000 + internalID: -3114224354571716752 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591A\u5BFF\u6C34\u997A" + rect: + serializedVersion: 2 + x: 3168 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df63475d96d4913b0800000000000000 + internalID: -5541312749554616579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591A\u5F69\u9879\u94FE12" + rect: + serializedVersion: 2 + x: 3200 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ecf3b86c20b7c8a90800000000000000 + internalID: -7310332843277991986 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591A\u5F69\u9879\u94FE13" + rect: + serializedVersion: 2 + x: 3232 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2e1999ea4dd40840800000000000000 + internalID: 5189515984454098474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591A\u60C5\u5251" + rect: + serializedVersion: 2 + x: 3264 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40742f7d4980fd200800000000000000 + internalID: 206893543253493508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591A\u798F\u6C34\u997A" + rect: + serializedVersion: 2 + x: 3296 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48f316a6b05a216c0800000000000000 + internalID: -4174092436171047036 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591A\u95FB\u65E0\u53CC\u4E1D" + rect: + serializedVersion: 2 + x: 3328 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 310f2dda90d56d5b0800000000000000 + internalID: -5343981611676143597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591C\u5149\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 3360 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c20eaa416b0870840800000000000000 + internalID: 5190258615086932012 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591C\u5149\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 3392 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2da178e7116bac90800000000000000 + internalID: -7157520427463365333 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591C\u5149\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 3424 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33e6ecc20fae6bce0800000000000000 + internalID: -1389665117732442573 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591C\u5149\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 3456 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0e2da72af4078050800000000000000 + internalID: 5802612117344169485 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591C\u5149\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 3488 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d06ec6545b9cf01e0800000000000000 + internalID: -2229341510134077939 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591C\u5149\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 3520 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1837489c16ab88200800000000000000 + internalID: 182600714063999873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591C\u5149\u5B9D\u73E0" + rect: + serializedVersion: 2 + x: 3552 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48cb71ad30dd4fb90800000000000000 + internalID: -7208894094899692412 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591C\u53C9\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3584 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04ce43219ec6fa460800000000000000 + internalID: 7255137273005796416 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591C\u5F71\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 3616 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99f6312ee74c70af0800000000000000 + internalID: -430159190152745063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591C\u5F71\u661F\u76D8" + rect: + serializedVersion: 2 + x: 3648 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a747a8798d82e7200800000000000000 + internalID: 179625945861878906 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591C\u660E\u73E0" + rect: + serializedVersion: 2 + x: 3680 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf5ffc81f0cd00fe0800000000000000 + internalID: -1224737141245872644 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591C\u660E\u73E0\u53D8\u8272" + rect: + serializedVersion: 2 + x: 3712 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 600b27007ff4af370800000000000000 + internalID: 8357079980822409222 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u591C\u715E" + rect: + serializedVersion: 2 + x: 3744 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98f29a2f2d2dd5c30800000000000000 + internalID: 4349864618565906313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927" + rect: + serializedVersion: 2 + x: 3776 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d933730967a2a650800000000000000 + internalID: 6242736102960216528 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u4E5D\u9633\u4E39" + rect: + serializedVersion: 2 + x: 3808 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 72f7ed607cb01cb30800000000000000 + internalID: 4305735668184547111 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u5200" + rect: + serializedVersion: 2 + x: 3840 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3f6e7fed12889b60800000000000000 + internalID: 7753089823602011967 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u529B\u4E38" + rect: + serializedVersion: 2 + x: 3872 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9b88f54ff9a77e60800000000000000 + internalID: 7960017780256312218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u529B\u795E" + rect: + serializedVersion: 2 + x: 3904 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d65330e0480c6df10800000000000000 + internalID: 2294232733595153773 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u529B\u795E\u4E4B\u51A0" + rect: + serializedVersion: 2 + x: 3936 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 115bf27dffd7e26c0800000000000000 + internalID: -4166254067490769647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u5305\u88F9" + rect: + serializedVersion: 2 + x: 3968 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e5ee4276d658ebaf0800000000000000 + internalID: -378718613724139938 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u561F\u561F\u718A" + rect: + serializedVersion: 2 + x: 4000 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a0f55265cc4d5f30800000000000000 + internalID: 4565890007865618600 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u5730\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 4032 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c93a86ab70886280800000000000000 + internalID: -9049842182637602360 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u578B\u51CC\u4E91\u7269\u8D44\u7BB1" + rect: + serializedVersion: 2 + x: 4064 + y: 3424 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6205d43c6720a0010800000000000000 + internalID: 1155738963479973926 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u578B\u51CC\u4E91\u7269\u8D44\u888B" + rect: + serializedVersion: 2 + x: 0 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5701f31e3f3ace70800000000000000 + internalID: 9136184329929557850 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u5934\u4E38" + rect: + serializedVersion: 2 + x: 32 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21be5505072b617c0800000000000000 + internalID: -4100894215220368622 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u660E\u5BA3\u5FB7\u7089" + rect: + serializedVersion: 2 + x: 64 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dabd1ed4b744536d0800000000000000 + internalID: -3011425479448994899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u6F20\u5B64\u70DF" + rect: + serializedVersion: 2 + x: 96 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6a9c3baece2e88e0800000000000000 + internalID: -1689361345046341012 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u73CD\u73E0" + rect: + serializedVersion: 2 + x: 128 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cb7e0bf4c0676e2d0800000000000000 + internalID: -3249780285852555332 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u795E\u6C14\u4E38" + rect: + serializedVersion: 2 + x: 160 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de8bb0ba759da9310800000000000000 + internalID: 1412680403689126125 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u79B9\u5E1D\u9AA8" + rect: + serializedVersion: 2 + x: 192 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4710d4a77fe2377d0800000000000000 + internalID: -2921940092789653132 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u81EA\u5728\u8F6E" + rect: + serializedVersion: 2 + x: 224 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21ddbd3e731e75b40800000000000000 + internalID: 5429055505980710162 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u82B1\u65D7\u888D\u5934\u53D1" + rect: + serializedVersion: 2 + x: 256 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a0c95e62ff2625d0800000000000000 + internalID: -3087727776235929440 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u82B1\u65D7\u888D\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 288 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bd19f6b5245dfc80800000000000000 + internalID: -8287375218331542092 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u82B1\u65D7\u888D\u978B\u5B50" + rect: + serializedVersion: 2 + x: 320 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5440a036d1aba8040800000000000000 + internalID: 4650734200591877189 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u867E\u5F13" + rect: + serializedVersion: 2 + x: 352 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9a6da95baedd2fd0800000000000000 + internalID: -2364989401774331236 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u867E\u62F3\u5957" + rect: + serializedVersion: 2 + x: 384 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 421dbdd8899283ee0800000000000000 + internalID: -1281228358795144924 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u8D1D\u58F3" + rect: + serializedVersion: 2 + x: 416 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92824400c3e290040800000000000000 + internalID: 4614270128455165993 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u8D1D\u58F3\u4EAE" + rect: + serializedVersion: 2 + x: 448 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f36eb119cdcdce50800000000000000 + internalID: 6831342473260721138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u91D1\u521B\u836F" + rect: + serializedVersion: 2 + x: 480 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5636848051432c1c0800000000000000 + internalID: -4484965013969673371 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u91D1\u952D" + rect: + serializedVersion: 2 + x: 512 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e0fa4aa35e5416c40800000000000000 + internalID: 5503757070457155342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u94B3\u5B50" + rect: + serializedVersion: 2 + x: 544 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0d82d38c9f1b5880800000000000000 + internalID: -8621262304583709428 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u94F6\u952D" + rect: + serializedVersion: 2 + x: 576 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6f2f0c978484d8a0800000000000000 + internalID: -6281249862301307027 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u9690\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 608 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a152b87b2ccedb9e0800000000000000 + internalID: -1603865571226868454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u9EC4" + rect: + serializedVersion: 2 + x: 640 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d6daed1da9526d20800000000000000 + internalID: 3270274879490545369 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5927\u9F99\u867E" + rect: + serializedVersion: 2 + x: 672 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14b9de43d01fdfea0800000000000000 + internalID: -5837244502977438911 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E00\u6C34" + rect: + serializedVersion: 2 + x: 704 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3d74ac5b99c47f90800000000000000 + internalID: -6956713855269176001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E0A\u4EBA\u95F4" + rect: + serializedVersion: 2 + x: 736 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df5bf6aef8d6d5630800000000000000 + internalID: 3917407715763140093 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E0A\u5929\u4E0B\u793C\u76D2" + rect: + serializedVersion: 2 + x: 768 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f72d0447c01b9210800000000000000 + internalID: 1340683762099103729 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E0B\u7B2C\u4E00\u5E2E" + rect: + serializedVersion: 2 + x: 800 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 489c694af8db88d50800000000000000 + internalID: 6739845266999265668 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E4B\u660A\u955C" + rect: + serializedVersion: 2 + x: 832 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb3375379dcf213b0800000000000000 + internalID: -5543090180466461762 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E4B\u788E\u7247" + rect: + serializedVersion: 2 + x: 864 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56ab2b5c650d79f30800000000000000 + internalID: 4582360216975358565 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E4B\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 896 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 73ff8781b3508c8e0800000000000000 + internalID: -1673081510196347081 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u4E00\u526A\u6885" + rect: + serializedVersion: 2 + x: 928 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b82ebc5ac9ce2aab0800000000000000 + internalID: -4998172478887173493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u4E00\u592B\u5F53\u5173" + rect: + serializedVersion: 2 + x: 960 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ef4647395ca0c940800000000000000 + internalID: 5314437059476606951 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u4E00\u82C7\u6E21\u6C5F" + rect: + serializedVersion: 2 + x: 992 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6e3fd834251f3d50800000000000000 + internalID: 6719112414377229932 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u4E03\u5A18\u5B50" + rect: + serializedVersion: 2 + x: 1024 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70e59840ab909ae20800000000000000 + internalID: 3362229291353464327 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u4E09\u5B66\u58EB" + rect: + serializedVersion: 2 + x: 1056 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8bcec05c6745a93e0800000000000000 + internalID: -2046230211597636424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u4E09\u6627\u771F\u706B" + rect: + serializedVersion: 2 + x: 1088 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd9cb335baf914a80800000000000000 + internalID: -8484324664804652581 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u4E18\u6BD4\u7279" + rect: + serializedVersion: 2 + x: 1120 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 308208b236a8f2aa0800000000000000 + internalID: -6183571604820187133 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u4E1A\u706B" + rect: + serializedVersion: 2 + x: 1152 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3391f8cf6a8eb81c0800000000000000 + internalID: -4500247598727227085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u4E1C\u98CE\u7834" + rect: + serializedVersion: 2 + x: 1184 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d07ab9a8621c69ac0800000000000000 + internalID: -3848676460263135475 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u4E5D\u91CD\u845B" + rect: + serializedVersion: 2 + x: 1216 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4dcf5b2f2384d500800000000000000 + internalID: 420104903866699086 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u4E8C\u90CE\u795E" + rect: + serializedVersion: 2 + x: 1248 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bbbffcc9e67528320800000000000000 + internalID: 2558703670888758203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u4E94\u66F4\u8F6C" + rect: + serializedVersion: 2 + x: 1280 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ff78733cd2675cc0800000000000000 + internalID: -3722397869102563335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u4F18\u94B5\u7F57" + rect: + serializedVersion: 2 + x: 1312 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c97485033cdbe2c0800000000000000 + internalID: -4401182099130517052 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u516B\u58F0\u7518\u5DDE" + rect: + serializedVersion: 2 + x: 1344 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b257f340cbe67f2e0800000000000000 + internalID: -2092081748086131413 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u516D\u5DDE\u6B4C\u5934" + rect: + serializedVersion: 2 + x: 1376 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f86da4a25dec7b9a0800000000000000 + internalID: -6217273345628776817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u51B0\u5937" + rect: + serializedVersion: 2 + x: 1408 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 929991438da649190800000000000000 + internalID: -7956617164837250775 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u51B0\u706B\u9E92\u9E9F" + rect: + serializedVersion: 2 + x: 1440 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3328fb8126a15780800000000000000 + internalID: -8695986742463290564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u51E4\u6765\u671D" + rect: + serializedVersion: 2 + x: 1472 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4c81f81f52084b70800000000000000 + internalID: 8883352872451935307 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u529B\u62D4\u5343\u94A7" + rect: + serializedVersion: 2 + x: 1504 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b93855b034ad98480800000000000000 + internalID: -8896339607405886565 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u529B\u633D\u72C2\u6F9C" + rect: + serializedVersion: 2 + x: 1536 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2280bf2a912afd500800000000000000 + internalID: 423235120988358690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u52FE\u9B42\u6444\u9B44" + rect: + serializedVersion: 2 + x: 1568 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ff1a36ebaf6624c0800000000000000 + internalID: -4312636809068011534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5317\u51A5" + rect: + serializedVersion: 2 + x: 1600 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e78f28e621b322fe0800000000000000 + internalID: -1215343999087085442 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5341\u4E09\u592A\u4FDD" + rect: + serializedVersion: 2 + x: 1632 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42ecf4f145d80b200800000000000000 + internalID: 193810176419024420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5341\u516B\u5B66\u58EB" + rect: + serializedVersion: 2 + x: 1664 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1bb28486b30b9820800000000000000 + internalID: 2925936465349360410 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5341\u6837\u9526" + rect: + serializedVersion: 2 + x: 1696 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b46ef0bc7d5b1dfa0800000000000000 + internalID: -5777636908510222773 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5343\u79CB\u5C81" + rect: + serializedVersion: 2 + x: 1728 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c12c045f1db0c1d0800000000000000 + internalID: -3332455782002449979 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5343\u91CC\u70DF\u6CE2" + rect: + serializedVersion: 2 + x: 1760 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 232f35abf6b29c430800000000000000 + internalID: 3803619119158522418 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u53CC\u98DE\u7FFC" + rect: + serializedVersion: 2 + x: 1792 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 901a01625a36c7490800000000000000 + internalID: -7747207698024718071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u53D8\u4E71" + rect: + serializedVersion: 2 + x: 1824 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f19c57e5af4d2c70800000000000000 + internalID: 8947895608624845298 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u56DB\u5927\u7686\u7A7A" + rect: + serializedVersion: 2 + x: 1856 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a193b8a8471c13d90800000000000000 + internalID: -7119696829611296486 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u56DB\u65F6\u597D" + rect: + serializedVersion: 2 + x: 1888 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbd4ffef54d75c8a0800000000000000 + internalID: -6285479965341299267 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u571F\u5730\u62DC\u5BFF" + rect: + serializedVersion: 2 + x: 1920 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b96a2e76750fb2660800000000000000 + internalID: 7362242274062935707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5750\u5FD8\u7985" + rect: + serializedVersion: 2 + x: 1952 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ed85d3ffbadeef80800000000000000 + internalID: -8075276563864252952 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u585E\u4E0B" + rect: + serializedVersion: 2 + x: 1984 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8be2561ac196d7130800000000000000 + internalID: 3566122051635064504 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5929\u5730\u53D8\u8272" + rect: + serializedVersion: 2 + x: 2016 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ebcd7287fa6e4520800000000000000 + internalID: 2688203638865513449 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5929\u5730\u548C\u8C10" + rect: + serializedVersion: 2 + x: 2048 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b445889927319df60800000000000000 + internalID: 8059494391079261259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5929\u6B8B\u5730\u7F3A" + rect: + serializedVersion: 2 + x: 2080 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9241e7a72cebceb0800000000000000 + internalID: -4698402131166543201 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5929\u9999" + rect: + serializedVersion: 2 + x: 2112 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59d6fcd01a44e9d60800000000000000 + internalID: 7898826254966549909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5929\u9F13\u5999\u53F9\uFF08\u96F7\uFF09" + rect: + serializedVersion: 2 + x: 2144 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d091895fea4c96750800000000000000 + internalID: 6298781809578088717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5938\u7236" + rect: + serializedVersion: 2 + x: 2176 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c42acffa8f01b390800000000000000 + internalID: -7804439589585017657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5947\u5F02\u6069\u5178" + rect: + serializedVersion: 2 + x: 2208 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f3b944bef5715340800000000000000 + internalID: 4850788010461606903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5982\u6C90\u6625\u98CE" + rect: + serializedVersion: 2 + x: 2240 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bdbf3b9f88893850800000000000000 + internalID: 6357262499376512434 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5982\u8499\u795E\u52A9" + rect: + serializedVersion: 2 + x: 2272 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0dce22dab1952620800000000000000 + internalID: 2748763379155782923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5983\u5B50\u7B11" + rect: + serializedVersion: 2 + x: 2304 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 374d7cdec3ca9f910800000000000000 + internalID: 1871716497836463219 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5AE6\u5A25" + rect: + serializedVersion: 2 + x: 2336 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88bca9989b5b64ab0800000000000000 + internalID: -5024128525803009144 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5B50\u591C\u6B4C" + rect: + serializedVersion: 2 + x: 2368 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4e717583f556e150800000000000000 + internalID: 5901498866119835214 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5BBF\u547D" + rect: + serializedVersion: 2 + x: 2400 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dcdb5f667c901f260800000000000000 + internalID: 7129490437134728653 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5BF9\u9152\u5F53\u6B4C" + rect: + serializedVersion: 2 + x: 2432 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c47abfc0582737b40800000000000000 + internalID: 5436815090940356428 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5C04\u5929\u72FC" + rect: + serializedVersion: 2 + x: 2464 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5519390f8e35a5970800000000000000 + internalID: 8744393886426960213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5D29\u574F" + rect: + serializedVersion: 2 + x: 2496 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0a7a196227ca1e30800000000000000 + internalID: 4475108130352167435 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5DE8\u7075" + rect: + serializedVersion: 2 + x: 2528 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab8ac8a0e862cb6f0800000000000000 + internalID: -667616253253474118 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5F31\u6C34\u4E09\u5343" + rect: + serializedVersion: 2 + x: 2560 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39d4cf59ccc415980800000000000000 + internalID: -8551969775826481773 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5F39\u5F13\u5BA2" + rect: + serializedVersion: 2 + x: 2592 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46055f771fb144570800000000000000 + internalID: 8449909524767527012 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5F39\u7403\u624B" + rect: + serializedVersion: 2 + x: 2624 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9472ea98f28941b70800000000000000 + internalID: 8868880896140126025 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5FC3\u5982\u6B62\u6C34\uFF08\u5B9A\uFF09" + rect: + serializedVersion: 2 + x: 2656 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8aa1a298bea9edc0800000000000000 + internalID: -3609161518603457905 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5FC6\u6C5F\u5357" + rect: + serializedVersion: 2 + x: 2688 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 687c8b85d41b08d80800000000000000 + internalID: -8250399571583645818 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u5FF5\u5974\u5A07" + rect: + serializedVersion: 2 + x: 2720 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10524e86f769b6cb0800000000000000 + internalID: -4869633098106264319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6012\u706B\u653B\u5FC3" + rect: + serializedVersion: 2 + x: 2752 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f831e52041ec2370800000000000000 + internalID: 8299255878966655218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u637B\u82B1\u4E00\u7B11" + rect: + serializedVersion: 2 + x: 2784 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4c59796ccc600da0800000000000000 + internalID: -5980660679949329334 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u65E0\u5B57\u5929\u4E66" + rect: + serializedVersion: 2 + x: 2816 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23588b3262dcbca30800000000000000 + internalID: 4236705438163830066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6606\u4ED1" + rect: + serializedVersion: 2 + x: 2848 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6fe26bc6fc0bafa0800000000000000 + internalID: -5788518641940893842 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6740\u7834\u72FC" + rect: + serializedVersion: 2 + x: 2880 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25dcd0584ad462370800000000000000 + internalID: 8297404732478967122 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6843\u4E4B\u592D\u592D" + rect: + serializedVersion: 2 + x: 2912 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79191541cdad999c0800000000000000 + internalID: -3919861361880755817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6843\u82B1\u6247" + rect: + serializedVersion: 2 + x: 2944 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85f77767d60c4a1a0800000000000000 + internalID: -6799097961051095208 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u68A8\u82B1\u70DF\u96E8" + rect: + serializedVersion: 2 + x: 2976 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65b886a46010a3a80800000000000000 + internalID: -8486469421296481450 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6C34\u6EF4\u77F3\u7A7F" + rect: + serializedVersion: 2 + x: 3008 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74cac1bf2dd7788a0800000000000000 + internalID: -6302930808372155321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6C34\u9F99\u541F" + rect: + serializedVersion: 2 + x: 3040 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98dca41583ce61120800000000000000 + internalID: 2384352779365436809 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6C5F\u5357" + rect: + serializedVersion: 2 + x: 3072 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92b24ae9a64efd7b0800000000000000 + internalID: -5197184298383037655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6CE2\u5F8B\u9999\u9882" + rect: + serializedVersion: 2 + x: 3104 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a6b17e3da7b3d6a0800000000000000 + internalID: -6425590288622700895 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6CE2\u6D69\u6DFC" + rect: + serializedVersion: 2 + x: 3136 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41e49188141efd6d0800000000000000 + internalID: -2963402358214013420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6D1B\u795E" + rect: + serializedVersion: 2 + x: 3168 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 836d3c1ad9202f7e0800000000000000 + internalID: -1733320030537132488 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6D74\u706B\u9E3E\u51E4" + rect: + serializedVersion: 2 + x: 3200 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a05d675e54e5cee10800000000000000 + internalID: 2228259569937077514 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6D77\u5578" + rect: + serializedVersion: 2 + x: 3232 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c023b3333ad200c50800000000000000 + internalID: 6629348830451806732 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6EE1\u6C5F\u7EA2" + rect: + serializedVersion: 2 + x: 3264 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 66265100324633840800000000000000 + internalID: 5202612096031089254 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u6F5C\u9F99" + rect: + serializedVersion: 2 + x: 3296 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a86197be56895e80800000000000000 + internalID: -8189366706031728473 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u706B\u5BB5\u4E4B\u6708" + rect: + serializedVersion: 2 + x: 3328 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dacab7f2344039850800000000000000 + internalID: 6382449783520079021 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u70B9\u7EDB\u5507" + rect: + serializedVersion: 2 + x: 3360 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52f20ca3dda56e750800000000000000 + internalID: 6333849832163127077 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u70DF\u5149\u6B8B\u7167" + rect: + serializedVersion: 2 + x: 3392 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c898e89ae21c32850800000000000000 + internalID: 6351132305679878540 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u711A\u60C5" + rect: + serializedVersion: 2 + x: 3424 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 275ccb3311d54bdf0800000000000000 + internalID: -165404957842029198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u7389\u58F6\u51B0\u5FC3" + rect: + serializedVersion: 2 + x: 3456 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 167138cf60b60c710800000000000000 + internalID: 1711485536151213921 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u73AB\u7470\u523A" + rect: + serializedVersion: 2 + x: 3488 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c684282cf6f68f70800000000000000 + internalID: 9189303652561749697 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u767E\u517D\u4E4B\u738B" + rect: + serializedVersion: 2 + x: 3520 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69f3483670a9b9270800000000000000 + internalID: 8258363698238996374 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u76D8\u53E4" + rect: + serializedVersion: 2 + x: 3552 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf5ceba2c57f52f50800000000000000 + internalID: 6856157982967645692 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u7834\u9635\u5B50" + rect: + serializedVersion: 2 + x: 3584 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a20a6f5f4a2f3b730800000000000000 + internalID: 4013818483232383018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u78A7\u4E91\u5929" + rect: + serializedVersion: 2 + x: 3616 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2d643b1d930cad10800000000000000 + internalID: 2138087896395312430 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u79BB\u6068\u5929" + rect: + serializedVersion: 2 + x: 3648 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 959dae5e0aa446e00800000000000000 + internalID: 1037035869114653017 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u79BB\u6B4C" + rect: + serializedVersion: 2 + x: 3680 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4994f5e335e28ee0800000000000000 + internalID: -1260192934646212273 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u7A7A\u5883" + rect: + serializedVersion: 2 + x: 3712 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94d0caded54857be0800000000000000 + internalID: -1480131363567039159 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u7B11\u75AF\u766B" + rect: + serializedVersion: 2 + x: 3744 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 124c3512e283ea070800000000000000 + internalID: 8119488948974371873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u7EA2\u83B2" + rect: + serializedVersion: 2 + x: 3776 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6806b41a473e36c0800000000000000 + internalID: -4161828214329178003 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u7F8E\u4EBA\u9999" + rect: + serializedVersion: 2 + x: 3808 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29c04ad7632b724f0800000000000000 + internalID: -853517657257538414 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u7F8E\u5973\u86C7" + rect: + serializedVersion: 2 + x: 3840 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf9c1ec2afee29fb0800000000000000 + internalID: -4642385507603330564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u80ED\u8102\u7EA2\u6CEA" + rect: + serializedVersion: 2 + x: 3872 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39ba031685fbd9b10800000000000000 + internalID: 1989956996676234131 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u822C\u82E5\u6C64" + rect: + serializedVersion: 2 + x: 3904 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3866a5664e8e8e460800000000000000 + internalID: 7271317666057053827 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u8352\u6F20\u7518\u6CC9" + rect: + serializedVersion: 2 + x: 3936 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58b28896eed5bdae0800000000000000 + internalID: -1523520770380649595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u838E\u4E50\u7F8E" + rect: + serializedVersion: 2 + x: 3968 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 064b9e7bef306a0a0800000000000000 + internalID: -6870799788964989856 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u83E9\u63D0\u660E\u955C" + rect: + serializedVersion: 2 + x: 4000 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 829bb25fd4df2aa60800000000000000 + internalID: 7683982425515079976 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u86A9\u5C24" + rect: + serializedVersion: 2 + x: 4032 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b207241b0fe55090800000000000000 + internalID: -8046262328365743432 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u8776\u604B\u82B1" + rect: + serializedVersion: 2 + x: 4064 + y: 3392 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 72157a0032f5b8dc0800000000000000 + internalID: -3635707670232084185 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u8840\u96E8\u8165\u98CE" + rect: + serializedVersion: 2 + x: 0 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c423543258a67df0800000000000000 + internalID: -182773663843277626 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u8D64\u58C1" + rect: + serializedVersion: 2 + x: 32 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0032f2edfa947cdf0800000000000000 + internalID: -160078242052627712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u8D64\u70BC" + rect: + serializedVersion: 2 + x: 64 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10afd0b03769a0040800000000000000 + internalID: 4614666189045365249 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u9189\u7EA2\u5C18" + rect: + serializedVersion: 2 + x: 96 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec480c8009f674610800000000000000 + internalID: 1605374456593679566 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u94A2\u94C1\u795E\u5175" + rect: + serializedVersion: 2 + x: 128 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f698090d427a4590800000000000000 + internalID: -7689207738592094478 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u957F\u751F\u6BBF" + rect: + serializedVersion: 2 + x: 160 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 922739b519a8c12c0800000000000000 + internalID: -4459537174092352983 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u9633\u5173" + rect: + serializedVersion: 2 + x: 192 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f50fde445e18a2800800000000000000 + internalID: 588425523029209183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u96E8\u5E08" + rect: + serializedVersion: 2 + x: 224 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec7f47f2c486fe8c0800000000000000 + internalID: -3967838070267119666 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4E66_\u98CE\u864E\u4E91\u9F99" + rect: + serializedVersion: 2 + x: 256 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab45b04e951790ff0800000000000000 + internalID: -69399688355556166 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4EBA\u5408\u4E00\u7B26" + rect: + serializedVersion: 2 + x: 288 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8dbf489bf2a57340800000000000000 + internalID: 4860970574292172172 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4EBA\u6367\u79CB\u6EAA" + rect: + serializedVersion: 2 + x: 320 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1df9c4460d94f2e0800000000000000 + internalID: -2092875276570985188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4ED9\u5B50" + rect: + serializedVersion: 2 + x: 352 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a40d4590c25783bb0800000000000000 + internalID: -4956082557925666742 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4ED9\u77F3" + rect: + serializedVersion: 2 + x: 384 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7556a279dfdd53980800000000000000 + internalID: -8559691435515157161 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4F7F\u5587\u53ED" + rect: + serializedVersion: 2 + x: 416 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 286a30d3429734270800000000000000 + internalID: 8233557740312831618 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4F7F\u5FC3" + rect: + serializedVersion: 2 + x: 448 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f7b22ec74f5731a0800000000000000 + internalID: -6829885547878369294 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4F7F\u62A4\u58EB\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 480 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1cb65e5855380dfa0800000000000000 + internalID: -5777973918574482495 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4F7F\u62A4\u58EB\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 512 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 30bb4b95541a3aed0800000000000000 + internalID: -2403900456855880957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4F7F\u62A4\u58EB\u88C5\u5973\u62A4\u8155" + rect: + serializedVersion: 2 + x: 544 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8aa2b4be3a2bd7f0800000000000000 + internalID: -586828877633770868 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4F7F\u62A4\u58EB\u88C5\u5973\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 576 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e2fd3f14cbc2da70800000000000000 + internalID: 8850360260934628071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u4F7F\u62A4\u58EB\u88C5\u5973\u978B" + rect: + serializedVersion: 2 + x: 608 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c95a639bc7b1d5370800000000000000 + internalID: 8312830709693064604 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u5203\u7B26" + rect: + serializedVersion: 2 + x: 640 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6e00f1f289166690800000000000000 + internalID: -7609366470200390038 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u52AB\u5C04\u65E5\u5F13" + rect: + serializedVersion: 2 + x: 672 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f310b0fb792439a90800000000000000 + internalID: -7308424550779518657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u52AB\u6212" + rect: + serializedVersion: 2 + x: 704 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62cdd887ef60f7280800000000000000 + internalID: -9043501836722643930 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u52AB\u8170\u4F69" + rect: + serializedVersion: 2 + x: 736 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae84442e7c6bc2230800000000000000 + internalID: 3615465570482538730 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u52AB\u9879\u94FE" + rect: + serializedVersion: 2 + x: 768 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7bbb765b109422c50800000000000000 + internalID: 6638949072384801719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u5370\u8F6E" + rect: + serializedVersion: 2 + x: 800 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f65afaddef7889a20800000000000000 + internalID: 3069352674763711855 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u53F1\u5B9D\u5200" + rect: + serializedVersion: 2 + x: 832 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0278a9d1a7e5d7020800000000000000 + internalID: 2341131259878213408 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u547D\u4E4B\u4E66" + rect: + serializedVersion: 2 + x: 864 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71ad9c66e30ec4000800000000000000 + internalID: 21638656847108631 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u547D\u51A0" + rect: + serializedVersion: 2 + x: 896 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f6d95444d1c304520800000000000000 + internalID: 2684211474309946735 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u547D\u5E61\u6756" + rect: + serializedVersion: 2 + x: 928 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 039c1ba1bdba3aa70800000000000000 + internalID: 8837095851365091632 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u547D\u900D\u9065\u793C\u76D2" + rect: + serializedVersion: 2 + x: 960 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 970a71bf93d8d4680800000000000000 + internalID: -8769197619255205767 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u55BB\u517D\u56FE" + rect: + serializedVersion: 2 + x: 992 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61da766b6d2e5e710800000000000000 + internalID: 1722031844350209302 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u5730\u7075\u5149\u5B9D\u76D2" + rect: + serializedVersion: 2 + x: 1024 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 221995dc8e6486470800000000000000 + internalID: 8388032271669104930 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u5929\u60F3\u4F60" + rect: + serializedVersion: 2 + x: 1056 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77e2db775fa8895c0800000000000000 + internalID: -4208461064897221001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u5A01" + rect: + serializedVersion: 2 + x: 1088 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7144831693d4b6b90800000000000000 + internalID: -7247614266483129321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u5B50\u884C\u73BA" + rect: + serializedVersion: 2 + x: 1120 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: abc2163505ec83050800000000000000 + internalID: 5780596966121614522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u5C71\u96EA\u67AD\u7684\u5C38\u4F53" + rect: + serializedVersion: 2 + x: 1152 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e25e8116cda9bdb20800000000000000 + internalID: 3160289834843039022 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u5DE5\u7B26\u6587" + rect: + serializedVersion: 2 + x: 1184 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 035a604f66ead22f0800000000000000 + internalID: -995948185375038160 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u5E08\u4EE4\u5251" + rect: + serializedVersion: 2 + x: 1216 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14ed6864f48979750800000000000000 + internalID: 6311680869036121665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u5FC3\u6218\u7532" + rect: + serializedVersion: 2 + x: 1248 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9f6bfc00f4425820800000000000000 + internalID: 2905460507408035743 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u5FC3\u817F\u7532" + rect: + serializedVersion: 2 + x: 1280 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6415417508c4dcc0800000000000000 + internalID: -3687102269208849300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u5FC3\u8896\u7532" + rect: + serializedVersion: 2 + x: 1312 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6b3366d0e364a2f0800000000000000 + internalID: -962534603029791891 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u5FC3\u9774" + rect: + serializedVersion: 2 + x: 1344 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7eda2b38a42cd6c0800000000000000 + internalID: -4117375654357705089 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u673A\u8F6E" + rect: + serializedVersion: 2 + x: 1376 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b694f7baec4218100800000000000000 + internalID: 108408336092711275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u67A2\u4E4B\u5251" + rect: + serializedVersion: 2 + x: 1408 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 227395ca697011b10800000000000000 + internalID: 1950348457346152226 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u6B4C" + rect: + serializedVersion: 2 + x: 1440 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bdb319a638f6a5d70800000000000000 + internalID: 9032654612864252891 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u6C34\u51C0\u4F53\u9732" + rect: + serializedVersion: 2 + x: 1472 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 244ff83674e76eff0800000000000000 + internalID: -7179504316320702 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u6CEA\u4E4B\u5319" + rect: + serializedVersion: 2 + x: 1504 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58c61de6b5f6570c0800000000000000 + internalID: -4578631007660315515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u6CFD\u5723\u5178" + rect: + serializedVersion: 2 + x: 1536 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e951e6e3d5f776830800000000000000 + internalID: 4064357227181249950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u7384\u9AA8" + rect: + serializedVersion: 2 + x: 1568 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 217a7d881082d37b0800000000000000 + internalID: -5242990404133476590 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u7384\u9AA8\u6D41\u901A" + rect: + serializedVersion: 2 + x: 1600 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 489df2f644c621290800000000000000 + internalID: -7921149753412298364 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u751F\u6211\u624D" + rect: + serializedVersion: 2 + x: 1632 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f299b521d44250960800000000000000 + internalID: 7567494662305061167 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u754C\u9057\u5377" + rect: + serializedVersion: 2 + x: 1664 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2957371775c9ed2a0800000000000000 + internalID: -6710754495355980398 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u7687\u7EED\u9B42\u4E39" + rect: + serializedVersion: 2 + x: 1696 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a48a71ce36ba4d250800000000000000 + internalID: 5968583851823835210 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u7A7A\u9E3F\u6BDB" + rect: + serializedVersion: 2 + x: 1728 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c39836e2c5956cb0800000000000000 + internalID: -4871322757612661818 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u7F57\u8282\u97AD" + rect: + serializedVersion: 2 + x: 1760 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e37bebd9ab26be710800000000000000 + internalID: 1723579836049307454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u7F61\u5143\u7CBE" + rect: + serializedVersion: 2 + x: 1792 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9981175f2fdcdca60800000000000000 + internalID: 7696033781629655193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u7F61\u5730\u715E\u5361" + rect: + serializedVersion: 2 + x: 1824 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a4fd3653cd667b90800000000000000 + internalID: -7244482264845912921 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u7F61\u661F" + rect: + serializedVersion: 2 + x: 1856 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e101d5bf608ec5b0800000000000000 + internalID: -5346194490362101277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u7F61\u661F\u5361" + rect: + serializedVersion: 2 + x: 1888 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f76b24306f0ea1790800000000000000 + internalID: -7558481677366675841 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u7F61\u77F3" + rect: + serializedVersion: 2 + x: 1920 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 19186e5041a0ab700800000000000000 + internalID: 556768585048293777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u7F61\u957F\u9524" + rect: + serializedVersion: 2 + x: 1952 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d002eb4b48b8e250800000000000000 + internalID: 5974227539242123473 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u8352\u5730\u8001" + rect: + serializedVersion: 2 + x: 1984 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 469f606be9ef31e60800000000000000 + internalID: 7931963326341773668 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u84DD\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 2016 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 837922a457228f5f0800000000000000 + internalID: -722789853042665672 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u8695\u4E1D" + rect: + serializedVersion: 2 + x: 2048 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3900bb9db4fc141d0800000000000000 + internalID: -3368183121614012269 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u8863" + rect: + serializedVersion: 2 + x: 2080 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40fa28a3757add850800000000000000 + internalID: 6403458238276349700 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u8863\u788E\u7247" + rect: + serializedVersion: 2 + x: 2112 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 906ec03680b967c50800000000000000 + internalID: 6662683159065060873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u957F\u5730\u4E45\u4E1D" + rect: + serializedVersion: 2 + x: 2144 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5b7f8a6d7977c8e0800000000000000 + internalID: -1673235156979188900 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u95E8\u793C\u4E50\u6D6E\u96D5" + rect: + serializedVersion: 2 + x: 2176 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f23a78d96ee908100800000000000000 + internalID: 108261104379470639 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u9752\u84DD\u67D3\u6599" + rect: + serializedVersion: 2 + x: 2208 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba098b3048652d480800000000000000 + internalID: -8875936790595727189 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u9A6C\u6218\u58EB\u7684\u8840\u6DB2" + rect: + serializedVersion: 2 + x: 2240 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23f4a3ebc67aa0d40800000000000000 + internalID: 5551433576177356594 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u9A6C\u72EC\u89D2\u517D" + rect: + serializedVersion: 2 + x: 2272 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3bf066b3f2ed1150800000000000000 + internalID: 5845077427761511230 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u9B44\u77F3" + rect: + serializedVersion: 2 + x: 2304 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ade4321d06445f750800000000000000 + internalID: 6338047233210142426 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u9B54\u6DEC\u4F53\u4E38" + rect: + serializedVersion: 2 + x: 2336 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 726d530f137bc81c0800000000000000 + internalID: -4500020502538627545 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u9E45" + rect: + serializedVersion: 2 + x: 2368 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d798ae5b84739b60800000000000000 + internalID: 7751667525572138961 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u9E45\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 2400 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c9fa2b863292bf60800000000000000 + internalID: 8048656247025236416 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u9E45\u4E4B\u7FFC2" + rect: + serializedVersion: 2 + x: 2432 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 132e065e4d0fd82a0800000000000000 + internalID: -6733461070676958671 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u9E45\u4E4B\u7FFC3" + rect: + serializedVersion: 2 + x: 2464 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7990179b1bbbc2a30800000000000000 + internalID: 4191931725169887639 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u9F99\u7389\u9AD3\u77F3" + rect: + serializedVersion: 2 + x: 2496 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dca0e328c5b9efeb0800000000000000 + internalID: -4684135740794336563 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5929\u9F99\u7CBE\u8840\u77F3" + rect: + serializedVersion: 2 + x: 2528 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23122472cd3803080800000000000000 + internalID: -9209716256397975246 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u4E59\u4E4B\u5251" + rect: + serializedVersion: 2 + x: 2560 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d7432ab346d7cce0800000000000000 + internalID: -1384902774019110958 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u4E59\u7834\u9615\u5F29" + rect: + serializedVersion: 2 + x: 2592 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ebeb3392c34294c0800000000000000 + internalID: -4282285792703026207 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u4E59\u7834\u9619\u5F13" + rect: + serializedVersion: 2 + x: 2624 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f78b043b44d418b40800000000000000 + internalID: 5440714782300747903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u521D\u534E\u6676" + rect: + serializedVersion: 2 + x: 2656 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 35288a3fc8cfdaac0800000000000000 + internalID: -3842137224763637165 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u5C81" + rect: + serializedVersion: 2 + x: 2688 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cdf9b71aa012e91f0800000000000000 + internalID: -1036354534706012196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u5C81\u5361" + rect: + serializedVersion: 2 + x: 2720 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e15516a5bbcb38330800000000000000 + internalID: 3712018030744655134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u6781\u5C65" + rect: + serializedVersion: 2 + x: 2752 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 529a6b2144e789860800000000000000 + internalID: 7536912807241361701 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u6781\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2784 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 536388edd69c68440800000000000000 + internalID: 4937855515180414517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u6781\u7EB9\u6837\u6247" + rect: + serializedVersion: 2 + x: 2816 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 719732c332ff3bd60800000000000000 + internalID: 7904942297763248407 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u6781\u888D" + rect: + serializedVersion: 2 + x: 2848 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58149e28fdae6a090800000000000000 + internalID: -8023467440419028603 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u6781\u88E4" + rect: + serializedVersion: 2 + x: 2880 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb115fbb22faabda0800000000000000 + internalID: -5928233395762687553 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u6E05\u5361" + rect: + serializedVersion: 2 + x: 2912 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9ea3fb1a7c84ce00800000000000000 + internalID: 1064129868049133210 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u865A\u4E4B\u5251" + rect: + serializedVersion: 2 + x: 2944 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c643ad55d1224300800000000000000 + internalID: 234787330859419335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u9633\u5143\u6C14" + rect: + serializedVersion: 2 + x: 2976 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 428a1bfa72b525060800000000000000 + internalID: 6940710201740863524 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u9634\u4E4B\u5251" + rect: + serializedVersion: 2 + x: 3008 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb7dcc1cb7bd90580800000000000000 + internalID: -8860309467295852610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592A\u9634\u5143\u6C14" + rect: + serializedVersion: 2 + x: 3040 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e4c7ef9fb655c2f0800000000000000 + internalID: -953260365097483036 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592B\u8BF8\u738B" + rect: + serializedVersion: 2 + x: 3072 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9712ce520d9d5a40800000000000000 + internalID: 5358611765146032027 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u592B\u8BF8\u89D2" + rect: + serializedVersion: 2 + x: 3104 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e1696fed81d92860800000000000000 + internalID: 7505760661526897121 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5931\u5FC3\u5BC6\u5377" + rect: + serializedVersion: 2 + x: 3136 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82d12b02ed185eac0800000000000000 + internalID: -3826509517350101720 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5931\u6548\u7684\u9B54\u65B9\u9F7F\u8F6E" + rect: + serializedVersion: 2 + x: 3168 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ddb7d230526adab0800000000000000 + internalID: -4982561941142127147 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5934\u76D41" + rect: + serializedVersion: 2 + x: 3200 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c2ee134a3bfc3770800000000000000 + internalID: 8592018416768836297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5934\u76D42" + rect: + serializedVersion: 2 + x: 3232 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24377d034e7721fa0800000000000000 + internalID: -5831466745535696062 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5934\u76D43" + rect: + serializedVersion: 2 + x: 3264 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd4cd1c9cb09b2170800000000000000 + internalID: 8154770690031863003 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5934\u9886\u4F69\u5200" + rect: + serializedVersion: 2 + x: 3296 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 153d5a74d04f7d590800000000000000 + internalID: -7649377104191696047 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5938\u7236\u8FFD\u65E5\u4E38" + rect: + serializedVersion: 2 + x: 3328 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c08c422798829100800000000000000 + internalID: 113303123334561988 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u593A\u5929\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 3360 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 38d41f6c06fd2cf40800000000000000 + internalID: 5747401681225731459 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u593A\u7075\u8FFD\u9B42\u76BF" + rect: + serializedVersion: 2 + x: 3392 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4718a062761c0f520800000000000000 + internalID: 2733897622577906036 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u593A\u9B42\u5203" + rect: + serializedVersion: 2 + x: 3424 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dfeb05ea29a791ef0800000000000000 + internalID: -136943543249748227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u593A\u9B44\u5203" + rect: + serializedVersion: 2 + x: 3456 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1a9b86ee98a89ba0800000000000000 + internalID: -6081925896337647076 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5947\u5999\u679C" + rect: + serializedVersion: 2 + x: 3488 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ebadf540736f78f10800000000000000 + internalID: 2272055253188729534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5947\u5CF0\u4E07\u6728\u56FE" + rect: + serializedVersion: 2 + x: 3520 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d779e462f04154800800000000000000 + internalID: 595904580996208509 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5947\u602A\u7684\u94A5\u5319" + rect: + serializedVersion: 2 + x: 3552 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 123c48c9873de9be0800000000000000 + internalID: -1468503913500720351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5947\u7279\u7684\u6811\u679D" + rect: + serializedVersion: 2 + x: 3584 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0595b834b7fb1d9f0800000000000000 + internalID: -445364351997879984 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5947\u7687\u70B9\u91D1\u5C3A" + rect: + serializedVersion: 2 + x: 3616 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8468d54620ea00fa0800000000000000 + internalID: -5836473791775144376 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5947\u95E8\u6218\u7532" + rect: + serializedVersion: 2 + x: 3648 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7599978cf4f891f20800000000000000 + internalID: 3393901367028980055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5947\u95E8\u76D4" + rect: + serializedVersion: 2 + x: 3680 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7839cf98e6c6fc8b0800000000000000 + internalID: -5129762228534471801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5947\u95E8\u817F\u7532" + rect: + serializedVersion: 2 + x: 3712 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e676ebc91b2e367d0800000000000000 + internalID: -2926246080393877650 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5947\u95E8\u8896\u7532" + rect: + serializedVersion: 2 + x: 3744 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7deab79221a3bb9f0800000000000000 + internalID: -451703487940809001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5947\u95E8\u9774" + rect: + serializedVersion: 2 + x: 3776 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aadd61e52b7811e00800000000000000 + internalID: 1013740591287557546 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5949\u7075\u706B\u724C" + rect: + serializedVersion: 2 + x: 3808 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6f94009e1f9105d70800000000000000 + internalID: 9029745779664767478 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u594B\u626C\u6212" + rect: + serializedVersion: 2 + x: 3840 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bdcc21c1886f555b0800000000000000 + internalID: -5380123115377210149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5951\u7EA6" + rect: + serializedVersion: 2 + x: 3872 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85625641e9c049760800000000000000 + internalID: 7463604355546293848 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5954\u6D41" + rect: + serializedVersion: 2 + x: 3904 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb11748f09ef535f0800000000000000 + internalID: -777435462057389634 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5954\u96F7\u9557" + rect: + serializedVersion: 2 + x: 3936 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6174847124d554260800000000000000 + internalID: 7081168527549810454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973" + rect: + serializedVersion: 2 + x: 3968 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3435b13237f36f510800000000000000 + internalID: 1582522082810090307 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u4EC6\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 4000 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: deeabb1a8f1b8a060800000000000000 + internalID: 6965012505151909613 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u4EC6\u5973\u88C5\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 4032 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f29c0144e9cde700800000000000000 + internalID: 571334709926990581 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u4EC6\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 4064 + y: 3360 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58e36e22691edc5c0800000000000000 + internalID: -4193447643065205115 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u53CC\u8272\u5A5A\u7EB1\u624B\u5957" + rect: + serializedVersion: 2 + x: 0 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7048b8d9f0665e860800000000000000 + internalID: 7558559766864954375 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u53CC\u8272\u5A5A\u7EB1\u88D9" + rect: + serializedVersion: 2 + x: 32 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1448cffdaf6f0bc0800000000000000 + internalID: -3814707566248180705 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u53CC\u8272\u5A5A\u7EB1\u978B" + rect: + serializedVersion: 2 + x: 64 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45017f8f6837ba630800000000000000 + internalID: 3939369322605383764 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u5510\u88C5" + rect: + serializedVersion: 2 + x: 96 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 380b74435923352a0800000000000000 + internalID: -6749995800089612157 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u5F0F\u6076\u9B54\u5957\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 128 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94dd62f08684a1f80800000000000000 + internalID: -8135110165123375799 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u5F0F\u6076\u9B54\u5957\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 160 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf7ba2214c72ceb40800000000000000 + internalID: 5470791370420172795 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u5F0F\u6076\u9B54\u5957\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 192 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2334f9cf5edff1420800000000000000 + internalID: 2603078273871070002 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u5F0F\u6076\u9B54\u5957\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 224 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2fc8ce0fac41d520800000000000000 + internalID: 2725043564286889770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u5FCD\u8005\u5934\u53D1" + rect: + serializedVersion: 2 + x: 256 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 285691bec84eee380800000000000000 + internalID: -8939956916392991358 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u5FCD\u8005\u624B\u5957" + rect: + serializedVersion: 2 + x: 288 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54ece050dcfac6740800000000000000 + internalID: 5146681769265647173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u5FCD\u8005\u8863\u670D" + rect: + serializedVersion: 2 + x: 320 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 26b0ecfe7ffea4a40800000000000000 + internalID: 5353354955242474338 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u5FCD\u8005\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 352 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8dcadb15883e4d40800000000000000 + internalID: 5570451933453012366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u5FCD\u8005\u978B\u5B50" + rect: + serializedVersion: 2 + x: 384 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56358cbaa0dc79870800000000000000 + internalID: 8689639451750060901 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u65F6\u5C1A\u77ED\u88D9\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 416 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ddeef0a040d01e50800000000000000 + internalID: 6778146415190142421 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u65F6\u5C1A\u77ED\u88D9\u5E3D\u5B50" + rect: + serializedVersion: 2 + x: 448 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ef230f56f2db0eb0800000000000000 + internalID: -4752473026161594399 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u65F6\u5C1A\u77ED\u88D9\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 480 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78ea17b8bafd03880800000000000000 + internalID: -8633154557797355897 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u65F6\u5C1A\u77ED\u88D9\u978B\u5B50" + rect: + serializedVersion: 2 + x: 512 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 017b9b746fd9d67d0800000000000000 + internalID: -2923506902002714864 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u6697\u8272\u857E\u4E1D-\u62A4\u8155" + rect: + serializedVersion: 2 + x: 544 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f7b15569768160f0800000000000000 + internalID: -1125470575916894215 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u6697\u8272\u857E\u4E1D-\u8863\u670D" + rect: + serializedVersion: 2 + x: 576 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f5c0df082ea4e860800000000000000 + internalID: 7558357561721800179 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u6697\u8272\u857E\u4E1D-\u978B" + rect: + serializedVersion: 2 + x: 608 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6270ad58bca19d1f0800000000000000 + internalID: -1019754379196365018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u673A\u8F66\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 640 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f0624b5d0fa1c470800000000000000 + internalID: 8413198050805309680 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u673A\u8F66\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 672 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edafe69b3142389e0800000000000000 + internalID: -1620411773789209890 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u673A\u8F66\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 704 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac07e104e74482c70800000000000000 + internalID: 8946475968803795146 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u673A\u8F66\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 736 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43d6ab0fc9d3bb0e0800000000000000 + internalID: -2253139444305859276 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u6C34\u6676\u82AD\u857E-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 768 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad74f5d0241065c90800000000000000 + internalID: -7181551172591859750 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u6C34\u6676\u82AD\u857E-\u978B32" + rect: + serializedVersion: 2 + x: 800 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a434cf69c0db9760800000000000000 + internalID: 7465790370878862501 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u6D77\u7802-\u77ED\u88D9" + rect: + serializedVersion: 2 + x: 832 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 433bb32b239e6d000800000000000000 + internalID: 60492048963973940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u6D77\u7802-\u8863\u670D" + rect: + serializedVersion: 2 + x: 864 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b102c48d37f22cc0800000000000000 + internalID: -3737152897171717705 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u6D77\u7802-\u978B" + rect: + serializedVersion: 2 + x: 896 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c466acfccae824ed0800000000000000 + internalID: -2431223975954979252 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u7403\u978B" + rect: + serializedVersion: 2 + x: 928 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4846197d9ee8474a0800000000000000 + internalID: -6596490419195779964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u767D\u7403\u620E\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 960 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 834954b13e79baf60800000000000000 + internalID: 8046692160898438200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u767D\u7403\u620E\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 992 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11a6ba0d3695e5a00800000000000000 + internalID: 747132873427610129 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u767D\u7403\u620E\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1024 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10ad40e0cbfb433a0800000000000000 + internalID: -6686508732328388095 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u7687\u51A0" + rect: + serializedVersion: 2 + x: 1056 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a8fee12ffa080260800000000000000 + internalID: 7063908106432870562 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u795E\u793C\u8D5E" + rect: + serializedVersion: 2 + x: 1088 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e4c7d335c1c4b030800000000000000 + internalID: 3509643062350955747 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u8C79\u7EB9\u540A\u5E26\u88C5-\u5934\u53D132" + rect: + serializedVersion: 2 + x: 1120 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c4c1064b9f611eb0800000000000000 + internalID: -4750893419214027576 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u8C79\u7EB9\u540A\u5E26\u88C5-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 1152 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: acf01fb6712fc7140800000000000000 + internalID: 4718912691986567114 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u8C79\u7EB9\u540A\u5E26\u88C5-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 1184 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3888da127dcf328a0800000000000000 + internalID: -6330938650239596413 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u8C79\u7EB9\u540A\u5E26\u88C5-\u978B32" + rect: + serializedVersion: 2 + x: 1216 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f087f2f285335410800000000000000 + internalID: 1464573140363870453 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u8C79\u7EB9\u6BD4\u57FA\u5C3C\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1248 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9188ee5c552341d30800000000000000 + internalID: 4401198079822170137 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u8C79\u7EB9\u6BD4\u57FA\u5C3C\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 1280 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c7789326679a2690800000000000000 + internalID: -7626116554058860606 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u8C79\u7EB9\u6BD4\u57FA\u5C3C\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1312 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4a2c4c23435c8480800000000000000 + internalID: -8895643615992468916 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u8C79\u7EB9\u6BD4\u57FA\u5C3C\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1344 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 028a20a5df3342690800000000000000 + internalID: -7627914705628911584 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u95EA\u8000\u793C\u670D\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1376 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8c7f5135305b77e0800000000000000 + internalID: -1766730239420957554 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u95EA\u8000\u793C\u670D\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1408 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ecc8433dac92a2d40800000000000000 + internalID: 5560302641045867726 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u95EA\u8000\u793C\u670D\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1440 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4f4ab5eb1a593c90800000000000000 + internalID: -7189616254255476918 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5973\u95EA\u8000\u793C\u670D\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1472 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf87f01b16c162770800000000000000 + internalID: 8585580945536415995 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u597D\u4EBA\u5361" + rect: + serializedVersion: 2 + x: 1504 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8e9c8ef0710d53f0800000000000000 + internalID: -910569964840378740 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5982\u610F\u4F69" + rect: + serializedVersion: 2 + x: 1536 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12b3cbd3ba99844c0800000000000000 + internalID: -4303020483198305503 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5982\u610F\u5F13" + rect: + serializedVersion: 2 + x: 1568 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3bf5e53a5af13820800000000000000 + internalID: 2896371300734204734 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5982\u610F\u767D\u5899" + rect: + serializedVersion: 2 + x: 1600 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4962d956b4c0347b0800000000000000 + internalID: -5241332023362247020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5982\u610F\u767D\u6A90\u67F1" + rect: + serializedVersion: 2 + x: 1632 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ab57dabbbed098f0800000000000000 + internalID: -535683457782162521 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5982\u610F\u8170\u9970" + rect: + serializedVersion: 2 + x: 1664 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32f03550eeacfb9b0800000000000000 + internalID: -5062104332500791517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5982\u610F\u9E92\u9E9F" + rect: + serializedVersion: 2 + x: 1696 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32a14658eaf7272f0800000000000000 + internalID: -976577781647009245 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5982\u80F6\u4F3C\u6F06" + rect: + serializedVersion: 2 + x: 1728 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c914239d066a37e70800000000000000 + internalID: 9111809405991666076 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5982\u864E\u6DFB\u7FFC" + rect: + serializedVersion: 2 + x: 1760 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4cb1bbd4e1342f160800000000000000 + internalID: 7057777363475176388 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5982\u98CE\u4E4B\u4FE1" + rect: + serializedVersion: 2 + x: 1792 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5dda3976d7a6b2710800000000000000 + internalID: 1669545173712088533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5982\u98CE\u5251" + rect: + serializedVersion: 2 + x: 1824 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ed44ea0fd841b44e0800000000000000 + internalID: -1996479409947786018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5983\u7EA2\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 1856 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29ba899a8286b0f40800000000000000 + internalID: 5695760677593459602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996" + rect: + serializedVersion: 2 + x: 1888 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7469c87af1fc27400800000000000000 + internalID: 320546258358670919 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u517D\u5408\u4F53\u795E\u517D" + rect: + serializedVersion: 2 + x: 1920 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c53c9d50f0273350800000000000000 + internalID: 5996297645601863110 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u517D\u5927\u5E08" + rect: + serializedVersion: 2 + x: 1952 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b182a72c17255300800000000000000 + internalID: 240141157011718579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u517D\u5996\u864E" + rect: + serializedVersion: 2 + x: 1984 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9d1a9c6ea74d8a30800000000000000 + internalID: 4219107240387943836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u517D\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 2016 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7d908666ef1a05d0800000000000000 + internalID: -3095626719441150593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u517D\u65F6\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2048 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65b12b58a04adb170800000000000000 + internalID: 8195887261983841110 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u517D\u65F6\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2080 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4229bbebb6a4b4820800000000000000 + internalID: 2903496211392336420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u517D\u65F6\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2112 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d3e37ed5526598e70800000000000000 + internalID: 9117913639077494333 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u517D\u65F6\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2144 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a62b18f4b8450b2c0800000000000000 + internalID: -4417938277139369366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u517D\u661F\u76D8" + rect: + serializedVersion: 2 + x: 2176 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d9ef71fc4b3d6450800000000000000 + internalID: 6083583873302653395 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u517D\u708E\u9E20\u5750\u9A91" + rect: + serializedVersion: 2 + x: 2208 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3594119c313946ff0800000000000000 + internalID: -43748383179847341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u517D\u77F3\u6591\u9C7C" + rect: + serializedVersion: 2 + x: 2240 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2a61e08629ae1b70800000000000000 + internalID: 8871714298802563628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u517D\u98DE\u602A" + rect: + serializedVersion: 2 + x: 2272 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50074421533cff110800000000000000 + internalID: 1296969850413150213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u517D\u98DE\u873B\u9F99" + rect: + serializedVersion: 2 + x: 2304 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3584d5fcd5c0c57d0800000000000000 + internalID: -2928452060647176109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u51A5\u866B\u5361\u72471" + rect: + serializedVersion: 2 + x: 2336 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7cb12fe5fdd464c70800000000000000 + internalID: 8954930530838780871 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u51A5\u866B\u5361\u72472" + rect: + serializedVersion: 2 + x: 2368 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 141954331f7042b40800000000000000 + internalID: 5414461384534888769 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u51A5\u866B\u5361\u72473" + rect: + serializedVersion: 2 + x: 2400 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6aa781bd9ffa11bc0800000000000000 + internalID: -3814073921748567386 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u51A5\u866B\u5361\u72474" + rect: + serializedVersion: 2 + x: 2432 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 592fa9cea6f896420800000000000000 + internalID: 2623785947318907541 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u51A5\u866B\u5361\u72475" + rect: + serializedVersion: 2 + x: 2464 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79275fe5e29648b50800000000000000 + internalID: 6594511402259804823 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u51A5\u866B\u5361\u72476" + rect: + serializedVersion: 2 + x: 2496 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c129605ca21cd050800000000000000 + internalID: 5826552549203321288 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u51A5\u866B\u5361\u72477" + rect: + serializedVersion: 2 + x: 2528 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f87efe1d59c562120800000000000000 + internalID: 2388698450908669839 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u51A5\u866B\u5361\u72478" + rect: + serializedVersion: 2 + x: 2560 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ab9712500eb8d1e0800000000000000 + internalID: -2172777911619707997 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u62A4\u62A4\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 2592 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97dd0a3ae5cf3a520800000000000000 + internalID: 2712288884009524601 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u62A4\u9B54\u529B\u7B26" + rect: + serializedVersion: 2 + x: 2624 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ccd36336fdec3f80800000000000000 + internalID: -8125357986003297081 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF13b\u5996\u517D\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2656 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd597684f11956f30800000000000000 + internalID: 4568216960581998047 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF13b\u5996\u517D\u804C\u4E1A\u88C5\u62A4\u624B" + rect: + serializedVersion: 2 + x: 2688 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 93d2eb6a330732d40800000000000000 + internalID: 5558409732248448313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF13b\u5996\u517D\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2720 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2238214c528169500800000000000000 + internalID: 402535767178642210 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF13b\u5996\u517D\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2752 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fdbda2d788820a180800000000000000 + internalID: -9106233879862518817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF13b\u5996\u7CBE\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2784 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0b779e361d7fe510800000000000000 + internalID: 1580619528723200781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF13b\u5996\u7CBE\u804C\u4E1A\u88C5\u62A4\u624B" + rect: + serializedVersion: 2 + x: 2816 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee71c3075fc09d160800000000000000 + internalID: 7050680939914729454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF13b\u5996\u7CBE\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2848 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ae7b8ff577b9ed80800000000000000 + internalID: -8220837927361741145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF13b\u5996\u7CBE\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2880 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e65aae8f2d5a409d0800000000000000 + internalID: -2808937942034504338 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u591C\u67AD\u63A2\u9669\u5BB6" + rect: + serializedVersion: 2 + x: 2912 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d86e0d3d94fcaf2d0800000000000000 + internalID: -3244052665573775731 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u597313a\u5996\u7CBE\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2944 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 35655b8a536d14b60800000000000000 + internalID: 7728693961496548947 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u597313a\u5996\u7CBE\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2976 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45e001b87989d0f70800000000000000 + internalID: 9155141394154655316 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u597313a\u5996\u7CBE\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3008 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 786250fef80230bc0800000000000000 + internalID: -3818172256517544313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u597313a\u5996\u7CBE\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3040 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 467cc4a50b8248180800000000000000 + internalID: -9114115007996704924 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u5973\u5996\u7CBE\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3072 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4eed671250e3b54f0800000000000000 + internalID: -839008713817268508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u5973\u5996\u7CBE\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3104 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee82c005bb6869cf0800000000000000 + internalID: -245860990585132818 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u5973\u5996\u7CBE\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3136 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7914231bc28b4b0e0800000000000000 + internalID: -2254975011314843241 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u5973\u5996\u7CBE\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3168 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb90a4c81172fb040800000000000000 + internalID: 4665490695300712894 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u753713a\u5996\u517D\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3200 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5a745562e1c7d700800000000000000 + internalID: 565133456365091420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u753713a\u5996\u517D\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3232 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bcca0cacfa907e50800000000000000 + internalID: 6805109446965644468 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u753713a\u5996\u517D\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3264 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4c6e301a5a153f40800000000000000 + internalID: 5707497076883876938 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u753713a\u5996\u517D\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3296 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9ae48efd9fa73380800000000000000 + internalID: -8991525037907055971 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u7537\u5996\u517D\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3328 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c877e9cf74c6d3d0800000000000000 + internalID: -3182140033563395899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u7537\u5996\u517D\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3360 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0303fec9910df9dc0800000000000000 + internalID: -3629953966211649488 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u7537\u5996\u517D\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3392 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 846ea1a5b378412d0800000000000000 + internalID: -3308871137225939384 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u7537\u5996\u517D\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3424 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4b13dc69fc4b7710800000000000000 + internalID: 1692030719164095308 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u795E\u9E64" + rect: + serializedVersion: 2 + x: 3456 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 931b7ec9c58939780800000000000000 + internalID: -8677424533475970759 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u8377\u82B1\u98DE\u884C\u5668" + rect: + serializedVersion: 2 + x: 3488 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8cb4a816b44edda0800000000000000 + internalID: -5918217311430067060 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u873B\u8713\u98DE\u884C\u5668" + rect: + serializedVersion: 2 + x: 3520 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55954955418d70d70800000000000000 + internalID: 9009407161424697685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u65CF\u9EC4\u8702" + rect: + serializedVersion: 2 + x: 3552 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 675f545c6d1862110800000000000000 + internalID: 1235817907192460662 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u725B\u89D2" + rect: + serializedVersion: 2 + x: 3584 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf74786055d5efb30800000000000000 + internalID: 4322995312085387260 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u7CBE\u5927\u5E08" + rect: + serializedVersion: 2 + x: 3616 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f39fef9e303c28e0800000000000000 + internalID: -1716944312405617680 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u7CBE\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 3648 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eed8d277a419ada00800000000000000 + internalID: 782097234315283950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5996\u7CBE\u661F\u76D8" + rect: + serializedVersion: 2 + x: 3680 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2a2f40947e5de770800000000000000 + internalID: 8641667114724174378 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5999\u8BA1\u9526\u56CA" + rect: + serializedVersion: 2 + x: 3712 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49ec09dec8dd7ce90800000000000000 + internalID: -7005387098000666988 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u59A9\u5A9A\u5A18\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3744 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5a8a56a32b1656b0800000000000000 + internalID: -5308025270880794019 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u59A9\u5A9A\u5A18\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3776 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46026c5c19ee50dd0800000000000000 + internalID: -2520346106588159900 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u59A9\u5A9A\u5A18\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3808 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c539911f57e99ed70800000000000000 + internalID: 9072957153707922268 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u59DC\u5C0F\u864E-\u5305\u88F9" + rect: + serializedVersion: 2 + x: 3840 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 004ea4ba068be8d00800000000000000 + internalID: 976920894516159488 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u59DC\u5C0F\u864E_\u5305\u88F9\u8868\u60C5" + rect: + serializedVersion: 2 + x: 3872 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 15e6e06229af5d880800000000000000 + internalID: -8586681608901333423 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u59DC\u5C0F\u864E\u5BA0\u7269" + rect: + serializedVersion: 2 + x: 3904 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b999c5b6234ad970800000000000000 + internalID: 8780404257049909685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A01\u51DB\u6597\u7BF7" + rect: + serializedVersion: 2 + x: 3936 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 794cc0756688c8b60800000000000000 + internalID: 7749719031926277271 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A36\u6211\u5427" + rect: + serializedVersion: 2 + x: 3968 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9954a9bc7d4fe2020800000000000000 + internalID: 2319060065813415321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A46\u7F57\u5B50" + rect: + serializedVersion: 2 + x: 4000 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e494d2efc8a32260800000000000000 + internalID: 7071681450719089889 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u5E86\u559C\u5E16" + rect: + serializedVersion: 2 + x: 4032 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3638704ebb8d9400800000000000000 + internalID: 332575596736951871 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u5E86\u86CB\u7CD5" + rect: + serializedVersion: 2 + x: 4064 + y: 3328 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e257abb8598831340800000000000000 + internalID: 4833357000974431534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u5E86\u9999\u69DF" + rect: + serializedVersion: 2 + x: 0 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9395234fbf323e00800000000000000 + internalID: 1022950156064363421 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u6212\u5973" + rect: + serializedVersion: 2 + x: 32 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da87970bdf2bccad0800000000000000 + internalID: -2680570875535066963 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u6212\u7537" + rect: + serializedVersion: 2 + x: 64 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 15a8e34217086aae0800000000000000 + internalID: -1538400999272707503 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u5C0F\u7CBE\u7075" + rect: + serializedVersion: 2 + x: 96 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 722ddf9aa471017c0800000000000000 + internalID: -4102753651087519193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u670D\u88C5\u539F\u8272\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 128 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e9be8e6c039e7c660800000000000000 + internalID: 7406144507938925470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u670D\u88C5\u539F\u8272\u5973\u5934\u9970" + rect: + serializedVersion: 2 + x: 160 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ef53294c5df65f90800000000000000 + internalID: -6965101200876019741 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u670D\u88C5\u539F\u8272\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 192 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ffb61ccfd91758ef0800000000000000 + internalID: -106554092808999937 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u670D\u88C5\u539F\u8272\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 224 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4200e08f7d03d90d0800000000000000 + internalID: -3414519238339198940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u670D\u88C5\u539F\u8272\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 256 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0f22671eaa66a2a0800000000000000 + internalID: -6726571697482092787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u670D\u88C5\u53D8\u8272\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 288 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45f2d9364abc4fbe0800000000000000 + internalID: -1444305673572765868 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u670D\u88C5\u53D8\u8272\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 320 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6210181121996840800000000000000 + internalID: 5217861214609085036 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u670D\u88C5\u53D8\u8272\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 352 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 675eedcbc4f0a6330800000000000000 + internalID: 3704790465726309750 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u670D\u88C5\u53D8\u8272\u7537\u5934\u9970" + rect: + serializedVersion: 2 + x: 384 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92c41c10660eab330800000000000000 + internalID: 3727538370323237929 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u670D\u88C5\u53D8\u8272\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 416 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b7e0e10fb92d47410800000000000000 + internalID: 1474034545247260283 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 448 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9a93c10ff3b6a50b0800000000000000 + internalID: -5739156852774782551 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u7537\u8863\u670D" + rect: + serializedVersion: 2 + x: 480 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db22c769f18285800800000000000000 + internalID: 601274666387776189 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 512 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df570fc7ebde2c260800000000000000 + internalID: 7116511763594507773 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 544 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c578e3685fa5e5a0800000000000000 + internalID: -6492590493616540222 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u793C\u8BF7\u67EC" + rect: + serializedVersion: 2 + x: 576 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 252e45c4ba139c350800000000000000 + internalID: 6037411387256660562 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u7EB1" + rect: + serializedVersion: 2 + x: 608 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cb9dbbda6892e4590800000000000000 + internalID: -7688161855457732164 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u7EB1\u624B\u5957" + rect: + serializedVersion: 2 + x: 640 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1abb827356bde76b0800000000000000 + internalID: -5296554883977528415 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5A5A\u7EB1\u978B\u5B50" + rect: + serializedVersion: 2 + x: 672 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bcb7b5d1191ad8750800000000000000 + internalID: 6308876297650797515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5AC1\u7ED9\u6211\u5427" + rect: + serializedVersion: 2 + x: 704 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 832ec4602b4a863e0800000000000000 + internalID: -2060215745005166024 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5AE3\u7EA2\u8272\u67D3\u8272\u5242" + rect: + serializedVersion: 2 + x: 736 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 679c717a5f48422f0800000000000000 + internalID: -998527026764199562 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B50" + rect: + serializedVersion: 2 + x: 768 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e02075f905e6e4390800000000000000 + internalID: -7832201409400995314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B50\u5348\u53C2" + rect: + serializedVersion: 2 + x: 800 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87b3c74d425fc67d0800000000000000 + internalID: -2923692519537755272 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B50\u5F39\u888B" + rect: + serializedVersion: 2 + x: 832 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a31429e80d9724e0800000000000000 + internalID: -2006462447373511768 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B50\u6BCD\u5251" + rect: + serializedVersion: 2 + x: 864 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d88b8f5500b29f00800000000000000 + internalID: 1122152794292979922 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B50\u6BCD\u79BB\u9B42\u9556" + rect: + serializedVersion: 2 + x: 896 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dcd73846534994340800000000000000 + internalID: 4848569430881566157 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B54\u96C0\u77F3\u94FE\u5B50" + rect: + serializedVersion: 2 + x: 928 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3919ab68d2c830ea0800000000000000 + internalID: -5907724159018167917 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B57\u724C" + rect: + serializedVersion: 2 + x: 960 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e9f0a73ec9af148e0800000000000000 + internalID: -1710810831685808226 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B5F\u5A46\u6C64" + rect: + serializedVersion: 2 + x: 992 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e08d9a2695ea34580800000000000000 + internalID: -8844033544294901746 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B64\u7A79\u5251" + rect: + serializedVersion: 2 + x: 1024 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 93e8eea196e1e0c60800000000000000 + internalID: 7786194242542407225 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B81\u7D20\u77F3\u67F1" + rect: + serializedVersion: 2 + x: 1056 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 580a75fdd21346e10800000000000000 + internalID: 2189929391899254917 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B81\u7D20\u94C1\u5899" + rect: + serializedVersion: 2 + x: 1088 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0fb83e96405e93f20800000000000000 + internalID: 3403002800574270448 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B81\u7D20\u94C1\u95E8" + rect: + serializedVersion: 2 + x: 1120 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88010736dc3424b90800000000000000 + internalID: -7259165099952172920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B81\u8299\u77F3\u67F1" + rect: + serializedVersion: 2 + x: 1152 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ade9f57df873c9650800000000000000 + internalID: 6240924274561883866 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B81\u8299\u94C1\u5899" + rect: + serializedVersion: 2 + x: 1184 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52f5490d6076ceaf0800000000000000 + internalID: -365804190757003483 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B81\u8299\u94C1\u95E8" + rect: + serializedVersion: 2 + x: 1216 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8ceb6211736f9f30800000000000000 + internalID: 4584492282977971342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B88\u62A4\u6218\u7532" + rect: + serializedVersion: 2 + x: 1248 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cdd7a752005704610800000000000000 + internalID: 1603410110833130972 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B88\u62A4\u6597\u7BF7" + rect: + serializedVersion: 2 + x: 1280 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5598d4bb78359a8e0800000000000000 + internalID: -1681721143418058411 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B88\u62A4\u817F\u7532" + rect: + serializedVersion: 2 + x: 1312 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c364137db16a8c00800000000000000 + internalID: 903642141548635076 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B88\u62A4\u8896\u7532" + rect: + serializedVersion: 2 + x: 1344 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9922beecb4c5b7b90800000000000000 + internalID: -7243094095031491943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B88\u62A4\u9774" + rect: + serializedVersion: 2 + x: 1376 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 05b5d891645129d70800000000000000 + internalID: 9048317992161336144 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B89\u6D4E\u548C\u6625\u6865" + rect: + serializedVersion: 2 + x: 1408 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea9bbaefa2cb572f0800000000000000 + internalID: -975666851408528978 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C" + rect: + serializedVersion: 2 + x: 1440 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8de0fcca532c8f40800000000000000 + internalID: 5731995298628169103 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u6574\u7684\u624B\u673A\u5546\u5238" + rect: + serializedVersion: 2 + x: 1472 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9a9c13e053be9d90800000000000000 + internalID: -7089031603445523809 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u6574\u7684\u76AE\u56CA" + rect: + serializedVersion: 2 + x: 1504 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0d3dca3976f1db30800000000000000 + internalID: 4310497318908280077 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u6574\u864E\u7B26" + rect: + serializedVersion: 2 + x: 1536 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79c85022f5a2a9a70800000000000000 + internalID: 8834420207121697943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u74A7" + rect: + serializedVersion: 2 + x: 1568 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a61630051b7c1d4a0800000000000000 + internalID: -6570250816991305366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u74A7\u5305" + rect: + serializedVersion: 2 + x: 1600 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2646c489f3804ffe0800000000000000 + internalID: -1156290135096269726 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u74A7\u7684\u788E\u7247" + rect: + serializedVersion: 2 + x: 1632 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dfe5445b02b29f810800000000000000 + internalID: 1799516945591328509 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E_\u4E94\u94E2\u94B1" + rect: + serializedVersion: 2 + x: 1664 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb66f9973b742d630800000000000000 + internalID: 3950298659322554046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u4E0A\u4E0A\u7B7E" + rect: + serializedVersion: 2 + x: 1696 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de201a984d489d890800000000000000 + internalID: -7432763661621329171 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u4E0A\u4E0A\u7B7E\u53D8\u8272" + rect: + serializedVersion: 2 + x: 1728 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c69f004468cf59060800000000000000 + internalID: 6959746452767701356 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u4E0A\u4E0A\u7B7E\u5F69\u7968\u7528\u5C0F" + rect: + serializedVersion: 2 + x: 1760 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc7f3b0671bddc9c0800000000000000 + internalID: -3905224408407214132 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u4E0A\u7B7E" + rect: + serializedVersion: 2 + x: 1792 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d48b07f745c7a390800000000000000 + internalID: -7807054516145388335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u4E16\u754C" + rect: + serializedVersion: 2 + x: 1824 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21eb544b4203fcc30800000000000000 + internalID: 4381773896656207378 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u4F0F\u6CE2\u5E01" + rect: + serializedVersion: 2 + x: 1856 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c99aec8441df1c70800000000000000 + internalID: 8944097477333260741 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u519B\u5907\u7BB1" + rect: + serializedVersion: 2 + x: 1888 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1754182916d485a0800000000000000 + internalID: -6519850956990687462 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u519B\u7AE01" + rect: + serializedVersion: 2 + x: 1920 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8336fff6005879990800000000000000 + internalID: -7379283227497766088 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u519B\u7AE02" + rect: + serializedVersion: 2 + x: 1952 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59fb5b9d4afcd7e20800000000000000 + internalID: 3350062004767670165 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u519B\u7AE03" + rect: + serializedVersion: 2 + x: 1984 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7dcf25b464be0cf70800000000000000 + internalID: 9205616325489261783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u53F7\u89D2" + rect: + serializedVersion: 2 + x: 2016 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 821e3bd0152017650800000000000000 + internalID: 6228762306775605544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u540A\u5E26\u88C5\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 2048 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3108d34eb5235700800000000000000 + internalID: 527807080444723518 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u540A\u5E26\u88C5\u5973\u88C5" + rect: + serializedVersion: 2 + x: 2080 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d8bb3c4e1fe704e0800000000000000 + internalID: -2015379394817967920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u540A\u5E26\u88C5\u5973\u88E4" + rect: + serializedVersion: 2 + x: 2112 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67ac47f2f9a1e17f0800000000000000 + internalID: -640044826041726346 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u540A\u5E26\u88C5\u5973\u978B" + rect: + serializedVersion: 2 + x: 2144 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8b4b301d5a043c10800000000000000 + internalID: 2032260726671494029 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u548C\u670D\u5973\u5C0F" + rect: + serializedVersion: 2 + x: 2176 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: affa1f21c64d99320800000000000000 + internalID: 2565315023403593722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u548C\u670D\u5973\u978B" + rect: + serializedVersion: 2 + x: 2208 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: efa4b216b67d76e50800000000000000 + internalID: 6802642618358123262 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u548C\u670D\u7537\u5C0F" + rect: + serializedVersion: 2 + x: 2240 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf4bb1812ec856880800000000000000 + internalID: -8618327409208609540 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u548C\u670D\u7537\u978B" + rect: + serializedVersion: 2 + x: 2272 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9637122d092b1870800000000000000 + internalID: 8654556245305800347 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u5510\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2304 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ddb10e6fbf1e07420800000000000000 + internalID: 2625847055051922397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u5510\u88C5\u5973\u88D9" + rect: + serializedVersion: 2 + x: 2336 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 085876a25a5813280800000000000000 + internalID: -9065317630492572288 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u5510\u88C5\u5973\u978B" + rect: + serializedVersion: 2 + x: 2368 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46db7711d542f2010800000000000000 + internalID: 1166190810655866212 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u5510\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2400 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79066e73fac5b2c80800000000000000 + internalID: -8346475576774205289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u5510\u88C5\u7537\u88E4" + rect: + serializedVersion: 2 + x: 2432 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f413d51766b9305f0800000000000000 + internalID: -791618245196172977 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u5510\u88C5\u7537\u978B" + rect: + serializedVersion: 2 + x: 2464 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0421d38397d341a0800000000000000 + internalID: -6826375581591854065 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u590F\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2496 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 933c1c8ea10f09ac0800000000000000 + internalID: -3850313683036945607 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u590F\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2528 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cce8560153199b370800000000000000 + internalID: 8338855842147569356 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u590F\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2560 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 66e1c3987d4f30430800000000000000 + internalID: 3748108521459949158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u5927\u793C\u53051" + rect: + serializedVersion: 2 + x: 2592 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 825f2586da684cfa0800000000000000 + internalID: -5781347942299142872 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u5927\u793C\u53052" + rect: + serializedVersion: 2 + x: 2624 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e6fce92bbc372fe0800000000000000 + internalID: -1213934799993112857 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u5927\u793C\u53053" + rect: + serializedVersion: 2 + x: 2656 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 480f8ec7b5a738530800000000000000 + internalID: 3856060239315529860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u5927\u793C\u53054" + rect: + serializedVersion: 2 + x: 2688 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5bab3da362f726ed0800000000000000 + internalID: -2422233847399466315 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u5927\u793C\u53055" + rect: + serializedVersion: 2 + x: 2720 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48c83c3599b40dda0800000000000000 + internalID: -5922150388084798332 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u5927\u793C\u53056" + rect: + serializedVersion: 2 + x: 2752 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b31434fdbeb15790800000000000000 + internalID: -7543038177813720143 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u5927\u793C\u53057" + rect: + serializedVersion: 2 + x: 2784 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c75e129754627100800000000000000 + internalID: 104256068659337161 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u5927\u793C\u53058" + rect: + serializedVersion: 2 + x: 2816 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6dcbd998b87d39d80800000000000000 + internalID: -8245009498476004138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u62C9\u62C9\u961F\u5973" + rect: + serializedVersion: 2 + x: 2848 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d27f11fec27eefb40800000000000000 + internalID: 5476068377104611117 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u62C9\u62C9\u961F\u5973\u978B" + rect: + serializedVersion: 2 + x: 2880 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bfd124e91115e9b90800000000000000 + internalID: -7233254815399010821 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u6C34\u997A" + rect: + serializedVersion: 2 + x: 2912 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ff6efe049e895cb0800000000000000 + internalID: -4874708355093991438 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u6D41\u94F6\u5E01" + rect: + serializedVersion: 2 + x: 2944 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75fd35be6255f1fb0800000000000000 + internalID: -4674924262542024873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u72FC\u517D" + rect: + serializedVersion: 2 + x: 2976 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad546e21e40087c10800000000000000 + internalID: 2051389965591791066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u76AE\u88C5\u5973\u4E0A" + rect: + serializedVersion: 2 + x: 3008 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ad5fa900c9778fe0800000000000000 + internalID: -1186846111085666906 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u76AE\u88C5\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 3040 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0e60cd22097794c0800000000000000 + internalID: -4280819870527885811 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u76AE\u88C5\u5973\u88D9" + rect: + serializedVersion: 2 + x: 3072 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 572dc5085fc9c7630800000000000000 + internalID: 3926185553394717301 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u76AE\u88C5\u5973\u978B" + rect: + serializedVersion: 2 + x: 3104 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f5d6622db500c4430800000000000000 + internalID: 3768387382570020191 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u76AE\u88C5\u7537\u4E0A" + rect: + serializedVersion: 2 + x: 3136 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4e56b769d1f5af80800000000000000 + internalID: -8095798839078396341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u76AE\u88C5\u7537\u88E4" + rect: + serializedVersion: 2 + x: 3168 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49ca5fbf081831080800000000000000 + internalID: -9217881621314294636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u76AE\u88C5\u7537\u978B" + rect: + serializedVersion: 2 + x: 3200 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 193db6718f288e920800000000000000 + internalID: 3019807552208360337 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u77F3" + rect: + serializedVersion: 2 + x: 3232 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e77fab4d08a928b0800000000000000 + internalID: -5176421521627842592 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u795E\u6C14\u4E38" + rect: + serializedVersion: 2 + x: 3264 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 613ece5de5e094990800000000000000 + internalID: -7401368712127913194 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u7CBD\u5B50" + rect: + serializedVersion: 2 + x: 3296 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c6b0a5c2aa621410800000000000000 + internalID: 1446335677672240840 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u7CBD\u5B502" + rect: + serializedVersion: 2 + x: 3328 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 944734144ca84a280800000000000000 + internalID: -9032942377085209527 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u7CBD\u5B503" + rect: + serializedVersion: 2 + x: 3360 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0bfafbc816e48ec80800000000000000 + internalID: -8293292532922601552 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u91D1\u521B\u836F" + rect: + serializedVersion: 2 + x: 3392 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11ab4b1551aa298e0800000000000000 + internalID: -1688099901768680943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u94F6\u7968" + rect: + serializedVersion: 2 + x: 3424 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a2196521c5f34d70800000000000000 + internalID: 9026328288085742248 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u9ED1\u793C\u670D\u5973" + rect: + serializedVersion: 2 + x: 3456 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 73405822df6da57a0800000000000000 + internalID: -6387556738777414601 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u9ED1\u793C\u670D\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 3488 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79d1685ab369d0400800000000000000 + internalID: 292054733773217175 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B8C\u7F8E\u9ED1\u793C\u670D\u5973\u624B\u978B" + rect: + serializedVersion: 2 + x: 3520 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec09da84fd61d5b40800000000000000 + internalID: 5430521873931538638 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B97\u5E08\u4E4B\u8BED" + rect: + serializedVersion: 2 + x: 3552 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f6856fe5623479ad0800000000000000 + internalID: -2695612019876931473 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B9A\u5149\u62F3\u5957" + rect: + serializedVersion: 2 + x: 3584 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c27a896350077a9f0800000000000000 + internalID: -457273669461694676 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B9A\u6D77\u957F\u9524" + rect: + serializedVersion: 2 + x: 3616 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b566059617afc560800000000000000 + internalID: 7336266033441170866 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B9A\u7075\u7B26" + rect: + serializedVersion: 2 + x: 3648 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6eff79085932e00c0800000000000000 + internalID: -4607706243738894362 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B9A\u795E\u7B26" + rect: + serializedVersion: 2 + x: 3680 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ad35af1b85e56e80800000000000000 + internalID: -8185884361981870681 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B9A\u97F3\u957F\u9524" + rect: + serializedVersion: 2 + x: 3712 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c1201975ebffb7e0800000000000000 + internalID: -1747401167399280191 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B9A\u9B42\u4E38" + rect: + serializedVersion: 2 + x: 3744 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4ff7c0526c09b990800000000000000 + internalID: -7369845698813493427 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B9D\u56FE\u6B8B\u9875" + rect: + serializedVersion: 2 + x: 3776 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6eb980e7ea8a77e50800000000000000 + internalID: 6807094829186063334 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B9D\u56FE\u788E\u7247" + rect: + serializedVersion: 2 + x: 3808 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33f20176f5bc879a0800000000000000 + internalID: -6235010073483006157 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B9D\u7269\u5377\u8F74" + rect: + serializedVersion: 2 + x: 3840 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a793c88859704be0800000000000000 + internalID: -1495061655128402008 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B9D\u84DD\u8D21\u591A\u62C9" + rect: + serializedVersion: 2 + x: 3872 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3bfdf86d06e03e0d0800000000000000 + internalID: -3394853885027819597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5B9E\u60E0\u793C\u5305" + rect: + serializedVersion: 2 + x: 3904 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3180137af6b212300800000000000000 + internalID: 225509214891608083 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA0\u7269\u7B3C" + rect: + serializedVersion: 2 + x: 3936 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8f362d14ca71d740800000000000000 + internalID: 5175052429546635148 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA0\u7269\u86CB" + rect: + serializedVersion: 2 + x: 3968 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 413c0c16106336b10800000000000000 + internalID: 1973480441281299220 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA0\u7269\u9ED8\u8BA4" + rect: + serializedVersion: 2 + x: 4000 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9ffea34e89f9b580800000000000000 + internalID: -8810736806557450340 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA0\u7269\u9F9F" + rect: + serializedVersion: 2 + x: 4032 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 217c06ddcd7c32280800000000000000 + internalID: -9069185473173207278 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA3\u4F20\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 4064 + y: 3296 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1e2b936b6ed3f4f0800000000000000 + internalID: -796048156300464613 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA3\u4F20\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 0 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ccf259e99484c5d0800000000000000 + internalID: -3043161651616219967 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA3\u4F20\u5973\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 32 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 759e9c9653c2dd4c0800000000000000 + internalID: -4261201064502892201 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA3\u4F20\u5973\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 64 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c896d060ed8b4e370800000000000000 + internalID: 8351002872775534988 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA3\u4F20\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 96 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d38204d705c8c8d0800000000000000 + internalID: -2825792128762608684 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA3\u4F20\u65F6\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 128 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74f9dd6f5ee461d80800000000000000 + internalID: -8280344115277881529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA3\u4F20\u65F6\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 160 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 893b8bf5b1cadf2f0800000000000000 + internalID: -937403913853160552 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA3\u4F20\u65F6\u88C5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 192 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ffefc7899eb0be20800000000000000 + internalID: 3364398488263585782 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA3\u4F20\u65F6\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 224 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8135ab8dba5a7b190800000000000000 + internalID: -7946700859977870568 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA3\u4F20\u65F6\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 256 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b4c1b08caff430c0800000000000000 + internalID: -4596768203279842125 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BA3\u82B1\u65A7" + rect: + serializedVersion: 2 + x: 288 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd95cb0f13119d3a0800000000000000 + internalID: -6640257269391140389 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BAB\u5EF7\u5E03\u827A\u7ACB\u706F" + rect: + serializedVersion: 2 + x: 320 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f9a174da2cda8310800000000000000 + internalID: 1408179910017657328 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u4F20\u5B9D\u4F69" + rect: + serializedVersion: 2 + x: 352 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b9be3ba9e1dbf7c0800000000000000 + internalID: -4036401839476917838 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u548C\u4E07\u4E8B\u5174" + rect: + serializedVersion: 2 + x: 384 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69e80cc4102e4cbf0800000000000000 + internalID: -304870379543818602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u4E66\u6CD5\u88C5\u9970\u6A2A" + rect: + serializedVersion: 2 + x: 416 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1dfa20b0f660e360800000000000000 + internalID: 7196865388471844126 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u4EBA\u53C2\u679C" + rect: + serializedVersion: 2 + x: 448 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7cbebfcd815c55df0800000000000000 + internalID: -192030698515993657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u4EBA\u53C2\u679C\u79CD\u5B50" + rect: + serializedVersion: 2 + x: 480 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 784b0e57c5a92e010800000000000000 + internalID: 1216704571248784519 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u5154\u5B50" + rect: + serializedVersion: 2 + x: 512 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4009d78f29cfccd0800000000000000 + internalID: -2535586859206508468 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u5154\u5B50\u5E7C\u5D3D" + rect: + serializedVersion: 2 + x: 544 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cfa3e735bdc176120800000000000000 + internalID: 2406924254177016572 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u5357\u74DC" + rect: + serializedVersion: 2 + x: 576 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 64187255f21348cc0800000000000000 + internalID: -3709786113684569786 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u5357\u74DC\u79CD\u5B50" + rect: + serializedVersion: 2 + x: 608 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c217d795b4187d50800000000000000 + internalID: 6735156012901667522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u56FD\u753B\u6A2A" + rect: + serializedVersion: 2 + x: 640 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 779c4d04ae4cf79e0800000000000000 + internalID: -1621360830441010825 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u56FD\u753B\u7AD6" + rect: + serializedVersion: 2 + x: 672 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51bf48f82493ec510800000000000000 + internalID: 1571256278037363477 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u5976\u725B" + rect: + serializedVersion: 2 + x: 704 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43256dceeba0109d0800000000000000 + internalID: -2809952877368946124 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u5976\u725B\u5E7C\u5D3D" + rect: + serializedVersion: 2 + x: 736 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d9e2bb3bd4984f80800000000000000 + internalID: -8122078258642359854 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u5BF9\u8054" + rect: + serializedVersion: 2 + x: 768 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d05e1691b05639f0800000000000000 + internalID: -489114785865117481 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u5C0F\u9EA6" + rect: + serializedVersion: 2 + x: 800 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fca76d18ff0e59e40800000000000000 + internalID: 5662679494487866063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u5C0F\u9EA6\u79CD\u5B50" + rect: + serializedVersion: 2 + x: 832 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98ef052799b6b5920800000000000000 + internalID: 2980093885227794057 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u5C71\u4F53" + rect: + serializedVersion: 2 + x: 864 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 244ff018c3fe80880800000000000000 + internalID: -8644396441595284414 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u5C71\u7F8A" + rect: + serializedVersion: 2 + x: 896 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 127d3fb0a3d740070800000000000000 + internalID: 8071714120416876321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u5C71\u7F8A\u5E7C\u5D3D" + rect: + serializedVersion: 2 + x: 928 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 17a12ac001ec2a330800000000000000 + internalID: 3720762810488199793 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u5C71\u9E21" + rect: + serializedVersion: 2 + x: 960 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ac12f13d9f8bdcf0800000000000000 + internalID: -226429450941490016 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u5C71\u9E21\u5E7C\u5D3D" + rect: + serializedVersion: 2 + x: 992 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cb49817e6ed4e3ec0800000000000000 + internalID: -3585342599225371460 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u6247\u5F62\u5899\u9970" + rect: + serializedVersion: 2 + x: 1024 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8445033614382040800000000000000 + internalID: 4623002287445722252 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u6843\u91D1\u5A18" + rect: + serializedVersion: 2 + x: 1056 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27488ed0ad28de710800000000000000 + internalID: 1724178105400591474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u6843\u91D1\u5A18\u79CD\u5B50" + rect: + serializedVersion: 2 + x: 1088 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8cb1dd25f7d19c20800000000000000 + internalID: 3211585457327553676 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u732A" + rect: + serializedVersion: 2 + x: 1120 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 669a76aa4067874d0800000000000000 + internalID: -3136627378052683418 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u732A\u5E7C\u5D3D" + rect: + serializedVersion: 2 + x: 1152 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9deffbbab58d2290800000000000000 + internalID: -7913521933155570276 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u805A\u5B9D\u76C6" + rect: + serializedVersion: 2 + x: 1184 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88a62d0b0a184cfb0800000000000000 + internalID: -4628431989868696952 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u8377\u82B1" + rect: + serializedVersion: 2 + x: 1216 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84210e07975687810800000000000000 + internalID: 1763270826374730312 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u83B2\u96FE" + rect: + serializedVersion: 2 + x: 1248 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ac12d9619d59bd00800000000000000 + internalID: 988924472311553186 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u83B2\u96FE\u79CD\u5B50" + rect: + serializedVersion: 2 + x: 1280 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8eadf9700c320f70800000000000000 + internalID: 9151943365514604173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u8FA3\u6912" + rect: + serializedVersion: 2 + x: 1312 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59439e9fcc971e9b0800000000000000 + internalID: -5052623385659886443 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u8FA3\u6912\u79CD\u5B50" + rect: + serializedVersion: 2 + x: 1344 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da8762d9947518fa0800000000000000 + internalID: -5800258871395714899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u914D\u65B9\u5377\u8F74\u4E2D\u7EA7" + rect: + serializedVersion: 2 + x: 1376 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 817d28fac23ffe780800000000000000 + internalID: -8651428985906735336 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u914D\u65B9\u5377\u8F74\u521D\u7EA7" + rect: + serializedVersion: 2 + x: 1408 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82bc94f04393fe010800000000000000 + internalID: 1220256919798270760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u914D\u65B9\u5377\u8F74\u9AD8\u7EA7" + rect: + serializedVersion: 2 + x: 1440 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e08718cace62b6090800000000000000 + internalID: -8040289911791585266 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u914D\u65B9\u901A\u5173\u6587\u7252\u4E2D\u7EA7" + rect: + serializedVersion: 2 + x: 1472 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 624ed1128d2536e20800000000000000 + internalID: 3342606436661060646 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u914D\u65B9\u901A\u5173\u6587\u7252\u521D\u7EA7" + rect: + serializedVersion: 2 + x: 1504 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2f7927a85515a940800000000000000 + internalID: 5306671206431817519 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u914D\u65B9\u901A\u5173\u6587\u7252\u9AD8\u7EA7" + rect: + serializedVersion: 2 + x: 1536 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1ab99fdae1d57550800000000000000 + internalID: 6158058872202967580 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u9A6C" + rect: + serializedVersion: 2 + x: 1568 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3f0a4e22d8bcfe10800000000000000 + internalID: 2232862728128171836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u9A6C\u5E7C\u5D3D" + rect: + serializedVersion: 2 + x: 1600 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4cceffbf44bce4dd0800000000000000 + internalID: -2499837245997978428 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u9E7F" + rect: + serializedVersion: 2 + x: 1632 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20d300b8a41392700800000000000000 + internalID: 515997828540022018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u9E7F\u5E7C\u5D3D" + rect: + serializedVersion: 2 + x: 1664 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5073d7c786a0115c0800000000000000 + internalID: -4246601529752209659 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u9EC4\u91D1\u679C" + rect: + serializedVersion: 2 + x: 1696 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c72359e1f6bfced40800000000000000 + internalID: 5615139290097201788 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BB6\u56ED\u9EC4\u91D1\u679C\u79CD\u5B50" + rect: + serializedVersion: 2 + x: 1728 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6ddd3ce36dfa9350800000000000000 + internalID: 6024406057168526699 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BBD\u5634\u5947\u8DB3" + rect: + serializedVersion: 2 + x: 1760 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: deb1018c62d427630800000000000000 + internalID: 3923283054353718253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BBE\u5BA2\u80F8\u82B1" + rect: + serializedVersion: 2 + x: 1792 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ae3899496d845670800000000000000 + internalID: 8526595477864988325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BC2\u7167\u7280\u53D8" + rect: + serializedVersion: 2 + x: 1824 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eafd3d9418f09dfa0800000000000000 + internalID: -5775567999162130514 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BC4\u5356\u5E97\u94FA\u5F00\u5E97\u51ED\u8BC1\u5468" + rect: + serializedVersion: 2 + x: 1856 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 47870a2d581a41270800000000000000 + internalID: 8220372815994452084 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BC4\u5356\u5E97\u94FA\u5F00\u5E97\u51ED\u8BC1\u6708" + rect: + serializedVersion: 2 + x: 1888 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c9d5c746c362ca30800000000000000 + internalID: 4234056302940510665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BC4\u5C45\u87F9\u58F3" + rect: + serializedVersion: 2 + x: 1920 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 004bce6146b3da470800000000000000 + internalID: 8407441380437963776 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BC4\u9B42\u82B1\u854A" + rect: + serializedVersion: 2 + x: 1952 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5237ebfec6ec4c480800000000000000 + internalID: -8879745597993749723 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BC5" + rect: + serializedVersion: 2 + x: 1984 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ce5211250ecdc2d0800000000000000 + internalID: -3256720434093990199 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BD2" + rect: + serializedVersion: 2 + x: 2016 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6f1c0a6f07adfdd20800000000000000 + internalID: 3305600830222156278 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BD2\u4E4B\u5370" + rect: + serializedVersion: 2 + x: 2048 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 119703e4b20198a90800000000000000 + internalID: -7311294741877851887 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BD2\u4E4B\u610F\u53F3\u534A" + rect: + serializedVersion: 2 + x: 2080 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c008a6b00d23e92c0800000000000000 + internalID: -4423041914905133044 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BD2\u4E4B\u610F\u5DE6\u534A" + rect: + serializedVersion: 2 + x: 2112 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 404219f2c84742b90800000000000000 + internalID: -7267555753226853372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BD2\u51B0\u4E4B\u5FC3" + rect: + serializedVersion: 2 + x: 2144 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c9079099c32ecce0800000000000000 + internalID: -1383128686934947386 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BD2\u51B0\u516C\u4E3B" + rect: + serializedVersion: 2 + x: 2176 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe2c3f8b129c3a740800000000000000 + internalID: 5162190744570807023 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BD2\u6B66\u9F99" + rect: + serializedVersion: 2 + x: 2208 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac623a9aede5cd170800000000000000 + internalID: 8204536931583993546 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BD2\u6C34\u4E4B\u529B" + rect: + serializedVersion: 2 + x: 2240 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0388e43b72e8690a0800000000000000 + internalID: -6875151479971346384 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BD2\u6C34\u4E4B\u610F" + rect: + serializedVersion: 2 + x: 2272 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99866cf7a54982340800000000000000 + internalID: 4839280916021274777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BD2\u70DF\u7FE0" + rect: + serializedVersion: 2 + x: 2304 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74209eae20654ca20800000000000000 + internalID: 3081682615559324231 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BD2\u7EEF\u6A31\u906E\u69BB" + rect: + serializedVersion: 2 + x: 2336 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb0e96d39fc6985f0800000000000000 + internalID: -753951644874841925 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BF0\u4E16\u53E4\u672C" + rect: + serializedVersion: 2 + x: 2368 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b16972a9186fd8760800000000000000 + internalID: 7461891194120279579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BF0\u5B87\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 2400 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7cd2457c6703b860800000000000000 + internalID: 7544381963180891261 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BFB\u5B9D\u7F51\u6446\u644A" + rect: + serializedVersion: 2 + x: 2432 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8f9277edae5b77c0800000000000000 + internalID: -4072557337021079667 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5BFF" + rect: + serializedVersion: 2 + x: 2464 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5bc7cd0c0b1bb5670800000000000000 + internalID: 8528605692064201909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u5370\u4E4B\u5200" + rect: + serializedVersion: 2 + x: 2496 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 95c797d261f347fb0800000000000000 + internalID: -4651023150682112935 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u5370\u4E4B\u5F13" + rect: + serializedVersion: 2 + x: 2528 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37e40cdb888b6be20800000000000000 + internalID: 3366080668944584307 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u5370\u4E4B\u7389\u74F6" + rect: + serializedVersion: 2 + x: 2560 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf849eca29f7569e0800000000000000 + internalID: -1628755422281643781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u5370\u4E4B\u8F6E" + rect: + serializedVersion: 2 + x: 2592 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7525a4eff1f120750800000000000000 + internalID: 6269607853523882583 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u5370\u6B8B\u7247" + rect: + serializedVersion: 2 + x: 2624 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6edf0b62962723bd0800000000000000 + internalID: -2651931434621534746 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u5370\u7684\u795E\u5251" + rect: + serializedVersion: 2 + x: 2656 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab966685c46951e40800000000000000 + internalID: 5626568564114090426 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u5589\u5203" + rect: + serializedVersion: 2 + x: 2688 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 048ac58f0365ea920800000000000000 + internalID: 3003432769827940416 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u795E\u4E66\u5377" + rect: + serializedVersion: 2 + x: 2720 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a74219505c5621c0800000000000000 + internalID: -4528830875112945757 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u795E\u6A59\u8272\u5361" + rect: + serializedVersion: 2 + x: 2752 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7be43cce7952b0f0800000000000000 + internalID: -1102720557625578627 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u795E\u7D2B\u8272\u5361" + rect: + serializedVersion: 2 + x: 2784 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe92921ee042515c0800000000000000 + internalID: -4245447427401111057 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u795E\u7EFF\u8272\u5361" + rect: + serializedVersion: 2 + x: 2816 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1da1abaeb4e0c43e0800000000000000 + internalID: -2068262409646499119 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u795E\u84DD\u8272\u5361" + rect: + serializedVersion: 2 + x: 2848 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d807473d2307c1130800000000000000 + internalID: 3538826770804666509 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u795E\u8D64\u8272\u5361" + rect: + serializedVersion: 2 + x: 2880 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ebe0087e1bd5c150800000000000000 + internalID: 5892356611392990176 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u795E\u9752\u8272\u5361" + rect: + serializedVersion: 2 + x: 2912 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: acab2101560638840800000000000000 + internalID: 5225125979857533642 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C01\u795E\u9EC4\u8272\u5361" + rect: + serializedVersion: 2 + x: 2944 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9505734792d8d900800000000000000 + internalID: 709548488424490397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C04\u5929\u77E2" + rect: + serializedVersion: 2 + x: 2976 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c0e3efd23071fe40800000000000000 + internalID: 5688451168152576195 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C04\u624B\u96D5\u50CF\u6838\u5FC3" + rect: + serializedVersion: 2 + x: 3008 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd78535abe674fdf0800000000000000 + internalID: -147362133335242788 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C04\u65E5\u5F29" + rect: + serializedVersion: 2 + x: 3040 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec33484cd9d0e7010800000000000000 + internalID: 1188402322930414542 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C06\u519B\u5B9D\u5251" + rect: + serializedVersion: 2 + x: 3072 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c786f3e39a376160800000000000000 + internalID: 7018642951139395529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u4E5D\u9633\u4E39" + rect: + serializedVersion: 2 + x: 3104 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4de121732fec51a0800000000000000 + internalID: -6819312800244830899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u5029\u7684\u62A4\u7B26" + rect: + serializedVersion: 2 + x: 3136 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3d2a324be7393a60800000000000000 + internalID: 7654210525260819775 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u53F6\u8702" + rect: + serializedVersion: 2 + x: 3168 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef430fcc37bfc7110800000000000000 + internalID: 1260158470535001342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u578B\u51CC\u4E91\u7269\u8D44\u7BB1" + rect: + serializedVersion: 2 + x: 3200 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3f0248ca6fba3c60800000000000000 + internalID: 7798756170092646204 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u578B\u51CC\u4E91\u7269\u8D44\u888B" + rect: + serializedVersion: 2 + x: 3232 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa71b6e0aeea4be40800000000000000 + internalID: 5671350151053776810 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u6050\u9F99\u9ED1" + rect: + serializedVersion: 2 + x: 3264 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46f3b14b1bddac8c0800000000000000 + internalID: -3978123565527777436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u6076\u9B54\u5B9D\u5B9D" + rect: + serializedVersion: 2 + x: 3296 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b7e70c39b2c47150800000000000000 + internalID: 5869530315202488245 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u661F\u661F" + rect: + serializedVersion: 2 + x: 3328 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29fcbeef29938ffa0800000000000000 + internalID: -5766796019343044718 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u6D63\u718A2013" + rect: + serializedVersion: 2 + x: 3360 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1350acb015631240800000000000000 + internalID: 4761260353619251994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u6E05\u65B0\u6C99\u6EE9\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3392 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11a08abd79232ac60800000000000000 + internalID: 7827874730130016785 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u6E05\u65B0\u6C99\u6EE9\u7537\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 3424 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4b13dde1dfd96510800000000000000 + internalID: 1543010440082299725 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u6E05\u65B0\u6C99\u6EE9\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3456 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cafcca43a43231ec0800000000000000 + internalID: -3597492875720601684 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u6E05\u65B0\u6C99\u6EE9\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3488 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20280d5dfe9de8ba0800000000000000 + internalID: -6084686422423338494 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u6E05\u65B0\u8FDE\u4F53\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3520 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 954b49202ef86fbf0800000000000000 + internalID: -290886925050137511 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u6E05\u65B0\u8FDE\u4F53\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3552 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 534c380854ffdb410800000000000000 + internalID: 1494631325330818101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u6E05\u65B0\u8FDE\u4F53\u88C5\u5973\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3584 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b97c8e5e73420d690800000000000000 + internalID: -7579518350365505637 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u6E05\u65B0\u8FDE\u4F53\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3616 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8dd777b0c31e42400800000000000000 + internalID: 298611123319963096 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u718A\u732B" + rect: + serializedVersion: 2 + x: 3648 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c679436c38d40cf0800000000000000 + internalID: -286866722369472829 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7231\u795E" + rect: + serializedVersion: 2 + x: 3680 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9573c5b049e7a2730800000000000000 + internalID: 3975128795418736473 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u732A\u98CE\u683C\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3712 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04e21fe65686260f0800000000000000 + internalID: -1125222172026917312 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u732A\u98CE\u683C\u7537\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 3744 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc6edcbe8bb30e100800000000000000 + internalID: 135173654237275851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u732A\u98CE\u683C\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3776 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49000c2f5a9641850800000000000000 + internalID: 6346813936335061140 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u732A\u98CE\u683C\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3808 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3a6d11cfcbfcf7c0800000000000000 + internalID: -4036074296314074565 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u732B\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3840 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c63508fe7b9318ef0800000000000000 + internalID: -107741453920218260 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u732B\u88C5\u624B\u5957" + rect: + serializedVersion: 2 + x: 3872 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5d4fd82dff86cd40800000000000000 + internalID: 5604325103784381786 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u732B\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3904 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7099a53d5335c2eb0800000000000000 + internalID: -4743324816883672825 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u732B\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3936 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d090a50f36bd40b60800000000000000 + internalID: 7711529684245809421 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u795E\u6C14\u4E38" + rect: + serializedVersion: 2 + x: 3968 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c73878047d753a70800000000000000 + internalID: 8806082583704647620 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u795E\u9F99" + rect: + serializedVersion: 2 + x: 4000 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89a24d47d366364a0800000000000000 + internalID: -6601320214655915368 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7AE0\u9C7C_\u5305\u88F9\u56FE\u6807" + rect: + serializedVersion: 2 + x: 4032 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4f1718a08ccbba70800000000000000 + internalID: 8843887146220068686 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u51AC1\u5F62\u6001" + rect: + serializedVersion: 2 + x: 4064 + y: 3264 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 909f4fc3bce9790b0800000000000000 + internalID: -5721930205812688631 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u51AC2\u5F62\u6001" + rect: + serializedVersion: 2 + x: 0 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 480e4fd34671c73e0800000000000000 + internalID: -2054741610684161916 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u51AC3\u5F62\u6001" + rect: + serializedVersion: 2 + x: 32 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e5fcffeed347beae0800000000000000 + internalID: -1518992639955841186 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u51AC4\u5F62\u6001" + rect: + serializedVersion: 2 + x: 64 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1a11eb1a985ee620800000000000000 + internalID: 2805277036814342685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u590F1\u5F62\u6001" + rect: + serializedVersion: 2 + x: 96 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 66cf19220fe55cfb0800000000000000 + internalID: -4628188656588161946 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u590F2\u5F62\u6001" + rect: + serializedVersion: 2 + x: 128 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69143f711f2542030800000000000000 + internalID: 3468988808424538518 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u590F3\u5F62\u6001" + rect: + serializedVersion: 2 + x: 160 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab364165409ecdc60800000000000000 + internalID: 7844400855805879226 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u590F4\u5F62\u6001" + rect: + serializedVersion: 2 + x: 192 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bddbaf3a6864a5b10800000000000000 + internalID: 1970965331018694107 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u66251\u5F62\u6001" + rect: + serializedVersion: 2 + x: 224 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85872055871c09a20800000000000000 + internalID: 3067164068805769304 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u66252\u5F62\u6001" + rect: + serializedVersion: 2 + x: 256 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db7183d5c1a89c6b0800000000000000 + internalID: -5275533634060150851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u66253\u5F62\u6001" + rect: + serializedVersion: 2 + x: 288 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ac2d1b86b525cdf0800000000000000 + internalID: -160680745753563996 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u66254\u5F62\u6001" + rect: + serializedVersion: 2 + x: 320 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4acd92f561f218750800000000000000 + internalID: 6305372726427770020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u51AC1\u5F62\u6001" + rect: + serializedVersion: 2 + x: 352 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d18585f5bc7b6100800000000000000 + internalID: 102312537496060372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u51AC2\u5F62\u6001" + rect: + serializedVersion: 2 + x: 384 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6075412b4d003c00800000000000000 + internalID: 878216543669153899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u51AC3\u5F62\u6001" + rect: + serializedVersion: 2 + x: 416 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2849acc69a1f1d330800000000000000 + internalID: 3734031276043834498 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u51AC4\u5F62\u6001" + rect: + serializedVersion: 2 + x: 448 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c26ec55c47df2820800000000000000 + internalID: 2895769808279593671 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u590F1\u5F62\u6001" + rect: + serializedVersion: 2 + x: 480 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2595f4f146be3120800000000000000 + internalID: 2395552446206547244 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u590F2\u5F62\u6001" + rect: + serializedVersion: 2 + x: 512 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8728beff4732bbcb0800000000000000 + internalID: -4847241588517404040 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u590F3\u5F62\u6001" + rect: + serializedVersion: 2 + x: 544 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 984b5873939f01cc0800000000000000 + internalID: -3742217266204920695 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u590F4\u5F62\u6001" + rect: + serializedVersion: 2 + x: 576 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7992fa413eeea9490800000000000000 + internalID: -7738610350610765417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D1" + rect: + serializedVersion: 2 + x: 608 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 946ce2eec5811caf0800000000000000 + internalID: -377994106310310327 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D10" + rect: + serializedVersion: 2 + x: 640 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13950684cd0954080800000000000000 + internalID: -9203790987680261839 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D2" + rect: + serializedVersion: 2 + x: 672 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16936908b16c1a150800000000000000 + internalID: 5882200409746323809 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D3" + rect: + serializedVersion: 2 + x: 704 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ed7b94c008e70480800000000000000 + internalID: -8932916245869920798 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D4" + rect: + serializedVersion: 2 + x: 736 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 186431d6a178acd40800000000000000 + internalID: 5605441233784882817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D5" + rect: + serializedVersion: 2 + x: 768 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a21d2b6ba7379e70800000000000000 + internalID: 9121820779639280290 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D6" + rect: + serializedVersion: 2 + x: 800 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16b37017fe52ec570800000000000000 + internalID: 8488764057963674465 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D7" + rect: + serializedVersion: 2 + x: 832 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fcd7e195823a66320800000000000000 + internalID: 2550905632641154511 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D8" + rect: + serializedVersion: 2 + x: 864 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 696670ccea4bbf2d0800000000000000 + internalID: -3243800443749964138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D9" + rect: + serializedVersion: 2 + x: 896 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 701d012b38986caa0800000000000000 + internalID: -6141069843151924985 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u66251\u5F62\u6001" + rect: + serializedVersion: 2 + x: 928 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b9adb95129e1c230800000000000000 + internalID: 3657460701850347960 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u66252\u5F62\u6001" + rect: + serializedVersion: 2 + x: 960 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc0302757cb7ac930800000000000000 + internalID: 4164276901547880653 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u66253\u5F62\u6001" + rect: + serializedVersion: 2 + x: 992 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9050a1d487bc32500800000000000000 + internalID: 370363311924577545 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u66254\u5F62\u6001" + rect: + serializedVersion: 2 + x: 1024 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9f990a314f99e510800000000000000 + internalID: 1578968246865469341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u79CB1\u5F62\u6001" + rect: + serializedVersion: 2 + x: 1056 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 149fa183fc205f150800000000000000 + internalID: 5905629575389051201 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u79CB2\u5F62\u6001" + rect: + serializedVersion: 2 + x: 1088 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ae1a1d0d5ecd2430800000000000000 + internalID: 3759888162971328166 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u79CB3\u5F62\u6001" + rect: + serializedVersion: 2 + x: 1120 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54b709d81e2411440800000000000000 + internalID: 4904775005693311813 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u79CB4\u5F62\u6001" + rect: + serializedVersion: 2 + x: 1152 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de8a8b110bad54620800000000000000 + internalID: 2757850796580710637 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73891" + rect: + serializedVersion: 2 + x: 1184 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 830f0c8906aa24a30800000000000000 + internalID: 4198105134519087160 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73891_1" + rect: + serializedVersion: 2 + x: 1216 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb5a98f63c0b1cf70800000000000000 + internalID: 9205833466758407614 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73891_2" + rect: + serializedVersion: 2 + x: 1248 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 207b9bc741e21ee20800000000000000 + internalID: 3378031861031352066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73891_3" + rect: + serializedVersion: 2 + x: 1280 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe810ac1b2a67aa40800000000000000 + internalID: 5379385013313738991 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73891_4" + rect: + serializedVersion: 2 + x: 1312 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e9ce922ce365be6e0800000000000000 + internalID: -1807255997913633634 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73891_5" + rect: + serializedVersion: 2 + x: 1344 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 663bce9f60c1ab460800000000000000 + internalID: 7258144565749396326 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73892" + rect: + serializedVersion: 2 + x: 1376 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 898d46f7515237230800000000000000 + internalID: 3635290098479978648 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73892_1" + rect: + serializedVersion: 2 + x: 1408 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 929481f590423ddf0800000000000000 + internalID: -156741939359102679 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73892_2" + rect: + serializedVersion: 2 + x: 1440 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b290f54d078ddbcd0800000000000000 + internalID: -2540636635656156885 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73892_3" + rect: + serializedVersion: 2 + x: 1472 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5ae3f0a8cb95c1e0800000000000000 + internalID: -2178163558767662499 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73892_4" + rect: + serializedVersion: 2 + x: 1504 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b25c3a885c8703d0800000000000000 + internalID: -3240467094965562699 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73892_5" + rect: + serializedVersion: 2 + x: 1536 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b449e503bbcd2bd0800000000000000 + internalID: -2653240635692596048 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73893" + rect: + serializedVersion: 2 + x: 1568 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a211c447f3a628850800000000000000 + internalID: 6377776843076669738 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73893_1" + rect: + serializedVersion: 2 + x: 1600 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f1aac1fd2ca834e0800000000000000 + internalID: -2001660721036090888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73893_2" + rect: + serializedVersion: 2 + x: 1632 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4edc6a9a18d8ae6b0800000000000000 + internalID: -5266241226219794972 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73893_3" + rect: + serializedVersion: 2 + x: 1664 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c202f0261381a350800000000000000 + internalID: 6026241907463684801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73893_4" + rect: + serializedVersion: 2 + x: 1696 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea9ca0f9e00d5e080800000000000000 + internalID: -9158685505971631698 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73893_5" + rect: + serializedVersion: 2 + x: 1728 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23e0267caec56d350800000000000000 + internalID: 6041118113601293874 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73894" + rect: + serializedVersion: 2 + x: 1760 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc216784d740798a0800000000000000 + internalID: -6298560617721228595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73894_1" + rect: + serializedVersion: 2 + x: 1792 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6a44c723ed174580800000000000000 + internalID: -8843066481856722325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73894_2" + rect: + serializedVersion: 2 + x: 1824 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 551c126fe57646240800000000000000 + internalID: 4784062361728303445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73894_3" + rect: + serializedVersion: 2 + x: 1856 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3dd21d46cf53814f0800000000000000 + internalID: -857876370874618413 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73894_4" + rect: + serializedVersion: 2 + x: 1888 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0964ed21305c16370800000000000000 + internalID: 8314143004094776976 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73894_5" + rect: + serializedVersion: 2 + x: 1920 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9827c2f2ef850abf0800000000000000 + internalID: -315154125179555191 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73895" + rect: + serializedVersion: 2 + x: 1952 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1bc1580f5934121b0800000000000000 + internalID: -5683186943500411727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73895_1" + rect: + serializedVersion: 2 + x: 1984 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7fa07564dde3347e0800000000000000 + internalID: -1782511907419780361 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73895_2" + rect: + serializedVersion: 2 + x: 2016 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e20e318123a5cd580800000000000000 + internalID: -8801060400589971410 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73895_3" + rect: + serializedVersion: 2 + x: 2048 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3565d6505603ba310800000000000000 + internalID: 1417279718179034707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73896" + rect: + serializedVersion: 2 + x: 2080 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12d2c0d9b9ee56ac0800000000000000 + internalID: -3862418753278169823 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73896_1" + rect: + serializedVersion: 2 + x: 2112 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 328791988ab389790800000000000000 + internalID: -7523197582481721309 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73896_2" + rect: + serializedVersion: 2 + x: 2144 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3905f9b037ba263d0800000000000000 + internalID: -3214818673384533869 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73896_3" + rect: + serializedVersion: 2 + x: 2176 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62b215fe291758180800000000000000 + internalID: -9113753395020092634 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7389\u65B01" + rect: + serializedVersion: 2 + x: 2208 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e547a84f5cf74b80800000000000000 + internalID: -8410476292920097308 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7389\u65B02" + rect: + serializedVersion: 2 + x: 2240 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8910f34382479880800000000000000 + internalID: -8604335431520085619 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7389\u65B03" + rect: + serializedVersion: 2 + x: 2272 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ecb9a9028c1607120800000000000000 + internalID: 2409533312811572174 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7389\u65B04" + rect: + serializedVersion: 2 + x: 2304 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b19087cbd98ec2730800000000000000 + internalID: 3975808335230798107 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7389\u65B05" + rect: + serializedVersion: 2 + x: 2336 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb9e7a35ea106a690800000000000000 + internalID: -7591378273646941765 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7389\u65B06" + rect: + serializedVersion: 2 + x: 2368 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e87159fde173afff0800000000000000 + internalID: -1628244120627314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E01" + rect: + serializedVersion: 2 + x: 2400 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: acae8c5b1af17de50800000000000000 + internalID: 6833965738958056138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E01_1" + rect: + serializedVersion: 2 + x: 2432 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6fb86f2337fe4a280800000000000000 + internalID: -9032831674543076362 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E01_2" + rect: + serializedVersion: 2 + x: 2464 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bab85af9eb359bbc0800000000000000 + internalID: -3766887535131391061 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E01_3" + rect: + serializedVersion: 2 + x: 2496 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03a8f99829f660120800000000000000 + internalID: 2379712128276728368 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E01_4" + rect: + serializedVersion: 2 + x: 2528 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e4fac7d98dc78660800000000000000 + internalID: 7388099705639204070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E01_5" + rect: + serializedVersion: 2 + x: 2560 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b65cfae19b56f9170800000000000000 + internalID: 8187374493341042027 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E02" + rect: + serializedVersion: 2 + x: 2592 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f816a8d82a4a37e0800000000000000 + internalID: -1785032763005069068 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E02_1" + rect: + serializedVersion: 2 + x: 2624 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9dd4b51832c791440800000000000000 + internalID: 4907089760932810201 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E02_2" + rect: + serializedVersion: 2 + x: 2656 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c91b92e0a608dff0800000000000000 + internalID: -11251711002076735 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E02_3" + rect: + serializedVersion: 2 + x: 2688 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e231fd7db7bd83bf0800000000000000 + internalID: -344284046544661714 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E02_4" + rect: + serializedVersion: 2 + x: 2720 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0704ec44185241330800000000000000 + internalID: 3680608032603914352 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E02_5" + rect: + serializedVersion: 2 + x: 2752 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3115dce4aae0aba10800000000000000 + internalID: 1925867915283616019 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E03" + rect: + serializedVersion: 2 + x: 2784 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63ae60b848ff607d0800000000000000 + internalID: -2952391560961529290 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E03_1" + rect: + serializedVersion: 2 + x: 2816 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6d7935906162daf80800000000000000 + internalID: -8093771079227303978 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E03_2" + rect: + serializedVersion: 2 + x: 2848 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4f4b88d411b650c0800000000000000 + internalID: -4587284467339800753 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E03_3" + rect: + serializedVersion: 2 + x: 2880 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14d0a4e2186b89880800000000000000 + internalID: -8603926422147691199 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E03_4" + rect: + serializedVersion: 2 + x: 2912 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b203b267c5425ff0800000000000000 + internalID: -48899923290946896 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E03_5" + rect: + serializedVersion: 2 + x: 2944 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9a2ee1e91ef68bd30800000000000000 + internalID: 4447427646839513769 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E04" + rect: + serializedVersion: 2 + x: 2976 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96ae3d849118615e0800000000000000 + internalID: -1939220643940406679 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E04_1" + rect: + serializedVersion: 2 + x: 3008 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9acd22107aa89a20800000000000000 + internalID: 3069390544371042972 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E04_2" + rect: + serializedVersion: 2 + x: 3040 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb7b137f52df41d90800000000000000 + internalID: -7127793970717804610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E04_3" + rect: + serializedVersion: 2 + x: 3072 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef57bbb242090ba10800000000000000 + internalID: 1923195525914129918 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E04_4" + rect: + serializedVersion: 2 + x: 3104 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75dfd8d11079e9800800000000000000 + internalID: 621099829670313303 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E04_5" + rect: + serializedVersion: 2 + x: 3136 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 761281508a4ec4e40800000000000000 + internalID: 5642135843479495015 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E05" + rect: + serializedVersion: 2 + x: 3168 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1df68f77a2b5da5c0800000000000000 + internalID: -4202602639307280431 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E05_1" + rect: + serializedVersion: 2 + x: 3200 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 008e3696214f294b0800000000000000 + internalID: -5435013440368023552 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E05_2" + rect: + serializedVersion: 2 + x: 3232 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc63d95b86a6c1a30800000000000000 + internalID: 4187338751503840973 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E05_3" + rect: + serializedVersion: 2 + x: 3264 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb5da139480ecf700800000000000000 + internalID: 575581712404895167 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E06" + rect: + serializedVersion: 2 + x: 3296 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b88b11608b7cf460800000000000000 + internalID: 7276826889239103666 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E06_1" + rect: + serializedVersion: 2 + x: 3328 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a118f456f0765ec0800000000000000 + internalID: -3578548650609471067 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E06_2" + rect: + serializedVersion: 2 + x: 3360 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cccc7175722f065b0800000000000000 + internalID: -5377031704301548340 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E06_3" + rect: + serializedVersion: 2 + x: 3392 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 990a08de5b1f4ada0800000000000000 + internalID: -5934352645291466599 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E0\u65B01" + rect: + serializedVersion: 2 + x: 3424 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9045ea3f85e44df0800000000000000 + internalID: -196780080366272356 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E0\u65B02" + rect: + serializedVersion: 2 + x: 3456 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fe267d52f345cbe0800000000000000 + internalID: -1457684196155314440 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E0\u65B03" + rect: + serializedVersion: 2 + x: 3488 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b7d88611ab86a3610800000000000000 + internalID: 1601707765848903035 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E0\u65B04" + rect: + serializedVersion: 2 + x: 3520 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6018992206fd04080800000000000000 + internalID: -9205112034354953978 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E0\u65B05" + rect: + serializedVersion: 2 + x: 3552 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c3c9e12979191720800000000000000 + internalID: 2817311049947661257 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E0\u65B06" + rect: + serializedVersion: 2 + x: 3584 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dfeea133c9f9deae0800000000000000 + internalID: -1518382006132871427 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B261" + rect: + serializedVersion: 2 + x: 3616 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 728d36e1819e086c0800000000000000 + internalID: -4143055367382509529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B261_1" + rect: + serializedVersion: 2 + x: 3648 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07fbdf9470a0db350800000000000000 + internalID: 6033990102168747888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B261_2" + rect: + serializedVersion: 2 + x: 3680 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99f014f07df5b4de0800000000000000 + internalID: -1347878286188802151 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B261_3" + rect: + serializedVersion: 2 + x: 3712 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b595179f73dc9e10800000000000000 + internalID: 2205870462453781936 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B261_4" + rect: + serializedVersion: 2 + x: 3744 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c3e065997e7b7760800000000000000 + internalID: 7456692668704285637 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B261_5" + rect: + serializedVersion: 2 + x: 3776 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d46b6dc1ca746d530800000000000000 + internalID: 3879366933570041421 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B262" + rect: + serializedVersion: 2 + x: 3808 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f0562574a4f6bbd0800000000000000 + internalID: -2614633546464734984 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B262_1" + rect: + serializedVersion: 2 + x: 3840 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89d752754a0618b60800000000000000 + internalID: 7746579093006941592 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B262_2" + rect: + serializedVersion: 2 + x: 3872 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 945fe41631d30f260800000000000000 + internalID: 7129265363573732681 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B262_3" + rect: + serializedVersion: 2 + x: 3904 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf253c62a18538de0800000000000000 + internalID: -1332124195428805893 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B262_4" + rect: + serializedVersion: 2 + x: 3936 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f60ab06c54e39880800000000000000 + internalID: -8605283377563957519 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B262_5" + rect: + serializedVersion: 2 + x: 3968 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3bc406bb1dba6e2f0800000000000000 + internalID: -943878154607375181 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B263" + rect: + serializedVersion: 2 + x: 4000 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04e8c105669f35470800000000000000 + internalID: 8382317549292654144 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B263_1" + rect: + serializedVersion: 2 + x: 4032 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 193c0dc77bf3ce210800000000000000 + internalID: 1363534844492039057 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B263_2" + rect: + serializedVersion: 2 + x: 4064 + y: 3232 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa238a8dbe10b3640800000000000000 + internalID: 5060640718744728234 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B263_3" + rect: + serializedVersion: 2 + x: 0 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1934f87ae3b03bea0800000000000000 + internalID: -5858326326551821423 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B263_4" + rect: + serializedVersion: 2 + x: 32 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8b345105f77dd0c0800000000000000 + internalID: -4549348154401342579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B263_5" + rect: + serializedVersion: 2 + x: 64 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0957be12c7551c540800000000000000 + internalID: 5026392650755569040 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B264" + rect: + serializedVersion: 2 + x: 96 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0c02844794f02660800000000000000 + internalID: 7359150721650002955 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B264_1" + rect: + serializedVersion: 2 + x: 128 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78e24e47d89a17ca0800000000000000 + internalID: -6020844801801048441 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B264_2" + rect: + serializedVersion: 2 + x: 160 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1601362d7e2016420800000000000000 + internalID: 2621379652796747873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B264_3" + rect: + serializedVersion: 2 + x: 192 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60753649164040b40800000000000000 + internalID: 5405450269899314950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B264_4" + rect: + serializedVersion: 2 + x: 224 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f597fa0a3a6466a0800000000000000 + internalID: -6456919168217803273 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B264_5" + rect: + serializedVersion: 2 + x: 256 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56d1a31ad9ac1f250800000000000000 + internalID: 5976780958860975461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B265" + rect: + serializedVersion: 2 + x: 288 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d74cea57a6505b860800000000000000 + internalID: 7544942705528194173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B265_1" + rect: + serializedVersion: 2 + x: 320 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4eb816bd7c1995b10800000000000000 + internalID: 1970766599516425188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B265_2" + rect: + serializedVersion: 2 + x: 352 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77c5f424e7bc075b0800000000000000 + internalID: -5372570612314186633 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B265_3" + rect: + serializedVersion: 2 + x: 384 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 491ca89f3fbe25230800000000000000 + internalID: 3626220083082871188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B266" + rect: + serializedVersion: 2 + x: 416 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c28ef8b1dd239a2a0800000000000000 + internalID: -6725788643269547988 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B266_1" + rect: + serializedVersion: 2 + x: 448 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0ca6e9fc75a88e10800000000000000 + internalID: 2200190374157659148 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B266_2" + rect: + serializedVersion: 2 + x: 480 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48ed6fae552c5c810800000000000000 + internalID: 1785046501592325764 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B266_3" + rect: + serializedVersion: 2 + x: 512 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e16760727d51c4bb0800000000000000 + internalID: -4950557876570130914 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B26\u65B01" + rect: + serializedVersion: 2 + x: 544 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78eb8424c8214bc50800000000000000 + internalID: 6679984540914073223 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B26\u65B02" + rect: + serializedVersion: 2 + x: 576 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06c9b242012ff90f0800000000000000 + internalID: -1107900832169616288 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B26\u65B03" + rect: + serializedVersion: 2 + x: 608 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 245cad896ab537d60800000000000000 + internalID: 7886748143543043394 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B26\u65B04" + rect: + serializedVersion: 2 + x: 640 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6046a29bcb71e000800000000000000 + internalID: 63467984028844140 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B26\u65B05" + rect: + serializedVersion: 2 + x: 672 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 992a73f4d5da262e0800000000000000 + internalID: -2133952657147583847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B26\u65B06" + rect: + serializedVersion: 2 + x: 704 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 64ecabbf6bdb41a70800000000000000 + internalID: 8796864565766442566 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C1" + rect: + serializedVersion: 2 + x: 736 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0659b68e8d805fe40800000000000000 + internalID: 5689463431957812576 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C1_1" + rect: + serializedVersion: 2 + x: 768 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce768a9ab97e8ba80800000000000000 + internalID: -8450750045008402452 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C1_2" + rect: + serializedVersion: 2 + x: 800 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: feab16e6108015f00800000000000000 + internalID: 1103672185922370287 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C1_3" + rect: + serializedVersion: 2 + x: 832 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7cde095d2286511b0800000000000000 + internalID: -5686524455664161337 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C1_4" + rect: + serializedVersion: 2 + x: 864 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16dc3549d54c55e90800000000000000 + internalID: -7037502936497009311 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C1_5" + rect: + serializedVersion: 2 + x: 896 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b754750a9741afb90800000000000000 + internalID: -7207425741039385221 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C2" + rect: + serializedVersion: 2 + x: 928 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: abea574c7803cfec0800000000000000 + internalID: -3531894648090546502 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C2_1" + rect: + serializedVersion: 2 + x: 960 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea5f2c9728531c650800000000000000 + internalID: 6251336592271799726 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C2_2" + rect: + serializedVersion: 2 + x: 992 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86b0536df6b00e090800000000000000 + internalID: -8007387562501665944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C2_3" + rect: + serializedVersion: 2 + x: 1024 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d471e78795d1e290800000000000000 + internalID: -7862768627615697709 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C2_4" + rect: + serializedVersion: 2 + x: 1056 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3c71ef7f79eda130800000000000000 + internalID: 3579774012645014587 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C2_5" + rect: + serializedVersion: 2 + x: 1088 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de586af12c4e14d70800000000000000 + internalID: 9025746650632979949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C3" + rect: + serializedVersion: 2 + x: 1120 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f299706202e060a60800000000000000 + internalID: 7639809349120399663 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C3_1" + rect: + serializedVersion: 2 + x: 1152 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5df9e4c3ca455860800000000000000 + internalID: 7517997357647658330 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C3_2" + rect: + serializedVersion: 2 + x: 1184 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7e20de5df9acdd30800000000000000 + internalID: 4457624636872470141 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C3_3" + rect: + serializedVersion: 2 + x: 1216 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1fd9ea9d7027d8e00800000000000000 + internalID: 1048619666289630705 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C3_4" + rect: + serializedVersion: 2 + x: 1248 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc12ef53938170260800000000000000 + internalID: 7063641174551962063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C3_5" + rect: + serializedVersion: 2 + x: 1280 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 611e7d55bdab7df10800000000000000 + internalID: 2294507986369372438 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C4" + rect: + serializedVersion: 2 + x: 1312 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc23069ed5367d920800000000000000 + internalID: 3014987730546340556 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C4_1" + rect: + serializedVersion: 2 + x: 1344 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0b7e77e811497170800000000000000 + internalID: 8176638173686692618 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C4_2" + rect: + serializedVersion: 2 + x: 1376 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 774304483b2c2cc10800000000000000 + internalID: 2072432854817584247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C4_3" + rect: + serializedVersion: 2 + x: 1408 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f66f4dfd0d07f7ac0800000000000000 + internalID: -3855238713595070865 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C4_4" + rect: + serializedVersion: 2 + x: 1440 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10eb573c05301ae40800000000000000 + internalID: 5665813451620335105 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C4_5" + rect: + serializedVersion: 2 + x: 1472 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3b7d16aaf2ec3880800000000000000 + internalID: -8629773219792061633 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C5" + rect: + serializedVersion: 2 + x: 1504 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d85f79e7664ad8bf0800000000000000 + internalID: -320419238355929715 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C5_1" + rect: + serializedVersion: 2 + x: 1536 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c0b76db3169cbd40800000000000000 + internalID: 5601517048068288704 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C5_2" + rect: + serializedVersion: 2 + x: 1568 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe372d03061120a00800000000000000 + internalID: 721157995166331887 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C5_3" + rect: + serializedVersion: 2 + x: 1600 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e41818ce94fb71500800000000000000 + internalID: 366972218875412814 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C6" + rect: + serializedVersion: 2 + x: 1632 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 893aa2325426baac0800000000000000 + internalID: -3842869807948323944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C6_1" + rect: + serializedVersion: 2 + x: 1664 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d7e55dfc363c74e0800000000000000 + internalID: -1982650100373657646 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C6_2" + rect: + serializedVersion: 2 + x: 1696 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f79f790564bd19c0800000000000000 + internalID: -3954806551717373964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C6_3" + rect: + serializedVersion: 2 + x: 1728 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 156af29f20abba030800000000000000 + internalID: 3507101256771413585 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C\u65B01" + rect: + serializedVersion: 2 + x: 1760 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 587e671c12b027740800000000000000 + internalID: 5148189563645519749 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C\u65B02" + rect: + serializedVersion: 2 + x: 1792 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 66a3c59a8e4ff4880800000000000000 + internalID: -8624405481280226714 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C\u65B03" + rect: + serializedVersion: 2 + x: 1824 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08bfa9f8838a130b0800000000000000 + internalID: -5750630288294478976 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C\u65B04" + rect: + serializedVersion: 2 + x: 1856 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6fa71cadaef3b4f00800000000000000 + internalID: 1102044811747228406 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C\u65B05" + rect: + serializedVersion: 2 + x: 1888 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b26195b972c69eed0800000000000000 + internalID: -2384255610350135765 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C\u65B06" + rect: + serializedVersion: 2 + x: 1920 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0b6ef4f0d0554eb0800000000000000 + internalID: -4736290574716474612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u79CB1\u5F62\u6001" + rect: + serializedVersion: 2 + x: 1952 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4a0518911c9eaab0800000000000000 + internalID: -4994883337327408564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u79CB2\u5F62\u6001" + rect: + serializedVersion: 2 + x: 1984 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0ac89a59a0d098d0800000000000000 + internalID: -2841541939082769910 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u79CB3\u5F62\u6001" + rect: + serializedVersion: 2 + x: 2016 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edf2725e250c1ef70800000000000000 + internalID: 9214857774841147358 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7CBE\u79CB4\u5F62\u6001" + rect: + serializedVersion: 2 + x: 2048 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fd46ef7d82df8e00800000000000000 + internalID: 1049288743378636276 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u7EA2\u65D7" + rect: + serializedVersion: 2 + x: 2080 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22c777b946fe1fbc0800000000000000 + internalID: -3750953799238845406 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u866B" + rect: + serializedVersion: 2 + x: 2112 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 19cac783e13ade280800000000000000 + internalID: -9012367929106453359 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u866B\u7F51" + rect: + serializedVersion: 2 + x: 2144 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f973f0985e8baa1d0800000000000000 + internalID: -3338652877755304033 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u8D1D\u83AB\u897F\u5E72\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2176 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a13b7cb27bd4b1940800000000000000 + internalID: 5267889638248788762 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u8FA3\u6912" + rect: + serializedVersion: 2 + x: 2208 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d686149ecccaebb90800000000000000 + internalID: -7224146756169013139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u91CE\u4EBA\u5BA0\u7269\u86CB" + rect: + serializedVersion: 2 + x: 2240 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22610094464518160800000000000000 + internalID: 7025989683372889634 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u91D1\u521B\u836F" + rect: + serializedVersion: 2 + x: 2272 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4aa821a4e352dc990800000000000000 + internalID: -7364188866219963740 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u9690\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 2304 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55e1fa47de78b8610800000000000000 + internalID: 1624541544531828309 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u9752\u86D9" + rect: + serializedVersion: 2 + x: 2336 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a14a00b6127ec6d0800000000000000 + internalID: -2968309662622269019 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u9C7C\u4EBA\u84DD" + rect: + serializedVersion: 2 + x: 2368 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f80f6e1610c269e0800000000000000 + internalID: -1629528913922291470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u9E1F\u70DF\u82B1\u7B80\u5355" + rect: + serializedVersion: 2 + x: 2400 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40d3843750a3c30e0800000000000000 + internalID: -2288890715527693052 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u9E1F\u73AB\u7470\u70DF\u82B1" + rect: + serializedVersion: 2 + x: 2432 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc35b18e8169742f0800000000000000 + internalID: -988656559467047988 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C0F\u9E1F\u88C5\u5973\u53D1" + rect: + serializedVersion: 2 + x: 2464 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ad27dd8db54ab690800000000000000 + internalID: -7585673941921354332 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C11\u9633\u5143\u6C14" + rect: + serializedVersion: 2 + x: 2496 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5382a09a0f5637fb0800000000000000 + internalID: -4651261905841018827 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C11\u9634\u5143\u6C14" + rect: + serializedVersion: 2 + x: 2528 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6953d793aae41850800000000000000 + internalID: 6346955763219650925 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C16\u5634\u5947\u8DB3" + rect: + serializedVersion: 2 + x: 2560 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3930afeed52e2f20800000000000000 + internalID: 3399696408144525628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C16\u7259" + rect: + serializedVersion: 2 + x: 2592 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d7c3c5719a1e19e0800000000000000 + internalID: -1648851201522677803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C71\u5C45\u79CB\u669D" + rect: + serializedVersion: 2 + x: 2624 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4ff21f1072867560800000000000000 + internalID: 7311174463151865674 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C71\u6CB3\u5730\u7406\u56FE" + rect: + serializedVersion: 2 + x: 2656 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6737baa910d00b20800000000000000 + internalID: 3098705352287795053 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C71\u6CB3\u58EE\u4E3D" + rect: + serializedVersion: 2 + x: 2688 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fa9986edc7ab6360800000000000000 + internalID: 7164004135040817912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C71\u6D77\u51CC\u4E91\u5951" + rect: + serializedVersion: 2 + x: 2720 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 556bd3c8d5e724420800000000000000 + internalID: 2612789674078221909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C71\u76DF\u6D77\u8A93" + rect: + serializedVersion: 2 + x: 2752 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 099bb6ae8d55fab40800000000000000 + internalID: 5453672063903185296 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C71\u76DF\u6D77\u8A93\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2784 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e58e01fcc0ca9e60800000000000000 + internalID: 7969894477035636196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C71\u76DF\u6D77\u8A93\u5973\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2816 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 270b5913a49488e00800000000000000 + internalID: 1047167496371941490 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C71\u76DF\u6D77\u8A93\u5973\u88C5\u978B" + rect: + serializedVersion: 2 + x: 2848 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 249de71a2d8ab5340800000000000000 + internalID: 4853658646027884866 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C71\u76DF\u6D77\u8A93\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2880 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e0c43162bf7e6f50800000000000000 + internalID: 6876574085153079529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C71\u76DF\u6D77\u8A93\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2912 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb85d88ad8f074150800000000000000 + internalID: 5856666941511260350 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C71\u76DF\u6D77\u8A93\u7537\u88C5\u978B" + rect: + serializedVersion: 2 + x: 2944 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c415b60db2436ee40800000000000000 + internalID: 5685288942386762060 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C71\u7F8A\u8089" + rect: + serializedVersion: 2 + x: 2976 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4348cd3d8f8515240800000000000000 + internalID: 4778698505346384948 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C71\u8109\u4E4B\u5FC3" + rect: + serializedVersion: 2 + x: 3008 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60f6c2d3bb5917330800000000000000 + internalID: 3706908599720374022 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5C81" + rect: + serializedVersion: 2 + x: 3040 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8f2907426816aa30800000000000000 + internalID: 4226092110711435146 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5CA9\u5FC3" + rect: + serializedVersion: 2 + x: 3072 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6690f4ad23fe371d0800000000000000 + internalID: -3354074295770871450 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5CA9\u7075\u6218\u58EB" + rect: + serializedVersion: 2 + x: 3104 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 562bd7559548320c0800000000000000 + internalID: -4601688875021258139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5CB3\u738B" + rect: + serializedVersion: 2 + x: 3136 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bbc3cc53414219160800000000000000 + internalID: 7030440162522578107 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5CE5\u5D58\u5C81\u6708" + rect: + serializedVersion: 2 + x: 3168 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ffcb8f222af0fa470800000000000000 + internalID: 8407956218369850623 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5D1B" + rect: + serializedVersion: 2 + x: 3200 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9cba522c149f934c0800000000000000 + internalID: -4307137507777729591 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE1\u68C0\u4EE4" + rect: + serializedVersion: 2 + x: 3232 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 263733ee32b4e7510800000000000000 + internalID: 1548757939554317154 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE5\u4F1A\u6218\u670D\u5973-\u624B\u595732" + rect: + serializedVersion: 2 + x: 3264 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b14c88bf7974d29d0800000000000000 + internalID: -2797501075441531877 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE5\u4F1A\u6218\u670D\u5973-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 3296 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8256767c7ffafeed0800000000000000 + internalID: -2382492199118478040 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE5\u4F1A\u6218\u670D\u5973-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 3328 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2e983de19be10600800000000000000 + internalID: 432886051186974250 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE5\u4F1A\u6218\u670D\u5973-\u978B32" + rect: + serializedVersion: 2 + x: 3360 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ea1eb01e92a3f510800000000000000 + internalID: 1581786693906602722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE5\u4F1A\u6218\u670D\u7537-\u624B\u595732" + rect: + serializedVersion: 2 + x: 3392 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 068253f304c42a3a0800000000000000 + internalID: -6655673460478105504 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE5\u4F1A\u6218\u670D\u7537-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 3424 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b62e4e8fbec794630800000000000000 + internalID: 3911795104282894955 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE5\u4F1A\u6218\u670D\u7537-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 3456 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4eb6450ae177bd1b0800000000000000 + internalID: -5630775935674061852 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE5\u4F1A\u6218\u670D\u7537-\u978B32" + rect: + serializedVersion: 2 + x: 3488 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f9e1070f99fa96d0800000000000000 + internalID: -2982797341766850064 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE5\u574A" + rect: + serializedVersion: 2 + x: 3520 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aabe405e36f51f0f0800000000000000 + internalID: -1084981152570872918 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE5\u9524" + rect: + serializedVersion: 2 + x: 3552 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2322d3130685548f0800000000000000 + internalID: -556941808744193486 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE6\u864E\u7B26" + rect: + serializedVersion: 2 + x: 3584 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14c0b4cbe86ebb1e0800000000000000 + internalID: -2180896093812093887 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE7\u514B\u529B" + rect: + serializedVersion: 2 + x: 3616 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 95b973e9797f9b9e0800000000000000 + internalID: -1604979561614304423 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE7\u5320\u5927\u5E08\u4E4B\u5323\u5C0F" + rect: + serializedVersion: 2 + x: 3648 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 231fec86c70a02f70800000000000000 + internalID: 9160498098266370354 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE7\u5320\u7CBE\u901A" + rect: + serializedVersion: 2 + x: 3680 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aff5e801b7b02db00800000000000000 + internalID: 851755902713094138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE8\u5634\u5947\u8DB3" + rect: + serializedVersion: 2 + x: 3712 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8f1a418ec33d35f0800000000000000 + internalID: -775406598812459126 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE8\u578B\u7F8A\u89D2" + rect: + serializedVersion: 2 + x: 3744 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a22c90ef84ee1160800000000000000 + internalID: 6998282177580114600 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE8\u5927\u7684\u7F8A\u89D2" + rect: + serializedVersion: 2 + x: 3776 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b5fa1d979662b710800000000000000 + internalID: 1707540010088723891 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE8\u7075\u65A7" + rect: + serializedVersion: 2 + x: 3808 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b39f0eaeba0e6eb0800000000000000 + internalID: -4724827144984751179 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE8\u7075\u9E1F" + rect: + serializedVersion: 2 + x: 3840 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34b1f11ada65d01b0800000000000000 + internalID: -5688795450566567101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE8\u725B\u76AE\u9769" + rect: + serializedVersion: 2 + x: 3872 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34b5602f6e09c4450800000000000000 + internalID: 6074389318993337155 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE8\u8725\u9A91\u5BA0" + rect: + serializedVersion: 2 + x: 3904 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34185902b9fe21470800000000000000 + internalID: 8364010907526070595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE8\u87D2\u76AE" + rect: + serializedVersion: 2 + x: 3936 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d3a390d68f98c850800000000000000 + internalID: 6397538672053560276 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DE8\u9619" + rect: + serializedVersion: 2 + x: 3968 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e50b1b067e0f17800800000000000000 + internalID: 608532301222096990 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5A74\u5B81\u4EB2\u542F" + rect: + serializedVersion: 2 + x: 4000 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a43a03f04708f0a40800000000000000 + internalID: 5336625319416734538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C501\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 4032 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: acb0160b84a843f60800000000000000 + internalID: 8013181681800383434 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C501\u62A4\u8155" + rect: + serializedVersion: 2 + x: 4064 + y: 3200 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14f8726f226a767a0800000000000000 + internalID: -6383951277685502143 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C501\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 0 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02e8b831e1ee1c730800000000000000 + internalID: 4017754155535535648 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C501\u978B\u5B50" + rect: + serializedVersion: 2 + x: 32 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12d9be22197c70530800000000000000 + internalID: 3821242235017207073 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C502\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 64 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e50f1e94815ad6250800000000000000 + internalID: 5939585007308894302 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C502\u62A4\u8155" + rect: + serializedVersion: 2 + x: 96 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 802d1909d678ceb70800000000000000 + internalID: 8929661065815511560 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C502\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 128 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7886f03192d91ed90800000000000000 + internalID: -7070197140255971193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C502\u978B\u5B50" + rect: + serializedVersion: 2 + x: 160 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3094d378a2cdb3190800000000000000 + internalID: -7981543839368394493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C503\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 192 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45af19cc84dfd0750800000000000000 + internalID: 6272948345108560468 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C503\u62A4\u8155" + rect: + serializedVersion: 2 + x: 224 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 992563d00f74a7180800000000000000 + internalID: -9116895399318760807 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C503\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 256 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c85a0b647a45c3700800000000000000 + internalID: 521384734290388364 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C503\u978B\u5B50" + rect: + serializedVersion: 2 + x: 288 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 669f45ce5f38dc350800000000000000 + internalID: 6038627767628921190 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C504\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 320 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e3ed62e11fcacb30800000000000000 + internalID: 4308483669253546982 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C504\u62A4\u8155" + rect: + serializedVersion: 2 + x: 352 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd789cb2c31e5ad50800000000000000 + internalID: 6748047265233471455 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C504\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 384 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a717e754c8622e10800000000000000 + internalID: 2171413162843641760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4E13\u7528\u670D\u88C504\u978B\u5B50" + rect: + serializedVersion: 2 + x: 416 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac57067865d037870800000000000000 + internalID: 8679295572162672074 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u4ED9\u9B54\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 448 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 545c57facf74b86c0800000000000000 + internalID: -4140136281835977403 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u5927\u5E08" + rect: + serializedVersion: 2 + x: 480 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1dc7a07047a80410800000000000000 + internalID: 1443587575782034719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u5E08\u661F\u76D8" + rect: + serializedVersion: 2 + x: 512 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f56299503fa8a8180800000000000000 + internalID: -9112318119655168417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u6BD2\u5A03\u5A03" + rect: + serializedVersion: 2 + x: 544 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 092f1ea9f324b4180800000000000000 + internalID: -9130130978614676848 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DEB\u6C34\u4F5B\u5974\u7684\u9547\u9B42\u724C" + rect: + serializedVersion: 2 + x: 576 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f73bc21106707da0800000000000000 + internalID: -5949125360774072329 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DF1" + rect: + serializedVersion: 2 + x: 608 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a56fa2285d4d0f290800000000000000 + internalID: -7858547336284539302 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DF3" + rect: + serializedVersion: 2 + x: 640 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 294667916fd34be70800000000000000 + internalID: 9129990471785276562 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DF4\u4E54\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 672 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bfe2cf492a7b1f440800000000000000 + internalID: 4967953772878507771 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DF4\u6D1B\u514B\u6D6E\u96D5\u7ACB\u67DC" + rect: + serializedVersion: 2 + x: 704 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 597afec63fd5e6e20800000000000000 + internalID: 3345714873268938645 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DF4\u6D1B\u514B\u7687\u5BB6\u5C55\u793A\u67DC" + rect: + serializedVersion: 2 + x: 736 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 976f0c3802e806290800000000000000 + internalID: -7899157476107291015 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DF4\u8700\u665A\u6E14\u4EAD" + rect: + serializedVersion: 2 + x: 768 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d802aac92a1a6aba0800000000000000 + internalID: -6077992927304736627 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DF4\u9ECE\u65F6\u5C1A\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 800 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fadd7c4571aae7c10800000000000000 + internalID: 2053265497310879151 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DF4\u9ECE\u65F6\u5C1A\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 832 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fec0e519293ee1e0800000000000000 + internalID: -2166731522095132936 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DF4\u9ECE\u65F6\u5C1A\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 864 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 459f664f0d6f23c40800000000000000 + internalID: 5490722273032075604 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DF4\u9ECE\u65F6\u5C1A\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 896 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 80b80bf7200ddd420800000000000000 + internalID: 2656508064369249032 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DFD\u4E4B\u8868\u5FBD" + rect: + serializedVersion: 2 + x: 928 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ce81b20e899bbfb0800000000000000 + internalID: -4630938956610826555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5DFD\u4E4B\u9B42" + rect: + serializedVersion: 2 + x: 960 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c1b8bb3cfed57220800000000000000 + internalID: 2483135944479781318 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E02\u573A" + rect: + serializedVersion: 2 + x: 992 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c571995831631e660800000000000000 + internalID: 7413265919102228316 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E03" + rect: + serializedVersion: 2 + x: 1024 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8b710fe68d729ef0800000000000000 + internalID: -102881822987158646 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E03\u5A03\u5A03" + rect: + serializedVersion: 2 + x: 1056 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6bc59b010f9b9efc0800000000000000 + internalID: -3465033997561013066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E03\u5A03\u5A03\uFF08\u84DD\uFF09" + rect: + serializedVersion: 2 + x: 1088 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 620942700bf9d3420800000000000000 + internalID: 2611418937327652902 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E03\u5DFE" + rect: + serializedVersion: 2 + x: 1120 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2ac48a5cd6883140800000000000000 + internalID: 4699654492130691630 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E03\u62A4\u8155\u7EE3\u9762" + rect: + serializedVersion: 2 + x: 1152 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e9d285632c698690800000000000000 + internalID: -7599423996928271903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E03\u6599" + rect: + serializedVersion: 2 + x: 1184 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4f8978a2a46e33c0800000000000000 + internalID: -4377951137983525045 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E03\u6CD5\u672F\u978B\u5E95" + rect: + serializedVersion: 2 + x: 1216 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d780cbab1d5b6bbd0800000000000000 + internalID: -2614702621256316803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E03\u6CD5\u888D\u8863\u895F" + rect: + serializedVersion: 2 + x: 1248 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee9811d8210c7a330800000000000000 + internalID: 3722154802953685486 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E03\u6CD5\u88E4\u4E0B\u6446" + rect: + serializedVersion: 2 + x: 1280 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db9989a006e28db30800000000000000 + internalID: 4312247633236761021 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E03\u7075\u529B\u5E61\u7EE6" + rect: + serializedVersion: 2 + x: 1312 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09d2bded89e20c370800000000000000 + internalID: 8340717743998971280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E03\u9999\u56CA" + rect: + serializedVersion: 2 + x: 1344 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf9f536f08a0a14e0800000000000000 + internalID: -2010282734664680964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E05\u54E5\u770B\u8FD9\u91CC" + rect: + serializedVersion: 2 + x: 1376 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1cc91e8943c65d80800000000000000 + internalID: -8262201745680511974 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E0C\u671B\u4E4B\u5149" + rect: + serializedVersion: 2 + x: 1408 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be8f7925882f85d60800000000000000 + internalID: 7879314215399848171 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E0C\u671B\u9752\u77F3\u98CE\u8F66" + rect: + serializedVersion: 2 + x: 1440 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ab9067191f2094d0800000000000000 + internalID: -3129949956209599584 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E0C\u814A\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1472 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8305b721b6794c00800000000000000 + internalID: 885369305002476431 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E0C\u814A\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1504 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b67feedaf9fb6b00800000000000000 + internalID: 823026212802623152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E0C\u814A\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1536 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49a304d241f82e080800000000000000 + internalID: -9159601375296865644 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E0C\u814A\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1568 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 384c9128691a66460800000000000000 + internalID: 7234647519217173635 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E0C\u814A\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1600 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2783e678ff40afe60800000000000000 + internalID: 7996709583885056114 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E0C\u814A\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1632 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9717fb2398dce6e00800000000000000 + internalID: 1039994553114784121 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E1D" + rect: + serializedVersion: 2 + x: 1664 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4b8fc0ca4447e470800000000000000 + internalID: 8423776715872897866 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E1D\u661F\u5361" + rect: + serializedVersion: 2 + x: 1696 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f125f163b98b06920800000000000000 + internalID: 2981585930086732319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E1D\u738B" + rect: + serializedVersion: 2 + x: 1728 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7176fb341e67df40800000000000000 + internalID: 5753188082173505917 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E1D\u86EE\u9524" + rect: + serializedVersion: 2 + x: 1760 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8e6eeb704a2be100800000000000000 + internalID: 138250670010429069 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E1D\u9AA8" + rect: + serializedVersion: 2 + x: 1792 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f20b0320d0a2d5450800000000000000 + internalID: 6079061307379724335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E2E\u6D3E\u72EC\u9738\u5929\u4E0B" + rect: + serializedVersion: 2 + x: 1824 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e641bdae0142fa00800000000000000 + internalID: 788764416042682083 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E2E\u6D3E\u96C6\u7ED3\u4EE4" + rect: + serializedVersion: 2 + x: 1856 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c99c8fcd34fbb2de0800000000000000 + internalID: -1356780564531066468 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E38\u6625\u85E4\u5341\u5B57\u82B1\u67B6" + rect: + serializedVersion: 2 + x: 1888 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f4cc62ff505a9390800000000000000 + internalID: -7810842230701374221 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E38\u9752\u679C" + rect: + serializedVersion: 2 + x: 1920 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f7cabd4cad42c490800000000000000 + internalID: -7727528608180549648 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E38\u9752\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1952 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c90b307122991550800000000000000 + internalID: 6132093039956134341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E74" + rect: + serializedVersion: 2 + x: 1984 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2256be025e49ed80800000000000000 + internalID: -8220953530447015380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E74\u517D" + rect: + serializedVersion: 2 + x: 2016 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3104a5691f16403f0800000000000000 + internalID: -935515132348710893 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E74\u5E74\u6709\u4F59" + rect: + serializedVersion: 2 + x: 2048 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a0af877921bca520800000000000000 + internalID: 2714739467055243424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E74\u5E74\u6709\u9C7C\u5782\u706F" + rect: + serializedVersion: 2 + x: 2080 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21618c2dbb092d030800000000000000 + internalID: 3518033395299390994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E74\u7CD5" + rect: + serializedVersion: 2 + x: 2112 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b5dee6c8fbee0f70800000000000000 + internalID: 9155514546212754868 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E76\u8482\u83B2\u82B1" + rect: + serializedVersion: 2 + x: 2144 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1701bd0468f93cc0800000000000000 + internalID: -3730677707689621732 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E78\u8FD0\u6597\u7BF7 " + rect: + serializedVersion: 2 + x: 2176 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc1ba8f25451edb20800000000000000 + internalID: 3160987375355212237 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E78\u8FD0\u6597\u7BF7" + rect: + serializedVersion: 2 + x: 2208 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2526101e5def806a0800000000000000 + internalID: -6482651469043375534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E78\u8FD0\u73CA\u745A" + rect: + serializedVersion: 2 + x: 2240 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09c663d2799759900800000000000000 + internalID: 690591808076803216 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E78\u8FD0\u78A7\u73BA" + rect: + serializedVersion: 2 + x: 2272 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54090ffa65ce2e990800000000000000 + internalID: -7358058984106848187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u4ED9\u77F3\u7BB1\u5B5032" + rect: + serializedVersion: 2 + x: 2304 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f540987b8315812d0800000000000000 + internalID: -3307804622264400801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u5929\u6212" + rect: + serializedVersion: 2 + x: 2336 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ef4061e04f244bb0800000000000000 + internalID: -4952781734495105056 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u5929\u6B8B\u9875" + rect: + serializedVersion: 2 + x: 2368 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cbca0bd503e35dd70800000000000000 + internalID: 9067221802231573692 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u5F69\u7FC5\u8180" + rect: + serializedVersion: 2 + x: 2400 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 845b83d945d5365e0800000000000000 + internalID: -1917586398333323960 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u5F69\u87E0\u8FD0\u78A7\u73BA" + rect: + serializedVersion: 2 + x: 2432 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6153379e5aa0ed2f0800000000000000 + internalID: -946307163998702314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u5F69\u9065\u6781\u78A7\u73BA" + rect: + serializedVersion: 2 + x: 2464 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bc57bf8c7cc64cb0800000000000000 + internalID: -4879988310850184012 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u660E\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2496 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 231331ba0aee2a3f0800000000000000 + internalID: -890887402433597134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u6C14\u51B0\u5251" + rect: + serializedVersion: 2 + x: 2528 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c30db48b0b26f94a0800000000000000 + internalID: -6584435619046633412 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u7075\u6212\u6307\uFF08\u9633\uFF09" + rect: + serializedVersion: 2 + x: 2560 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f46d6ec743d07f830800000000000000 + internalID: 4104764104456459855 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u7075\u6212\u6307\uFF08\u9634\uFF09" + rect: + serializedVersion: 2 + x: 2592 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 090d86c7c1a9512b0800000000000000 + internalID: -5614411913310449520 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u7075\u7B26" + rect: + serializedVersion: 2 + x: 2624 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12ba6c5c93b105ee0800000000000000 + internalID: -1274488759600633055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u80E7\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 2656 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a5b587d20aa2d560800000000000000 + internalID: 7337113672122480040 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u821E\u9690\u6708\u5251" + rect: + serializedVersion: 2 + x: 2688 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c75caab74a6cd7e0800000000000000 + internalID: -1739398499764774975 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u91D1\u5B88\u795E\u7B26" + rect: + serializedVersion: 2 + x: 2720 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 163111da92040c210800000000000000 + internalID: 1351150435952563041 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u91D1\u62A4\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 2752 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 703ec9aa8b98cf300800000000000000 + internalID: 287255902474265351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u9B54\u5C65" + rect: + serializedVersion: 2 + x: 2784 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf2ae8a2c0de863c0800000000000000 + internalID: -4365979202226314501 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u9B54\u6212\uFF08\u9633\uFF09" + rect: + serializedVersion: 2 + x: 2816 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 31aa07c4756cfe6a0800000000000000 + internalID: -6417692865732761069 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u9B54\u6212\uFF08\u9634\uFF09" + rect: + serializedVersion: 2 + x: 2848 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 35d1f868e6f63deb0800000000000000 + internalID: -4696287465922683565 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u9B54\u62A4\u624B" + rect: + serializedVersion: 2 + x: 2880 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3d91086f7df1d860800000000000000 + internalID: 7553096773724642623 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u9B54\u6CD5\u8863" + rect: + serializedVersion: 2 + x: 2912 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7b704f6225ad4240800000000000000 + internalID: 4777656347023932286 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u9B54\u7389" + rect: + serializedVersion: 2 + x: 2944 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 353aa01c326139f70800000000000000 + internalID: 9192715607211680595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u9B54\u88E4" + rect: + serializedVersion: 2 + x: 2976 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f59a8339383b9e00800000000000000 + internalID: 1052496756250154489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7B\u9B54\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3008 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7054ba5481a6ebb40800000000000000 + internalID: 5457916450900231431 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7C\u5E74\u72D7" + rect: + serializedVersion: 2 + x: 3040 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e2344fc06043cad0800000000000000 + internalID: -2683230168444292377 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7C\u7EA4\u5634\u5947\u8DB3\u7684\u7FBD\u6BDB" + rect: + serializedVersion: 2 + x: 3072 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ba2fcc7fedffa590800000000000000 + internalID: -7660625236100961610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7C\u7EB9\u874E" + rect: + serializedVersion: 2 + x: 3104 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9310607236500420800000000000000 + internalID: 2594168159999103898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7C\u874E\u5C3E" + rect: + serializedVersion: 2 + x: 3136 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33dc86a04e6936610800000000000000 + internalID: 1613298997700119859 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7C\u9E70\u5C0F\u8349" + rect: + serializedVersion: 2 + x: 3168 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2fe8615ae89d5c8b0800000000000000 + internalID: -5132456993640509710 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u5170\u7684\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3200 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ffb48a79042d53c0800000000000000 + internalID: -4369296440350687239 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u51A5\u4E4B\u773C" + rect: + serializedVersion: 2 + x: 3232 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dacde8039e0d0f0a0800000000000000 + internalID: -6849745333269898067 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u51A5\u4E4B\u8840" + rect: + serializedVersion: 2 + x: 3264 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a075a89c78b95200800000000000000 + internalID: 169369306279538851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u51A5\u51A0" + rect: + serializedVersion: 2 + x: 3296 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f52c8e24cf7d9630800000000000000 + internalID: 3935442129962935792 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u51A5\u5229\u722A" + rect: + serializedVersion: 2 + x: 3328 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c941ac65d2c6bcdf0800000000000000 + internalID: -158914419856108388 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u51A5\u5C65" + rect: + serializedVersion: 2 + x: 3360 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 66105915b3fa229d0800000000000000 + internalID: -2800483348964376218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u51A5\u6212" + rect: + serializedVersion: 2 + x: 3392 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca961ba3635940a60800000000000000 + internalID: 7639394928072681900 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u51A5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3424 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8df79aaab36bc5eb0800000000000000 + internalID: -4729705141263302696 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u51A5\u76AE\u6BDB" + rect: + serializedVersion: 2 + x: 3456 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae3e68106fb97d6d0800000000000000 + internalID: -2965730348710304790 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u51A5\u8089\u5757" + rect: + serializedVersion: 2 + x: 3488 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e88a731ae81fbcf70800000000000000 + internalID: 9208719457981540494 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u51A5\u8170\u4F69" + rect: + serializedVersion: 2 + x: 3520 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: defb1dc83e2220530800000000000000 + internalID: 3819653794679078893 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u51A5\u8F7B\u94E0" + rect: + serializedVersion: 2 + x: 3552 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0450e97122c807b70800000000000000 + internalID: 8894763342109738304 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u51A5\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3584 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b97dc0a0db8ffed90800000000000000 + internalID: -7066155799519897701 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u6028\u7684\u7075\u5149" + rect: + serializedVersion: 2 + x: 3616 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03d2c1ea4077aebe0800000000000000 + internalID: -1447213468261536464 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u6D6E\u4E4B\u7075" + rect: + serializedVersion: 2 + x: 3648 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52e67673b3f027f30800000000000000 + internalID: 4571733318741487141 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u6D6E\u7384\u5149" + rect: + serializedVersion: 2 + x: 3680 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41190a28c954b1420800000000000000 + internalID: 2601749748245369108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u7075\u6218\u58EB" + rect: + serializedVersion: 2 + x: 3712 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 95f8486871cde2cd0800000000000000 + internalID: -2580883542837522599 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u9B42\u7075\u9F9B" + rect: + serializedVersion: 2 + x: 3744 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6d1cf17dc431911e0800000000000000 + internalID: -2226727320010374698 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7D\u9B42\u73E0" + rect: + serializedVersion: 2 + x: 3776 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9de7532d733493a00800000000000000 + internalID: 736693921080770265 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7F\u5F18\u660E\u96C6" + rect: + serializedVersion: 2 + x: 3808 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d21c85cfc72f4150800000000000000 + internalID: 5858945413558309588 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7F\u64AD\u5587\u53ED" + rect: + serializedVersion: 2 + x: 3840 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b96e27f0dc524810800000000000000 + internalID: 1748061657943140788 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7F\u6CD5\u68CD" + rect: + serializedVersion: 2 + x: 3872 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c4352bd2d85b6ee0800000000000000 + internalID: -1266821207531637559 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7F\u6D4E\u8F6E" + rect: + serializedVersion: 2 + x: 3904 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91588388f6938f1b0800000000000000 + internalID: -5622680983582505703 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E7F\u76EE\u65E0\u8FB9\u77F3" + rect: + serializedVersion: 2 + x: 3936 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f138ae50bda232150800000000000000 + internalID: 5846563861442495263 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E86" + rect: + serializedVersion: 2 + x: 3968 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8474cf1bea5e277c0800000000000000 + internalID: -4074942174343706808 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E87\u4F51\u5723\u7075" + rect: + serializedVersion: 2 + x: 4000 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9bf34e0dbf3b409e0800000000000000 + internalID: -1656000868842717255 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E87\u62A4\u7B26\u77F3" + rect: + serializedVersion: 2 + x: 4032 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5badce0de9de84f20800000000000000 + internalID: 3407234384471579317 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E94\u9F99\u4E4B\u5A01" + rect: + serializedVersion: 2 + x: 4064 + y: 3168 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 332af15bd03ceba20800000000000000 + internalID: 3080113658808738355 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E94\u9F99\u4E4B\u722A" + rect: + serializedVersion: 2 + x: 0 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 167ced941a8fc9800800000000000000 + internalID: 620644220283045729 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E94\u9F99\u6218\u7532" + rect: + serializedVersion: 2 + x: 32 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bfb58091ca2facfb0800000000000000 + internalID: -4626618846201488389 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E94\u9F99\u817F\u7532" + rect: + serializedVersion: 2 + x: 64 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: caef6dee066b5adc0800000000000000 + internalID: -3628293397336883540 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E94\u9F99\u8896\u7532" + rect: + serializedVersion: 2 + x: 96 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a013d29deec0553a0800000000000000 + internalID: -6677416652521524982 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E94\u9F99\u9774" + rect: + serializedVersion: 2 + x: 128 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 830b62b8dea94def0800000000000000 + internalID: -84272147980701640 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5E9A" + rect: + serializedVersion: 2 + x: 160 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 085c4eec3575ec130800000000000000 + internalID: 3588901970525865344 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5EA6\u52AB\u5251" + rect: + serializedVersion: 2 + x: 192 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97822b647d989ef80800000000000000 + internalID: -8076772899015219079 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5EA6\u52AB\u9879\u94FE" + rect: + serializedVersion: 2 + x: 224 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27f70340c68c6ec40800000000000000 + internalID: 5541336757778284402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5EB7\u4E43\u99A8" + rect: + serializedVersion: 2 + x: 256 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49fa4234c41b37ca0800000000000000 + internalID: -6020273335762112620 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F00" + rect: + serializedVersion: 2 + x: 288 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27ede25bf8ea53310800000000000000 + internalID: 1384204392729599602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F00\u5929\u957F\u65A7" + rect: + serializedVersion: 2 + x: 320 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a35782b944769d30800000000000000 + internalID: 4437862342696850337 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F00\u7A8D\u77F3" + rect: + serializedVersion: 2 + x: 352 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa6cae2aac6f5feb0800000000000000 + internalID: -4686568487032011094 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F02\u754C\u7CBE\u9B44" + rect: + serializedVersion: 2 + x: 384 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7183b36820dbcc6d0800000000000000 + internalID: -2968790235804387305 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F02\u8C61\u5B9D\u76D2" + rect: + serializedVersion: 2 + x: 416 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7fb88f07379cadd0800000000000000 + internalID: -2473435832593629315 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F13" + rect: + serializedVersion: 2 + x: 448 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b740ccd1bfc994810800000000000000 + internalID: 1750102532560782459 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F13\u7F8A" + rect: + serializedVersion: 2 + x: 480 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a5d181cd572a6700800000000000000 + internalID: 534282789428778408 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F20\u90FA\u8138\u8C31" + rect: + serializedVersion: 2 + x: 512 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a24194756a3c19a0800000000000000 + internalID: -6261065174530047324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F25\u52D2\u83E9\u8428" + rect: + serializedVersion: 2 + x: 544 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1eeedefb2a1bfb70800000000000000 + internalID: 8933763062081449498 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F25\u52D2\u83E9\u8428\u788E\u7247" + rect: + serializedVersion: 2 + x: 576 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 315559f4228a737c0800000000000000 + internalID: -4091616871125265133 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F25\u6492\u53CC\u5C42\u6728\u684C" + rect: + serializedVersion: 2 + x: 608 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e581ced06dda3f2d0800000000000000 + internalID: -3246059771535812514 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F26\u7EB9\u6267\u58F6" + rect: + serializedVersion: 2 + x: 640 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9391ff0f60733a720800000000000000 + internalID: 2856187091635607865 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F29ak47" + rect: + serializedVersion: 2 + x: 672 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2262242740dd7b030800000000000000 + internalID: 3510517445725136418 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F29\u85D5\u8282" + rect: + serializedVersion: 2 + x: 704 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6592643281d27e80800000000000000 + internalID: -8182247215823940243 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F2F\u89D2\u86A9\u864E\u94DC\u517D" + rect: + serializedVersion: 2 + x: 736 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86ac929e86346aea0800000000000000 + internalID: -5861923747108631960 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F39\u6307\u5341\u5E74\u4E00\u7409\u7483" + rect: + serializedVersion: 2 + x: 768 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96fdb4bd879449ff0800000000000000 + internalID: -30318514060664983 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F3A\u529B\u80F6" + rect: + serializedVersion: 2 + x: 800 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f55f825427f5c6e0800000000000000 + internalID: -1817775139198118415 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F3A\u6548\u4E5D\u9633\u4E39" + rect: + serializedVersion: 2 + x: 832 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87bd418ffd58ebcb0800000000000000 + internalID: -4846288952017757320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F3A\u6548\u795E\u6C14\u4E38" + rect: + serializedVersion: 2 + x: 864 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d12097b764fa04750800000000000000 + internalID: 6287217797063311901 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F3A\u6548\u91D1\u521B\u836F" + rect: + serializedVersion: 2 + x: 896 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92a5e4ea2ba1a01b0800000000000000 + internalID: -5689705824498329047 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F3A\u9178" + rect: + serializedVersion: 2 + x: 928 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b35cdc5c54b792120800000000000000 + internalID: 2389576616898315579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F52\u5143\u62F3\u5957" + rect: + serializedVersion: 2 + x: 960 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c961963fcfbdc0c0800000000000000 + internalID: -4553772751507068475 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F52\u5143\u76D4" + rect: + serializedVersion: 2 + x: 992 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89c5d662b3a668fc0800000000000000 + internalID: -3492987658698924904 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F52\u53BB\u6765" + rect: + serializedVersion: 2 + x: 1024 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d2fe9cf788bbbce90800000000000000 + internalID: -7004298600510787795 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F52\u5FC3\u5251" + rect: + serializedVersion: 2 + x: 1056 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c26857dd8452fe00800000000000000 + internalID: 1077016229074985668 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F52\u661F\u76D8" + rect: + serializedVersion: 2 + x: 1088 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7b5bd19b40713c90800000000000000 + internalID: -7191843660062041218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F52\u771F\u51A0" + rect: + serializedVersion: 2 + x: 1120 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fbc04b7c460c56700800000000000000 + internalID: 533043669993000127 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69" + rect: + serializedVersion: 2 + x: 1152 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e420ce0db5be22ca0800000000000000 + internalID: -6043008970398105010 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69\u4E39\u7C89" + rect: + serializedVersion: 2 + x: 1184 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e54694b5c26539790800000000000000 + internalID: -7524575803895880610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69\u4E91\u955C" + rect: + serializedVersion: 2 + x: 1216 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6944d1e0ae61a5920800000000000000 + internalID: 2979719297973961878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69\u74F7\u6728\u9999\u82B1\u67B6" + rect: + serializedVersion: 2 + x: 1248 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa6aaaae05e4b40b0800000000000000 + internalID: -5743410790339533142 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69\u753B\u767D\u74F7\u70DF\u76C5" + rect: + serializedVersion: 2 + x: 1280 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e39e47fc19a1a4c0800000000000000 + internalID: -4277952229151960087 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69\u7ED8\u9A8F\u9A6C\u706F\u7B3C\u74F6" + rect: + serializedVersion: 2 + x: 1312 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55bf7445ecabe3ad0800000000000000 + internalID: -2720531729545168043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69\u8272\u7684\u53F6\u5B50" + rect: + serializedVersion: 2 + x: 1344 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a92b54658dd44de0800000000000000 + internalID: -1349710423320221277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69\u8679\u9A6C\u5361\u9F99\u62FC\u76D8" + rect: + serializedVersion: 2 + x: 1376 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4034df38e8c38060800000000000000 + internalID: 6954623149419016269 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69\u86CB" + rect: + serializedVersion: 2 + x: 1408 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f284e15ddf630bb0800000000000000 + internalID: -4971006567334509832 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69\u8776\u7CBE" + rect: + serializedVersion: 2 + x: 1440 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8de67010a21473910800000000000000 + internalID: 1816992623328980696 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69\u8776\u7FFC" + rect: + serializedVersion: 2 + x: 1472 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ced9aad6066c8a10800000000000000 + internalID: 1913016121350020801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69\u9CDE" + rect: + serializedVersion: 2 + x: 1504 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7350ff256407cef50800000000000000 + internalID: 6912022975449335095 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69\u9E6B\u4E4B\u5FC3" + rect: + serializedVersion: 2 + x: 1536 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: befead530d6eee360800000000000000 + internalID: 7200946636143128555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F69\u9E6B\u4E4B\u7FBD" + rect: + serializedVersion: 2 + x: 1568 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a4a12c3a2b10db90800000000000000 + internalID: -7219240334463490910 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u5934\u76D401" + rect: + serializedVersion: 2 + x: 1600 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 15eaa349a68689050800000000000000 + internalID: 5807506526456950353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u5934\u76D402" + rect: + serializedVersion: 2 + x: 1632 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2af990de50c82a980800000000000000 + internalID: -8529100787206742110 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u5934\u76D403" + rect: + serializedVersion: 2 + x: 1664 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 659eee0d613382360800000000000000 + internalID: 7145016981910907222 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u5934\u76D404" + rect: + serializedVersion: 2 + x: 1696 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce26c874aff533240800000000000000 + internalID: 4770261958862332652 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u62AB\u98CE01" + rect: + serializedVersion: 2 + x: 1728 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd962d3f6be7b9a70800000000000000 + internalID: 8834794418257160667 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u62AB\u98CE02" + rect: + serializedVersion: 2 + x: 1760 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75a1c37c7431aab00800000000000000 + internalID: 840505479464229463 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u62AB\u98CE03" + rect: + serializedVersion: 2 + x: 1792 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c29e2c9b3eddbed0800000000000000 + internalID: -2396515079086501176 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u62AB\u98CE04" + rect: + serializedVersion: 2 + x: 1824 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7bc23cdedf345fa40800000000000000 + internalID: 5401298085995556023 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u5934\u76D401" + rect: + serializedVersion: 2 + x: 1856 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48f86fc5eda6595f0800000000000000 + internalID: -750576259612373116 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u5934\u76D402" + rect: + serializedVersion: 2 + x: 1888 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5485f4075e4ffa770800000000000000 + internalID: 8624381077706725445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u5934\u76D403" + rect: + serializedVersion: 2 + x: 1920 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 19b05cba23f250880800000000000000 + internalID: -8645452014991111279 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u5934\u76D404" + rect: + serializedVersion: 2 + x: 1952 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6f96743aee190c1a0800000000000000 + internalID: -6791267783947097610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u62AB\u98CE01" + rect: + serializedVersion: 2 + x: 1984 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9278cd68ecc1b01a0800000000000000 + internalID: -6842343535507896535 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u62AB\u98CE02" + rect: + serializedVersion: 2 + x: 2016 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7fe8dbf3267713dc0800000000000000 + internalID: -3661013758215614729 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u62AB\u98CE03" + rect: + serializedVersion: 2 + x: 2048 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10c729cdfe0081b00800000000000000 + internalID: 799389964056034305 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u62AB\u98CE04" + rect: + serializedVersion: 2 + x: 2080 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0af1604c3202dcb70800000000000000 + internalID: 8920821774875500448 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u5934\u76D401" + rect: + serializedVersion: 2 + x: 2112 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf6a786da4fd9c4a0800000000000000 + internalID: -6572476668650739972 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u5934\u76D402" + rect: + serializedVersion: 2 + x: 2144 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c51976905e96259d0800000000000000 + internalID: -2787048786962706084 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u5934\u76D403" + rect: + serializedVersion: 2 + x: 2176 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 907ada0c33001d4d0800000000000000 + internalID: -3111705645260364023 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u5934\u76D404" + rect: + serializedVersion: 2 + x: 2208 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 95c4c6191b4040700800000000000000 + internalID: 505534218867854425 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u62AB\u98CE01" + rect: + serializedVersion: 2 + x: 2240 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39d84a937835e1510800000000000000 + internalID: 1521745564350582163 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u62AB\u98CE02" + rect: + serializedVersion: 2 + x: 2272 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4db1aa265f6874f90800000000000000 + internalID: -6969453509852128300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u62AB\u98CE03" + rect: + serializedVersion: 2 + x: 2304 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14dc4be2bcc4544b0800000000000000 + internalID: -5456870937943814847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u62AB\u98CE04" + rect: + serializedVersion: 2 + x: 2336 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 38bf74905810a1390800000000000000 + internalID: -7846957729841677437 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u65CF\u8170\u724C" + rect: + serializedVersion: 2 + x: 2368 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e393aa198018dc10800000000000000 + internalID: 2078429409074975716 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F71\u9041\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2400 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c30666840dab3b790800000000000000 + internalID: -7515457949420593092 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F79\u9B3C\u5F29" + rect: + serializedVersion: 2 + x: 2432 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79f76f58ee7d3b180800000000000000 + internalID: -9100693002535927913 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F80\u590D\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2464 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8785de1474f7f71a0800000000000000 + internalID: -6809584167535421320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F88\u540A\u7684\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 2496 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d85be77863ba4de60800000000000000 + internalID: 7986196289924543885 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5F8B\u4EE4" + rect: + serializedVersion: 2 + x: 2528 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68164fbf390bf0830800000000000000 + internalID: 4039641540408402310 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FA1\u7532\u7B26" + rect: + serializedVersion: 2 + x: 2560 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 18342af2f08f5ae80800000000000000 + internalID: -8167849605059165311 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FA1\u9F99\u5B9D\u9274" + rect: + serializedVersion: 2 + x: 2592 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49bed14348c79bb70800000000000000 + internalID: 8915293844608510868 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FAE\u5149\u4E4B\u5C18" + rect: + serializedVersion: 2 + x: 2624 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a310da7ce91dadd10800000000000000 + internalID: 2151262251907875130 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FC3" + rect: + serializedVersion: 2 + x: 2656 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd61b33cbb36c8620800000000000000 + internalID: 2777704728266217183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FC3\u5F62\u7EA2\u5B9D\u77F3" + rect: + serializedVersion: 2 + x: 2688 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f99353e3774c07e50800000000000000 + internalID: 6805155053380647327 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FC3\u5FC3\u76F8\u6620" + rect: + serializedVersion: 2 + x: 2720 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f344e337b5b03cfa0800000000000000 + internalID: -5781765009210194881 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FC3\u601C\u6C34" + rect: + serializedVersion: 2 + x: 2752 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94bfd3b8b8e082d40800000000000000 + internalID: 5559709732488215369 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FC3\u624B\u76F8\u4F9D\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2784 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 64fe5404b350d6ba0800000000000000 + internalID: -6094208968722878650 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FC3\u624B\u76F8\u4F9D\u5973\u88C5\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 2816 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c37ca1ec6eeb4e50800000000000000 + internalID: 6794786614228579271 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FC3\u624B\u76F8\u4F9D\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2848 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 924086926b05b4710800000000000000 + internalID: 1678524029434594345 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FC3\u624B\u76F8\u4F9D\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2880 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 824ab444e790d4040800000000000000 + internalID: 4633370029550445608 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FC3\u624B\u76F8\u4F9D\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2912 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0339c74b9aae87fc0800000000000000 + internalID: -3496787096054754512 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FC3\u624B\u76F8\u4F9D\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2944 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8996989f41272e90800000000000000 + internalID: -7050630065879082614 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FC3\u6709\u7075\u7280" + rect: + serializedVersion: 2 + x: 2976 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b90b4ef983a0c890800000000000000 + internalID: -7439766771343881804 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FCD\u51AC\u7965\u4E91\u67DC" + rect: + serializedVersion: 2 + x: 3008 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 01abf7961afaeda20800000000000000 + internalID: 3089099502217312784 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FD8\u5C18\u86DF\u9F99\u817E" + rect: + serializedVersion: 2 + x: 3040 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0e75a3e238dae290800000000000000 + internalID: -7860232486542541297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FD8\u5FE7\u5760\u5B50" + rect: + serializedVersion: 2 + x: 3072 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e0307613a153ddca0800000000000000 + internalID: -5990573542718635250 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FE0\u4E49\u5173\u5723\u9644\u4F53" + rect: + serializedVersion: 2 + x: 3104 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e57d4cfd5eaa052b0800000000000000 + internalID: -5597786432543074466 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FE0\u4E49\u706B\u7EA2\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3136 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb7e522c09ac90a20800000000000000 + internalID: 3029174947464734655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FE0\u4E49\u767D\u96FE\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3168 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc2249b79e4be7420800000000000000 + internalID: 2629738147324633805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FE0\u4E49\u9510\u5229\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3200 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b80f4d6bec66f1e20800000000000000 + internalID: 3323488088039420043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FE0\u4E49\u9EC4\u6C89\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3232 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 28e9f929e99291c80800000000000000 + internalID: -8351598272940368254 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FE0\u52C7\u78E8\u5200\u77F3" + rect: + serializedVersion: 2 + x: 3264 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6bfbb746ae314ae20800000000000000 + internalID: 3360833119354339254 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FE7\u90C1\u4E4B\u773C" + rect: + serializedVersion: 2 + x: 3296 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02a7943ebb99f9570800000000000000 + internalID: 8475662055985740320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u5FEB" + rect: + serializedVersion: 2 + x: 3328 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 565ef86a354eb44b0800000000000000 + internalID: -5455015475701357211 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6012\u653E" + rect: + serializedVersion: 2 + x: 3360 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5d029a4cf080cdf0800000000000000 + internalID: -161987765514138276 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6012\u65CC\u76D4" + rect: + serializedVersion: 2 + x: 3392 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16ab21ffe98940650800000000000000 + internalID: 6198246795820317281 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6012\u6C99\u8349" + rect: + serializedVersion: 2 + x: 3424 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 019f7638427189410800000000000000 + internalID: 1483961522809469200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6012\u6D77\u84DD\u9CB8" + rect: + serializedVersion: 2 + x: 3456 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f7044e1e60fe1ad0800000000000000 + internalID: -2729479968395098120 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6012\u706B\u4E4B\u6838" + rect: + serializedVersion: 2 + x: 3488 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10246946908dab850800000000000000 + internalID: 6393660155859714561 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6012\u773C" + rect: + serializedVersion: 2 + x: 3520 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba153af9b5c03fbe0800000000000000 + internalID: -1444797467795959381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6012\u96F7\u957F\u9524" + rect: + serializedVersion: 2 + x: 3552 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60be6a40eaee1a560800000000000000 + internalID: 7323396900250905350 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6021\u60C5\u60A6\u6027" + rect: + serializedVersion: 2 + x: 3584 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 00e7e160c37ec6580800000000000000 + internalID: -8832430524193669632 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6027\u611F\u5957\u88D9\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3616 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3c497ad9d0a97c80800000000000000 + internalID: -8324445578683921348 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6027\u611F\u5957\u88D9\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 3648 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0cd19dcd22acf1e90800000000000000 + internalID: -7052696240355992128 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6027\u611F\u5957\u88D9\u978B" + rect: + serializedVersion: 2 + x: 3680 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fd67d1566d3b0a30800000000000000 + internalID: 4182504188612668916 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6027\u611F\u6DD1\u5973\u88C5\u8863" + rect: + serializedVersion: 2 + x: 3712 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 652ab041dd29c8790800000000000000 + internalID: -7526479399021206954 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6027\u611F\u6DD1\u5973\u88C5\u88E4" + rect: + serializedVersion: 2 + x: 3744 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b1a5026d34b34b40800000000000000 + internalID: 5423376552014750128 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6027\u611F\u6DD1\u5973\u88C5\u978B" + rect: + serializedVersion: 2 + x: 3776 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb0040c331a258e30800000000000000 + internalID: 4505053264353689787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6027\u611F\u76AE\u8863\u6218\u58EB\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 3808 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae0afc25d9b7e4070800000000000000 + internalID: 8092541496060780778 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6027\u611F\u76AE\u8863\u6218\u58EB\u5973\u88C5" + rect: + serializedVersion: 2 + x: 3840 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48aa1acfa88c18a50800000000000000 + internalID: 6521714234678684292 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6027\u611F\u76AE\u8863\u6218\u58EB\u5973\u978B" + rect: + serializedVersion: 2 + x: 3872 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e57195e2b94eb360800000000000000 + internalID: 7187263088034412004 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6028\u7075\u5854\u788E\u7247" + rect: + serializedVersion: 2 + x: 3904 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4276a7110d48c08c0800000000000000 + internalID: -4031701537222138076 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6028\u9B42\u5C65" + rect: + serializedVersion: 2 + x: 3936 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4fa00662e9114730800000000000000 + internalID: 3981492005736853324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6028\u9B42\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3968 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f08ddff33dfa4ad30800000000000000 + internalID: 4441868454340712463 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6028\u9B42\u888D" + rect: + serializedVersion: 2 + x: 4000 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c09077ab0baa4e940800000000000000 + internalID: 5324568335478098188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6028\u9B42\u88E4" + rect: + serializedVersion: 2 + x: 4032 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f5b54c8bb061dbb30800000000000000 + internalID: 4304621058436389727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u602A\u7269\u6B8B\u9AB8" + rect: + serializedVersion: 2 + x: 4064 + y: 3136 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79dc873b3e4423c40800000000000000 + internalID: 5490526640477359511 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u602A\u7269\u7279\u5F81" + rect: + serializedVersion: 2 + x: 0 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 237c3d59990a0fec0800000000000000 + internalID: -3535149125981714638 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6052\u7206\u5251" + rect: + serializedVersion: 2 + x: 32 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1d0cb440760b43b0800000000000000 + internalID: -5527317038407873253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6068\u522B\u79BB" + rect: + serializedVersion: 2 + x: 64 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 068caaea488932120800000000000000 + internalID: 2387919923070027872 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6069\u6069\u7231\u7231" + rect: + serializedVersion: 2 + x: 96 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7f6d27f86e349f40800000000000000 + internalID: 5734276846093954940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u606D\u559C\u53D1\u8D22" + rect: + serializedVersion: 2 + x: 128 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e17cf589fc6619710800000000000000 + internalID: 1698251576296064798 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6076\u7075\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 160 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d0575715e1a8b650800000000000000 + internalID: 6248922488287744217 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6076\u72FC\u738B\u7360\u7259" + rect: + serializedVersion: 2 + x: 192 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb2e295c13f0460b0800000000000000 + internalID: -5736443318920617285 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6076\u9B42\u7075\u9F9B" + rect: + serializedVersion: 2 + x: 224 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d07a1f4ae1a38ff0800000000000000 + internalID: -35006344367279915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6076\u9B54\u56FE\u817E" + rect: + serializedVersion: 2 + x: 256 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b750ac9579fdfbe0800000000000000 + internalID: -1441722022154446924 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6076\u9B54\u57CE\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 288 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34c62790d5bcd89a0800000000000000 + internalID: -6229099109132637117 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6076\u9B54\u57CE\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 320 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9de2f8976e3a4cdc0800000000000000 + internalID: -3619587990221803815 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6076\u9B54\u57CE\u88C5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 352 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23252dd48184c30f0800000000000000 + internalID: -1135953736782163406 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6076\u9B54\u57CE\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 384 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c0cb8d84ddcf8ff0800000000000000 + internalID: -31580359576796988 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6076\u9B54\u57CE\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 416 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57056c763891e8af0800000000000000 + internalID: -392348065362194315 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6076\u9B54\u6B66\u58EB" + rect: + serializedVersion: 2 + x: 448 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 17daf50eb34953fb0800000000000000 + internalID: -4668662453811303055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6076\u9B54\u7684\u5C3E\u5DF4" + rect: + serializedVersion: 2 + x: 480 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c135f91eb418324b0800000000000000 + internalID: -5466383359789804772 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6076\u9B54\u7FBD\u7FFC" + rect: + serializedVersion: 2 + x: 512 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06d9cb9017c4aab20800000000000000 + internalID: 3146411338050084192 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60A0\u563B\u7334_\u5305\u88F9\u56FE\u6807" + rect: + serializedVersion: 2 + x: 544 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6206c5677076755f0800000000000000 + internalID: -768031929695182810 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60A0\u563B\u7334\u7279\u522B_\u5305\u88F9\u56FE\u6807" + rect: + serializedVersion: 2 + x: 576 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06af60b3315c820c0800000000000000 + internalID: -4600210332973598112 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60A0\u6E38\u8170\u9970" + rect: + serializedVersion: 2 + x: 608 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42104a94652861a90800000000000000 + internalID: -7343538835266731740 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60B2\u60AF\u62F3\u5957" + rect: + serializedVersion: 2 + x: 640 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f32b2af2bf778f40800000000000000 + internalID: 5730689457530283000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4E1D\u8282\u97AD" + rect: + serializedVersion: 2 + x: 672 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e583987049e1bf020800000000000000 + internalID: 2376526849498495070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u5973\u4F1E" + rect: + serializedVersion: 2 + x: 704 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 950cf4dc3c78988a0800000000000000 + internalID: -6302356928495370151 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u738B\u5B50\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 736 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7fca4b3120c4c3210800000000000000 + internalID: 1314008763089595639 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u738B\u5B50\u88C5\u5934\u9970" + rect: + serializedVersion: 2 + x: 768 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06ff9c85e8d036110800000000000000 + internalID: 1252860026365280096 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u738B\u5B50\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 800 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 286e21817631f86d0800000000000000 + internalID: -2986146694416898430 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u738B\u5B50\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 832 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c52c4d5f3c428eb0800000000000000 + internalID: -4719125624498936383 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u738B\u5B50\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 864 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aee7b8471a1c03f30800000000000000 + internalID: 4553352122460765930 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u7537\u4F1E" + rect: + serializedVersion: 2 + x: 896 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4d3659edfe1ae470800000000000000 + internalID: 8424580128840236366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u7537\u5929\u9E45\u77ED\u5175" + rect: + serializedVersion: 2 + x: 928 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 72433464d3f4489b0800000000000000 + internalID: -5078847355176668121 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u7537\u5929\u9E45\u957F\u5175" + rect: + serializedVersion: 2 + x: 960 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 732ab7cf4bee32130800000000000000 + internalID: 3540936193140826679 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u7537\u73AB\u7470\u5F13" + rect: + serializedVersion: 2 + x: 992 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ce0cb4372eee2330800000000000000 + internalID: 3688146997018889928 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u7537\u73AB\u7470\u77ED\u5175" + rect: + serializedVersion: 2 + x: 1024 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af7563337cd139ad0800000000000000 + internalID: -2696779010469898246 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u7537\u73AB\u7470\u957F\u5175" + rect: + serializedVersion: 2 + x: 1056 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89225e5e8c1e028d0800000000000000 + internalID: -2873048309295668584 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u7537\u73AB\u7470\u957F\u51751" + rect: + serializedVersion: 2 + x: 1088 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c3669750ee3788c0800000000000000 + internalID: -3997157011004955704 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u8282love" + rect: + serializedVersion: 2 + x: 1120 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bddae6c92f1c9d790800000000000000 + internalID: -7504754056285475365 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u8282\u5DE7\u514B\u529B" + rect: + serializedVersion: 2 + x: 1152 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5ad05bbafa38e430800000000000000 + internalID: 3812361933127998043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u8282\u6C38\u8FDC\u7231\u4F60" + rect: + serializedVersion: 2 + x: 1184 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3576a087fce016ed0800000000000000 + internalID: -2422638840313649325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u8282\u73AB\u7470\u82B1" + rect: + serializedVersion: 2 + x: 1216 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bfd4f30a93330db40800000000000000 + internalID: 5462922670595067387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u8282\u793C\u7269" + rect: + serializedVersion: 2 + x: 1248 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91d6c2ab2e0d0ea50800000000000000 + internalID: 6548463530401361177 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u8282\u8170\u4F69" + rect: + serializedVersion: 2 + x: 1280 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7265ab42c85cb9a60800000000000000 + internalID: 7681950795112797735 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u8282\u8702\u871C" + rect: + serializedVersion: 2 + x: 1312 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a772f8f08c4d8ae80800000000000000 + internalID: -8167043968516806790 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u8282\u90C1\u91D1\u9999" + rect: + serializedVersion: 2 + x: 1344 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf177e2ec560d84d0800000000000000 + internalID: -3130839169939049989 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u82F1\u4F26\u98CE\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1376 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e7487efb4ce537c0800000000000000 + internalID: -4092104875260229660 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u82F1\u4F26\u98CE\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1408 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d79980d1f9e95c670800000000000000 + internalID: 8558421073111587197 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u82F1\u4F26\u98CE\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 1440 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7fc75e027c7361860800000000000000 + internalID: 7500243557822070007 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u82F1\u4F26\u98CE\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1472 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea70fc7f814ea0e10800000000000000 + internalID: 2164793366792832942 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u82F1\u4F26\u98CE\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1504 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc34f6ae9152c2570800000000000000 + internalID: 8443164194650407884 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u82F1\u4F26\u98CE\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1536 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b53b39ecbb0d76260800000000000000 + internalID: 7090865643361383259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u82F1\u4F26\u98CE\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1568 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45e06aa3a31c33090800000000000000 + internalID: -8055882852599460268 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u82F1\u4F26\u98CE\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 1600 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4b632444d7e293d0800000000000000 + internalID: -3201241486244746421 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u82F1\u4F26\u98CE\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1632 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7cfd10afb0b155750800000000000000 + internalID: 6292965792573153223 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u4EBA\u82F1\u4F26\u98CE\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1664 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d639c8937ca6fb830800000000000000 + internalID: 4089104390572249965 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u610F\u7EF5\u7EF5" + rect: + serializedVersion: 2 + x: 1696 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 763fb8f4e6f14fcb0800000000000000 + internalID: -4831201941620264089 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u6709\u72EC\u949F" + rect: + serializedVersion: 2 + x: 1728 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 449be7196062a52b0800000000000000 + internalID: -5595117777401759420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u6BD4\u91D1\u575A" + rect: + serializedVersion: 2 + x: 1760 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 749a79a87057f3ea0800000000000000 + internalID: -5890861112326903481 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u8FF7\u52A0\u52D2\u6BD4\u5973\u88C5-\u62A4\u815532" + rect: + serializedVersion: 2 + x: 1792 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f37a2717e23ed8af0800000000000000 + internalID: -392407803900025025 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u8FF7\u52A0\u52D2\u6BD4\u5973\u88C5-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 1824 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7304f457939a74cf0800000000000000 + internalID: -268059588558897097 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u8FF7\u52A0\u52D2\u6BD4\u5973\u88C5-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 1856 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b56a1a6d187866270800000000000000 + internalID: 8243425159669720667 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u8FF7\u52A0\u52D2\u6BD4\u5973\u88C5-\u978B32" + rect: + serializedVersion: 2 + x: 1888 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4203a62e8eb81f2d0800000000000000 + internalID: -3246660024010133468 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60C5\u975E\u5F97\u5DF2" + rect: + serializedVersion: 2 + x: 1920 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 00fcfb657d1859700800000000000000 + internalID: 546485691668745984 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60CA\u6D9B\u57CE\u7CBE\u5143" + rect: + serializedVersion: 2 + x: 1952 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 041a5f6b5415413d0800000000000000 + internalID: -3236872872308399808 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60CA\u6D9B\u5E61\u6756" + rect: + serializedVersion: 2 + x: 1984 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2301dcf010082c040800000000000000 + internalID: 4666432905957675058 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60CA\u96F7\u6212" + rect: + serializedVersion: 2 + x: 2016 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d1efab731f91b0a0800000000000000 + internalID: -6867533050734976553 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60CA\u98CE\u5251" + rect: + serializedVersion: 2 + x: 2048 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbe31dfd206a311c0800000000000000 + internalID: -4534097868556779843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60CA\u9F99\u6B8B\u5377" + rect: + serializedVersion: 2 + x: 2080 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e122fa315b04d2aa0800000000000000 + internalID: -6184215566846320098 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60CA\u9F99\u793C\u5305" + rect: + serializedVersion: 2 + x: 2112 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ec2bc51eacd26cc0800000000000000 + internalID: -3719167702006551324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60D1" + rect: + serializedVersion: 2 + x: 2144 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60c8c6de07a0bcb00800000000000000 + internalID: 849784434825399302 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60DF\u7F8E\u793C\u670D\u88D9" + rect: + serializedVersion: 2 + x: 2176 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bc2124ba6e7dc5c0800000000000000 + internalID: -4193556681258357582 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60DF\u7F8E\u793C\u670D\u88D9\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2208 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c0d32d41fd745bb0800000000000000 + internalID: -4948191615238549312 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60DF\u7F8E\u793C\u670D\u88D9\u624B\u5957" + rect: + serializedVersion: 2 + x: 2240 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20d8666e37258f320800000000000000 + internalID: 2591912243291917570 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60DF\u7F8E\u793C\u670D\u88D9\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2272 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6f5aba8dfc752aa00800000000000000 + internalID: 766271436811380214 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60E9\u6212\u5723\u7075" + rect: + serializedVersion: 2 + x: 2304 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc2bb94e143a739a0800000000000000 + internalID: -6253350054177033525 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60F9\u706B\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2336 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7d864c80303a8cb0800000000000000 + internalID: -4861019862723031684 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60F9\u706B\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2368 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 35e2f77c2e831db40800000000000000 + internalID: 5463210369637887571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60F9\u706B\u88C5\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 2400 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0bac66f621eb0ea80800000000000000 + internalID: -8439536715304613200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60F9\u706B\u88C5\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2432 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8024c6bff76e14d00800000000000000 + internalID: 955298033332666888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u60F9\u706B\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2464 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f82cc6b5e8192110800000000000000 + internalID: 1236546947583322359 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u610F\u4E71\u60C5\u8FF7" + rect: + serializedVersion: 2 + x: 2496 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65e9ad47484381170800000000000000 + internalID: 8149321269227724374 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u614A\u7C89\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 2528 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07f70fa1aeede8810800000000000000 + internalID: 1769596800658866032 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6155\u5BD2\u4E30\u793C" + rect: + serializedVersion: 2 + x: 2560 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b56611dc6215e9820800000000000000 + internalID: 2926866034928477787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u620A" + rect: + serializedVersion: 2 + x: 2592 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9689443f5db327cb0800000000000000 + internalID: -4867762457138653079 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u620C" + rect: + serializedVersion: 2 + x: 2624 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25a5b7b75d63fceb0800000000000000 + internalID: -4697475595796522414 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6210\u5C31\u4E4B\u7FFC\u795E\u6708" + rect: + serializedVersion: 2 + x: 2656 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f8411751d5400210800000000000000 + internalID: 1297113458093934837 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6210\u5E74\u866B\u7FC5" + rect: + serializedVersion: 2 + x: 2688 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32a7751f18eff8200800000000000000 + internalID: 184645943798757923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6210\u5F62\u7684\u5185\u4E39" + rect: + serializedVersion: 2 + x: 2720 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df234173c9faffe30800000000000000 + internalID: 4539540034886578941 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6211\u53EA" + rect: + serializedVersion: 2 + x: 2752 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 646c142858b765dd0800000000000000 + internalID: -2497673129984145850 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6211\u7231\u4F60" + rect: + serializedVersion: 2 + x: 2784 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9263bc01d7fa23530800000000000000 + internalID: 3833319184533239337 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6211\u7231\u4F6002" + rect: + serializedVersion: 2 + x: 2816 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65523ac240feefb70800000000000000 + internalID: 8934841511957439830 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6212\u63071" + rect: + serializedVersion: 2 + x: 2848 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a94e2a4958d71d860800000000000000 + internalID: 7552956062754858138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6212\u63072" + rect: + serializedVersion: 2 + x: 2880 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 66991295ce0de9070800000000000000 + internalID: 8115153292094445926 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6212\u63073" + rect: + serializedVersion: 2 + x: 2912 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 66d6b3b00603a9f20800000000000000 + internalID: 3430107255259491686 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6212\u63074" + rect: + serializedVersion: 2 + x: 2944 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 117930c97d6ca11b0800000000000000 + internalID: -5685012950264080623 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u573A\u94B1\u5E011" + rect: + serializedVersion: 2 + x: 2976 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e037bf624483e3af0800000000000000 + internalID: -414832250308562162 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u573A\u94B1\u5E012" + rect: + serializedVersion: 2 + x: 3008 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63d6aabfd06d54290800000000000000 + internalID: -7906678215233868490 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u6B4C\u4E4B\u57CE\xB7\u52C7\u58EB \u6CD5\u7CFB1" + rect: + serializedVersion: 2 + x: 3040 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 17d772838de637a00800000000000000 + internalID: 753067437635108209 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u6B4C\u4E4B\u57CE\xB7\u52C7\u58EB \u6CD5\u7CFB2" + rect: + serializedVersion: 2 + x: 3072 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b31c0533b4e6d2330800000000000000 + internalID: 3687724939148837179 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u6B4C\u4E4B\u57CE\xB7\u52C7\u58EB \u6CD5\u7CFB3" + rect: + serializedVersion: 2 + x: 3104 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6a7faf9b458f38b0800000000000000 + internalID: -5170267287349921174 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u6B4C\u4E4B\u57CE\xB7\u52C7\u58EB \u7269\u74061" + rect: + serializedVersion: 2 + x: 3136 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29db6b79ad26eafb0800000000000000 + internalID: -4634658275529933422 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u6B4C\u4E4B\u57CE\xB7\u52C7\u58EB \u7269\u74062" + rect: + serializedVersion: 2 + x: 3168 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57172beaf812d0710800000000000000 + internalID: 1661020738564551029 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u6B4C\u4E4B\u57CE\xB7\u52C7\u58EB \u7269\u74063" + rect: + serializedVersion: 2 + x: 3200 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 131d95366f2509f50800000000000000 + internalID: 6886095048431751473 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u6B4C\u7EDF\u5E05\u5FBD\u7AE0" + rect: + serializedVersion: 2 + x: 3232 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c3e22e23d1794aa0800000000000000 + internalID: -6176280262135847995 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u7075\u4E4B\u6E90" + rect: + serializedVersion: 2 + x: 3264 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5adeee99c36552540800000000000000 + internalID: 4982483381035920805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u7075\u5B9D\u5177" + rect: + serializedVersion: 2 + x: 3296 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b49d04767071fecd0800000000000000 + internalID: -2526775545367045813 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u7075\u5B9D\u888B" + rect: + serializedVersion: 2 + x: 3328 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51c6de5ea2b01da70800000000000000 + internalID: 8849867021633809429 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u7075\u89E6\u5A92" + rect: + serializedVersion: 2 + x: 3360 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 382b2d7e50303fe90800000000000000 + internalID: -6993242472477183357 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u7075\u89E6\u5A92s" + rect: + serializedVersion: 2 + x: 3392 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b92f936d3fd6fe120800000000000000 + internalID: 2445294016724071067 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u7075\u89E6\u5A92\u7CBE" + rect: + serializedVersion: 2 + x: 3424 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b988249879654b10800000000000000 + internalID: 1965092779019766196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u795E\u4E4B\u9774" + rect: + serializedVersion: 2 + x: 3456 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89f2b3d5e0eae6530800000000000000 + internalID: 3850206108165287832 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u795E\u6212\u6307\uFF08\u9633\uFF09" + rect: + serializedVersion: 2 + x: 3488 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d32fe361bc95ac690800000000000000 + internalID: -7581148293938351555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u795E\u6212\u6307\uFF08\u9634\uFF09" + rect: + serializedVersion: 2 + x: 3520 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f937bc07decb4a3d0800000000000000 + internalID: -3196222107540556897 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u795E\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3552 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6c6fea501a110cc0800000000000000 + internalID: -3746684757448102802 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u795E\u62A4\u817F" + rect: + serializedVersion: 2 + x: 3584 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9af81b689b2fff70800000000000000 + internalID: 9223138495509887643 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u795E\u7389\u4F69" + rect: + serializedVersion: 2 + x: 3616 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82db3fc388b148db0800000000000000 + internalID: -4790673831663256280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u795E\u94E0" + rect: + serializedVersion: 2 + x: 3648 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0fc048d4e5891aac0800000000000000 + internalID: -3845625076002845456 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u795E\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3680 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff6e90b5636d88d20800000000000000 + internalID: 3281107857483359999 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u9524" + rect: + serializedVersion: 2 + x: 3712 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3423f5955e47e3f50800000000000000 + internalID: 6863051410554958403 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u9A6C\u96D5\u50CF\u6838\u5FC3" + rect: + serializedVersion: 2 + x: 3744 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c928125e2e0abf80800000000000000 + internalID: -8090138188509075008 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6218\u9B42\u864E\u7B26" + rect: + serializedVersion: 2 + x: 3776 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8bcb91808d6084130800000000000000 + internalID: 3551095831100243128 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6240\u7F57\u95E8\u738B\u6D6E\u96D5" + rect: + serializedVersion: 2 + x: 3808 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 126d9b396564003e0800000000000000 + internalID: -2089592889440348639 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u624B\u6284\u4E50\u8C31" + rect: + serializedVersion: 2 + x: 3840 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5dc0dcdecc340f340800000000000000 + internalID: 4895487342393756885 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u624B\u6284\u8BD7\u8BCD\u672C" + rect: + serializedVersion: 2 + x: 3872 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 617cb9fcb54a09e70800000000000000 + internalID: 9119969959657326358 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u624B\u62C9\u624B\u7EA2" + rect: + serializedVersion: 2 + x: 3904 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27b2990553b2a3400800000000000000 + internalID: 304603432786406258 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u624B\u62C9\u624B\u84DD" + rect: + serializedVersion: 2 + x: 3936 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8517bcbbcace06c10800000000000000 + internalID: 2044894457455407448 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u624B\u6301\u7AD6\u7434" + rect: + serializedVersion: 2 + x: 3968 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67902f031c3205240800000000000000 + internalID: 4778358517296925046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u624B\u673A\u5546\u5238\u4E0A" + rect: + serializedVersion: 2 + x: 4000 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50815bc613b326380800000000000000 + internalID: -8979549623560103931 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u624B\u673A\u5546\u5238\u4E0B" + rect: + serializedVersion: 2 + x: 4032 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90815b24f04278be0800000000000000 + internalID: -1475170704978274295 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u624B\u6756" + rect: + serializedVersion: 2 + x: 4064 + y: 3104 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16c0a75bbc30070e0800000000000000 + internalID: -2274313638364181407 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u624B\u864E" + rect: + serializedVersion: 2 + x: 0 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a724a5bb7c23fbb0800000000000000 + internalID: -4903526659436304474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u624B\u9524" + rect: + serializedVersion: 2 + x: 32 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22aaf6927212e8e40800000000000000 + internalID: 5660498233733917218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6251\u514B\u5C11\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 64 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41350eeb691fee620800000000000000 + internalID: 2805445247648158484 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6251\u514B\u5C11\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 96 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f59c77509ab5b0a90800000000000000 + internalID: -7346677585625495201 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6251\u514B\u5C11\u5973\u62A4\u8155" + rect: + serializedVersion: 2 + x: 128 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1fcec34add5058870800000000000000 + internalID: 8684353905955237105 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6251\u514B\u5C11\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 160 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd1e9999bee0b63d0800000000000000 + internalID: -3212457504141614627 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6253\u6253\u6253\u52AB\u5566" + rect: + serializedVersion: 2 + x: 192 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bfcfbb0e345ff4f0800000000000000 + internalID: -792822383932092494 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6253\u78E8\u7CBE\u901A" + rect: + serializedVersion: 2 + x: 224 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ea42f7a814e5e500800000000000000 + internalID: 424996534404401888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6267\u5B50\u4E4B\u624B" + rect: + serializedVersion: 2 + x: 256 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14add98ccb9133150800000000000000 + internalID: 5851048639494740545 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6267\u5B50\u4E4B\u624B\u4E0E\u5B50\u5055\u8001" + rect: + serializedVersion: 2 + x: 288 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4f4ffdee743f8970800000000000000 + internalID: 8759277520022359883 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u626B\u5200" + rect: + serializedVersion: 2 + x: 320 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a32f6f071ecc54dd0800000000000000 + internalID: -2502368749299502534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6280\u5DE7\u4E4B\u8BC1" + rect: + serializedVersion: 2 + x: 352 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b6f097bf11b54da0800000000000000 + internalID: -5961163781973150032 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6298\u51B2\u9879\u94FE" + rect: + serializedVersion: 2 + x: 384 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a134f52ba0fdf9c0800000000000000 + internalID: -3891689885111406172 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6298\u679D\u7EB1" + rect: + serializedVersion: 2 + x: 416 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee59fd152eb5ae620800000000000000 + internalID: 2804154745585898990 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6298\u94C1\u5200" + rect: + serializedVersion: 2 + x: 448 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 72244d9ddd7fa2db0800000000000000 + internalID: -4815764319304924633 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6298\u95E8\u5200" + rect: + serializedVersion: 2 + x: 480 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f621f8178c6f2dc0800000000000000 + internalID: -3661588644534081800 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62A4\u7532\u7B26" + rect: + serializedVersion: 2 + x: 512 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87bf163201aa26560800000000000000 + internalID: 7305588531838188408 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62AB\u8428\u5315\u9996" + rect: + serializedVersion: 2 + x: 544 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 93b2e30f802424f50800000000000000 + internalID: 6864121388223834937 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62AB\u98CE\u5200" + rect: + serializedVersion: 2 + x: 576 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d3ee12ccf7037ba90800000000000000 + internalID: -7298311345686843843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62B1\u62B1\u5154" + rect: + serializedVersion: 2 + x: 608 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d3f627306f24ef80800000000000000 + internalID: -8078279741307161646 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62BD\u9AD3\u97AD" + rect: + serializedVersion: 2 + x: 640 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c756bec992202c40800000000000000 + internalID: 5485422390130661314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u91D1\u5343\u74E3\u83B2\u67F1" + rect: + serializedVersion: 2 + x: 672 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dcb752dc10e591380800000000000000 + internalID: -9000059018493461555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u4E00\u676F\u5012\u6000\u9189" + rect: + serializedVersion: 2 + x: 704 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 314fd97a2f1071d40800000000000000 + internalID: 5554910807090656275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u4E50\u5929\u5973" + rect: + serializedVersion: 2 + x: 736 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 978ae727f8fe51900800000000000000 + internalID: 654692720232540281 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u56FE\u5305\u4E13\u4E1A\u7EA7" + rect: + serializedVersion: 2 + x: 768 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 104389ebe4f003c50800000000000000 + internalID: 6642826281250993153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u56FE\u5305\u5165\u95E8\u7EA7" + rect: + serializedVersion: 2 + x: 800 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 861abe3eda9f455f0800000000000000 + internalID: -768715111124983448 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u56FE\u5305\u521D\u5B66\u7EA7" + rect: + serializedVersion: 2 + x: 832 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e9e315636b51e19f0800000000000000 + internalID: -495935036624650594 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u56FE\u5305\u5927\u5E08\u7EA7" + rect: + serializedVersion: 2 + x: 864 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4248a25cb986c860800000000000000 + internalID: 7549873267266830922 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u56FE\u5305\u5B97\u5E08\u7EA7" + rect: + serializedVersion: 2 + x: 896 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c53b336c091afbe60800000000000000 + internalID: 7980274707896447836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u56FE\u5305\u5DE8\u5320\u7EA7" + rect: + serializedVersion: 2 + x: 928 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8b36618800901bc0800000000000000 + internalID: -3814390518177711218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u56FE\u5305\u6709\u5B66\u7EA7" + rect: + serializedVersion: 2 + x: 960 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96e0f5b6534812a70800000000000000 + internalID: 8800460511828184681 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u56FE\u5305\u6E38\u5B66\u7EA7" + rect: + serializedVersion: 2 + x: 992 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a178dfa3445f9f790800000000000000 + internalID: -7495690431385204966 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u56FE\u5305\u7985\u5B97\u7EA7" + rect: + serializedVersion: 2 + x: 1024 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea594fd973f88b4b0800000000000000 + internalID: -5424428282131737170 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u56FE\u5305\u7CBE\u7EAF\u7EA7" + rect: + serializedVersion: 2 + x: 1056 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4483e96b627b1a780800000000000000 + internalID: -8673450030438401980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u65E0\u5B57\u771F\u541B" + rect: + serializedVersion: 2 + x: 1088 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c3b5b7bc232a6fa0800000000000000 + internalID: -5806790094573161532 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u9669\u9053\u795E" + rect: + serializedVersion: 2 + x: 1120 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25fcf1f6cc11b6680800000000000000 + internalID: -8760889080383811758 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\u9ED1\u5C06\u519B" + rect: + serializedVersion: 2 + x: 1152 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b9bbca8b4332d700800000000000000 + internalID: 563569302918904242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u4E09\u5343\u4E16\u754C\xB7\u78A7\u6E38" + rect: + serializedVersion: 2 + x: 1184 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4af4b5b5f489e78d0800000000000000 + internalID: -2846670447849025628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u4E5D\u5B50\u9B3C\u6BCD" + rect: + serializedVersion: 2 + x: 1216 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9793037aeb0154b50800000000000000 + internalID: 6576681241879263609 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u4F0A\u820D" + rect: + serializedVersion: 2 + x: 1248 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9beab9d8244ca6a0800000000000000 + internalID: -6436694825176994918 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u4F5B\u9B54\u6CE2\u6D35" + rect: + serializedVersion: 2 + x: 1280 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf84ab278ee2b4980800000000000000 + internalID: -8553691491368023812 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u51A5\u5E9C\u725B\u5934" + rect: + serializedVersion: 2 + x: 1312 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bde4ab085fdf3170800000000000000 + internalID: 8160486619064102324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u51B0\u96EA\u5973\u738B" + rect: + serializedVersion: 2 + x: 1344 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2040a2014311b38e0800000000000000 + internalID: -1712756317977181182 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u523A\u5BA2\xB7\u6C90\u98CE" + rect: + serializedVersion: 2 + x: 1376 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02d9af5a795873580800000000000000 + internalID: -8847456056574829280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u5251\u7075\xB7\u4FEE\u7F57" + rect: + serializedVersion: 2 + x: 1408 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e61c295db72608c0800000000000000 + internalID: -4033492722065336604 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u53F6\u5B64\u5BD2" + rect: + serializedVersion: 2 + x: 1440 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56d3b25347d22a360800000000000000 + internalID: 7179350733113474405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u5578\u5929\u8FB0\u714C" + rect: + serializedVersion: 2 + x: 1472 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bff093abad74488b0800000000000000 + internalID: -5150913069052260357 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u58A8\u7FBD\u98CE\u534E\xB7\u9B3C\u9E64" + rect: + serializedVersion: 2 + x: 1504 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f23df16c4aed18910800000000000000 + internalID: 1837994922223850287 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u590F\u98CE\u5C06\u519B" + rect: + serializedVersion: 2 + x: 1536 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e5a6d97ede04a80f0800000000000000 + internalID: -1114006567283496354 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u591C\u5F71\xB7\u98CE\u6840\u9A9C" + rect: + serializedVersion: 2 + x: 1568 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ecadc113574fd3190800000000000000 + internalID: -7980954180458325298 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u5973\u513F\u56FD\u56FD\u738B" + rect: + serializedVersion: 2 + x: 1600 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99de8f12fdfa52d30800000000000000 + internalID: 4406121183334428057 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u5996\u517D\xB7\u7834\u5C71" + rect: + serializedVersion: 2 + x: 1632 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3bb5e365ee84a0be0800000000000000 + internalID: -1510314536543036493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u5996\u7CBE\xB7\u7409\u7483" + rect: + serializedVersion: 2 + x: 1664 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac0369ddcc44cc540800000000000000 + internalID: 5029470530547626186 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u5DEB\u5E08\xB7\u7EEF\u6708" + rect: + serializedVersion: 2 + x: 1696 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dca70de001a7f4e50800000000000000 + internalID: 6795784572111977165 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u5E7B\u6D77\u9886\u4E3B" + rect: + serializedVersion: 2 + x: 1728 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a0dda7184547f7d0800000000000000 + internalID: -2884760860370284378 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u5F02\u5316\u5F25\u52D2" + rect: + serializedVersion: 2 + x: 1760 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce67f2483a1c37310800000000000000 + internalID: 1401676817083889388 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u5FC3\u5BBF \u5C0F\u7F8E " + rect: + serializedVersion: 2 + x: 1792 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4116951a750eeb770800000000000000 + internalID: 8628580603062214932 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u60B2\u6124\u83E9\u63D0" + rect: + serializedVersion: 2 + x: 1824 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9f98042558e8d310800000000000000 + internalID: 1430148334064541594 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u66B4\u541B\u4E4B\u5B50\xB7\u7A46\u91CA\u6853" + rect: + serializedVersion: 2 + x: 1856 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04cd7700e20f2d5c0800000000000000 + internalID: -4192024222761493440 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u6708\u4ED9\xB7\u5357\u6708\u5343\u9675" + rect: + serializedVersion: 2 + x: 1888 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cce71876bb5278990800000000000000 + internalID: -7383891577224986932 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u6B66\u4FA0\xB7\u67F3\u575A\u8425" + rect: + serializedVersion: 2 + x: 1920 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86c43f6785195a1a0800000000000000 + internalID: -6798868253307089816 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u6CD5\u5E08\xB7\u7530\u5F69" + rect: + serializedVersion: 2 + x: 1952 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0baa86771f1e1f7d0800000000000000 + internalID: -2886277458961061200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u6D63\u718A\u914B\u957F" + rect: + serializedVersion: 2 + x: 1984 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e69b9ad034fcac80800000000000000 + internalID: -8309998721742170391 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u6D6E\u5149\u63A0\u5F71\xB7\u591C\u5211" + rect: + serializedVersion: 2 + x: 2016 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4caf12d257f451ee0800000000000000 + internalID: -1291038353484809532 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u706B\u9CDE\u6012\u86DF\xB7\u6556\u9616" + rect: + serializedVersion: 2 + x: 2048 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75e6b8375a8e506d0800000000000000 + internalID: -3024755777403654569 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u70BD\u9F99\u5148\u950B" + rect: + serializedVersion: 2 + x: 2080 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 771f8e60074b7ebc0800000000000000 + internalID: -3753833371144752777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u70BD\u9F99\u6E0A\u7763\u519B" + rect: + serializedVersion: 2 + x: 2112 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7293e8beac609630800000000000000 + internalID: 3931761972376474239 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u714C\u70C8\u4E4B\u821E\xB7\u697C\u8FB0" + rect: + serializedVersion: 2 + x: 2144 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9798b1f9023ba8bf0800000000000000 + internalID: -321247470713861767 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u753B\u6C34\u65E0\u98CE" + rect: + serializedVersion: 2 + x: 2176 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6fd22d7b9f09f1a90800000000000000 + internalID: -7340989465385357834 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u753B\u6C34\u800C\u884C" + rect: + serializedVersion: 2 + x: 2208 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 765c839387ac88580800000000000000 + internalID: -8824580852127578777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u753B\u8BED\u5E7D\u83B2" + rect: + serializedVersion: 2 + x: 2240 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1215ef3dbccae3a0800000000000000 + internalID: -6635265987784142306 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u767D\u5E1D\xB7\u5E2D\u5C14\u74E6" + rect: + serializedVersion: 2 + x: 2272 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d91df4c260c059e70800000000000000 + internalID: 9121209840961573277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u767E\u5C81\u91D1\u86E4" + rect: + serializedVersion: 2 + x: 2304 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86e0c5cdfd2610cd0800000000000000 + internalID: -2593683196774445464 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u7985\u59EC" + rect: + serializedVersion: 2 + x: 2336 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da78eaa22325f5a30800000000000000 + internalID: 4206170952405256109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u7AF9\u7B1B\u4E50\u7AE5" + rect: + serializedVersion: 2 + x: 2368 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0f780f37022898f0800000000000000 + internalID: -533639141325766899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u7FBD\u7075\xB7\u4E91\u9526" + rect: + serializedVersion: 2 + x: 2400 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6e336c80aed0e0e0800000000000000 + internalID: -2242547833299059091 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u7FBD\u8292\xB7\u5C9A\u67AB" + rect: + serializedVersion: 2 + x: 2432 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c6bc437579929ce0800000000000000 + internalID: -1399887804434172218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u843D\u6728\u4ED9\u5B50" + rect: + serializedVersion: 2 + x: 2464 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 351b5b2343c5c1fd0800000000000000 + internalID: -2369917924644900525 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u865A\u7A7A\u58C1\u969C\xB7\u5C3A\u52FE" + rect: + serializedVersion: 2 + x: 2496 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55897711f48956d30800000000000000 + internalID: 4424109674324269141 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u8D64\u5E1D\xB7\u6653\u7EAF" + rect: + serializedVersion: 2 + x: 2528 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0094b58144959c90800000000000000 + internalID: -7163656623125917681 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u90AA\u6076\u534A\u9F99\xB7\u8428\u5FB7\u8499" + rect: + serializedVersion: 2 + x: 2560 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 563049df1a2a82760800000000000000 + internalID: 7433370001602773861 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u971C\u9F99\u5148\u950B" + rect: + serializedVersion: 2 + x: 2592 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bfc544ed82ecaa220800000000000000 + internalID: 2498035618253397243 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u9752\u5E1D\xB7\u51B7\u6708" + rect: + serializedVersion: 2 + x: 2624 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f5530d1e313c5690800000000000000 + internalID: -7612155127318489607 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u9B45\u7075\xB7\u6A31\u77B3" + rect: + serializedVersion: 2 + x: 2656 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44ae98d93471eef00800000000000000 + internalID: 1147880534199364164 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u9B45\u9B3C\u82B1\u738B" + rect: + serializedVersion: 2 + x: 2688 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: acd36c83b282b30f0800000000000000 + internalID: -1136270314879697462 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u9B54\u793C\u9752" + rect: + serializedVersion: 2 + x: 2720 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a695ecbcbd0d56460800000000000000 + internalID: 7234418018876283242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62D3\u9B42\uFF1A\u9ED1\u5E1D\xB7\u4F0A\u8482\u4E1D" + rect: + serializedVersion: 2 + x: 2752 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2dee2939de9b4970800000000000000 + internalID: 8740254157647047980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62DB\u884C\u91D1\u8475\u82B1\u5927\u793C\u5305" + rect: + serializedVersion: 2 + x: 2784 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d738be2673f8d360800000000000000 + internalID: 7194768093639882711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62DB\u8D22\u7075\u86C7\u7C89" + rect: + serializedVersion: 2 + x: 2816 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e288ca500e9f053d0800000000000000 + internalID: -3219798993006720978 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62DB\u8D22\u7075\u86C7\u7EFF" + rect: + serializedVersion: 2 + x: 2848 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c0dbb3c7d5ab9650800000000000000 + internalID: 6240764054772371649 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62DB\u8D22\u732B\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2880 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 95abd34ce5b226ab0800000000000000 + internalID: -5016399348918011303 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62DB\u8D22\u732B\u5973\u5E3D\u5B50" + rect: + serializedVersion: 2 + x: 2912 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5fbf22c5bbb348c0800000000000000 + internalID: -4016160053362966693 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62DB\u8D22\u732B\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 2944 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eafb5b15bd3807550800000000000000 + internalID: 6156565668607410094 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62DB\u8D22\u732B\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2976 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3dd1f6aae3276a4c0800000000000000 + internalID: -4276605182668759597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62DB\u8D22\u864E\u7537\u5E3D\u5B50" + rect: + serializedVersion: 2 + x: 3008 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4133e4318ae2070e0800000000000000 + internalID: -2274266512408825068 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62DB\u8D22\u864E\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 3040 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96bc915c9ed512860800000000000000 + internalID: 7503381712791522153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62DB\u8D22\u864E\u7537\u8863\u670D" + rect: + serializedVersion: 2 + x: 3072 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbca9b9902e9379c0800000000000000 + internalID: -3930624186909086531 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62DB\u8D22\u864E\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3104 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 651ed2187fc2afcf0800000000000000 + internalID: -217812190438235818 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62DB\u8D22\u8FDB\u5B9D\u5361" + rect: + serializedVersion: 2 + x: 3136 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0b1993ff16edaef0800000000000000 + internalID: -95166992199640308 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62DB\u9B42\u5E61\u6756" + rect: + serializedVersion: 2 + x: 3168 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a45351eed017c6650800000000000000 + internalID: 6227476689389434186 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62DC\u5E74\u5E16" + rect: + serializedVersion: 2 + x: 3200 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8228332713fb3a5d0800000000000000 + internalID: -3052385903336783320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62E8\u6D6A\u9F13\u53CC\u624B\u77ED" + rect: + serializedVersion: 2 + x: 3232 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4b187b51943a3da0800000000000000 + internalID: -5964396957589300406 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62E8\u6D6A\u9F13\u53CC\u624B\u957F" + rect: + serializedVersion: 2 + x: 3264 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79a1bf0f9a31e30f0800000000000000 + internalID: -1135448435437397353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62F3\u5957" + rect: + serializedVersion: 2 + x: 3296 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9185c0cba1821bd0800000000000000 + internalID: -2660921855148981857 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62F3\u5957\u68D2\u7403\u624B\u5957" + rect: + serializedVersion: 2 + x: 3328 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f7be973864c66e30800000000000000 + internalID: 4496497229864810484 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62F3\u5957\u7F8A" + rect: + serializedVersion: 2 + x: 3360 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c95068b2fef82ad0800000000000000 + internalID: -2726649255943972410 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u62F3\u5957\u83E0\u841D" + rect: + serializedVersion: 2 + x: 3392 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0a3246e983691880800000000000000 + internalID: -8639764966208816625 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6301\u56FD\u65E0\u654C\u7389" + rect: + serializedVersion: 2 + x: 3424 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 993b954e8529222e0800000000000000 + internalID: -2151996761443814503 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6307\u793A\u4E4B\u7FBD" + rect: + serializedVersion: 2 + x: 3456 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 15a40c60c9707a410800000000000000 + internalID: 1488166568578796113 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6316\u77FF\u9053\u5177\u571F" + rect: + serializedVersion: 2 + x: 3488 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84055315fc635e740800000000000000 + internalID: 5180607210408202312 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6316\u77FF\u9053\u5177\u6728" + rect: + serializedVersion: 2 + x: 3520 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e0ae231ebc5ca2e0800000000000000 + internalID: -2113212153708240668 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6316\u77FF\u9053\u5177\u6C34" + rect: + serializedVersion: 2 + x: 3552 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9dccdc74e6edfb5d0800000000000000 + internalID: -3044470257846727463 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6316\u77FF\u9053\u5177\u706B" + rect: + serializedVersion: 2 + x: 3584 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d51acb59ea2bffd0800000000000000 + internalID: -2307203202341530158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6316\u77FF\u9053\u5177\u91D1" + rect: + serializedVersion: 2 + x: 3616 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f87b2e6d1d28b7970800000000000000 + internalID: 8753734138489649039 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u632A\u79FB\u5E61" + rect: + serializedVersion: 2 + x: 3648 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1da045a35ea370460800000000000000 + internalID: 7207794484830276305 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u632F\u9706\u76D4" + rect: + serializedVersion: 2 + x: 3680 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c06a2299243b78590800000000000000 + internalID: -7671966341583952372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u633D\u7559\u8282\u97AD" + rect: + serializedVersion: 2 + x: 3712 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd1d269095f554220800000000000000 + internalID: 2469484806696784348 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6346\u4ED9\u7EF3" + rect: + serializedVersion: 2 + x: 3744 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67b6a212196973d00800000000000000 + internalID: 952395396283001718 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6355\u706B\u7075\u7F51" + rect: + serializedVersion: 2 + x: 3776 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f5d60ea9a14b73be0800000000000000 + internalID: -1497530324716851873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6377\u5143\u7535\u8111" + rect: + serializedVersion: 2 + x: 3808 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f56e1fb34bc6e5380800000000000000 + internalID: -8980621085574568353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6389\u843D\u7684\u679C\u5B9E" + rect: + serializedVersion: 2 + x: 3840 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88d33868426c563a0800000000000000 + internalID: -6672709412701651576 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u638C\u8FD0\u7EB9\u7AE0" + rect: + serializedVersion: 2 + x: 3872 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87c7733ca302c4fc0800000000000000 + internalID: -3509394572873073544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6392\u7A7A\u5F29" + rect: + serializedVersion: 2 + x: 3904 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4ff4b2928ab84c30800000000000000 + internalID: 4343926910568693583 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u63A0\u5F71" + rect: + serializedVersion: 2 + x: 3936 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff9b85bebe94a7210800000000000000 + internalID: 1331457917456005631 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u63A0\u8679\u6212" + rect: + serializedVersion: 2 + x: 3968 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e465c66d0ab0f4e0800000000000000 + internalID: -1949854071929871130 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u63A2\u9669\u8005" + rect: + serializedVersion: 2 + x: 4000 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5adcd6b2eaee5a90800000000000000 + internalID: -7323157684606412197 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u63A3\u98CE\u4E4B\u77DB" + rect: + serializedVersion: 2 + x: 4032 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0a86bd6ed18cf5d0800000000000000 + internalID: -3027402057176413684 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u63A5\u9AA8\u6728" + rect: + serializedVersion: 2 + x: 4064 + y: 3072 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1915a31a62d4d7c0800000000000000 + internalID: -4047378812061279974 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u63A9\u65E5\u65AD\u6C34" + rect: + serializedVersion: 2 + x: 0 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7de46eb074b543d10800000000000000 + internalID: 2104407286589312727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u63D0\u70BC\u6CB9" + rect: + serializedVersion: 2 + x: 32 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4584be074165efd90800000000000000 + internalID: -7062112519876556716 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u641C\u795E\u5668" + rect: + serializedVersion: 2 + x: 64 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d95dc63888ba1e1a0800000000000000 + internalID: -6781950961034406499 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u641C\u9B42\u97AD" + rect: + serializedVersion: 2 + x: 96 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 539814effadcf47d0800000000000000 + internalID: -2931898676626224843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u641E\u602A\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 128 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98855218901bfa800800000000000000 + internalID: 625913527607318665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u641E\u602A\u7537\u88C5\u62A4\u624B" + rect: + serializedVersion: 2 + x: 160 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6217d48a60d7a3e0800000000000000 + internalID: -2042434750075432338 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u641E\u602A\u7537\u88C5\u8863\u670D" + rect: + serializedVersion: 2 + x: 192 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fcb6436455dc45d20800000000000000 + internalID: 3266461395884207055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u641E\u602A\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 224 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3c03e44fbbeeb1a0800000000000000 + internalID: -6791731981301117890 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u641E\u602A\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 256 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e0da5bc3d3347c150800000000000000 + internalID: 5892752567728188686 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6444\u5FC3\u9B54\u5361\u72471" + rect: + serializedVersion: 2 + x: 288 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7fb45a582a3e40970800000000000000 + internalID: 8720345065662532599 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6444\u5FC3\u9B54\u5361\u72472" + rect: + serializedVersion: 2 + x: 320 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fedab78c395e94c60800000000000000 + internalID: 7803020252282596847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6444\u5FC3\u9B54\u5361\u72473" + rect: + serializedVersion: 2 + x: 352 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4340485ce94e83050800000000000000 + internalID: 5780621492299760692 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6444\u5FC3\u9B54\u5361\u72474" + rect: + serializedVersion: 2 + x: 384 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b2c328867dc3f7b0800000000000000 + internalID: -5191580036454169932 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6444\u5FC3\u9B54\u5361\u72475" + rect: + serializedVersion: 2 + x: 416 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 38a53f35c36a56200800000000000000 + internalID: 172726938760338051 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6444\u5FC3\u9B54\u5361\u72476" + rect: + serializedVersion: 2 + x: 448 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58030b229d0659300800000000000000 + internalID: 258219039349813381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6444\u5FC3\u9B54\u5361\u72477" + rect: + serializedVersion: 2 + x: 480 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6861821126aef5960800000000000000 + internalID: 7593045203685480070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6444\u5FC3\u9B54\u5361\u72478" + rect: + serializedVersion: 2 + x: 512 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1600539ad27f4f40800000000000000 + internalID: 5714912735256380955 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6444\u9B42\u74F647" + rect: + serializedVersion: 2 + x: 544 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad740ab3c3cc6c850800000000000000 + internalID: 6397024879796832218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6446\u644A_\u5723\u8BDE\u889C\u5C0F" + rect: + serializedVersion: 2 + x: 576 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da3fa29b004241ca0800000000000000 + internalID: -6047168814126533715 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6446\u644A\u5154" + rect: + serializedVersion: 2 + x: 608 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f065df419dac90370800000000000000 + internalID: 8289379622860969487 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6446\u644A\u5154\u5973" + rect: + serializedVersion: 2 + x: 640 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3fa3169a12d30d60800000000000000 + internalID: 7855353186693132095 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6446\u644A\u5154\u7537" + rect: + serializedVersion: 2 + x: 672 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40682159440f74f10800000000000000 + internalID: 2254034315871684100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6446\u644A\u5C0F\u9A6C" + rect: + serializedVersion: 2 + x: 704 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6bc7871fcaa0979d0800000000000000 + internalID: -2776175957395342154 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6446\u644A\u8001\u864E" + rect: + serializedVersion: 2 + x: 736 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f77774e8d0c6d3f50800000000000000 + internalID: 6862760212659926911 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6447\u5149\u4E4B\u5251" + rect: + serializedVersion: 2 + x: 768 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0955d3e4c2fdfdf00800000000000000 + internalID: 1143878211759592848 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6467\u610F\u4E4B\u722A" + rect: + serializedVersion: 2 + x: 800 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e5b79a64a87fcba0800000000000000 + internalID: -6066497525486471712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6469\u6258\u8F6601" + rect: + serializedVersion: 2 + x: 832 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0d8a872e61f37c60800000000000000 + internalID: 7814855233830030605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u64BC\u5929\u9524" + rect: + serializedVersion: 2 + x: 864 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55fd9b51549f56180800000000000000 + internalID: -9122611395056509099 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u64C2\u9F13\u8F70\u91D1" + rect: + serializedVersion: 2 + x: 896 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a13a243fdf7cdf7f0800000000000000 + internalID: -577085283711671526 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u64D2\u9F99\u6756" + rect: + serializedVersion: 2 + x: 928 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b9cc2962529ffdc0800000000000000 + internalID: -3603000294223590989 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u652F\u914D\u4E4B\u529B" + rect: + serializedVersion: 2 + x: 960 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7069ae5e00c51c820800000000000000 + internalID: 2936729590949385735 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6536\u8D39\u5E2E\u6D3E\u96C6\u7ED3\u4EE4" + rect: + serializedVersion: 2 + x: 992 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f15496b9190a88f30800000000000000 + internalID: 4578085568460178719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6536\u8D39\u80FD\u91CF\u6C34\u6676" + rect: + serializedVersion: 2 + x: 1024 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 243cf45f9d2a18210800000000000000 + internalID: 1333526021685625666 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6536\u8D39\u961F\u4F0D\u96C6\u7ED3\u4EE4" + rect: + serializedVersion: 2 + x: 1056 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91ccde38ff0c500c0800000000000000 + internalID: -4610066439881241575 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6539\u9020\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1088 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f79cd094e2fe4b3f0800000000000000 + internalID: -885820244611970689 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u654C\u519B\u519B\u670D" + rect: + serializedVersion: 2 + x: 1120 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa09b4d4ff1f80470800000000000000 + internalID: 8361198787029078186 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u654F\u6377\u94F8\u6750" + rect: + serializedVersion: 2 + x: 1152 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b97fc068cfa52caa0800000000000000 + internalID: -6142246901152680037 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6551\u8D4E" + rect: + serializedVersion: 2 + x: 1184 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 80044193d1c269570800000000000000 + internalID: 8473008252967469064 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6551\u8D4E\u5723\u7075" + rect: + serializedVersion: 2 + x: 1216 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a677bfc13cbbd0cc0800000000000000 + internalID: -3743129268595755158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6556\u8499" + rect: + serializedVersion: 2 + x: 1248 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21a7a290cda66fdb0800000000000000 + internalID: -4758498462991222254 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6563" + rect: + serializedVersion: 2 + x: 1280 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d54c96025e5cd3f30800000000000000 + internalID: 4557015985850795101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6563\u843D\u7684\u6B66\u5668" + rect: + serializedVersion: 2 + x: 1312 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c7e591db6c476f00800000000000000 + internalID: 1109939859131590599 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6587\u6587\u8702" + rect: + serializedVersion: 2 + x: 1344 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1ccc37d96181e740800000000000000 + internalID: 5179563338035416090 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6587\u6B8A\u83E9\u8428" + rect: + serializedVersion: 2 + x: 1376 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2cebaf3f03013bef0800000000000000 + internalID: -93713364806877502 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6587\u6B8A\u83E9\u8428\u788E\u7247\u526F\u672C" + rect: + serializedVersion: 2 + x: 1408 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b095d8dfcaf2f9d0800000000000000 + internalID: -2741853452512161608 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6591\u6593\u8C79" + rect: + serializedVersion: 2 + x: 1440 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98820f491896174a0800000000000000 + internalID: -6597375973850601335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6591\u70B9\u72D7" + rect: + serializedVersion: 2 + x: 1472 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5407240bc1fd7b90800000000000000 + internalID: -7242366771491568549 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6597\u58EB\u4E4B\u529B" + rect: + serializedVersion: 2 + x: 1504 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e9b6068231d4d6150800000000000000 + internalID: 5867430634210749342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6597\u6218\u80DC\u4F5B" + rect: + serializedVersion: 2 + x: 1536 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 805d9c2e2cba45470800000000000000 + internalID: 8382513659960218888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6597\u7B20" + rect: + serializedVersion: 2 + x: 1568 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2e8256f26106b230800000000000000 + internalID: 3654109672208764458 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6597\u8F6C\u661F\u79FB" + rect: + serializedVersion: 2 + x: 1600 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c299f1a9d4677c80800000000000000 + internalID: -8325074500282903867 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6597\u90E8\u8FDE\u5361" + rect: + serializedVersion: 2 + x: 1632 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21fc345c8bc792b60800000000000000 + internalID: 7721840169128808210 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65A7\u5934\u5E2E\u53E3\u53F7" + rect: + serializedVersion: 2 + x: 1664 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3d6339944b17a950800000000000000 + internalID: 6460162171928276287 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65A9\u5C06\u5200" + rect: + serializedVersion: 2 + x: 1696 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 270e2270306fe0550800000000000000 + internalID: 6129106635762884722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65A9\u77F3\u5251" + rect: + serializedVersion: 2 + x: 1728 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08b463da1bf053ee0800000000000000 + internalID: -1282101263127393408 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65A9\u9A6C\u5200" + rect: + serializedVersion: 2 + x: 1760 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f6ecf1141ee74470800000000000000 + internalID: 8378927401714640625 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65AD\u5251" + rect: + serializedVersion: 2 + x: 1792 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b0cd2b3e443a2ce0800000000000000 + internalID: -1429272421131763527 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65AD\u5934\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1824 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ea31d7df7b3363a0800000000000000 + internalID: -6673424802565244183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65AD\u5CB3\u5200" + rect: + serializedVersion: 2 + x: 1856 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bab46c625ab144fa0800000000000000 + internalID: -5817494422521754709 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65AD\u6D41\u65A7" + rect: + serializedVersion: 2 + x: 1888 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b27d974ba20a4ddd0800000000000000 + internalID: -2462166990987864277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65AD\u80A0\u5203" + rect: + serializedVersion: 2 + x: 1920 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bbed0d5bf1c5ec720800000000000000 + internalID: 2868331303945690811 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65AD\u88C2\u7684\u6E14\u67AA" + rect: + serializedVersion: 2 + x: 1952 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad777eda6418d5a50800000000000000 + internalID: 6511502776812926938 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65AD\u95E8\u5200" + rect: + serializedVersion: 2 + x: 1984 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b651641c08893c60800000000000000 + internalID: 7798413815231633078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65AD\u9996\u9A91\u5175\u7684\u5934\u9885" + rect: + serializedVersion: 2 + x: 2016 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1aa306adf7c84e00800000000000000 + internalID: 1029292407080069660 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65AD\u9996\u9A91\u5175\u7684\u5FC3\u810F" + rect: + serializedVersion: 2 + x: 2048 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca6b3ca7239132540800000000000000 + internalID: 4981853317400606380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65AF\u5DF4\u8FBE\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2080 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cec676304e8260850800000000000000 + internalID: 6342802084972686572 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65AF\u5DF4\u8FBE\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2112 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9886d3bd1d65bda0800000000000000 + internalID: -5929713360024729443 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65AF\u5DF4\u8FBE\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 2144 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65f8b6d4be81dbb00800000000000000 + internalID: 845859703910797142 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65AF\u5DF4\u8FBE\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2176 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8495ed34c70b73850800000000000000 + internalID: 6356743446817823048 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u5315\u9996" + rect: + serializedVersion: 2 + x: 2208 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0756b4f5850a44d50800000000000000 + internalID: 6720672845359965552 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u5355\u5200" + rect: + serializedVersion: 2 + x: 2240 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb2cf61c6ee82b9f0800000000000000 + internalID: -454143490672049474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u53CC\u5251" + rect: + serializedVersion: 2 + x: 2272 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0cbebbcbc2c11e120800000000000000 + internalID: 2441263451482090432 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u53CC\u65A7" + rect: + serializedVersion: 2 + x: 2304 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d68600ce00cced80800000000000000 + internalID: -8219984050274269481 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u5E61\u6756" + rect: + serializedVersion: 2 + x: 2336 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d26ed2e8c1ab91f60800000000000000 + internalID: 8005634444434990637 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u5F13" + rect: + serializedVersion: 2 + x: 2368 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5a15958a7c5071c0800000000000000 + internalID: -4508001545700959651 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u62F3\u5957" + rect: + serializedVersion: 2 + x: 2400 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a1f2190b67ac5260800000000000000 + internalID: 7087723991729893799 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u6CD5\u5251" + rect: + serializedVersion: 2 + x: 2432 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97d8269fd004509d0800000000000000 + internalID: -2808768363832898183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u6CD5\u5668" + rect: + serializedVersion: 2 + x: 2464 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12d7537e409deba50800000000000000 + internalID: 6538902324070677793 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u6CD5\u5B9D" + rect: + serializedVersion: 2 + x: 2496 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f7d24e0ec4bb7c00800000000000000 + internalID: 899511347686070264 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u722A" + rect: + serializedVersion: 2 + x: 2528 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c4c5431be3e7afe0800000000000000 + internalID: -1177722178753936188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u77ED\u6756" + rect: + serializedVersion: 2 + x: 2560 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e95c1b5050cb6da70800000000000000 + internalID: 8851468847399683486 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u80E7\u5200" + rect: + serializedVersion: 2 + x: 2592 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2312c6b19ad93b3d0800000000000000 + internalID: -3192034361240444622 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u9570\u5200" + rect: + serializedVersion: 2 + x: 2624 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 76d2f3aec97751c00800000000000000 + internalID: 870733618794671463 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u957F\u67AA" + rect: + serializedVersion: 2 + x: 2656 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 265cda8ab781b3c80800000000000000 + internalID: -8342046965383707294 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B017\u54C1\u957F\u9524" + rect: + serializedVersion: 2 + x: 2688 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cb8084b423c895700800000000000000 + internalID: 529608578832009404 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u516B\u5366\u76D8" + rect: + serializedVersion: 2 + x: 2720 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5bbbcd579ec6e250800000000000000 + internalID: 5973689105262558043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u591C\u53C9\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 2752 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8dc632b843971adf0800000000000000 + internalID: -170722044283753256 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u5A18\u5927\u793C\u5305" + rect: + serializedVersion: 2 + x: 2784 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 537f95bb0ae051910800000000000000 + internalID: 1807366908959913781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u5A18\u80F8\u82B1" + rect: + serializedVersion: 2 + x: 2816 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 38e8d9697712329e0800000000000000 + internalID: -1647436241175736701 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u5A5A\u5927\u793C\u5305" + rect: + serializedVersion: 2 + x: 2848 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eea046de9c39626e0800000000000000 + internalID: -1862638900390655250 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u5A5A\u82B1\u675F" + rect: + serializedVersion: 2 + x: 2880 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a9dba77c22fa0830800000000000000 + internalID: 4038306288691304865 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u5E74\u5FEB\u4E50" + rect: + serializedVersion: 2 + x: 2912 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70a3c0bb97a6eef50800000000000000 + internalID: 6912579549122017799 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u5E74\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2944 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 922998de9c596fb40800000000000000 + internalID: 5473727091621597737 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u5E74\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2976 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f23bc4f04eda6ac10800000000000000 + internalID: 2064528674216784687 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u624B\u4E4B\u7BAD" + rect: + serializedVersion: 2 + x: 3008 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea16f16f091e450c0800000000000000 + internalID: -4587794107662900818 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u624B\u793C\u5305" + rect: + serializedVersion: 2 + x: 3040 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 015af8c07c84f87e0800000000000000 + internalID: -1761108909532142320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6625\u4E2A\u6027\u65D7\u888D\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3072 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e884f068caa74b930800000000000000 + internalID: 4158083237371922574 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6625\u4E2A\u6027\u65D7\u888D\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3104 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06f3fe66bb6875070800000000000000 + internalID: 8095086994665717600 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6625\u4E2A\u6027\u65D7\u888D\u624B\u5957" + rect: + serializedVersion: 2 + x: 3136 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02b09256f4b2b3e50800000000000000 + internalID: 6790068483190754080 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6625\u4E2A\u6027\u65D7\u888D\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3168 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f37f6a4503ed82d60800000000000000 + internalID: 7865781048362596159 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6625\u53E4\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3200 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8cb5d74d2488fc1f0800000000000000 + internalID: -1022448769775608888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6625\u53E4\u88C5\u5973\u8863\u670D" + rect: + serializedVersion: 2 + x: 3232 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9cb66640ad29972d0800000000000000 + internalID: -3280429388488348727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6625\u53E4\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3264 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d7b498fc780dc560800000000000000 + internalID: 7335528700895868888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6625\u5927\u706F\u7B3C" + rect: + serializedVersion: 2 + x: 3296 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 952c235b79758dd40800000000000000 + internalID: 5609329644981633625 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6625\u5927\u70AE\u4ED7" + rect: + serializedVersion: 2 + x: 3328 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: daf9da8de1fc09400800000000000000 + internalID: 328990504189271981 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6625\u5927\u793C\u70AE" + rect: + serializedVersion: 2 + x: 3360 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97c3dd209aaab2970800000000000000 + internalID: 8731259945462086777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6625\u5C0F\u70AE\u4ED7" + rect: + serializedVersion: 2 + x: 3392 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a6d1016b4143cbe0800000000000000 + internalID: -1458250062332045660 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6625\u7B26\u5370\u7334" + rect: + serializedVersion: 2 + x: 3424 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d56e6373516c7d890800000000000000 + internalID: -7433254865528756643 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6625\u7EA2\u7EB8" + rect: + serializedVersion: 2 + x: 3456 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a132084ef0bb9b100800000000000000 + internalID: 124336141661905690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6708\u4F20\u5947\u793C\u5305" + rect: + serializedVersion: 2 + x: 3488 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0934550b7557ae90800000000000000 + internalID: -7014543907747514100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u6708\u9576\u91D1\u8247" + rect: + serializedVersion: 2 + x: 3520 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f360852c792ef8720800000000000000 + internalID: 2850746230577301055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u68A6\u5E7B\u738B\u5B50\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3552 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 681f4c1a40421c4d0800000000000000 + internalID: -3116169864851164794 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u68A6\u5E7B\u738B\u5B50\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3584 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 762e9d91563bf4de0800000000000000 + internalID: -1346660516753710489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u68A6\u5E7B\u738B\u5B50\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3616 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f7993c54ef9ed2b0800000000000000 + internalID: -5557829086979975176 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u68A6\u5E7B\u738B\u5B50\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3648 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c60cd6e76dcab7010800000000000000 + internalID: 1187732963986358380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u68A6\u5E7B\u738B\u5B50\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3680 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bedb3248bc5e1d5a0800000000000000 + internalID: -6498160125060858389 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u767D\u8611\u83C7" + rect: + serializedVersion: 2 + x: 3712 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de82878c228a3c770800000000000000 + internalID: 8629926178317674733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u767E\u969C\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3744 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3d0a215e884e62f0800000000000000 + internalID: -977764293008552641 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u7684\u94C1\u94B3" + rect: + serializedVersion: 2 + x: 3776 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 082a80ac1f2b565c0800000000000000 + internalID: -4222772324043545984 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u793C\u76D2" + rect: + serializedVersion: 2 + x: 3808 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c05705c19f8d79b0800000000000000 + internalID: -5080746948365430584 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u7FBD\u6BDB" + rect: + serializedVersion: 2 + x: 3840 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e301861012d3c670800000000000000 + internalID: 8557914683472937956 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u90CE\u5927\u793C\u5305" + rect: + serializedVersion: 2 + x: 3872 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90f6d763a9af9d410800000000000000 + internalID: 1502507490950868745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u90CE\u80F8\u82B1" + rect: + serializedVersion: 2 + x: 3904 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d6b02bfc61f36cb0800000000000000 + internalID: -4871784921512757552 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u91D1\u7816" + rect: + serializedVersion: 2 + x: 3936 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d539d194e64642940800000000000000 + internalID: 5270447888766178141 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u91D1\u9C7C" + rect: + serializedVersion: 2 + x: 3968 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e698a99303f2431e0800000000000000 + internalID: -2219096832215447186 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u9C9C\u7684\u9F9F\u58F3" + rect: + serializedVersion: 2 + x: 4000 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9ae2e73bb18c5530800000000000000 + internalID: 3845090822964046491 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u9EC4\u660F\u6CD5\u672F\u6212\u6307\u53D1\u7A7F\u7B49\u7EA7\u7EDD\u5929\u6212" + rect: + serializedVersion: 2 + x: 4032 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f78fd24cea27ebec0800000000000000 + internalID: -3549273361380149121 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u9EC4\u660F\u6CD5\u672F\u8170\u4F69\u653B\u51FB\u7B49\u7EA7\u82F1\u96C4\u8170\u9970" + rect: + serializedVersion: 2 + x: 4064 + y: 3040 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22f363e6710dd36c0800000000000000 + internalID: -4161941681568596190 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u9EC4\u660F\u6CD5\u672F\u8170\u4F69\u6CD5\u7A7F\u7B49\u7EA7\u82F1\u96C4\u8170\u9970" + rect: + serializedVersion: 2 + x: 0 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56dd35f7c8f0831d0800000000000000 + internalID: -3370927224980775579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u9EC4\u660F\u6CD5\u672F\u9879\u94FE\u6CD5\u7A7F\u7B49\u7EA7\u795E\u62A4\u9879\u94FE" + rect: + serializedVersion: 2 + x: 32 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a486f5bf59aa49130800000000000000 + internalID: 3572667965555828810 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u9EC4\u660F\u6CD5\u672F\u9879\u94FE\u9632\u5FA1\u7B49\u7EA7\u795E\u62A4\u9879\u94FE" + rect: + serializedVersion: 2 + x: 64 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b04ce4dfb30864d10800000000000000 + internalID: 2109514470610879499 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u9EC4\u660F\u7269\u7406\u6212\u6307\u7269\u7A7F\u7B49\u7EA7\u5343\u4F5B\u6212" + rect: + serializedVersion: 2 + x: 96 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cee813a6b7f5b21c0800000000000000 + internalID: -4527420016723652884 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u9EC4\u660F\u7269\u7406\u8170\u4F69\u653B\u51FB\u7B49\u7EA7\u6D77\u5929\u4F69" + rect: + serializedVersion: 2 + x: 128 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 131c4bae5a26c1ae0800000000000000 + internalID: -1577277304739675855 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u9EC4\u660F\u7269\u7406\u8170\u4F69\u7269\u7A7F\u7B49\u7EA7\u6D77\u5929\u4F69" + rect: + serializedVersion: 2 + x: 160 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd4415dd6d6f14100800000000000000 + internalID: 90624870220645596 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u9EC4\u660F\u7269\u7406\u9879\u94FE\u7269\u7A7F\u7B49\u7EA7\u5F80\u590D\u9879\u94FE" + rect: + serializedVersion: 2 + x: 192 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91c520937f433b5e0800000000000000 + internalID: -1895112781774824423 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B0\u9EC4\u660F\u7269\u7406\u9879\u94FE\u9632\u5FA1\u7B49\u7EA7\u5F80\u590D\u9879\u94FE" + rect: + serializedVersion: 2 + x: 224 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 93a17feb7e0ce6810800000000000000 + internalID: 1760556605922286137 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B9\u5F62\u753B\u7709\u7B3C" + rect: + serializedVersion: 2 + x: 256 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 268ffa0b91b170a00800000000000000 + internalID: 722576062368708706 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B9\u821F\u5BC6\u51FD" + rect: + serializedVersion: 2 + x: 288 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34ec10f3f12300080800000000000000 + internalID: -9223316927072317885 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65B9\u9752\u5B50\u7684\u5143\u5A74" + rect: + serializedVersion: 2 + x: 320 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 119d6e9b0566282f0800000000000000 + internalID: -972102072656275183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65CB\u98CE\u65A7" + rect: + serializedVersion: 2 + x: 352 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f6fb5a79336aac900800000000000000 + internalID: 705559032154668911 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65CB\u9F9F" + rect: + serializedVersion: 2 + x: 384 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc20db8a9fa4d2c20800000000000000 + internalID: 3183282947759080139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65CB\u9F9F\u58F3" + rect: + serializedVersion: 2 + x: 416 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a67b7d6c8b2116480800000000000000 + internalID: -8907818003142822038 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65D7\u888D" + rect: + serializedVersion: 2 + x: 448 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2717af41582cbe80800000000000000 + internalID: -8161604095008368849 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65D7\u888D\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 480 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14f37243bf5868590800000000000000 + internalID: -7672297601220788415 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65D7\u888D\u7537\u8863\u670D" + rect: + serializedVersion: 2 + x: 512 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f000f220a5e787250800000000000000 + internalID: 5942638633364160527 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65D7\u888D\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 544 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5167b07d9047cd740800000000000000 + internalID: 5178141257180608021 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65D7\u888D\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 576 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3636b24de2a573140800000000000000 + internalID: 4699323893359010659 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65D7\u888D\u978B" + rect: + serializedVersion: 2 + x: 608 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 079797be210f5ad70800000000000000 + internalID: 9053906589948934512 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u4E0A\u4E4B\u62E5" + rect: + serializedVersion: 2 + x: 640 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d32c717fa39ca8a0800000000000000 + internalID: -6292492197610904624 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u4E0A\u5FBD\u7AE01" + rect: + serializedVersion: 2 + x: 672 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e18a44e838b829b60800000000000000 + internalID: 7751411305801885726 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u4E0A\u5FBD\u7AE02" + rect: + serializedVersion: 2 + x: 704 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dfd637b80f2848240800000000000000 + internalID: 4793099873072410109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u4E0A\u6307\u73AF1" + rect: + serializedVersion: 2 + x: 736 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b24878685ed7d8120800000000000000 + internalID: 2417726999725835307 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u4E0A\u6307\u73AF2" + rect: + serializedVersion: 2 + x: 768 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc2b51269e1954640800000000000000 + internalID: 5063613787606987471 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u4F24\u4F69" + rect: + serializedVersion: 2 + x: 800 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b23a3e2a8a6249b20800000000000000 + internalID: 3140177345913266987 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u53CC" + rect: + serializedVersion: 2 + x: 832 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0200f4114129e3180800000000000000 + internalID: -9133702379373395936 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u53CC\u4E4B\u7FFC\u5151\u6362\u724C" + rect: + serializedVersion: 2 + x: 864 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae5af8b7522f66260800000000000000 + internalID: 7090620906142148074 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u53CC\u591C\u660E\u73E0" + rect: + serializedVersion: 2 + x: 896 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b8ad0cc90b95db40800000000000000 + internalID: 5464444189264423089 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u53CC\u6212" + rect: + serializedVersion: 2 + x: 928 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81d17ea7ccc74b330800000000000000 + internalID: 3725740009419382040 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u53CC\u9526\u56CA" + rect: + serializedVersion: 2 + x: 960 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a96a0c639a3ba400800000000000000 + internalID: 336427002016459169 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u540D\u7684\u5C38\u9AA8" + rect: + serializedVersion: 2 + x: 992 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91fdf8ddc5c956be0800000000000000 + internalID: -1484608579480592615 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u5934\u9A91\u5175\u5C06\u519B" + rect: + serializedVersion: 2 + x: 1024 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50838918aee44b2d0800000000000000 + internalID: -3263897060833216507 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u5984\u65A7" + rect: + serializedVersion: 2 + x: 1056 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62379c5d98f51d670800000000000000 + internalID: 8561729412209931046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u5B9A\u795E\u4EE4" + rect: + serializedVersion: 2 + x: 1088 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1dee8f222c1590860800000000000000 + internalID: 7496612948987145937 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u5E38\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1120 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5726da34db57ccb00800000000000000 + internalID: 850183885410886261 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u5F71\u5203" + rect: + serializedVersion: 2 + x: 1152 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca307db772a3f04f0800000000000000 + internalID: -860405062548651092 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u654C\u7FC5\u8180" + rect: + serializedVersion: 2 + x: 1184 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e59ff2d8f896b7410800000000000000 + internalID: 1475889368163940702 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u654C\u9526\u56CA" + rect: + serializedVersion: 2 + x: 1216 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25a2b250c9d9291e0800000000000000 + internalID: -2192516775148836270 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u672C\u5947\u6284" + rect: + serializedVersion: 2 + x: 1248 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b0d5a6062a7b0440800000000000000 + internalID: 4903146923061792952 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u6781\u51A0" + rect: + serializedVersion: 2 + x: 1280 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5be78aa54a629870800000000000000 + internalID: 8688123478597430107 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u6781\u6CD5\u795E" + rect: + serializedVersion: 2 + x: 1312 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9fbdb4325ba3c8b20800000000000000 + internalID: 3137947590026058745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u6781\u900D\u9065\u4EE4" + rect: + serializedVersion: 2 + x: 1344 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90a28e4707276a380800000000000000 + internalID: -8960348581283747319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u68A6\u8349" + rect: + serializedVersion: 2 + x: 1376 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e0c7d5105b84bb710800000000000000 + internalID: 1710040425766419470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u70DF\u7164" + rect: + serializedVersion: 2 + x: 1408 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3174ae0e77c804c0800000000000000 + internalID: -4320984498236526274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u754F\u4E4B\u8BC1" + rect: + serializedVersion: 2 + x: 1440 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 078993cd6778df5f0800000000000000 + internalID: -721271420738758544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u754F\u6212\u6307" + rect: + serializedVersion: 2 + x: 1472 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f31477e018f0f2a60800000000000000 + internalID: 7651351338893656383 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u754F\u9526\u56CA" + rect: + serializedVersion: 2 + x: 1504 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14f37aa3dd3a15460800000000000000 + internalID: 7228739047473495873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u76FE\u4E0D\u6467\u53EA\u77DB" + rect: + serializedVersion: 2 + x: 1536 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60a4e7368e0dfe500800000000000000 + internalID: 427790186143697414 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u8896\u8857\u821E\u7537\u88C5\u4E0A\u8EAB32" + rect: + serializedVersion: 2 + x: 1568 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b98f5ba1ee2e4d730800000000000000 + internalID: 4023089879426922651 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u8896\u8857\u821E\u7537\u88C5\u4E0B\u8EAB32" + rect: + serializedVersion: 2 + x: 1600 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52ab1378285adc650800000000000000 + internalID: 6254837437520001573 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u8896\u8857\u821E\u7537\u88C5\u5934\u53D132" + rect: + serializedVersion: 2 + x: 1632 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 988b2f135c914d290800000000000000 + internalID: -7866634314372171639 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u8896\u8857\u821E\u7537\u88C5\u978B32" + rect: + serializedVersion: 2 + x: 1664 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c2a485b9ff045aa0800000000000000 + internalID: -6173291624051465535 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u90AA\u7CBE\u9B44" + rect: + serializedVersion: 2 + x: 1696 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c935692a0cf552a0800000000000000 + internalID: -6749211345970447934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u91CF\u5760\u5B50" + rect: + serializedVersion: 2 + x: 1728 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b97ae27d74999d190800000000000000 + internalID: -7937144334431901797 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u95F4\u53CC\u5B50" + rect: + serializedVersion: 2 + x: 1760 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fea597f48b10e7330800000000000000 + internalID: 3710405034118830831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E0\u97F3\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 1792 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0e42ddc6aebdd380800000000000000 + internalID: -8944783661260976628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5" + rect: + serializedVersion: 2 + x: 1824 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c767da99bdc110540800000000000000 + internalID: 4972287193095435900 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u670D\u4F8D\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1856 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2ee3d213fa61f1d0800000000000000 + internalID: -3318753858169868756 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u670D\u4F8D\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1888 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ad8ed70f6a902420800000000000000 + internalID: 2603250386284219814 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u672C\u65F6\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1920 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b07a9997ee8a2b90800000000000000 + internalID: -7265837923443248969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u672C\u65F6\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1952 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a05783148bf86c70800000000000000 + internalID: 8964691602962862247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u672C\u65F6\u88C5\u5973\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1984 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08d383d1b14889340800000000000000 + internalID: 4870788248990399872 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u672C\u65F6\u88C5\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2016 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e9adfd109224b540800000000000000 + internalID: 5022677486798744037 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u672C\u65F6\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2048 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11c621bc0ec8e69b0800000000000000 + internalID: -5084972032147166191 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u672C\u65F6\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2080 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74475f5be2ae6b840800000000000000 + internalID: 5239632702834308167 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u672C\u65F6\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2112 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98e3964a73c229b10800000000000000 + internalID: 1986699003116994185 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u672C\u65F6\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2144 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2560aa2d4496b8290800000000000000 + internalID: -7887094578096241070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u672C\u65F6\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2176 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3b638bfa8b07e330800000000000000 + internalID: 3739970707107572540 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u76F4\u795E\u5361" + rect: + serializedVersion: 2 + x: 2208 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8852fa7b20e8a7a50800000000000000 + internalID: 6519679552895001992 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u7CFB\u841D\u8389\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2240 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06fd1d43d02d75f00800000000000000 + internalID: 1105583187705323360 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u7CFB\u841D\u8389\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2272 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1eb179c757d72c00800000000000000 + internalID: 875905424588652059 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u7CFB\u841D\u8389\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2304 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3cbb75d40dc1839e0800000000000000 + internalID: -1641530383200175165 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65E5\u7CFB\u841D\u8389\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2336 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 777a6ce27ef66b680800000000000000 + internalID: -8739674988152969353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F1\u6C34\u7CBE" + rect: + serializedVersion: 2 + x: 2368 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c2706f17a7dd9df0800000000000000 + internalID: -171744097984286008 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u5C1A\u5973\u8B66\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2400 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d17c07cc616347e20800000000000000 + internalID: 3347359894590244637 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u5C1A\u5973\u8B66\u4E0A\u8863\u7EFF" + rect: + serializedVersion: 2 + x: 2432 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 459d40bca1b00e410800000000000000 + internalID: 1504214485244893524 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u5C1A\u5973\u8B66\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 2464 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 881cdab7e456efa60800000000000000 + internalID: 7709710999861707144 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u5C1A\u5973\u8B66\u4E0B\u8863\u7EFF" + rect: + serializedVersion: 2 + x: 2496 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd879799efc5b0360800000000000000 + internalID: 7136900283065006299 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u5C1A\u5973\u8B66\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2528 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5f07262bff3e7f50800000000000000 + internalID: 6881007628578131805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u5C1A\u5973\u8B66\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2560 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36bb1f396620e0a00800000000000000 + internalID: 724519229645241187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u5C1A\u5973\u8B66\u62A4\u8155\u7EFF" + rect: + serializedVersion: 2 + x: 2592 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e80b3177c8868160800000000000000 + internalID: 7027454658737801446 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u5C1A\u5973\u8B66\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2624 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e8784a6e5c89d340800000000000000 + internalID: 4889093207625332965 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u5C1A\u5973\u8B66\u978B\u5B50\u7EFF" + rect: + serializedVersion: 2 + x: 2656 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12cdf417f5ebf1640800000000000000 + internalID: 5052966624065215521 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u7A7A\u4E66\u5377" + rect: + serializedVersion: 2 + x: 2688 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9407e6c3277efd510800000000000000 + internalID: 1576232872429121609 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u88C5\u4ED3\u5E93\u6269\u5145\u77F3\u5C0F" + rect: + serializedVersion: 2 + x: 2720 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8eef139dab0bd76e0800000000000000 + internalID: -1838118756342956312 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u88C5\u6B66\u5668\u5143\u5B9D" + rect: + serializedVersion: 2 + x: 2752 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c351d7e1c425f0cf0800000000000000 + internalID: -283917764618545860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u88C5\u6B66\u5668\u6BDB\u7B14" + rect: + serializedVersion: 2 + x: 2784 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71696c4277a9f7880800000000000000 + internalID: -8610994126000318953 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u88C5\u6B66\u5668\u72EE\u5B50\u624B" + rect: + serializedVersion: 2 + x: 2816 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f07419cfeb0d78e70800000000000000 + internalID: 9117485489334601487 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u88C5\u6B66\u5668\u7CD6\u846B\u82A6" + rect: + serializedVersion: 2 + x: 2848 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 791360f60c03e1b20800000000000000 + internalID: 3106974395986751895 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u88C5\u6B66\u5668\u7EA2\u706F\u7B3C" + rect: + serializedVersion: 2 + x: 2880 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ca81714360f863d0800000000000000 + internalID: -3213054025038460219 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u88C5\u6B66\u5668\u94DC\u9572" + rect: + serializedVersion: 2 + x: 2912 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f17d83a0d83a34860800000000000000 + internalID: 7513028429541332767 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u88C5\u6B66\u5668\u97AD\u70AE\u4E08" + rect: + serializedVersion: 2 + x: 2944 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8e0a118ad65d43b0800000000000000 + internalID: -5526665671244902769 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u88C5\u6B66\u5668\u997A\u5B50" + rect: + serializedVersion: 2 + x: 2976 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2215a73ce49d2f70800000000000000 + internalID: 9164144559035585066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u88C5\u6B66\u5668\u9992\u5934" + rect: + serializedVersion: 2 + x: 3008 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 412fb3f0e51b74770800000000000000 + internalID: 8595033431400509972 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u88C5\u6B66\u5668\u9CA4\u9C7C" + rect: + serializedVersion: 2 + x: 3040 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24d89cf3c03f61730800000000000000 + internalID: 3969627355509001538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u65F6\u88C5\u7CBE\u901A" + rect: + serializedVersion: 2 + x: 3072 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3d18153da3d629b0800000000000000 + internalID: -5105160386704302785 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6606\u866B\u7FC5\u8180" + rect: + serializedVersion: 2 + x: 3104 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b89a281dc5de20e0800000000000000 + internalID: -2292660083434547017 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u660A\u5929\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3136 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd3aa3c88cefb0fa0800000000000000 + internalID: -5833288755028778017 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u660A\u5929\u8F6E" + rect: + serializedVersion: 2 + x: 3168 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43bd58946b6e02130800000000000000 + internalID: 3540082977705155380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u660E\u5149\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 3200 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 303a889fdd0615310800000000000000 + internalID: 1392000266324714243 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u660E\u5149\u6218\u94E0" + rect: + serializedVersion: 2 + x: 3232 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef891e13d98a59ca0800000000000000 + internalID: -6010712734555858690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u660E\u5149\u8155\u7532" + rect: + serializedVersion: 2 + x: 3264 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d33393e6a140bfac0800000000000000 + internalID: -3820455347328830659 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u660E\u5149\u978B" + rect: + serializedVersion: 2 + x: 3296 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3b8e98d700555c20800000000000000 + internalID: 3194547505318497086 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u660E\u5149\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3328 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bdf771aba66e254b0800000000000000 + internalID: -5453042852729225253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u660E\u738B\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3360 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5c4b9fcbeaa2aa80800000000000000 + internalID: -8457009220471272356 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u660E\u738B\u8F6E" + rect: + serializedVersion: 2 + x: 3392 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af7edeba3134ec5c0800000000000000 + internalID: -4193340451267418118 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u660E\u74F7\u70EB\u91D1\u8336\u51E0" + rect: + serializedVersion: 2 + x: 3424 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 328dde566f48d8390800000000000000 + internalID: -7814443584611035101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u660E\u955C\u6B62\u6C34\u7B14\u67B6" + rect: + serializedVersion: 2 + x: 3456 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f17440608a4c8cb10800000000000000 + internalID: 2002066260300678943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u4E91\u6563\u805A\u77F3" + rect: + serializedVersion: 2 + x: 3488 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 607e4c955ed445860800000000000000 + internalID: 7517719325437126406 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u5149\u95EA\u95EA\u5C0F\u793C\u670D\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3520 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f83d2bef920a2c40800000000000000 + internalID: 5488201981773035764 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u5149\u95EA\u95EA\u5C0F\u793C\u670D\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3552 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32f1517bc8923dc80800000000000000 + internalID: -8299244003969917149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u5149\u95EA\u95EA\u5C0F\u793C\u670D\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3584 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf781152669460430800000000000000 + internalID: 3748764442889914363 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u5BBF\u957F\u9524" + rect: + serializedVersion: 2 + x: 3616 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fdea35a5dd4ff9110800000000000000 + internalID: 1270002851482152671 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u661F\u65F6\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3648 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 824058edddc6cd3c0800000000000000 + internalID: -4333469041260428248 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u661F\u65F6\u88C5\u7537\u8863\u670D" + rect: + serializedVersion: 2 + x: 3680 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8896916722c38d3e0800000000000000 + internalID: -2028805513422476920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u661F\u65F6\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3712 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 76f56ff975c4820d0800000000000000 + internalID: -3447421575522525337 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u661F\u65F6\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3744 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5b2db85df125c0a0800000000000000 + internalID: -6862041085229847718 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u6708\u6620" + rect: + serializedVersion: 2 + x: 3776 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d97a2f9f10aaca1f0800000000000000 + internalID: -1032263289109567587 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u6708\u76F8\u8F89" + rect: + serializedVersion: 2 + x: 3808 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7c5735f05abfa4c0800000000000000 + internalID: -4273992664477115265 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u6CB3\u7389\u843D" + rect: + serializedVersion: 2 + x: 3840 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7067330500c5746b0800000000000000 + internalID: -5312176079044905465 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u7075\u5947\u5F15\u73E01\u7EA7" + rect: + serializedVersion: 2 + x: 3872 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e3026084d3f53bf0800000000000000 + internalID: -345101702411451418 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u7075\u5947\u5F15\u73E02\u7EA7" + rect: + serializedVersion: 2 + x: 3904 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe3dd5e05cdb7c920800000000000000 + internalID: 3010583529967703023 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u7075\u5947\u5F15\u73E03\u7EA7" + rect: + serializedVersion: 2 + x: 3936 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82617a77be36bd770800000000000000 + internalID: 8636606573388961320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u7075\u5947\u5F15\u73E04\u7EA7" + rect: + serializedVersion: 2 + x: 3968 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9370468a92c3f2170800000000000000 + internalID: 8155803599807711033 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u7075\u5947\u5F15\u73E0\u5168" + rect: + serializedVersion: 2 + x: 4000 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91f38ac623c207630800000000000000 + internalID: 3922683870522654489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u7403\u5927\u6218\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 4032 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec77cf079daf130d0800000000000000 + internalID: -3444696428151277618 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u7403\u5927\u6218\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 4064 + y: 3008 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56b6ebd8aa41b2570800000000000000 + internalID: 8442864649191189349 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u7403\u5927\u6218\u7537\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 0 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e1699c7663cfe110800000000000000 + internalID: 1292466463023129056 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u7403\u5927\u6218\u7537\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 32 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2eebe63acbe56ac0800000000000000 + internalID: -3862421851662979538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u7403\u5927\u6218\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 64 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c39eb3953cece1a60800000000000000 + internalID: 7646776555732724028 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u884C\u8BE1\u9053\u6563" + rect: + serializedVersion: 2 + x: 96 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc4f43da9b3c37650800000000000000 + internalID: 6229537911825822923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u8FB0\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 128 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c23ade79a074e7f0800000000000000 + internalID: -584218178371308857 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u8FD0\u56FE\u7AE0" + rect: + serializedVersion: 2 + x: 160 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4db1de4ca15ec570800000000000000 + internalID: 8488812148138556746 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u9B42\u767E\u7EB3\u4E391\u7EA7" + rect: + serializedVersion: 2 + x: 192 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4409a9df2a40546e0800000000000000 + internalID: -1854070573507112892 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u9B42\u767E\u7EB3\u4E392\u7EA7" + rect: + serializedVersion: 2 + x: 224 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5a94d78cfb427030800000000000000 + internalID: 3490936209148254810 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u9B42\u767E\u7EB3\u4E393\u7EA7" + rect: + serializedVersion: 2 + x: 256 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 266882d33157b93a0800000000000000 + internalID: -6657598898646251934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u661F\u9E3F\u79D8\u5323" + rect: + serializedVersion: 2 + x: 288 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd9a9096b3a23b4b0800000000000000 + internalID: -5425946691397637667 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6620\u5F64\u51A0" + rect: + serializedVersion: 2 + x: 320 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af17d114828bceb80800000000000000 + internalID: -8364107924903202310 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6620\u6708\u94DC\u955C" + rect: + serializedVersion: 2 + x: 352 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ca4c019ded90b6a0800000000000000 + internalID: -6435470223846126912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625" + rect: + serializedVersion: 2 + x: 384 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a64dc20aa629b5c0800000000000000 + internalID: -4199282665912973662 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u5802\u9152\u6EF4\u5786" + rect: + serializedVersion: 2 + x: 416 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8e19d65d0943e0b0800000000000000 + internalID: -5700632381680443764 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u5929\u673A\u8F66\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 448 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 840fe28fe107e3a60800000000000000 + internalID: 7655679694891577416 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u5929\u673A\u8F66\u88C5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 480 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91f82c271c68bbae0800000000000000 + internalID: -1532483082777358567 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u5929\u673A\u8F66\u88C5\u7537\u88E4" + rect: + serializedVersion: 2 + x: 512 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 617d564d346727460800000000000000 + internalID: 7237977584836138774 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u5929\u673A\u8F66\u88C5\u7537\u978B" + rect: + serializedVersion: 2 + x: 544 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 932bf4fe97db72060800000000000000 + internalID: 6928714883136467513 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u5929\u6E29\u6696\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 576 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3038ed465bbe8ab00800000000000000 + internalID: 840180494818509571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u5929\u6E29\u6696\u88C5\u5973\u7FA4" + rect: + serializedVersion: 2 + x: 608 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 180441e174a494a00800000000000000 + internalID: 741205282986934401 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u5929\u6E29\u6696\u88C5\u5973\u978B" + rect: + serializedVersion: 2 + x: 640 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04b1a547c54bf7920800000000000000 + internalID: 2990306986779351872 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u8282\u821E\u72EE\u5934\u9970\u7537" + rect: + serializedVersion: 2 + x: 672 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8bec20fd9a8d76970800000000000000 + internalID: 8748199025293053624 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u8282\u9CA4\u9C7C\u5934\u9970\u5973" + rect: + serializedVersion: 2 + x: 704 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04ebcdcaa126cc610800000000000000 + internalID: 1642795830792207936 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u8282\u9ED1\u80A9\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 736 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aeb3bde4944c61d60800000000000000 + internalID: 7860686018756426730 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u8282\u9ED1\u80A9\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 768 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1bff3d3740fa62a0800000000000000 + internalID: -6743313303272948961 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u8282\u9ED1\u80A9\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 800 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56744ba1668ad3e80800000000000000 + internalID: -8197210590256281755 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u8282\u9ED1\u80A9\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 832 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2acc2641fca162630800000000000000 + internalID: 3901835603865685154 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6625\u98CE\u6696\u96EA\u9C9C\u99A5\u997A" + rect: + serializedVersion: 2 + x: 864 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ceda201f18d17df80800000000000000 + internalID: -8081958562361594388 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6652\u5E72\u7684\u6C99\u866B\u786C\u58F3" + rect: + serializedVersion: 2 + x: 896 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f4255af294741830800000000000000 + internalID: 4040982940272108791 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6667\u77F3" + rect: + serializedVersion: 2 + x: 928 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27d4298c67efa8db0800000000000000 + internalID: -4788735467630473870 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6668\u4E91\u7684\u4FE1" + rect: + serializedVersion: 2 + x: 960 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fa091aa2f9a80a520800000000000000 + internalID: 2711319391896703151 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u666E\u5929\u540C\u5E86" + rect: + serializedVersion: 2 + x: 992 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 238a20d4381c4fae0800000000000000 + internalID: -1516374404840118222 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u666E\u8D24\u83E9\u8428" + rect: + serializedVersion: 2 + x: 1024 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1abe4d0e1c551eef0800000000000000 + internalID: -80689027126858847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u666E\u8D24\u83E9\u8428\u788E\u7247" + rect: + serializedVersion: 2 + x: 1056 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd7dea916315bd150800000000000000 + internalID: 5898397429772769244 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u666E\u901A\u5FBD\u8BB01" + rect: + serializedVersion: 2 + x: 1088 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4eae685b89ec4d8e0800000000000000 + internalID: -1669482406571742492 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u666E\u901A\u5FBD\u8BB02" + rect: + serializedVersion: 2 + x: 1120 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13cbff8eb6d23f670800000000000000 + internalID: 8571244457310010417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u666E\u901A\u5FBD\u8BB03" + rect: + serializedVersion: 2 + x: 1152 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9849b824e89dd790800000000000000 + internalID: -7503673298426181477 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u666E\u901A\u5FBD\u8BB04" + rect: + serializedVersion: 2 + x: 1184 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 186ed93eb6825c730800000000000000 + internalID: 4018662686343423617 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u666E\u901A\u5FBD\u8BB05" + rect: + serializedVersion: 2 + x: 1216 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f7b84904f86dcdb0800000000000000 + internalID: -4770041032978417679 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u666E\u901A\u6613\u5BB9\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1248 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 01e4de45e615e6540800000000000000 + internalID: 5003025770368290320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u666E\u901A\u665A\u793C\u670D" + rect: + serializedVersion: 2 + x: 1280 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84d8f781e29532f30800000000000000 + internalID: 4549578103088713032 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u666E\u901A\u665A\u793C\u670D\u624B\u5957" + rect: + serializedVersion: 2 + x: 1312 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a75747378c7af3d80800000000000000 + internalID: -8268705911456631430 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u666E\u901A\u665A\u793C\u670D\u978B" + rect: + serializedVersion: 2 + x: 1344 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 011bb02a8c3c0e170800000000000000 + internalID: 8205773787548594448 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u666E\u901A\u7EA2\u73AB\u7470" + rect: + serializedVersion: 2 + x: 1376 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55d45f0219e63f2a0800000000000000 + internalID: -6704893850622276267 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6674\u5CE6\u6625\u972D\u56FE" + rect: + serializedVersion: 2 + x: 1408 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21b4329671adf68c0800000000000000 + internalID: -4003741749626057966 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6676\u77F3" + rect: + serializedVersion: 2 + x: 1440 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0524378376ddded40800000000000000 + internalID: 5615387745799324240 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6676\u83B9\u77F3" + rect: + serializedVersion: 2 + x: 1472 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e5953af9c2091c160800000000000000 + internalID: 7044069813515409758 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u667A\u5FB7\u4E4B\u5FBD" + rect: + serializedVersion: 2 + x: 1504 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cff8573d04ed6c1b0800000000000000 + internalID: -5636573513600626692 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u667A\u5FB7\u4E4B\u7AE0" + rect: + serializedVersion: 2 + x: 1536 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 856ac82b66930f0d0800000000000000 + internalID: -3391147406164973992 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u667A\u6167\u4E4B\u8BC1" + rect: + serializedVersion: 2 + x: 1568 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e1d60cd73834ddc0800000000000000 + internalID: -3615202788305874455 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u667A\u6167\u7ED3\u6676" + rect: + serializedVersion: 2 + x: 1600 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4feeebff1f56f0d30800000000000000 + internalID: 4399847451016490740 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u667A\u6167\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1632 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a3f59b6e84ebe4a0800000000000000 + internalID: -6562900731620887643 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u667A\u8005\u4E4B\u51A0" + rect: + serializedVersion: 2 + x: 1664 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9af2738277884f30800000000000000 + internalID: 4560043548613999258 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6696" + rect: + serializedVersion: 2 + x: 1696 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60351b39fb7be4970800000000000000 + internalID: 8741125960217219846 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u5F71\u5203" + rect: + serializedVersion: 2 + x: 1728 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cb56f9f0eb68d6820800000000000000 + internalID: 2913132684842591676 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u7075\u4E4B\u6838" + rect: + serializedVersion: 2 + x: 1760 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ccabedae6022fac20800000000000000 + internalID: 3219829671698807500 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u708E" + rect: + serializedVersion: 2 + x: 1792 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08b368466cca75d90800000000000000 + internalID: -7109023518691017856 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u8272\u5957\u8155" + rect: + serializedVersion: 2 + x: 1824 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2ce67b88d77fd540800000000000000 + internalID: 5034874680359971886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u8272\u5957\u88D9" + rect: + serializedVersion: 2 + x: 1856 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cdab32bad26c3c8b0800000000000000 + internalID: -5133041250825159972 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u8272\u5957\u88D9\u4E0B\u8EAB" + rect: + serializedVersion: 2 + x: 1888 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4031947131ffbab0800000000000000 + internalID: -4990004667391856563 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u8272\u5957\u978B" + rect: + serializedVersion: 2 + x: 1920 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d84e5a550c9fb640800000000000000 + internalID: 5097964850011588824 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u8BE1\u4F18\u94B5\u7684\u5FE7\u90C1" + rect: + serializedVersion: 2 + x: 1952 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97dd6e47af87b90b0800000000000000 + internalID: -5720845884545639047 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u9690\u4F1A\u4E4B\u5370" + rect: + serializedVersion: 2 + x: 1984 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 215c70b246feeae10800000000000000 + internalID: 2210967680583189778 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u9690\u4F1A\u4F1A\u7AE0" + rect: + serializedVersion: 2 + x: 2016 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc43504c888ee0410800000000000000 + internalID: 1445348204534379725 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u9690\u4F1A\u5148\u950B\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 2048 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 030e0f9d91838fe50800000000000000 + internalID: 6843281317471248432 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u9690\u4F1A\u52C7\u8005\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 2080 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d483fb395500fc080800000000000000 + internalID: -9165106349124667315 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u9690\u4F1A\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 2112 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b10639f2f50331340800000000000000 + internalID: 4833260010476888091 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u9690\u4F1A\u7EDF\u9886\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 2144 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 154cc757fd2475850800000000000000 + internalID: 6365630125827736657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u9752\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 2176 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94284055b74260330800000000000000 + internalID: 3676666257920524873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u9ED1" + rect: + serializedVersion: 2 + x: 2208 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ffe1058d8760757b0800000000000000 + internalID: -5235708925699940609 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u9ED1\u7384\u5929\u6212" + rect: + serializedVersion: 2 + x: 2240 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7aaae1528ccf23080800000000000000 + internalID: -9209020351472817497 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u9ED1\u7EDD\u5929\u6212" + rect: + serializedVersion: 2 + x: 2272 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48141954c7fdbedc0800000000000000 + internalID: -3608544951571234428 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6697\u9ED1\u9B54\u5929\u6212" + rect: + serializedVersion: 2 + x: 2304 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74b3725955e0a8840800000000000000 + internalID: 5227006078254267207 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66AE\u96E8\u51A0" + rect: + serializedVersion: 2 + x: 2336 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d16cecb3d68855b0800000000000000 + internalID: -5379401510928227881 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66B4\u5E05\u9A91\u9A6C\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2368 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b4354feac9fe7180800000000000000 + internalID: -9115573945758305101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66B4\u5E05\u9A91\u9A6C\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2400 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5da68eca99a7195a0800000000000000 + internalID: -6516292385378899243 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66B4\u5E05\u9A91\u9A6C\u7537\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2432 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97e64946e4d2d8230800000000000000 + internalID: 3642617488330747513 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66B4\u5E05\u9A91\u9A6C\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2464 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c177ed04a8c007f00800000000000000 + internalID: 1112402895893853980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66B4\u5E05\u9A91\u9A6C\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2496 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e84b15533e608c4c0800000000000000 + internalID: -4267153074011655026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66B4\u7259\u725B\u55BD\u7F57" + rect: + serializedVersion: 2 + x: 2528 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87a6dafcdacbb2d30800000000000000 + internalID: 4407824115011775096 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66B4\u98CE\u5F29" + rect: + serializedVersion: 2 + x: 2560 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68d6c8078e4db4780800000000000000 + internalID: -8697624160550228602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66B4\u98DF\u4E4B\u5203" + rect: + serializedVersion: 2 + x: 2592 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1f65c42d09f16f80800000000000000 + internalID: -8114931218698113252 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66B9\u7F57\u5F02\u679C" + rect: + serializedVersion: 2 + x: 2624 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a29dbb6c867f5c10800000000000000 + internalID: 2044483101324579489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66DC\u5149\u5251" + rect: + serializedVersion: 2 + x: 2656 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e84c18bb2fd8d040800000000000000 + internalID: 4672729992262338789 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66F2\u76F4\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2688 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 740c761fa39238730800000000000000 + internalID: 4000086227170082887 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66F3\u5F71\u5BAB\u95F1\u70DB\u53F0" + rect: + serializedVersion: 2 + x: 2720 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 01122d4d4c78c4770800000000000000 + internalID: 8596395068197314832 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66F4\u5883\u795E\u4E39\xB7\u52A8\u5929" + rect: + serializedVersion: 2 + x: 2752 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6bdf363da67177d00800000000000000 + internalID: 970269992302149046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66FC\u73E0\u6C99\u534E" + rect: + serializedVersion: 2 + x: 2784 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb1e16b2a80a03860800000000000000 + internalID: 7507677094120382907 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66FC\u73E0\u6C99\u534E1" + rect: + serializedVersion: 2 + x: 2816 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cbd48b2828e944270800000000000000 + internalID: 8233880302116163004 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u66FF\u8EAB\u5A03\u5A03" + rect: + serializedVersion: 2 + x: 2848 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8abbe34b67042d2c0800000000000000 + internalID: -4408390206667965528 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708" + rect: + serializedVersion: 2 + x: 2880 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb1a7bc6126366290800000000000000 + internalID: -7897565379361791557 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u4ED9\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 2912 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1c5bf7324e23e1d0800000000000000 + internalID: -3322761238127354854 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u4ED9\u661F\u76D8" + rect: + serializedVersion: 2 + x: 2944 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1684301f17ebc1f80800000000000000 + internalID: -8134417430353852319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u5149\u5973\u795E\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2976 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29d8cb14f257b4a10800000000000000 + internalID: 1894736914066214290 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u5149\u5973\u795E\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3008 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d76ad5a2bc6ff5c40800000000000000 + internalID: 5503388622119609981 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u5149\u5973\u795E\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3040 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b00c7cb15b5425f0800000000000000 + internalID: -782400028642901832 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u5149\u5B9D\u76D2" + rect: + serializedVersion: 2 + x: 3072 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fdcbb1df769ad9e0800000000000000 + internalID: -1595797642225660428 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u5F71\u5F13" + rect: + serializedVersion: 2 + x: 3104 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f58e6f0ac050c0e60800000000000000 + internalID: 7929718595690883167 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u5F71\u91D1\u691F" + rect: + serializedVersion: 2 + x: 3136 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ae80c1b9f64fc0d0800000000000000 + internalID: -3400421155398447455 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u795E\u955C\u50CF" + rect: + serializedVersion: 2 + x: 3168 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be68a8dd79cab43f0800000000000000 + internalID: -915448330982881557 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u7FBF\u5984\u4E66" + rect: + serializedVersion: 2 + x: 3200 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b18a1a3b1354e4520800000000000000 + internalID: 2688162107356194843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u8F6E\u957F\u65A7" + rect: + serializedVersion: 2 + x: 3232 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5cc1619952268e8b0800000000000000 + internalID: -5122736662512263995 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u9570\u7F8A" + rect: + serializedVersion: 2 + x: 3264 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7dfdc954495090f80800000000000000 + internalID: -8139968717114253353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u997C" + rect: + serializedVersion: 2 + x: 3296 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8b7419beda5573d0800000000000000 + internalID: -3209559246797243510 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u997C\u6842\u82B1" + rect: + serializedVersion: 2 + x: 3328 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3af9369aa2e286e90800000000000000 + internalID: -7032320057373646941 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6708\u997C\u871C\u7CD6" + rect: + serializedVersion: 2 + x: 3360 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c170c76b8cd94b30800000000000000 + internalID: 4272188212836856265 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u670B\u514B\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3392 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c356979eceb8df190800000000000000 + internalID: -7927025919456615108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u670B\u514B\u88C5\u7537\u88E4" + rect: + serializedVersion: 2 + x: 3424 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b691d9dcccdfe8bb0800000000000000 + internalID: -4931725485859333781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u670B\u514B\u88C5\u7537\u978B" + rect: + serializedVersion: 2 + x: 3456 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e45b013b37ccfa6b0800000000000000 + internalID: -5282779040584780466 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u671B\u6708\u73B2\u73D1" + rect: + serializedVersion: 2 + x: 3488 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4a8c0bef2420dc20800000000000000 + internalID: 3229120721050176078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u671D" + rect: + serializedVersion: 2 + x: 3520 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1edd98fd19a7a240800000000000000 + internalID: 4802993473804164638 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u4E4B\u7075" + rect: + serializedVersion: 2 + x: 3552 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e2a6197d10dd0900800000000000000 + internalID: 652406346042745569 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u5076" + rect: + serializedVersion: 2 + x: 3584 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4aea4d3d3e5cfd40800000000000000 + internalID: 5619470052165872204 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u5143\u7D20\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 3616 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa1ac9a51e1922ec0800000000000000 + internalID: -3593149155614350934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u5236\u5934\u9885" + rect: + serializedVersion: 2 + x: 3648 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ff9a064374571ea0800000000000000 + internalID: -5902155932572672012 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u5251" + rect: + serializedVersion: 2 + x: 3680 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 130abc693d324be20800000000000000 + internalID: 3365354213227601969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u53D8\u77F3\u94FE\u5B50" + rect: + serializedVersion: 2 + x: 3712 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71b67f84368474940800000000000000 + internalID: 5280268679378332439 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u5934\u517D2012" + rect: + serializedVersion: 2 + x: 3744 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c9fc8001113c5d30800000000000000 + internalID: 4421462883264428480 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u5F13" + rect: + serializedVersion: 2 + x: 3776 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71eabf5a4fb4578a0800000000000000 + internalID: -6308052188933673449 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u6599\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 3808 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cfddd9751af5fe980800000000000000 + internalID: -8507476024515240452 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u6750" + rect: + serializedVersion: 2 + x: 3840 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 95d7919872c51d7c0800000000000000 + internalID: -4048353265155736231 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u68C9" + rect: + serializedVersion: 2 + x: 3872 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 01ae9e014e27980a0800000000000000 + internalID: -6878840631969846768 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u68D2" + rect: + serializedVersion: 2 + x: 3904 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b32c3ee2a566f960800000000000000 + internalID: 7635401968709280689 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u69FF\u6C89\u6597\u67DC" + rect: + serializedVersion: 2 + x: 3936 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6129b91f7e3b5f810800000000000000 + internalID: 1798541434976702998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u69FF\u82B1\u5915\u9676\u676F" + rect: + serializedVersion: 2 + x: 3968 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8264f9d3e134f53d0800000000000000 + internalID: -3215777811757316568 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u7075\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 4000 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8afb6eb584507a10800000000000000 + internalID: 1905115575779850894 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u7075\u5B9E" + rect: + serializedVersion: 2 + x: 4032 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 740e59d66252e4ac0800000000000000 + internalID: -3869114182887153593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u76D2" + rect: + serializedVersion: 2 + x: 4064 + y: 2976 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 347e53e6ca0d3b5c0800000000000000 + internalID: -4200784588404562109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u8774\u8776" + rect: + serializedVersion: 2 + x: 0 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09c2a00175ec47490800000000000000 + internalID: -7749342185471202160 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6728\u9999" + rect: + serializedVersion: 2 + x: 32 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6194382f561c0ea0800000000000000 + internalID: -5905320413437324949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u672A" + rect: + serializedVersion: 2 + x: 64 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f159bb2678c73a00800000000000000 + internalID: 736277473963627001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u672A\u77E5\u7684\u77F3\u5934" + rect: + serializedVersion: 2 + x: 96 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a434801df76c5f830800000000000000 + internalID: 4104404887688201034 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u672B" + rect: + serializedVersion: 2 + x: 128 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bbe847c06cb83e3d0800000000000000 + internalID: -3178543229264687429 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u672B\u4E16\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 160 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b861dca87352fec90800000000000000 + internalID: -7138445963876821365 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u672B\u4E16\u7537\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 192 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d28066793e96cf7e0800000000000000 + internalID: -1730391730598574035 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u672B\u4E16\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 224 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5923a014bf762d420800000000000000 + internalID: 2653297459300283029 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u672B\u4E16\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 256 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9bb87462a9ff493d0800000000000000 + internalID: -3200652397621310535 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u672B\u4E16\u88C5\u7537\u53D1" + rect: + serializedVersion: 2 + x: 288 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7815ac727b66e7aa0800000000000000 + internalID: -6161374303363640953 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u672B\u65E5\u5929\u5E73" + rect: + serializedVersion: 2 + x: 320 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd406b4942577aa70800000000000000 + internalID: 8838161593712116959 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u672B\u65E5\u5E87\u62A4" + rect: + serializedVersion: 2 + x: 352 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99b87d6782f110d50800000000000000 + internalID: 6701671979156999065 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u672B\u65E5\u7684\u6551\u8D4E" + rect: + serializedVersion: 2 + x: 384 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49532c3ab83411150800000000000000 + internalID: 5841524458703173012 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u672B\u65E5\u7ECF\u6587" + rect: + serializedVersion: 2 + x: 416 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0fe88573a5e436cd0800000000000000 + internalID: -2566121213288476944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u679C\u6708\u997C" + rect: + serializedVersion: 2 + x: 448 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3924db59c333e0da0800000000000000 + internalID: -5976783320170806637 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u5217" + rect: + serializedVersion: 2 + x: 480 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7da356f758da07420800000000000000 + internalID: 2625789371636595415 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u5730" + rect: + serializedVersion: 2 + x: 512 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43208284f6757d9b0800000000000000 + internalID: -5055475921236524492 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u5929" + rect: + serializedVersion: 2 + x: 544 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c184b5bfc1fa507b0800000000000000 + internalID: -5258604450874177508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u5B87" + rect: + serializedVersion: 2 + x: 576 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eaf5921d081f79bb0800000000000000 + internalID: -4929205731566461010 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u5B99" + rect: + serializedVersion: 2 + x: 608 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 075efac00eba8db60800000000000000 + internalID: 7771150135801668976 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u5BBF" + rect: + serializedVersion: 2 + x: 640 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a93411d998b60b60800000000000000 + internalID: 7712054382695823783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u5F20" + rect: + serializedVersion: 2 + x: 672 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a23223755a02e14c0800000000000000 + internalID: -4314975498469760214 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u65E5" + rect: + serializedVersion: 2 + x: 704 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ce1a047e0c83e220800000000000000 + internalID: 2514007010707119811 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u6603" + rect: + serializedVersion: 2 + x: 736 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43e1001ae672ef840800000000000000 + internalID: 5259684770916343348 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u6708" + rect: + serializedVersion: 2 + x: 768 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51a9faf91c9f54b00800000000000000 + internalID: 812329917813332501 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u6D2A" + rect: + serializedVersion: 2 + x: 800 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c45a4bafa93fe4640800000000000000 + internalID: 5066254477795042636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u76C8" + rect: + serializedVersion: 2 + x: 832 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32eaa1efd66f82900800000000000000 + internalID: 660048297684807203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u8352" + rect: + serializedVersion: 2 + x: 864 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edaa89bedf69dd6e0800000000000000 + internalID: -1811125457809528098 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u8FB0" + rect: + serializedVersion: 2 + x: 896 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27c5c249e798f9710800000000000000 + internalID: 1702230360914156658 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u4E4B\u9EC4" + rect: + serializedVersion: 2 + x: 928 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ad1f24e149c87460800000000000000 + internalID: 7239757685836422565 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6731\u96C0\u78D0\u73BA" + rect: + serializedVersion: 2 + x: 960 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ecbb032ecd474fc40800000000000000 + internalID: 5545185533236394958 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6734\u5200" + rect: + serializedVersion: 2 + x: 992 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 345ba0bb46af610f0800000000000000 + internalID: -1146453744577497789 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u673A\u68B0\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1024 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2fccc3e0b78fede80800000000000000 + internalID: -8151805068090487566 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u673A\u68B0\u5973\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 1056 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f4b601880e0da400800000000000000 + internalID: 336940976809882864 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u673A\u68B0\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1088 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bbdfe6a13b78b5fa0800000000000000 + internalID: -5810901690879115845 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u673A\u68B0\u5973\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1120 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b46faf1e34e1df9c0800000000000000 + internalID: -3891921226075277749 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u673A\u68B0\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1152 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e880db53d822125b0800000000000000 + internalID: -5394992888725829490 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u673A\u68B0\u6218\u72EE" + rect: + serializedVersion: 2 + x: 1184 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df6183c58e8495e40800000000000000 + internalID: 5645623770702419709 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u673A\u68B0\u7FFC" + rect: + serializedVersion: 2 + x: 1216 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88d0a923bf3665df0800000000000000 + internalID: -191856003579769464 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u673A\u68B0\u7FFC2" + rect: + serializedVersion: 2 + x: 1248 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81152e0ac85dd3b40800000000000000 + internalID: 5421724326395269400 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u673A\u68B0\u88C5\u7F6E" + rect: + serializedVersion: 2 + x: 1280 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 643aaeda9c6c9e370800000000000000 + internalID: 8352425553443857222 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6740\u4EBA\u8702" + rect: + serializedVersion: 2 + x: 1312 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a66009adff0b3ae0800000000000000 + internalID: -1568642463071967579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6740\u624B\u4E4B\u8C1C" + rect: + serializedVersion: 2 + x: 1344 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5e80da2faa764150800000000000000 + internalID: 5856503258198085213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6749\u6728\u7D20\u9762\u957F\u65B9\u51F3" + rect: + serializedVersion: 2 + x: 1376 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9644337cdefaceaa0800000000000000 + internalID: -6130331556973951895 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6749\u6811" + rect: + serializedVersion: 2 + x: 1408 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 298c240655f83a3a0800000000000000 + internalID: -6655318227473479534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6750\u6599\u4ED3\u5E93\u6269\u5145\u77F3\u5C0F" + rect: + serializedVersion: 2 + x: 1440 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fc7915aa75999d60800000000000000 + internalID: 7897507775559335160 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6751\u957F\u624B\u8C15" + rect: + serializedVersion: 2 + x: 1472 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 045e3a2e301aad6e0800000000000000 + internalID: -1811958862003837632 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u675C\u9785\u7684\u62A4\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 1504 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6042d77879f3765a0800000000000000 + internalID: -6528179214804507642 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u675C\u9E43" + rect: + serializedVersion: 2 + x: 1536 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a9f995da23abd6d0800000000000000 + internalID: -2964596525325747803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6761\u7EB9\u5B9D\u77F3\u767D\u7D2B\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1568 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 664aee40a1035c7e0800000000000000 + internalID: -1745936392226167706 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6761\u7EB9\u5B9D\u77F3\u767D\u7D2B\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1600 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d53190f4fff9f5a0800000000000000 + internalID: -6486872360777337388 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6761\u7EB9\u5B9D\u77F3\u767D\u7D2B\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1632 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f2cf3b3b578d0c60800000000000000 + internalID: 7786028156699263733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6761\u7EB9\u5B9D\u77F3\u88C5\u7537\u53D1" + rect: + serializedVersion: 2 + x: 1664 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c8c202659116f5b0800000000000000 + internalID: -5335057375281624894 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6761\u7EB9\u5C0F\u793C\u670D\u7FA4" + rect: + serializedVersion: 2 + x: 1696 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23dd0ff79a4327b50800000000000000 + internalID: 6589387107397066034 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6761\u7EB9\u5C0F\u793C\u670D\u8155" + rect: + serializedVersion: 2 + x: 1728 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 684ee93e5e9a93a00800000000000000 + internalID: 736806818883232902 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6761\u7EB9\u5C0F\u793C\u670D\u978B" + rect: + serializedVersion: 2 + x: 1760 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46c58bbf494176d40800000000000000 + internalID: 5577449293632527460 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6761\u7EB9\u8774\u8776\u857E\u4E1D\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1792 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d109a24757d30380800000000000000 + internalID: -9006118060030361131 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6761\u7EB9\u8774\u8776\u857E\u4E1D\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1824 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef4dbf2dd8b6c0de0800000000000000 + internalID: -1365598330125822722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6761\u7EB9\u8774\u8776\u857E\u4E1D\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 1856 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cb5e05017dfdefe30800000000000000 + internalID: 4539311589220738492 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6761\u7EB9\u8774\u8776\u857E\u4E1D\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1888 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 710aa39645bf1c1a0800000000000000 + internalID: -6790870423136722921 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6761\u7EB9\u8774\u8776\u857E\u4E1D\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1920 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 190c6242e9e2483a0800000000000000 + internalID: -6664150291855261551 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6761\u7EB9\u8774\u8776\u88C5\u5973\u53D1" + rect: + serializedVersion: 2 + x: 1952 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08446e4d4a33da260800000000000000 + internalID: 7110396169727394944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6765" + rect: + serializedVersion: 2 + x: 1984 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 548949bb7b3f5f7b0800000000000000 + internalID: -5190975025022986171 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6768\u6811" + rect: + serializedVersion: 2 + x: 2016 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 649e9d1b4fa7b8bc0800000000000000 + internalID: -3779792270872942266 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u677E\u67CF\u5EF6\u5E74" + rect: + serializedVersion: 2 + x: 2048 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3bb76d5ddd74128b0800000000000000 + internalID: -5178779078398411853 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u677E\u6EAA\u6E14\u4E50\u56FE" + rect: + serializedVersion: 2 + x: 2080 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c61248658c5adeef0800000000000000 + internalID: -77223338731888276 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u677E\u7EB9\u53E4\u5251" + rect: + serializedVersion: 2 + x: 2112 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 00bc6fef032d25ee0800000000000000 + internalID: -1273724636714579200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u677E\u9AA8\u957F\u9752\u67DC" + rect: + serializedVersion: 2 + x: 2144 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 64c7c5d7f36e03690800000000000000 + internalID: -7624341008777708474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u677E\u9E64\u94A7\u5929\u5C4F" + rect: + serializedVersion: 2 + x: 2176 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 30c0a39e3e84eca90800000000000000 + internalID: -7291810602958582781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u677E\u9F20" + rect: + serializedVersion: 2 + x: 2208 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2dc9051f386422520800000000000000 + internalID: 2675778661114748114 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u677F\u65A7" + rect: + serializedVersion: 2 + x: 2240 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dcbdac208668416c0800000000000000 + internalID: -4173563173384037427 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u677F\u6B63\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2272 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a98a23886d3aec1b0800000000000000 + internalID: -5634385941990561638 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u677F\u6B63\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2304 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0adb69a3c75cd9040800000000000000 + internalID: 4656094727120534944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u677F\u6B63\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2336 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ff0db2a069fbcb60800000000000000 + internalID: 7767576175773028338 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u677F\u6B63\u88C5\u7537\u53D1" + rect: + serializedVersion: 2 + x: 2368 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 93ca15796fee6e9f0800000000000000 + internalID: -439401170753967047 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6781\u4E50\u9E1F" + rect: + serializedVersion: 2 + x: 2400 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02f2578d6a630a0b0800000000000000 + internalID: -5719511436536500448 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6781\u9177\u88C5" + rect: + serializedVersion: 2 + x: 2432 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 549e919c886a0bfd0800000000000000 + internalID: -2328177900930864827 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6781\u9177\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2464 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 559075eeb4cd436b0800000000000000 + internalID: -5317383041338373803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6781\u9177\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2496 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 425f7bba9c3076510800000000000000 + internalID: 1542205562101953828 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6784\u88C5\u7535\u864E" + rect: + serializedVersion: 2 + x: 2528 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5654de494d95c79c0800000000000000 + internalID: -3928166005407398555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6797\u4FCA\u6770\u7684\u4E13\u8F91(2)" + rect: + serializedVersion: 2 + x: 2560 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 47d0ef8f9cfb7e2e0800000000000000 + internalID: -2096496227330945676 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6797\u4FCA\u6770\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2592 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe4cb7269c0066ce0800000000000000 + internalID: -1412440568193366801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6797\u4FCA\u6770\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2624 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b74529d7adc3a530800000000000000 + internalID: 3865159026000349106 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6797\u4FCA\u6770\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2656 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85114180484e8ffa0800000000000000 + internalID: -5766608067125571240 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6797\u4FCA\u6770\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2688 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84d60466ede3e0000800000000000000 + internalID: 4009774593109320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67AA\u624B\u957F\u98CE\u8863\u5973-\u4E0A\u8EAB" + rect: + serializedVersion: 2 + x: 2720 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce59c4b79d67bd470800000000000000 + internalID: 8420454604747871724 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67AA\u624B\u957F\u98CE\u8863\u5973-\u4E0B\u8EAB" + rect: + serializedVersion: 2 + x: 2752 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dcde9ffbb18c27c50800000000000000 + internalID: 6661606820344884685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67AA\u624B\u957F\u98CE\u8863\u5973-\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2784 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f225f578fac93ef60800000000000000 + internalID: 8062460035627700783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67AA\u624B\u957F\u98CE\u8863\u5973-\u978B" + rect: + serializedVersion: 2 + x: 2816 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f34ffa47baaedf60800000000000000 + internalID: 8061068087253746674 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67AB\u6811" + rect: + serializedVersion: 2 + x: 2848 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83401b45ef9abd900800000000000000 + internalID: 710348276048659512 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67AD\u96C4\u4E4B\u51A0" + rect: + serializedVersion: 2 + x: 2880 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6584d5349715f24f0800000000000000 + internalID: -851372223286654890 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67AF\u6728\u6756" + rect: + serializedVersion: 2 + x: 2912 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06304ac44587032a0800000000000000 + internalID: -6759770737224711328 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67AF\u8363\u6756" + rect: + serializedVersion: 2 + x: 2944 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40919ea0420b946f0800000000000000 + internalID: -699834598231041788 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67AF\u840E\u7684\u624B \u526F\u672C" + rect: + serializedVersion: 2 + x: 2976 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad0434bbc8c8e6590800000000000000 + internalID: -7679045778555060006 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67CF\u6811" + rect: + serializedVersion: 2 + x: 3008 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 132bd2100404159b0800000000000000 + internalID: -5093219059937463759 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67D3\u8272\u5242\u793C\u5305" + rect: + serializedVersion: 2 + x: 3040 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 73c3300fdd5a209f0800000000000000 + internalID: -503657835678974921 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67D3\u8272\u7684\u5B9D\u56FE" + rect: + serializedVersion: 2 + x: 3072 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75599578ead60b120800000000000000 + internalID: 2427560795515229527 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67D3\u8840\u7684\u7AF9\u7B1B" + rect: + serializedVersion: 2 + x: 3104 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46dc2ed584afb3920800000000000000 + internalID: 2971243567900708196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67D3\u8840\u7684\u9C7C\u76AE\u53E3\u888B" + rect: + serializedVersion: 2 + x: 3136 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 652d5e580dec2c050800000000000000 + internalID: 5819441063511052886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67DA\u6728\u63CF\u91D1\u5F25\u52D2\u69BB" + rect: + serializedVersion: 2 + x: 3168 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d46ab480e6efae7c0800000000000000 + internalID: -4041137967072565683 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67E0\u6AAC\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 3200 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f3f450b232633a60800000000000000 + internalID: 7652568161678849008 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67E0\u6AAC\u8272\u67D3\u8272\u5361" + rect: + serializedVersion: 2 + x: 3232 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24b01920262f070f0800000000000000 + internalID: -1121129804451476670 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67E5\u7279\u9152\u7EFF" + rect: + serializedVersion: 2 + x: 3264 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f15278e0968f42a00800000000000000 + internalID: 730982169639855391 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67F3\u53F6\u53CC\u5200" + rect: + serializedVersion: 2 + x: 3296 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8593dffe32999720800000000000000 + internalID: 2853472638193603980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u67F3\u6811" + rect: + serializedVersion: 2 + x: 3328 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b31a7c887ca2d380800000000000000 + internalID: -8947899875878890569 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6807\u8BB0\u7684\u5B9D\u56FE" + rect: + serializedVersion: 2 + x: 3360 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52773c3ec3c4de930800000000000000 + internalID: 4174076254045304613 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6811\u679D" + rect: + serializedVersion: 2 + x: 3392 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5def0de62c19359d0800000000000000 + internalID: -2786723480143331627 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6811\u79CD" + rect: + serializedVersion: 2 + x: 3424 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6236968b4984af400800000000000000 + internalID: 358678923915649830 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6811\u82D7" + rect: + serializedVersion: 2 + x: 3456 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ce37b07a26de7e00800000000000000 + internalID: 1044507641364561605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u683C\u5B50\u9A6C\u7532\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3488 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 782aa5508af63e6f0800000000000000 + internalID: -656558353230945657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u683C\u5B50\u9A6C\u7532\u7537\u88C5\u5E3D\u5B50" + rect: + serializedVersion: 2 + x: 3520 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d7256f28f5a1f0f0800000000000000 + internalID: -1084903549853947949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u683C\u5B50\u9A6C\u7532\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3552 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1eddada1c5b25780800000000000000 + internalID: -8695688087051837922 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u683C\u5B50\u9A6C\u7532\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3584 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4911b790496681060800000000000000 + internalID: 6924397213082390932 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6842\u5706" + rect: + serializedVersion: 2 + x: 3616 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2fc3b17b51af327d0800000000000000 + internalID: -2944234760196899598 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6842\u5B50" + rect: + serializedVersion: 2 + x: 3648 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0dd8749d56f561250800000000000000 + internalID: 5915020051639406032 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6842\u679D" + rect: + serializedVersion: 2 + x: 3680 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6417a83c55e34e1a0800000000000000 + internalID: -6781226600839351994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6842\u82B1\u9152" + rect: + serializedVersion: 2 + x: 3712 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cb7ada3c90521f270800000000000000 + internalID: 8282441913578923964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6842\u82B1\u9152\u7CDF" + rect: + serializedVersion: 2 + x: 3744 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c38e5b81c544f1f0800000000000000 + internalID: -1012107318682287162 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u5FC3" + rect: + serializedVersion: 2 + x: 3776 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b8997a9221068d90800000000000000 + internalID: -7095982914743461707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u6728\u5251" + rect: + serializedVersion: 2 + x: 3808 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3c07d57392916300800000000000000 + internalID: 243637016889592890 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u6728\u5C0F\u6BB5" + rect: + serializedVersion: 2 + x: 3840 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dcbf95a857aaf6660800000000000000 + internalID: 7381305736092580813 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u6728\u624B\u638C\u6A21\u677F" + rect: + serializedVersion: 2 + x: 3872 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de491ba075a157560800000000000000 + internalID: 7310778531249755373 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u6728\u6756\u67C4" + rect: + serializedVersion: 2 + x: 3904 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48d7c4b315dc24dd0800000000000000 + internalID: -2503212694093660796 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u6728\u6B27\u5F0F\u77EE\u67DC" + rect: + serializedVersion: 2 + x: 3936 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24ce25cd61e598a10800000000000000 + internalID: 1912162969074199618 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u6728\u8282\u6263" + rect: + serializedVersion: 2 + x: 3968 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c699c301869c5c60800000000000000 + internalID: 7808281334812088008 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u6811" + rect: + serializedVersion: 2 + x: 4000 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0afd425014596010800000000000000 + internalID: 1182568806238517770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u7B261" + rect: + serializedVersion: 2 + x: 4032 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79f55a333ba619630800000000000000 + internalID: 3932041267569319831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u7B262" + rect: + serializedVersion: 2 + x: 4064 + y: 2944 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68a2b6e69449f05b0800000000000000 + internalID: -5399934385087894906 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u7B263" + rect: + serializedVersion: 2 + x: 0 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b231fb105adeda580800000000000000 + internalID: -8814127602739506389 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u7B264" + rect: + serializedVersion: 2 + x: 32 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e9848836224759930800000000000000 + internalID: 4149350322739366046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u7EA2\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 64 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ca1512d0416bd410800000000000000 + internalID: 1502901831688592073 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u82B1\u76AE\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 96 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 134ba6da977add730800000000000000 + internalID: 4025557782981424177 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u82B1\u76AE\u5973\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 128 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56730568b39f79c30800000000000000 + internalID: 4366232397810775909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u82B1\u76AE\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 160 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d91cd4ad85cb8f9e0800000000000000 + internalID: -1587311778842426979 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6843\u82B1\u88C5\u5973\u53D1" + rect: + serializedVersion: 2 + x: 192 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9bfe9fac9b8cf740800000000000000 + internalID: 5187174375901559708 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6854\u5B50\u5587\u53ED" + rect: + serializedVersion: 2 + x: 224 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d38eace0eaa0f5500800000000000000 + internalID: 387039835665918013 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6854\u69D4\u9F99\u9AA8\u6C34\u8F66" + rect: + serializedVersion: 2 + x: 256 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f750e3fea4c4c9400800000000000000 + internalID: 332224357243684223 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6866\u6811" + rect: + serializedVersion: 2 + x: 288 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 64dd8c8b5c6137b90800000000000000 + internalID: -7245422337044456122 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6881\u795D\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 320 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d29f3715d50c0fc0800000000000000 + internalID: -3527437995361725740 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6885\u7EB9\u96D5\u82B1\u67DC" + rect: + serializedVersion: 2 + x: 352 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b302b2bfbf35bdbb0800000000000000 + internalID: -4910238627001589701 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6885\u82B1\u9E7F" + rect: + serializedVersion: 2 + x: 384 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8faf557493b5fce20800000000000000 + internalID: 3373014947491871480 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u5E7B\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 416 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a40cc00c4d3bdc1c0800000000000000 + internalID: -4481728327827275702 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u5E7B\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 448 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6889d3f159056ab20800000000000000 + internalID: 3145289991169349766 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u5E7B\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 480 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a63eb2240482fa70800000000000000 + internalID: 8859288570288813730 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u5E7B\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 512 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a381bfbb854d7ff50800000000000000 + internalID: 6915229230426691642 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u5E7B\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 544 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de344d7741d162790800000000000000 + internalID: -7555319351120477203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u5E7B\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 576 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f387a28916b24800800000000000000 + internalID: 595238321448780793 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u5E7B\u4EAE\u7247\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 608 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3cd6fed6b2260860800000000000000 + internalID: 7495716798624881727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u5E7B\u4EAE\u7247\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 640 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4185501a069e95d10800000000000000 + internalID: 2114978101254772756 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u5E7B\u4EAE\u7247\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 672 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2aef1374637f8b360800000000000000 + internalID: 7185765017964379810 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u5E7B\u4EAE\u7247\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 704 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 472aff59ea2b58810800000000000000 + internalID: 1767014891723399796 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u5E7B\u5C11\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 736 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e24a9d0b5452d860800000000000000 + internalID: 7553192275100713696 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u5E7B\u5C11\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 768 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84f6284c6359357a0800000000000000 + internalID: -6389599383850946744 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u5E7B\u5C11\u5973\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 800 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aafb24a8d7b089c70800000000000000 + internalID: 8977938490981531562 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u5E7B\u5C11\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 832 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c9c6aa4cef7c5860800000000000000 + internalID: 7520026130643339714 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A6\u9B47\u98DE\u5251" + rect: + serializedVersion: 2 + x: 864 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0f89911c0a7a33a0800000000000000 + internalID: -6684896504624607473 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A7\u6850" + rect: + serializedVersion: 2 + x: 896 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3fe65c7666e0cfaf0800000000000000 + internalID: -361398037106037005 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A8\u6728\u4E24\u4EEA\u67B6\u5B50\u5E8A" + rect: + serializedVersion: 2 + x: 928 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63bc367fd0f3012f0800000000000000 + internalID: -1004233387685983434 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68A8\u6811" + rect: + serializedVersion: 2 + x: 960 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d363443e0636b9e0800000000000000 + internalID: -1606036782476729391 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68B3\u5B50\u9570\u5200" + rect: + serializedVersion: 2 + x: 992 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 591a44ade528567a0800000000000000 + internalID: -6384553552827342443 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68C9\u5E03" + rect: + serializedVersion: 2 + x: 1024 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8d5c53f88dc22930800000000000000 + internalID: 4117078997452217740 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68C9\u5E03\u978B\u5E95" + rect: + serializedVersion: 2 + x: 1056 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc1d400cd176c44f0800000000000000 + internalID: -843185652751871541 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68C9\u7EBF" + rect: + serializedVersion: 2 + x: 1088 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e3624c591401b7e0800000000000000 + internalID: -1751614273101863967 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68C9\u82B1" + rect: + serializedVersion: 2 + x: 1120 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9ff2d6a13aef4d40800000000000000 + internalID: 5570928763053735839 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68D2\u7403\u68CD" + rect: + serializedVersion: 2 + x: 1152 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6df26da8ecdfc2560800000000000000 + internalID: 7290480960340373462 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68D5\u6988\u6811" + rect: + serializedVersion: 2 + x: 1184 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6a74dfbfe4caab40800000000000000 + internalID: 5452386832880007786 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68D8\u523A\u97AD" + rect: + serializedVersion: 2 + x: 1216 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f8d61d8270234b40800000000000000 + internalID: 5423214052649654515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u68D8\u6728\u68D2" + rect: + serializedVersion: 2 + x: 1248 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2afd5e9527cb82c00800000000000000 + internalID: 876157326844092322 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6930\u58F3\u7EFF\u67D3\u6599" + rect: + serializedVersion: 2 + x: 1280 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d20922e095c8bcb50800000000000000 + internalID: 6614534791840829485 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6960\u6728\u6D77\u68E0\u7EB9\u5706\u51F3" + rect: + serializedVersion: 2 + x: 1312 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a264f070c1b66db50800000000000000 + internalID: 6617594470589220394 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6978\u6728\u9576\u7FE0\u591A\u5B9D\u683C" + rect: + serializedVersion: 2 + x: 1344 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0bfb9c593f620900800000000000000 + internalID: 649203588452317963 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6984\u77F3" + rect: + serializedVersion: 2 + x: 1376 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94926da58f10478c0800000000000000 + internalID: -4002572002638026423 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6986\u6728\u96D5\u82B1\u6848" + rect: + serializedVersion: 2 + x: 1408 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da734f5c1cfba95f0800000000000000 + internalID: -749075549033056339 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6989\u6728\u53E4\u5178\u6B27\u5F0F\u5E8A" + rect: + serializedVersion: 2 + x: 1440 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9ccb8c200eb0ab60800000000000000 + internalID: 7755407466288630941 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6989\u6728\u7985\u5FC3\u62D4\u6B65\u5E8A" + rect: + serializedVersion: 2 + x: 1472 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c7644bafb18864e0800000000000000 + internalID: -1988196575271950398 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6995\u6811" + rect: + serializedVersion: 2 + x: 1504 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f24fd07392ddb940800000000000000 + internalID: 5313634666062758641 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6995\u6811\u987B" + rect: + serializedVersion: 2 + x: 1536 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f8d7c3e89a31b330800000000000000 + internalID: 3724822795143076089 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u69B4\u77F3" + rect: + serializedVersion: 2 + x: 1568 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c94c02bb314816960800000000000000 + internalID: 7593495667002098844 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6A31\u6728\u6728\u7897" + rect: + serializedVersion: 2 + x: 1600 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 802a9315db7a03960800000000000000 + internalID: 7579742604417933832 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6A31\u82B1\u5973\u88D9\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1632 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1afdafd465fccec20800000000000000 + internalID: 3237190201754967969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6A31\u82B1\u5973\u88D9\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 1664 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0c0c71b0afeeffe0800000000000000 + internalID: -1153220981108765685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6A31\u82B1\u5973\u88D9\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1696 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77d78a5be139ab330800000000000000 + internalID: 3727453401708526967 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6A31\u82B1\u5973\u88D9\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1728 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e25d5e9caabb20a0800000000000000 + internalID: -6905220353088466205 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6A31\u82B1\u5973\u88D9\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1760 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f6bbe6c2f3af78ae0800000000000000 + internalID: -1546992797743137937 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6A31\u82B1\u6811" + rect: + serializedVersion: 2 + x: 1792 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4445eb52da2847900800000000000000 + internalID: 681313123813971012 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6A59\u5473\u82AC\u8FBE" + rect: + serializedVersion: 2 + x: 1824 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4f1bfbac7933ecf0800000000000000 + internalID: -224272348814303412 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6A59\u5FC3\u51E4\u68A8" + rect: + serializedVersion: 2 + x: 1856 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a954819d7eb2134c0800000000000000 + internalID: -4309615093637167718 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6A59\u7389" + rect: + serializedVersion: 2 + x: 1888 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6cb16be959646900800000000000000 + internalID: 676781678934473838 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6A59\u8272\u67D3\u8272\u5242" + rect: + serializedVersion: 2 + x: 1920 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14cd1de899dd48f00800000000000000 + internalID: 1118262259090578497 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6A59\u8272\u68C9\u7EBF" + rect: + serializedVersion: 2 + x: 1952 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f466ece57028be8b0800000000000000 + internalID: -5121857183036840369 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6A61\u6728\u96D5\u82B1\u56DB\u67F1\u5E8A" + rect: + serializedVersion: 2 + x: 1984 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fafdfd04d81229d50800000000000000 + internalID: 6742488482689572783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6A61\u6811" + rect: + serializedVersion: 2 + x: 2016 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 664d79ab81432c3e0800000000000000 + internalID: -2035006800803670938 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B22\u4E50\u6DD8\u6DD8\u5305" + rect: + serializedVersion: 2 + x: 2048 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0be03c6d3dba48bf0800000000000000 + internalID: -322944346934276432 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B23\u6B23\u5411\u8363" + rect: + serializedVersion: 2 + x: 2080 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aaee9d61fb9635350800000000000000 + internalID: 6004258997658054314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u5F0F\u523A\u7EE3\u68B3\u5986\u51F3" + rect: + serializedVersion: 2 + x: 2112 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a17577a8e14dc20a0800000000000000 + internalID: -6904910901028628710 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u5F0F\u53E4\u5178\u5E03\u827A\u6C99\u53D1" + rect: + serializedVersion: 2 + x: 2144 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c10073043715a9b20800000000000000 + internalID: 3141913245484777500 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u5F0F\u5929\u9E45\u7ED2\u9760\u80CC\u6905" + rect: + serializedVersion: 2 + x: 2176 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1af4bab02c4a70730800000000000000 + internalID: 3965319150249398177 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u5F0F\u5EFA\u7B51" + rect: + serializedVersion: 2 + x: 2208 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a3f767c01d93de20800000000000000 + internalID: 3374213241221149601 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u5F0F\u82B1\u575B1" + rect: + serializedVersion: 2 + x: 2240 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a4164e8ecd5dd930800000000000000 + internalID: 4169591971746550947 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u5F0F\u82B1\u575B2" + rect: + serializedVersion: 2 + x: 2272 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f9d615877dd3cb40800000000000000 + internalID: 5459450678706887153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u5F0F\u82B1\u575B3" + rect: + serializedVersion: 2 + x: 2304 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46befc793c8fe5ba0800000000000000 + internalID: -6098163326463775900 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u5F0F\u9662\u843D" + rect: + serializedVersion: 2 + x: 2336 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07e5d30c4ae478580800000000000000 + internalID: -8824998475302347152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u5F0F\u96D5\u82B1\u68B3\u5986\u51F3" + rect: + serializedVersion: 2 + x: 2368 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 016bda4f45b1d1920800000000000000 + internalID: 2962554181575882256 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u7F8E\u4F01\u9E45\u7279\u5DE5\u961F" + rect: + serializedVersion: 2 + x: 2400 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0424b584451903650800000000000000 + internalID: 6210623677321134656 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u7F8E\u6597\u725B\u72AC" + rect: + serializedVersion: 2 + x: 2432 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d032698414cae0eb0800000000000000 + internalID: -4751671160438643955 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u7F8E\u6CF0\u8FEA\u718A" + rect: + serializedVersion: 2 + x: 2464 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c02a5abad5fefe00800000000000000 + internalID: 1080571280393642180 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u7F8E\u7280\u725B" + rect: + serializedVersion: 2 + x: 2496 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 437bbe760a9a5f520800000000000000 + internalID: 2735278855100806964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u7F8E\u9752\u86D9\u9A91\u5BA0" + rect: + serializedVersion: 2 + x: 2528 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a84c03a690ea9830800000000000000 + internalID: 4078819350122612897 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B27\u7F8E\u9E2D\u5634\u517D" + rect: + serializedVersion: 2 + x: 2560 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e698e4135b3d6450800000000000000 + internalID: 6083583899666519781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B64\u5730\u65E0\u94F6" + rect: + serializedVersion: 2 + x: 2592 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 72588b3a495e56210800000000000000 + internalID: 1325718091895178535 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B66\u4FA0\u5927\u5E08" + rect: + serializedVersion: 2 + x: 2624 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee4fbdf0783ecb770800000000000000 + internalID: 8628021155361191150 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B66\u4FA0\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 2656 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85b78eb8fcbfaca90800000000000000 + internalID: -7292739777749025960 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B66\u4FA0\u661F\u76D8" + rect: + serializedVersion: 2 + x: 2688 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0fa00e391ded657e0800000000000000 + internalID: -1776988011240617232 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B66\u5668\u5E93" + rect: + serializedVersion: 2 + x: 2720 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a92461bbb3dc98b0800000000000000 + internalID: -5144003871275472472 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B66\u5A01\u4EE4" + rect: + serializedVersion: 2 + x: 2752 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c356012cbbb520880800000000000000 + internalID: -8646247472625064644 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B66\u72B6\u5143\u8170\u4F69" + rect: + serializedVersion: 2 + x: 2784 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d094dd88e0ed0c3a0800000000000000 + internalID: -6647068895991740147 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B66\u8005\u7684\u798F\u97F3" + rect: + serializedVersion: 2 + x: 2816 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 38a1d01643285b1a0800000000000000 + internalID: -6794381301340366205 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B66\u8005\u7684\u798F\u97F31" + rect: + serializedVersion: 2 + x: 2848 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f006cb3e6305755a0800000000000000 + internalID: -6532664537798385649 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B66\u8005\u7684\u798F\u97F32" + rect: + serializedVersion: 2 + x: 2880 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4376ae697dfa45bc0800000000000000 + internalID: -3795215245481711820 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B7B\u4EA1\u4E4B\u6212" + rect: + serializedVersion: 2 + x: 2912 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 674f0cc0a9628bcc0800000000000000 + internalID: -3695161051176700810 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B7B\u6CBC\u6212" + rect: + serializedVersion: 2 + x: 2944 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f87f66e6f4016d10800000000000000 + internalID: 2116978758315374833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B7B\u6CBC\u79D8\u6CD5\u88E4" + rect: + serializedVersion: 2 + x: 2976 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f902bbdc5ed9b3150800000000000000 + internalID: 5853445751022755999 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B7B\u6CBC\u8170\u4F69" + rect: + serializedVersion: 2 + x: 3008 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1be1b4ca8c6041350800000000000000 + internalID: 5986417263636061873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B7B\u6CBC\u8F7B\u94E0" + rect: + serializedVersion: 2 + x: 3040 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2785c0b087e5f4bc0800000000000000 + internalID: -3796712091175593870 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B7B\u6CBC\u91CD\u76D4" + rect: + serializedVersion: 2 + x: 3072 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 093e13ea9c4ac46b0800000000000000 + internalID: -5310688674458770544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B7B\u6CBC\u91CD\u9774" + rect: + serializedVersion: 2 + x: 3104 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5916289cb820cb720800000000000000 + internalID: 2863166262505267605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B7B\u6CBC\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3136 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b50fe83015f587c0800000000000000 + internalID: -4069577238235904587 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B7B\u7075\u6756" + rect: + serializedVersion: 2 + x: 3168 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9274d5f3ce917310800000000000000 + internalID: 1401075523569087135 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B7B\u795E\u9570\u5200" + rect: + serializedVersion: 2 + x: 3200 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df62b623a9d1f1800800000000000000 + internalID: 585219024689506045 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B8B\u6728" + rect: + serializedVersion: 2 + x: 3232 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be037085efaafb3a0800000000000000 + internalID: -6647406515600281365 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B8B\u7834\u7684\u65E5\u8BB0" + rect: + serializedVersion: 2 + x: 3264 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7a4e9f34329b1fe0800000000000000 + internalID: -1217218521170294145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B8B\u7834\u7684\u6728\u7BB1" + rect: + serializedVersion: 2 + x: 3296 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5857e25b47be1d60800000000000000 + internalID: 7862923533576788058 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B8B\u7834\u7684\u85CF\u5B9D\u56FE" + rect: + serializedVersion: 2 + x: 3328 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae3dd68ac31b9f6d0800000000000000 + internalID: -2956136806310095894 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B8B\u7834\u7684\u8863\u7532" + rect: + serializedVersion: 2 + x: 3360 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3bed4b7b6488d7ce0800000000000000 + internalID: -1405817671358554445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6B8B\u7F3A\u7684\u7EB8\u6761" + rect: + serializedVersion: 2 + x: 3392 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d49ec733b4bca510800000000000000 + internalID: 1561821852619150553 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BC1\u706D\u4E4B\u6838" + rect: + serializedVersion: 2 + x: 3424 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 961e86d278074b2e0800000000000000 + internalID: -2110938599445175959 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD2\u56CA" + rect: + serializedVersion: 2 + x: 3456 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0defcbffa86c7fc10800000000000000 + internalID: 2087355252607876816 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD2\u6DB2" + rect: + serializedVersion: 2 + x: 3488 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 320cb7fcd93d7cb50800000000000000 + internalID: 6613487252561182755 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD2\u82B1\u7684\u79CD\u5B50" + rect: + serializedVersion: 2 + x: 3520 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4aae2ec9a9e3d84f0800000000000000 + internalID: -824934322960930140 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD2\u87FE" + rect: + serializedVersion: 2 + x: 3552 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da41bcb11c00a3890800000000000000 + internalID: -7477663401900305235 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD2\u87FE\u4E4B\u6CEA" + rect: + serializedVersion: 2 + x: 3584 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4b87e20043727120800000000000000 + internalID: 2410115469360466765 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD2\u9CDE\u86C7\u76AE" + rect: + serializedVersion: 2 + x: 3616 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c117f457958d5ccc0800000000000000 + internalID: -3691306440828423908 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD4\u6B66\u6218\u573A\u672C\u670D\u51ED\u8BC1" + rect: + serializedVersion: 2 + x: 3648 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d32d10150c728a40800000000000000 + internalID: 5368990066966078424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD4\u6B66\u6218\u573A\u8DE8\u670D\u51ED\u8BC1" + rect: + serializedVersion: 2 + x: 3680 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e3574ffc5d1d7850800000000000000 + internalID: 6376284932683551721 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD4\u6B66\u6218\u573A\u95E8\u7968" + rect: + serializedVersion: 2 + x: 3712 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee2882999b1675940800000000000000 + internalID: 5284800137508979438 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD4\u7FFC\u53CC\u98DE" + rect: + serializedVersion: 2 + x: 3744 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b0ea6f6088d8e350800000000000000 + internalID: 6046320545881579701 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD4\u7FFC\u53CC\u98DE\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3776 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb9330bcee243eba0800000000000000 + internalID: -6060927080134919745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD4\u7FFC\u53CC\u98DE\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3808 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40ffd480b16c84000800000000000000 + internalID: 20484017728913156 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD4\u7FFC\u53CC\u98DE\u5973\u88C5\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 3840 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b8a6840cc72c5670800000000000000 + internalID: 8528735551535622328 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD4\u7FFC\u53CC\u98DE\u5973\u88C5\u978B" + rect: + serializedVersion: 2 + x: 3872 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8fb0d4af745f2d00800000000000000 + internalID: 950070953601187723 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD4\u7FFC\u53CC\u98DE\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3904 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e661c4e01677acbf0800000000000000 + internalID: -303298766158686610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD4\u7FFC\u53CC\u98DE\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3936 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 457d1c2019758d220800000000000000 + internalID: 2510853072587183956 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD4\u7FFC\u53CC\u98DE\u7537\u88C5\u978B" + rect: + serializedVersion: 2 + x: 3968 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b16398e90e94d8f0800000000000000 + internalID: -516614291846897228 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD5\u87AD\u517D\u5361\u72471" + rect: + serializedVersion: 2 + x: 4000 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c9be5d7ef8bb25c0800000000000000 + internalID: -4239091221074626103 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD5\u87AD\u517D\u5361\u72472" + rect: + serializedVersion: 2 + x: 4032 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9076984e7bbebd60800000000000000 + internalID: 7907964146767261852 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD5\u87AD\u517D\u5361\u72473" + rect: + serializedVersion: 2 + x: 4064 + y: 2912 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edf08fda26446e140800000000000000 + internalID: 4748558047724965854 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD5\u87AD\u517D\u5361\u72474" + rect: + serializedVersion: 2 + x: 0 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 940431f14f024f190800000000000000 + internalID: -7929676811027136439 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD5\u87AD\u517D\u5361\u72475" + rect: + serializedVersion: 2 + x: 32 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1b4507dc020453d0800000000000000 + internalID: -3218945579492750565 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD5\u87AD\u517D\u5361\u72476" + rect: + serializedVersion: 2 + x: 64 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b56f89e14d880790800000000000000 + internalID: -7563640259937868365 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD5\u87AD\u517D\u5361\u72477" + rect: + serializedVersion: 2 + x: 96 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c45c88b9bc46b54f0800000000000000 + internalID: -838966079923894964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BD5\u87AD\u517D\u5361\u72478" + rect: + serializedVersion: 2 + x: 128 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d3adb87a79c77dc10800000000000000 + internalID: 2078266743847639613 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BDB\u5C3E\u5DF4\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 160 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 219292b7c8d2dfa30800000000000000 + internalID: 4250603704692582674 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BDB\u5C3E\u5DF4\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 192 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6c699c826ec3b5a0800000000000000 + internalID: -6506630113959252884 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BDB\u5C3E\u5DF4\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 224 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c393625e84e93c50800000000000000 + internalID: 6645594025080624072 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BDB\u5C3E\u5DF4\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 256 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f98f419255dd0de70800000000000000 + internalID: 9138047001765935263 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BDB\u8338\u8338\u7684\u5C3E\u5DF4" + rect: + serializedVersion: 2 + x: 288 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d1b486f020fa0120800000000000000 + internalID: 2380979377384239573 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6BDB\u866B\u98DE\u884C\u5668" + rect: + serializedVersion: 2 + x: 320 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ff22910ce2c431c0800000000000000 + internalID: -4524777406706077706 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u4E0B\u4E09\u7532\u866B" + rect: + serializedVersion: 2 + x: 352 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7fded5680dc038fc0800000000000000 + internalID: -3493934796162339337 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u4E4B\u7ED3\u6676" + rect: + serializedVersion: 2 + x: 384 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a9c78c66c119a0d0800000000000000 + internalID: -3411175698834404959 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u4E4B\u80C6" + rect: + serializedVersion: 2 + x: 416 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04789248aa70f6660800000000000000 + internalID: 7381126743226681152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u4E91\u73E0" + rect: + serializedVersion: 2 + x: 448 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 05c43e722ed810de0800000000000000 + internalID: -1368656809272587184 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u5143\u7D20\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 480 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf5bc57408bd47960800000000000000 + internalID: 7598939815280424443 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u539F\u77F3" + rect: + serializedVersion: 2 + x: 512 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e560769681ab3d2c0800000000000000 + internalID: -4407974996255242658 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u5BD2\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 544 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d617c3e6bac87e70800000000000000 + internalID: 9113256732838532817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u6676" + rect: + serializedVersion: 2 + x: 576 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cdc5d284a206dc200800000000000000 + internalID: 201923293017365724 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u6676\u5B9D\u76D2" + rect: + serializedVersion: 2 + x: 608 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d46e151a9d5472ba0800000000000000 + internalID: -6113841168115440051 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u6676\u5FC3\u5F62\u5B9D\u76D2" + rect: + serializedVersion: 2 + x: 640 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6cfcb02cb22a78ee0800000000000000 + internalID: -1258859262003916858 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u6676\u68FA\u6750" + rect: + serializedVersion: 2 + x: 672 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4974f48911c12c8d0800000000000000 + internalID: -2827666754139895916 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u6676\u6CD5\u5E3D" + rect: + serializedVersion: 2 + x: 704 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edcd7c8617b2761d0800000000000000 + internalID: -3357667231092187938 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u6676\u7403" + rect: + serializedVersion: 2 + x: 736 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3fb1d870cd2c20600800000000000000 + internalID: 433122764456270835 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u6676\u8282\u6756" + rect: + serializedVersion: 2 + x: 768 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4850e1097fab0630800000000000000 + internalID: 3894399237049309261 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u68371" + rect: + serializedVersion: 2 + x: 800 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3bb9541312053ca60800000000000000 + internalID: 7693080691969727411 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u68372" + rect: + serializedVersion: 2 + x: 832 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 082ae222aa4a70240800000000000000 + internalID: 4757952581965095552 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u68373" + rect: + serializedVersion: 2 + x: 864 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8459f947882c2d380800000000000000 + internalID: -8947875618303797944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u6BCD" + rect: + serializedVersion: 2 + x: 896 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e17beb47914b04750800000000000000 + internalID: 6287223101235050270 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u7075\u77F3" + rect: + serializedVersion: 2 + x: 928 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 811b82922c58e1d60800000000000000 + internalID: 7862869068396146968 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u795E\u5361" + rect: + serializedVersion: 2 + x: 960 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 376cbb8a3d2dc0d40800000000000000 + internalID: 5552044247151789683 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u7CBE" + rect: + serializedVersion: 2 + x: 992 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ffe5eb598d1a02890800000000000000 + internalID: -7484804629092475137 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u7F50" + rect: + serializedVersion: 2 + x: 1024 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad0795ecdb680e5b0800000000000000 + internalID: -5341121008292499238 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u8349" + rect: + serializedVersion: 2 + x: 1056 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8634b029bb1d4ac50800000000000000 + internalID: 6675691151209218920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u871C\u6843\u82AC\u8FBE" + rect: + serializedVersion: 2 + x: 1088 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 05bfd19ccaf14f3f0800000000000000 + internalID: -868034001206641840 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u997A1" + rect: + serializedVersion: 2 + x: 1120 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6234f06756790ee0800000000000000 + internalID: -1294373300231458194 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u997A2" + rect: + serializedVersion: 2 + x: 1152 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0bc6ebedfd9f1b530800000000000000 + internalID: 3869148294798011568 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u997A3" + rect: + serializedVersion: 2 + x: 1184 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ccc4f6ba753826310800000000000000 + internalID: 1396823246999866572 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u997A4" + rect: + serializedVersion: 2 + x: 1216 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f924f362a3bbae840800000000000000 + internalID: 5254217773705282207 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C34\u9F99\u541F" + rect: + serializedVersion: 2 + x: 1248 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 377e8843d8644c540800000000000000 + internalID: 5027220656338036595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C38\u6052\u70C8\u7130" + rect: + serializedVersion: 2 + x: 1280 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5c6bdb1c8da69480800000000000000 + internalID: -8892729596922074019 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C38\u7ED3\u540C\u5FC3" + rect: + serializedVersion: 2 + x: 1312 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d33bf7883de5f4910800000000000000 + internalID: 1823780636729520957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C42\u6551" + rect: + serializedVersion: 2 + x: 1344 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 579ad590c3285c620800000000000000 + internalID: 2793782338220042613 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13a\u523A\u5BA2\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1376 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 757035723f3f31b20800000000000000 + internalID: 3104092793850758999 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13a\u523A\u5BA2\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1408 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 119547082964ac8e0800000000000000 + internalID: -1672446716580439791 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13a\u523A\u5BA2\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1440 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2fd9c5c637a0a2050800000000000000 + internalID: 5776440962911608306 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13a\u523A\u5BA2\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1472 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d80753f3b7493120800000000000000 + internalID: 2394023515131414745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13a\u5DEB\u5E08\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1504 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f787b7ad58bb93010800000000000000 + internalID: 1169171761849923711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13a\u5DEB\u5E08\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1536 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec1ac357760331980800000000000000 + internalID: -8569452445049249330 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13a\u5DEB\u5E08\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1568 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88430076a6e834750800000000000000 + internalID: 6288026092385088648 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13a\u5DEB\u5E08\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1600 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8e89500d5f136f3f0800000000000000 + internalID: -867450946395465496 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13b\u523A\u5BA2\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1632 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a5a7e0b8ba2126f0800000000000000 + internalID: -711240293417507424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13b\u523A\u5BA2\u804C\u4E1A\u88C5\u62A4\u624B" + rect: + serializedVersion: 2 + x: 1664 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 496df005f74ba5450800000000000000 + internalID: 6078369105986967188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13b\u523A\u5BA2\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1696 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bec0dfc771e2eb210800000000000000 + internalID: 1350567616673811691 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13b\u523A\u5BA2\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1728 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 426605794ab7b4a70800000000000000 + internalID: 8812273042723989028 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13b\u5DEB\u5E08\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1760 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 66afb32100d99c620800000000000000 + internalID: 2794937667391584870 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13b\u5DEB\u5E08\u804C\u4E1A\u88C5\u62A4\u624B" + rect: + serializedVersion: 2 + x: 1792 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d989d5d8315252930800000000000000 + internalID: 4117738200206514333 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13b\u5DEB\u5E08\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1824 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 935ce0b796cd020f0800000000000000 + internalID: -1143671959757863623 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF13b\u5DEB\u5E08\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1856 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8bb5f02fc4ebbdbf0800000000000000 + internalID: -298435712602121288 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5149\u7FFC1\u5C0F" + rect: + serializedVersion: 2 + x: 1888 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a25371a31a2cdf840800000000000000 + internalID: 5259573937558730026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5149\u7FFC2\u5C0F" + rect: + serializedVersion: 2 + x: 1920 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7bbdddd2be39bdb0800000000000000 + internalID: -4775716991902303362 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5149\u7FFC3\u5C0F" + rect: + serializedVersion: 2 + x: 1952 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1086281ab59891030800000000000000 + internalID: 3465952414883014657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5149\u7FFC4\u5C0F" + rect: + serializedVersion: 2 + x: 1984 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5bdec8028dd00750800000000000000 + internalID: 6269254231862991707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5149\u7FFC5\u5C0F" + rect: + serializedVersion: 2 + x: 2016 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc97248dbeb51f4a0800000000000000 + internalID: -6561362113598424625 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5149\u7FFC6\u5C0F" + rect: + serializedVersion: 2 + x: 2048 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85794c60905b32080800000000000000 + internalID: -9213321362297022632 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5149\u7FFC7" + rect: + serializedVersion: 2 + x: 2080 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0209c8c79e3880b00800000000000000 + internalID: 795030373071097888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5149\u7FFC8" + rect: + serializedVersion: 2 + x: 2112 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7de6a36a9f83c0b40800000000000000 + internalID: 5407759897451982551 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u51B0\u51CC\u7FC5" + rect: + serializedVersion: 2 + x: 2144 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2026e12fa3d1ff460800000000000000 + internalID: 7277567661861396994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u523A\u5BA2\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2176 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b936494b03bd40a10800000000000000 + internalID: 1874864347127505819 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u523A\u5BA2\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2208 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3407b329cea84570800000000000000 + internalID: 8451196879671591999 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u523A\u5BA2\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2240 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10b29e58ba68d5000800000000000000 + internalID: 26325244078271233 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u523A\u5BA2\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2272 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 183eb25ad14cca2f0800000000000000 + internalID: -960176988932545663 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u52CB\u7AE0" + rect: + serializedVersion: 2 + x: 2304 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a082acb7ee4386b50800000000000000 + internalID: 6586572653913057290 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u53CC\u9E1F\u5149\u7FFC" + rect: + serializedVersion: 2 + x: 2336 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f34d22735c185630800000000000000 + internalID: 3915911020722078708 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5409\u5149" + rect: + serializedVersion: 2 + x: 2368 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df7228d2c4abba3f0800000000000000 + internalID: -888411665131755523 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5723\u679D\u7FC5\u8180" + rect: + serializedVersion: 2 + x: 2400 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d7dec1b4ca6b76d0800000000000000 + internalID: -2991680134428305451 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5723\u8BDE\u7FC5\u8180\u5C0F" + rect: + serializedVersion: 2 + x: 2432 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49f4ad427c392b090800000000000000 + internalID: -8020185502867370092 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u57FA\u7840\u7FC5\u81801" + rect: + serializedVersion: 2 + x: 2464 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8abad2c762f6a6ec0800000000000000 + internalID: -3572921143282259032 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u57FA\u7840\u7FC5\u81802" + rect: + serializedVersion: 2 + x: 2496 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b673a9ed1d2c4b620800000000000000 + internalID: 2789068275887781739 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5DEB\u5E08\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2528 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 957277a5730f80b80800000000000000 + internalID: -8428222582092257447 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5DEB\u5E08\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2560 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf1c12f606acc1880800000000000000 + internalID: -8638807469673299461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5DEB\u5E08\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2592 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1c50c7d593f47940800000000000000 + internalID: 5293123286962560027 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5DEB\u5E08\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2624 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9502959eb0796720800000000000000 + internalID: 2839925003889280410 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u5E7B\u8776\u5149\u7FFC" + rect: + serializedVersion: 2 + x: 2656 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 35ea186f81d966c90800000000000000 + internalID: -7176876225627836845 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u65F6\u95F4\u4E4B\u8F6E" + rect: + serializedVersion: 2 + x: 2688 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 72a3c39ab74c69800800000000000000 + internalID: 618898034209339943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u70B9\u7FE0" + rect: + serializedVersion: 2 + x: 2720 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50f55ddcd5174bb10800000000000000 + internalID: 1996345182531182341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u767D\u70BD\u7FC5" + rect: + serializedVersion: 2 + x: 2752 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d93bc12e45f937320800000000000000 + internalID: 2554560600568804253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u805A\u82B1" + rect: + serializedVersion: 2 + x: 2784 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae06a364ecb535160800000000000000 + internalID: 7013049986245615850 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u91D1\u9C7C" + rect: + serializedVersion: 2 + x: 2816 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48fdf4237074afc80800000000000000 + internalID: -8288234067987538044 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u9633\u5149\u8F89\u7FFC" + rect: + serializedVersion: 2 + x: 2848 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f71508fcc487382d0800000000000000 + internalID: -3277643832501448321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u9713\u8679\u5149\u7FFC" + rect: + serializedVersion: 2 + x: 2880 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bbb4feed41ed13330800000000000000 + internalID: 3688973751014083515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C50\u65CF\u9B54\u7075\u7FC5\u8180" + rect: + serializedVersion: 2 + x: 2912 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c15160b9bfc847c0800000000000000 + internalID: -4086788265403657786 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C5F\u5C71\u96EA" + rect: + serializedVersion: 2 + x: 2944 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: decbba39d6bc1a450800000000000000 + internalID: 6098379041925741805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C64\u57061" + rect: + serializedVersion: 2 + x: 2976 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 889529e459d809da0800000000000000 + internalID: -5940092236093826680 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C64\u57062" + rect: + serializedVersion: 2 + x: 3008 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1fa276c48f9983430800000000000000 + internalID: 3762926780380818161 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C64\u57063" + rect: + serializedVersion: 2 + x: 3040 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf0e12fd545d330b0800000000000000 + internalID: -5750017803148992260 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C64\u57064" + rect: + serializedVersion: 2 + x: 3072 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 568e90bff1f297850800000000000000 + internalID: 6375178561921869925 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C89\u661F\u6212" + rect: + serializedVersion: 2 + x: 3104 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89e3597ba4cd75470800000000000000 + internalID: 8383411444839169688 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C89\u6C34\u9F99\u96C0" + rect: + serializedVersion: 2 + x: 3136 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c580752de45955f10800000000000000 + internalID: 2257874953965078620 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C89\u9999" + rect: + serializedVersion: 2 + x: 3168 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bc8a587286f4c720800000000000000 + internalID: 2865686303139859636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C89\u9C7C\u843D\u96C1" + rect: + serializedVersion: 2 + x: 3200 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d38c979c6debc6140800000000000000 + internalID: 4714352739662547005 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C89\u9ED8\u4E4B\u91D1" + rect: + serializedVersion: 2 + x: 3232 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d2d1216c2a5b6d30800000000000000 + internalID: 4425730205476311763 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u4E4B\u5854\u6CC9\u6C34" + rect: + serializedVersion: 2 + x: 3264 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8b56ab6b5440d200800000000000000 + internalID: 202737142670449550 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u4E4B\u5854\u96D5" + rect: + serializedVersion: 2 + x: 3296 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65134bb4712c92e90800000000000000 + internalID: -7049890336361664170 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u53D1" + rect: + serializedVersion: 2 + x: 3328 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6eabbc8f8020ffb10800000000000000 + internalID: 2017333395642366694 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u6EE9\u900F\u660E\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3360 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 493533736d82ecf60800000000000000 + internalID: 8056421683926619028 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u6EE9\u900F\u660E\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3392 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9b283cb86d855a70800000000000000 + internalID: 8815107326621526940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u6EE9\u900F\u660E\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3424 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e99b770628610dcb0800000000000000 + internalID: -4841344850203264610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u6EE9\u900F\u660E\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3456 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca33ab3c0cec74730800000000000000 + internalID: 3983379722745295788 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u6F0F" + rect: + serializedVersion: 2 + x: 3488 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fac93a487536c54f0800000000000000 + internalID: -838686203059135313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u6F20\u5224\u5B98\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3520 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1133e2cba0c524650800000000000000 + internalID: 6215631636901278481 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u6F20\u5224\u5B98\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3552 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3ab807effd4f9a10800000000000000 + internalID: 1918337727771228732 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u6F20\u5224\u5B98\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 3584 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c34d616d17f754570800000000000000 + internalID: 8450300402730456124 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u6F20\u5224\u5B98\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3616 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba6cfed48a9f502e0800000000000000 + internalID: -2160045944996903253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u6F20\u5224\u5B98\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3648 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84f28ad81b653b6b0800000000000000 + internalID: -5281782617389650104 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u866B\u4E4B\u9CCD" + rect: + serializedVersion: 2 + x: 3680 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1fd19ce6810e8890800000000000000 + internalID: -7454018654245363942 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6C99\u866B\u7684\u786C\u58F3 " + rect: + serializedVersion: 2 + x: 3712 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e94706a85d37fc440800000000000000 + internalID: 4958309075745010846 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CA5\u6CC9\u4E4B\u77DB" + rect: + serializedVersion: 2 + x: 3744 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b66963852bcc3a920800000000000000 + internalID: 3000466843115099755 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CA5\u6CC9\u957F\u77DB" + rect: + serializedVersion: 2 + x: 3776 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6407d9aa976f6460800000000000000 + internalID: 7237117040179741805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CB3\u8C5A" + rect: + serializedVersion: 2 + x: 3808 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dfb5338252c480800800000000000000 + internalID: 578796274589064189 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CB3\u9A6C\u5587\u53ED\u5C0F" + rect: + serializedVersion: 2 + x: 3840 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f395181229864fc0800000000000000 + internalID: -3510968079962762253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CC9\u6C34" + rect: + serializedVersion: 2 + x: 3872 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8efe67244b4ae340800000000000000 + internalID: 4893806701182910095 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5170\u7ED2\u5706\u5F62\u9760\u57AB" + rect: + serializedVersion: 2 + x: 3904 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5132690157674e80800000000000000 + internalID: -8194467399229886115 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u534E\u6775" + rect: + serializedVersion: 2 + x: 3936 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5caa49adf61dad50800000000000000 + internalID: 6750076695221021787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D01" + rect: + serializedVersion: 2 + x: 3968 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a13f7a17a9650760800000000000000 + internalID: 7423455727215128998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D02" + rect: + serializedVersion: 2 + x: 4000 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 032fc0108acea15f0800000000000000 + internalID: -785054978706443728 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D03" + rect: + serializedVersion: 2 + x: 4032 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3671bd7c91e82a70800000000000000 + internalID: 8802533533935564346 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D04" + rect: + serializedVersion: 2 + x: 4064 + y: 2880 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 396e5e0b33f7bb6e0800000000000000 + internalID: -1820721764353317229 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D05" + rect: + serializedVersion: 2 + x: 0 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 087fda3d52dcdf590800000000000000 + internalID: -7638723830601615488 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D06" + rect: + serializedVersion: 2 + x: 32 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3832a5a378197dc0800000000000000 + internalID: -3640851938773157826 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D07" + rect: + serializedVersion: 2 + x: 64 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c511efd9bd006860800000000000000 + internalID: 7521026469684909504 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D08" + rect: + serializedVersion: 2 + x: 96 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be0c81a0f68820310800000000000000 + internalID: 1369807247166193899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D09" + rect: + serializedVersion: 2 + x: 128 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 059e52c0638ba7e10800000000000000 + internalID: 2196270310568094032 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D10" + rect: + serializedVersion: 2 + x: 160 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ceef28586f70ad2f0800000000000000 + internalID: -947436016224764180 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D11" + rect: + serializedVersion: 2 + x: 192 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ff471c3d825463e0800000000000000 + internalID: -2061431962876817424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D12" + rect: + serializedVersion: 2 + x: 224 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ffbd49c35b818f520800000000000000 + internalID: 2735963940312112127 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D13" + rect: + serializedVersion: 2 + x: 256 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae5ceb3ff9532e2f0800000000000000 + internalID: -945134010688944662 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D14" + rect: + serializedVersion: 2 + x: 288 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd166468f24279960800000000000000 + internalID: 7608589882000564699 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D15" + rect: + serializedVersion: 2 + x: 320 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09c596871919091d0800000000000000 + internalID: -3346014469159822192 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D16" + rect: + serializedVersion: 2 + x: 352 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 17d225346d34df5c0800000000000000 + internalID: -4180110291598430863 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D17" + rect: + serializedVersion: 2 + x: 384 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 72ce2c8ac5a5c8420800000000000000 + internalID: 2633579236119735335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5B9D18" + rect: + serializedVersion: 2 + x: 416 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b485b1941c794520800000000000000 + internalID: 2686815080488993968 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5E08\u5927\u5E08" + rect: + serializedVersion: 2 + x: 448 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 212cce58a9c7c3980800000000000000 + internalID: -8557828188797091310 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5E08\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 480 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1fd3bbb535f2b7f90800000000000000 + internalID: -6954913164475810319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5E08\u661F\u76D8" + rect: + serializedVersion: 2 + x: 512 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bbaa786882f4fb8e0800000000000000 + internalID: -1675533500884211013 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5E08\u7684\u798F\u97F3" + rect: + serializedVersion: 2 + x: 544 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff7a33bce5da46040800000000000000 + internalID: 4640024138746144767 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5E08\u7684\u798F\u97F31" + rect: + serializedVersion: 2 + x: 576 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f48518c28c9b7b20800000000000000 + internalID: 3133270051282846969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u5E08\u7684\u798F\u97F32" + rect: + serializedVersion: 2 + x: 608 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa3a622d1cd020af0800000000000000 + internalID: -431767488168549462 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u6756" + rect: + serializedVersion: 2 + x: 640 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c673666151e731560800000000000000 + internalID: 7283303651423434604 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u7403" + rect: + serializedVersion: 2 + x: 672 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9aab91313cf547f0800000000000000 + internalID: -628819284732433766 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u7403\u756A\u8304" + rect: + serializedVersion: 2 + x: 704 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4b2691f0564508d0800000000000000 + internalID: -2880819073169085619 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u7403\u7F8A" + rect: + serializedVersion: 2 + x: 736 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf98b4fc08a8d5790800000000000000 + internalID: -7539717915310061060 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u7403\u94F8\u51771" + rect: + serializedVersion: 2 + x: 768 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 955b0ec87609506c0800000000000000 + internalID: -4177774304896699047 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u7403\u94F8\u517710" + rect: + serializedVersion: 2 + x: 800 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09844382321fc0d60800000000000000 + internalID: 7857920583155337360 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u7403\u94F8\u51772" + rect: + serializedVersion: 2 + x: 832 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3f01d9bb70daef70800000000000000 + internalID: 9217408817184182078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u7403\u94F8\u51773" + rect: + serializedVersion: 2 + x: 864 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd660fdc4aa205810800000000000000 + internalID: 1751947142365210333 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u7403\u94F8\u51774" + rect: + serializedVersion: 2 + x: 896 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63bae0b9fc5a062a0800000000000000 + internalID: -6746209930722759882 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u7403\u94F8\u51775" + rect: + serializedVersion: 2 + x: 928 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6292689e0f5c416b0800000000000000 + internalID: -5326414820771747546 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u7403\u94F8\u51776" + rect: + serializedVersion: 2 + x: 960 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99a5dd70d09b6cc30800000000000000 + internalID: 4379391153282046617 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u7403\u94F8\u51777" + rect: + serializedVersion: 2 + x: 992 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79e74a7ea00e33750800000000000000 + internalID: 6283612242552585879 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u7403\u94F8\u51778" + rect: + serializedVersion: 2 + x: 1024 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 023272ec4b47136e0800000000000000 + internalID: -1859576851225697504 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u7403\u94F8\u51779" + rect: + serializedVersion: 2 + x: 1056 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 996510ec12173dfd0800000000000000 + internalID: -2318384993161619815 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u7403\u996D" + rect: + serializedVersion: 2 + x: 1088 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6f81f20ccb46ea090800000000000000 + internalID: -8021363124459333386 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CD5\u8F6E" + rect: + serializedVersion: 2 + x: 1120 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0a82f0cdd0455880800000000000000 + internalID: -8622914590361875953 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CE1\u6CE1\u68D2" + rect: + serializedVersion: 2 + x: 1152 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4809c10a94bfc32d0800000000000000 + internalID: -3297484533504634748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CE1\u6CE1\u88D9\u5973\u88C5" + rect: + serializedVersion: 2 + x: 1184 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1eb40cfe19ae9e30800000000000000 + internalID: 4512229827214097950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CE1\u6CE1\u88D9\u5973\u88C5\u978B" + rect: + serializedVersion: 2 + x: 1216 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d9dce437131f9460800000000000000 + internalID: 7250534915482900947 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CE2\u5E0C\u7C73\u4E9A\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1248 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 236e82fb48e75a550800000000000000 + internalID: 6171477972989044274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CE2\u5E0C\u7C73\u4E9A\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1280 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb1908209340e5da0800000000000000 + internalID: -5954317014435589698 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CE2\u5E0C\u7C73\u4E9A\u978B" + rect: + serializedVersion: 2 + x: 1312 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36bfc00501bfa4650800000000000000 + internalID: 6218058283019467619 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CE2\u65AF\u592A\u9633\u94DC\u5EA7\u949F" + rect: + serializedVersion: 2 + x: 1344 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 167828c2b30006970800000000000000 + internalID: 8745990730503325537 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CE2\u65AF\u83CA" + rect: + serializedVersion: 2 + x: 1376 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc8afbb2fbcdfd210800000000000000 + internalID: 1360048326120024268 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CE2\u6CE2\u9E1F\u5B9D\u5B9D" + rect: + serializedVersion: 2 + x: 1408 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3cc9a2b304edc5750800000000000000 + internalID: 6295150746609032387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CE5\u9B3C" + rect: + serializedVersion: 2 + x: 1440 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f26f77bb99df9480800000000000000 + internalID: -8890147876584332555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CE8\u5C04\u5668" + rect: + serializedVersion: 2 + x: 1472 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06d78fb98132a9340800000000000000 + internalID: 4871244535557553504 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CE8\u5C04\u836F\u5242" + rect: + serializedVersion: 2 + x: 1504 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62508cd3714fb8000800000000000000 + internalID: 39393402420725030 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF0\u68EE" + rect: + serializedVersion: 2 + x: 1536 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba4c2e7a51bef56b0800000000000000 + internalID: -5305263357775657813 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF0\u6CC9\u4E61\u793C" + rect: + serializedVersion: 2 + x: 1568 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0199747fcf2c3bf0800000000000000 + internalID: -343346903528140531 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1600 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69cda90fd9f895870800000000000000 + internalID: 8672120465987918998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u5973\u77ED\u88E4" + rect: + serializedVersion: 2 + x: 1632 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58cd1c8ce77c73310800000000000000 + internalID: 1384794757787671685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u5973\u88F9\u88D9" + rect: + serializedVersion: 2 + x: 1664 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43d9207e59d048390800000000000000 + internalID: -7817108115731342028 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u5973\u978B" + rect: + serializedVersion: 2 + x: 1696 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f91a3d7ed6a30cd0800000000000000 + internalID: -2593045485921363471 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u6591\u9A6C\u4E0A" + rect: + serializedVersion: 2 + x: 1728 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1bf68250fe214540800000000000000 + internalID: 4990321471814826783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u6591\u9A6C\u4E0B" + rect: + serializedVersion: 2 + x: 1760 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78f81f1edbade8da0800000000000000 + internalID: -5940570349380726905 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u6591\u9A6C\u978B" + rect: + serializedVersion: 2 + x: 1792 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55508ab2e771c1c90800000000000000 + internalID: -7197852273779145387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u7537\u77ED\u88E4" + rect: + serializedVersion: 2 + x: 1824 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 711df9985a2e04400800000000000000 + internalID: 306493975267627287 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u7537\u978B" + rect: + serializedVersion: 2 + x: 1856 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46661791cb4142d40800000000000000 + internalID: 5558590638195304036 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u864E\u7EB9\u4E0A" + rect: + serializedVersion: 2 + x: 1888 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a748f9f4f62631750800000000000000 + internalID: 6274466936073979002 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u864E\u7EB9\u4E0B" + rect: + serializedVersion: 2 + x: 1920 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e295a67386a6ffe40800000000000000 + internalID: 5692385449858455854 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u864E\u7EB9\u978B" + rect: + serializedVersion: 2 + x: 1952 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e75f3d09fcf79680800000000000000 + internalID: -8748245604544587799 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u8C79\u7EB9\u4E0A" + rect: + serializedVersion: 2 + x: 1984 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99189b88b155e2c00800000000000000 + internalID: 877732554130162073 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u8C79\u7EB9\u4E0B" + rect: + serializedVersion: 2 + x: 2016 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e9c0f02b4fa91660800000000000000 + internalID: 7357104203496475104 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6CF3\u88C5\u8C79\u7EB9\u978B" + rect: + serializedVersion: 2 + x: 2048 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92beab5a389c98900800000000000000 + internalID: 687301985409100585 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D01\u767D\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 2080 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4d6033e89f3dffd0800000000000000 + internalID: -2306617508264645301 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D01\u767D\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 2112 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57123c6aab833aba0800000000000000 + internalID: -6078952697707159179 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D01\u767D\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 2144 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 53e6ddabb9e33a9e0800000000000000 + internalID: -1611375403092578763 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D01\u767D\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 2176 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 485a13ebcc4bb3310800000000000000 + internalID: 1385900101803812228 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D01\u767D\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 2208 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2e452ac8307a1860800000000000000 + internalID: 7501431518550904363 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D01\u767D\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 2240 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ebc768579dea41f00800000000000000 + internalID: 1086685659106016446 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D0B\u6854\u6897" + rect: + serializedVersion: 2 + x: 2272 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b28ee858ebd09fe0800000000000000 + internalID: -1184204911027518800 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D0B\u7EA2\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 2304 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c2364cd833ab74f0800000000000000 + internalID: -829890241710640446 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D0B\u8471\u7D2B\u67D3\u6599" + rect: + serializedVersion: 2 + x: 2336 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3315e976ba3433310800000000000000 + internalID: 1383523913989771571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D17\u70B9\u5361" + rect: + serializedVersion: 2 + x: 2368 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75f78e6a4a13f0bd0800000000000000 + internalID: -2661854271508021417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D17\u793C\u5C18\u5BF0\u5C60\u8D66" + rect: + serializedVersion: 2 + x: 2400 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 47265beec7b662e20800000000000000 + internalID: 3325463559184671348 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D17\u793C\u5C18\u5BF0\u5FA1\u884C" + rect: + serializedVersion: 2 + x: 2432 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65f0dab4f2857f110800000000000000 + internalID: 1294600378048646998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D1B\u53EF\u53EF\u6768\u6728\u68B3\u5986\u53F0" + rect: + serializedVersion: 2 + x: 2464 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f791e6ce9bb1ba1e0800000000000000 + internalID: -2185622708808705665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D1B\u9633\u7261\u4E39\u8BB0" + rect: + serializedVersion: 2 + x: 2496 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab7234c970152da00800000000000000 + internalID: 779774778616784826 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D1E\u5BDF\u4E4B\u773C" + rect: + serializedVersion: 2 + x: 2528 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5579d0be8faacd510800000000000000 + internalID: 1575321955744978773 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D1E\u7280\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2560 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96ba4102605e2f890800000000000000 + internalID: -7425621021109736599 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D2A\u8352\u5C65" + rect: + serializedVersion: 2 + x: 2592 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e68e86515b095850800000000000000 + internalID: 6366131992237344489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D2A\u8352\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2624 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 963b6d025217e20a0800000000000000 + internalID: -6904456774433721495 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D2A\u8352\u888D" + rect: + serializedVersion: 2 + x: 2656 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 798dc220f0b232900800000000000000 + internalID: 658417313987221655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D2A\u8352\u88E4" + rect: + serializedVersion: 2 + x: 2688 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fef4e9cc30f1f8d20800000000000000 + internalID: 3282876754554671087 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D3B\u529B\u85E4\u6756" + rect: + serializedVersion: 2 + x: 2720 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ece51e77af6892f20800000000000000 + internalID: 3398395804138954446 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u4E91\u62F1\u95E8" + rect: + serializedVersion: 2 + x: 2752 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3274abfe98ed7ebe0800000000000000 + internalID: -1447944071162476765 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u4E91\u7EB1" + rect: + serializedVersion: 2 + x: 2784 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d76cf38677d6f9b90800000000000000 + internalID: -7232942116916181379 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u4E91\u9010\u98CE\u7B14\u7B52" + rect: + serializedVersion: 2 + x: 2816 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50c961af8acafb730800000000000000 + internalID: 4017119234388040709 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u5149\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 2848 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b244bf2864d087330800000000000000 + internalID: 3708728889635980331 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u5149\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 2880 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6d65a93fec413f5a0800000000000000 + internalID: -6488819759027956010 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u5149\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 2912 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37acd3bb32f47e910800000000000000 + internalID: 1866547585452198515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u5149\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 2944 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9376653ed2a1500f0800000000000000 + internalID: -1151485345333352647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u5149\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 2976 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2126ee2e14a80360800000000000000 + internalID: 7136134059111358763 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u5149\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 3008 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0743e7fdaf7c20540800000000000000 + internalID: 4972756818875790448 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u5149\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 3040 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d3b0ae0a87a90ff0800000000000000 + internalID: -69340107854793768 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u5149\u6218\u94E0" + rect: + serializedVersion: 2 + x: 3072 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8cbc8428309b7e110800000000000000 + internalID: 1290203242986785736 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u5149\u8155\u7532" + rect: + serializedVersion: 2 + x: 3104 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b33f01bf4278964f0800000000000000 + internalID: -834987662999751877 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u5149\u978B" + rect: + serializedVersion: 2 + x: 3136 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0702eb9130a13ef0800000000000000 + internalID: -130146779287910644 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u661F\u5251" + rect: + serializedVersion: 2 + x: 3168 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 666591279d3eb7b30800000000000000 + internalID: 4286269993434830438 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u706B\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3200 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1b89fd8f1cdef360800000000000000 + internalID: 7205438481923410719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u706B\u77F3\u80A4" + rect: + serializedVersion: 2 + x: 3232 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c0307b9d0f4ac040800000000000000 + internalID: 4668630883583930564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u706B\u8776\u5143\u9B42" + rect: + serializedVersion: 2 + x: 3264 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ced47a25f84da2110800000000000000 + internalID: 1237034759698730476 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u708E\u5200" + rect: + serializedVersion: 2 + x: 3296 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 950b8086157fca7a0800000000000000 + internalID: -6364440244371541927 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u82CF\u523A\u7EE3\u9760\u57AB" + rect: + serializedVersion: 2 + x: 3328 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5923135ac8501bbd0800000000000000 + internalID: -2616303806900522347 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u82CF\u5DE8\u83C7\u6811" + rect: + serializedVersion: 2 + x: 3360 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f63c22d0e62610280800000000000000 + internalID: -9078867148995902609 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u8F6C\u6C34\u6676" + rect: + serializedVersion: 2 + x: 3392 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99e786a5a2b6e84f0800000000000000 + internalID: -824603852112626023 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u8F6C\u6C34\u6676\u793C\u5305" + rect: + serializedVersion: 2 + x: 3424 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9905ae1d80128d890800000000000000 + internalID: -7433154863209754471 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u91D1\u5C81\u6708" + rect: + serializedVersion: 2 + x: 3456 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e66086f2aaeaffd70800000000000000 + internalID: 9079167419765229166 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u91D1\u7CBD\u53F6" + rect: + serializedVersion: 2 + x: 3488 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb6c5bb291a3e0ba0800000000000000 + internalID: -6120890963767998785 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u94F6\u5E01" + rect: + serializedVersion: 2 + x: 3520 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 342d77dbd46bcc220800000000000000 + internalID: 2507579537546007107 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D41\u971C\u5251" + rect: + serializedVersion: 2 + x: 3552 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ed22cdd3ec9684420800000000000000 + internalID: 2614455918210589406 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D45\u6D77\u6C99\u67D3\u6599" + rect: + serializedVersion: 2 + x: 3584 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54e0cdcac54f8ba10800000000000000 + internalID: 1925557519575158341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D45\u6D77\u6C99\u67D3\u8272\u5361" + rect: + serializedVersion: 2 + x: 3616 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74cd0be42dfb9d180800000000000000 + internalID: -9090023462886384569 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D51\u5929\u5C18\u964D" + rect: + serializedVersion: 2 + x: 3648 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39e376d20adf0ff40800000000000000 + internalID: 5760382787805200019 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D51\u94C1\u67AA" + rect: + serializedVersion: 2 + x: 3680 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf1fc4db37f381e30800000000000000 + internalID: 4474395996122313211 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D53\u60C5\u871C\u610F" + rect: + serializedVersion: 2 + x: 3712 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5fb18581d6c255370800000000000000 + internalID: 8310597534453603317 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D53\u60C5\u871C\u610F1" + rect: + serializedVersion: 2 + x: 3744 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e31b47220a7a20d0800000000000000 + internalID: -3446808415130938398 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D53\u60C5\u871C\u610F\u679C\u7BEE" + rect: + serializedVersion: 2 + x: 3776 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 862f64bb755e670a0800000000000000 + internalID: -6884062815422320024 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D53\u7F29\u80F6" + rect: + serializedVersion: 2 + x: 3808 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd89152f25e053360800000000000000 + internalID: 7148635732936071387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D63\u718A\u5B9D\u5B9D\u5BF9\u5A03" + rect: + serializedVersion: 2 + x: 3840 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5fe17b775fa61a880800000000000000 + internalID: -8601476210792915211 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D6A\u6F2B\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 3872 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5748c3ee8e7d60b10800000000000000 + internalID: 1947481284313646197 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D6A\u6F2B\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 3904 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d70fb0022baa2420800000000000000 + internalID: 2606083496917010389 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D6A\u6F2B\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 3936 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a193b2535dd39c300800000000000000 + internalID: 272817238361979162 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D6A\u6F2B\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 3968 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d1c80f0f8668b300800000000000000 + internalID: 268076942447133138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D6A\u6F2B\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 4000 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1166c5a54819e96a0800000000000000 + internalID: -6440550419455515119 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D6A\u6F2B\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 4032 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab3a3e6f9512c28d0800000000000000 + internalID: -2869882192263928902 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D6A\u8776\u7CBE\u7075" + rect: + serializedVersion: 2 + x: 4064 + y: 2848 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f0dbbe454df8ea90800000000000000 + internalID: -7284293923156274955 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D6E\u534E\u5251" + rect: + serializedVersion: 2 + x: 0 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5aaa43d15d2943db0800000000000000 + internalID: -4813060657736537435 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D6E\u5C60\u68CD" + rect: + serializedVersion: 2 + x: 32 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7fd413ee3be00710800000000000000 + internalID: 1657583318202638204 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D6E\u6C89\u5200" + rect: + serializedVersion: 2 + x: 64 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 113509b89fa828d60800000000000000 + internalID: 7891022301499511569 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D6E\u7075\u5DE2\u7A74" + rect: + serializedVersion: 2 + x: 96 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1cd82eca48180b630800000000000000 + internalID: 3940792080785378753 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D6E\u82B1\u5C0F\u4EAD\u8DEF\u706F" + rect: + serializedVersion: 2 + x: 128 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20b556073886ed5d0800000000000000 + internalID: -3035874185065440510 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u4E4B\u6218" + rect: + serializedVersion: 2 + x: 160 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c230833c543daf930800000000000000 + internalID: 4177883900920988460 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u5203\u51B0\u7687" + rect: + serializedVersion: 2 + x: 192 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f23d51a2c48a0ac70800000000000000 + internalID: 8980362702053823279 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u5929\u4F69" + rect: + serializedVersion: 2 + x: 224 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e32b1757e98cd590800000000000000 + internalID: -7648086440490097690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u5B50\u84DD\u67D3\u6599" + rect: + serializedVersion: 2 + x: 256 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96c4144b27e9224e0800000000000000 + internalID: -2007868268366181271 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u661F" + rect: + serializedVersion: 2 + x: 288 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7950d5cd7981701c0800000000000000 + internalID: -4537631059036273257 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u661F\u4EBA" + rect: + serializedVersion: 2 + x: 320 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb68e9d1b2e49d810800000000000000 + internalID: 1790548273943971518 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u67AF\u77F3\u70C2" + rect: + serializedVersion: 2 + x: 352 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89dc07ca7277b5620800000000000000 + internalID: 2763933808602434968 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u67AF\u77F3\u70C2\u5370" + rect: + serializedVersion: 2 + x: 384 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e90c42717fac43e0800000000000000 + internalID: -2068085227086149147 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u6D0B\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 416 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6534c7941b4b06cd0800000000000000 + internalID: -2566853114066091178 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u751F\u7075\u83C7" + rect: + serializedVersion: 2 + x: 448 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d122f56c8d090abe0800000000000000 + internalID: -1468014217807322595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u76D7\u55BD\u7F57\u7684\u5FC3\u810F" + rect: + serializedVersion: 2 + x: 480 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3aa5727b391adc10800000000000000 + internalID: 2079001921098983995 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u76D7\u5C9B\u5730\u5F62\u56FE" + rect: + serializedVersion: 2 + x: 512 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8c64f96f699cc570800000000000000 + internalID: 8488328101484588170 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u76D7\u8239\u957F\u7537\u88C5-\u62A4\u815532" + rect: + serializedVersion: 2 + x: 544 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99fc0fbe16cae9bd0800000000000000 + internalID: -2621468396512817255 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u76D7\u8239\u957F\u7537\u88C5-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 576 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62d2fd9a3d79bbc50800000000000000 + internalID: 6682101407478132006 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u76D7\u8239\u957F\u7537\u88C5-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 608 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d71f95ec20bfcc320800000000000000 + internalID: 2579712676046958973 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u76D7\u8239\u957F\u7537\u88C5-\u978B32" + rect: + serializedVersion: 2 + x: 640 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79b0505401b3f8be0800000000000000 + internalID: -1472893612063388777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u80C6" + rect: + serializedVersion: 2 + x: 672 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 35e5485d4a37a1960800000000000000 + internalID: 7573492875170963027 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u84DD\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 704 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec1d477ce50d2bde0800000000000000 + internalID: -1318762635374308914 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u84DD\u771F\u73D1\u9601" + rect: + serializedVersion: 2 + x: 736 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0aeb446c0eabb64b0800000000000000 + internalID: -5446053849812648288 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u87BA\u6756" + rect: + serializedVersion: 2 + x: 768 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ac9771b52e7d7c10800000000000000 + internalID: 2052935705507110053 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u8D1D\u7D2B\u67D3\u6599" + rect: + serializedVersion: 2 + x: 800 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 645ad14ff9ab6a610800000000000000 + internalID: 1632197111126533446 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u9519\u7FA4\u89C8" + rect: + serializedVersion: 2 + x: 832 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb70846da37c3ff50800000000000000 + internalID: 6914088908460918718 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u9A6C\u6C34\u5E55\u906E" + rect: + serializedVersion: 2 + x: 864 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b95680bb3c0e84b30800000000000000 + internalID: 4271911377822049691 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D77\u9CD0\u7532" + rect: + serializedVersion: 2 + x: 896 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e528c6a9c28e3cf0800000000000000 + internalID: -270635124997478944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6D85\u78D0\u4E4B\u6756" + rect: + serializedVersion: 2 + x: 928 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37868c39421116650800000000000000 + internalID: 6224275008798615667 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DA1\u7EB9\u7EA2\u6728\u68B3\u5986\u53F0" + rect: + serializedVersion: 2 + x: 960 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13a1caffe472b26b0800000000000000 + internalID: -5320115314557707727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DA4\u9B42\u77F3" + rect: + serializedVersion: 2 + x: 992 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7fc366c10a711db10800000000000000 + internalID: 2004409285595249911 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DB5\u73CD\u5E7F\u6D4E\u6865" + rect: + serializedVersion: 2 + x: 1024 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 120544a0548d69610800000000000000 + internalID: 1627726106377605153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DB5\u865A\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1056 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b535aa30c96907f70800000000000000 + internalID: 9183005237029000027 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DD8\u5B9D\u65B0\u624B\u793C\u5305" + rect: + serializedVersion: 2 + x: 1088 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71b7c41350ba7c080800000000000000 + internalID: -9167170477699073257 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DEC\u4F53\u6563" + rect: + serializedVersion: 2 + x: 1120 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6da8b185873cbdc40800000000000000 + internalID: 5538235088423848662 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DEC\u94C1\u5251" + rect: + serializedVersion: 2 + x: 1152 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc97bcb00f4172fe0800000000000000 + internalID: -1213978553330468404 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF1\u6C34\u6740\u624B\u5361\u72471" + rect: + serializedVersion: 2 + x: 1184 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db3dace0103237b40800000000000000 + internalID: 5436727662616433597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF1\u6C34\u6740\u624B\u5361\u72472" + rect: + serializedVersion: 2 + x: 1216 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7997a496d9b89a360800000000000000 + internalID: 7181424589011581335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF1\u6C34\u6740\u624B\u5361\u72473" + rect: + serializedVersion: 2 + x: 1248 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0b5c65d89edabb20800000000000000 + internalID: 3151075637296126731 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF1\u6C34\u6740\u624B\u5361\u72474" + rect: + serializedVersion: 2 + x: 1280 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3601c8529a5566680800000000000000 + internalID: -8762221840034951069 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF1\u6C34\u6740\u624B\u5361\u72475" + rect: + serializedVersion: 2 + x: 1312 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 407dc68bae5f32cf0800000000000000 + internalID: -278108363501545724 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF1\u6C34\u6740\u624B\u5361\u72476" + rect: + serializedVersion: 2 + x: 1344 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6625d82c760dc1960800000000000000 + internalID: 7574157817394582118 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF1\u6C34\u6740\u624B\u5361\u72477" + rect: + serializedVersion: 2 + x: 1376 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b3c14dae705cbf00800000000000000 + internalID: 1133869711193392057 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF1\u6C34\u6740\u624B\u5361\u72478" + rect: + serializedVersion: 2 + x: 1408 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c07aa494c8cd46400800000000000000 + internalID: 316620368905938700 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF1\u6D77\u6050\u9C7C" + rect: + serializedVersion: 2 + x: 1440 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce66063e510868a80800000000000000 + internalID: -8464937618098854164 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF1\u6E0A\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1472 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be3a434f820197690800000000000000 + internalID: -7604028727756545045 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF1\u6E0A\u9B54\u6676" + rect: + serializedVersion: 2 + x: 1504 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2aedadff000390c90800000000000000 + internalID: -7203173348151730526 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF1\u6F6D\u65CB\u9F9F\u7684\u786C\u58F3" + rect: + serializedVersion: 2 + x: 1536 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1850d49ea224f4330800000000000000 + internalID: 3697246571164665217 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF7\u5143\u4F69" + rect: + serializedVersion: 2 + x: 1568 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1336a2da9bcaa8550800000000000000 + internalID: 6163928953484108593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF7\u5143\u9524" + rect: + serializedVersion: 2 + x: 1600 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c96334edcb0b1490800000000000000 + internalID: -7774607352800253501 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF7\u6C8C\u4E4B\u5143" + rect: + serializedVersion: 2 + x: 1632 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2ae4e44a731f3ba0800000000000000 + internalID: -6107141153828312533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF7\u6C8C\u65A7" + rect: + serializedVersion: 2 + x: 1664 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d39f67be01d1aba0800000000000000 + internalID: -6079348160836168743 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6DF7\u6C8C\u7CBE\u5143" + rect: + serializedVersion: 2 + x: 1696 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e02b8fe9973d3990800000000000000 + internalID: -7404701078038830871 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E05\u5C18" + rect: + serializedVersion: 2 + x: 1728 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6c7015abba0ad0f0800000000000000 + internalID: -1091548158639440787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E05\u660E\u4E0A\u6CB3\u56FE" + rect: + serializedVersion: 2 + x: 1760 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1868808c34dcdf60800000000000000 + internalID: 8060550789405894685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E05\u6C34" + rect: + serializedVersion: 2 + x: 1792 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5fded37d4893291d0800000000000000 + internalID: -3345548330473230859 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E05\u6F13\u7075\u74A7\u77F3" + rect: + serializedVersion: 2 + x: 1824 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0085dd348c58ea630800000000000000 + internalID: 3940233819174295552 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E05\u7FFC\u8713" + rect: + serializedVersion: 2 + x: 1856 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e999ea51102cf7fe0800000000000000 + internalID: -1189018466688001634 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E05\u9759\u7409\u7483" + rect: + serializedVersion: 2 + x: 1888 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42aa58958c7d76cf0800000000000000 + internalID: -259001198055151068 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E14\u6A35\u620F\u846B\u82A6" + rect: + serializedVersion: 2 + x: 1920 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e31974cf52c741a0800000000000000 + internalID: -6825272993682746398 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u60C5\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 1952 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0eb8eb77fc45524c0800000000000000 + internalID: -4312947818093442080 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u60C5\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 1984 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4b6d273507c52a30800000000000000 + internalID: 4189973853552601934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u60C5\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 2016 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e51566371c866410800000000000000 + internalID: 1470016359707776486 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u60C5\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 2048 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82ab6f70f8f177c90800000000000000 + internalID: -7172229182389831128 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u60C5\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 2080 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd2cea26a5aeba6f0800000000000000 + internalID: -672186045438180641 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u60C5\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 2112 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b884bec4916bbe550800000000000000 + internalID: 6191242332531804299 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u6DA6\u7684\u4E0D\u7834\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2144 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85a79dd5126462420800000000000000 + internalID: 2604846543602809432 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u6DA6\u7684\u5F80\u590D\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2176 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d2aa3fd49913e090800000000000000 + internalID: -8006527585343593769 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u6DA6\u7684\u6298\u51B2\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2208 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8aba46ca0945103d0800000000000000 + internalID: -3242217276385743960 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u6DA6\u7684\u65E0\u4F24\u4F69" + rect: + serializedVersion: 2 + x: 2240 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fec82fc1fdc9afc90800000000000000 + internalID: -7135218177537831697 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u6DA6\u7684\u6D77\u5929\u4F69" + rect: + serializedVersion: 2 + x: 2272 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6670711589e63d120800000000000000 + internalID: 2437413423812118374 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u6DA6\u7684\u7075\u9F9F\u4F69" + rect: + serializedVersion: 2 + x: 2304 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9fd99314c2c546880800000000000000 + internalID: -8618662441737675271 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u6DA6\u7684\u76C8\u6CF0\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2336 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 19b2e8bcb8c19eec0800000000000000 + internalID: -3537264645581689967 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u6DA6\u7684\u7956\u9F99\u4F69" + rect: + serializedVersion: 2 + x: 2368 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96efcba875286c760800000000000000 + internalID: 7477807543796694633 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E29\u99A8\u795D\u798F" + rect: + serializedVersion: 2 + x: 2400 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f06ecabb61773810800000000000000 + internalID: 1744988088138883312 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E38\u8361\u7684\u9E66\u9E49" + rect: + serializedVersion: 2 + x: 2432 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5a4e20bd54ad5ae0800000000000000 + internalID: -1558909173705586083 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E38\u9F99\u8170\u9970" + rect: + serializedVersion: 2 + x: 2464 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81cc8825609890ad0800000000000000 + internalID: -2735504638403359720 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E56\u84DD\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 2496 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 148c70adcb501ef40800000000000000 + internalID: 5755888107426138177 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6E90\u751F\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 2528 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 745616978abfac050800000000000000 + internalID: 5821742169339290951 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6EA2\u60C5\u91D1\u676F2015" + rect: + serializedVersion: 2 + x: 2560 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4776093525a148550800000000000000 + internalID: 6162079131041294196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6EA2\u6C34\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 2592 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc750642d601237f0800000000000000 + internalID: -634426536558045233 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6EAA\u5C71\u79CB\u9AD8\u56FE" + rect: + serializedVersion: 2 + x: 2624 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e0115b141a74fc490800000000000000 + internalID: -7723876077999419122 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6EAA\u5C71\u7EDD\u5C18\u56FE" + rect: + serializedVersion: 2 + x: 2656 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 776e9f83123af80d0800000000000000 + internalID: -3418334229065767305 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6EE1\u5929\u661F" + rect: + serializedVersion: 2 + x: 2688 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84d778ac4aa09e280800000000000000 + internalID: -9013661476316545720 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6F06\u76D2\u77F3\u677F\u781A" + rect: + serializedVersion: 2 + x: 2720 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 930d3eba94da0c8f0800000000000000 + internalID: -522227024846925767 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6F0F\u6597" + rect: + serializedVersion: 2 + x: 2752 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a075a30a79386f020800000000000000 + internalID: 2375230540735993610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6F4B\u6EDF\u957F\u5200" + rect: + serializedVersion: 2 + x: 2784 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c17f907087cc59710800000000000000 + internalID: 1699489250288465692 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u6F5C\u4F0F\u6218\u5730\u62A5\u544A" + rect: + serializedVersion: 2 + x: 2816 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8e442b55e7a62270800000000000000 + internalID: 8225446372957245070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u705E\u6865\u98CE\u96EA\u56FE" + rect: + serializedVersion: 2 + x: 2848 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8bb4bc7ac7f6dd350800000000000000 + internalID: 6043108856182819768 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u4E4B\u7CBE" + rect: + serializedVersion: 2 + x: 2880 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89063c6670072a0d0800000000000000 + internalID: -3413042390502252392 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u4E91\u4E2D\u7EA7" + rect: + serializedVersion: 2 + x: 2912 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee561aaa04b79c780800000000000000 + internalID: -8662256890599610898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u4E91\u521D\u7EA7" + rect: + serializedVersion: 2 + x: 2944 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a724053cf75915610800000000000000 + internalID: 1608230917918179962 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u4E91\u90AA\u795E\u5251" + rect: + serializedVersion: 2 + x: 2976 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3df6fa21a26998a70800000000000000 + internalID: 8829753651882848211 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u4E91\u9AD8\u7EA7" + rect: + serializedVersion: 2 + x: 3008 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d488f9cc5b14181b0800000000000000 + internalID: -5656167407922739123 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u5143\u7D20\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 3040 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 158a9218dd82e23c0800000000000000 + internalID: -4382520455565039535 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u51E4\u51F0" + rect: + serializedVersion: 2 + x: 3072 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 366325598e9e475f0800000000000000 + internalID: -759725251971893661 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u51E4\u51F0\u7FC5\u818032" + rect: + serializedVersion: 2 + x: 3104 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d2bb8ce093cf24200800000000000000 + internalID: 162969858530130733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u5C16\u67AA" + rect: + serializedVersion: 2 + x: 3136 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7855efbc143db48c0800000000000000 + internalID: -4013882363321887353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u5CA9\u6212" + rect: + serializedVersion: 2 + x: 3168 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e835498add05ba820800000000000000 + internalID: 2930524895480927118 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u5CA9\u79D8\u6CD5\u888D" + rect: + serializedVersion: 2 + x: 3200 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b7a2d5a4b5e0ce6e0800000000000000 + internalID: -1807053565229979013 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u5CA9\u8170\u4F69" + rect: + serializedVersion: 2 + x: 3232 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d123bf8a5f3828730800000000000000 + internalID: 3999904510183682589 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u5CA9\u8F7B\u9774" + rect: + serializedVersion: 2 + x: 3264 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aeb13dfd162be5c50800000000000000 + internalID: 6655953432736898026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u5CA9\u91CD\u7532" + rect: + serializedVersion: 2 + x: 3296 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f8a0782b737d1ea0800000000000000 + internalID: -5900432963988838160 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u5CA9\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3328 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df3538e3b4d805460800000000000000 + internalID: 7228432756240503805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u6811\u70DF\u82B1" + rect: + serializedVersion: 2 + x: 3360 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8db8ffbfc72dac10800000000000000 + internalID: 2066351577265388938 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u708E\u7ED3\u6676" + rect: + serializedVersion: 2 + x: 3392 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f881fb6cd29f03390800000000000000 + internalID: -7840492976248776561 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u70E7\u5929" + rect: + serializedVersion: 2 + x: 3424 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f35ea03cf7e81de20800000000000000 + internalID: 3373634275261474111 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u7130\u56FE\u817E" + rect: + serializedVersion: 2 + x: 3456 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: acaaff7fa6656aa90800000000000000 + internalID: -7303054728307430710 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u7130\u97F3\u7B26" + rect: + serializedVersion: 2 + x: 3488 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45c9b830e11ec0490800000000000000 + internalID: -7778594937350939564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u72D0\u5C3E" + rect: + serializedVersion: 2 + x: 3520 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 820383114d2a702e0800000000000000 + internalID: -2159578464595202008 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u773C\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3552 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98248a806815a8950800000000000000 + internalID: 6452059052274369161 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u77F3" + rect: + serializedVersion: 2 + x: 3584 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2a5e88ff8ab10c50800000000000000 + internalID: 6629785253979249196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u77F3\u4E4B\u5FC3" + rect: + serializedVersion: 2 + x: 3616 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c32d8b02ff53f0560800000000000000 + internalID: 7282098492363297340 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u78F7\u77ED\u6756" + rect: + serializedVersion: 2 + x: 3648 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59d54595f47f7bd10800000000000000 + internalID: 2141452068011138453 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u795E\u5361" + rect: + serializedVersion: 2 + x: 3680 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bfa2c442cdaac2920800000000000000 + internalID: 2966934117008812795 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u795E\u795D\u878D" + rect: + serializedVersion: 2 + x: 3712 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c35c546e60768dd0800000000000000 + internalID: -2484174525015764025 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u7EA2\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3744 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1d56fef5ee3fc550800000000000000 + internalID: 6183229970948971802 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u7EA2\u7070\u70EC" + rect: + serializedVersion: 2 + x: 3776 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56882b0b9f5a52110800000000000000 + internalID: 1235576164612999269 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u7EA2\u7684\u8D1D\u58F3" + rect: + serializedVersion: 2 + x: 3808 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b6adde48a9b20130800000000000000 + internalID: 3531589190340683447 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u7FBD" + rect: + serializedVersion: 2 + x: 3840 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3421ef5f01a6da820800000000000000 + internalID: 2931115553567150659 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u80C6\u4E4B\u9524" + rect: + serializedVersion: 2 + x: 3872 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92110472f82e72a40800000000000000 + internalID: 5343488587365093673 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u836F\u7528\u6728\u70AD" + rect: + serializedVersion: 2 + x: 3904 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cffe935196a3de0a0800000000000000 + internalID: -6850755235158560772 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u836F\u7528\u785D\u77F3" + rect: + serializedVersion: 2 + x: 3936 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b201c757f2ae1fe30800000000000000 + internalID: 4535663789294227499 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u836F\u7528\u786B\u78FA" + rect: + serializedVersion: 2 + x: 3968 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e5ac0c66ac1f299d0800000000000000 + internalID: -2768884969269835170 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u83B2\u7EB9\u7AE0" + rect: + serializedVersion: 2 + x: 4000 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 698d7ec4e59638e70800000000000000 + internalID: 9116245924466120854 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706B\u9E21" + rect: + serializedVersion: 2 + x: 4032 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edf6e802c3c8c8aa0800000000000000 + internalID: -6157392400650178594 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706D\u5EA6\u62F3\u5957" + rect: + serializedVersion: 2 + x: 4064 + y: 2816 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09a8b64b595f50ae0800000000000000 + internalID: -1583589670624982384 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706D\u5F71\u4E4B\u5F13" + rect: + serializedVersion: 2 + x: 0 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4eac9b663d7be140800000000000000 + internalID: 4750027904679456331 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706D\u795E\u7BAD" + rect: + serializedVersion: 2 + x: 32 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac13b37bef3505030800000000000000 + internalID: 3481374865418301898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706D\u9B42\u62F3\u5957" + rect: + serializedVersion: 2 + x: 64 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d129d90d5cc2c4070800000000000000 + internalID: 8091891858598105629 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706F\u6620\u5EB7\u5B89\u4E94\u8272\u6C64\u5706" + rect: + serializedVersion: 2 + x: 96 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8188d52c460a2f760800000000000000 + internalID: 7490225484888639512 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706F\u7070" + rect: + serializedVersion: 2 + x: 128 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f777ce21466b54320800000000000000 + internalID: 2541638105650984831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706F\u89D2\u94A9\u6A90\u4EAD" + rect: + serializedVersion: 2 + x: 160 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ca88f84380863260800000000000000 + internalID: 7076985165812632260 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u706F\u9B42" + rect: + serializedVersion: 2 + x: 192 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 30c0a03a57152d810800000000000000 + internalID: 1788581567707876355 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7070\u59D1\u5A18\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 224 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 093c6efcb23d11e60800000000000000 + internalID: 7931352603901215632 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7070\u59D1\u5A18\u5934\u53D1" + rect: + serializedVersion: 2 + x: 256 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c96c68883415535b0800000000000000 + internalID: -5389312028583737700 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7070\u59D1\u5A18\u738B\u5B50\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 288 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ae8493953aff9dc0800000000000000 + internalID: -3629907666621133149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7070\u59D1\u5A18\u738B\u5B50\u5934\u53D1" + rect: + serializedVersion: 2 + x: 320 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b9173546ced0abf0800000000000000 + internalID: -315007030769804879 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7070\u59D1\u5A18\u738B\u5B50\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 352 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 28d0004a653899c60800000000000000 + internalID: 7825430235674840450 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7070\u59D1\u5A18\u738B\u5B50\u978B\u5B50" + rect: + serializedVersion: 2 + x: 384 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 386c16bcb4ae41f50800000000000000 + internalID: 6851358544392996483 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7070\u59D1\u5A18\u978B\u5B50" + rect: + serializedVersion: 2 + x: 416 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6bda72f5d3a950f60800000000000000 + internalID: 7999969901473672630 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7070\u6697\u7684\u4E2D\u8206\u5E7B\u672C" + rect: + serializedVersion: 2 + x: 448 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1cb092a49d181b830800000000000000 + internalID: 4085189107253840833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7070\u6697\u7684\u6467\u610F\u4E4B\u722A" + rect: + serializedVersion: 2 + x: 480 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b4f636db38739fc0800000000000000 + internalID: -3489313087889673033 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7070\u6697\u7684\u7F1A\u5730\u4E4B\u854A" + rect: + serializedVersion: 2 + x: 512 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c342d7cb8ded5cc0800000000000000 + internalID: -3720556532529478712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7070\u6697\u7684\u85CF\u7A7A\u5947\u5377" + rect: + serializedVersion: 2 + x: 544 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7a481e23719aa0e0800000000000000 + internalID: -2257832339292272004 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7070\u6697\u7684\u8F9F\u5FC3\u4E4B\u7389" + rect: + serializedVersion: 2 + x: 576 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58be18af17b1ebcf0800000000000000 + internalID: -234719954228614267 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7070\u6697\u7684\u9E3F\u8499\u79D8\u6284" + rect: + serializedVersion: 2 + x: 608 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f274031bd3b1c4a80800000000000000 + internalID: -8481374046465800401 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u4F50\u62A4\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 640 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2af81d29db589f00800000000000000 + internalID: 1123749095351581227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u4F50\u9B54\u529B\u7B26" + rect: + serializedVersion: 2 + x: 672 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59ece9c4923834d70800000000000000 + internalID: 9026202291582979733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u5149\u5B9D\u76D2" + rect: + serializedVersion: 2 + x: 704 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8ea090a15a9fafe0800000000000000 + internalID: -1175551302343545205 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u5149\u9879\u94FE" + rect: + serializedVersion: 2 + x: 736 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 38049f109750543f0800000000000000 + internalID: -917320931817734013 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u529B\u94F8\u6750" + rect: + serializedVersion: 2 + x: 768 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25d232f1188089790800000000000000 + internalID: -7523253826856211118 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u52A8\u4E4B\u5146" + rect: + serializedVersion: 2 + x: 800 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c32df31a5304f830800000000000000 + internalID: 4103908845858661319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u52A8\u7ED3\u6676" + rect: + serializedVersion: 2 + x: 832 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e3d45039ffaf6660800000000000000 + internalID: 7381311799076115424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u53CD\u9707\u4E4B\u5377" + rect: + serializedVersion: 2 + x: 864 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 537ab4f7d52acce40800000000000000 + internalID: 5678091752658675509 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u58C1\u5760\u5B50" + rect: + serializedVersion: 2 + x: 896 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f518be8f4448dae60800000000000000 + internalID: 7975175946911842655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u5A92" + rect: + serializedVersion: 2 + x: 928 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 389c027361c5740b0800000000000000 + internalID: -5744521549203846781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u5E7D\u9759\u95E8" + rect: + serializedVersion: 2 + x: 960 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3383718f962ff7bb0800000000000000 + internalID: -4935960129627015117 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u609F\u4E4B\u8BED" + rect: + serializedVersion: 2 + x: 992 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ede72b5e57267650800000000000000 + internalID: 6230210420723412451 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13a\u5251\u7075\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1024 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6174a4158af1f1d50800000000000000 + internalID: 6710116777584117526 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13a\u5251\u7075\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1056 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a5fa4acb116e2da0800000000000000 + internalID: -5967725684233407066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13a\u5251\u7075\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1088 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c1b0a88320fef0d0800000000000000 + internalID: -3387005834329280058 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13a\u5251\u7075\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1120 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0b28259e24e3a260800000000000000 + internalID: 7107775525642840843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13a\u9B45\u7075\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1152 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b75e455e738903b0800000000000000 + internalID: -5545756887509739595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13a\u9B45\u7075\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1184 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd17b4ff92feac0c0800000000000000 + internalID: -4554565109476003361 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13a\u9B45\u7075\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1216 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9514f1f50988c7990800000000000000 + internalID: -7386879135141904039 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13a\u9B45\u7075\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1248 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: beaa76f40ab4773c0800000000000000 + internalID: -4361934562185991445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13b\u5251\u7075\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1280 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: efaf5a1ee48537810800000000000000 + internalID: 1761848975048440574 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13b\u5251\u7075\u804C\u4E1A\u88C5\u62A4\u624B" + rect: + serializedVersion: 2 + x: 1312 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0cb0504ee54c63280800000000000000 + internalID: -9063841288205038656 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13b\u5251\u7075\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1344 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b623ef5a5ec687e0800000000000000 + internalID: -1763495316517869898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13b\u5251\u7075\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1376 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74177a2714658e340800000000000000 + internalID: 4893255834234483015 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13b\u9B45\u7075\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1408 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5cb0e6c5914ad0150800000000000000 + internalID: 5840504720601254853 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13b\u9B45\u7075\u804C\u4E1A\u88C5\u62A4\u624B" + rect: + serializedVersion: 2 + x: 1440 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb41b86bc420cece0800000000000000 + internalID: -1374721257751505729 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13b\u9B45\u7075\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1472 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 030a0143acc9d8960800000000000000 + internalID: 7605907737969467440 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF13b\u9B45\u7075\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1504 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c824ae540bcf23a0800000000000000 + internalID: -6687903701993772863 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u5251\u7075\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1536 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a78348303b67b8c60800000000000000 + internalID: 7821475689089218682 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u5251\u7075\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1568 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8bfd46d82e1f14940800000000000000 + internalID: 5278766193592033208 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u5251\u7075\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1600 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50936bda3b23a9530800000000000000 + internalID: 3862455377718556933 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u5251\u7075\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1632 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ba51c8215a9243e0800000000000000 + internalID: -2070923205270218064 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u53CC\u5B50\u98CE\u7B5D" + rect: + serializedVersion: 2 + x: 1664 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d5d3681f271a35a0800000000000000 + internalID: -6540890017762126380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u660E\u795E\u98CE\u7B5D" + rect: + serializedVersion: 2 + x: 1696 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27b815b25c7bae590800000000000000 + internalID: -7644095360044790926 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u673A\u68B0\u7075" + rect: + serializedVersion: 2 + x: 1728 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02cbd0449b9d16880800000000000000 + internalID: -8619368822076490720 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u6C34\u7389\u98CE\u7B5D" + rect: + serializedVersion: 2 + x: 1760 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c3083e466eefbb00800000000000000 + internalID: 846657378135311300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u6DF1\u6D77\u9B54\u9CD0" + rect: + serializedVersion: 2 + x: 1792 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ead9a0b9a59272ba0800000000000000 + internalID: -6113872500007199314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u767D\u96C0" + rect: + serializedVersion: 2 + x: 1824 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 47ce609938ff44930800000000000000 + internalID: 4126704099251383412 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u7FE9\u7FE9\u821E\u8776\u98DE\u884C\u5668" + rect: + serializedVersion: 2 + x: 1856 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb0c8cc73421b72b0800000000000000 + internalID: -5585850831757328193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u84B8\u6C7D\u5E7B\u60F3" + rect: + serializedVersion: 2 + x: 1888 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d666e98a404e6dd00800000000000000 + internalID: 997235076169098861 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u98CE\u7B5D" + rect: + serializedVersion: 2 + x: 1920 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b896c9c30a30dc20800000000000000 + internalID: 3229144720769194167 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u98CE\u7B5D\u68A6\u9B47" + rect: + serializedVersion: 2 + x: 1952 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10c8a0dba81373aa0800000000000000 + internalID: -6181417491595883519 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u9B45\u7075\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1984 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51792778129573030800000000000000 + internalID: 3474343638080853781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u9B45\u7075\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2016 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a4714de2fc551640800000000000000 + internalID: 5050044755598210210 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u9B45\u7075\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2048 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71fbc9428f21fd0a0800000000000000 + internalID: -6854739250859163881 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u65CF\u9B45\u7075\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2080 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 80194238e0f1c9dd0800000000000000 + internalID: -2478071547770400504 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u667A\u6CD5\u65D7" + rect: + serializedVersion: 2 + x: 2112 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85935a6807098a060800000000000000 + internalID: 6964975636698184024 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u667A\u6CD5\u7B7E" + rect: + serializedVersion: 2 + x: 2144 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5486da4a5207bdc0800000000000000 + internalID: -3623424788370389923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u66E6\u5C65" + rect: + serializedVersion: 2 + x: 2176 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e2f68a04f2491b00800000000000000 + internalID: 799744024751043297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u66E6\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2208 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3252f5adb00450fc0800000000000000 + internalID: -3529344313322429149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u66E6\u888D" + rect: + serializedVersion: 2 + x: 2240 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 72f03ac1e32187b80800000000000000 + internalID: -8396941447254569177 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u66E6\u88E4" + rect: + serializedVersion: 2 + x: 2272 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 369ab58a4bd997860800000000000000 + internalID: 7528221651370748259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u673A\u5B9D\u5323" + rect: + serializedVersion: 2 + x: 2304 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee08940ee225db590800000000000000 + internalID: -7656873430175088402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u673A\u5C0F\u5323" + rect: + serializedVersion: 2 + x: 2336 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c97b37f473f5a27e0800000000000000 + internalID: -1789513210765527140 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u6839\u4ED9\u77F3" + rect: + serializedVersion: 2 + x: 2368 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 062a2fa900bd423c0800000000000000 + internalID: -4385139341505944992 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u6C14\u85E4\u6756" + rect: + serializedVersion: 2 + x: 2400 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 339afdc1f2bad4230800000000000000 + internalID: 3624741493939349811 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u6CC9\u5947\u917F" + rect: + serializedVersion: 2 + x: 2432 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7f6df65be4a504e0800000000000000 + internalID: -2016023927494709380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u706B" + rect: + serializedVersion: 2 + x: 2464 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9c6ceffa8cc35380800000000000000 + internalID: -8983611934302770020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u7280\u57CE\u7CBE\u5143" + rect: + serializedVersion: 2 + x: 2496 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 127f961f2b1f8da50800000000000000 + internalID: 6546247809239742241 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u7280\u6247" + rect: + serializedVersion: 2 + x: 2528 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83a38ddc0db80eef0800000000000000 + internalID: -80911064369710536 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u7280\u91CA\u5384\u5251" + rect: + serializedVersion: 2 + x: 2560 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06ada9361dd5ba700800000000000000 + internalID: 552638533183658592 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u72D0" + rect: + serializedVersion: 2 + x: 2592 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 818e8c845376a26e0800000000000000 + internalID: -1861562017412225000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u72EE\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 2624 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a65abc3f1d99c25e0800000000000000 + internalID: -1933001013031361174 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u72EE\u6218\u94E0" + rect: + serializedVersion: 2 + x: 2656 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e09a9924690633f80800000000000000 + internalID: -8128046703994885874 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u72EE\u8155\u7532" + rect: + serializedVersion: 2 + x: 2688 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3ecb45987e10b590800000000000000 + internalID: -7660589462907531717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u72EE\u978B" + rect: + serializedVersion: 2 + x: 2720 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 702acc02cd718e020800000000000000 + internalID: 2371171438021091847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u7334\u4E4B\u8840" + rect: + serializedVersion: 2 + x: 2752 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea808d9b7bf2d6790800000000000000 + internalID: -7535314135377508178 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u77F3\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 2784 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2632c713643fb29d0800000000000000 + internalID: -2797875260677151902 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u7B26\u5C65" + rect: + serializedVersion: 2 + x: 2816 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a806ca7bb4ff9890800000000000000 + internalID: -7448966172591650653 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u7B26\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2848 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98b284abfc41f8ef0800000000000000 + internalID: -103841383990154359 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u7B26\u888D" + rect: + serializedVersion: 2 + x: 2880 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3bf773e8f75ddf220800000000000000 + internalID: 2521406110220910515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u7B26\u88E4" + rect: + serializedVersion: 2 + x: 2912 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da7b9a7d3ded86b90800000000000000 + internalID: -7248298598815123539 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u829D" + rect: + serializedVersion: 2 + x: 2944 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a60a536a67f8e4c50800000000000000 + internalID: 6651411439430246506 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u829D\u7F8A\u8102\u7389\u5982\u610F" + rect: + serializedVersion: 2 + x: 2976 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ec887c8560746e60800000000000000 + internalID: 7954606423293856999 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u836F" + rect: + serializedVersion: 2 + x: 3008 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d58679079fcc52b20800000000000000 + internalID: 3109116489477089373 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u86EE\u79D8\u836F" + rect: + serializedVersion: 2 + x: 3040 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9852317560f63c080800000000000000 + internalID: -9168362343374838391 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u8725\u730E\u4EBA\u5140\u7A81\u5B50" + rect: + serializedVersion: 2 + x: 3072 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd1466dbda8ec13b0800000000000000 + internalID: -5540297608667971109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u9B42\u56FE\u817E" + rect: + serializedVersion: 2 + x: 3104 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83f52cd64f2332560800000000000000 + internalID: 7287724647410458424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u9B42\u5B9D\u73E0" + rect: + serializedVersion: 2 + x: 3136 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12ec4645e9b75e010800000000000000 + internalID: 1217515194224528929 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u9B42\u77F3" + rect: + serializedVersion: 2 + x: 3168 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b809b466d2ca12f90800000000000000 + internalID: -6980108636457824117 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u9B42\u788E\u7247" + rect: + serializedVersion: 2 + x: 3200 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b1b20862f7f6e680800000000000000 + internalID: -8726014607484603983 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u9B42\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 3232 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08f10d39e8dabe230800000000000000 + internalID: 3669217149300252544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7075\u9F9F\u4F69" + rect: + serializedVersion: 2 + x: 3264 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a00421c404ddb430800000000000000 + internalID: 3800426777455886503 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u707C\u6D41\u62F3\u5957" + rect: + serializedVersion: 2 + x: 3296 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0a5ef1b25b33c5a0800000000000000 + internalID: -6502288210633270774 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u707E\u5384\u5E7B\u5F71" + rect: + serializedVersion: 2 + x: 3328 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f66ede5c136d50610800000000000000 + internalID: 1586909952980412015 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u707F\u70C2\u7EDA\u7FBD\u5973\u88C53-\u62A4\u815532" + rect: + serializedVersion: 2 + x: 3360 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8525510b8ccfca3b0800000000000000 + internalID: -5499743106048372136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u707F\u70C2\u7EDA\u7FBD\u5973\u88C53-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 3392 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46eb2106dfd8730e0800000000000000 + internalID: -2290205766116524444 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u707F\u70C2\u7EDA\u7FBD\u5973\u88C53-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 3424 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 17759123981bb0aa0800000000000000 + internalID: -6193661659708827791 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u707F\u70C2\u7EDA\u7FBD\u5973\u88C53-\u978B32" + rect: + serializedVersion: 2 + x: 3456 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ddc628bb0be625a70800000000000000 + internalID: 8814229126056668381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u707F\u70C2\u7EDA\u7FBD\u7537\u88C5-\u62A4\u815532" + rect: + serializedVersion: 2 + x: 3488 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5fb98aae47a2d6750800000000000000 + internalID: 6299738135402683381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u707F\u70C2\u7EDA\u7FBD\u7537\u88C5-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 3520 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20a894801ce12cbe0800000000000000 + internalID: -1458569514898060798 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u707F\u70C2\u7EDA\u7FBD\u7537\u88C5-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 3552 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0df94dc0fe3c5ae80800000000000000 + internalID: -8167906917686665264 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u707F\u70C2\u7EDA\u7FBD\u7537\u88C5-\u978B32" + rect: + serializedVersion: 2 + x: 3584 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90323542cf3decc80800000000000000 + internalID: -8300463983302597879 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u708E\u51B0\u7FC5\u5C0F" + rect: + serializedVersion: 2 + x: 3616 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 385308361bdfec930800000000000000 + internalID: 4165545643684672899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u708E\u51FB\u94F3" + rect: + serializedVersion: 2 + x: 3648 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12a4bd8bb4af55810800000000000000 + internalID: 1753582833061546529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u708E\u5239\u94F3" + rect: + serializedVersion: 2 + x: 3680 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d05e1e3a253d5d7f0800000000000000 + internalID: -588331824411712243 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u708E\u706D\u94F3" + rect: + serializedVersion: 2 + x: 3712 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a88859d6b3a550f80800000000000000 + internalID: -8141001540114216822 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u708E\u7075\u94F3" + rect: + serializedVersion: 2 + x: 3744 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 658ec43904301fc20800000000000000 + internalID: 3238373182940178518 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u708E\u707C\u94F3" + rect: + serializedVersion: 2 + x: 3776 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6f3444f7da2053270800000000000000 + internalID: 8229486838277227510 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u708E\u70C8\u94F3" + rect: + serializedVersion: 2 + x: 3808 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 894c66c27767e5520800000000000000 + internalID: 2692719881432253592 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u708E\u7206\u5E7B\u5F71" + rect: + serializedVersion: 2 + x: 3840 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d21376c69f37cced0800000000000000 + internalID: -2392409786937822931 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u708E\u7206\u94F3" + rect: + serializedVersion: 2 + x: 3872 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52c55d300b7e58890800000000000000 + internalID: -7456298864877413339 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u708E\u7CBE" + rect: + serializedVersion: 2 + x: 3904 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1f92e239c8f4fe80800000000000000 + internalID: -8145612282980557026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u708E\u9B42\u94F3" + rect: + serializedVersion: 2 + x: 3936 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c89936ca52ebc310800000000000000 + internalID: 1426482586493491397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u708E\u9F99\u94F3" + rect: + serializedVersion: 2 + x: 3968 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b30ecc44db4285290800000000000000 + internalID: -7901525150899838917 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 4000 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7898e42b8e60a36c0800000000000000 + internalID: -4163007309056931449 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u4E0A\u8863\u7EFF" + rect: + serializedVersion: 2 + x: 4032 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c465afdca73a15550800000000000000 + internalID: 6147874714174510668 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 4064 + y: 2784 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 499ce28989eabd3e0800000000000000 + internalID: -2027835236788811372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 0 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e719a04612f2b1bf0800000000000000 + internalID: -352636325359611522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u62A4\u8155\u7EFF" + rect: + serializedVersion: 2 + x: 32 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5db704e1e6d975b0800000000000000 + internalID: -5370024814980907684 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 64 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 31ba5ea3904032dd0800000000000000 + internalID: -2512159729453257965 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u88E4\u5B50\u7EFF" + rect: + serializedVersion: 2 + x: 96 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee381893601f3f640800000000000000 + internalID: 5112695011032531950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 128 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c2f90c10082d8060800000000000000 + internalID: 6957260980292809410 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u978B\u5B50\u7EFF" + rect: + serializedVersion: 2 + x: 160 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee0251ad60085a690800000000000000 + internalID: -7591520829946126098 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70B9\u94A2\u67AA" + rect: + serializedVersion: 2 + x: 192 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f7dc80697f38e830800000000000000 + internalID: 4100597251264272373 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BC\u4E39\u7089" + rect: + serializedVersion: 2 + x: 224 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c862005dba51f9300800000000000000 + internalID: 260951131167925900 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BC\u4E39\u7089_2" + rect: + serializedVersion: 2 + x: 256 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62250a7083534e0a0800000000000000 + internalID: -6853294218188664282 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BC\u4E39\u7089_3" + rect: + serializedVersion: 2 + x: 288 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c3bea146e240af20800000000000000 + internalID: 3431816472768197572 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BC\u72F1\u4E4B\u706B" + rect: + serializedVersion: 2 + x: 320 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dba46f7d661e1a6f0800000000000000 + internalID: -675010637302707523 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BC\u72F1\u817F\u7532" + rect: + serializedVersion: 2 + x: 352 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58d750779f615e7e0800000000000000 + internalID: -1736956820581941883 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BC\u72F1\u8896\u7532" + rect: + serializedVersion: 2 + x: 384 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 006ab0493fcb560e0800000000000000 + internalID: -2277206282219051520 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BC\u72F1\u91D1\u7532" + rect: + serializedVersion: 2 + x: 416 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc6100dcd68da06b0800000000000000 + internalID: -5329209242937190708 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BC\u72F1\u9774" + rect: + serializedVersion: 2 + x: 448 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a22cf69e066708fd0800000000000000 + internalID: -2341741647627304406 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BC\u96F7\u957F\u65A7" + rect: + serializedVersion: 2 + x: 480 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c3ad3c7e608db2a0800000000000000 + internalID: -6720073856947739711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BD\u5929\u51E4\u51F0" + rect: + serializedVersion: 2 + x: 512 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8061326a431750120800000000000000 + internalID: 2379432449074730504 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BD\u5929\u6212" + rect: + serializedVersion: 2 + x: 544 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ecac42c79ffdafb0800000000000000 + internalID: -4634767414229422876 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BD\u5CA9\u788E\u7247" + rect: + serializedVersion: 2 + x: 576 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bd9ea7b7a2e2baf0800000000000000 + internalID: -381993808403980878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BD\u6012\u591C\u53C9" + rect: + serializedVersion: 2 + x: 608 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a0c5c4b2fa9b01e0800000000000000 + internalID: -2230518823226326877 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BD\u60C5\u5956\u676F2015" + rect: + serializedVersion: 2 + x: 640 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 31ca7f423b599e350800000000000000 + internalID: 6046528571373497363 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BD\u70C8\u62F3\u5957" + rect: + serializedVersion: 2 + x: 672 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d574f729d3f37670800000000000000 + internalID: 8535433832801007065 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70BD\u7130\u9524" + rect: + serializedVersion: 2 + x: 704 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 158de38cf40f3f7f0800000000000000 + internalID: -579855701548017583 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70C1\u5149\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 736 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b6632aff0f2d7050800000000000000 + internalID: 5799843640790705841 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70C2\u94F6\u67AA" + rect: + serializedVersion: 2 + x: 768 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b6df6961e9fd7c90800000000000000 + internalID: -7170300285172066637 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70C8\u706B\u6050\u9E1F" + rect: + serializedVersion: 2 + x: 800 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2f6376aa946dd0b0800000000000000 + internalID: -5702290937800855764 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70C8\u708E\u6756" + rect: + serializedVersion: 2 + x: 832 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43638f6f81c272120800000000000000 + internalID: 2388926613077636660 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70C8\u708E\u73E0\u7C89" + rect: + serializedVersion: 2 + x: 864 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25b0e60617c6e7ab0800000000000000 + internalID: -5008446501384484014 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70C8\u7130\u4E4B\u5B50" + rect: + serializedVersion: 2 + x: 896 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab6cef0e7a80e3ed0800000000000000 + internalID: -2432497231606135110 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70C8\u7130\u5B9D\u73E0" + rect: + serializedVersion: 2 + x: 928 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea273375b85deddc0800000000000000 + internalID: -3612215056664399186 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70C8\u7EA2\u6C34\u7389" + rect: + serializedVersion: 2 + x: 960 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4909ec92a2662520800000000000000 + internalID: 2676935479075080524 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70C8\u7EA2\u98DE\u5251" + rect: + serializedVersion: 2 + x: 992 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cfc049515345f73a0800000000000000 + internalID: -6665516336513020676 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70DF\u6597" + rect: + serializedVersion: 2 + x: 1024 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a45c205166537a970800000000000000 + internalID: 8766033912255399242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70DF\u6C5F\u53E0\u5D82\u56FE" + rect: + serializedVersion: 2 + x: 1056 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f37a0d2ebb798a110800000000000000 + internalID: 1272433727952168767 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70DF\u7070" + rect: + serializedVersion: 2 + x: 1088 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91f50ed8599db7020800000000000000 + internalID: 2340703667702751001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70DF\u7164" + rect: + serializedVersion: 2 + x: 1120 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b11e0f3922868970800000000000000 + internalID: 8756829639131664820 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70DF\u82B1" + rect: + serializedVersion: 2 + x: 1152 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 534819882a54eaef0800000000000000 + internalID: -95061977749945291 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70DF\u82B11" + rect: + serializedVersion: 2 + x: 1184 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ba9140835c96c6a0800000000000000 + internalID: -6429279535576802636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70DF\u888B" + rect: + serializedVersion: 2 + x: 1216 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad626c88caef62570800000000000000 + internalID: 8441714568535090906 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70E4\u597D\u7684\u8089" + rect: + serializedVersion: 2 + x: 1248 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 515b2e42069c50090800000000000000 + internalID: -8068821742591494891 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70E4\u9C7C" + rect: + serializedVersion: 2 + x: 1280 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a623036769da18680800000000000000 + internalID: -8754525338891963798 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70E7\u706B\u68CD" + rect: + serializedVersion: 2 + x: 1312 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b84a2f9a91069820800000000000000 + internalID: 2924526771630655672 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u70E7\u997C\u5587\u53ED\u9053\u5177" + rect: + serializedVersion: 2 + x: 1344 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34a8280b0997484b0800000000000000 + internalID: -5439088787613119933 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7115\u8840\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1376 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f53bf9063caf645a0800000000000000 + internalID: -6537262092035050657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u711A\u5929\u4EE4" + rect: + serializedVersion: 2 + x: 1408 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8875ab9a1012c5a0800000000000000 + internalID: -6502617205503068022 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u711A\u5929\u6212" + rect: + serializedVersion: 2 + x: 1440 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f47902652e9b305a0800000000000000 + internalID: -6556192250762586289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u711A\u6BC1\u7684\u65D7\u5E1C" + rect: + serializedVersion: 2 + x: 1472 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75a34b7a18d422980800000000000000 + internalID: -8565198322045535657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u711A\u9633\u8361\u5929\u5C60\u8D66" + rect: + serializedVersion: 2 + x: 1504 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 332f0555bf9cd8290800000000000000 + internalID: -7886425291150527949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u711A\u9633\u8361\u5929\u5FA1\u884C" + rect: + serializedVersion: 2 + x: 1536 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70e98bfc1750a5b30800000000000000 + internalID: 4276736782516133383 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u711A\u9633\u8C79\u5143\u9B42" + rect: + serializedVersion: 2 + x: 1568 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d22bbc003847d9eb0800000000000000 + internalID: -4711481529156783571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7130\u5149\u5F39" + rect: + serializedVersion: 2 + x: 1600 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b8df2348188117c0800000000000000 + internalID: -4102348147770009419 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u715E\u7075\u9B3C\u5934\u9524" + rect: + serializedVersion: 2 + x: 1632 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd7690f29b42e0df0800000000000000 + internalID: -212191754663139365 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7164\u6C14\u706F" + rect: + serializedVersion: 2 + x: 1664 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1ba0fa05e3dc9480800000000000000 + internalID: -8890998583651685603 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7164\u7C89" + rect: + serializedVersion: 2 + x: 1696 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3af54786f7fae0410800000000000000 + internalID: 1445285492180672419 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u716E\u9F99\u5DEB\u5E08\u5C0F\u5DF4\u5C14\u7F55" + rect: + serializedVersion: 2 + x: 1728 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 160e10de8e8261bd0800000000000000 + internalID: -2659893549041852319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u718A\u5587\u53ED" + rect: + serializedVersion: 2 + x: 1760 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c158b03a135c9ae0800000000000000 + internalID: -1541265600515911227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u718A\u5E7C\u5E74" + rect: + serializedVersion: 2 + x: 1792 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79e4e4a01c238cc60800000000000000 + internalID: 7838570956121329303 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u718A\u5E7C\u5E74amd" + rect: + serializedVersion: 2 + x: 1824 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1720b6c4fb5be170800000000000000 + internalID: 8208755852676441885 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u718A\u6210\u5E74" + rect: + serializedVersion: 2 + x: 1856 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6844f6e11cb986e70800000000000000 + internalID: 9108701500098430086 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u718A\u732B\u9A91\u5BA0" + rect: + serializedVersion: 2 + x: 1888 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5023c50d10e319690800000000000000 + internalID: -7597222918885723643 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7194\u5CA9\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1920 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67d407463c1bad830800000000000000 + internalID: 4096782263808707958 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7194\u5CA9\u7532\u7247" + rect: + serializedVersion: 2 + x: 1952 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a36419b16ac6d190800000000000000 + internalID: -7937934772128160857 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7194\u5CA9\u7ED3\u6676" + rect: + serializedVersion: 2 + x: 1984 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a07cef0b2e385930800000000000000 + internalID: 4132121012784099489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7194\u7130\u4E4B\u6838" + rect: + serializedVersion: 2 + x: 2016 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4cc197dfae599ea90800000000000000 + internalID: -7284126085787607868 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u71A0\u661F\u4E89\u8F89" + rect: + serializedVersion: 2 + x: 2048 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c63f19d9397a396a0800000000000000 + internalID: -6443622389391428756 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u71A0\u661F\u6CB3\u540A\u6865" + rect: + serializedVersion: 2 + x: 2080 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b86efb76b9cd12d80800000000000000 + internalID: -8277092080111589749 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u71C3\u60C5\u7075\u682A" + rect: + serializedVersion: 2 + x: 2112 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 118ecfbe498916ec0800000000000000 + internalID: -3575408863773661167 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u71C3\u70E7\u4E4B\u5FC3" + rect: + serializedVersion: 2 + x: 2144 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5752fd3d8337679f0800000000000000 + internalID: -471062423103658635 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u71C3\u70E7\u7684\u5389\u707C\u9B3C\u4E27\u773C\u7403" + rect: + serializedVersion: 2 + x: 2176 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cce06acdd03fe5810800000000000000 + internalID: 1756108145583066828 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u71D5\u751F\u7684\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2208 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b712f9b0f02fd3c00800000000000000 + internalID: 882127248467894651 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u71D5\u77F3\u5760\u5B50" + rect: + serializedVersion: 2 + x: 2240 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6b3694b4de6c4ac0800000000000000 + internalID: -3869596119976232086 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u71D5\u7A9D" + rect: + serializedVersion: 2 + x: 2272 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a594ce0996e8c040800000000000000 + internalID: 4668234558821668262 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u71D5\u9A8F\u5343\u91D1" + rect: + serializedVersion: 2 + x: 2304 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07c4d22d062627cd0800000000000000 + internalID: -2561877070037824400 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7206\u70B8\u5934\u5957\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2336 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 971f461d821f9c550800000000000000 + internalID: 6181737121156755833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7206\u70B8\u5934\u5957\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2368 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9afb145dcbf6e62e0800000000000000 + internalID: -2130642716877275223 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7206\u70B8\u5934\u5957\u88C5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 2400 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7923818d0332e5010800000000000000 + internalID: 1179418845108515479 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7206\u70B8\u5934\u5957\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2432 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff496cf4e4729ace0800000000000000 + internalID: -1393539392395111169 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7206\u70B8\u5934\u5957\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2464 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5dbc904ccce43f7b0800000000000000 + internalID: -5191719304058778667 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7206\u7834\u62F3" + rect: + serializedVersion: 2 + x: 2496 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b7280b3db8901470800000000000000 + internalID: 8363352446533642167 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7206\u7AF91" + rect: + serializedVersion: 2 + x: 2528 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 858ccedd1d55e94b0800000000000000 + internalID: -5431809740702431144 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7206\u7AF92" + rect: + serializedVersion: 2 + x: 2560 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d23d50cc751c8410800000000000000 + internalID: 1480582003045511895 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7206\u7AF93" + rect: + serializedVersion: 2 + x: 2592 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1b66245613cb9cb0800000000000000 + internalID: -4856073272520447206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7206\u7AF94" + rect: + serializedVersion: 2 + x: 2624 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c47d7eca187aa910800000000000000 + internalID: 1849422653517821121 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7206\u7AF9\u559C\u5230" + rect: + serializedVersion: 2 + x: 2656 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ccc20064e8504a00800000000000000 + internalID: 738688076775345351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7206\u7AF9\u6765\u798F" + rect: + serializedVersion: 2 + x: 2688 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 945ae73bebef72270800000000000000 + internalID: 8225823339424163145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7206\u88C2\u5F39" + rect: + serializedVersion: 2 + x: 2720 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be5ceea2f60abba70800000000000000 + internalID: 8843838692594206187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7206\u96F7\u957F\u9524" + rect: + serializedVersion: 2 + x: 2752 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 946edb178c85fdc10800000000000000 + internalID: 2080479170793432649 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7231\u4F60" + rect: + serializedVersion: 2 + x: 2784 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6f59bb93b1818e2a0800000000000000 + internalID: -6708085139756575242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7231\u4F60\u4E00\u68D2\u69CC" + rect: + serializedVersion: 2 + x: 2816 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d554c1016fef6350800000000000000 + internalID: 6012287227483411923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7231\u4F60\u6CA1\u5546\u91CF" + rect: + serializedVersion: 2 + x: 2848 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e9b2680d4938579b0800000000000000 + internalID: -5083011929240884322 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7231\u4F60\u751F\u751F\u4E16\u4E16" + rect: + serializedVersion: 2 + x: 2880 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 360f9bdfa4df8e6c0800000000000000 + internalID: -4113759761076719517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7231\u5982\u6F6E\u6C34" + rect: + serializedVersion: 2 + x: 2912 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a0b3a30e946d6030800000000000000 + internalID: 3489555916110672035 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7231\u5FC3\u6C14\u7403" + rect: + serializedVersion: 2 + x: 2944 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c048ae3adfe160170800000000000000 + internalID: 8144231050871735308 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7231\u83B2\u8BF4" + rect: + serializedVersion: 2 + x: 2976 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29cd903860caede80800000000000000 + internalID: -8151889131525776238 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7259\u5237" + rect: + serializedVersion: 2 + x: 3008 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4a1b2402a1c7d650800000000000000 + internalID: 6257683108853389902 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u725B\u4EBA" + rect: + serializedVersion: 2 + x: 3040 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 17cdd3c5c6ddff4f0800000000000000 + internalID: -792671551920153487 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u725B\u6BDB\u97AD" + rect: + serializedVersion: 2 + x: 3072 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60ac6fff76ce00f20800000000000000 + internalID: 3386966851202763270 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u725B\u76AE\u5F13\u5F26" + rect: + serializedVersion: 2 + x: 3104 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 984bdbe4bfcbdd1b0800000000000000 + internalID: -5630136171599383415 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u725B\u76AE\u7EDE\u4E1D" + rect: + serializedVersion: 2 + x: 3136 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ee40fa8d7d538c20800000000000000 + internalID: 3207510153401224929 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u725B\u76AE\u8FDE\u63A5\u73AF" + rect: + serializedVersion: 2 + x: 3168 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edf2787466f4753f0800000000000000 + internalID: -912173098813935650 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u725B\u89D2\u6212" + rect: + serializedVersion: 2 + x: 3200 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bff2c0a80cc61d9c0800000000000000 + internalID: -3904219827747934213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u725B\u89D2\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3232 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 731d6c9724bef52f0800000000000000 + internalID: -981807523000037065 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u725B\u903C\u7684\u6212\u6307" + rect: + serializedVersion: 2 + x: 3264 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 156b40651c22bb920800000000000000 + internalID: 3007035389967119953 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u725B\u903C\u7684\u7269\u54C1\u793C\u76D2" + rect: + serializedVersion: 2 + x: 3296 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 192fada33a8949760800000000000000 + internalID: 7463758309294273169 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u725B\u903C\u7684\u8170\u5760" + rect: + serializedVersion: 2 + x: 3328 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 413c4a3bb0f754ec0800000000000000 + internalID: -3583318240268074220 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u725B\u90CE\u7EC7\u5973" + rect: + serializedVersion: 2 + x: 3360 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0663422d37c4d3080800000000000000 + internalID: -9206118002944887200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u725B\u9EC4" + rect: + serializedVersion: 2 + x: 3392 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e61779aafc33807d0800000000000000 + internalID: -2952052588728061586 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u725B\u9EC42" + rect: + serializedVersion: 2 + x: 3424 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20317747fcf2250c0800000000000000 + internalID: -4588552502278417662 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7261\u4E39" + rect: + serializedVersion: 2 + x: 3456 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77b33377913c66390800000000000000 + internalID: -7825352788368213129 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7261\u4E39\u677E\u96C0" + rect: + serializedVersion: 2 + x: 3488 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6a0cb261b28b3a00800000000000000 + internalID: 737326662382520938 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7267\u573A" + rect: + serializedVersion: 2 + x: 3520 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0b5ccfe86b82a1d0800000000000000 + internalID: -3340954690739479797 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7279\u4F9B\u7834\u7A7A\u4EE4" + rect: + serializedVersion: 2 + x: 3552 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8e6a89e2734f7f900800000000000000 + internalID: 718311183431018216 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7279\u5236\u58A8\u6C41" + rect: + serializedVersion: 2 + x: 3584 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 753db273879508670800000000000000 + internalID: 8538923266351027031 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7279\u6548\u72EC\u89D2\u517D" + rect: + serializedVersion: 2 + x: 3616 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9257f4c87b41ab860800000000000000 + internalID: 7546366904178275625 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3648 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4037d570c6f9029d0800000000000000 + internalID: -2801063681895599356 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3680 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 374d72535bed231b0800000000000000 + internalID: -5678231310298524557 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u5973\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3712 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cdac95d1a3fd39e90800000000000000 + internalID: -7020021953446950180 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3744 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11d795aeb5833be30800000000000000 + internalID: 4518016818607652113 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3776 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1cd7161ae843cd00800000000000000 + internalID: 991716513181850655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u7537\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 3808 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9eef08e207ba5160800000000000000 + internalID: 7015120592694144671 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3840 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e66210a33e7fa8580800000000000000 + internalID: -8823967964576274834 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u7537\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3872 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de2d27dce0644fc00800000000000000 + internalID: 933448052162876141 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3904 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d07f4d1dc80cdba0800000000000000 + internalID: -6062961321294466860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7279\u7B49\u5956" + rect: + serializedVersion: 2 + x: 3936 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13a68b65f631863a0800000000000000 + internalID: -6672061479032165839 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7280\u89D2" + rect: + serializedVersion: 2 + x: 3968 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: caf7046b4357c3630800000000000000 + internalID: 3908127445907177388 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7280\u89D2\u6212" + rect: + serializedVersion: 2 + x: 4000 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55902f38c52aed800800000000000000 + internalID: 639126715367557461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72B0\u72F3 \u526F\u672C" + rect: + serializedVersion: 2 + x: 4032 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 175b46e8376861770800000000000000 + internalID: 8581193970869384561 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72C2\u5203\u7B26" + rect: + serializedVersion: 2 + x: 4064 + y: 2752 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e66ea1486fed0fd00800000000000000 + internalID: 1004547867263297134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72C2\u6B22\u8282\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 0 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4020220e11b9bee0800000000000000 + internalID: -1244769079548436405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72C2\u6B22\u8282\u5973\u88C5\u4E0A\u8EAB" + rect: + serializedVersion: 2 + x: 32 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a94a9c671fa4f0260800000000000000 + internalID: 7065948741308097690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72C2\u6B22\u8282\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 64 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c701a7f205fde3340800000000000000 + internalID: 4845555784584138876 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72C2\u6B22\u8282\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 96 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 031d83ebaa03700a0800000000000000 + internalID: -6915505192910139088 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72C2\u6B22\u8282\u7537\u88C5\u4E0A\u8EAB" + rect: + serializedVersion: 2 + x: 128 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b0286dba192a03e0800000000000000 + internalID: -2086810282509197134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72C2\u6B22\u8282\u7537\u88C5\u624B\u5957" + rect: + serializedVersion: 2 + x: 160 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 306a0e47787c88610800000000000000 + internalID: 1623767050262455811 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72C2\u6B22\u8282\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 192 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a75c3511a32ea3ba0800000000000000 + internalID: -6108321205547973254 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72C2\u6B22\u8282\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 224 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9619cb9bef1233b60800000000000000 + internalID: 7724555163792085353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72C2\u6F9C\u5200" + rect: + serializedVersion: 2 + x: 256 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edcdbf2f089beb950800000000000000 + internalID: 6466810078434155742 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72C2\u72EE\u6218\u65A7" + rect: + serializedVersion: 2 + x: 288 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d47496c6a92a61ca0800000000000000 + internalID: -6046466665570810035 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72C2\u9B54\u5200" + rect: + serializedVersion: 2 + x: 320 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e78c5014d934e7580800000000000000 + internalID: -8827543876919768962 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72C4\u9F99\u5EB7\u8138\u8C31" + rect: + serializedVersion: 2 + x: 352 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b97890249ad053270800000000000000 + internalID: 8229498914698004379 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72D0\u72F8\u5587\u53ED" + rect: + serializedVersion: 2 + x: 384 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b0b0db63788c2590800000000000000 + internalID: -7697627633771564872 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72D7\u5708" + rect: + serializedVersion: 2 + x: 416 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ae880ee6e99b9ab0800000000000000 + internalID: -5000233744149737817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72D7\u5E7C\u5E74" + rect: + serializedVersion: 2 + x: 448 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98f479d5e69af1980800000000000000 + internalID: -8565941674753699959 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72D7\u72D7\u5587\u53ED" + rect: + serializedVersion: 2 + x: 480 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4182cb5e9b4bc3480800000000000000 + internalID: -8918054451584161772 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72EC\u5C71\u7389\u4F69" + rect: + serializedVersion: 2 + x: 512 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9cb28d8d5d0b0e680800000000000000 + internalID: -8727781645331452983 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72EC\u6B65\u5200" + rect: + serializedVersion: 2 + x: 544 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b07cabfa189293500800000000000000 + internalID: 376377680837920523 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72EC\u89D2\u517D\u9ED1" + rect: + serializedVersion: 2 + x: 576 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39ddab5473646e2f0800000000000000 + internalID: -943989868680520301 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72EC\u89D2\u96F7\u5C0A\u7684\u9057\u4FE1" + rect: + serializedVersion: 2 + x: 608 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: afad0de07ab85a2b0800000000000000 + internalID: -5573895414176752902 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72EE\u543C\u91CD\u7532" + rect: + serializedVersion: 2 + x: 640 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d4cd9ac91cc95340800000000000000 + internalID: 4853134484614005972 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72EE\u5B50" + rect: + serializedVersion: 2 + x: 672 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b0ea614cfc738520800000000000000 + internalID: 2703141624223555764 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72EE\u5B50\u9C7C" + rect: + serializedVersion: 2 + x: 704 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c21d51db50bc37a0800000000000000 + internalID: -6396043462371896632 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72EE\u5FC3\u9879\u94FE" + rect: + serializedVersion: 2 + x: 736 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 482e9a86e968804b0800000000000000 + internalID: -5473977332149919100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72EE\u775B" + rect: + serializedVersion: 2 + x: 768 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2889ec73f41714650800000000000000 + internalID: 6215373545800636546 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72EE\u9E6B" + rect: + serializedVersion: 2 + x: 800 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5286b9445786def0800000000000000 + internalID: -83730746976075171 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72EE\u9E6B32" + rect: + serializedVersion: 2 + x: 832 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9ee41fd9c7bcaad0800000000000000 + internalID: -2689572799788028259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72FC\u4EBA\u4FE1\u7269" + rect: + serializedVersion: 2 + x: 864 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7cf962bd35a7a8f0800000000000000 + internalID: -529272746787865476 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72FC\u65CF\u5BC6\u4EE4" + rect: + serializedVersion: 2 + x: 896 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7c0e6e35ac8e28e0800000000000000 + internalID: -1716279766636688259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72FC\u65CF\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 928 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e1b3115c5a2f63a0800000000000000 + internalID: -6670065947126812187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72FC\u65CF\u706B\u70AC" + rect: + serializedVersion: 2 + x: 960 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82b9f487e0e4d1e20800000000000000 + internalID: 3322897924124285736 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72FC\u722A" + rect: + serializedVersion: 2 + x: 992 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32bc00fbaea8a2a90800000000000000 + internalID: -7337899902015321309 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72FC\u7259\u68D2" + rect: + serializedVersion: 2 + x: 1024 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac35de31d7ea33530800000000000000 + internalID: 3833599560050889674 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72FC\u7259\u7BAD" + rect: + serializedVersion: 2 + x: 1056 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c2af264393a3c230800000000000000 + internalID: 3657947175288021704 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72FC\u7259\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1088 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c84a07aecee83120800000000000000 + internalID: 2393925773280561352 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72FC\u76AE\u5E3D\u6A90" + rect: + serializedVersion: 2 + x: 1120 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5fa5a240c1ed3f740800000000000000 + internalID: 5184731807943908085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72FC\u76AE\u62A4\u5FC3\u955C\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 1152 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d1783d82d905e8f0800000000000000 + internalID: -511992182719614508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72FC\u76AE\u62A4\u8155\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 1184 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cfdceaadb793b75f0800000000000000 + internalID: -757948908169146884 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72FC\u76AE\u62A4\u819D\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 1216 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0ab54bf875334880800000000000000 + internalID: -8627993667383739893 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72FC\u76AE\u62A4\u8E1D\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 1248 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 270675e656b089f20800000000000000 + internalID: 3429503646513455218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u72FC\u76AE\u98D8\u5E26\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 1280 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9e319797f26a75f0800000000000000 + internalID: -758184771719184741 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u730E\u53C9" + rect: + serializedVersion: 2 + x: 1312 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 507eb5d05b3604ba0800000000000000 + internalID: -6106771465450035451 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u731B\u6BD2\u6DB2" + rect: + serializedVersion: 2 + x: 1344 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cdeb1e1ab7b7a3c70800000000000000 + internalID: 8951602980279402204 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u731E\u7301\u5C71\u732B" + rect: + serializedVersion: 2 + x: 1376 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3437f451586bb2d80800000000000000 + internalID: -8274319207658720445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u732A\u5934\u5587\u53ED\u9053\u5177" + rect: + serializedVersion: 2 + x: 1408 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8974e6758012e19a0800000000000000 + internalID: -6260530112288110696 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u732A\u6210\u5E74" + rect: + serializedVersion: 2 + x: 1440 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cccedd47d8be2e020800000000000000 + internalID: 2369715346733919436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u732B\u5934\u9E70" + rect: + serializedVersion: 2 + x: 1472 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8792a7cb75963a550800000000000000 + internalID: 6170891739972905336 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u732B\u5E7C\u5E74" + rect: + serializedVersion: 2 + x: 1504 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b9be2161b41e0140800000000000000 + internalID: 4687707014211484080 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u732B\u732B\u5587\u53ED" + rect: + serializedVersion: 2 + x: 1536 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: efce89357c28c9890800000000000000 + internalID: -7449935890965009154 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u732B\u773C\u6212" + rect: + serializedVersion: 2 + x: 1568 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b849f78af5421c1f0800000000000000 + internalID: -1026499246796335989 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u732B\u773C\u77F3\u6212\u6307" + rect: + serializedVersion: 2 + x: 1600 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5b90ebaa1b10ba20800000000000000 + internalID: 3075988346860772187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7334\u5B50\u5587\u53ED" + rect: + serializedVersion: 2 + x: 1632 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e096f8819cd31400800000000000000 + internalID: 293820918335443168 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7334\u5B50\u5750\u9A91" + rect: + serializedVersion: 2 + x: 1664 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83660b92dc6c242a0800000000000000 + internalID: -6754617906632301000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7334\u5E74\u9526\u56CA" + rect: + serializedVersion: 2 + x: 1696 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11dcdcd54c11c01b0800000000000000 + internalID: -5689152694190748399 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7360\u7259" + rect: + serializedVersion: 2 + x: 1728 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6cc9351ea81ca7360800000000000000 + internalID: 7168254559143566534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7360\u7259\u72FC" + rect: + serializedVersion: 2 + x: 1760 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1404b6f32a7e8f840800000000000000 + internalID: 5258207248989765697 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u5149\u98DE\u9B45" + rect: + serializedVersion: 2 + x: 1792 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f4574c4d9bdcbae0800000000000000 + internalID: -1532108304576719630 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u51A5\u73E0" + rect: + serializedVersion: 2 + x: 1824 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3481cb9475d9645b0800000000000000 + internalID: -5384443306250069949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u51A5\u957F\u9524" + rect: + serializedVersion: 2 + x: 1856 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 858146b1ce64e9e50800000000000000 + internalID: 6817964865771280472 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u51B0\u7ED3\u6676" + rect: + serializedVersion: 2 + x: 1888 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0381956886810d380800000000000000 + internalID: -8948625622375524304 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u51B0\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1920 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9441532032cd88ab0800000000000000 + internalID: -5005508942903307191 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u547D\u5305" + rect: + serializedVersion: 2 + x: 1952 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67265f461d10bd450800000000000000 + internalID: 6114482917939176054 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u5929\u4E3932" + rect: + serializedVersion: 2 + x: 1984 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6870c807aa09330f0800000000000000 + internalID: -1138407219087538298 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u5929\u6212" + rect: + serializedVersion: 2 + x: 2016 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 95418a2b83ee383c0800000000000000 + internalID: -4358378087081569191 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u5929\u6B8B\u9875" + rect: + serializedVersion: 2 + x: 2048 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c4d79d4fb676bc10800000000000000 + internalID: 2068971642835948737 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u5F71" + rect: + serializedVersion: 2 + x: 2080 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b33bd968039260af0800000000000000 + internalID: -430611425973652677 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u5F71\u9000\u9B54\u5251" + rect: + serializedVersion: 2 + x: 2112 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eac5746814dbd4620800000000000000 + internalID: 2760070235771329710 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u5FB7\u4E4B\u5251" + rect: + serializedVersion: 2 + x: 2144 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c45d8e960d1e4ece0800000000000000 + internalID: -1376727300822215348 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u5FB7\u53CC\u5251" + rect: + serializedVersion: 2 + x: 2176 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b0fb5e62864c3c40800000000000000 + internalID: 5493343171496374454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6676\u6756" + rect: + serializedVersion: 2 + x: 2208 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e93304d6c6586400800000000000000 + internalID: 317599185690114537 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u690E\u4E4B\u5F13" + rect: + serializedVersion: 2 + x: 2240 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7af6b18d04fde850800000000000000 + internalID: 6408046183666088574 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u690E\u4E4B\u6756" + rect: + serializedVersion: 2 + x: 2272 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 480343290e5d21860800000000000000 + internalID: 7499291490027581572 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u5217" + rect: + serializedVersion: 2 + x: 2304 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f178e1df0aebd650800000000000000 + internalID: 6258853460828516853 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u5730" + rect: + serializedVersion: 2 + x: 2336 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d6a103cd32593d80800000000000000 + internalID: -8270488815471057191 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u5929" + rect: + serializedVersion: 2 + x: 2368 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d35f87eb728f23cf0800000000000000 + internalID: -273883777733167811 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u5B87" + rect: + serializedVersion: 2 + x: 2400 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 529fbe436c94b3280800000000000000 + internalID: -9062568709512759003 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u5BBF" + rect: + serializedVersion: 2 + x: 2432 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 18874b2b7879cd6c0800000000000000 + internalID: -4117249350248925055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u5E99" + rect: + serializedVersion: 2 + x: 2464 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f25a45b0e87912590800000000000000 + internalID: -7700707251495590609 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u5F20" + rect: + serializedVersion: 2 + x: 2496 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 693da49fba1ee9c90800000000000000 + internalID: -7161038228734422122 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u65E5" + rect: + serializedVersion: 2 + x: 2528 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6754a22a64f48870800000000000000 + internalID: 8684334718162065258 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u6603" + rect: + serializedVersion: 2 + x: 2560 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a8e70cf1521b6b50800000000000000 + internalID: 6587379023289510051 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u6708" + rect: + serializedVersion: 2 + x: 2592 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b8b3042672752760800000000000000 + internalID: 7432472611780802740 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u6D2A" + rect: + serializedVersion: 2 + x: 2624 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af8beb06f554686e0800000000000000 + internalID: -1835703522159576838 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u76C8" + rect: + serializedVersion: 2 + x: 2656 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe04f617020bcd860800000000000000 + internalID: 7556107928209408239 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u8352" + rect: + serializedVersion: 2 + x: 2688 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b482580845470be0800000000000000 + internalID: -1511162974279924560 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u8FB0" + rect: + serializedVersion: 2 + x: 2720 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e078ebfed332e1760800000000000000 + internalID: 7430415184130115342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u4E4B\u9EC4" + rect: + serializedVersion: 2 + x: 2752 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7930f05966dd4d310800000000000000 + internalID: 1429010414440481687 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u523B\u5370" + rect: + serializedVersion: 2 + x: 2784 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70f561025369a96b0800000000000000 + internalID: -5288749657477456121 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u6B66\u78D0\u73BA" + rect: + serializedVersion: 2 + x: 2816 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0ef7d25a52a9b2c0800000000000000 + internalID: -4415319450839417329 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u706B\u98DE\u525132" + rect: + serializedVersion: 2 + x: 2848 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbb49e7d2221ff960800000000000000 + internalID: 7637843433904229309 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u7075\u6728" + rect: + serializedVersion: 2 + x: 2880 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 258c12de6fdee4e70800000000000000 + internalID: 9101473541758502994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u7532\u7B26" + rect: + serializedVersion: 2 + x: 2912 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 740bd61bda3ca7230800000000000000 + internalID: 3637434799828611143 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u771F\u5251" + rect: + serializedVersion: 2 + x: 2944 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 35847fcfb834b6840800000000000000 + internalID: 5218338861762431059 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u78F7\u7BAD" + rect: + serializedVersion: 2 + x: 2976 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4860722370c7fe90800000000000000 + internalID: -6991908295737841585 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u7ED2\u72EC\u89D2\u4ED9\u7684\u9AA8\u9AD3" + rect: + serializedVersion: 2 + x: 3008 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b6cd969272615d30800000000000000 + internalID: 4418420953719883446 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u8352\u4E4B\u8840" + rect: + serializedVersion: 2 + x: 3040 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b8df445577216f90800000000000000 + internalID: -6962240164058900304 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u8352\u8840\u9B42" + rect: + serializedVersion: 2 + x: 3072 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25413b767787246a0800000000000000 + internalID: -6466473660714380206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u864E" + rect: + serializedVersion: 2 + x: 3104 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 76a63b0a59604f070800000000000000 + internalID: 8139137666281335399 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u86C7\u73E0" + rect: + serializedVersion: 2 + x: 3136 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d2f39fe64eb776610800000000000000 + internalID: 1614395212480200493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u91D1\u6B8B\u9875" + rect: + serializedVersion: 2 + x: 3168 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 440957668c96a1db0800000000000000 + internalID: -4820424141713338300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u9274\u4E39" + rect: + serializedVersion: 2 + x: 3200 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62a61fc9e92e426b0800000000000000 + internalID: -5321879688779306458 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u9274\u4E39\u793C\u5305" + rect: + serializedVersion: 2 + x: 3232 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f8c4c388e5fb4920800000000000000 + internalID: 2975742357800274168 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u94A2\u62F3\u5957" + rect: + serializedVersion: 2 + x: 3264 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dcb8102a459bc3950800000000000000 + internalID: 6430218141124627405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u94C1\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 3296 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a74a789b448ae0160800000000000000 + internalID: 6993712284476875898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u94C1\u5757" + rect: + serializedVersion: 2 + x: 3328 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 273822403e289c520800000000000000 + internalID: 2722851361260733298 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u94C1\u5F29\u673A" + rect: + serializedVersion: 2 + x: 3360 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d81d4bcb612892d80800000000000000 + internalID: -8274939806149717619 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u94C1\u65B9\u575E" + rect: + serializedVersion: 2 + x: 3392 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e5f88d5d5856a44f0800000000000000 + internalID: -843750354685751458 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u94C1\u77F3" + rect: + serializedVersion: 2 + x: 3424 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2e8dbc4193173350800000000000000 + internalID: 5996282943645781551 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u94C1\u7CBE\u91D1" + rect: + serializedVersion: 2 + x: 3456 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e540816811914e720800000000000000 + internalID: 2874450025224078430 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u94C1\u836F\u5BA4" + rect: + serializedVersion: 2 + x: 3488 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 95bb1df9ded10ed10800000000000000 + internalID: 2152753528308874073 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u94C1\u91CD\u9524" + rect: + serializedVersion: 2 + x: 3520 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92c0afed63b28d130800000000000000 + internalID: 3591668217497127977 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u94C1\u952D" + rect: + serializedVersion: 2 + x: 3552 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee6431f7d3d86aab0800000000000000 + internalID: -4997151441256495378 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u9619\u5947\u67A2\u73AF\u6CD5\u7CFB" + rect: + serializedVersion: 2 + x: 3584 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54e6637d48e2543a0800000000000000 + internalID: -6681883324053033403 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u9619\u5947\u67A2\u73AF\u7269\u7406" + rect: + serializedVersion: 2 + x: 3616 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85f58f98ad2092410800000000000000 + internalID: 1452695492444577624 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u9634\u5200" + rect: + serializedVersion: 2 + x: 3648 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e53e5d9075c79b0b0800000000000000 + internalID: -5712397939073752226 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u9B42\u5305" + rect: + serializedVersion: 2 + x: 3680 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3c4cfcebe8a5b1e0800000000000000 + internalID: -2182652713144398789 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u9EC4\u5C65" + rect: + serializedVersion: 2 + x: 3712 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83ae81cc2d96d5c10800000000000000 + internalID: 2043906159984306744 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u9EC4\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3744 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 040baae7b4181e4e0800000000000000 + internalID: -1954138602054438848 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u9EC4\u888D" + rect: + serializedVersion: 2 + x: 3776 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c96598a105a56fd0800000000000000 + internalID: -2349290204061931066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7384\u9EC4\u88E4" + rect: + serializedVersion: 2 + x: 3808 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8eca48aa5527e870800000000000000 + internalID: 8711973075472273035 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u4F69\u8170\u997012" + rect: + serializedVersion: 2 + x: 3840 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc4321b7df3fc01e0800000000000000 + internalID: -2230139445438171957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u4F69\u8170\u997013" + rect: + serializedVersion: 2 + x: 3872 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 112a9b5d653134780800000000000000 + internalID: -8700088791475838447 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u5154\u5448\u7965" + rect: + serializedVersion: 2 + x: 3904 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3cec91a6c7cce710800000000000000 + internalID: 1723972413304925246 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u5154\u9001\u798F" + rect: + serializedVersion: 2 + x: 3936 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 477af2b91111f5810800000000000000 + internalID: 1756141147013490548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u5200\u950B\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3968 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2df1a7e8a2b7daf60800000000000000 + internalID: 8047223531890155474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u5251\u5203\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 4000 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a7b1bce3d75fcd70800000000000000 + internalID: 9065561142640883620 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u5802\u89D0\u5323" + rect: + serializedVersion: 2 + x: 4032 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dcb80b96e5fa632b0800000000000000 + internalID: -5605099866181039155 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u58F6\u9879\u94FE" + rect: + serializedVersion: 2 + x: 4064 + y: 2720 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: abe4249f10f07e860800000000000000 + internalID: 7559027000715923130 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u5982\u610F" + rect: + serializedVersion: 2 + x: 0 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6012e9113e460d780800000000000000 + internalID: -8660311157017534202 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u5B50\u6BCD\u65A7\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 32 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 397ec96938ecbf720800000000000000 + internalID: 2881123451196467091 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u5B50\u6BCD\u9524\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 64 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd98fd7b55d9ab9f0800000000000000 + internalID: -451875821114652195 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u6212" + rect: + serializedVersion: 2 + x: 96 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1223d29e9cec1ed0800000000000000 + internalID: -2441816732129353190 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u6307\u73AF\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 128 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff228dc0e3a5a0cf0800000000000000 + internalID: -285316403834641665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u65A7\u5203\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 160 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 851bf0b38a53ac370800000000000000 + internalID: 8343540256318927192 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u6843\u80F8\u6263" + rect: + serializedVersion: 2 + x: 192 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e16eae848c35bf9a0800000000000000 + internalID: -6198268342463437282 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u6E05\u5361" + rect: + serializedVersion: 2 + x: 224 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74b511c8fc5808850800000000000000 + internalID: 6377244198811294535 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u7483\u68B5\u6676" + rect: + serializedVersion: 2 + x: 256 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8f2861bcd50ac130800000000000000 + internalID: 3587686498581360522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u77F3\u739B\u7459\u6212\u630712" + rect: + serializedVersion: 2 + x: 288 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6e295945ef678ac0800000000000000 + internalID: -3852987925623394707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u77F3\u739B\u7459\u6212\u630713" + rect: + serializedVersion: 2 + x: 320 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d84ad18d0351aafa0800000000000000 + internalID: -5788791071502916467 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u7B1B" + rect: + serializedVersion: 2 + x: 352 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2361c2cb5c9b8a20800000000000000 + internalID: 3065715889279165230 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u7C73\u53CC\u624B\u957F" + rect: + serializedVersion: 2 + x: 384 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4274b9b164be45e40800000000000000 + internalID: 5644394919345473316 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u81C2\u4EFB\u52A1\u5F00\u542F\u9053\u5177" + rect: + serializedVersion: 2 + x: 416 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae91787cac6842840800000000000000 + internalID: 5198428075381430762 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u81C2\u914D\u65B9\u5305\u88F9" + rect: + serializedVersion: 2 + x: 448 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37cc576097b9a5c70800000000000000 + internalID: 8960645352708754547 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u81C2\u914D\u65B9\u5305\u88F92" + rect: + serializedVersion: 2 + x: 480 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2c1de9a1e0cdf2d0800000000000000 + internalID: -3243224081185825746 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u81C2\u914D\u65B9\u5305\u88F93" + rect: + serializedVersion: 2 + x: 512 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5481307321b09070800000000000000 + internalID: 8111177694658528346 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u91C9\u76E5\u6D17\u76C6" + rect: + serializedVersion: 2 + x: 544 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dac975454809dd0b0800000000000000 + internalID: -5702242655156069203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u91D1\u521A\u6775\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 576 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7f187b29f1b8ea80800000000000000 + internalID: -8437298218144358531 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u9524\u5934\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 608 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 76de7023e173beed0800000000000000 + internalID: -2383750974934618777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u9AD3\u7BA1\u73E0\u9879\u94FE" + rect: + serializedVersion: 2 + x: 640 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3abbe05c55cc04320800000000000000 + internalID: 2540254858587323299 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u9E33\u9E2F\u5200\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 672 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a0584a405e7b6320800000000000000 + internalID: 2552272497144254632 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7389\u9E33\u9E2F\u5251\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 704 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9031f869125940910800000000000000 + internalID: 1802729722347459337 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B" + rect: + serializedVersion: 2 + x: 736 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12947099e2a745220800000000000000 + internalID: 2473736435887720737 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B\u4E8C\u529B\u7684\u4F20\u5BB6\u5B9D" + rect: + serializedVersion: 2 + x: 768 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d260bc8ca60cad90800000000000000 + internalID: -7085280775596121390 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B\u5927\u529B\u7684\u4F20\u5BB6\u5B9D" + rect: + serializedVersion: 2 + x: 800 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb1cc537147bb34f0800000000000000 + internalID: -847882613092990533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B\u5B50\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 832 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d6f4abb2cc6d4d10800000000000000 + internalID: 2111463383934236369 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B\u5B50\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 864 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4ee0b8d496eb4b70800000000000000 + internalID: 8884448216883457610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B\u5B50\u88C5\u978B" + rect: + serializedVersion: 2 + x: 896 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ec83ee2f449548d0800000000000000 + internalID: -2862718920314090268 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B\u5BB6\u7684\u4F20\u5BB6\u5B9D" + rect: + serializedVersion: 2 + x: 928 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 18924012bcbadf9c0800000000000000 + internalID: -3891765614057608831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B\u671D\u4E4B\u5FC3" + rect: + serializedVersion: 2 + x: 960 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d17b54e83d2e8d20800000000000000 + internalID: 3282610900772286933 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B\u8005\u4E4B\u51A0" + rect: + serializedVersion: 2 + x: 992 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d12de0a14a0ab6a0800000000000000 + internalID: -6432817840756284973 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B\u8005\u4E4B\u529B" + rect: + serializedVersion: 2 + x: 1024 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b113ef595bb9dd50800000000000000 + internalID: 6762642308008710583 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B\u8005\u4E4B\u6212" + rect: + serializedVersion: 2 + x: 1056 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c7290d7c6571b210800000000000000 + internalID: 1346986872375158727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B\uFF08\u91D1\uFF09" + rect: + serializedVersion: 2 + x: 1088 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a52232596d5411820800000000000000 + internalID: 2887165624048624218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B\uFF08\u94C1\uFF09" + rect: + serializedVersion: 2 + x: 1120 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 38090c5f939935140800000000000000 + internalID: 4707274509747523715 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B\uFF08\u94DC\uFF09" + rect: + serializedVersion: 2 + x: 1152 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41b96c3213d6c0b30800000000000000 + internalID: 4254895805779319572 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u738B\uFF08\u94F6\uFF09" + rect: + serializedVersion: 2 + x: 1184 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69450d5a62eb3b9f0800000000000000 + internalID: -453810064234359658 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u739B\u7459\u4E32" + rect: + serializedVersion: 2 + x: 1216 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba40d4cbf7657deb0800000000000000 + internalID: -4695188979890453333 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u739B\u7459\u4F5B\u73E0" + rect: + serializedVersion: 2 + x: 1248 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ecb662486db959280800000000000000 + internalID: -9037145731606615090 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u739B\u7459\u6212" + rect: + serializedVersion: 2 + x: 1280 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b499e21bcb68c590800000000000000 + internalID: -7653749046776326989 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u739B\u7459\u77F3\u94FE\u5B50" + rect: + serializedVersion: 2 + x: 1312 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d08f800240d502860800000000000000 + internalID: 7503099251497957389 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73A9\u5076\u65F6\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1344 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 112518729e4e755e0800000000000000 + internalID: -1920815026008927727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73A9\u5076\u65F6\u88C5\u5973\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 1376 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d4114e37ffd843d0800000000000000 + internalID: -3222079280389221165 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73A9\u5076\u65F6\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1408 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b56e905005e654b90800000000000000 + internalID: -7258273934476712357 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73A9\u5076\u65F6\u88C5\u5973\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1440 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1448172283a02cd80800000000000000 + internalID: -8232005932667534271 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73A9\u5076\u65F6\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1472 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a17021012e439ff20800000000000000 + internalID: 3456852334520436506 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73A9\u5076\u65F6\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1504 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9db46b6c71305a810800000000000000 + internalID: 1775829028720495577 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73A9\u5076\u65F6\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1536 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e802d1e486681bbe0800000000000000 + internalID: -1463240621373448050 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73A9\u5076\u65F6\u88C5\u7537\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1568 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e922ccef0c5c1e2c0800000000000000 + internalID: -4404021527892450658 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73A9\u5076\u65F6\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1600 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2737ad1d1413c46b0800000000000000 + internalID: -5310815701813267598 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73A9\u5177\u718A\u732B" + rect: + serializedVersion: 2 + x: 1632 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 626938413b7fdd630800000000000000 + internalID: 3953588396416538150 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470-1" + rect: + serializedVersion: 2 + x: 1664 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f54b603ae081dcde0800000000000000 + internalID: -1311365465351211937 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470-11" + rect: + serializedVersion: 2 + x: 1696 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77fda7e9ab3715d00800000000000000 + internalID: 959675440966590327 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470-3" + rect: + serializedVersion: 2 + x: 1728 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56d5dc71ba23ac840800000000000000 + internalID: 5245060426446495077 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470" + rect: + serializedVersion: 2 + x: 1760 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 612f180a0542d9250800000000000000 + internalID: 5952954211162518038 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470\u5315\u9996" + rect: + serializedVersion: 2 + x: 1792 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5cf125c59055d4570800000000000000 + internalID: 8452505574336241605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470\u53CC\u59DD\u5706\u8033\u74F6" + rect: + serializedVersion: 2 + x: 1824 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6f8c3b394d82a77b0800000000000000 + internalID: -5225819524133828362 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470\u53CC\u624B\u77ED\u5175" + rect: + serializedVersion: 2 + x: 1856 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49eed3c99a91ac890800000000000000 + internalID: -7437103618387480940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470\u73D0\u7405\u7B14\u7B52" + rect: + serializedVersion: 2 + x: 1888 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e65496b9cdd443c60800000000000000 + internalID: 7796942464780682606 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470\u82B1" + rect: + serializedVersion: 2 + x: 1920 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f5466d011d69f6250800000000000000 + internalID: 5940132258199790687 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470\u82B1\u675F\u4E2D" + rect: + serializedVersion: 2 + x: 1952 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac8df0385a272b790800000000000000 + internalID: -7515818772933912374 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470\u82B1\u675F\u5927" + rect: + serializedVersion: 2 + x: 1984 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 336d33e3d3c8efc60800000000000000 + internalID: 7853868994845201971 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470\u82B1\u675F\u5C0F" + rect: + serializedVersion: 2 + x: 2016 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b56d2554d02c151d0800000000000000 + internalID: -3363694084415629733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470\u82B1\u675F\u6700\u5C0F" + rect: + serializedVersion: 2 + x: 2048 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c5d574c675245950800000000000000 + internalID: 6436810959451706819 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470\u9A91\u58EB\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2080 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46e543e57c187eb30800000000000000 + internalID: 4316561461136875108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470\u9A91\u58EB\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2112 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c926a966693ad840800000000000000 + internalID: 5249571427675679177 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73AB\u7470\u9A91\u58EB\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2144 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 776099e8b7eb37fb0800000000000000 + internalID: -4651164552260942217 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73B0" + rect: + serializedVersion: 2 + x: 2176 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7391ac3b06720f890800000000000000 + internalID: -7426392489247237833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73B2\u73D1\u4FEE\u7F57" + rect: + serializedVersion: 2 + x: 2208 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c71fccd7202ae3960800000000000000 + internalID: 7583676954122711420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73B3\u7441\u624B\u956F" + rect: + serializedVersion: 2 + x: 2240 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5bd343a4eb40e68c0800000000000000 + internalID: -4004257803350557259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73BB\u7483\u978B" + rect: + serializedVersion: 2 + x: 2272 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97763250895b61270800000000000000 + internalID: 8220957834337281913 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73CA\u745A\u5C0F\u6BB5" + rect: + serializedVersion: 2 + x: 2304 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd040914f4e3ec9e0800000000000000 + internalID: -1599272307546636069 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73CA\u745A\u6728\u624B\u638C\u6A21\u677F" + rect: + serializedVersion: 2 + x: 2336 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b98cb68c3b7256990800000000000000 + internalID: -7393459560143664997 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73CA\u745A\u6756\u67C4" + rect: + serializedVersion: 2 + x: 2368 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99384f7e02ee23080800000000000000 + internalID: -9209036462921317479 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73CA\u745A\u6811" + rect: + serializedVersion: 2 + x: 2400 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cb54a699b96404960800000000000000 + internalID: 7584139406599669180 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73CA\u745A\u7EA2" + rect: + serializedVersion: 2 + x: 2432 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9aafaaa79435dab60800000000000000 + internalID: 7758949308084976297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73CA\u745A\u8282\u6263" + rect: + serializedVersion: 2 + x: 2464 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 760c00b4da973b2e0800000000000000 + internalID: -2111210015111987097 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73CD\u73E0\u5854" + rect: + serializedVersion: 2 + x: 2496 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb2981dad7e78a690800000000000000 + internalID: -7590678093692890434 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73CD\u73E0\u5B9D\u5854" + rect: + serializedVersion: 2 + x: 2528 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bad4237603c8fc220800000000000000 + internalID: 2508377656986324395 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73CD\u73E0\u6212" + rect: + serializedVersion: 2 + x: 2560 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55875c3c003486410800000000000000 + internalID: 1470498948900026453 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73CD\u8D35\u7684\u73BB\u7247" + rect: + serializedVersion: 2 + x: 2592 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9f7bc354bb384140800000000000000 + internalID: 4704075456474480538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73D0\u7405\u5F69\u6885\u679D\u8D2F\u8033\u74F6" + rect: + serializedVersion: 2 + x: 2624 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6603ad15f33047b80800000000000000 + internalID: -8398083834648055706 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73D0\u7405\u5F69\u7261\u4E39\u8D2F\u8033\u74F6" + rect: + serializedVersion: 2 + x: 2656 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b006310c53cada160800000000000000 + internalID: 7038471139505692683 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73E0\u5B9D\u76D2" + rect: + serializedVersion: 2 + x: 2688 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90c29a5bb3169ad90800000000000000 + internalID: -7086025629612037111 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u73E0\u7391\u5E7B\u9752\u9E3E" + rect: + serializedVersion: 2 + x: 2720 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc45fb0f4de77fee0800000000000000 + internalID: -1227372920397933364 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7403\u5F62\u73AB\u7470\u6302\u82B1" + rect: + serializedVersion: 2 + x: 2752 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a8e633e2b8fe0110800000000000000 + internalID: 1229193195518617763 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7403\u8863\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2784 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07f58dcc208b3a760800000000000000 + internalID: 7468014929276591984 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7403\u8863\u5973\u77ED\u88E4" + rect: + serializedVersion: 2 + x: 2816 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3eecaee7e9dff6390800000000000000 + internalID: -7822755170543284509 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7403\u8863\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2848 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 66d42b2e67dd26390800000000000000 + internalID: -7826449699737285274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7403\u8863\u7537\u77ED\u88E4" + rect: + serializedVersion: 2 + x: 2880 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9623f74181e3c24c0800000000000000 + internalID: -4311002470156389783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7405\u740A\u8170\u9970" + rect: + serializedVersion: 2 + x: 2912 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8df1045cda5d62370800000000000000 + internalID: 8297554305792090072 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u66F2\u73AF\u77F31" + rect: + serializedVersion: 2 + x: 2944 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a164d9905acd24740800000000000000 + internalID: 5134909126544803354 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u66F2\u73AF\u77F32" + rect: + serializedVersion: 2 + x: 2976 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a139fa5bc8d31e2f0800000000000000 + internalID: -945406772218195174 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u66F2\u73AF\u77F3\u7070" + rect: + serializedVersion: 2 + x: 3008 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03c425e14edcaf780800000000000000 + internalID: -8648373754766668752 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u66F2\u73AF\u77F3\u84DD" + rect: + serializedVersion: 2 + x: 3040 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3c28e3d86c6eaa80800000000000000 + internalID: -8453700253040235460 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u66F2\u73AF\u77F3\u91D1" + rect: + serializedVersion: 2 + x: 3072 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f7d6ea61e9edf4d0800000000000000 + internalID: -3099063814190606351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u7483\u5200\u950B\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3104 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9464f1cd42ef752e0800000000000000 + internalID: -2136960063898696119 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u7483\u5251\u5203\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3136 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1722bb1491e20eb20800000000000000 + internalID: 3161577624425931377 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u7483\u5B50\u6BCD\u65A7\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3168 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 007fcdfcdda1c7740800000000000000 + internalID: 5151021613782464256 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u7483\u5B50\u6BCD\u9524\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3200 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83ecf99126ed68660800000000000000 + internalID: 7387836751665942072 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u7483\u5B9D\u9274" + rect: + serializedVersion: 2 + x: 3232 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ddb333efd14bb75f0800000000000000 + internalID: -757814071369974819 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u7483\u6307\u73AF\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3264 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33e1b9bceccf4cbf0800000000000000 + internalID: -304840909644947917 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u7483\u65A7\u5203\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3296 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1140aa11b1bd74f0800000000000000 + internalID: -829311382152265443 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u7483\u7235\u676F" + rect: + serializedVersion: 2 + x: 3328 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6452eb1cbda2d2840800000000000000 + internalID: 5200860268019459398 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u7483\u8033\u676F" + rect: + serializedVersion: 2 + x: 3360 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69351d637f6aeaf10800000000000000 + internalID: 2282945641830241174 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u7483\u91D1\u521A\u6775\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3392 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67a64463ac07984a0800000000000000 + internalID: -6590612565883852170 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u7483\u9524\u5934\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3424 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77f7fa50cfd811320800000000000000 + internalID: 2526956979498221431 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u7483\u9E33\u9E2F\u5200\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3456 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a91f30823fa86a90800000000000000 + internalID: -7320408562855896665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7409\u7483\u9E33\u9E2F\u5251\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3488 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 472b14a2eef7b1bc0800000000000000 + internalID: -3811311998751100300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7425\u73C0\u871C\u8721" + rect: + serializedVersion: 2 + x: 3520 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7789ddcce5a011230800000000000000 + internalID: 3607676178780756087 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u743C\u9B42\u9B54\u587F" + rect: + serializedVersion: 2 + x: 3552 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c0069b4902b497d0800000000000000 + internalID: -2912507306009296700 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u745E\u517D\u5448\u7965\u9547\u7EB8" + rect: + serializedVersion: 2 + x: 3584 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb311630d3b1858c0800000000000000 + internalID: -4010425519309777989 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7476\u6C60\u5927\u87E0\u6843" + rect: + serializedVersion: 2 + x: 3616 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1cd48855de883b00800000000000000 + internalID: 808553180077284381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7476\u6C60\u5B09\u9E64\u6D6E\u96D5" + rect: + serializedVersion: 2 + x: 3648 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 645f67a4ed0ead820800000000000000 + internalID: 2943912551776712006 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7476\u6C60\u732E\u5BFF\u56FE" + rect: + serializedVersion: 2 + x: 3680 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2def6cdfc8caf0c0800000000000000 + internalID: -4541096479167615701 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7487\u7391\u6756" + rect: + serializedVersion: 2 + x: 3712 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41eb9340a96774d60800000000000000 + internalID: 7874392877348535828 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u74DC\u74DE\u7EF5\u7EF5\u74F6" + rect: + serializedVersion: 2 + x: 3744 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 538e05d6ad7ed2d10800000000000000 + internalID: 2102591526374795317 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u74E6\u68F1\u9524" + rect: + serializedVersion: 2 + x: 3776 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dba1b2c948ec4ad20800000000000000 + internalID: 3288980696838380221 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u74F6\u5B50" + rect: + serializedVersion: 2 + x: 3808 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c68a8281aaeeda70800000000000000 + internalID: 8853771896857724608 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u74F6\u88C5\u7684\u6697\u5F71" + rect: + serializedVersion: 2 + x: 3840 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e589674b4c6966ea0800000000000000 + internalID: -5879846491900176290 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u74F7\u6A3D\u58C1\u76CF" + rect: + serializedVersion: 2 + x: 3872 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41da4522aad4abb70800000000000000 + internalID: 8915523805449071892 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u74F7\u846B\u82A62012" + rect: + serializedVersion: 2 + x: 3904 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fee54805186110020800000000000000 + internalID: 2306149228847849199 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u751F\u547D\u5973\u795E\u7684\u795D\u798F" + rect: + serializedVersion: 2 + x: 3936 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4d653908db31eb90800000000000000 + internalID: -7214419329017352886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u751F\u547D\u5973\u795E\u7684\u795D\u798F1" + rect: + serializedVersion: 2 + x: 3968 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae7bae50fc3abfd00800000000000000 + internalID: 1007579051200264170 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u751F\u547D\u5973\u795E\u7684\u795D\u798F2" + rect: + serializedVersion: 2 + x: 4000 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3682f0388a83cda80800000000000000 + internalID: -8440809305194682269 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u751F\u65E5\u5FEB\u4E50" + rect: + serializedVersion: 2 + x: 4032 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b032f27bc9515700800000000000000 + internalID: 527301361720766642 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u751F\u65E5\u86CB\u7CD5" + rect: + serializedVersion: 2 + x: 4064 + y: 2688 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f09704dcc321b200800000000000000 + internalID: 193975621591208184 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u751F\u6B7B\u51DD\u606F\u5377\u8F74" + rect: + serializedVersion: 2 + x: 0 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e58ce2663c2f8ef90800000000000000 + internalID: -6924017506035251106 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u751F\u6B7B\u610F\u5883\u5377\u8F74" + rect: + serializedVersion: 2 + x: 32 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 870849530848a9ce0800000000000000 + internalID: -1397659048155512712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u751F\u6B7B\u611F\u609F\u5377\u8F74" + rect: + serializedVersion: 2 + x: 64 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ec3d387452baf0e0800000000000000 + internalID: -2235278189171753760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u751F\u94C1" + rect: + serializedVersion: 2 + x: 96 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a113c942eafd66ca0800000000000000 + internalID: -6023881512529940198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7530\u56ED\u767D\u6866\u6805\u680F" + rect: + serializedVersion: 2 + x: 128 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8894d1d143fe9a10800000000000000 + internalID: 1918237955325204619 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7530\u56ED\u98CE\u683C\u9676\u74F7\u5A03\u5A03" + rect: + serializedVersion: 2 + x: 160 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d652ccbfdd997bb0800000000000000 + internalID: -4937741932164917544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7532" + rect: + serializedVersion: 2 + x: 192 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5575f913217838110800000000000000 + internalID: 1262000832805558101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7532\u7247" + rect: + serializedVersion: 2 + x: 224 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9912dff766bbbd4b0800000000000000 + internalID: -5414528078074535527 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7533" + rect: + serializedVersion: 2 + x: 256 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6f1a7f3afc2e8b210800000000000000 + internalID: 1349077469834486262 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7533\u5C60\u51A5\u7684\u9057\u4FE1" + rect: + serializedVersion: 2 + x: 288 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69d1dba45c8b2b9b0800000000000000 + internalID: -5065783473336410730 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u4E2D\u56FD\u98CE\u4E0A\u886332" + rect: + serializedVersion: 2 + x: 320 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7df308c15050bbac0800000000000000 + internalID: -3838468737892073513 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u4E2D\u56FD\u98CE\u5934\u53D132" + rect: + serializedVersion: 2 + x: 352 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c90d565037c4ba300800000000000000 + internalID: 264389060026814620 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u4E2D\u56FD\u98CE\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 384 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e506f4b3adb222ad0800000000000000 + internalID: -2728570207935176610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u4E2D\u56FD\u98CE\u978B\u5B5032" + rect: + serializedVersion: 2 + x: 416 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1b02453bd82e4e80800000000000000 + internalID: -8192565750183884006 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u53E6\u7C7B\u7626\u8EAB\u88C5\u62A4\u815532" + rect: + serializedVersion: 2 + x: 448 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 223fe40f869231ad0800000000000000 + internalID: -2732795018198715614 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u5510\u88C5" + rect: + serializedVersion: 2 + x: 480 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71a1fd20f4387aad0800000000000000 + internalID: -2691037876956751337 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u590F\u88C5-\u77ED\u88E432" + rect: + serializedVersion: 2 + x: 512 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c4b0e65ec22b2220800000000000000 + internalID: 2462099890904282306 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u590F\u88C5-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 544 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4998e19ab2450fca0800000000000000 + internalID: -5985191358277711468 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u590F\u88C5-\u978B32" + rect: + serializedVersion: 2 + x: 576 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f49e9231c27017c0800000000000000 + internalID: -4102653086431013646 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u5DF4\u6D1B\u514B-\u8863\u670D" + rect: + serializedVersion: 2 + x: 608 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b47480089a30003e0800000000000000 + internalID: -2089666200567527605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u5DF4\u6D1B\u514B-\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 640 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 271207222192aadd0800000000000000 + internalID: -2474119887422742158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u5DF4\u6D1B\u514B-\u978B" + rect: + serializedVersion: 2 + x: 672 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2dc5cc9b632c16a0800000000000000 + internalID: -6477263218966934225 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u5F0F\u6076\u9B54\u5957\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 704 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c0b48545926ad090800000000000000 + internalID: -8008980594069032763 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u5F0F\u6076\u9B54\u5957\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 736 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e27d8a8ed9a824970800000000000000 + internalID: 8737698637870061358 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u5F0F\u6076\u9B54\u5957\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 768 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9040214e0e1bae6e0800000000000000 + internalID: -1807436720978656247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u5F0F\u6076\u9B54\u5957\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 800 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1dce98b7281ceccd0800000000000000 + internalID: -2535876774000464687 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u5F0F\u6076\u9B54\u5957\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 832 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d285ab48847822a50800000000000000 + internalID: 6494902358155876397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u5FCD\u8005\u5934\u53D1" + rect: + serializedVersion: 2 + x: 864 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff4ea202019843c80800000000000000 + internalID: -8343893507258522369 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u5FCD\u8005\u624B\u5957" + rect: + serializedVersion: 2 + x: 896 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13937158731cf2510800000000000000 + internalID: 1526651242902141233 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u5FCD\u8005\u8863\u670D" + rect: + serializedVersion: 2 + x: 928 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1d153c3308d8bf00800000000000000 + internalID: 1132892814690295067 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u5FCD\u8005\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 960 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bcbc296396a1c18f0800000000000000 + internalID: -568550413766046773 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u5FCD\u8005\u978B\u5B50" + rect: + serializedVersion: 2 + x: 992 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e7a453ce7869cf50800000000000000 + internalID: 6902162797574268896 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u65F6\u5C1A\u5957\u88C5-\u4E0A\u8EAB" + rect: + serializedVersion: 2 + x: 1024 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2b8ce80e140bac70800000000000000 + internalID: 8983278408765836079 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u65F6\u5C1A\u5957\u88C5-\u4E0B\u8EAB" + rect: + serializedVersion: 2 + x: 1056 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bb1b347ab5a1e620800000000000000 + internalID: 2801702663433690034 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u65F6\u5C1A\u5957\u88C5-\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1088 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c1d39fbf83d96e20800000000000000 + internalID: 3344436812647223748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u65F6\u5C1A\u5957\u88C5-\u978B" + rect: + serializedVersion: 2 + x: 1120 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1fd75f92153afcc70800000000000000 + internalID: 8993586549873802737 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u65F6\u5C1A\u8C79\u88C5\u4E0A\u8EAB" + rect: + serializedVersion: 2 + x: 1152 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec8f90c430e3877f0800000000000000 + internalID: -614673165254526770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u65F6\u5C1A\u8C79\u88C5\u4E0B\u8EAB" + rect: + serializedVersion: 2 + x: 1184 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60dc51c6328673790800000000000000 + internalID: -7550451748916835066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u65F6\u5C1A\u8C79\u88C5\u5E3D\u5B50" + rect: + serializedVersion: 2 + x: 1216 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d20d1096b8f44e50800000000000000 + internalID: 6792827600967107280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u65F6\u5C1A\u8C79\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1248 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a545a01f7324ef7e0800000000000000 + internalID: -1729872398829071270 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u6625\u5929\u6BDB\u8863\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1280 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c93b1579380c682a0800000000000000 + internalID: -6735484521274035300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u6625\u5929\u6BDB\u8863\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1312 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 513f429abdb6d7280800000000000000 + internalID: -9043953885510307051 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u6625\u5929\u6BDB\u8863\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1344 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3e4702b137a84be0800000000000000 + internalID: -1492759444591260100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u6625\u5929\u6BDB\u8863\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1376 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d078dd88fecf0e80800000000000000 + internalID: -8210116028746141488 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u673A\u8F66\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1408 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bcf02b198baf19940800000000000000 + internalID: 5301293907017076683 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u673A\u8F66\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1440 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6a7673837382e3c0800000000000000 + internalID: -4331755359426938262 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u673A\u8F66\u88C5\u624B\u5957" + rect: + serializedVersion: 2 + x: 1472 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f29d5054c0a7f3710800000000000000 + internalID: 1675191779521321263 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u673A\u8F66\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1504 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d3ab6ce081772fb0800000000000000 + internalID: -4672641289837370407 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u673A\u8F66\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1536 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9190a6994b821e150800000000000000 + internalID: 5900041742965147929 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u68A6\u60F3\u7EC8\u6781\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1568 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7124d53e399126d20800000000000000 + internalID: 3270204402389828119 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u68A6\u60F3\u7EC8\u6781\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1600 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 256a0fa2ad091c830800000000000000 + internalID: 4089709203326805586 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u68A6\u60F3\u7EC8\u6781\u88C5\u978B" + rect: + serializedVersion: 2 + x: 1632 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa641aa8dbc2374d0800000000000000 + internalID: -3138115322760837462 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u6BDB\u9886\u9ED1\u9B45\u88C5-\u5934\u53D132" + rect: + serializedVersion: 2 + x: 1664 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab62f1f92a5438690800000000000000 + internalID: -7601155181314627910 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u6BDB\u9886\u9ED1\u9B45\u88C5-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 1696 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 624cd75e4798a3df0800000000000000 + internalID: -199696098305129434 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u6BDB\u9886\u9ED1\u9B45\u88C5-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 1728 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a22a1a0fd5d35d70800000000000000 + internalID: 9030796831731884709 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u6BDB\u9886\u9ED1\u9B45\u88C5-\u978B32" + rect: + serializedVersion: 2 + x: 1760 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a275bdc91f8d7d140800000000000000 + internalID: 4744499264688445226 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u6D77\u76D7\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1792 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 66df5023ccc541020800000000000000 + internalID: 2311574540830244198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u6D77\u76D7\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1824 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 389475c17ec3a6c90800000000000000 + internalID: -7175856092950869629 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u6D77\u76D7\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1856 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e6c51594e42d8990800000000000000 + internalID: -7382203650017999127 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u6D77\u76D7\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1888 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1d439c40106e7380800000000000000 + internalID: -8971627784554984162 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u73AB\u7470\u82B1\u7403" + rect: + serializedVersion: 2 + x: 1920 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d75415024c8fdc290800000000000000 + internalID: -7868359452706912899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u7403\u978B" + rect: + serializedVersion: 2 + x: 1952 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ba3843008d62c720800000000000000 + internalID: 2864972709539363506 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u7687\u51A0" + rect: + serializedVersion: 2 + x: 1984 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da5694ded7eaac760800000000000000 + internalID: 7478981987077285293 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u7729\u821E\u900F\u660E\u88C5-\u8863\u670D" + rect: + serializedVersion: 2 + x: 2016 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c95cd50e6f4a4d00800000000000000 + internalID: 957665204732975557 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u7729\u821E\u900F\u660E\u88C5-\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2048 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20868e64b674a6120800000000000000 + internalID: 2407815476859660290 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u7729\u821E\u900F\u660E\u88C5-\u978B" + rect: + serializedVersion: 2 + x: 2080 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b35a0f6fd50e9b280800000000000000 + internalID: -9026937283907902149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u8349\u88D9\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2112 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 00d63f5b2b92facb0800000000000000 + internalID: -4850612426121188096 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u8349\u88D9\u5E3D\u5B50" + rect: + serializedVersion: 2 + x: 2144 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3485517ce5bab9e0800000000000000 + internalID: -1604770290085821382 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u8349\u88D9\u62A4\u624B" + rect: + serializedVersion: 2 + x: 2176 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 26d577b1efdc1d600800000000000000 + internalID: 491400325626289506 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u8349\u88D9\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2208 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9a6f9a0591f2c140800000000000000 + internalID: 4738615380377823900 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u8349\u88D9\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2240 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6bbc707f9b141150800000000000000 + internalID: 5842324988207348587 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u95EA\u94BB\u793C\u670D\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2272 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bac977461e3667da0800000000000000 + internalID: -5947456438191809365 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7537\u9F9F\u7075\u88E4" + rect: + serializedVersion: 2 + x: 2304 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ccd0cc88fb67889d0800000000000000 + internalID: -2771835005640634932 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u753B\u76AE" + rect: + serializedVersion: 2 + x: 2336 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce526475e626c8bb0800000000000000 + internalID: -4932459265827396116 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u754C" + rect: + serializedVersion: 2 + x: 2368 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd262af5da7ed9390800000000000000 + internalID: -7809831446970735905 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7559\u767D\u5760\u5B50" + rect: + serializedVersion: 2 + x: 2400 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 709707fe033afc670800000000000000 + internalID: 8561240847225485575 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7559\u97F3\u6D77\u87BA" + rect: + serializedVersion: 2 + x: 2432 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7cf92d2cd8679210800000000000000 + internalID: 1339654709025832058 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u756A\u83B2\u7EB9\u5B9D\u84DD\u6A3D\u7F4D" + rect: + serializedVersion: 2 + x: 2464 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4efb463964df08880800000000000000 + internalID: -8610604007969996828 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75AF\u72C2\u65F6\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2496 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b04c9781d6f094a40800000000000000 + internalID: 5352826593343030283 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75AF\u72C2\u65F6\u88C5\u7537\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2528 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44455bb43fdb5ccb0800000000000000 + internalID: -4844256971522223036 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75AF\u72C2\u65F6\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2560 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b19e716e2042eec0800000000000000 + internalID: -3539195789211430471 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75AF\u72C2\u65F6\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2592 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d6e31968fb86d9b0800000000000000 + internalID: -5055699632645740840 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75AF\u72C2\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2624 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 329e129e438550a30800000000000000 + internalID: 4180844813356230947 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75AF\u72C2\u98DE\u732A" + rect: + serializedVersion: 2 + x: 2656 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 830261dfb995dbd90800000000000000 + internalID: -7080404512655663048 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75AF\u9B54\u6756" + rect: + serializedVersion: 2 + x: 2688 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a888ca059df178c0800000000000000 + internalID: -4003139777182791515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u4E91\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 2720 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f5139b0dad4af6210800000000000000 + internalID: 1328461674809209183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u4E91\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 2752 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d2f1cc3d6aeb19e0800000000000000 + internalID: -1649467083609476400 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u4E91\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 2784 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84538b79c5e1582e0800000000000000 + internalID: -2124258266204064440 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u4E91\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 2816 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1fa434511f28d26a0800000000000000 + internalID: -6472373117506073871 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u4E91\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 2848 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d80d5ee38477d2de0800000000000000 + internalID: -1356296760592052083 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u4E91\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 2880 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3376c70c1bcdc6450800000000000000 + internalID: 6083479852667397939 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u5149\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2912 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c105c6fe83851710800000000000000 + internalID: 1663380287431967169 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u706B\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 2944 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ecc9921e9f51eae0800000000000000 + internalID: -1521830066552976153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u706B\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 2976 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c5ca40af75974300800000000000000 + internalID: 236321880842880453 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u706B\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 3008 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 607ffdc92b5af1d40800000000000000 + internalID: 5557342651753166598 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u706B\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 3040 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0385afdd51eb3b640800000000000000 + internalID: 5094624604613924912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u706B\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 3072 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 952a896fa6120f500800000000000000 + internalID: 427878707887645273 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u706B\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 3104 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b73c2c89ea2ebcf50800000000000000 + internalID: 6902860093390504827 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u7535" + rect: + serializedVersion: 2 + x: 3136 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 167ad96f65f886380800000000000000 + internalID: -8977768253495597215 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u7535\u6212" + rect: + serializedVersion: 2 + x: 3168 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b7a32fc2cff9d0630800000000000000 + internalID: 3894945158179994235 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u98CE\u4E39" + rect: + serializedVersion: 2 + x: 3200 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f6fe70a0ca58e9a90800000000000000 + internalID: -7305254571599204497 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u98CE\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 3232 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 449abc0b5e47dcef0800000000000000 + internalID: -86284287987701436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u98CE\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 3264 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9db44e6a6c3eb6e0800000000000000 + internalID: -1819950771596903009 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u98CE\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 3296 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32a7d5b3952df5e20800000000000000 + internalID: 3341620729222101539 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u98CE\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 3328 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e417cc43092b986e0800000000000000 + internalID: -1834739040745918130 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u98CE\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 3360 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a5a6bcfb5837d300800000000000000 + internalID: 276751869839582626 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u98CE\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 3392 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af5077c5a1026af80800000000000000 + internalID: -8095747982559345158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75BE\u98CE\u7834\u7A7A\u4EE4" + rect: + serializedVersion: 2 + x: 3424 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ae592528d4d8e3d0800000000000000 + internalID: -3177055512308392280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u75D8\u795E\u5361" + rect: + serializedVersion: 2 + x: 3456 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6aabe99179bc04900800000000000000 + internalID: 666756594681166502 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u761F\u795E\u5361" + rect: + serializedVersion: 2 + x: 3488 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6d10bb2b86a5806b0800000000000000 + internalID: -5329910753271283242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7678" + rect: + serializedVersion: 2 + x: 3520 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24df1ebef3fc79cc0800000000000000 + internalID: -3704264295041598142 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767B\u4ED9\u79D8\u7B08" + rect: + serializedVersion: 2 + x: 3552 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 950282aa0b3894790800000000000000 + internalID: -7545354905890316199 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767B\u697C\u8D4B" + rect: + serializedVersion: 2 + x: 3584 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dee004ba4ca539200800000000000000 + internalID: 185591810385514221 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767B\u96461\u5468\u5E74\u65F6\u88C5\u4E0A\u8EAB" + rect: + serializedVersion: 2 + x: 3616 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3fcf6e61b75d17c0800000000000000 + internalID: -4099023666263634117 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767B\u96461\u5468\u5E74\u65F6\u88C5\u4E0B\u8EAB" + rect: + serializedVersion: 2 + x: 3648 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9db76e22e2a281be0800000000000000 + internalID: -1506407697713038375 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767B\u96461\u5468\u5E74\u65F6\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3680 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9eca8f8275dc8ca00800000000000000 + internalID: 777096709954645225 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767B\u96461\u5468\u5E74\u65F6\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3712 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d5bec963c5a8e1e0800000000000000 + internalID: -2168300961866533417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u677E\u6B27\u5F0F\u5C55\u793A\u67DC" + rect: + serializedVersion: 2 + x: 3744 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6083fce67b51fdf20800000000000000 + internalID: 3449499717171361798 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u6C34\u6676\u5760\u5B50" + rect: + serializedVersion: 2 + x: 3776 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96c318ce44fac74f0800000000000000 + internalID: -829595520782484375 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u6C99\u6BD2\u9CDE\u86C7\u7259" + rect: + serializedVersion: 2 + x: 3808 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1152dc3a98e75610800000000000000 + internalID: 1610011140951265564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u718A" + rect: + serializedVersion: 2 + x: 3840 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a38f8320ff2cdca0800000000000000 + internalID: -5990860695874337886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u7389\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3872 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e51a4dae908e1b90800000000000000 + internalID: -7269231329528900124 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u7389\u621F\u8033\u7089" + rect: + serializedVersion: 2 + x: 3904 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94bd8cf3acad7c590800000000000000 + internalID: -7653908479504491703 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u7389\u77F3\u4F69" + rect: + serializedVersion: 2 + x: 3936 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a11cc7e7d26073640800000000000000 + internalID: 5059519498839441690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u7389\u956F" + rect: + serializedVersion: 2 + x: 3968 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8067b10fae84b9e10800000000000000 + internalID: 2205436616415868424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u7389\u96D5\u82B1\u7B14" + rect: + serializedVersion: 2 + x: 4000 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37c6146af214d3750800000000000000 + internalID: 6286252327787654259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u7EB1\u7EB1\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 4032 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 553bd456185448e10800000000000000 + internalID: 2198958940116333397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u7EB1\u7EB1\u5973\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 4064 + y: 2656 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98f53c56ae66aa780800000000000000 + internalID: -8671004975632785527 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u7EB1\u7EB1\u5973\u88C5\u8863\u670D" + rect: + serializedVersion: 2 + x: 0 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7f9b23c1839d8750800000000000000 + internalID: 6308860838550413181 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u7EB1\u7EB1\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 32 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 754545c61d1e5e9f0800000000000000 + internalID: -439697099016874921 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u7FBD\u62A4\u7B26" + rect: + serializedVersion: 2 + x: 64 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40900eb95e96d6500800000000000000 + internalID: 391085177534679300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u8272\u4E09\u89D2\u94A2\u7434" + rect: + serializedVersion: 2 + x: 96 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6c0ce049bc386ab0800000000000000 + internalID: -5014691418721219478 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u8272\u5723\u8BDE\u889C" + rect: + serializedVersion: 2 + x: 128 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f6915aa140c61220800000000000000 + internalID: 2456362035040065267 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 160 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d5335f79a46fb270800000000000000 + internalID: 8268438120023930325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u8272\u67D3\u8272\u5242" + rect: + serializedVersion: 2 + x: 192 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f788c9e78fafcdb0800000000000000 + internalID: -4769400482084386828 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u8272\u6C34\u6676\u77F3" + rect: + serializedVersion: 2 + x: 224 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 789dc010193599a70800000000000000 + internalID: 8834184026316921223 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u8272\u72FC\u7259" + rect: + serializedVersion: 2 + x: 256 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 18038e83cca708c40800000000000000 + internalID: 5512540961448145025 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u8272\u836F\u7C89" + rect: + serializedVersion: 2 + x: 288 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e21eeed316a8bc6a0800000000000000 + internalID: -6427891892885724882 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u82B1" + rect: + serializedVersion: 2 + x: 320 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d530cab76fd24e160800000000000000 + internalID: 7053813453029114717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u83B2\u6212" + rect: + serializedVersion: 2 + x: 352 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 466dc5560d8b2e300800000000000000 + internalID: 279989332043683428 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u843C\u6885" + rect: + serializedVersion: 2 + x: 384 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 850b9c056526cae40800000000000000 + internalID: 5669014153814716504 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u8611\u83C7" + rect: + serializedVersion: 2 + x: 416 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 632f1af45c367e510800000000000000 + internalID: 1578339893512368694 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u5217" + rect: + serializedVersion: 2 + x: 448 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edab8e40d86a07550800000000000000 + internalID: 6156603815218428638 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u5730" + rect: + serializedVersion: 2 + x: 480 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4159fdb8a38427040800000000000000 + internalID: 4643853582064391444 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u5929" + rect: + serializedVersion: 2 + x: 512 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 244fa53689c6b0a30800000000000000 + internalID: 4182556080701371458 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u5B87" + rect: + serializedVersion: 2 + x: 544 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ffeb2d4f1579c960800000000000000 + internalID: 7622752621600436216 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u5BBF" + rect: + serializedVersion: 2 + x: 576 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f356dceb29aecc30800000000000000 + internalID: 4381625493600228339 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u5E99" + rect: + serializedVersion: 2 + x: 608 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6809d667fb9f29c0800000000000000 + internalID: -3949766861295908757 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u5F20" + rect: + serializedVersion: 2 + x: 640 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70898cc1ca8fc4e10800000000000000 + internalID: 2183393337468819463 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u65E5" + rect: + serializedVersion: 2 + x: 672 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ecb971c43ecf1170800000000000000 + internalID: 8151460576543489253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u6603" + rect: + serializedVersion: 2 + x: 704 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44b6a5b5115716b50800000000000000 + internalID: 6584672847599921988 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u6708" + rect: + serializedVersion: 2 + x: 736 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27af1546502187f00800000000000000 + internalID: 1114660722141428338 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u6D2A" + rect: + serializedVersion: 2 + x: 768 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac07f2dd081b4d8a0800000000000000 + internalID: -6281200413250195254 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u76C8" + rect: + serializedVersion: 2 + x: 800 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 764898c91a6be5ab0800000000000000 + internalID: -5017372129611905945 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u8352" + rect: + serializedVersion: 2 + x: 832 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77a3a7e201eb9d8c0800000000000000 + internalID: -3973936219469235593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u8FB0" + rect: + serializedVersion: 2 + x: 864 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a6196c60ac3b7db0800000000000000 + internalID: -4793170718694500703 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u4E4B\u9EC4" + rect: + serializedVersion: 2 + x: 896 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d12d006dc5c3cb390800000000000000 + internalID: -7801294085087505891 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u78D0\u73BA" + rect: + serializedVersion: 2 + x: 928 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e9d05d91ffb897a0800000000000000 + internalID: -6370130628468221463 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u864E\u9879\u94FE" + rect: + serializedVersion: 2 + x: 960 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1de0e94cb47efd600800000000000000 + internalID: 495368796641300177 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u8681\u5DE8\u989A" + rect: + serializedVersion: 2 + x: 992 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84f500bcad484f7c0800000000000000 + internalID: -4038456890600956088 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u8681\u86F9" + rect: + serializedVersion: 2 + x: 1024 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a76945306295c7f0800000000000000 + internalID: -592906834020833369 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u8C61" + rect: + serializedVersion: 2 + x: 1056 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1207f0fcad9af38c0800000000000000 + internalID: -4017305585349332959 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u8C79" + rect: + serializedVersion: 2 + x: 1088 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4bbfe2eeeac16d20800000000000000 + internalID: 3270117931806079820 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u91D1\u5B88\u795E\u7B26" + rect: + serializedVersion: 2 + x: 1120 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e7adb57fd8714480800000000000000 + internalID: -8916712886068467743 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u91D1\u62A4\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 1152 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 994a22491322c1a20800000000000000 + internalID: 3034337845274911897 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u91D1\u62FC\u56FE" + rect: + serializedVersion: 2 + x: 1184 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75c304416d5313880800000000000000 + internalID: -8633059817113502633 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94BB" + rect: + serializedVersion: 2 + x: 1216 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3eded2cf1ecca91e0800000000000000 + internalID: -2190212997791748637 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u5B88\u795E\u7B26" + rect: + serializedVersion: 2 + x: 1248 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ddbd9f8e9691dec80800000000000000 + internalID: -8291943396248265763 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u5B88\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 1280 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e6fc9035cd81fcf0800000000000000 + internalID: -220239028700776734 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 1312 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04136bf8e5f4495a0800000000000000 + internalID: -6515495493341662912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u62A4\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 1344 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8ec86d249ba55870800000000000000 + internalID: 8671025310477110923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u62A4\u8EAB\u9501" + rect: + serializedVersion: 2 + x: 1376 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4cbc8b1800075a270800000000000000 + internalID: 8261132238959725508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u68CD\u68D2\u62A4\u624B" + rect: + serializedVersion: 2 + x: 1408 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92f6844fbeb260860800000000000000 + internalID: 7495726922220465961 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u72B6\xB7\u4ED9\u5E7B\u5929" + rect: + serializedVersion: 2 + x: 1440 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46bd31eabc2026d90800000000000000 + internalID: -7106114188215067804 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u77DB\u67C4" + rect: + serializedVersion: 2 + x: 1472 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4efb6b268f36a1b80800000000000000 + internalID: -8423310234583908380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u77ED\u5203\u67C4" + rect: + serializedVersion: 2 + x: 1504 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ea9f79866ea29730800000000000000 + internalID: 4004454774102530786 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u793C\u5305" + rect: + serializedVersion: 2 + x: 1536 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c143055dba9153670800000000000000 + internalID: 8517742496050066460 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u80A1\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 1568 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 465121efa31453b00800000000000000 + internalID: 807623429809378660 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u80A9\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 1600 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6b431c2c5306d950800000000000000 + internalID: 6473365208803003245 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u8155\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 1632 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a8e373570abc5670800000000000000 + internalID: 8528896334960519336 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u864E\u7B26" + rect: + serializedVersion: 2 + x: 1664 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff43b36fcb4db65d0800000000000000 + internalID: -3068124813072845569 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u8E1D\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 1696 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97b3e1631e065ef30800000000000000 + internalID: 4604192714448059257 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u9576\u5B9D\u77F3\u516D\u89D2\u5FBD\u7AE0" + rect: + serializedVersion: 2 + x: 1728 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d3420b6740e7da00800000000000000 + internalID: 781339657714680793 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u957F\u5200\u5200\u683C" + rect: + serializedVersion: 2 + x: 1760 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e0e1be71afbea0050800000000000000 + internalID: 5767681732176977422 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u957F\u6746\u63A5\u69AB" + rect: + serializedVersion: 2 + x: 1792 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c989ae813435ed580800000000000000 + internalID: -8800505074189428580 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u94F6\u9762\u7F69\u5408\u9875" + rect: + serializedVersion: 2 + x: 1824 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3268e53e651e27f0800000000000000 + internalID: -635546934317653442 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u96EA\u83B2" + rect: + serializedVersion: 2 + x: 1856 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edf57462abe68a400800000000000000 + internalID: 335639918024286174 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u96FE\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1888 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6fa1c87e84264e50800000000000000 + internalID: 6793157282264887149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u9716\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1920 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ae3f1f46b4d6d6e0800000000000000 + internalID: -1813027920493461853 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u9E64" + rect: + serializedVersion: 2 + x: 1952 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 92147e013c67e62d0800000000000000 + internalID: -3283556498132221655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u9F99\u888D\u7537" + rect: + serializedVersion: 2 + x: 1984 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22aa85b7c404368e0800000000000000 + internalID: -1701445536984815070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u9F99\u888D\u7537\u88E4" + rect: + serializedVersion: 2 + x: 2016 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c78f5cfe119e0920800000000000000 + internalID: 2958461567498160072 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767D\u9F99\u888D\u7537\u978B" + rect: + serializedVersion: 2 + x: 2048 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e87b68650e500ef70800000000000000 + internalID: 9214371298682517390 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u5229\u91D1\u91D1\u7B14\u4E60\u7B3A" + rect: + serializedVersion: 2 + x: 2080 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e2cb7e3fad8df150800000000000000 + internalID: 5908034069987050213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u5320\u5DE5\u5FC3\u77F3" + rect: + serializedVersion: 2 + x: 2112 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14ec7f4199fd0b7b0800000000000000 + internalID: -5210418920292889023 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u5473\u836F\u5F15" + rect: + serializedVersion: 2 + x: 2144 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e4bbdb107e381c90800000000000000 + internalID: -7198935353127095070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u5B9D\u7BB1" + rect: + serializedVersion: 2 + x: 2176 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d5731dcf8c43a000800000000000000 + internalID: 45964601708475861 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u5E74\u597D\u5408" + rect: + serializedVersion: 2 + x: 2208 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3c75e025f4204040800000000000000 + internalID: 4629741052174367802 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u6218\u5200" + rect: + serializedVersion: 2 + x: 2240 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b10857ceb3ffd8bc0800000000000000 + internalID: -3779083879458701285 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u70BC\u5251" + rect: + serializedVersion: 2 + x: 2272 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6cf313c707468e020800000000000000 + internalID: 2371255638093283270 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u70BC\u5929\u9053" + rect: + serializedVersion: 2 + x: 2304 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a07b29aca20fae00800000000000000 + internalID: 1058067378051182759 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u70BC\u94A2" + rect: + serializedVersion: 2 + x: 2336 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86914f05ebbe28cf0800000000000000 + internalID: -251379426544838296 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u82B1\u88D9\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2368 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4815335bd253d6fb0800000000000000 + internalID: -4653004369574014588 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u82B1\u88D9\u88E4" + rect: + serializedVersion: 2 + x: 2400 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57cf85388093cf540800000000000000 + internalID: 5042968391474281589 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u82B1\u88D9\u978B" + rect: + serializedVersion: 2 + x: 2432 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b7d11282a4d52ae20800000000000000 + internalID: 3360350845054033275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u8349\u9732" + rect: + serializedVersion: 2 + x: 2464 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4853ba6146a56d3a0800000000000000 + internalID: -6641021214587669116 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u8F9F\u8170\u9970" + rect: + serializedVersion: 2 + x: 2496 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff90395a257f478c0800000000000000 + internalID: -4002302234488272385 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u91CC\u8FFD\u98CE\u5F29" + rect: + serializedVersion: 2 + x: 2528 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 192012a890dd17a70800000000000000 + internalID: 8823076178037375633 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u767E\u969C\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 2560 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5033743538c97cf10800000000000000 + internalID: 2289971023393010437 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7687\u540E\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2592 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 19b59e5d1f914aa60800000000000000 + internalID: 7684295390667561873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7687\u540E\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2624 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8060b6847d53e6c0800000000000000 + internalID: -4115342879429205878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7687\u540E\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2656 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8bf478a4757d47130800000000000000 + internalID: 3563709975069413304 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7687\u5BB6\u5178\u85CF" + rect: + serializedVersion: 2 + x: 2688 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 490a305b539ff8fa0800000000000000 + internalID: -5796140186337042284 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7687\u5E1D\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2720 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6525da59776a9210800000000000000 + internalID: 1340497610008765806 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7687\u5E1D\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2752 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ffd3fb3481847c30800000000000000 + internalID: 4356249144515616760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7687\u5E1D\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2784 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07e1e495bb1a053c0800000000000000 + internalID: -4372817412147503504 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7687\u699C" + rect: + serializedVersion: 2 + x: 2816 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1f66fa5154c14640800000000000000 + internalID: 5062543309838642975 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7687\uFF08\u91D1\uFF09" + rect: + serializedVersion: 2 + x: 2848 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7e5f248c7a88ac90800000000000000 + internalID: -7158319340307128706 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7687\uFF08\u94C1\uFF09" + rect: + serializedVersion: 2 + x: 2880 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1749b0fa272e7c850800000000000000 + internalID: 6397330777893999729 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7687\uFF08\u94DC\uFF09" + rect: + serializedVersion: 2 + x: 2912 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a904e0c35b57f3170800000000000000 + internalID: 8160370471075725466 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7687\uFF08\u94F6\uFF09" + rect: + serializedVersion: 2 + x: 2944 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5c7ae1d38a4aaa20800000000000000 + internalID: 3074351625656761436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7693\u6708\u73AF\u677E" + rect: + serializedVersion: 2 + x: 2976 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3425f6c901316170800000000000000 + internalID: 8169865117089211454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76AE\u62F3\u5957" + rect: + serializedVersion: 2 + x: 3008 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74460de9fc74480f0800000000000000 + internalID: -1115687850632780729 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76AE\u76AE\u9F20\u5587\u53ED" + rect: + serializedVersion: 2 + x: 3040 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97a52859ac669b780800000000000000 + internalID: -8666782987620033927 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76AE\u77ED\u88D9\u5973" + rect: + serializedVersion: 2 + x: 3072 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0c15f69eade21460800000000000000 + internalID: 7211087287486323725 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76AE\u77ED\u88D9\u5973\u8155" + rect: + serializedVersion: 2 + x: 3104 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8da3eb46da8e79a80800000000000000 + internalID: -8460037543575012648 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76AE\u77ED\u88D9\u5973\u978B" + rect: + serializedVersion: 2 + x: 3136 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d698cb43c6286a0f0800000000000000 + internalID: -1106053257220028051 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76AE\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3168 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1be48d1f3a1c5c0e0800000000000000 + internalID: -2250179528920379727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76AE\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3200 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9ae9935efc71f640800000000000000 + internalID: 5112004483808357020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76AE\u88C5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 3232 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f15a828e43ce0a50800000000000000 + internalID: 6489338855052431860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76AE\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3264 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6da50801eaa0c3d30800000000000000 + internalID: 4412413477633678038 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76AE\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3296 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bbfe847833b8f6a50800000000000000 + internalID: 6516580239257694139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76AE\u9769" + rect: + serializedVersion: 2 + x: 3328 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a578866a03c600220800000000000000 + internalID: 2450077153495648090 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76C8\u5929\u6212" + rect: + serializedVersion: 2 + x: 3360 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 440d9e0c1d3e923f0800000000000000 + internalID: -924957758423707580 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76C8\u6CF0\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3392 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f607914216010070800000000000000 + internalID: 8070738682704234231 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76CA" + rect: + serializedVersion: 2 + x: 3424 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12046584101dd58b0800000000000000 + internalID: -5161739794457935839 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76D0\u77F3" + rect: + serializedVersion: 2 + x: 3456 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ba99d9ff8d652d90800000000000000 + internalID: -7123166770477032780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76D1\u7262\u94A5\u5319" + rect: + serializedVersion: 2 + x: 3488 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f6d291898d460e440800000000000000 + internalID: 4963077670789786991 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76D8\u53E4\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3520 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c8e1fa115c825dc0800000000000000 + internalID: -3651702067871749949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76D8\u87AD\u9F99\u7EB9\u89E5" + rect: + serializedVersion: 2 + x: 3552 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df76275b8f3aee570800000000000000 + internalID: 8497909835486095357 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76D8\u9F99\u68CD" + rect: + serializedVersion: 2 + x: 3584 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89d6c7e241f0f8490800000000000000 + internalID: -7741952655072924264 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76D8\u9F99\u8349" + rect: + serializedVersion: 2 + x: 3616 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4d803ae4da255b30800000000000000 + internalID: 4275370515208637773 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76DB\u4E16\u4E07\u5E74" + rect: + serializedVersion: 2 + x: 3648 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d4c213c48203b540800000000000000 + internalID: 5022360778679960787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76F8\u4F9D\u76F8\u504E\u7684\u52A8\u4F5C" + rect: + serializedVersion: 2 + x: 3680 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90228803b721427a0800000000000000 + internalID: -6402972449909497335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76F8\u5FD8\u6C5F\u6E56" + rect: + serializedVersion: 2 + x: 3712 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dad1723f460638ac0800000000000000 + internalID: -3854130869406589523 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76F8\u601D\u5165\u9AA8" + rect: + serializedVersion: 2 + x: 3744 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f0e8131f3a5a39c0800000000000000 + internalID: -3946742896486981389 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76F8\u6FE1\u4EE5\u6CAB" + rect: + serializedVersion: 2 + x: 3776 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d38a3dba401314330800000000000000 + internalID: 3693287065552922685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u76FE\u724C" + rect: + serializedVersion: 2 + x: 3808 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e58c2da5410bfc520800000000000000 + internalID: 2724589901052037214 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7709\u76EE\u4F20\u60C5" + rect: + serializedVersion: 2 + x: 3840 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8ff8f73e07f87950800000000000000 + internalID: 6447174507021533066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u5149\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3872 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46bb8d35d03e896f0800000000000000 + internalID: -677542097538466972 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u51B0\u4E4B\u5370" + rect: + serializedVersion: 2 + x: 3904 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1dd8a69cfad592f0800000000000000 + internalID: -966625766606840547 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u521A\u62F3\u5957" + rect: + serializedVersion: 2 + x: 3936 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0fd9ca673774c110800000000000000 + internalID: 1280279273978584845 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u5BD2\u4E4B\u5370" + rect: + serializedVersion: 2 + x: 3968 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ad2e0682e1d6e7f0800000000000000 + internalID: -583548330856010327 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u6B63\u7684\u5377\u8F74" + rect: + serializedVersion: 2 + x: 4000 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 858b4bcf8db53d030800000000000000 + internalID: 3518256721417255000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u6B66\u4E4B\u5251" + rect: + serializedVersion: 2 + x: 4032 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9321f70374bbe8df0800000000000000 + internalID: -175997420990164423 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u6B66\u6218\u7532" + rect: + serializedVersion: 2 + x: 4064 + y: 2624 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e89861e39619544c0800000000000000 + internalID: -4303873987683382898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u6B66\u76D4" + rect: + serializedVersion: 2 + x: 0 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62af7c30dca9bfac0800000000000000 + internalID: -3820289653571323354 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u6B66\u817F\u7532" + rect: + serializedVersion: 2 + x: 32 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: acba261edbd5787b0800000000000000 + internalID: -5222102172801258550 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u6B66\u8896\u7532" + rect: + serializedVersion: 2 + x: 64 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2153cdad6d3eeb420800000000000000 + internalID: 2647804142874801426 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u6B66\u9774" + rect: + serializedVersion: 2 + x: 96 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 013602d4fcc441450800000000000000 + internalID: 6058551851956069136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u864E\u97AD\u6D17\u9AD3\u9732" + rect: + serializedVersion: 2 + x: 128 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43447711f07311e20800000000000000 + internalID: 3319494938205832244 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u8A00\u6212" + rect: + serializedVersion: 2 + x: 160 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e82d54b5e7359d940800000000000000 + internalID: 5321376236877238926 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u8C79\u80CE\u6613\u7B4B\u4E38" + rect: + serializedVersion: 2 + x: 192 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 80c29753446ce12b0800000000000000 + internalID: -5611830089399849976 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u96EA\u4E4B\u5370" + rect: + serializedVersion: 2 + x: 224 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ab104f0ac24704c0800000000000000 + internalID: -4321411881832014944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u9B3C\u5B50\u6BCD\u7684\u9524\u67C4\u5B9D\u77F3" + rect: + serializedVersion: 2 + x: 256 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d247b7e33add73d50800000000000000 + internalID: 6717081062444069933 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u771F\u9F99\u6775" + rect: + serializedVersion: 2 + x: 288 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 011766638b8026ff0800000000000000 + internalID: -44463459040595696 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7729\u5149\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 320 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd55c4f5f8f5abc00800000000000000 + internalID: 917150543507117535 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7737\u4E16\u4E4B\u6CEA" + rect: + serializedVersion: 2 + x: 352 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b1e8ad1bb4004280800000000000000 + internalID: -9061237248566435403 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u773C\u6CEA\u6C34\u6676" + rect: + serializedVersion: 2 + x: 384 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6557f9f6d516e0a90800000000000000 + internalID: -7345826888262126250 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u773C\u775B\u7334" + rect: + serializedVersion: 2 + x: 416 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9aaf91834e1bbbe20800000000000000 + internalID: 3367480740141464233 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u773C\u955C\u7334" + rect: + serializedVersion: 2 + x: 448 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a9b6491f4ca1ca30800000000000000 + internalID: 4233854580431436200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77AC\u6740\u5203" + rect: + serializedVersion: 2 + x: 480 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98debeb49cf865bb0800000000000000 + internalID: -4947609045894959735 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77AC\u79FB\u94C3" + rect: + serializedVersion: 2 + x: 512 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7c8042ba2549acf0800000000000000 + internalID: -240585055406093188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77E5\u79CB\u9879\u94FE" + rect: + serializedVersion: 2 + x: 544 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0b5ca8e5a3de8610800000000000000 + internalID: 1625469225054001930 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77ED\u5F13" + rect: + serializedVersion: 2 + x: 576 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 93aad42ccc8cfa8e0800000000000000 + internalID: -1679903354227152327 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77ED\u5F29" + rect: + serializedVersion: 2 + x: 608 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99973bcc8fa23e8d0800000000000000 + internalID: -2818361693729228391 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77ED\u65A7" + rect: + serializedVersion: 2 + x: 640 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1aff148f3f9942b0800000000000000 + internalID: -5599769566510056933 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77ED\u6756" + rect: + serializedVersion: 2 + x: 672 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 324240cce5bc45b00800000000000000 + internalID: 816501040471090211 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77ED\u68CD" + rect: + serializedVersion: 2 + x: 704 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 831b63ab8eee41270800000000000000 + internalID: 8220457903181967672 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77ED\u706B\u67AA" + rect: + serializedVersion: 2 + x: 736 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a285ce8d712036b70800000000000000 + internalID: 8890952390806362154 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77ED\u94F2" + rect: + serializedVersion: 2 + x: 768 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75ed85210b74b4290800000000000000 + internalID: -7905145899371143593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u50CF\u4E4B\u9885" + rect: + serializedVersion: 2 + x: 800 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca184fcf23f889db0800000000000000 + internalID: -4784917154926132820 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u543C\u602A" + rect: + serializedVersion: 2 + x: 832 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3053b03d30ef33c70800000000000000 + internalID: 8949776176894391555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u6591\u9C7C" + rect: + serializedVersion: 2 + x: 864 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b835e7f1289a1d380800000000000000 + internalID: -8948184608269249653 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u6599" + rect: + serializedVersion: 2 + x: 896 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ecde458144e3a3e20800000000000000 + internalID: 3331043336580820430 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u65A7" + rect: + serializedVersion: 2 + x: 928 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67ac46d9f0ef88a30800000000000000 + internalID: 4217900394051062390 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u6881\u5FA1\u6C34\u6865" + rect: + serializedVersion: 2 + x: 960 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba8fd3597d6350260800000000000000 + internalID: 7063111890150226091 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u69B4\u7EA2\u67D3\u6599" + rect: + serializedVersion: 2 + x: 992 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d46a6a21373d6b7f0800000000000000 + internalID: -597057409392400819 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u69B4\u7EA2\u67D3\u8272\u5361" + rect: + serializedVersion: 2 + x: 1024 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40a8de9a0962669e0800000000000000 + internalID: -1628571812479792636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u7070\u7C89" + rect: + serializedVersion: 2 + x: 1056 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 246ed2ea72d38a740800000000000000 + internalID: 5163444213415536194 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u7891\u62D3\u7247" + rect: + serializedVersion: 2 + x: 1088 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c497df391888eb110800000000000000 + internalID: 1278609434334820684 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u94BA" + rect: + serializedVersion: 2 + x: 1120 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f04ffa10734146e60800000000000000 + internalID: 7954505068327203855 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u9525\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 1152 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07f02f92ca38aae90800000000000000 + internalID: -7013648694214783120 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u9525\u6212\u6307" + rect: + serializedVersion: 2 + x: 1184 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 403d6466cfbe90b00800000000000000 + internalID: 795426278487806724 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u9525\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1216 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3e65bc3488490490800000000000000 + internalID: -7779607148514415046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u9525\u79D8\u6CD5\u88E4" + rect: + serializedVersion: 2 + x: 1248 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3697c1154db15cf00800000000000000 + internalID: 1136345079688755555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u9525\u8170\u4F69" + rect: + serializedVersion: 2 + x: 1280 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13d269103fbfafb40800000000000000 + internalID: 5474965318144503089 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u9525\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1312 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bed44ee99e0971af0800000000000000 + internalID: -425712306695680533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u9B54\u738B\u5361\u72471" + rect: + serializedVersion: 2 + x: 1344 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e6e304a8acd01530800000000000000 + internalID: 3823798700501886694 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u9B54\u738B\u5361\u72472" + rect: + serializedVersion: 2 + x: 1376 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e235923d4c0ddd640800000000000000 + internalID: 5106467096282878766 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u9B54\u738B\u5361\u72473" + rect: + serializedVersion: 2 + x: 1408 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 18dea8722a0a10ff0800000000000000 + internalID: -71599500752654975 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u9B54\u738B\u5361\u72474" + rect: + serializedVersion: 2 + x: 1440 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0f3ff20ec8d66d00800000000000000 + internalID: 965697549442694923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u9B54\u738B\u5361\u72475" + rect: + serializedVersion: 2 + x: 1472 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e245ac04ed10b320800000000000000 + internalID: 2571588252530459364 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u9B54\u738B\u5361\u72476" + rect: + serializedVersion: 2 + x: 1504 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6303a5302a572d890800000000000000 + internalID: -7434750696133873610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u9B54\u738B\u5361\u72477" + rect: + serializedVersion: 2 + x: 1536 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 200b5e278d3800370800000000000000 + internalID: 8286768280025542658 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F3\u9B54\u738B\u5361\u72478" + rect: + serializedVersion: 2 + x: 1568 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 28a7cc0975aa839c0800000000000000 + internalID: -3947217780322043262 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F6\u73E0\u4E7E" + rect: + serializedVersion: 2 + x: 1600 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5a7095e946492e30800000000000000 + internalID: 4479188587594676828 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F6\u73E0\u5151" + rect: + serializedVersion: 2 + x: 1632 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0d808c302c9a4be0800000000000000 + internalID: -1492208664251953910 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F6\u73E0\u574E" + rect: + serializedVersion: 2 + x: 1664 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9404ce97d4e41ab10800000000000000 + internalID: 1990958604939444297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F6\u73E0\u5764" + rect: + serializedVersion: 2 + x: 1696 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3921db1bec2137460800000000000000 + internalID: 7238149705069040275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F6\u73E0\u5DFD" + rect: + serializedVersion: 2 + x: 1728 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c183a1c105a5b0630800000000000000 + internalID: 3894305602907289628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F6\u73E0\u79BB" + rect: + serializedVersion: 2 + x: 1760 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41588b8a82740aaa0800000000000000 + internalID: -6151838851033168620 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F6\u73E0\u826E" + rect: + serializedVersion: 2 + x: 1792 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 93da66dc9cc1e0c50800000000000000 + internalID: 6633270954223381817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77F6\u73E0\u9707" + rect: + serializedVersion: 2 + x: 1824 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a302619976acc29b0800000000000000 + internalID: -5103481731418808262 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u77FE\u77F3" + rect: + serializedVersion: 2 + x: 1856 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2cc6706f5fd7fcb0800000000000000 + internalID: -4830146474598282194 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7802\u5200\u950B\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 1888 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2fdf50e80bbe12d90800000000000000 + internalID: -7124153991993885198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7802\u5251\u5203\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 1920 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee9989879d1c6d800800000000000000 + internalID: 636909537094834670 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7802\u5B50\u6BCD\u65A7\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 1952 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90cea1061f5935d20800000000000000 + internalID: 3266119018705775625 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7802\u5B50\u6BCD\u9524\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 1984 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e20b8002b3b47340800000000000000 + internalID: 4860707474934268649 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7802\u6307\u73AF\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 2016 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 088bc1107e0b93110800000000000000 + internalID: 1241217678519875712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7802\u65A7\u5203\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 2048 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a252ac76dc7ec15a0800000000000000 + internalID: -6549104888707930838 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7802\u77F3" + rect: + serializedVersion: 2 + x: 2080 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 086118e8c89c3d690800000000000000 + internalID: -7578492142410983808 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7802\u7CD6" + rect: + serializedVersion: 2 + x: 2112 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b47d97c473bfd0470800000000000000 + internalID: 8362616298021705547 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7802\u91D1\u521A\u6775\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 2144 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d4f4e23addc28af0800000000000000 + internalID: -395527480214752046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7802\u9524\u5934\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 2176 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8b00f2e2ae90eff0800000000000000 + internalID: -8832776825468020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7802\u9E33\u9E2F\u5200\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 2208 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ab3d68331a3152e0800000000000000 + internalID: -2138864493798802526 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7802\u9E33\u9E2F\u5251\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 2240 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5241656b98dce53a0800000000000000 + internalID: -6674671606363188187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7814\u94B5" + rect: + serializedVersion: 2 + x: 2272 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9d848197b20c98a0800000000000000 + internalID: -6297155191527141985 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u781A" + rect: + serializedVersion: 2 + x: 2304 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9067977e9cb453750800000000000000 + internalID: 6284012185609401865 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u519B\u4E03\u6740\u7684\u7259\u9F7F" + rect: + serializedVersion: 2 + x: 2336 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4c7920bc823615f0800000000000000 + internalID: -786385505097253811 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u519B\u5305" + rect: + serializedVersion: 2 + x: 2368 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ca646cb6c5211da0800000000000000 + internalID: -5975953695049487674 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u519B\u6212" + rect: + serializedVersion: 2 + x: 2400 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3f12ffa02d73a9e0800000000000000 + internalID: -1611306662324199618 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u57CE\u67AA" + rect: + serializedVersion: 2 + x: 2432 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e9d66ca34480aeee0800000000000000 + internalID: -1231162458995528290 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u5929\u6212" + rect: + serializedVersion: 2 + x: 2464 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b900baf48e1db0a80800000000000000 + internalID: -8499469076032454501 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u635F\u7684\u5251" + rect: + serializedVersion: 2 + x: 2496 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a8e3c063d5f729e0800000000000000 + internalID: -1646076850570270560 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u6BDB\u76AE" + rect: + serializedVersion: 2 + x: 2528 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2437c4bcdc087320800000000000000 + internalID: 2555806930598048814 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u715E\u5200" + rect: + serializedVersion: 2 + x: 2560 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41264bca94771f800800000000000000 + internalID: 644427380004512276 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u788E\u6C34\u6676" + rect: + serializedVersion: 2 + x: 2592 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0482cb0e0cca9b2e0800000000000000 + internalID: -2109465006042240960 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u788E\u7684\u5370\u8BB0" + rect: + serializedVersion: 2 + x: 2624 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 28644ddbe90cd69b0800000000000000 + internalID: -5085196616209250686 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u7A7A\u4EE4" + rect: + serializedVersion: 2 + x: 2656 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83e24b24b71a31ed0800000000000000 + internalID: -2444432621959893448 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u7A7A\u5F39" + rect: + serializedVersion: 2 + x: 2688 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 269c15d27b52798a0800000000000000 + internalID: -6298524085184771742 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u7F61\u7BAD" + rect: + serializedVersion: 2 + x: 2720 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7edb5483de3036cd0800000000000000 + internalID: -2566203045284823577 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u80C6\u5E7B\u5F71" + rect: + serializedVersion: 2 + x: 2752 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2bed333b3ce97a20800000000000000 + internalID: 3060737160781884207 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u91CE" + rect: + serializedVersion: 2 + x: 2784 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bdc9dfa257b118550800000000000000 + internalID: 6161235955265936603 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u9635\u5200" + rect: + serializedVersion: 2 + x: 2816 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c15db32df8962a5d0800000000000000 + internalID: -3052761530975398628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u9635\u5305" + rect: + serializedVersion: 2 + x: 2848 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c221161c73134600800000000000000 + internalID: 451225811334275781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7834\u9B54\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2880 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2eafda7bbcc82dbe0800000000000000 + internalID: -1453944923099366686 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u786C\u5E01" + rect: + serializedVersion: 2 + x: 2912 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4481d8c69e9c0a500800000000000000 + internalID: 405545970849093700 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u786C\u7532\u7B26" + rect: + serializedVersion: 2 + x: 2944 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 26f69d607c7c3cb40800000000000000 + internalID: 5459426830930505570 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u788E\u68A6\u5200" + rect: + serializedVersion: 2 + x: 2976 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1697f058f806f74e0800000000000000 + internalID: -1981759141490755231 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u788E\u6A59\u7389" + rect: + serializedVersion: 2 + x: 3008 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e4c3b212ca88d280800000000000000 + internalID: -9018305687667358489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u788E\u7075\u9557" + rect: + serializedVersion: 2 + x: 3040 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e963354b99ee5f620800000000000000 + internalID: 2807412286658131614 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u788E\u7389\u4E39\u7B80" + rect: + serializedVersion: 2 + x: 3072 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 330c18484b5339450800000000000000 + internalID: 6094273770195894323 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u788E\u77F3" + rect: + serializedVersion: 2 + x: 3104 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25c94f503a0d44690800000000000000 + internalID: -7618735271005873070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u788E\u7D2B\u7389" + rect: + serializedVersion: 2 + x: 3136 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8129178bdbff2ff30800000000000000 + internalID: 4608026559061791256 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u788E\u7FE0\u7389" + rect: + serializedVersion: 2 + x: 3168 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d2494169c469ca10800000000000000 + internalID: 1930184731388363479 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u788E\u84DD\u7389" + rect: + serializedVersion: 2 + x: 3200 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7816c35f06734a100800000000000000 + internalID: 118280379789238663 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u788E\u8D64\u7389" + rect: + serializedVersion: 2 + x: 3232 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 01c0f07d3cfd5b380800000000000000 + internalID: -8956006251736658928 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u788E\u9752\u7389" + rect: + serializedVersion: 2 + x: 3264 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13f1f6639377d7150800000000000000 + internalID: 5871980576771088177 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u788E\u9AA8" + rect: + serializedVersion: 2 + x: 3296 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5cdbf1d4f52304640800000000000000 + internalID: 5062101366061645253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u788E\u9B44\u7B26\u5370" + rect: + serializedVersion: 2 + x: 3328 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d3bab37db496a5260800000000000000 + internalID: 7087092738075372349 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u788E\u9EC4\u7389" + rect: + serializedVersion: 2 + x: 3360 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 31aa80d458d0b8720800000000000000 + internalID: 2849386055416195603 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78A7\u6C34\u83B2\u534E" + rect: + serializedVersion: 2 + x: 3392 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39d7719bcc495b150800000000000000 + internalID: 5887775694856355219 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78A7\u7389\u73E0" + rect: + serializedVersion: 2 + x: 3424 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5affecee5a8dc3e90800000000000000 + internalID: -7044517509926551643 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78A7\u7A7A\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3456 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6face97ecb9607310800000000000000 + internalID: 1400735744172935926 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78A7\u82D4\u592A\u6E56\u77F3" + rect: + serializedVersion: 2 + x: 3488 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e30f2159e341a62c0800000000000000 + internalID: -4437712223798628290 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78A7\u843D\u5251" + rect: + serializedVersion: 2 + x: 3520 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edf93dd42510415e0800000000000000 + internalID: -1939924086485180450 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78A7\u8840\u676F" + rect: + serializedVersion: 2 + x: 3552 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 64880126641e56f70800000000000000 + internalID: 9179991107873835078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78A7\u8840\u7CBE" + rect: + serializedVersion: 2 + x: 3584 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae9fe85c2e0baccc0800000000000000 + internalID: -3689942456653121046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78C1\u5200\u950B\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3616 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 359f7e1ccdde1d3c0800000000000000 + internalID: -4336423433779283629 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78C1\u5251\u5203\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3648 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87bc5a8c009b22e70800000000000000 + internalID: 9089030411004529528 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78C1\u5668\u788E\u7247" + rect: + serializedVersion: 2 + x: 3680 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 866377d95e7bfddf0800000000000000 + internalID: -153201665490078104 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78C1\u5B50\u6BCD\u65A7\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3712 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39a42f78676645ca0800000000000000 + internalID: -6029081341869274477 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78C1\u5B50\u6BCD\u9524\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3744 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bcfa5bf8b2fb844b0800000000000000 + internalID: -5455900754743808053 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78C1\u6307\u73AF\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3776 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aef2ee2cd3471e510800000000000000 + internalID: 1576669153168601066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78C1\u65A7\u5203\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3808 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c12151a1ca0d5860800000000000000 + internalID: 7520178779530011080 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78C1\u91D1\u521A\u6775\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3840 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 876b457e923183130800000000000000 + internalID: 3546605777249941112 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78C1\u9524\u5934\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3872 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50bfcebed5e90d360800000000000000 + internalID: 7192422731138005765 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78C1\u9E33\u9E2F\u5200\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3904 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8bfc56a9858521960800000000000000 + internalID: 7571211061133955000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78C1\u9E33\u9E2F\u5251\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 3936 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ef90f3d52c665bb0800000000000000 + internalID: -4947648230894559264 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78D0\u7532\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3968 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 76f4f923a76c46f70800000000000000 + internalID: 9179680168625524583 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78D0\u7532\u5B9D\u7389" + rect: + serializedVersion: 2 + x: 4000 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77deebdf8f1d11f30800000000000000 + internalID: 4544644366332783991 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78D0\u77F3\u5DE8\u9524" + rect: + serializedVersion: 2 + x: 4032 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf0f5db62f915ddf0800000000000000 + internalID: -156190083092451076 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78D0\u9690\u5C71\u95E8" + rect: + serializedVersion: 2 + x: 4064 + y: 2592 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 405147e7b9c1a6ee0800000000000000 + internalID: -1267168890984327932 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u5C5E\u6027\u589E\u5F3A1\u7EA7" + rect: + serializedVersion: 2 + x: 0 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1beb882ab64c085d0800000000000000 + internalID: -3062231780044521807 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u5C5E\u6027\u589E\u5F3A2\u7EA7" + rect: + serializedVersion: 2 + x: 32 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c85a671212932dda0800000000000000 + internalID: -5921607745580653172 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u5C5E\u6027\u589E\u5F3A3\u7EA7" + rect: + serializedVersion: 2 + x: 64 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2a4b235072f685d0800000000000000 + internalID: -3060492332506068438 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u6CD5\u672F\u653B\u51FB1\u7EA7" + rect: + serializedVersion: 2 + x: 96 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 00a9b7af4aa1a3a50800000000000000 + internalID: 6501538307942095360 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u6CD5\u672F\u653B\u51FB2\u7EA7" + rect: + serializedVersion: 2 + x: 128 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24cd5797ebf054960800000000000000 + internalID: 7585486458131438658 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u6CD5\u672F\u653B\u51FB3\u7EA7" + rect: + serializedVersion: 2 + x: 160 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fcaec66d3545cc0e0800000000000000 + internalID: -2248329394908239153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u7269\u7406\u653B\u51FB1\u7EA7" + rect: + serializedVersion: 2 + x: 192 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4236f9bf77845f940800000000000000 + internalID: 5329245414222684964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u7269\u7406\u653B\u51FB2\u7EA7" + rect: + serializedVersion: 2 + x: 224 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f69e0bde63c900bd0800000000000000 + internalID: -2665959219673372305 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u7269\u7406\u653B\u51FB3\u7EA7" + rect: + serializedVersion: 2 + x: 256 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0892f29c7a0fe1c80800000000000000 + internalID: -8349972055672804992 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u7279\u6B8A\u5C5E\u60271\u7EA7" + rect: + serializedVersion: 2 + x: 288 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56399a8cbd478e6a0800000000000000 + internalID: -6419752781503425691 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u7279\u6B8A\u5C5E\u60272\u7EA7" + rect: + serializedVersion: 2 + x: 320 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0dcea2a12f74a1680800000000000000 + internalID: -8783629018086052656 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u7279\u6B8A\u5C5E\u60273\u7EA7" + rect: + serializedVersion: 2 + x: 352 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9787bb97bb8e0d70800000000000000 + internalID: 9011293525122713498 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u751F\u547D\u589E\u5F3A1\u7EA7" + rect: + serializedVersion: 2 + x: 384 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 95207f68347d146d0800000000000000 + internalID: -3007886391079665063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u751F\u547D\u589E\u5F3A2\u7EA7" + rect: + serializedVersion: 2 + x: 416 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c93d77e440c678c0800000000000000 + internalID: -4001799816698054208 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u5200\u77F3\u751F\u547D\u589E\u5F3A3\u7EA7" + rect: + serializedVersion: 2 + x: 448 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 730eb50981513b340800000000000000 + internalID: 4878266016617717815 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u78E8\u77F3\u7C89" + rect: + serializedVersion: 2 + x: 480 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd64f7e5334fc0bf0800000000000000 + internalID: -356641769003202851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u793C\u5FB7\u4E4B\u5FBD" + rect: + serializedVersion: 2 + x: 512 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f51c90f29ddc6ce90800000000000000 + internalID: -7005685837647462049 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u793C\u5FB7\u4E4B\u7AE0" + rect: + serializedVersion: 2 + x: 544 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3497f7ae715ea0b20800000000000000 + internalID: 3101543184279238979 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7948\u613F\u9999" + rect: + serializedVersion: 2 + x: 576 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2a856df5efbb7f60800000000000000 + internalID: 8033225354865117738 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7956\u9F99\u4F69" + rect: + serializedVersion: 2 + x: 608 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df41ffbccf6956e10800000000000000 + internalID: 2190322806284031229 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7956\u9F99\u5341\u5B57\u52CB\u7AE0" + rect: + serializedVersion: 2 + x: 640 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb3898e1d9f539690800000000000000 + internalID: -7596623018017061953 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7956\u9F99\u536B\u58EB\u52CB\u7AE0" + rect: + serializedVersion: 2 + x: 672 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f249944879fc8eb90800000000000000 + internalID: -7212286553567423441 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7956\u9F99\u537F\u4E91\u52CB\u7AE0" + rect: + serializedVersion: 2 + x: 704 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 26375a8e8a2122f90800000000000000 + internalID: -6979995955803884702 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7956\u9F99\u57CE\u7CBE\u5143" + rect: + serializedVersion: 2 + x: 736 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8992b1f381fabd70800000000000000 + internalID: 9059819149407197578 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7956\u9F99\u5B9D\u9F0E\u52CB\u7AE0" + rect: + serializedVersion: 2 + x: 768 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b335f267ae99d8920800000000000000 + internalID: 2994218559555457851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7956\u9F99\u666F\u661F\u52CB\u7AE0" + rect: + serializedVersion: 2 + x: 800 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 980f40a76f5a6f590800000000000000 + internalID: -7640737239759785847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7956\u9F99\u79D8\u85CF" + rect: + serializedVersion: 2 + x: 832 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9fac244f8a49333e0800000000000000 + internalID: -2075151549914232071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795D\u4F60\u751F\u65E5\u5FEB\u4E50" + rect: + serializedVersion: 2 + x: 864 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ce39f649c1d764b0800000000000000 + internalID: -5447154561871954239 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795D\u798F\u77F3" + rect: + serializedVersion: 2 + x: 896 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8965d346332fbc00800000000000000 + internalID: 918491564980136335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795D\u878D\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 928 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7abb10bbae2bec5f0800000000000000 + internalID: -734452967985267801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795D\u878D\u9B42\u5B88" + rect: + serializedVersion: 2 + x: 960 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: facdfd7ba97cfa740800000000000000 + internalID: 5165566764941040815 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u4ED9\u9C7C" + rect: + serializedVersion: 2 + x: 992 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48d0fb14d70400490800000000000000 + internalID: -7782149249378087548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u4F51" + rect: + serializedVersion: 2 + x: 1024 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13eac9f9e3e67c130800000000000000 + internalID: 3586956843468762673 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u4F51\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1056 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf49b90b4f9baeb60800000000000000 + internalID: 7776232167194727675 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u50CF" + rect: + serializedVersion: 2 + x: 1088 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6301d71b58563af40800000000000000 + internalID: 5738541975082962998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u5149\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1120 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 01b692680459dcfd0800000000000000 + internalID: -2320034128664630512 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u519C\u62A4\u4F51\u4E39" + rect: + serializedVersion: 2 + x: 1152 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03f126df9fb29a4f0800000000000000 + internalID: -817073504693117136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u519C\u7425\u73C0\u773C" + rect: + serializedVersion: 2 + x: 1184 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71505e6b509ef5990800000000000000 + internalID: -7394935852366494441 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u519C\u767E\u8349\u4E38" + rect: + serializedVersion: 2 + x: 1216 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81669b0d4c8a099e0800000000000000 + internalID: -1616606702957140456 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u519C\u9F0E" + rect: + serializedVersion: 2 + x: 1248 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 212120cc37784c530800000000000000 + internalID: 3874370510859145746 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u519C\u9F0E_2" + rect: + serializedVersion: 2 + x: 1280 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c14c30ab802ca050800000000000000 + internalID: 5813057003089314246 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u519C\u9F0E_3" + rect: + serializedVersion: 2 + x: 1312 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f4279de4d6e6d680800000000000000 + internalID: -8730537025417566992 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u529B\u4E38" + rect: + serializedVersion: 2 + x: 1344 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fd9651dcfbfb66b0800000000000000 + internalID: -5301867073036182024 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u5668\u4E4B\u9B42" + rect: + serializedVersion: 2 + x: 1376 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c32f6829cc5ee7790800000000000000 + internalID: -7530328860122484164 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u5723\u706B\u79CD" + rect: + serializedVersion: 2 + x: 1408 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 28a246b29801fa3f0800000000000000 + internalID: -887472420244149630 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u5A01\u6218\u7532" + rect: + serializedVersion: 2 + x: 1440 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 620d44e9ae626ff40800000000000000 + internalID: 5761835562386640934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u5A01\u817F\u7532" + rect: + serializedVersion: 2 + x: 1472 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b213b9ec2f71f0f50800000000000000 + internalID: 6849719889869615403 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u5A01\u8896\u7532" + rect: + serializedVersion: 2 + x: 1504 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9ece29401ff08d40800000000000000 + internalID: 5584743983351778975 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u5A01\u957F\u5200" + rect: + serializedVersion: 2 + x: 1536 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7199ab36a5a136f00800000000000000 + internalID: 1108758908785826071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u5A01\u9774" + rect: + serializedVersion: 2 + x: 1568 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61a42ffeb0a19aab0800000000000000 + internalID: -4996433673018258922 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u62A4\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1600 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a6e5cb2e5f91ee00800000000000000 + internalID: 1072313413101020837 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u660E\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1632 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50a72a73ff8621590800000000000000 + internalID: -7704980567118153211 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u6708\u4E4B\u5FBD\xB7\u62A4" + rect: + serializedVersion: 2 + x: 1664 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ec6e20d23e46c720800000000000000 + internalID: 2866064193015934183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u6708\u5934\u914D\u4EF6" + rect: + serializedVersion: 2 + x: 1696 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de1e403036bbd9950800000000000000 + internalID: 6457523474645967341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u6708\u6212\u5B50\u914D\u4EF6" + rect: + serializedVersion: 2 + x: 1728 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b49d18ba50e6a800800000000000000 + internalID: 623432278678017204 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u6708\u9879\u94FE\u914D\u4EF6" + rect: + serializedVersion: 2 + x: 1760 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 626c3ec323a2f9130800000000000000 + internalID: 3575623024413754918 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u6B66\u9547\u5929\u5F13" + rect: + serializedVersion: 2 + x: 1792 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bdc31f85d597f66f0800000000000000 + internalID: -689198776133272357 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u7334\u609F\u7A7A" + rect: + serializedVersion: 2 + x: 1824 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a15166b331d2fc00800000000000000 + internalID: 933038092852482464 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u73BA\u7075\u706F" + rect: + serializedVersion: 2 + x: 1856 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a235e19a4678f0ad0800000000000000 + internalID: -2733817582386785494 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u76EE\u679C" + rect: + serializedVersion: 2 + x: 1888 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 80d6b3455b0ddbbe0800000000000000 + internalID: -1459781226977334008 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u76EE\u6C34" + rect: + serializedVersion: 2 + x: 1920 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f485b65ae3e653700800000000000000 + internalID: 519442547373463631 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u79C0\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1952 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7b2795a42eff12d0800000000000000 + internalID: -3305644168116229249 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u79D8\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1984 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 195cd1df917eb9fc0800000000000000 + internalID: -3486939387661531759 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u79D8\u56FE\u817E" + rect: + serializedVersion: 2 + x: 2016 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a6244df8ceea81a0800000000000000 + internalID: -6806365339807111519 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u79D8\u6676\u4F53" + rect: + serializedVersion: 2 + x: 2048 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8760e68702c028720800000000000000 + internalID: 2846851248050538104 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u79D8\u670D\u9970" + rect: + serializedVersion: 2 + x: 2080 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4aeae3bf947f88430800000000000000 + internalID: 3785547383924764324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u79D8\u7684\u4E66\u7C4D" + rect: + serializedVersion: 2 + x: 2112 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c61403e26c079dd50800000000000000 + internalID: 6762560311954260332 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u79D8\u7684\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 2144 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1d65da4e89dcdf10800000000000000 + internalID: 2295949115216194845 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u79D8\u7B79\u7801\u7BB1" + rect: + serializedVersion: 2 + x: 2176 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec5d5cd086b742890800000000000000 + internalID: -7483720993945037362 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u79D8\u7B79\u7801\u7BB1\u5B5032" + rect: + serializedVersion: 2 + x: 2208 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc684368a4f5159f0800000000000000 + internalID: -481498911468124467 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u79D8\u82B1\u74E3" + rect: + serializedVersion: 2 + x: 2240 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b61f4b2de4cc278e0800000000000000 + internalID: -1697069470650666645 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u8574\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 2272 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90f89ceca5e311380800000000000000 + internalID: -9002345620399616247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u8C0F\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2304 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5c239a4349ecd410800000000000000 + internalID: 1503332850858142812 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u8F85\u62A4\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 2336 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8ffa449d19a70920800000000000000 + internalID: 2956517624899108751 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u8F85\u9B54\u529B\u7B26" + rect: + serializedVersion: 2 + x: 2368 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91264ca28818b0880800000000000000 + internalID: -8643672637974486503 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u955C" + rect: + serializedVersion: 2 + x: 2400 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5dc7b268edcecc880800000000000000 + internalID: -8589229948824486699 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u97F5" + rect: + serializedVersion: 2 + x: 2432 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc71a8c10357b3cf0800000000000000 + internalID: -271494503028090932 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u97F5\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 2464 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df49bd5bf40e94be0800000000000000 + internalID: -1492415168538503939 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u97F5\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 2496 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6a9ab7706daa8990800000000000000 + internalID: -7382898009283323282 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u97F5\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 2528 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 781a5240b61eb0cd0800000000000000 + internalID: -2590729310874263161 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u97F5\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 2560 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8cf97086b2aa5ca0800000000000000 + internalID: -6027326246558761846 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u97F5\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 2592 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a19a157805e53720800000000000000 + internalID: 2825416165732028832 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u795E\u9A6C\u523B\u5370" + rect: + serializedVersion: 2 + x: 2624 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e00b944baf05f170800000000000000 + internalID: 8211486723844800743 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7965\u4E50\u79C0\u5B9E" + rect: + serializedVersion: 2 + x: 2656 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32db85f4c2490a870800000000000000 + internalID: 8692110198855744803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7965\u4E91" + rect: + serializedVersion: 2 + x: 2688 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8b5a8a542baccf60800000000000000 + internalID: 8056002006085163914 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u796D\u7940\u4F7F\u5F92\u9AD8\u7EA7" + rect: + serializedVersion: 2 + x: 2720 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 466c8836ffae9d080800000000000000 + internalID: -9162033584301095324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7981\u5FCC\u4E4B\u6D77" + rect: + serializedVersion: 2 + x: 2752 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 901e4fcb8fa16ffa0800000000000000 + internalID: -5767392617176964855 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7984" + rect: + serializedVersion: 2 + x: 2784 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c9c4717b738b73d0800000000000000 + internalID: -3207825743363651128 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7985\u5B9A\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2816 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b67cc040e12946460800000000000000 + internalID: 7234067559078479723 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7985\u5FC3\u4E91\u96F7\u5C4F" + rect: + serializedVersion: 2 + x: 2848 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1987b1fd66f4d1b0800000000000000 + internalID: -5632606281866442468 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7985\u610F\u5723\u7075" + rect: + serializedVersion: 2 + x: 2880 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b4b20ebf705acaa0800000000000000 + internalID: -6140006632387332937 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u798F" + rect: + serializedVersion: 2 + x: 2912 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5ea7a36da9b727e0800000000000000 + internalID: -1790258172504068517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u798F\u4E34\u95E8" + rect: + serializedVersion: 2 + x: 2944 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 652d96fc209362130800000000000000 + internalID: 3541580841206010454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u798F\u6CFD\u7EF5\u957F" + rect: + serializedVersion: 2 + x: 2976 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ead6e960929ca0b0800000000000000 + internalID: -5716032678090319130 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u798F\u725B" + rect: + serializedVersion: 2 + x: 3008 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9926272482d942200800000000000000 + internalID: 154421083476484761 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u798F\u7984\u4E39\u6838" + rect: + serializedVersion: 2 + x: 3040 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1de5a7de79a2c2670800000000000000 + internalID: 8515227827463413457 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u798F\u7984\u5B9D\u9274" + rect: + serializedVersion: 2 + x: 3072 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ab118c878cf62590800000000000000 + internalID: -7699188853835228254 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79BB\u4E4B\u8868\u5FBD" + rect: + serializedVersion: 2 + x: 3104 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33b9472b4a4433d10800000000000000 + internalID: 2104100925071465267 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79BB\u4E4B\u9B42" + rect: + serializedVersion: 2 + x: 3136 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c180028cc8a60fba0800000000000000 + internalID: -6057224345927808996 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79BB\u522B\u97AD" + rect: + serializedVersion: 2 + x: 3168 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97cb2c8af296869a0800000000000000 + internalID: -6239621630306108295 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79BD\u517D\u56DE\u8840\u4E39" + rect: + serializedVersion: 2 + x: 3200 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8646464911cc03480800000000000000 + internalID: -8921406485944834968 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79C0\u624D\u8170\u4F69" + rect: + serializedVersion: 2 + x: 3232 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a53bc206f163bdd0800000000000000 + internalID: -2471524061259549275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79CB" + rect: + serializedVersion: 2 + x: 3264 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e31feb15455bae420800000000000000 + internalID: 2660137903669047614 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79CB\u5200\u9C7C\u80E7\u5200" + rect: + serializedVersion: 2 + x: 3296 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ba34e2742563b810800000000000000 + internalID: 1779877484962265779 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79CB\u5C71\u6E05\u8FDC\u56FE" + rect: + serializedVersion: 2 + x: 3328 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77832828637a490b0800000000000000 + internalID: -5722765373921413001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79CB\u5C71\u95EE\u9053\u56FE" + rect: + serializedVersion: 2 + x: 3360 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9577a990557fc1660800000000000000 + internalID: 7358027835821946713 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79CB\u666F\u5C71\u6C34\u56FE" + rect: + serializedVersion: 2 + x: 3392 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d74302785439589b0800000000000000 + internalID: -5078491077961304963 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u5236\u4E5D\u9F99\u6563" + rect: + serializedVersion: 2 + x: 3424 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f06a53c7dd8b70c30800000000000000 + internalID: 4325629228523824655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u5236\u6D3B\u8840\u6563" + rect: + serializedVersion: 2 + x: 3456 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d315252c654739e0800000000000000 + internalID: -1641767208371285035 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u5236\u8FD8\u7075\u6C34" + rect: + serializedVersion: 2 + x: 3488 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a6a76b031e785650800000000000000 + internalID: 6221861505473160865 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u5B9D\u5377\u8F74" + rect: + serializedVersion: 2 + x: 3520 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fbd81d0bd8fe61570800000000000000 + internalID: 8437194343761153471 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u5B9D\u85CF\u56FE\u6B8B\u7247" + rect: + serializedVersion: 2 + x: 3552 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11f672aa5163596c0800000000000000 + internalID: -4137341215993008367 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u5B9D\u98DE\u5251" + rect: + serializedVersion: 2 + x: 3584 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87c34da1718a78d40800000000000000 + internalID: 5586618679964220536 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u6CD5\u5C65" + rect: + serializedVersion: 2 + x: 3616 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee64393962c9f58b0800000000000000 + internalID: -5161234958444706066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u6CD5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3648 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1bd87e2d1a6760500800000000000000 + internalID: 362107257450106289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u6CD5\u888D" + rect: + serializedVersion: 2 + x: 3680 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e13aabf851d928b0800000000000000 + internalID: -5176376116576112159 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u6CD5\u88E4" + rect: + serializedVersion: 2 + x: 3712 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bcfc4a91534295460800000000000000 + internalID: 7230850487202140107 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u94F6\u5F39" + rect: + serializedVersion: 2 + x: 3744 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af76e4ee4fe564de0800000000000000 + internalID: -1349286632287737862 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u94F6\u77E2" + rect: + serializedVersion: 2 + x: 3776 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 93ad74d23418806a0800000000000000 + internalID: -6482789538077353415 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u94F6\u80F8\u7532" + rect: + serializedVersion: 2 + x: 3808 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5dd8a5fd59ed91e0800000000000000 + internalID: -2189337254069478053 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u94F6\u817F\u7532" + rect: + serializedVersion: 2 + x: 3840 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a88b8e1fbe11436e0800000000000000 + internalID: -1858841041123624822 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u94F6\u8896\u7532" + rect: + serializedVersion: 2 + x: 3872 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b48f4d08ed52b67f0800000000000000 + internalID: -618358886258902965 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u94F6\u952D" + rect: + serializedVersion: 2 + x: 3904 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3c5617adafb592e0800000000000000 + internalID: -2119577297054442437 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u94F6\u9774" + rect: + serializedVersion: 2 + x: 3936 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43a9b2bc7067280c0800000000000000 + internalID: -4574964495609521612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79D8\u94F6\u9774\u523A" + rect: + serializedVersion: 2 + x: 3968 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75992e23b165973e0800000000000000 + internalID: -2055517080100103849 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79E6\u7687" + rect: + serializedVersion: 2 + x: 4000 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29b9515e2bb056d00800000000000000 + internalID: 965190558116322194 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79EF\u7FBD\u57CE\u7CBE\u5143" + rect: + serializedVersion: 2 + x: 4032 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04358a188c42bdcf0800000000000000 + internalID: -226546912664726720 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u79EF\u8840\u7EA2\u7389\u5760" + rect: + serializedVersion: 2 + x: 4064 + y: 2560 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b5259a16c7b33d90800000000000000 + internalID: -7119144524465232462 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7A7A\u5E7D\u9879\u94FE" + rect: + serializedVersion: 2 + x: 0 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 896b12f8880a374f0800000000000000 + internalID: -832144997756062056 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7A7A\u660E\u4F69" + rect: + serializedVersion: 2 + x: 32 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 843d49b2a4d1ecdf0800000000000000 + internalID: -158156732515429560 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7A7A\u7075\u65A7" + rect: + serializedVersion: 2 + x: 64 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c35573100807a9680800000000000000 + internalID: -8747555631135238852 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7A7A\u7075\u9879\u94FE" + rect: + serializedVersion: 2 + x: 96 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3727fc9af196f5280800000000000000 + internalID: -9052401141277560205 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7A7A\u73BB\u7483\u74F6" + rect: + serializedVersion: 2 + x: 128 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52ff33c9fba834290800000000000000 + internalID: -7907323965168419035 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7A7F\u4E91\u4EE4" + rect: + serializedVersion: 2 + x: 160 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2dec387a308a4f70800000000000000 + internalID: 9172284579707153711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7A7F\u4E91\u5F13" + rect: + serializedVersion: 2 + x: 192 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 947747205ad57e0c0800000000000000 + internalID: -4546562335515052215 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7A7F\u5C71\u7532" + rect: + serializedVersion: 2 + x: 224 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf29a2f4427b1b9a0800000000000000 + internalID: -6218988243847048453 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7A88\u9E1F" + rect: + serializedVersion: 2 + x: 256 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c48bb533e1220cc80800000000000000 + internalID: -8304600199765182388 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7AA6\u5C14\u6566\u8138\u8C31" + rect: + serializedVersion: 2 + x: 288 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bcce77be2508af810800000000000000 + internalID: 1799892094714113227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ADE\u9009_a\u7EC4_100w\u7EA7\u522B_\u5151\u5956\u9053\u5177" + rect: + serializedVersion: 2 + x: 320 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0bf455938c3966730800000000000000 + internalID: 3992040607875157936 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ADE\u9009_a\u7EC4_10w\u7EA7\u522B_\u5151\u5956\u9053\u5177" + rect: + serializedVersion: 2 + x: 352 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b97d5a2bbeb998f0800000000000000 + internalID: -533185369787762251 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ADE\u9009_a\u7EC4_20w\u7EA7\u522B_\u5151\u5956\u9053\u5177" + rect: + serializedVersion: 2 + x: 384 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3319545b1265c03c0800000000000000 + internalID: -4392040833817931469 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ADE\u9009_a\u7EC4_50w\u7EA7\u522B_\u5151\u5956\u9053\u5177" + rect: + serializedVersion: 2 + x: 416 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f1c044ac43b43f20800000000000000 + internalID: 3401540760326160882 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ADE\u9009_a\u7EC4_\u7ADE\u9009\u6743\u9053\u5177\uFF08\u7269\u54C1a\uFF09" + rect: + serializedVersion: 2 + x: 448 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f768d06855e41d3e0800000000000000 + internalID: -2030755827739163009 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ADE\u9009_a\u7EC4_\u7ADE\u9009\u6743\u9053\u5177\uFF08\u7269\u54C1a\uFF09\u526F\u672C" + rect: + serializedVersion: 2 + x: 480 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71ac1a2c7488ee220800000000000000 + internalID: 2517099083536124439 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ADE\u9009_a\u7EC4_\u7ADE\u9009\u6743\u9053\u5177\uFF08\u7269\u54C1b\uFF09\u526F\u672C" + rect: + serializedVersion: 2 + x: 512 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bdc480b799324de30800000000000000 + internalID: 4527282667515301083 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ADE\u9009_b\u7EC4_100w\u7EA7\u522B_\u5151\u5956\u9053\u5177" + rect: + serializedVersion: 2 + x: 544 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ada7386b292dec90800000000000000 + internalID: -7139004567903556187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ADE\u9009_b\u7EC4_10w\u7EA7\u522B_\u5151\u5956\u9053\u5177" + rect: + serializedVersion: 2 + x: 576 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4867f821c222764b0800000000000000 + internalID: -5447347651596028284 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ADE\u9009_b\u7EC4_20w\u7EA7\u522B_\u5151\u5956\u9053\u5177" + rect: + serializedVersion: 2 + x: 608 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbe7524d9be2841e0800000000000000 + internalID: -2213467841189544259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ADE\u9009_b\u7EC4_50w\u7EA7\u522B_\u5151\u5956\u9053\u5177" + rect: + serializedVersion: 2 + x: 640 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ccb795ab7c0824080800000000000000 + internalID: -9204653093078598708 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ADE\u9009_b\u7EC4_\u7ADE\u9009\u6743\u9053\u5177\uFF08\u7269\u54C1b\uFF09" + rect: + serializedVersion: 2 + x: 672 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b82f895de51498e0800000000000000 + internalID: -1687699851203106634 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7AE0\u9C7C\u7684\u89E6\u624B" + rect: + serializedVersion: 2 + x: 704 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 209f77434b0635990800000000000000 + internalID: -7398463435748935422 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7AE0\u9C7C\u9F99\u602A\u5750\u9A91" + rect: + serializedVersion: 2 + x: 736 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a19da5bfd94096bc0800000000000000 + internalID: -3789492534882150118 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7AE5\u5B50\u89C2\u6F6E\u9910\u76D8" + rect: + serializedVersion: 2 + x: 768 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3002b8cd6bc2ea490800000000000000 + internalID: -7733194346252787709 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7AEF\u5348\u7ADE\u6E21\u9910\u76D8" + rect: + serializedVersion: 2 + x: 800 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 004a64c425ce49700800000000000000 + internalID: 546321293029843968 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7AF9\u5200" + rect: + serializedVersion: 2 + x: 832 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 150927858149ef190800000000000000 + internalID: -7926735461841465263 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7AF9\u873B\u8713" + rect: + serializedVersion: 2 + x: 864 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a692d251309803d10800000000000000 + internalID: 2103331672315210090 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7AF9\u96D5\u9999\u7B52" + rect: + serializedVersion: 2 + x: 896 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d80fd7d328a79da0800000000000000 + internalID: -5938092711765669676 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B11\u9189\u4E66\u6000\u523B\u74F7" + rect: + serializedVersion: 2 + x: 928 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7de462f1c9287fbe0800000000000000 + internalID: -1443541548499841321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B14" + rect: + serializedVersion: 2 + x: 960 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a4422231a5024ac0800000000000000 + internalID: -3872526539696225118 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B1B\u5B50\u5355\u624B\u77ED" + rect: + serializedVersion: 2 + x: 992 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36c2f830fc31059f0800000000000000 + internalID: -481863380289770397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B26\u54921" + rect: + serializedVersion: 2 + x: 1024 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db6ea732aeb49c350800000000000000 + internalID: 6037440244456548029 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B26\u54922" + rect: + serializedVersion: 2 + x: 1056 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a516d78b5ff09090800000000000000 + internalID: -8029637367015533149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B26\u54923" + rect: + serializedVersion: 2 + x: 1088 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2942c54d2e1f5f290800000000000000 + internalID: -7857108018350250862 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B26\u6587\u8170\u997012" + rect: + serializedVersion: 2 + x: 1120 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3c0b7086128d1440800000000000000 + internalID: 4908222202060147771 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B26\u6587\u8170\u997013" + rect: + serializedVersion: 2 + x: 1152 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e61739d7b344a1190800000000000000 + internalID: -7990999566514949778 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B26\u6756" + rect: + serializedVersion: 2 + x: 1184 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac5db981272a365e0800000000000000 + internalID: -1917510405406861878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B2C01\u79CD\u6837\u5F0F" + rect: + serializedVersion: 2 + x: 1216 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b72e17fac11755750800000000000000 + internalID: 6293060422336635515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B2C02\u79CD\u6837\u5F0F" + rect: + serializedVersion: 2 + x: 1248 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f619a353bfa34310800000000000000 + internalID: 1388146294897841913 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B2C03\u79CD\u6837\u5F0F" + rect: + serializedVersion: 2 + x: 1280 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c249eb9b3c96c950800000000000000 + internalID: 6469029694597055176 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B2C04\u79CD\u6837\u5F0F" + rect: + serializedVersion: 2 + x: 1312 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b9c3e09bc02f80a0800000000000000 + internalID: -6877242047290160716 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B2C05\u79CD\u6837\u5F0F" + rect: + serializedVersion: 2 + x: 1344 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6367aa8a553590f50800000000000000 + internalID: 6848096335760619062 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B2C06\u79CD\u6837\u5F0F" + rect: + serializedVersion: 2 + x: 1376 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d3132b27790154e0800000000000000 + internalID: -1994802752518941739 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B2C07\u79CD\u6837\u5F0F" + rect: + serializedVersion: 2 + x: 1408 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27f1e73cc4967c260800000000000000 + internalID: 7117773514500611954 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B2C08\u79CD\u6837\u5F0F" + rect: + serializedVersion: 2 + x: 1440 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37a87f3a5a533c750800000000000000 + internalID: 6323957287295093363 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B2C09\u79CD\u6837\u5F0F" + rect: + serializedVersion: 2 + x: 1472 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32ff74b37bd7dc630800000000000000 + internalID: 3948950674200854307 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B2C10\u79CD\u6837\u5F0F" + rect: + serializedVersion: 2 + x: 1504 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1653a3ce1f8ec450800000000000000 + internalID: 6110979106682394143 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B2C11\u79CD\u6837\u5F0F" + rect: + serializedVersion: 2 + x: 1536 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e70308e67c07fce0800000000000000 + internalID: -1371613856672839708 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B2C12\u79CD\u6837\u5F0F" + rect: + serializedVersion: 2 + x: 1568 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 31850a414d5ad4fb0800000000000000 + internalID: -4661887708960892909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B56\u68A6\u4ED9\u673A" + rect: + serializedVersion: 2 + x: 1600 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea9f7b1ef7a005bf0800000000000000 + internalID: -337758427688732242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B56\u68A6\u4ED9\u673Aold" + rect: + serializedVersion: 2 + x: 1632 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a00c62d889d836f20800000000000000 + internalID: 3414728628819640330 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B7E\u5230\u5E74\u5EA6\u5956" + rect: + serializedVersion: 2 + x: 1664 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f958cf17cba6f990800000000000000 + internalID: -7352500469915690512 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7B7E\u5230\u6708\u5EA6\u5956" + rect: + serializedVersion: 2 + x: 1696 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 258770ed76057aa20800000000000000 + internalID: 3073513677740537938 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7BAD\u888B" + rect: + serializedVersion: 2 + x: 1728 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 240be6df606efbba0800000000000000 + internalID: -6070880854976057278 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7C2A\u5B50" + rect: + serializedVersion: 2 + x: 1760 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 458e953d7c0a0fd10800000000000000 + internalID: 2157401001615288404 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7C89\u5F69\u82B1\u76D8" + rect: + serializedVersion: 2 + x: 1792 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6d8d2d0b3d0d556f0800000000000000 + internalID: -696420959735588650 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7C89\u7EA2\u5E74\u534E" + rect: + serializedVersion: 2 + x: 1824 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc4a387389d12c860800000000000000 + internalID: 7548628465029981391 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7C89\u8537\u534A\u58F6\u82B1\u67B6" + rect: + serializedVersion: 2 + x: 1856 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a70d8a341259ad80800000000000000 + internalID: -8238963796462467163 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7C89\u8776\u6D77\u68E0\u5986\u5323" + rect: + serializedVersion: 2 + x: 1888 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1bb183bfe4ec53240800000000000000 + internalID: 4770946218886437809 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7C97\u5236\u76AE" + rect: + serializedVersion: 2 + x: 1920 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ed8e50ff15cbc930800000000000000 + internalID: 4164639021401542120 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7C97\u5E03" + rect: + serializedVersion: 2 + x: 1952 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5b0ce606928e4d20800000000000000 + internalID: 3264690360763026269 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7C97\u5E03\u978B\u5E95" + rect: + serializedVersion: 2 + x: 1984 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0fe3a058bdd423ad0800000000000000 + internalID: -2724029219380510992 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7C97\u6728\u6599" + rect: + serializedVersion: 2 + x: 2016 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad917129d101f5190800000000000000 + internalID: -7971635096231405094 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7C97\u7CD9\u7684\u9A6C\u8E44\u94C1" + rect: + serializedVersion: 2 + x: 2048 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 465d358b1d0a8abe0800000000000000 + internalID: -1465744856107985564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7C97\u91CD\u9879\u94FE12" + rect: + serializedVersion: 2 + x: 2080 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a77faacbef0fd61e0800000000000000 + internalID: -2202839665836624006 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7C97\u91CD\u9879\u94FE13" + rect: + serializedVersion: 2 + x: 2112 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68b04a0867f4a1190800000000000000 + internalID: -7990987218432554106 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7C98\u7A20\u7684\u6DB2\u4F53" + rect: + serializedVersion: 2 + x: 2144 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55f5821dc34975b40800000000000000 + internalID: 5428970864746454869 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CAE\u98DF" + rect: + serializedVersion: 2 + x: 2176 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f8dbe69132e8fbf0800000000000000 + internalID: -290233473352083215 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBD\u5B50" + rect: + serializedVersion: 2 + x: 2208 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81e3c18a2061aaec0800000000000000 + internalID: -3555004755189416424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u5DE7\u7684\u62A4\u7B26" + rect: + serializedVersion: 2 + x: 2240 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23cfa51a773fce3d0800000000000000 + internalID: -3175895942069289934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u6728\u6599" + rect: + serializedVersion: 2 + x: 2272 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90d88f43f85dd6cd0800000000000000 + internalID: -2563157801858200311 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u6B66\u5E74\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2304 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cbdea054ccacf7570800000000000000 + internalID: 8466708803160305084 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u6B66\u5E74\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2336 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3978b1b3ca07fbf80800000000000000 + internalID: -8088622520705775725 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u6B66\u5E74\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2368 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 535a4f50e0a803b90800000000000000 + internalID: -7264154406114515659 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u6B66\u5E74\u88C5\u978B" + rect: + serializedVersion: 2 + x: 2400 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46b2e10dd063e2030800000000000000 + internalID: 3471771795703343972 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u7075\u72FC" + rect: + serializedVersion: 2 + x: 2432 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67cb54d0778fafa50800000000000000 + internalID: 6555825397798648950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u7075\u793C\u76D2x" + rect: + serializedVersion: 2 + x: 2464 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fcbbd1f25b9c2f0a0800000000000000 + internalID: -6849190303260361777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u7075\u88D9" + rect: + serializedVersion: 2 + x: 2496 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6bc57506d4bb068d0800000000000000 + internalID: -2855076222749680458 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u7075\u88D9\u624B\u5957" + rect: + serializedVersion: 2 + x: 2528 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe7537b9723a857c0800000000000000 + internalID: -4082333671704274961 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u7075\u88D9\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2560 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d5df019414dc1c70800000000000000 + internalID: 8943256144849130964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u70BC\u706B\u79CD" + rect: + serializedVersion: 2 + x: 2592 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf99b0d80e20c5210800000000000000 + internalID: 1322935554002360827 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u77F3\u7389\u5668" + rect: + serializedVersion: 2 + x: 2624 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2fcfdbeedc3f35a10800000000000000 + internalID: 1897127933852384498 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u7EDD\u7EB5\u76EE\u56FE\u817E" + rect: + serializedVersion: 2 + x: 2656 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 767e1d0b27f4cdb90800000000000000 + internalID: -7215805148942964889 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u8089" + rect: + serializedVersion: 2 + x: 2688 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b72c11dbecfc6c80800000000000000 + internalID: -8328003521159092299 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u81F4\u7684\u6B66\u5668\u7BB1" + rect: + serializedVersion: 2 + x: 2720 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 990fc7c1c965241e0800000000000000 + internalID: -2215112838220025703 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u91D1\u5F39" + rect: + serializedVersion: 2 + x: 2752 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 217dfa69bbba09600800000000000000 + internalID: 473066783049242386 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u91D1\u77E2" + rect: + serializedVersion: 2 + x: 2784 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48b7003e3e4772190800000000000000 + internalID: -7987286892003427452 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u91D1\u952D" + rect: + serializedVersion: 2 + x: 2816 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78bcd372c81e48270800000000000000 + internalID: 8251968409319623559 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94A2\u5F29\u673A" + rect: + serializedVersion: 2 + x: 2848 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: befc6b5e024e68680800000000000000 + internalID: -8753057995803930645 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94A2\u62A4\u8EAB\u9501" + rect: + serializedVersion: 2 + x: 2880 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d26a1109ff603b200800000000000000 + internalID: 194506903610566189 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94A2\u68CD\u68D2\u62A4\u624B" + rect: + serializedVersion: 2 + x: 2912 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c69c3b0165c8f110800000000000000 + internalID: 1295001913460037319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94A2\u77DB\u67C4" + rect: + serializedVersion: 2 + x: 2944 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7890d71b33741660800000000000000 + internalID: 7355630789042673788 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94A2\u77E2" + rect: + serializedVersion: 2 + x: 2976 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1389b80e3d34c2f70800000000000000 + internalID: 9163773919076522033 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94A2\u77ED\u5203\u67C4" + rect: + serializedVersion: 2 + x: 3008 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b371b0c48942c2c0800000000000000 + internalID: -4412883850352299087 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94A2\u80A1\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 3040 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f494be34f0d9ca80800000000000000 + internalID: -8445989878714034952 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94A2\u80A9\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 3072 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e14476d471b3e150800000000000000 + internalID: 5900755052157747686 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94A2\u8155\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 3104 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d77dc743d8a10ea40800000000000000 + internalID: 5395341547363161981 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94A2\u836F\u5BA4" + rect: + serializedVersion: 2 + x: 3136 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac929477cfb717d10800000000000000 + internalID: 2121613223731472842 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94A2\u8E1D\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 3168 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5ed401d2e402da60800000000000000 + internalID: 7697220085345476189 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94A2\u957F\u5200\u5200\u683C" + rect: + serializedVersion: 2 + x: 3200 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7c72ab36f980d480800000000000000 + internalID: -8876443174891783041 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94A2\u957F\u6746\u63A5\u69AB" + rect: + serializedVersion: 2 + x: 3232 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6a4ea6bc999d4880800000000000000 + internalID: -8625068812985808274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94A2\u9762\u7F69\u5408\u9875" + rect: + serializedVersion: 2 + x: 3264 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c073527c0b3bcd90800000000000000 + internalID: -7076497464838885177 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u94C1\u9774\u523A" + rect: + serializedVersion: 2 + x: 3296 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 293a131def2989620800000000000000 + internalID: 2781134393030321042 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u9970\u4EFB\u52A1\u5F00\u542F\u9053\u5177" + rect: + serializedVersion: 2 + x: 3328 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69c17faeea1140490800000000000000 + internalID: -7781074813225329514 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u9970\u914D\u65B9\u5305\u88F9" + rect: + serializedVersion: 2 + x: 3360 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62cbe5ee984880b90800000000000000 + internalID: -7275419470072464346 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u9970\u914D\u65B9\u5305\u88F92" + rect: + serializedVersion: 2 + x: 3392 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6d858b23cceb00f0800000000000000 + internalID: -1149564956870079124 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u9970\u914D\u65B9\u5305\u88F93" + rect: + serializedVersion: 2 + x: 3424 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fe51d70ef99bde70800000000000000 + internalID: 9141069185010458360 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u9B44\u571F" + rect: + serializedVersion: 2 + x: 3456 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b79ebe7b6db813360800000000000000 + internalID: 7147647837938641275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u9B44\u6728" + rect: + serializedVersion: 2 + x: 3488 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ca6e99ab6670e9b0800000000000000 + internalID: -5052908577130386746 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u9B44\u6C34" + rect: + serializedVersion: 2 + x: 3520 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa89c57941adeabe0800000000000000 + internalID: -1463993046875203414 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u9B44\u706B" + rect: + serializedVersion: 2 + x: 3552 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f1659a59c4f4b490800000000000000 + internalID: -7731285514642955790 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CBE\u9B44\u91D1" + rect: + serializedVersion: 2 + x: 3584 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa3b6c35e2ce5def0800000000000000 + internalID: -83901334318304342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CD5\u70B91" + rect: + serializedVersion: 2 + x: 3616 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bb1f1931a95d0150800000000000000 + internalID: 5840422840752348084 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CD5\u70B92" + rect: + serializedVersion: 2 + x: 3648 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d7496e4697e81fd0800000000000000 + internalID: -2370890571063932972 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CD5\u70B93" + rect: + serializedVersion: 2 + x: 3680 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d364a528c23389550800000000000000 + internalID: 6167735955942426173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CD5\u70B94" + rect: + serializedVersion: 2 + x: 3712 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 140bc58d422fb00f0800000000000000 + internalID: -1149559039800332223 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CD6\u679C" + rect: + serializedVersion: 2 + x: 3744 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c511c345e10f3f80800000000000000 + internalID: -8124773118557219387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CD6\u679C\u624B\u6756" + rect: + serializedVersion: 2 + x: 3776 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ca6c9b5a15db4eb0800000000000000 + internalID: -4734456274067100986 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CD6\u74DC" + rect: + serializedVersion: 2 + x: 3808 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74e4843cd9ac4ab50800000000000000 + internalID: 6603625732566961735 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7CEF\u7C73" + rect: + serializedVersion: 2 + x: 3840 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be7c9c0c482448350800000000000000 + internalID: 6018008140011390955 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D20\u7EE2\u6298\u7EB9\u5782\u706F" + rect: + serializedVersion: 2 + x: 3872 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8e7a683db25e0f80800000000000000 + internalID: -8138476503963107699 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D20\u9762\u7D2B\u6A80\u7B14\u7B52" + rect: + serializedVersion: 2 + x: 3904 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dcbcebdcc7a54d110800000000000000 + internalID: 1284751285781711821 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D22\u9B42\u51A0" + rect: + serializedVersion: 2 + x: 3936 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c1fdec3facf42950800000000000000 + internalID: 6423536798108873156 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u4E01\u9999" + rect: + serializedVersion: 2 + x: 3968 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 317e805e2e26d7020800000000000000 + internalID: 2341136107947222803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u4E01\u9999\u67D3\u6599" + rect: + serializedVersion: 2 + x: 4000 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5efb33ac49d2dee60800000000000000 + internalID: 7993095030723297253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u4E39\u53C2" + rect: + serializedVersion: 2 + x: 4032 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a133c4017dff9e80800000000000000 + internalID: -8169532537173757536 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u5FAE\u5760\u5B50" + rect: + serializedVersion: 2 + x: 4064 + y: 2528 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 131772890df0b6be0800000000000000 + internalID: -1483074263708110543 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u6A80\u8760\u7EB9\u592A\u5E08\u6905" + rect: + serializedVersion: 2 + x: 0 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f49e34985e163670800000000000000 + internalID: 8518029111010956530 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u6A80\u8760\u7EB9\u592A\u5E08\u6905\u7EC4\u5408" + rect: + serializedVersion: 2 + x: 32 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d066693038202730800000000000000 + internalID: 3972219058927329495 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u6A80\u8760\u7EB9\u77EE\u684C" + rect: + serializedVersion: 2 + x: 64 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ea02242977fb7370800000000000000 + internalID: 8321516836166437609 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u6C34\u6676\u5760\u5B50" + rect: + serializedVersion: 2 + x: 96 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ba28effc07d9e1c0800000000000000 + internalID: -4473808303982892365 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u7075\u96C0" + rect: + serializedVersion: 2 + x: 128 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9e7dca16d0f98de0800000000000000 + internalID: -1330267412547928420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u7389" + rect: + serializedVersion: 2 + x: 160 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78f82cf6fe6dba290800000000000000 + internalID: -7877966799294001273 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u73E0\u6C81\u9999\u679C\u7BEE" + rect: + serializedVersion: 2 + x: 192 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be1a8c912f6b13570800000000000000 + internalID: 8444731927227310571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u7409\u7483" + rect: + serializedVersion: 2 + x: 224 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d15a1b814b787470800000000000000 + internalID: 8392593427041767897 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u7535\u8F9F\u90AA" + rect: + serializedVersion: 2 + x: 256 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 693b29d47c887d480800000000000000 + internalID: -8874474151128943722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u7EF6\u5C65" + rect: + serializedVersion: 2 + x: 288 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5db75d6c833c6f290800000000000000 + internalID: -7856877851279787051 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u7EF6\u62A4\u8155" + rect: + serializedVersion: 2 + x: 320 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 462c4cd2e692fe280800000000000000 + internalID: -9011938776154062236 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u7EF6\u888D" + rect: + serializedVersion: 2 + x: 352 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09301e2bd25e16580800000000000000 + internalID: -8835529009486822512 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u7EF6\u88E4" + rect: + serializedVersion: 2 + x: 384 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44d27c17bfdf86260800000000000000 + internalID: 7091196869682343236 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u7F57\u5170\u67D3\u6599" + rect: + serializedVersion: 2 + x: 416 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 594414930c281eb10800000000000000 + internalID: 2009030670889862293 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u8272\u60C5\u6000" + rect: + serializedVersion: 2 + x: 448 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25ccac9aceac87c80800000000000000 + internalID: -8324680793384629166 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u8272\u67D3\u8272\u5242" + rect: + serializedVersion: 2 + x: 480 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6aed2a74917241320800000000000000 + internalID: 2527688280391212710 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u8272\u68C9\u7EBF" + rect: + serializedVersion: 2 + x: 512 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 296c0f25b7cadb720800000000000000 + internalID: 2863634583749969554 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u8272\u7684\u77F3\u5934" + rect: + serializedVersion: 2 + x: 544 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62820563f041817b0800000000000000 + internalID: -5253426909759395802 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u841D\u9879\u94FE" + rect: + serializedVersion: 2 + x: 576 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0cf64d5110755100800000000000000 + internalID: 96106186940021771 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u85E4\u5C0F\u6BB5" + rect: + serializedVersion: 2 + x: 608 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e22fbd6669d537f0800000000000000 + internalID: -633361138624552215 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u85E4\u624B\u638C\u6A21\u677F" + rect: + serializedVersion: 2 + x: 640 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e588487996fe4cc0800000000000000 + internalID: -3724768702780373527 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u85E4\u6756\u67C4" + rect: + serializedVersion: 2 + x: 672 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dcc0f8a535d4f1b00800000000000000 + internalID: 801444279092186317 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u85E4\u8282\u6263" + rect: + serializedVersion: 2 + x: 704 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3e76355985a81ab0800000000000000 + internalID: -5037094173955162565 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u8D1D\u58F3" + rect: + serializedVersion: 2 + x: 736 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2148b5bad58c796d0800000000000000 + internalID: -2983695923477249006 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u91D1\u4F69" + rect: + serializedVersion: 2 + x: 768 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42342c7d3c75af8a0800000000000000 + internalID: -6270603032509922524 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u91D1\u5175\u7FFC" + rect: + serializedVersion: 2 + x: 800 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbd2b22002afc6080800000000000000 + internalID: -9192697723987743299 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u91D1\u5B88\u795E\u7B26" + rect: + serializedVersion: 2 + x: 832 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fabc43b2e9040620800000000000000 + internalID: 2739325342623513336 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u91D1\u62A4\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 864 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 395ce0b5b16497ac0800000000000000 + internalID: -3856974522560363117 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u91D1\u6C99" + rect: + serializedVersion: 2 + x: 896 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e544e3732de6cb1c0800000000000000 + internalID: -4486589279618841506 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u91D1\u80F8\u7532" + rect: + serializedVersion: 2 + x: 928 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33600d14b5694f210800000000000000 + internalID: 1365881905690445363 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u91D1\u817F\u7532" + rect: + serializedVersion: 2 + x: 960 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3e86293fd6c7a510800000000000000 + internalID: 1560434457946000958 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u91D1\u846B\u82A6" + rect: + serializedVersion: 2 + x: 992 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6d5bd12199d77270800000000000000 + internalID: 8248300459913862509 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u91D1\u8896\u7532" + rect: + serializedVersion: 2 + x: 1024 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f69c63a94d17bbdc0800000000000000 + internalID: -3622176317355144849 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u91D1\u94A5\u5319" + rect: + serializedVersion: 2 + x: 1056 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 458ed9775d9a47b80800000000000000 + internalID: -8397900670839166892 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u91D1\u9774" + rect: + serializedVersion: 2 + x: 1088 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a00b518589d50fe80800000000000000 + internalID: -8146908817018998774 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u94BB" + rect: + serializedVersion: 2 + x: 1120 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6afc6b7a88f917630800000000000000 + internalID: 3923092159694557094 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u94C3\u8349" + rect: + serializedVersion: 2 + x: 1152 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbde0f96b35a185e0800000000000000 + internalID: -1909063092429328963 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u94DC\u9774\u523A" + rect: + serializedVersion: 2 + x: 1184 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 26fd4ffdbd0a34c80800000000000000 + internalID: -8339645218744377502 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u9633\u69CA" + rect: + serializedVersion: 2 + x: 1216 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86c3f46ad203cab30800000000000000 + internalID: 4299864716853853288 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7D2B\u971E\u8170\u9970" + rect: + serializedVersion: 2 + x: 1248 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50380c23effafba20800000000000000 + internalID: 3080374176452739845 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7E41\u6728\u4E4B\u529B" + rect: + serializedVersion: 2 + x: 1280 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bfad17ff09aad6270800000000000000 + internalID: 8245434032522910459 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7E41\u6728\u4E4B\u610F" + rect: + serializedVersion: 2 + x: 1312 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77dd29eb9672de5e0800000000000000 + internalID: -1878802134421283465 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7E41\u82B1\u4F3C\u9526" + rect: + serializedVersion: 2 + x: 1344 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6e0e746c53498820800000000000000 + internalID: 2920939897428512365 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7E41\u82B1\u4F3C\u95261" + rect: + serializedVersion: 2 + x: 1376 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7577f3269b211f200800000000000000 + internalID: 211971244889700183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7E41\u82B1\u4F3C\u9526\u82B1\u53F0" + rect: + serializedVersion: 2 + x: 1408 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb0a10123c08978b0800000000000000 + internalID: -5153946722988089157 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7E41\u8363\u660C\u76DB" + rect: + serializedVersion: 2 + x: 1440 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 419dc8435047ab7a0800000000000000 + internalID: -6360643958002099948 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u5149\u9524" + rect: + serializedVersion: 2 + x: 1472 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 881debf2115a1fd10800000000000000 + internalID: 2157687189721239944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u53CC\u559C" + rect: + serializedVersion: 2 + x: 1504 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e39914d2d7b4bef70800000000000000 + internalID: 9217544063346121022 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u5B9D\u77F3\u6212\u6307\u5927" + rect: + serializedVersion: 2 + x: 1536 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b7c4ac74a88215a0800000000000000 + internalID: -6552024267823462479 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u5B9D\u77F3\u6212\u6307\u5C0F" + rect: + serializedVersion: 2 + x: 1568 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 873f59ee5cfc55d70800000000000000 + internalID: 9031353076779709304 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u5B9D\u77F3\u9879\u94FE\uFF08\u5973\uFF09" + rect: + serializedVersion: 2 + x: 1600 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb222555dcc455880800000000000000 + internalID: -8622901466747493701 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u5C18\u6C10\u60C6\u9999\u7089" + rect: + serializedVersion: 2 + x: 1632 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e33d2c4d3a2f76e0800000000000000 + internalID: -1837703680184470553 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u6591\u5929\u725B" + rect: + serializedVersion: 2 + x: 1664 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a7a2d29b358746d0800000000000000 + internalID: -3006287735333673052 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u6728\u4E91\u7EB9\u6276\u624B\u6905" + rect: + serializedVersion: 2 + x: 1696 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2dcc59827b5f9860800000000000000 + internalID: 7538844848730459438 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u6728\u74DC\u53F6\u7EB9\u77EE\u58A9" + rect: + serializedVersion: 2 + x: 1728 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cdc7be9d68e2d3a50800000000000000 + internalID: 6502404593709448412 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u6728\u7B11\u4F5B\u8336\u684C" + rect: + serializedVersion: 2 + x: 1760 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58599a78c07c24700800000000000000 + internalID: 523199363357971845 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u67A3" + rect: + serializedVersion: 2 + x: 1792 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d03174b3786966ac0800000000000000 + internalID: -3862234122864356595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u683C\u5C14\u6728\u5C4B" + rect: + serializedVersion: 2 + x: 1824 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9948cd7f83432f80800000000000000 + internalID: -8132582218531321441 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u6C34\u6676\u5760\u5B50" + rect: + serializedVersion: 2 + x: 1856 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5220c4bf79d8c1900800000000000000 + internalID: 656555329584890405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u706F\u7B3C\u559C\u8FCE\u6625\u8282" + rect: + serializedVersion: 2 + x: 1888 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a82b6801463546e0800000000000000 + internalID: -1854016018651076440 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u706F\u7B3C\u606D\u8D3A\u65B0\u79A7" + rect: + serializedVersion: 2 + x: 1920 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 120320c66afd05e10800000000000000 + internalID: 2184491725144338465 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u7075\u7247" + rect: + serializedVersion: 2 + x: 1952 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1341d931b94d6d380800000000000000 + internalID: -8946729847210830799 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u73AB\u7470\u725B\u4ED4\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1984 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58a64f3fc437d0e50800000000000000 + internalID: 6777199788610054789 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u73AB\u7470\u725B\u4ED4\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2016 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b85e6759b3d8b4f0800000000000000 + internalID: -812666939751114574 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u73AB\u7470\u725B\u4ED4\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2048 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61c9a56aa3abb2a10800000000000000 + internalID: 1885805630046510102 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u73AB\u7470\u725B\u4ED4\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2080 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab0c23db7fd9abb30800000000000000 + internalID: 4303926081262633146 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u73CA\u745A\u4F5B\u73E0" + rect: + serializedVersion: 2 + x: 2112 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8063ae590abeddbf0800000000000000 + internalID: -297822925394135544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u767D\u56DB\u6F29\u6DA1" + rect: + serializedVersion: 2 + x: 2144 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59f5cc5337bebd7d0800000000000000 + internalID: -2892459455599059051 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u7802\u5CA9\u4F5B\u50CF" + rect: + serializedVersion: 2 + x: 2176 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d13227549079c9dc0800000000000000 + internalID: -3630861133491854563 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u78A7\u71B9\u91D1\u6212" + rect: + serializedVersion: 2 + x: 2208 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ede0ccbae955b8bf0800000000000000 + internalID: -321068808451387682 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u7EA2\u706F\u7B3C\u6392\u6392\u6302" + rect: + serializedVersion: 2 + x: 2240 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29e0311cfd01fbf90800000000000000 + internalID: -6935806347924271470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u7EB1\u9526\u7EE3\u7ACB\u67DC" + rect: + serializedVersion: 2 + x: 2272 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36186fa7c3ae72b70800000000000000 + internalID: 8874319136238764387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u7EBF" + rect: + serializedVersion: 2 + x: 2304 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9828ab62be3f316e0800000000000000 + internalID: -1867881229136002423 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8272\u4E09\u89D2\u94A2\u7434" + rect: + serializedVersion: 2 + x: 2336 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c4e6a52d3a4027c0800000000000000 + internalID: -4098194034421996347 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8272\u4FE1\u4EF6" + rect: + serializedVersion: 2 + x: 2368 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bea90602ab209340800000000000000 + internalID: 4868439172073500340 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8272\u5723\u5668\u6B8B\u7247" + rect: + serializedVersion: 2 + x: 2400 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b6dc88ddb07268d0800000000000000 + internalID: -2854595253115234636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8272\u5C0F\u70DF\u82B1" + rect: + serializedVersion: 2 + x: 2432 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d57689710ecd91040800000000000000 + internalID: 4618965747871803229 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8272\u5FC3\u5F62\u5B9D\u77F3" + rect: + serializedVersion: 2 + x: 2464 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7005722bffea382f0800000000000000 + internalID: -971740681353080825 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8272\u677E\u9F20" + rect: + serializedVersion: 2 + x: 2496 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc1b19ce1a51d7c20800000000000000 + internalID: 3205742294960550351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8272\u67D3\u8272\u5242" + rect: + serializedVersion: 2 + x: 2528 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ade48e6db9e4d78e0800000000000000 + internalID: -1694111453588992294 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8272\u6C34\u6676\u7403" + rect: + serializedVersion: 2 + x: 2560 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 871b65970ab636830800000000000000 + internalID: 4063209625792983416 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8272\u6C34\u6676\u77F3" + rect: + serializedVersion: 2 + x: 2592 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d26e497bb348a55c0800000000000000 + internalID: -4225919908315863507 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8272\u6D46\u8349" + rect: + serializedVersion: 2 + x: 2624 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57279eb55882c1c60800000000000000 + internalID: 7790146008681902709 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8272\u72FC\u7259" + rect: + serializedVersion: 2 + x: 2656 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77fc8a68134c48c00800000000000000 + internalID: 902061542372593527 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8272\u836F\u7C89" + rect: + serializedVersion: 2 + x: 2688 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0d9972325ba04c70800000000000000 + internalID: 8953344428735044874 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8272\u9E45\u6BDB\u7B14\u4E60\u7B3A" + rect: + serializedVersion: 2 + x: 2720 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2d181a8b6b30fe60800000000000000 + internalID: 7993954671647005996 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u82F9\u679C" + rect: + serializedVersion: 2 + x: 2752 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51000f7049bc1da40800000000000000 + internalID: 5391314065587961877 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u83B2\u6212" + rect: + serializedVersion: 2 + x: 2784 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 15c4f07c09ac009b0800000000000000 + internalID: -5115866453529113519 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u843C\u6885" + rect: + serializedVersion: 2 + x: 2816 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7871904ca86e223a0800000000000000 + internalID: -6691532612650330233 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8537\u7D2B\u8587\u95E8" + rect: + serializedVersion: 2 + x: 2848 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3a8ee8f139854990800000000000000 + internalID: -7402359564790756801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8611\u83C7" + rect: + serializedVersion: 2 + x: 2880 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 47d0072d164c7b750800000000000000 + internalID: 6320736526459211124 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8611\u83C72" + rect: + serializedVersion: 2 + x: 2912 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e7de8e3b263fed70800000000000000 + internalID: 9074531333535881184 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8774\u8776" + rect: + serializedVersion: 2 + x: 2944 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82488c8009a4311f0800000000000000 + internalID: -1075433903528311768 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8896\u5200" + rect: + serializedVersion: 2 + x: 2976 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 391e9754f2655c430800000000000000 + internalID: 3802540221413319059 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8C46" + rect: + serializedVersion: 2 + x: 3008 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1041a666251b14e80800000000000000 + internalID: -8196074879373929471 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u8C461" + rect: + serializedVersion: 2 + x: 3040 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 571caa1d6fdbd37d0800000000000000 + internalID: -2936982514198462091 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u94BB" + rect: + serializedVersion: 2 + x: 3072 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 625af22cf9cdea2f0800000000000000 + internalID: -959587091867523802 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u9876\u5343\u811A\u697C" + rect: + serializedVersion: 2 + x: 3104 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d2cc0ee00c024e6b0800000000000000 + internalID: -5268049654861214675 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u9AD8\u5934\u938F\u91D1" + rect: + serializedVersion: 2 + x: 3136 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb4ef5d54b57186f0800000000000000 + internalID: -684136250862476097 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA2\u9C7C\u5375" + rect: + serializedVersion: 2 + x: 3168 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: afbe5a2cf4d4e9840800000000000000 + internalID: 5232704822014503930 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA4\u7EC6\u9879\u94FE12" + rect: + serializedVersion: 2 + x: 3200 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a865e758a151c720800000000000000 + internalID: 2864660621455354018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EA4\u7EC6\u9879\u94FE13" + rect: + serializedVersion: 2 + x: 3232 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ddf4244237e025500800000000000000 + internalID: 383384805972266973 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u5E01" + rect: + serializedVersion: 2 + x: 3264 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db11e6f11d892b100800000000000000 + internalID: 122328163835318717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3296 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bcbca38d71db4b2e0800000000000000 + internalID: -2110854415220290613 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3328 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f04f77b8441607b90800000000000000 + internalID: -7246184853413563377 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3360 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07318464ab970d2b0800000000000000 + internalID: -5561811698852555920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3392 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e221b99fe27f09790800000000000000 + internalID: -7525243196207853010 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3424 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb7a8193a04b04170800000000000000 + internalID: 8160720480795928507 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3456 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff85be618be686ca0800000000000000 + internalID: -6023442764670478081 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3488 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13e3a25ecb9ab0250800000000000000 + internalID: 5912005564617604657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3520 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c96d4d41073dc440800000000000000 + internalID: 4957679243536198087 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u53D8\u8272\u65F6\u88C5\u5973\u8863\u670D" + rect: + serializedVersion: 2 + x: 3552 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09b3fa7188ff149c0800000000000000 + internalID: -3944590838621848688 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u53D8\u8272\u65F6\u88C5\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3584 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e5ae4012fdb246f0800000000000000 + internalID: -701789744563051036 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u53D8\u8272\u65F6\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3616 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4299f248d16008c30800000000000000 + internalID: 4359491163136170276 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u53D8\u8272\u65F6\u88C5\u7537\u8863\u670D" + rect: + serializedVersion: 2 + x: 3648 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b12a06a407e9a130800000000000000 + internalID: 3578645386074137015 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u53D8\u8272\u65F6\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3680 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e70d06ee6be81d70800000000000000 + internalID: 9014213515720591334 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u53D8\u8272\u65F6\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3712 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ae1aa9172de4b0f0800000000000000 + internalID: -1101995256608842075 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3744 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 19ee2329a01df5b30800000000000000 + internalID: 4278368014357950097 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u5973\u4E0B\u8EAB" + rect: + serializedVersion: 2 + x: 3776 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 104197481fa7b4ea0800000000000000 + internalID: -5887476910128557055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3808 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65f50ca705f5525b0800000000000000 + internalID: -5393800179444850858 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3840 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eaf112451e7509020800000000000000 + internalID: 2346472031150743470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3872 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45b3bb006b53515e0800000000000000 + internalID: -1939585008700540076 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u7537\u4E0B\u8EAB\u672C" + rect: + serializedVersion: 2 + x: 3904 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2aa5ab9d1d1de5e90800000000000000 + internalID: -7034954868674897246 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3936 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e34ea65d37b68a800800000000000000 + internalID: 623866693636777022 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3968 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac9ca9d9f5087d980800000000000000 + internalID: -8514195422366217782 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAF\u51C0\u7684\u9CC4\u9C7C\u4E4B\u6CEA" + rect: + serializedVersion: 2 + x: 4000 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 831283c2e09cc06d0800000000000000 + internalID: -3022820187163844296 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAF\u51C0\u8349\u836F" + rect: + serializedVersion: 2 + x: 4032 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b02f9fcd2a8d0bd30800000000000000 + internalID: 4445291026218349067 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAF\u6D01\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 4064 + y: 2496 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f898670764a693bd0800000000000000 + internalID: -2649970054963754609 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAF\u6D01\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 0 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7fc951d645a4bea0800000000000000 + internalID: -5857875491723554947 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAF\u6D01\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 32 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5571e7cbd8ae2f1e0800000000000000 + internalID: -2165410576338118827 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAF\u6D01\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 64 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3e789b2738286350800000000000000 + internalID: 6010097920145653306 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAF\u6D01\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 96 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1a4299bb86b5e530800000000000000 + internalID: 3883710964907002397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAF\u6D01\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 128 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a63c58af997eef9c0800000000000000 + internalID: -3891418379482446998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAF\u767D\u67D3\u8272\u5361" + rect: + serializedVersion: 2 + x: 160 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de91788a4950f4010800000000000000 + internalID: 1175164163807713773 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAF\u91D1\u9152\u676F" + rect: + serializedVersion: 2 + x: 192 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d7802578f4041d00800000000000000 + internalID: 942383687190742996 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAF\u9ED1\u4E9A\u9EBB\u6C99\u53D1" + rect: + serializedVersion: 2 + x: 224 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 770d12de0e3e9b790800000000000000 + internalID: -7513723948100366217 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAF\u9ED1\u4E9A\u9EBB\u6C99\u53D1\u7EC4\u5408" + rect: + serializedVersion: 2 + x: 256 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03e01799ca60277b0800000000000000 + internalID: -5228108879045259728 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EAF\u9ED1\u67D3\u8272\u5361" + rect: + serializedVersion: 2 + x: 288 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a49879500a6ed890800000000000000 + internalID: -7431385785381120861 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EB5\u6A2A\u4EE4" + rect: + serializedVersion: 2 + x: 320 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fa461f961a3856e20800000000000000 + internalID: 3343223027682862255 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EB8" + rect: + serializedVersion: 2 + x: 352 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0328b70b884fc040800000000000000 + internalID: 4670031100573655819 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EB8\u6247" + rect: + serializedVersion: 2 + x: 384 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1922060d6ca1040c0800000000000000 + internalID: -4593642178716097903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EB8\u71D5" + rect: + serializedVersion: 2 + x: 416 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58aa1022253b4bde0800000000000000 + internalID: -1318231625573487995 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EB8\u77ED\u60C5\u957F" + rect: + serializedVersion: 2 + x: 448 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 842720ad9e2a796b0800000000000000 + internalID: -5289580112054685112 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EB8\u8424" + rect: + serializedVersion: 2 + x: 480 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7095982735a1b8c80800000000000000 + internalID: -8319526940930647801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EB8\u864E\u5B9D\u76D2" + rect: + serializedVersion: 2 + x: 512 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe836d0dc2f5a0210800000000000000 + internalID: 1299956088536709359 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EB8\u8776" + rect: + serializedVersion: 2 + x: 544 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0957accb9ee351680800000000000000 + internalID: -8785046324500597360 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EB8\u9E22" + rect: + serializedVersion: 2 + x: 576 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 491ff9e704e5768b0800000000000000 + internalID: -5159051217034284652 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EB9\u8EAB\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 608 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ecca60b7d2b0ed340800000000000000 + internalID: 4890358535336406222 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EB9\u8EAB\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 640 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 892c42713c5bf4210800000000000000 + internalID: 1319473065354379928 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EB9\u8EAB\u88C5\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 672 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fae640ccdd9c70880800000000000000 + internalID: -8644719005266579793 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EB9\u8EAB\u88C5\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 704 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb6258966445e06c0800000000000000 + internalID: -4175307143131093313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EB9\u8EAB\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 736 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f838e6837e24d4c0800000000000000 + internalID: -4263731873493534478 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EBA\u7EC7\u5382" + rect: + serializedVersion: 2 + x: 768 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: abd2837b08fb24f30800000000000000 + internalID: 4558416332402994618 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EBF\u8F74" + rect: + serializedVersion: 2 + x: 800 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70c8076fcff2b1290800000000000000 + internalID: -7918682756288050169 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC3\u529F\u623F" + rect: + serializedVersion: 2 + x: 832 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7fbc7f7ee7bed2180800000000000000 + internalID: -9138389138574685193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200100\u7EA7" + rect: + serializedVersion: 2 + x: 864 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2b253fb4f142b7c0800000000000000 + internalID: -4057107794871637206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u520016\u54C1" + rect: + serializedVersion: 2 + x: 896 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ea2b64434273e660800000000000000 + internalID: 7413895044818217702 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u51C6\u9876\u7EA7" + rect: + serializedVersion: 2 + x: 928 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b70a78bb51908d660800000000000000 + internalID: 7410683175783342203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u521D\u59CB" + rect: + serializedVersion: 2 + x: 960 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8e14794e618a0a770800000000000000 + internalID: 8620074503064994280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u52BF\u529B" + rect: + serializedVersion: 2 + x: 992 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: acd985c2fbd9767e0800000000000000 + internalID: -1772274483938681398 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u65B016\u54C1" + rect: + serializedVersion: 2 + x: 1024 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c676bab8f30ca4810800000000000000 + internalID: 1750422784345597804 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u65B0\u4E5D\u519B" + rect: + serializedVersion: 2 + x: 1056 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e77bc0a6cec1d0110800000000000000 + internalID: 1228670075059091326 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u65B0\u516B\u519B" + rect: + serializedVersion: 2 + x: 1088 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a04e95f885c464a0800000000000000 + internalID: -6600933961791291229 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u795E\u6708" + rect: + serializedVersion: 2 + x: 1120 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af46b372f4ae5a260800000000000000 + internalID: 7108345212555715834 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u8FC7\u6E211" + rect: + serializedVersion: 2 + x: 1152 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6208a8118dc58b560800000000000000 + internalID: 7329710476622463014 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u8FC7\u6E212" + rect: + serializedVersion: 2 + x: 1184 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c53a494dcc7685980800000000000000 + internalID: -8549969763125386404 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u8FC7\u6E213" + rect: + serializedVersion: 2 + x: 1216 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 503be2d17b5397a80800000000000000 + internalID: -8468678563708620027 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u8FC7\u6E214" + rect: + serializedVersion: 2 + x: 1248 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c54779e9d0ed516d0800000000000000 + internalID: -3020263825005382564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u8FC7\u6E215" + rect: + serializedVersion: 2 + x: 1280 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6cc2e99a73fe0e10800000000000000 + internalID: 2165936178705124461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u8FC7\u6E216" + rect: + serializedVersion: 2 + x: 1312 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b869bc11f957188c0800000000000000 + internalID: -3998785668069484917 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u8FC7\u6E217" + rect: + serializedVersion: 2 + x: 1344 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84463c3b4ef7b6e10800000000000000 + internalID: 2191986263891076168 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u8FC7\u6E218" + rect: + serializedVersion: 2 + x: 1376 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 378b4a1b1fcd82330800000000000000 + internalID: 3686439225628342387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC6\u5200\u9EC4\u660F" + rect: + serializedVersion: 2 + x: 1408 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 248513980cf126180800000000000000 + internalID: -9123694983303309246 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC7\u5973\u4E1D" + rect: + serializedVersion: 2 + x: 1440 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b7d87c33ee659070800000000000000 + internalID: 8112512226029000630 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC8\u6781\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 1472 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e70042b693dbe3a90800000000000000 + internalID: -7332215089004281730 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EC8\u6781\u6280\u80FD\u4E66\u6B8B\u9875" + rect: + serializedVersion: 2 + x: 1504 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 592faaec922faa1e0800000000000000 + internalID: -2185668407760063851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ECF\u5178\u7248" + rect: + serializedVersion: 2 + x: 1536 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d6c12135fcf90570800000000000000 + internalID: 8433549907249448656 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ED3\u4E39\u77F3" + rect: + serializedVersion: 2 + x: 1568 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d63a9db5c2513f120800000000000000 + internalID: 2446322302856045421 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ED3\u4E49\u5B88\u62A4\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1600 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5acf9a02f653b0640800000000000000 + internalID: 5047186558804425893 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ED3\u4E49\u795E\u884C\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1632 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33b4f0463ad606650800000000000000 + internalID: 6224095233551846195 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ED3\u4E49\u79FB\u5C71\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1664 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3366d6d9fa3030f80800000000000000 + internalID: -8141659648560372173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ED3\u4E49\u8BC6\u6D77\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1696 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bea87c151c40e0090800000000000000 + internalID: -8066504654226748693 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ED3\u4E49\u8BF8\u4E16\u754C\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1728 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1ecf10ac49122f00800000000000000 + internalID: 1090461876671729183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ED3\u4E49\u8FC5\u6377\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1760 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7d6d36e2eedb95d0800000000000000 + internalID: -3054602856133988996 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ED3\u5408\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1792 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1eddb1201156d18e0800000000000000 + internalID: -1721108358861431327 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ED3\u5A5A\u767E\u5E74\u597D\u5408" + rect: + serializedVersion: 2 + x: 1824 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4d4f0ac0ba3c8c50800000000000000 + internalID: 6668769679207517516 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ED3\u5A5A\u7EA2\u5305" + rect: + serializedVersion: 2 + x: 1856 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 516394a45f42eefc0800000000000000 + internalID: -3463790427469433323 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ED3\u7F18\u4F1E" + rect: + serializedVersion: 2 + x: 1888 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 493d43f59960429f0800000000000000 + internalID: -494262803306851436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ED9\u534E\u5149\u4F1A\u8054\u7EDC\u5458\u7684\u4FE1" + rect: + serializedVersion: 2 + x: 1920 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 73862bc3782cd6c70800000000000000 + internalID: 8966036319259224119 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ED9\u6697\u9690\u4F1A\u8054\u7EDC\u5458\u7684\u4FE1" + rect: + serializedVersion: 2 + x: 1952 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bfaf689fb6624b070800000000000000 + internalID: 8121158273245575931 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7ED9\u8F89\u591C\u519B\u4F1A\u8054\u7EDC\u5458\u7684\u4FE1" + rect: + serializedVersion: 2 + x: 1984 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43e679e7c26f7a700800000000000000 + internalID: 551680150339022388 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EDA\u70C2\u82B1\u6735\u9ED1\u7EB1\u88D9\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2016 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a110c7703ec560210800000000000000 + internalID: 1298827672695865626 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EDA\u70C2\u82B1\u6735\u9ED1\u7EB1\u88D9\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2048 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b5582924ca031760800000000000000 + internalID: 7427292048084456883 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EDA\u70C2\u82B1\u6735\u9ED1\u7EB1\u88D9\u8863\u670D" + rect: + serializedVersion: 2 + x: 2080 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1c29747dc2d55ec0800000000000000 + internalID: -3578722549011764195 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EDA\u70C2\u82B1\u6735\u9ED1\u7EB1\u88D9\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2112 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8a94ea6f97403cf0800000000000000 + internalID: -274640827250861426 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EDB\u73E0\u8349" + rect: + serializedVersion: 2 + x: 2144 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc3c31939173902c0800000000000000 + internalID: -4464976974089829425 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EDB\u923A" + rect: + serializedVersion: 2 + x: 2176 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be6d2ebb74e8344a0800000000000000 + internalID: -6610283389303728405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EDD\u5723\u4E39" + rect: + serializedVersion: 2 + x: 2208 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7f1bc372b52dc760800000000000000 + internalID: 7479676004509359994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EDD\u5929\u6212" + rect: + serializedVersion: 2 + x: 2240 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94025cfae9c5529b0800000000000000 + internalID: -5105572765931069367 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EDD\u5929\u9F99\u7259\u67AA" + rect: + serializedVersion: 2 + x: 2272 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a978705d3af472320800000000000000 + internalID: 2533080880491497370 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EDD\u60C5\u5200" + rect: + serializedVersion: 2 + x: 2304 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1cfc867c0b9f3c840800000000000000 + internalID: 5243308928844484545 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EDD\u60C5\u65A9" + rect: + serializedVersion: 2 + x: 2336 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca9bc44ec3006fcd0800000000000000 + internalID: -2524830279566313044 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EDF\u5FA1\u4E4B\u5FC3" + rect: + serializedVersion: 2 + x: 2368 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0cf6d699d1933cb10800000000000000 + internalID: 2000505458773553088 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EE2\u4E1D" + rect: + serializedVersion: 2 + x: 2400 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a957c08cb6329c50800000000000000 + internalID: 6670454181331425700 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EE3\u7403\u6CD5\u7403" + rect: + serializedVersion: 2 + x: 2432 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fb37afce2b1094f0800000000000000 + internalID: -824128843942511624 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EE3\u7EEE\u56DB\u9762\u4EAD" + rect: + serializedVersion: 2 + x: 2464 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2dfc7a1a8957bec0800000000000000 + internalID: -3551271331473588945 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EE3\u82B1\u978B" + rect: + serializedVersion: 2 + x: 2496 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc82ff7fa00021370800000000000000 + internalID: 8291689911052871887 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EEF\u7EA2\u5E7B\u5F71" + rect: + serializedVersion: 2 + x: 2528 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ea714202a6515500800000000000000 + internalID: 383182697125739241 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EEF\u7EA2\u6C34\u6676\u9152\u5177" + rect: + serializedVersion: 2 + x: 2560 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2c4681ba7d93d5f0800000000000000 + internalID: -733069164041319382 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EF0\u7EA6\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 2592 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45e9366651c082240800000000000000 + internalID: 4767073491623321172 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EF4\u591A\u5229\u4E9A\u7684\u79D8\u5BC6\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2624 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 255134cc2ee3c7140800000000000000 + internalID: 4718715653387916626 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EF4\u591A\u5229\u4E9A\u7684\u79D8\u5BC6\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2656 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0b155f0f9b4153e0800000000000000 + internalID: -2066787607457228017 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EF4\u591A\u5229\u4E9A\u7684\u79D8\u5BC6\u5973\u88C5\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 2688 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ba945458b47a04e0800000000000000 + internalID: -2014669548257240391 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EF4\u591A\u5229\u4E9A\u7684\u79D8\u5BC6\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2720 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1bb6e5bbde2b82740800000000000000 + internalID: 5127544909881830321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EF4\u7EB3\u65AF\u73AB\u7470\u82B1\u4EAD" + rect: + serializedVersion: 2 + x: 2752 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d246641d4305d30a0800000000000000 + internalID: -6900270866282159059 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EF7\u5E26\u7537\u88C5\u7537\u4E0A\u8EAB" + rect: + serializedVersion: 2 + x: 2784 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7cbd19b31d526fa80800000000000000 + internalID: -8433511671626867769 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EF7\u5E26\u7537\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2816 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20d5cc9d36764f3e0800000000000000 + internalID: -2020876654229037822 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EF7\u5E26\u7537\u88C5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 2848 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2ef6c2b57d63fc90800000000000000 + internalID: -7137240632174117329 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EF7\u5E26\u7537\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2880 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a806739e508b970d0800000000000000 + internalID: -3424503706111483766 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EF7\u5E26\u7537\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2912 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d2e42d324c80d7400800000000000000 + internalID: 323424386748141101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFD\u7EA2\u83B2\u82B1\u706F" + rect: + serializedVersion: 2 + x: 2944 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bb967e8499ba14e0800000000000000 + internalID: -2010090235971069004 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u677E\u77F3\u5760\u5B50" + rect: + serializedVersion: 2 + x: 2976 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 253e6cea65e031670800000000000000 + internalID: 8508159886495245138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u72EE\u5B50" + rect: + serializedVersion: 2 + x: 3008 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aecfd767bdce434f0800000000000000 + internalID: -849794002336219926 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u7389\u77F3\u4F69" + rect: + serializedVersion: 2 + x: 3040 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c40239559d23f8cf0800000000000000 + internalID: -247923545457090484 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u773C\u77F3\u67D3\u6599" + rect: + serializedVersion: 2 + x: 3072 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e1233f18aad267c0800000000000000 + internalID: -4079457896831442461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u78F7" + rect: + serializedVersion: 2 + x: 3104 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21bf91c3cfe564f40800000000000000 + internalID: 5712357614799158034 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u7EEE\u7126\u6850\u7434" + rect: + serializedVersion: 2 + x: 3136 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1b5b48f0290c6b40800000000000000 + internalID: 5434728887538637594 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u8272\u5723\u5668\u6B8B\u7247" + rect: + serializedVersion: 2 + x: 3168 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 18b0f8552b714c530800000000000000 + internalID: 3874247634152524673 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u8272\u5C0F\u661F\u661F" + rect: + serializedVersion: 2 + x: 3200 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 01b1874ea4b5294d0800000000000000 + internalID: -3129338413850289392 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u8272\u5C0F\u70DF\u82B1" + rect: + serializedVersion: 2 + x: 3232 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ee72071011922530800000000000000 + internalID: 3828782131509886691 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u8272\u67D3\u8272\u5242" + rect: + serializedVersion: 2 + x: 3264 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: becf35a0fb974c160800000000000000 + internalID: 7044889578533289195 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u8272\u68C9\u7EBF" + rect: + serializedVersion: 2 + x: 3296 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9395caedff4886c0800000000000000 + internalID: -4140971905383033955 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u8272\u836F\u7C89" + rect: + serializedVersion: 2 + x: 3328 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c6e7838cb690afc0800000000000000 + internalID: -3485620375180024122 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u8336\u68D2\u68D2\u7CD6" + rect: + serializedVersion: 2 + x: 3360 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 357762fd06de427f0800000000000000 + internalID: -638124246863284397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u841D\u6728\u6805\u680F" + rect: + serializedVersion: 2 + x: 3392 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f3892f1dbcf37b10800000000000000 + internalID: 1978202550547612665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u843C\u53F6" + rect: + serializedVersion: 2 + x: 3424 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f22a1410110a05dd0800000000000000 + internalID: -2499321798294658513 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u843C\u6885" + rect: + serializedVersion: 2 + x: 3456 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c97a59cfc007d2f0800000000000000 + internalID: -948288304101819962 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7EFF\u9C7C\u5375" + rect: + serializedVersion: 2 + x: 3488 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db79f51f0a3868380800000000000000 + internalID: -8969336880594184259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F09\u53E4\u7B97\u7ECF" + rect: + serializedVersion: 2 + x: 3520 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51a88712108eb73b0800000000000000 + internalID: -5513558227230881259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F1A\u5730\u4E4B\u854A" + rect: + serializedVersion: 2 + x: 3552 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2db7fae9381e9a320800000000000000 + internalID: 2569833017810844626 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F1A\u9B42\u5C65" + rect: + serializedVersion: 2 + x: 3584 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1362c34a00bf2cd70800000000000000 + internalID: 9062081380396836401 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F20\u7EF5\u8F6F\u97AD" + rect: + serializedVersion: 2 + x: 3616 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c06018d304574a570800000000000000 + internalID: 8477029317388338700 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F24\u7EB7\u70DF\u82B1" + rect: + serializedVersion: 2 + x: 3648 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b886eb4e6d75fe50800000000000000 + internalID: 6842513121532610741 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F54\u6781\u5200" + rect: + serializedVersion: 2 + x: 3680 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c322e2c443d61f6f0800000000000000 + internalID: -652620399608192452 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F57\u5239\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3712 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1de0eed0631444b0800000000000000 + internalID: -5457215541689127654 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F57\u5239\u5983\u7684\u773C\u73E0" + rect: + serializedVersion: 2 + x: 3744 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd92510c5adcd1250800000000000000 + internalID: 5917111597210610141 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F57\u5589\u8F6E" + rect: + serializedVersion: 2 + x: 3776 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bf20b61f818b0b80800000000000000 + internalID: -8427499826132799564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F57\u7538\u9ED1\u73CD\u73E0" + rect: + serializedVersion: 2 + x: 3808 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ae35a7de93891a30800000000000000 + internalID: 4186522046863589024 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F57\u76D8" + rect: + serializedVersion: 2 + x: 3840 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 361dbb6f5975b1380800000000000000 + internalID: -8999503128768556701 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F57\u7EB1\u5973\u88C5\u793C\u5305" + rect: + serializedVersion: 2 + x: 3872 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03d334440eedd8840800000000000000 + internalID: 5228079797246311728 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F57\u9A6C\u5F0F\u5BAB\u5EF7\u5C55\u793A\u67DC" + rect: + serializedVersion: 2 + x: 3904 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2e71feb6d9229640800000000000000 + internalID: 5085172931557948970 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F57\u9A6C\u5F0F\u80E1\u6843\u7ACB\u67DC" + rect: + serializedVersion: 2 + x: 3936 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8591f7ae28f40a590800000000000000 + internalID: -7665039142086043304 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F57\u9A6C\u98CE\u80E1\u6843\u4E66\u684C" + rect: + serializedVersion: 2 + x: 3968 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8cfff9512ff400680800000000000000 + internalID: -8790938571463721016 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F61\u98CE\u5FBD\u7AE01" + rect: + serializedVersion: 2 + x: 4000 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d41299a99bcc6950800000000000000 + internalID: 6443749027695695060 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F61\u98CE\u5FBD\u7AE02" + rect: + serializedVersion: 2 + x: 4032 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf90ccde9e8edd960800000000000000 + internalID: 7628509435250084347 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F61\u98CE\u5FBD\u7AE0\u7070" + rect: + serializedVersion: 2 + x: 4064 + y: 2464 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bc0d66715ae6b230800000000000000 + internalID: 3654365783257844914 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F61\u98CE\u5FBD\u7AE0\u84DD" + rect: + serializedVersion: 2 + x: 0 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 978762db4f4e0bad0800000000000000 + internalID: -2688397237743617927 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F61\u98CE\u5FBD\u7AE0\u91D1" + rect: + serializedVersion: 2 + x: 32 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20d4f86446d5a6b80800000000000000 + internalID: -8400799469644329726 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F6A\u6076\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 64 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0e090506ee8a0c30800000000000000 + internalID: 4326427510620884492 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F8A\u4EBA\u7684\u4FE1\u7269" + rect: + serializedVersion: 2 + x: 96 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8fa0fb657a883080800000000000000 + internalID: -9207457201232236661 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F8A\u5E74\u6446\u644A\u5973" + rect: + serializedVersion: 2 + x: 128 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e7d9b0f95ba24750800000000000000 + internalID: 6287776432541784033 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F8A\u5E74\u6446\u644A\u7537" + rect: + serializedVersion: 2 + x: 160 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37fb60ec9219319c0800000000000000 + internalID: -3957660038792298637 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F8A\u65CF\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 192 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9143ac65a3b6a7760800000000000000 + internalID: 7456390031373644825 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F8A\u76AE\u5730\u56FE" + rect: + serializedVersion: 2 + x: 224 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9132bc6acf3366990800000000000000 + internalID: -7393164578058984679 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F8A\u76AE\u7B26\u7EB8" + rect: + serializedVersion: 2 + x: 256 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 269f4337a594f3ef0800000000000000 + internalID: -126301611714348702 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F8E" + rect: + serializedVersion: 2 + x: 288 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79f2d31d223e0e690800000000000000 + internalID: -7574804834558333033 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F8E\u4EBA\u8549" + rect: + serializedVersion: 2 + x: 320 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 751dcc197259bfe40800000000000000 + internalID: 5691306551295136087 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F8E\u4EBA\u9C7C" + rect: + serializedVersion: 2 + x: 352 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54bc7a277d4c89090800000000000000 + internalID: -8027449906167297211 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7F8E\u5973\u770B\u8FD9\u91CC" + rect: + serializedVersion: 2 + x: 384 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf3260406e7f77410800000000000000 + internalID: 1474919970269176827 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FA1\u5883\u795E\u4E39\u5E7B\u5929" + rect: + serializedVersion: 2 + x: 416 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c11ea32489889e800800000000000000 + internalID: 642194609404567836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FA4\u661F\u7480\u74A8\u5361" + rect: + serializedVersion: 2 + x: 448 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa8169b0aff225ba0800000000000000 + internalID: -6101761794150885206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FA4\u9E70\u5CED\u58C1" + rect: + serializedVersion: 2 + x: 480 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3de8e61136e40630800000000000000 + internalID: 3892489076467100991 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u4E4B\u5B88\u62A4(\u795E\u9E70\u795D\u798F)" + rect: + serializedVersion: 2 + x: 512 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b806c2295556a4de0800000000000000 + internalID: -1348153720245034869 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u5609\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 544 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45cc50a75cfce43e0800000000000000 + internalID: -2067486731853771692 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u5609\u6218\u94E0" + rect: + serializedVersion: 2 + x: 576 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 328ca895b1273d8e0800000000000000 + internalID: -1669865575032371165 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u5609\u8155\u7532" + rect: + serializedVersion: 2 + x: 608 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f31db43141e80da0800000000000000 + internalID: -5978280835160402955 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u5609\u978B" + rect: + serializedVersion: 2 + x: 640 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55b135600cfbcb6b0800000000000000 + internalID: -5279133831724328107 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13a\u7FBD\u7075\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 672 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f4b4339ad1df3160800000000000000 + internalID: 7007550281914561779 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13a\u7FBD\u7075\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 704 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d468b60ed4f4d400800000000000000 + internalID: 348172305647035600 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13a\u7FBD\u7075\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 736 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07204c190ff0e2d60800000000000000 + internalID: 7867243124974944880 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13a\u7FBD\u7075\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 768 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7183f1e045c5aa650800000000000000 + internalID: 6244905349386549271 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13a\u7FBD\u8292\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 800 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a71ba375e46b5df00800000000000000 + internalID: 1141018528195457402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13a\u7FBD\u8292\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 832 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d2907e8646422080800000000000000 + internalID: -9213724618795216172 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13a\u7FBD\u8292\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 864 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 40cb5a9b528c155b0800000000000000 + internalID: -5381300015377040380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13a\u7FBD\u8292\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 896 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 375aa273f7a2e8940800000000000000 + internalID: 5300220537336407411 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13b\u7FBD\u7075\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 928 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1129a06eb92881e90800000000000000 + internalID: -7054745210184887791 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13b\u7FBD\u7075\u804C\u4E1A\u88C5\u62A4\u624B" + rect: + serializedVersion: 2 + x: 960 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71e5f22531abce020800000000000000 + internalID: 2372475695863389719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13b\u7FBD\u7075\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 992 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 093a0dbd6fbc45000800000000000000 + internalID: 23868159153972112 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13b\u7FBD\u7075\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1024 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 424aa929fb2b88ba0800000000000000 + internalID: -6086418360523119580 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13b\u7FBD\u8292\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1056 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c28071e8843e7160800000000000000 + internalID: 7025110231246996163 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13b\u7FBD\u8292\u804C\u4E1A\u88C5\u62A4\u624B" + rect: + serializedVersion: 2 + x: 1088 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bfc71acb232d43790800000000000000 + internalID: -7551179559838581509 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13b\u7FBD\u8292\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1120 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 896679876b4d52510800000000000000 + internalID: 1523857929107105432 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF13b\u7FBD\u8292\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1152 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5bb51b80029c69400800000000000000 + internalID: 330672762080287669 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u5723\u9B54" + rect: + serializedVersion: 2 + x: 1184 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cace7755b8eddb7b0800000000000000 + internalID: -5206760904154682196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u67AB\u8272\u7FBD\u6BDB" + rect: + serializedVersion: 2 + x: 1216 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78b31291809bbed60800000000000000 + internalID: 7920627814093634439 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u7075\u7FD4\u7FBD\u7FFC" + rect: + serializedVersion: 2 + x: 1248 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd6018eb2de8105b0800000000000000 + internalID: -5403881042077481253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u707F\u8776\u7C89" + rect: + serializedVersion: 2 + x: 1280 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd9c57600db81c220800000000000000 + internalID: 2504436593372547549 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u70BD\u5929\u4F7F\u7FC5\u8180" + rect: + serializedVersion: 2 + x: 1312 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de7315b8532d862e0800000000000000 + internalID: -2132223296147474451 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u767D\u7FBD\u7FC5\u8180" + rect: + serializedVersion: 2 + x: 1344 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d6957be1147e2040800000000000000 + internalID: 4624761487669696208 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u7D2B\u8000\u7FBD\u7FC5" + rect: + serializedVersion: 2 + x: 1376 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d36422098aecaedf0800000000000000 + internalID: -150080414195497411 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u7EA2\u673A\u68B0\u7FC5\u8180" + rect: + serializedVersion: 2 + x: 1408 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be8cd774184be0a00800000000000000 + internalID: 724715057396435179 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u7FBD\u7075\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1440 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94ad3d32392846450800000000000000 + internalID: 6081128965329902153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u7FBD\u7075\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1472 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59ddd65add2cae6a0800000000000000 + internalID: -6419104061644218987 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u7FBD\u7075\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1504 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84fea15b499760f90800000000000000 + internalID: -6987764092218183864 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u7FBD\u7075\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1536 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ac7136989c3f4040800000000000000 + internalID: 4633989167640050852 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u7FBD\u8292\u804C\u4E1A\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1568 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9a9de7bfb6dc7a10800000000000000 + internalID: 1908636461011147419 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u7FBD\u8292\u804C\u4E1A\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1600 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1daf341bc5f953c60800000000000000 + internalID: 7797313550321711825 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u7FBD\u8292\u804C\u4E1A\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1632 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 001ce91fd0a482170800000000000000 + internalID: 8153848549103026432 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u7FBD\u8292\u804C\u4E1A\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1664 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1878229cd1117b250800000000000000 + internalID: 5960251451474347905 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u84DD\u5B99" + rect: + serializedVersion: 2 + x: 1696 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 107479bba4293eca0800000000000000 + internalID: -5988782229800139007 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u90E8\u843D\u4E4B\u5149" + rect: + serializedVersion: 2 + x: 1728 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a460dce2f8b1dfa70800000000000000 + internalID: 8862269943514465866 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u98DE\u884C\u5668" + rect: + serializedVersion: 2 + x: 1760 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b0138a74f1b70130800000000000000 + internalID: 3532988096280989878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u98DE\u884C\u5668\u8180\u5B50" + rect: + serializedVersion: 2 + x: 1792 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8900b58b103527ec0800000000000000 + internalID: -3570700287698337640 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u65CF\u9ED1\u9B54\u7130" + rect: + serializedVersion: 2 + x: 1824 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba8e9bd50090e0710800000000000000 + internalID: 1661275209723406507 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u6BDB\u5370\u5EA6\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1856 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: abe82b3a0e70a7420800000000000000 + internalID: 2628421993924562618 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u6BDB\u5370\u5EA6\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1888 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a594a4187d18cb040800000000000000 + internalID: 4664746076636072282 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u6BDB\u5370\u5EA6\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1920 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09012de807c11e120800000000000000 + internalID: 2441263742769565840 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u6BDB\u5370\u5EA6\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1952 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79c4a1d7e92d8dd60800000000000000 + internalID: 7915307923249187991 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u7075\u5927\u5E08" + rect: + serializedVersion: 2 + x: 1984 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7717b1cbcd55ee20800000000000000 + internalID: 3379210225121171325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u7075\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 2016 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 405c749d861a428b0800000000000000 + internalID: -5177836199875197692 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u7075\u661F\u76D8" + rect: + serializedVersion: 2 + x: 2048 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 494534720d6b05480800000000000000 + internalID: -8912422657438034796 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u7075\u7248\u7C89\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2080 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eba60dc5b6e48c090800000000000000 + internalID: -8014069313880167746 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u795E\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 2112 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c63de24815a723a00800000000000000 + internalID: 734784179743413100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u8292\u5927\u5E08" + rect: + serializedVersion: 2 + x: 2144 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ccac91feec677fe0800000000000000 + internalID: -1191363802904613688 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u8292\u6212\uFF08\u9633\uFF09" + rect: + serializedVersion: 2 + x: 2176 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3969c5b192943cd30800000000000000 + internalID: 4450481297673721491 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u8292\u6212\uFF08\u9634\uFF09" + rect: + serializedVersion: 2 + x: 2208 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2fe94db45dc203580800000000000000 + internalID: -8849523973171142926 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u8292\u6218\u7532" + rect: + serializedVersion: 2 + x: 2240 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f54bc131fe3610010800000000000000 + internalID: 1153312858052539487 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u8292\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 2272 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 788f1183a0908cf50800000000000000 + internalID: 6901776368440309895 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u8292\u62A4\u624B" + rect: + serializedVersion: 2 + x: 2304 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d273a41c293bfc490800000000000000 + internalID: -7723757393027647699 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u8292\u62A4\u817F" + rect: + serializedVersion: 2 + x: 2336 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0950cabff1a055c0800000000000000 + internalID: -4228701930378995441 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u8292\u661F\u76D8" + rect: + serializedVersion: 2 + x: 2368 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dba7c52584838c4b0800000000000000 + internalID: -5420020268269798723 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u8292\u7248\u9EC4\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2400 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 947c85c14b5636ca0800000000000000 + internalID: -6024860052247492791 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u8292\u888B" + rect: + serializedVersion: 2 + x: 2432 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8f87f959656d7b40800000000000000 + internalID: 5439615428088795018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u8292\u978B" + rect: + serializedVersion: 2 + x: 2464 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b908e0581ef13800800000000000000 + internalID: 590532406552299958 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u8292\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2496 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d3661184b6309640800000000000000 + internalID: 5084624128189031380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u88D9\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2528 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9fcc97fdbcc18ced0800000000000000 + internalID: -2393631539994178311 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u88D9\u88C5\u5973\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2560 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a073c5bfa0ad7fab0800000000000000 + internalID: -4974267522705770742 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u88D9\u88C5\u5973\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 2592 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1825738bfe1c376d0800000000000000 + internalID: -2993836091939270015 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u88D9\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2624 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1bcb58eebfca5ee20800000000000000 + internalID: 3379297293449936049 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u9B42\u4E4B\u5F13" + rect: + serializedVersion: 2 + x: 2656 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e768367a7f03a9cd0800000000000000 + internalID: -2550672398728591746 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FBD\u9CDE\u51A0" + rect: + serializedVersion: 2 + x: 2688 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec5304052caa35440800000000000000 + internalID: 4923466569192846798 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FC5\u70751" + rect: + serializedVersion: 2 + x: 2720 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 606e5f64be4672050800000000000000 + internalID: 5775696008796562950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FC5\u70752" + rect: + serializedVersion: 2 + x: 2752 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a4bce9cc6a623e50800000000000000 + internalID: 6787604603877504164 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FC5\u70753" + rect: + serializedVersion: 2 + x: 2784 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e5b1660ac80847a0800000000000000 + internalID: -6392850007268936215 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FC5\u70754" + rect: + serializedVersion: 2 + x: 2816 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ddfd46bc9c8a4bb0800000000000000 + internalID: -4950990235639087655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FC5\u70755" + rect: + serializedVersion: 2 + x: 2848 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a9dab22b5ecab650800000000000000 + internalID: 6249534323750001058 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FC5\u70756" + rect: + serializedVersion: 2 + x: 2880 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 15db71a57c7e6c7a0800000000000000 + internalID: -6357138980590863023 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FC5\u8180\u8D64\u9704" + rect: + serializedVersion: 2 + x: 2912 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4c58f9aeb39ccde0800000000000000 + internalID: -1311510944366961589 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FCE\u96C0\u620F\u6625\u523B\u74F7" + rect: + serializedVersion: 2 + x: 2944 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51378aac83227ef50800000000000000 + internalID: 6910529780536865557 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FD4\u4E91\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 2976 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 088478d84ebac93c0800000000000000 + internalID: -4351414141831395200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FD4\u7A7A\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 3008 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eaf5a826972805b90800000000000000 + internalID: -7255155541837979730 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FD4\u7A7A\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 3040 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5643e7a5640f1450800000000000000 + internalID: 6061568458118874716 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FD4\u7A7A\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 3072 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1160f8656d8c52310800000000000000 + internalID: 1379729683759695377 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FD4\u7A7A\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 3104 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b775f06798a573c60800000000000000 + internalID: 7797800826253039483 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FD4\u7A7A\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 3136 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9959c5e0a6211bfc0800000000000000 + internalID: -3480980790263900775 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FD4\u7A7A\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 3168 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b9d71a78685b4f40800000000000000 + internalID: 5713757757997832626 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE0\u6D9B\u60CA\u95E8" + rect: + serializedVersion: 2 + x: 3200 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f244cb791ef5a8380800000000000000 + internalID: -8968250285436943313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE0\u7389" + rect: + serializedVersion: 2 + x: 3232 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd7c259ad2d6755f0800000000000000 + internalID: -768025168561649701 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE0\u7389\u6DA6\u73E0\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3264 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6bc6ef21e24ce910800000000000000 + internalID: 1867941480390642538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE0\u743C\u58F6" + rect: + serializedVersion: 2 + x: 3296 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4535cf3e44991990800000000000000 + internalID: -7414732247690562226 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE0\u7AF9\u6D41\u6C34" + rect: + serializedVersion: 2 + x: 3328 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf8717a2db727c5d0800000000000000 + internalID: -3042419329851098885 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE0\u7EFF\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3360 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2521c9604bc01cd0800000000000000 + internalID: -2589346308225424085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE0\u85D3\u82B1\u77F3\u7EB2" + rect: + serializedVersion: 2 + x: 3392 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8464d31588602ec50800000000000000 + internalID: 6692919178774267464 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE0\u9752\u83B2\u82B1\u7B14\u6D17" + rect: + serializedVersion: 2 + x: 3424 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4db2a7340e0864e70800000000000000 + internalID: 9099101797841775572 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE1\u7FE0\u4E4B\u53F6" + rect: + serializedVersion: 2 + x: 3456 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aca8d0dac3566ed60800000000000000 + internalID: 7919128306053384906 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE1\u7FE0\u4EBA\u50CF" + rect: + serializedVersion: 2 + x: 3488 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 479f3251df8a495e0800000000000000 + internalID: -1903710937536005772 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE1\u7FE0\u6212" + rect: + serializedVersion: 2 + x: 3520 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37d3a8a532d6f10f0800000000000000 + internalID: -1144075781718524557 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE1\u7FE0\u624B\u956F" + rect: + serializedVersion: 2 + x: 3552 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb49fce2167555090800000000000000 + internalID: -8046429084318722885 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE1\u7FE0\u767D\u83DC" + rect: + serializedVersion: 2 + x: 3584 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90ae454a95e653cd0800000000000000 + internalID: -2579033880311567863 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE1\u7FE0\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 3616 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3ed19a4609adcec0800000000000000 + internalID: -3544991487184740805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u7FE1\u7FE0\u94FE" + rect: + serializedVersion: 2 + x: 3648 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d84b8dd7a536b470800000000000000 + internalID: 8409968349253683413 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8000\u4E16\u91CD\u751F" + rect: + serializedVersion: 2 + x: 3680 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5f36ee62701fb010800000000000000 + internalID: 1206701308831481692 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8000\u5149\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3712 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 498071e56c9535e90800000000000000 + internalID: -7038183084132988780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8000\u661F\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3744 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba8f72f4ed6259230800000000000000 + internalID: 3644862209678899371 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8000\u6708\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3776 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f0b3b46f742230e0800000000000000 + internalID: -2291729130809216782 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8000\u708E\u4E4B\u77DB" + rect: + serializedVersion: 2 + x: 3808 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d255d4ee2bc6c7320800000000000000 + internalID: 2557038204197623085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8000\u7A7A\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3840 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67e1fb276e193c9b0800000000000000 + internalID: -5061041137280672138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8000\u8F89\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3872 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d395d80c0abc4660800000000000000 + internalID: 7371471250949247956 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8000\u9633\u53E4\u5B9D" + rect: + serializedVersion: 2 + x: 3904 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 146f26227f52868b0800000000000000 + internalID: -5158831629788842431 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8001\u864E" + rect: + serializedVersion: 2 + x: 3936 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61cfb5d3976323f00800000000000000 + internalID: 1094997553752833046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8001\u864E\u7684\u773C\u775B" + rect: + serializedVersion: 2 + x: 3968 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1eb165adf59734b40800000000000000 + internalID: 5423311828876139489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8001\u9A6C\u7684\u5C38\u9AA8" + rect: + serializedVersion: 2 + x: 4000 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d4fe156089a85ac0800000000000000 + internalID: -3866153911180135215 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8001\u9F20\u7231\u5927\u7C73" + rect: + serializedVersion: 2 + x: 4032 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d535f5182841d7790800000000000000 + internalID: -7530840451144789155 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8010\u529B\u4E4B\u8BC1" + rect: + serializedVersion: 2 + x: 4064 + y: 2432 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2843314f61cebb90800000000000000 + internalID: -7224124068676286417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8010\u529B\u94F8\u6750" + rect: + serializedVersion: 2 + x: 0 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bcf95412c22db2620800000000000000 + internalID: 2750523084418424779 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8017\u661F\u5361" + rect: + serializedVersion: 2 + x: 32 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 157ea48acdef75570800000000000000 + internalID: 8455507049081136977 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u805A\u4ED9\u7B26" + rect: + serializedVersion: 2 + x: 64 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb131f3b874da7250800000000000000 + internalID: 5943296273148883390 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u805A\u5143\u795E\u77F3" + rect: + serializedVersion: 2 + x: 96 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec2365e4f2247d840800000000000000 + internalID: 5248736661668770510 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u805A\u5B9D\u76C6" + rect: + serializedVersion: 2 + x: 128 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff89d2be5227dde90800000000000000 + internalID: -6999312738678892289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u805A\u7075\u5F29" + rect: + serializedVersion: 2 + x: 160 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0245d0b0c62fe5ca0800000000000000 + internalID: -6026112705519332320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u805A\u795E\u7B26" + rect: + serializedVersion: 2 + x: 192 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7c45caec49404100800000000000000 + internalID: 90152587252550783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u805A\u9B42\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 224 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bab3f8fc7d9de6700800000000000000 + internalID: 535604926627134379 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8089\u76FE\u9879\u94FE" + rect: + serializedVersion: 2 + x: 256 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ef01118d80246dc0800000000000000 + internalID: -3646754006135402525 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8089\u829D" + rect: + serializedVersion: 2 + x: 288 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 47ac0c49ac2a5a9f0800000000000000 + internalID: -457780796145481100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80A5\u4FEE\u7F57" + rect: + serializedVersion: 2 + x: 320 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68ad36fae29d7fb60800000000000000 + internalID: 7779925675840100998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80DC\u5229" + rect: + serializedVersion: 2 + x: 352 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59cebc744d1447a80800000000000000 + internalID: -8470072619183641451 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80DC\u5229\u6212\u6307" + rect: + serializedVersion: 2 + x: 384 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b253ff82a6e27f80800000000000000 + internalID: -8110166393066663240 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E1\u6768" + rect: + serializedVersion: 2 + x: 416 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f569713d0f4be60c0800000000000000 + internalID: -4580524824562526625 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E1\u6843\u5178\u96C5\u6B27\u5F0F\u5E8A" + rect: + serializedVersion: 2 + x: 448 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a5c0a98095051fa0800000000000000 + internalID: -5830748024218794588 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E1\u7434" + rect: + serializedVersion: 2 + x: 480 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7446fed4b77f77720800000000000000 + internalID: 2844013798668330055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E1\u841D\u535C" + rect: + serializedVersion: 2 + x: 512 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a22ed271712878d0800000000000000 + internalID: -2848489993169657178 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218100\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 544 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a53d14129499b2ba0800000000000000 + internalID: -6112623529855691942 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218100\u62A4\u8155" + rect: + serializedVersion: 2 + x: 576 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94ddb94013c36ec20800000000000000 + internalID: 3235339563540667721 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218100\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 608 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f8e7f6ee207f4ed0800000000000000 + internalID: -2427598327383594761 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218100\u978B\u5B50" + rect: + serializedVersion: 2 + x: 640 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d27a4e3ed42df4e0800000000000000 + internalID: -1946358927007780139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u51C6\u9876\u7EA7\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 672 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff82ec5eba92bffd0800000000000000 + internalID: -2307204565825607425 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u51C6\u9876\u7EA7\u62A4\u8155" + rect: + serializedVersion: 2 + x: 704 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: acc464645bbc6e9c0800000000000000 + internalID: -3898204448014054198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u51C6\u9876\u7EA7\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 736 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b393ac2914af8c600800000000000000 + internalID: 488915719112243515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u51C6\u9876\u7EA7\u978B\u5B50" + rect: + serializedVersion: 2 + x: 768 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82abe74650a6d7fd0800000000000000 + internalID: -2342599659769382360 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u65B0\u4E5D\u519B\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 800 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f1d72aef793af550800000000000000 + internalID: 6195327458953646580 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u65B0\u4E5D\u519B\u62A4\u8155" + rect: + serializedVersion: 2 + x: 832 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94225b124dc98bdc0800000000000000 + internalID: -3622973465307045303 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u65B0\u4E5D\u519B\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 864 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2574f26f3bdb1b8b0800000000000000 + internalID: -5138117119225936046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u65B0\u4E5D\u519B\u978B\u5B50" + rect: + serializedVersion: 2 + x: 896 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81af7e2a0922cb580800000000000000 + internalID: -8810128766439785960 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u65B0\u624B\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 928 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2aa3340b98b533a80800000000000000 + internalID: -8488340225737409886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u65B0\u624B\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 960 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2dd1fca75c9900c40800000000000000 + internalID: 5476546220330524114 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u65B0\u624B\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 992 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 790169dab304afd50800000000000000 + internalID: 6771795614764503191 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u65B0\u624B\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1024 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 17364a239bc7ce1f0800000000000000 + internalID: -1014298681204776079 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E211\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1056 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99ca4a8060d052150800000000000000 + internalID: 5847094010776431769 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E211\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1088 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cb21ff446bee96250800000000000000 + internalID: 5938540050273735356 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E211\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1120 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9013accf73fc07e30800000000000000 + internalID: 4499323867114385673 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E211\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1152 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83d332f7e12ff43c0800000000000000 + internalID: -4373010500357505736 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E212\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1184 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65c88e7760b3fed70800000000000000 + internalID: 9074536673142410326 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E212\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1216 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82eacb86820bd7630800000000000000 + internalID: 3926488137739316776 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E212\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1248 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a7a3d6047114adf0800000000000000 + internalID: -169991695904823390 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E212\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1280 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de8fb3118b9659050800000000000000 + internalID: 5806663533848164589 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E213\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1312 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20c5699c0322b8a30800000000000000 + internalID: 4218503068898450434 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E213\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1344 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4efb08b7ab59bc0c0800000000000000 + internalID: -4554381969986633756 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E213\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1376 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 736ce7a5f7a1bc4d0800000000000000 + internalID: -3113365583115139529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E213\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1408 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ee7250d1e5755490800000000000000 + internalID: -7758165170352652574 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E214\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1440 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0896bcc9dc66cd30800000000000000 + internalID: 4451364964400535563 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E214\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1472 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fa6937c14b3050dd0800000000000000 + internalID: -2520604344337590609 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E214\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1504 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42e2f809032933090800000000000000 + internalID: -8055934571154297308 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E214\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1536 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ac81b6844c08b5c0800000000000000 + internalID: -4199593164065895257 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B100\u7EA7\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1568 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3896b8c00108d1ab0800000000000000 + internalID: -5035728001912051325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B100\u7EA7\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1600 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cac9d68f4d1f4bc50800000000000000 + internalID: 6680230044300582060 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B100\u7EA7\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1632 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 31695cf0aa1ebb400800000000000000 + internalID: 341114317321901587 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B100\u7EA7\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1664 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c991f721153201a30800000000000000 + internalID: 4183882884936833436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u51C6\u9876\u7EA7\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1696 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2dc67cb363b2b2ca0800000000000000 + internalID: -6040686963256234798 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u51C6\u9876\u7EA7\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1728 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de6ed1388ac5d9240800000000000000 + internalID: 4800094656670852845 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u51C6\u9876\u7EA7\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1760 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 289322fc3eaaa1dd0800000000000000 + internalID: -2514509546523575934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u51C6\u9876\u7EA7\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1792 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c98f2845388aae80800000000000000 + internalID: -8166565211857253950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u4E5D\u519B\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1824 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4bdad80743a1f610800000000000000 + internalID: 1653282063708248909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u4E5D\u519B\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1856 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a588296591cf71ac0800000000000000 + internalID: -3884358967826937766 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u4E5D\u519B\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1888 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bd45e7fa1767ee10800000000000000 + internalID: 2226861906283810228 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u4E5D\u519B\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1920 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8b2d5275d6703510800000000000000 + internalID: 1526850932797418378 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u624B\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1952 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61a13a9e16391cea0800000000000000 + internalID: -5854235991864042986 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u624B\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1984 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e946359a8be6a0d80800000000000000 + internalID: -8283686825200753506 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u624B\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2016 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1be164508f4e8f20800000000000000 + internalID: 3426763779065637660 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u624B\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2048 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc10f3d9af78984d0800000000000000 + internalID: -3131822555409743413 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E211\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2080 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8659b0ebedb208180800000000000000 + internalID: -9115237410126719640 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E211\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2112 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aaecab992cc266d60800000000000000 + internalID: 7883037412073066154 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E211\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2144 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a219cd7fc944bbc20800000000000000 + internalID: 3223245399277736234 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E211\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2176 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 865f32049b7be1a90800000000000000 + internalID: -7341228336294398616 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E212\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2208 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac5097b474136dcc0800000000000000 + internalID: -3686705062677510710 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E212\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2240 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fea6194cd9ef61c60800000000000000 + internalID: 7788692559145036527 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E212\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2272 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e5b5a9ee36979ca20800000000000000 + internalID: 3083128890023631710 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E212\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2304 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d88d9b72e240aac0800000000000000 + internalID: -3846000541270439728 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E213\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2336 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 851c6661793e8a8a0800000000000000 + internalID: -6293530241194868392 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E213\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2368 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 031b89f1394ea96f0800000000000000 + internalID: -676977473424412368 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E213\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2400 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 884d6cabf86124fd0800000000000000 + internalID: -2359298448218991480 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E213\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2432 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d29f91189b9479ee0800000000000000 + internalID: -1254452910115653331 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E214\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2464 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 225b57780a58e8c60800000000000000 + internalID: 7822336527303030050 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E214\u62A4\u8155" + rect: + serializedVersion: 2 + x: 2496 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac097eb7088cdcd30800000000000000 + internalID: 4453436060699431114 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E214\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2528 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e31d3735f3a7d59f0800000000000000 + internalID: -478091573029777090 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E214\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2560 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6d649a7d352b49770800000000000000 + internalID: 8616708060236826326 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u91D1\u5C5E\u8F6E" + rect: + serializedVersion: 2 + x: 2592 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 461b6cd721e950c50800000000000000 + internalID: 6630879828629696868 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u98DE\u884C\u5668" + rect: + serializedVersion: 2 + x: 2624 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e82deb91cdaf7330800000000000000 + internalID: 3710875665032882401 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u98DE\u884C\u56681" + rect: + serializedVersion: 2 + x: 2656 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba1d5509ab37b0930800000000000000 + internalID: 4110506330028364203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u98DE\u884C\u566811" + rect: + serializedVersion: 2 + x: 2688 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44fea6dcbbb2c6750800000000000000 + internalID: 6299458064389697348 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u98DE\u884C\u566812" + rect: + serializedVersion: 2 + x: 2720 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bffd3e40b0454b510800000000000000 + internalID: 1563967376907821051 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u98DE\u884C\u56682" + rect: + serializedVersion: 2 + x: 2752 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e58599170949e9c70800000000000000 + internalID: 8979778055125424222 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u98DE\u884C\u56683" + rect: + serializedVersion: 2 + x: 2784 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dedcae0f1ee428110800000000000000 + internalID: 1261657577933688301 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u98DE\u884C\u56684" + rect: + serializedVersion: 2 + x: 2816 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45a2cd25520f59920800000000000000 + internalID: 2996565170179549780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u98DE\u884C\u56685" + rect: + serializedVersion: 2 + x: 2848 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d40bd40ff13a53480800000000000000 + internalID: -8920044129366462387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u98DE\u884C\u56686" + rect: + serializedVersion: 2 + x: 2880 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3059d85d144736b20800000000000000 + internalID: 3126470392429778179 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u98DE\u884C\u56687" + rect: + serializedVersion: 2 + x: 2912 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 950bfb6ac8a31ec90800000000000000 + internalID: -7142363158265483175 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80E7\u65CF\u98DE\u884C\u56688" + rect: + serializedVersion: 2 + x: 2944 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f0b63e6e864c3260800000000000000 + internalID: 7078610291867955445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80FD\u8A00\u8349" + rect: + serializedVersion: 2 + x: 2976 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ed5fdb8bbbd741be0800000000000000 + internalID: -1507441730050460194 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80FD\u91CF\u6C34\u6676" + rect: + serializedVersion: 2 + x: 3008 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5930a0acd56fa340800000000000000 + internalID: 4877228919727602010 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u80FD\u91CF\u7ED3\u6676\u4F53\u51B0" + rect: + serializedVersion: 2 + x: 3040 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d91fed67637155c0800000000000000 + internalID: -4228471687060973097 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8102\u80AA" + rect: + serializedVersion: 2 + x: 3072 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56003e7ba461069f0800000000000000 + internalID: -477357050332774299 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8138\u8C31\u62F3\u5957" + rect: + serializedVersion: 2 + x: 3104 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cb8c159e4d8172040800000000000000 + internalID: 4622690845245687996 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u814A\u516B\u7CA5" + rect: + serializedVersion: 2 + x: 3136 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8475bcfd6bf8fde30800000000000000 + internalID: 4530497765759473480 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8150\u5316\u9E1F\u86CB" + rect: + serializedVersion: 2 + x: 3168 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8acf8b04e0b3f7230800000000000000 + internalID: 3638691956340096168 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u817A\u4F53" + rect: + serializedVersion: 2 + x: 3200 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf45bd2d72a75d750800000000000000 + internalID: 6329099162799002875 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u817E\u4E91\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 3232 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d575d60df4977c720800000000000000 + internalID: 2866393071550814045 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u817E\u86DF\u4E4B\u77DB" + rect: + serializedVersion: 2 + x: 3264 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 234a655d9f0c41eb0800000000000000 + internalID: -4749959527710415822 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u81EA\u7136\u788E\u7247" + rect: + serializedVersion: 2 + x: 3296 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1623bbbc99be87810800000000000000 + internalID: 1763418299896115809 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u81EA\u7136\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 3328 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a05d3687ad0638f50800000000000000 + internalID: 6882451146991195402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u81F3\xB7\u8BF8\u795E\u4E4B\u4F51" + rect: + serializedVersion: 2 + x: 3360 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2955ff0137c0a46b0800000000000000 + internalID: -5311419122184137326 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u81F3\u5C0A\u6B66\u5723" + rect: + serializedVersion: 2 + x: 3392 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a798a3ddcb7e4550800000000000000 + internalID: 6146986665356859302 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u81F3\u5C0A\u76D4" + rect: + serializedVersion: 2 + x: 3424 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fa43311218f1d72b0800000000000000 + internalID: -5585273323403397969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u81F3\u5C0A\u7F29\u5730\u94C3" + rect: + serializedVersion: 2 + x: 3456 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1caf3d15887801e0800000000000000 + internalID: -2231401102245385188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u81F4\u547D\u6BD2\u6DB2" + rect: + serializedVersion: 2 + x: 3488 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dcaa60cd4cb283460800000000000000 + internalID: 7221570126993599181 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u81F4\u547D\u7684\u7834\u7EFD" + rect: + serializedVersion: 2 + x: 3520 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: abd58d6446c6c2d80800000000000000 + internalID: -8274119237445329478 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u81F4\u547D\u7684\u7834\u7EFD1" + rect: + serializedVersion: 2 + x: 3552 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a711ec1de3fad1f70800000000000000 + internalID: 9159669901484233082 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u820D\u5229\u5B50" + rect: + serializedVersion: 2 + x: 3584 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce4c458afb98a5990800000000000000 + internalID: -7396447981746731796 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u821C\u65E5\u8170\u9970" + rect: + serializedVersion: 2 + x: 3616 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ccf4514dc22a6bf00800000000000000 + internalID: 1132270669750685644 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u826E\u4E4B\u8868\u5FBD" + rect: + serializedVersion: 2 + x: 3648 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d68d71fb7e6454bd0800000000000000 + internalID: -2646631244852897683 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u826E\u4E4B\u9B42" + rect: + serializedVersion: 2 + x: 3680 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f9616888ed3414a0800000000000000 + internalID: -6623601083025364489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8273\u4E3D\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3712 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 827c985cceff7dfc0800000000000000 + internalID: -3470023595474172120 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8273\u4E3D\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3744 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 05287c6c89e887440800000000000000 + internalID: 4933850178605515344 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8273\u4E3D\u5973\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3776 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c6515f0f51a04e70800000000000000 + internalID: 9097448676939355842 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8273\u4E3D\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3808 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6dd891a20b735940800000000000000 + internalID: 5283702039067024747 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u827A\u4F0E\u9AA8" + rect: + serializedVersion: 2 + x: 3840 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50d74394aaebefca0800000000000000 + internalID: -5981133616519545595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8282\u65E5\u6302\u706F" + rect: + serializedVersion: 2 + x: 3872 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75d71bdb7534ecd80800000000000000 + internalID: -8228565425035575977 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8282\u8282\u5BCC\u8D35" + rect: + serializedVersion: 2 + x: 3904 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7476a3d18dc25870800000000000000 + internalID: 8670218190127002748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u828A\u828A\u4E2D\u534E\u7ED3" + rect: + serializedVersion: 2 + x: 3936 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8b491045f311f720800000000000000 + internalID: 2878103580929772428 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8292\u679C\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 3968 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 331cc9909de43bf80800000000000000 + internalID: -8092037411378511565 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8299\u82D3" + rect: + serializedVersion: 2 + x: 4000 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86e630d59ee46dda0800000000000000 + internalID: -5920457895937085848 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8299\u84C9\u523A" + rect: + serializedVersion: 2 + x: 4032 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d277d8c8c8fbb100800000000000000 + internalID: 124966955929531095 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8299\u84C9\u5E76\u8482\u5782\u706F" + rect: + serializedVersion: 2 + x: 4064 + y: 2400 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c43fa4077af28b10800000000000000 + internalID: 1982422175083082953 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u829D\u4EBA" + rect: + serializedVersion: 2 + x: 0 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad3282a60875d7f20800000000000000 + internalID: 3421987500919890906 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u829D\u9A6C" + rect: + serializedVersion: 2 + x: 32 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3da39165fa1db8290800000000000000 + internalID: -7886979771415315757 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82A6\u82C7" + rect: + serializedVersion: 2 + x: 64 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 342978468f85001b0800000000000000 + internalID: -5692452105134566845 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82A6\u82C7\u79CB\u9526\u53CC\u8033\u58F6" + rect: + serializedVersion: 2 + x: 96 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1364e3ba4b01fc430800000000000000 + internalID: 3805278578304501297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82AD\u8549\u6247\u53CC\u624B\u957F" + rect: + serializedVersion: 2 + x: 128 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1320f2b0b7145c40800000000000000 + internalID: 5500047092609983258 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1" + rect: + serializedVersion: 2 + x: 160 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36bd8cb2815cda8f0800000000000000 + internalID: -527548873728009373 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u4E4B\u6BD4\u57FA\u5C3C\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 192 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4b9b3429b02fde90800000000000000 + internalID: -6998839316361536689 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u4E4B\u6BD4\u57FA\u5C3C\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 224 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4a85f0a78ae8ae70800000000000000 + internalID: 9126802513108240971 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u4E4B\u6BD4\u57FA\u5C3C\u978B" + rect: + serializedVersion: 2 + x: 256 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 217c1c10ae3f34000800000000000000 + internalID: 19127009816987410 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u5349\u5929\u9E45\u6446\u4EF6" + rect: + serializedVersion: 2 + x: 288 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2ef8238e4fa85d20800000000000000 + internalID: 3267554281400106540 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u53CC\u624B\u957F2" + rect: + serializedVersion: 2 + x: 320 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d43e248c9fe4d8600800000000000000 + internalID: 472120370657420109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u56ED\u957F\u6728\u6905" + rect: + serializedVersion: 2 + x: 352 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4bb70362010cf8c0800000000000000 + internalID: -3964292462229865654 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u597D\u6708\u5706" + rect: + serializedVersion: 2 + x: 384 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b800e953a9d84cac0800000000000000 + internalID: -3835785289148792693 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u597D\u6708\u57061" + rect: + serializedVersion: 2 + x: 416 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8e9c6070c56bb360800000000000000 + internalID: 7186449507594051210 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u5F00\u5BCC\u8D35" + rect: + serializedVersion: 2 + x: 448 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 35872208265e91310800000000000000 + internalID: 1376383372357695571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u6735\u5315\u9996" + rect: + serializedVersion: 2 + x: 480 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9055e28d4a6c997a0800000000000000 + internalID: -6369841786635004663 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u6735\u5F29" + rect: + serializedVersion: 2 + x: 512 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32b00fd59b17182c0800000000000000 + internalID: -4431135517396956381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u675F\u6D6E\u96D5\u4E09\u4EBA\u6C99\u53D1" + rect: + serializedVersion: 2 + x: 544 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a0539a1ef3cac150800000000000000 + internalID: 5893738558502686888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u675F\u6D6E\u96D5\u53CC\u4EBA\u6C99\u53D1" + rect: + serializedVersion: 2 + x: 576 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 964c7a198b9064ac0800000000000000 + internalID: -3871396141356039063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u675F\u6D6E\u96D5\u5927\u53CC\u4EBA\u6C99\u53D1" + rect: + serializedVersion: 2 + x: 608 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34ce1190389df07b0800000000000000 + internalID: -5255743083301966781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u675F\u6D6E\u96D5\u76AE\u6C99\u53D1" + rect: + serializedVersion: 2 + x: 640 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db990e343fc891380800000000000000 + internalID: -9000007403879491139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u6837\u5E74\u534E" + rect: + serializedVersion: 2 + x: 672 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cbba34bd98456c6c0800000000000000 + internalID: -4123515457745212484 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u74E3" + rect: + serializedVersion: 2 + x: 704 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b12f2d57e2944b270800000000000000 + internalID: 8265311680025784859 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u751F" + rect: + serializedVersion: 2 + x: 736 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc57eee4a6a74ec80800000000000000 + internalID: -8294370016700238387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u77E5\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 768 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 462460b276a7d1b30800000000000000 + internalID: 4259695406084407908 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u77E5\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 800 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67b73e89d959126d0800000000000000 + internalID: -3016965771254072458 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u77E5\u5973\u88C5\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 832 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef3e40cc2f5a9cfd0800000000000000 + internalID: -2321141670709238786 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u77E5\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 864 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 524446a8acf8a3c60800000000000000 + internalID: 7798703804813427749 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u7EB9\u5C0F\u793C\u670D\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 896 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ecd35fe10decb4b0800000000000000 + internalID: -5423199258694918939 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u7EB9\u5C0F\u793C\u670D\u88E4" + rect: + serializedVersion: 2 + x: 928 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3244ef3e45c676f10800000000000000 + internalID: 2262896449635107875 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u7EB9\u5C0F\u793C\u670D\u978B" + rect: + serializedVersion: 2 + x: 960 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 840902218decab850800000000000000 + internalID: 6393650048418222152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u82DE\u75AF\u5973" + rect: + serializedVersion: 2 + x: 992 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab3aa80d2f6c5eac0800000000000000 + internalID: -3826433562198236230 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u857E\u5E74\u88C5\u8863\u670D" + rect: + serializedVersion: 2 + x: 1024 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b86042610beaae10800000000000000 + internalID: 2209836958354532529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u857E\u5E74\u88C5\u978B" + rect: + serializedVersion: 2 + x: 1056 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8e582bc8e671a81e0800000000000000 + internalID: -2194916104815344152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u866B\u817A\u4F53" + rect: + serializedVersion: 2 + x: 1088 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a228ca4cb66b1230800000000000000 + internalID: 3610592485162099366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u8776\u7EA2\u9526\u69BB" + rect: + serializedVersion: 2 + x: 1120 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6cf2f85585f0d2fd0800000000000000 + internalID: -2365217357232656442 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u8FB9\u523A\u5BA2\u7537\u65F6\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1152 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f979eb6060d4bebc0800000000000000 + internalID: -3752821176204879969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u8FB9\u523A\u5BA2\u7537\u65F6\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1184 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 675921afaa8f5d770800000000000000 + internalID: 8635081273776444790 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u8FB9\u523A\u5BA2\u7537\u65F6\u88C5\u624B\u5957" + rect: + serializedVersion: 2 + x: 1216 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3dd841eaaa34d84f0800000000000000 + internalID: -824928756394848813 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u8FB9\u523A\u5BA2\u7537\u65F6\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1248 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 250a85656be8f79a0800000000000000 + internalID: -6233106445473636270 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u8FB9\u523A\u5BA2\u7537\u65F6\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1280 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cb8ced0709491cf50800000000000000 + internalID: 6899959452198160572 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B1\u95F4\u8361" + rect: + serializedVersion: 2 + x: 1312 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8aadaaf538cbcc40800000000000000 + internalID: 5533736701319293578 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B3\u534E\u76C8\u5BA4\u523B\u74F7" + rect: + serializedVersion: 2 + x: 1344 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86b2fa8659290fd00800000000000000 + internalID: 1004463887307713384 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B3\u8273\u5F69\u7EE2\u7ACB\u706F" + rect: + serializedVersion: 2 + x: 1376 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f73ad6ac66411c9b0800000000000000 + internalID: -5061742074472324225 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82B7\u60AC\u5703" + rect: + serializedVersion: 2 + x: 1408 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41dc578b2de571e50800000000000000 + internalID: 6779992023160442132 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82CD\u56ED\u7FE0\u8349" + rect: + serializedVersion: 2 + x: 1440 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39cac541a24e9aa50800000000000000 + internalID: 6533003603858992275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82CD\u7FBD\u5929\u73E0" + rect: + serializedVersion: 2 + x: 1472 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 777aab9d91837d590800000000000000 + internalID: -7649583758387271817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82CD\u832B\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1504 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24ff893ee74d99a30800000000000000 + internalID: 4222639767085973314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82CD\u832B\u6756" + rect: + serializedVersion: 2 + x: 1536 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 984ca32e515640650800000000000000 + internalID: 6198190131832865929 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82CD\u8747\u62CD" + rect: + serializedVersion: 2 + x: 1568 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f5cd0c63ba40b8b0800000000000000 + internalID: -5138525040357292555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82CD\u9E70\u56FE\u817E" + rect: + serializedVersion: 2 + x: 1600 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 952a59294e134b1c0800000000000000 + internalID: -4488908070799957415 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82CF\u683C\u5170\u9177\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1632 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff5685be569c53b30800000000000000 + internalID: 4266537661580731903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82CF\u683C\u5170\u9177\u88C5\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 1664 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2304ebad1ea223ba0800000000000000 + internalID: -6110774594862432206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82CF\u683C\u5170\u9177\u88C5\u978B" + rect: + serializedVersion: 2 + x: 1696 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8395a5d4931b524d0800000000000000 + internalID: -3159924703861515976 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82E6\u6D77" + rect: + serializedVersion: 2 + x: 1728 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5c1050189c323a00800000000000000 + internalID: 734716313021193308 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82E6\u6D77\u65E0\u6DAF\u80F6" + rect: + serializedVersion: 2 + x: 1760 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c571892564205f60800000000000000 + internalID: 8020950953253500360 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82F1\u4F26\u8857\u5934\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1792 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 114b33211dde7fdf0800000000000000 + internalID: -146386980656925679 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82F1\u4F26\u8857\u5934\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1824 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4d0f27129a475e50800000000000000 + internalID: 6797984153853693263 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82F1\u4F26\u8857\u5934\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1856 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b53f7a69db540510800000000000000 + internalID: 1514436364056081843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82F1\u4F26\u8857\u5934\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1888 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f65f721052cd53940800000000000000 + internalID: 5275364590025700719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82F1\u534E\u8170\u9970" + rect: + serializedVersion: 2 + x: 1920 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d425781ff8e922a20800000000000000 + internalID: 3036163439870825037 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82F1\u96C4\u4E4B\u8840" + rect: + serializedVersion: 2 + x: 1952 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99cbf53955fb6fdc0800000000000000 + internalID: -3605484077397853031 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82F1\u96C4\u8170\u9970" + rect: + serializedVersion: 2 + x: 1984 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e42d8c8f15d463af0800000000000000 + internalID: -417060901023591858 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82F9\u679C\u6811" + rect: + serializedVersion: 2 + x: 2016 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ad0f3c81d4f41020800000000000000 + internalID: 2311741689586191776 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u82F9\u679C\u82AC\u8FBE" + rect: + serializedVersion: 2 + x: 2048 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b9a2df83d004f120800000000000000 + internalID: 2446581406220069296 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u831C\u74E6\u6708\u7259\u95E8" + rect: + serializedVersion: 2 + x: 2080 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aed6767cedb3f2140800000000000000 + internalID: 4697038764384939498 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8336\u58F6" + rect: + serializedVersion: 2 + x: 2112 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 64da570d2bae4b7c0800000000000000 + internalID: -4056359310631523002 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8346\u68D8\u523A" + rect: + serializedVersion: 2 + x: 2144 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eaf5684d8d6112e40800000000000000 + internalID: 5629806129724153774 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8346\u68D8\u523A\u7403" + rect: + serializedVersion: 2 + x: 2176 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a765f6d17c97006f0800000000000000 + internalID: -720442044279990662 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8346\u68D8\u68D2" + rect: + serializedVersion: 2 + x: 2208 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1cd9820b3eb584100800000000000000 + internalID: 92424825832250817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8349\u539F\u5C0F\u82B11" + rect: + serializedVersion: 2 + x: 2240 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7839fa7d57fade160800000000000000 + internalID: 7056489111824077703 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8349\u539F\u5C0F\u82B12" + rect: + serializedVersion: 2 + x: 2272 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3cc9cd0b85f681490800000000000000 + internalID: -7775342329940108093 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8349\u539F\u5C0F\u82B13" + rect: + serializedVersion: 2 + x: 2304 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff5405d795e4ee670800000000000000 + internalID: 8569873287194101247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8349\u539F\u5C0F\u82B14" + rect: + serializedVersion: 2 + x: 2336 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9694828333a29ca40800000000000000 + internalID: 5388884828599372137 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8349\u539F\u5C0F\u82B15" + rect: + serializedVersion: 2 + x: 2368 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b8bc50b0e0b22150800000000000000 + internalID: 5846429745358354610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8349\u82AF\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 2400 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49c2b5e6b0a05ff50800000000000000 + internalID: 6914443847109651604 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8349\u836F\u7C89" + rect: + serializedVersion: 2 + x: 2432 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e46aa1141ab506a0800000000000000 + internalID: -6483571493171469086 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8349\u8393\u7EA2\u68D2\u68D2\u7CD6" + rect: + serializedVersion: 2 + x: 2464 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e3c66a44f57a96a0800000000000000 + internalID: -6441706624919354393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8363\u8349" + rect: + serializedVersion: 2 + x: 2496 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c71c74744c296eb0800000000000000 + internalID: -4726197661424937017 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8367\u5149\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 2528 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e5319b59f8ebbf50800000000000000 + internalID: 6898363411928790501 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u836F\u5E08\u5927\u5E08\u4E4B\u5323\u5C0F" + rect: + serializedVersion: 2 + x: 2560 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 862e8874308a7ca10800000000000000 + internalID: 1929695697390068328 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u836F\u5E08\u7CBE\u901A" + rect: + serializedVersion: 2 + x: 2592 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a3243f9e41d6e2b0800000000000000 + internalID: -5555522954706279513 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u836F\u623F" + rect: + serializedVersion: 2 + x: 2624 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7fbf28a12ba72b00800000000000000 + internalID: 803799219552894847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u836F\u738B\u624B\u672D" + rect: + serializedVersion: 2 + x: 2656 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c0d9491f50fa72e0800000000000000 + internalID: -2127123582742310712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8377\u53F6\u8FB9\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2688 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 956566e46e0edd1c0800000000000000 + internalID: -4477175174773975463 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8377\u53F6\u8FB9\u7537\u88C5\u8863\u670D" + rect: + serializedVersion: 2 + x: 2720 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a033cbc3b72a53c0800000000000000 + internalID: -4370136835238448984 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8377\u53F6\u8FB9\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2752 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51283b72a12d2fd20800000000000000 + internalID: 3310939685847794197 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8377\u53F6\u8FB9\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2784 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b97a85a9f12e82d10800000000000000 + internalID: 2101177851529701275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8377\u82B1" + rect: + serializedVersion: 2 + x: 2816 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 18af87009f33e9690800000000000000 + internalID: -7593574777152275839 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8377\u82B1\u62F3\u5957" + rect: + serializedVersion: 2 + x: 2848 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b103be5f6ae223e80800000000000000 + internalID: -8200440676862971877 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8377\u9999\u6EE1\u590F" + rect: + serializedVersion: 2 + x: 2880 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b3e35c2d666bcf40800000000000000 + internalID: 5749801968349733816 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u837C\u863C\u82B1\u4E8B" + rect: + serializedVersion: 2 + x: 2912 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fb182efc7d4debb0800000000000000 + internalID: -4905179219901277196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83B2\u5B50" + rect: + serializedVersion: 2 + x: 2944 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e79097245ee3ace0800000000000000 + internalID: -1395009414346270743 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83B2\u5F2F\u6298\u6247\u697C" + rect: + serializedVersion: 2 + x: 2976 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 66094b42576876320800000000000000 + internalID: 2551155551613784166 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83B2\u82B1" + rect: + serializedVersion: 2 + x: 3008 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87af0c2185ee8ea70800000000000000 + internalID: 8856590729263250040 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83B2\u82B1\u706F" + rect: + serializedVersion: 2 + x: 3040 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a205caf846a219610800000000000000 + internalID: 1626127551852990506 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83B2\u82B1\u706F\u70DF\u82B1" + rect: + serializedVersion: 2 + x: 3072 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59dd1deb30a725950800000000000000 + internalID: 6436340973970775445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83B2\u82B1\u706F\u70DF\u82B1\u7B80\u5355" + rect: + serializedVersion: 2 + x: 3104 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a7e8c26ecb474d50800000000000000 + internalID: 6721424318666434472 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83B2\u84C9" + rect: + serializedVersion: 2 + x: 3136 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2c0f6ab2a483d2e0800000000000000 + internalID: -2102190766604481489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83B2\u84EC" + rect: + serializedVersion: 2 + x: 3168 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24fbcb816d0e036c0800000000000000 + internalID: -4165582445175062718 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83BA\u83BA\u71D5\u71D5" + rect: + serializedVersion: 2 + x: 3200 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3953de0da684ffff0800000000000000 + internalID: -201851367770733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83CA\u82B1" + rect: + serializedVersion: 2 + x: 3232 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0c09ffd9d8644590800000000000000 + internalID: -7690906978667131893 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83D6\u84B2\u7AF9\u53F6" + rect: + serializedVersion: 2 + x: 3264 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e6a4da344d519020800000000000000 + internalID: 2346759428462913250 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83E1\u6619\u8D50\u8BED\u77F3" + rect: + serializedVersion: 2 + x: 3296 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7656ac16d8acc2fd0800000000000000 + internalID: -2365292995696499353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83E9\u63D0\u4ED9\u7956" + rect: + serializedVersion: 2 + x: 3328 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 541e0d30746122ee0800000000000000 + internalID: -1287442049212030651 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83E9\u63D0\u5B9D\u6756" + rect: + serializedVersion: 2 + x: 3360 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68c96073c21971630800000000000000 + internalID: 3897743621600222342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u83E9\u63D0\u6728" + rect: + serializedVersion: 2 + x: 3392 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f96cea3895ee44490800000000000000 + internalID: -7762817789451123041 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u840C\u59B9\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3424 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e6f01e54344927a0800000000000000 + internalID: -6401510403623291168 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u840C\u59B9\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 3456 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e6c7eb48369536f0800000000000000 + internalID: -705492598077798684 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u840C\u59B9\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3488 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f161f1a7a4e21c90800000000000000 + internalID: -7200441445584379400 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u840C\u59B9\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3520 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7264a54c6e338600800000000000000 + internalID: 469287420922454653 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u840C\u59B9\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3552 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d06f4dccd5d0b300800000000000000 + internalID: 265947522328912085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u840C\u5C0F\u59B9" + rect: + serializedVersion: 2 + x: 3584 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f8a1148f2ecc4c10800000000000000 + internalID: 2039231434766526707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u841D\u5170\u94C1\u827A\u95E8" + rect: + serializedVersion: 2 + x: 3616 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a82b88cd0438903b0800000000000000 + internalID: -5545757151528963446 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u841D\u8389\u88C5\u5934\u53D132" + rect: + serializedVersion: 2 + x: 3648 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f25bdfb5aa7d32af0800000000000000 + internalID: -422256813354928849 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u841D\u8389\u88C5\u8863\u670D32" + rect: + serializedVersion: 2 + x: 3680 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46b2ea367789b8ee0800000000000000 + internalID: -1257744032379032732 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u841D\u8389\u88C5\u978B\u5B5032" + rect: + serializedVersion: 2 + x: 3712 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c69b9de0026da5bf0800000000000000 + internalID: -334719789109233300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8424\u706B\u866B\u56CA" + rect: + serializedVersion: 2 + x: 3744 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82c4dc6daeb4c0160800000000000000 + internalID: 6993047793397746728 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u843D\u51E4\u5F29" + rect: + serializedVersion: 2 + x: 3776 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36a0424793d36d840800000000000000 + internalID: 5248449732717840995 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u843D\u661F" + rect: + serializedVersion: 2 + x: 3808 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 608f240504c0e7160800000000000000 + internalID: 7025065939108558854 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8461\u8404\u5587\u53ED" + rect: + serializedVersion: 2 + x: 3840 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 05e420b2154a46950800000000000000 + internalID: 6441454035567529552 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u4E00" + rect: + serializedVersion: 2 + x: 3872 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21daa858ad7cf76d0800000000000000 + internalID: -2990451886193464046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u4E8C" + rect: + serializedVersion: 2 + x: 3904 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 330e07486b695ab90800000000000000 + internalID: -7231207916023259085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u5B9D\u6C34\u6676\u9152\u5177" + rect: + serializedVersion: 2 + x: 3936 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0441ca0d765e36440800000000000000 + internalID: 4928034651318785088 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u5B9D\u77F3" + rect: + serializedVersion: 2 + x: 3968 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e59d330e35ba48f80800000000000000 + internalID: -8105165052627920546 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u5B9D\u77F3\u6212\u6307\u5927" + rect: + serializedVersion: 2 + x: 4000 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6bdff66c18502db0800000000000000 + internalID: -4818754722276058258 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u5B9D\u77F3\u6212\u6307\u5C0F" + rect: + serializedVersion: 2 + x: 4032 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 507db300406620ac0800000000000000 + internalID: -3890434960724863227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u5B9D\u77F3\u88C5" + rect: + serializedVersion: 2 + x: 4064 + y: 2368 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8344c3fde67fa14c0800000000000000 + internalID: -4315865237317467080 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u5F71\u4E2D\u7EA7" + rect: + serializedVersion: 2 + x: 0 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6099ab19a8d42f2e0800000000000000 + internalID: -2093525619228108538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u5F71\u521D\u7EA7" + rect: + serializedVersion: 2 + x: 32 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f4b1483590ee5f80800000000000000 + internalID: -8115802546976475913 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u5F71\u9AD8\u7EA7" + rect: + serializedVersion: 2 + x: 64 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5cc3fec50adfeaa60800000000000000 + internalID: 7687360479163792581 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u7389" + rect: + serializedVersion: 2 + x: 96 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fa2592459ca1dca30800000000000000 + internalID: 4237072276428247727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u7CBE\u7075" + rect: + serializedVersion: 2 + x: 128 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7467a7a10d4cc8a0800000000000000 + internalID: -6283562710585613187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u7EFF\u4E00" + rect: + serializedVersion: 2 + x: 160 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9300540382bf6bc20800000000000000 + internalID: 3222038733457260601 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u7EFF\u4E8C" + rect: + serializedVersion: 2 + x: 192 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57b411a739881bfd0800000000000000 + internalID: -2327929365384311947 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8272\u5723\u5668\u6B8B\u7247" + rect: + serializedVersion: 2 + x: 224 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5157f7335bb295420800000000000000 + internalID: 2619172715545720085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8272\u5927\u773C\u775B" + rect: + serializedVersion: 2 + x: 256 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e85188c009a466c70800000000000000 + internalID: 8963934090873542030 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8272\u5996\u59EC" + rect: + serializedVersion: 2 + x: 288 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c1f4affad8daff70800000000000000 + internalID: 9221921622097981888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8272\u5C0F\u661F\u661F" + rect: + serializedVersion: 2 + x: 320 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba6fc0df62ef0c020800000000000000 + internalID: 2360165648149837483 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8272\u601D\u5FF5" + rect: + serializedVersion: 2 + x: 352 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22615424ffd006e50800000000000000 + internalID: 6800450827309094434 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8272\u604B\u60C5" + rect: + serializedVersion: 2 + x: 384 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9540bf261bcb03e0800000000000000 + internalID: -2086350706206292579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8272\u661F\u7403" + rect: + serializedVersion: 2 + x: 416 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 38822078410ebb150800000000000000 + internalID: 5889547316486088835 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8272\u67D3\u8272\u5242" + rect: + serializedVersion: 2 + x: 448 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c87f0898ef574c250800000000000000 + internalID: 5964021542634452876 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8272\u6C34\u6676\u77F3" + rect: + serializedVersion: 2 + x: 480 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90a0af9ce7b1dce20800000000000000 + internalID: 3372381927338805769 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8272\u6D46\u8349" + rect: + serializedVersion: 2 + x: 512 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7561a2a3cc6c82ff0800000000000000 + internalID: -60580014518036905 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8272\u8001\u9E70" + rect: + serializedVersion: 2 + x: 544 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79a4d4d8c585e6730800000000000000 + internalID: 3994227074055096983 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8393\u68D2\u68D2\u7CD6\u7247" + rect: + serializedVersion: 2 + x: 576 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c076f6b196e952fc0800000000000000 + internalID: -3520233359451134196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8611\u83C7" + rect: + serializedVersion: 2 + x: 608 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c340ca2a691948400800000000000000 + internalID: 325545149237822524 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8611\u83C72" + rect: + serializedVersion: 2 + x: 640 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 066bab533c264a420800000000000000 + internalID: 2640343872105526880 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u8C79\u5B50" + rect: + serializedVersion: 2 + x: 672 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f2cb2497a63c1e80800000000000000 + internalID: -8206624327602552078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u84DD\u94BB" + rect: + serializedVersion: 2 + x: 704 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b524b2a89e5666a0800000000000000 + internalID: -6456369006131272263 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8513\u8D8A\u8393\u7269\u8BED" + rect: + serializedVersion: 2 + x: 736 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f9e7eaf6640a12e0800000000000000 + internalID: -2154404631400683015 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u851A\u84DD\u87E0\u8FD0\u78A7\u73BA" + rect: + serializedVersion: 2 + x: 768 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88a6afede01e70400800000000000000 + internalID: 290448154975431304 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u851A\u84DD\u9065\u6781\u78A7\u73BA" + rect: + serializedVersion: 2 + x: 800 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 163479286e0a97880800000000000000 + internalID: -8612675900475489439 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u853D\u65E5\u9E22\u5361\u72471" + rect: + serializedVersion: 2 + x: 832 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 128586b4503001680800000000000000 + internalID: -8786519551724988383 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u853D\u65E5\u9E22\u5361\u72472" + rect: + serializedVersion: 2 + x: 864 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a3cc562bbe15aea0800000000000000 + internalID: -5862245550801501279 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u853D\u65E5\u9E22\u5361\u72473" + rect: + serializedVersion: 2 + x: 896 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46a05f2051bf402a0800000000000000 + internalID: -6772011871995884956 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u853D\u65E5\u9E22\u5361\u72474" + rect: + serializedVersion: 2 + x: 928 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ad1214cbb171da00800000000000000 + internalID: 779529261774151077 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u853D\u65E5\u9E22\u5361\u72475" + rect: + serializedVersion: 2 + x: 960 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c764c042c2df2ea90800000000000000 + internalID: -7285982881106868612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u853D\u65E5\u9E22\u5361\u72476" + rect: + serializedVersion: 2 + x: 992 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 95290d23a8d30abb0800000000000000 + internalID: -4926870328576011687 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u853D\u65E5\u9E22\u5361\u72477" + rect: + serializedVersion: 2 + x: 1024 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 243afb5120ff81130800000000000000 + internalID: 3537857891719422786 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u853D\u65E5\u9E22\u5361\u72478" + rect: + serializedVersion: 2 + x: 1056 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8827c48b09844f40800000000000000 + internalID: 5711840909977921675 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u854A\u5149\u6D6E\u9999\u6811" + rect: + serializedVersion: 2 + x: 1088 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fa5381ea38ac3a330800000000000000 + internalID: 3721040384048510383 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8584\u8377\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 1120 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3490f048cbbe4b790800000000000000 + internalID: -7515122683272558269 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u858F\u7C73" + rect: + serializedVersion: 2 + x: 1152 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4309d53222b92500800000000000000 + internalID: 372024304236823375 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85B0\u8863\u8349" + rect: + serializedVersion: 2 + x: 1184 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b3e5d03a00cae420800000000000000 + internalID: 2660149679917228983 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85CF\u5B9D\u56FE" + rect: + serializedVersion: 2 + x: 1216 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14199d2429e405c00800000000000000 + internalID: 887295516685734209 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85CF\u5B9D\u56FE1\u7EA7" + rect: + serializedVersion: 2 + x: 1248 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69f9338f5bd4b1c90800000000000000 + internalID: -7198074135473053802 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85CF\u5B9D\u56FE2\u7EA7" + rect: + serializedVersion: 2 + x: 1280 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c39d5a7dccaa5870800000000000000 + internalID: 8672434030976537536 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85CF\u5B9D\u56FE3\u7EA7" + rect: + serializedVersion: 2 + x: 1312 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd3127de156cbeee0800000000000000 + internalID: -1230672017977371683 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85CF\u5B9D\u56FE4\u7EA7" + rect: + serializedVersion: 2 + x: 1344 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67e6129a826e5be80800000000000000 + internalID: -8163365687228535178 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85CF\u5B9D\u56FE5\u7EA7" + rect: + serializedVersion: 2 + x: 1376 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 537557793680aa3d0800000000000000 + internalID: -3194731761830111435 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85CF\u5B9D\u56FE6\u7EA7" + rect: + serializedVersion: 2 + x: 1408 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb73a1e1cd6b026c0800000000000000 + internalID: -4170132198430984258 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85CF\u5B9D\u56FE7\u7EA7" + rect: + serializedVersion: 2 + x: 1440 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbc0bdeec08ed66d0800000000000000 + internalID: -2995483034886927171 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85CF\u5B9D\u56FE8\u7EA7" + rect: + serializedVersion: 2 + x: 1472 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ecc6e1f689e0c0c40800000000000000 + internalID: 5479770894465133774 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85CF\u5F71\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 1504 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 387dcee17dc4423c0800000000000000 + internalID: -4385295650331502717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85CF\u661F\u5251" + rect: + serializedVersion: 2 + x: 1536 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5306b51073717bcf0800000000000000 + internalID: -236694930400255947 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85CF\u70DF\u58A8" + rect: + serializedVersion: 2 + x: 1568 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aab7bf406778711e0800000000000000 + internalID: -2227162549751940182 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85CF\u7A7A\u5947\u5377" + rect: + serializedVersion: 2 + x: 1600 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6bdcfedf40b2f0480800000000000000 + internalID: -8930872235612189258 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85CF\u950B\u5251" + rect: + serializedVersion: 2 + x: 1632 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36efe391670cfd780800000000000000 + internalID: -8655988345320571293 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85D5\u8377\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 1664 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: abc4e6a550b975e50800000000000000 + internalID: 6798072609833372858 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85D5\u8377\u8272\u67D3\u8272\u5361" + rect: + serializedVersion: 2 + x: 1696 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7845ffe771e343be0800000000000000 + internalID: -1498504505371700089 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85E4\u6756" + rect: + serializedVersion: 2 + x: 1728 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81192035f26b58380800000000000000 + internalID: -8969562768466079464 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85E4\u8513\u96D5\u9542\u5C4F\u98CE" + rect: + serializedVersion: 2 + x: 1760 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0bb9e453d0e8dc980800000000000000 + internalID: -8516995132907676752 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85E4\u97AD" + rect: + serializedVersion: 2 + x: 1792 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 111ce4744222d8f30800000000000000 + internalID: 4579353935316173073 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85E4\u9EC4" + rect: + serializedVersion: 2 + x: 1824 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 458660d3e0accf4d0800000000000000 + internalID: -3099380281035560876 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u85FF\u9999" + rect: + serializedVersion: 2 + x: 1856 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7e249f744b337600800000000000000 + internalID: 464780351933525630 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8638\u91D1\u65A7" + rect: + serializedVersion: 2 + x: 1888 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec90702e0bdb12050800000000000000 + internalID: 5774104764669692366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u5578\u9774" + rect: + serializedVersion: 2 + x: 1920 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56f7d5fc51cf00400800000000000000 + internalID: 288507546755235685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u5934\u76D4" + rect: + serializedVersion: 2 + x: 1952 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d90b22eb6ceb9b70800000000000000 + internalID: 8906972636155415001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u5934\u7EA2\u5305" + rect: + serializedVersion: 2 + x: 1984 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 424cba090e5bacb90800000000000000 + internalID: -7220759076430691292 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u5A01\u51FD" + rect: + serializedVersion: 2 + x: 2016 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 652498690b9bcfb10800000000000000 + internalID: 2016690901246100054 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u5E74\u5145\u5B9E\u7EA2\u5305" + rect: + serializedVersion: 2 + x: 2048 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d21761cc44a9c9940800000000000000 + internalID: 5304284081408078125 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u5E74\u539A\u91CD\u7EA2\u5305" + rect: + serializedVersion: 2 + x: 2080 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 47ded91a7190ea930800000000000000 + internalID: 4156269503209926004 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u5E74\u6625\u8282\u5927\u7EA2\u5305" + rect: + serializedVersion: 2 + x: 2112 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3eb8aed94958e0b0800000000000000 + internalID: -5699207154634277317 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u5E74\u6625\u8282\u677E" + rect: + serializedVersion: 2 + x: 2144 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0614c5e43811a150800000000000000 + internalID: 5882009203794777615 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u5E74\u6625\u8282\u6885" + rect: + serializedVersion: 2 + x: 2176 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b40abe5d85f4b13b0800000000000000 + internalID: -5540747673584558005 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u5E74\u6625\u8282\u7AF9" + rect: + serializedVersion: 2 + x: 2208 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7ce7cbe299faa220800000000000000 + internalID: 2498083352746650748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u5E74\u6625\u8282\u8BF7\u5E16" + rect: + serializedVersion: 2 + x: 2240 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33487acbca279aa40800000000000000 + internalID: 5379957316095804467 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u5E74\u6625\u8282\u9999" + rect: + serializedVersion: 2 + x: 2272 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6eebf52e16d27ef40800000000000000 + internalID: 5757620547049471718 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u5E74\u7565\u9F13\u7684\u7EA2\u5305" + rect: + serializedVersion: 2 + x: 2304 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0551d4f896226c80800000000000000 + internalID: -8331053922297752310 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u5E74\u9576\u91D1\u7EA2\u5305" + rect: + serializedVersion: 2 + x: 2336 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 53ba13a00ab476ec0800000000000000 + internalID: -3573804628557321419 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u6591\u7B26" + rect: + serializedVersion: 2 + x: 2368 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98a9556a8d22edc00800000000000000 + internalID: 927216887183809161 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u7259\u7A81" + rect: + serializedVersion: 2 + x: 2400 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7bbc0de5a8d67d640800000000000000 + internalID: 5104669143711402935 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u73E0\u553E\u6DB2" + rect: + serializedVersion: 2 + x: 2432 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 909fa251e633ad2b0800000000000000 + internalID: -5559074242140899063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u76AE\u5E3D\u6A90" + rect: + serializedVersion: 2 + x: 2464 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c8ba33a0d09d6f30800000000000000 + internalID: 4570468422617053377 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u76AE\u62A4\u5FC3\u955C\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 2496 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2cf247a8b958729e0800000000000000 + internalID: -1646200235691331646 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u76AE\u62A4\u8155\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 2528 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d647ecc6b89d66ee0800000000000000 + internalID: -1268087052209064851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u76AE\u62A4\u819D\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 2560 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 928ef549f6b4c24f0800000000000000 + internalID: -852223286877099991 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u76AE\u62A4\u8E1D\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 2592 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6714c3f66642537b0800000000000000 + internalID: -5245246168631590538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u76AE\u98D8\u5E26\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 2624 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc427d616a12d62b0800000000000000 + internalID: -5589774565265431347 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u7B26" + rect: + serializedVersion: 2 + x: 2656 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d851e3d6f957e570800000000000000 + internalID: 8495858138709317842 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u8033\u8349" + rect: + serializedVersion: 2 + x: 2688 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ea0a0814445d9b30800000000000000 + internalID: 4295682271019141861 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u864E\u751F\u98CE" + rect: + serializedVersion: 2 + x: 2720 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a07bc04f5789932d0800000000000000 + internalID: -3298437619699108086 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u98CE\u8170\u4F69" + rect: + serializedVersion: 2 + x: 2752 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67f312186d85baea0800000000000000 + internalID: -5860492811779883146 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u864E\u9B44" + rect: + serializedVersion: 2 + x: 2784 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5217a9b876733e650800000000000000 + internalID: 6260908824838435109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u865A\u5047\u5B9D\u85CF" + rect: + serializedVersion: 2 + x: 2816 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9eb768bb41bbf3d60800000000000000 + internalID: 7872216371386809321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u865A\u65E0\u5B9D\u73E0" + rect: + serializedVersion: 2 + x: 2848 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ecde85273f8a4aca0800000000000000 + internalID: -6006490239456449074 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u865A\u65E0\u6E38\u795E" + rect: + serializedVersion: 2 + x: 2880 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33576689776af37e0800000000000000 + internalID: -1783523894827256525 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u865A\u7A7A\u85CF\u83E9\u8428" + rect: + serializedVersion: 2 + x: 2912 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fec285216051ce60800000000000000 + internalID: 7980748392848609016 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u865A\u7A7A\u85CF\u83E9\u8428\u788E\u7247" + rect: + serializedVersion: 2 + x: 2944 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc1d8f553fb3c17f0800000000000000 + internalID: -640571130687991347 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u866B\u5375" + rect: + serializedVersion: 2 + x: 2976 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 291e44e176fd9bf80800000000000000 + internalID: -8090189621611929198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u866B\u76AE" + rect: + serializedVersion: 2 + x: 3008 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3f934c2e5bb76670800000000000000 + internalID: 8531994032220643131 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u866C\u9F99\u9752\u77F3\u5370" + rect: + serializedVersion: 2 + x: 3040 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5222008904f03ce60800000000000000 + internalID: 7981239734733120037 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8679\u4E4B\u5375" + rect: + serializedVersion: 2 + x: 3072 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c8b10bf4813d4050800000000000000 + internalID: 5786335543457593536 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u867E\u58F3" + rect: + serializedVersion: 2 + x: 3104 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d4c93b250695b670800000000000000 + internalID: 8553908016204334292 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8680\u8840\u5DE8\u9524" + rect: + serializedVersion: 2 + x: 3136 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b78327b1d166121e0800000000000000 + internalID: -2224384465743759237 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8682\u8681\u5375" + rect: + serializedVersion: 2 + x: 3168 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1fa11a1d695a7a50800000000000000 + internalID: 6519621735695888158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8682\u8681\u9762\u5177" + rect: + serializedVersion: 2 + x: 3200 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8e85fd6cd509a180800000000000000 + internalID: -9103738727456993649 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u868A\u9999" + rect: + serializedVersion: 2 + x: 3232 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b65d76ae0174cb970800000000000000 + internalID: 8771964312188605803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u868C\u73E0" + rect: + serializedVersion: 2 + x: 3264 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0573ffa9ce8c372b0800000000000000 + internalID: -5587901794098399408 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u868C\u7CBE\u73CD\u73E0" + rect: + serializedVersion: 2 + x: 3296 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27b6aa7cbe59ebbe0800000000000000 + internalID: -1459564389321774222 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8695\u4E1D" + rect: + serializedVersion: 2 + x: 3328 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8e2852c95fee7df0800000000000000 + internalID: -180443766256554358 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8695\u4E1D\u5F13\u5F26" + rect: + serializedVersion: 2 + x: 3360 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c584c49726975cef0800000000000000 + internalID: -88531153815058340 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8695\u4E1D\u7EDE\u4E1D" + rect: + serializedVersion: 2 + x: 3392 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c4b935b74ff09270800000000000000 + internalID: 8255378800418337993 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8695\u4E1D\u8FDE\u63A5\u73AF" + rect: + serializedVersion: 2 + x: 3424 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fed18a71e6fdd5570800000000000000 + internalID: 8457161339207949807 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86A9\u5C24\u6218\u7532" + rect: + serializedVersion: 2 + x: 3456 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0bc7314fabf62de80800000000000000 + internalID: -8155333126465028944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86A9\u5C24\u817F\u7532" + rect: + serializedVersion: 2 + x: 3488 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74342768a49e86d60800000000000000 + internalID: 7883807654004540231 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86A9\u5C24\u8896\u7532" + rect: + serializedVersion: 2 + x: 3520 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f5a1466a84443350800000000000000 + internalID: 5995492365148726771 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86A9\u5C24\u9774" + rect: + serializedVersion: 2 + x: 3552 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62b13c62818bb0080800000000000000 + internalID: -9220073398241912026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86B0\u8712" + rect: + serializedVersion: 2 + x: 3584 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e775fa9366f14520800000000000000 + internalID: 2684697760551499748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86C7\u542B\u8349" + rect: + serializedVersion: 2 + x: 3616 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d7e4a329e787eaf0800000000000000 + internalID: -367175409212266535 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86C7\u5E74\u5927\u5409" + rect: + serializedVersion: 2 + x: 3648 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2560832e4d4f734d0800000000000000 + internalID: -3154783818784176558 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86C7\u7130\u7BAD" + rect: + serializedVersion: 2 + x: 3680 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a902390bf66cfce0800000000000000 + internalID: -1370106958250374744 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86C7\u738B\u6756" + rect: + serializedVersion: 2 + x: 3712 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc6e7899d06eb0ef0800000000000000 + internalID: -140766017247254836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86C7\u77DB" + rect: + serializedVersion: 2 + x: 3744 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c273ff8825e2e090800000000000000 + internalID: -8006585225134771516 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86C7\u8089" + rect: + serializedVersion: 2 + x: 3776 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4112d11e8cf6dd3c0800000000000000 + internalID: -4333184357899624172 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86C7\u80C6" + rect: + serializedVersion: 2 + x: 3808 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51e09f12c151101f0800000000000000 + internalID: -1080559225018970603 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86C7\u94FE\u8170\u5E26\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3840 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9cb51806193143920800000000000000 + internalID: 2969019569454275529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86C7\u94FE\u8170\u5E26\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3872 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7702136af0f34c810800000000000000 + internalID: 1784620688790855799 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86C7\u94FE\u8170\u5E26\u7537\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 3904 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab1ba107939870790800000000000000 + internalID: -7563926169358519878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86C7\u94FE\u8170\u5E26\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3936 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0fbac9159167321b0800000000000000 + internalID: -5682568453695951888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86C7\u94FE\u8170\u5E26\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3968 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ed94dae10abd52ca0800000000000000 + internalID: -6042181844291728930 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86CA\u60D1\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 4000 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 947bb1079340b0ed0800000000000000 + internalID: -2446857327805221047 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86CA\u60D1\u5973\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 4032 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49b9d349f0a134d60800000000000000 + internalID: 7873165227787656084 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86CA\u60D1\u5973\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 4064 + y: 2336 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a6ff4ace96fa80130800000000000000 + internalID: 3533266777148817258 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86CA\u60D1\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 0 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9a0620cccaebf80f0800000000000000 + internalID: -1112460933570862935 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86CA\u60D1\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 32 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd8963164e88bf540800000000000000 + internalID: 5042774722236291291 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86CA\u60D1\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 64 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e310c021515e20190800000000000000 + internalID: -7997578109596729026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86CA\u60D1\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 96 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2602d55a78f3a1880800000000000000 + internalID: -8639523083329396638 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86CB\u7CD5\u5E3D\u5B50" + rect: + serializedVersion: 2 + x: 128 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 875b328634b5b1e60800000000000000 + internalID: 7934035513611367800 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86CB\u7CD5\u6CD5\u7403" + rect: + serializedVersion: 2 + x: 160 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 64f61a9fd839eda90800000000000000 + internalID: -7287224909051105466 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86CB\u9EC4" + rect: + serializedVersion: 2 + x: 192 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e981153905d791bf0800000000000000 + internalID: -353113310749452130 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86DB\u4E1D" + rect: + serializedVersion: 2 + x: 224 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 334bd1336ff70eb00800000000000000 + internalID: 855824624596661299 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86DF\u7389" + rect: + serializedVersion: 2 + x: 256 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2deedde0ec1083330800000000000000 + internalID: 3690701879154437842 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86E4\u87C6\u6797\u6811" + rect: + serializedVersion: 2 + x: 288 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3dc820d77191807b0800000000000000 + internalID: -5257924976282792749 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86EE\u65CF\u7684\u722A" + rect: + serializedVersion: 2 + x: 320 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: baeb991577169d320800000000000000 + internalID: 2583203026371722923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86EE\u65CF\u7684\u89D2" + rect: + serializedVersion: 2 + x: 352 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 886d0e3742dd80500800000000000000 + internalID: 362782918636000904 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u86EE\u86EE\u7684\u7FBD\u6BDB" + rect: + serializedVersion: 2 + x: 384 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96c3262af140af620800000000000000 + internalID: 2808561851533769833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8702\u871C" + rect: + serializedVersion: 2 + x: 416 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d220dfe4fc7dde520800000000000000 + internalID: 2733077834267165229 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8702\u871C\u7CBE" + rect: + serializedVersion: 2 + x: 448 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 358598f1ac6680640800000000000000 + internalID: 5046396400767162451 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8708\u86A3" + rect: + serializedVersion: 2 + x: 480 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bc5b2be6c7692a50800000000000000 + internalID: 6496838041505324210 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8708\u86A3\u6BD2\u6DB2" + rect: + serializedVersion: 2 + x: 512 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 526d8a1e3a1faaf00800000000000000 + internalID: 1128980342777632293 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8708\u86A3\u97AD" + rect: + serializedVersion: 2 + x: 544 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1ff9bfeb46560700800000000000000 + internalID: 506186892270239514 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8718\u86DB\u6BD2\u6DB2" + rect: + serializedVersion: 2 + x: 576 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4bd154d1ac7ac890800000000000000 + internalID: -7436994800155239605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8718\u86DB\u6BD2\u9488" + rect: + serializedVersion: 2 + x: 608 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd8557f3133964e20800000000000000 + internalID: 3334514413841766621 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8718\u86DB\u7F51\u7EB9\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 640 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da443184448a378b0800000000000000 + internalID: -5155592137188621139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8718\u86DB\u7F51\u7EB9\u5973\u88C5\u624B\u8155" + rect: + serializedVersion: 2 + x: 672 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 022d6c457351cd190800000000000000 + internalID: -7936445115943955936 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8718\u86DB\u7F51\u7EB9\u5973\u88C5\u8863\u670D" + rect: + serializedVersion: 2 + x: 704 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b97b354ddff4c5a0800000000000000 + internalID: -6501790636201772616 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8718\u86DB\u7F51\u7EB9\u5973\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 736 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5dcf9f39378af6e40800000000000000 + internalID: 5651921271730601173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8718\u86DB\u7F51\u7EB9\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 768 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: efaf07aeb85aa9950800000000000000 + internalID: 6456655036141337342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u871C\u6C41" + rect: + serializedVersion: 2 + x: 800 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9da572bd1de19410800000000000000 + internalID: 1482226464185494939 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u871C\u6C41\u767E\u5408\u7CBD" + rect: + serializedVersion: 2 + x: 832 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f3bb0fae317510d0800000000000000 + internalID: -3452729025270926348 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8721\u70DB" + rect: + serializedVersion: 2 + x: 864 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2955a550331aeb9a0800000000000000 + internalID: -6215353195219495534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u873B\u8713" + rect: + serializedVersion: 2 + x: 896 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 755d0b01f0a9d19a0800000000000000 + internalID: -6260678517479910057 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u873B\u8713\u523A\u7389" + rect: + serializedVersion: 2 + x: 928 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1559985c6572acd60800000000000000 + internalID: 7911178949064496465 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u873B\u8713\u590D\u773C" + rect: + serializedVersion: 2 + x: 960 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e894ca14bff6a570800000000000000 + internalID: 8477744497579825381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u873B\u8713\u7FC5\u8180" + rect: + serializedVersion: 2 + x: 992 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc51b649f7684f5f0800000000000000 + internalID: -723805757590792756 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8749\u7FFC\u5315\u9996" + rect: + serializedVersion: 2 + x: 1024 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89e2db516e6178be0800000000000000 + internalID: -1475185175477539176 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8749\u7FFC\u7EB1" + rect: + serializedVersion: 2 + x: 1056 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36f95b367a2922da0800000000000000 + internalID: -5971048908309815453 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u874E\u5B50\u58F3" + rect: + serializedVersion: 2 + x: 1088 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b54a0a8548189a050800000000000000 + internalID: 5812319199520924763 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u874E\u5B50\u5C3E\u9489" + rect: + serializedVersion: 2 + x: 1120 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf7fe317e325db910800000000000000 + internalID: 1854729049687914491 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u874E\u5C3E" + rect: + serializedVersion: 2 + x: 1152 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 80f8e4cb121369570800000000000000 + internalID: 8473013769907113736 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u874E\u5C3E\u97AD" + rect: + serializedVersion: 2 + x: 1184 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 415733ba5e2aecd20800000000000000 + internalID: 3300754684212638996 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u874E\u738B\u9CDE\u7532\u7247" + rect: + serializedVersion: 2 + x: 1216 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e3baebddf34c5f00800000000000000 + internalID: 1106834366021678052 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u5170\u7CBE" + rect: + serializedVersion: 2 + x: 1248 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2b1247367d8afe30800000000000000 + internalID: 4538095113401932587 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u5A5A\u7EB1\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1280 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b3ba507eb06a93a0800000000000000 + internalID: -6657902728068811856 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u5A5A\u7EB1\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 1312 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 98da96d255e1f1ca0800000000000000 + internalID: -6044078823724962423 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u5A5A\u7EB1\u5973\u8863\u670D" + rect: + serializedVersion: 2 + x: 1344 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 41be2f645cef2be10800000000000000 + internalID: 2212110490244672276 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u5A5A\u7EB1\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1376 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1dc627d0a209a4c0800000000000000 + internalID: -4275883481383908067 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7ED3\u5587\u53ED" + rect: + serializedVersion: 2 + x: 1408 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ffb4bb2931972e00800000000000000 + internalID: 1019943515355135992 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7ED3\u5957\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1440 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24612f09b9ac43170800000000000000 + internalID: 8157367594575337026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7ED3\u5957\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1472 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 409f47f79688303f0800000000000000 + internalID: -935754310871615228 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7ED3\u5957\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1504 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21007f61472bef700800000000000000 + internalID: 576094014021238802 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7ED3\u6DD1\u5973\u65F6\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1536 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f96ec13edac707b60800000000000000 + internalID: 7741824845731391135 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7ED3\u6DD1\u5973\u65F6\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1568 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e14ea7c4a088d7730800000000000000 + internalID: 3998501621989041182 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7ED3\u6DD1\u5973\u65F6\u88C5\u8863\u670D" + rect: + serializedVersion: 2 + x: 1600 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a7005808160d9c40800000000000000 + internalID: 5520575418514540455 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7ED3\u6DD1\u5973\u65F6\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1632 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b942cbb49c8bb0970800000000000000 + internalID: 8722268278031656091 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7FC5\u8180\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1664 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3e6b5b534b331f90800000000000000 + internalID: -6984173436639941057 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7FC5\u8180\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1696 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9fa83c310ed6db9f0800000000000000 + internalID: -451083578495497479 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7FC5\u8180\u5973\u62A4\u624B" + rect: + serializedVersion: 2 + x: 1728 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27a6a0af2e1de8ae0800000000000000 + internalID: -1545066849353700750 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7FC5\u8180\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1760 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9f2d298225c25000800000000000000 + internalID: 23297700211273627 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7FC5\u8180\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1792 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 157efce7beb5e5a50800000000000000 + internalID: 6511743178227312465 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7FFC2" + rect: + serializedVersion: 2 + x: 1824 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 768c05ecc5b1783e0800000000000000 + internalID: -2051641019831629721 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7FFC3" + rect: + serializedVersion: 2 + x: 1856 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 73c4f993fa5dba100800000000000000 + internalID: 120424763618184247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u7FFC4" + rect: + serializedVersion: 2 + x: 1888 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50db95134c34e17e0800000000000000 + internalID: -1792921091726263035 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u86F9" + rect: + serializedVersion: 2 + x: 1920 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b3704a5c31ee9b00800000000000000 + internalID: 837354230065951669 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u88D9\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1952 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3755aec1576adc9a0800000000000000 + internalID: -6211125289147542157 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u88D9\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 1984 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5f555e35f3d5ba30800000000000000 + internalID: 4230520475250679642 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8774\u8776\u88D9\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2016 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7291e77a46b241430800000000000000 + internalID: 3752672100813248807 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8776\u620F\u6BBF\u6625\u67DC" + rect: + serializedVersion: 2 + x: 2048 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 444af016b47a058a0800000000000000 + internalID: -6318366335008005052 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u878D\u7075\u4E4B\u9F0E" + rect: + serializedVersion: 2 + x: 2080 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1eae1ca065b0c12a0800000000000000 + internalID: -6765520076041753887 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u878D\u96EA\u73CD\u85CF" + rect: + serializedVersion: 2 + x: 2112 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f717027c6cbf37580800000000000000 + internalID: -8830437613180522113 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u87AD\u864E\u78A7\u7389\u73BA" + rect: + serializedVersion: 2 + x: 2144 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b8bd77e872a673f0800000000000000 + internalID: -903356035077654343 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u87B3\u8782\u7684\u5DE8\u722A" + rect: + serializedVersion: 2 + x: 2176 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87d24f73e6e4f2fc0800000000000000 + internalID: -3517506548660949640 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u87BA\u65CB\u6728" + rect: + serializedVersion: 2 + x: 2208 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1fd4247dc0d251580800000000000000 + internalID: -8857123558979908111 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u87D2\u9AA8\u97AD" + rect: + serializedVersion: 2 + x: 2240 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a49de85e71a5e7620800000000000000 + internalID: 2773753479188896074 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u87E0\u6843\u679C" + rect: + serializedVersion: 2 + x: 2272 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3667c5c8855365f80800000000000000 + internalID: -8118242623860476317 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u87E0\u9F99\u4E09\u8DB3\u781A" + rect: + serializedVersion: 2 + x: 2304 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06dea0ad3d814d0d0800000000000000 + internalID: -3399064520582566560 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u87E0\u9F99\u96D5\u82B1\u7B14\u67B6" + rect: + serializedVersion: 2 + x: 2336 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 838c1f8351f3d4470800000000000000 + internalID: 8380423841988593720 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u87F9\u722A" + rect: + serializedVersion: 2 + x: 2368 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e5f9e751c6d60960800000000000000 + internalID: 7567972349734680034 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u87F9\u8089" + rect: + serializedVersion: 2 + x: 2400 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab4cd489061bfa830800000000000000 + internalID: 4084678415478539450 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u51E4\u51F0" + rect: + serializedVersion: 2 + x: 2432 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50fcdd590853137f0800000000000000 + internalID: -634667246096101627 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u5F71\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2464 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 416b0ca3e622ded20800000000000000 + internalID: 3309339158014637588 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u6676\u77F3" + rect: + serializedVersion: 2 + x: 2496 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f35baf6cbe99c1d0800000000000000 + internalID: -3329955917299231759 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u6676\u864E\u7B26" + rect: + serializedVersion: 2 + x: 2528 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b7fc5e1dea446a30800000000000000 + internalID: 4207570334147999669 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u6740\u5203" + rect: + serializedVersion: 2 + x: 2560 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 546f1c25b54a737b0800000000000000 + internalID: -5244542528912230843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u6CB3\u9B54\u5200" + rect: + serializedVersion: 2 + x: 2592 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b78ab51c12ae8f700800000000000000 + internalID: 574466383188568187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u70BC\u5996\u8702\u5361\u72471" + rect: + serializedVersion: 2 + x: 2624 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e8af8d376dd64e30800000000000000 + internalID: 4487517514205472993 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u70BC\u5996\u8702\u5361\u72472" + rect: + serializedVersion: 2 + x: 2656 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9aacf9da9eaac77f0800000000000000 + internalID: -613427528612197719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u70BC\u5996\u8702\u5361\u72473" + rect: + serializedVersion: 2 + x: 2688 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e403f892d67d2eef0800000000000000 + internalID: -80264979490590642 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u70BC\u5996\u8702\u5361\u72474" + rect: + serializedVersion: 2 + x: 2720 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f87617e8dfbd1dec0800000000000000 + internalID: -3543809549700864113 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u70BC\u5996\u8702\u5361\u72475" + rect: + serializedVersion: 2 + x: 2752 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9fbd186075c235840800000000000000 + internalID: 5211557946080746489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u70BC\u5996\u8702\u5361\u72476" + rect: + serializedVersion: 2 + x: 2784 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff61e36cbbf966fd0800000000000000 + internalID: -2349014526793476353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u70BC\u5996\u8702\u5361\u72477" + rect: + serializedVersion: 2 + x: 2816 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8e5a88cfe9416440800000000000000 + internalID: 4927300761530556043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u70BC\u5996\u8702\u5361\u72478" + rect: + serializedVersion: 2 + x: 2848 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 864deb7ff25dec3b0800000000000000 + internalID: -5490216493721398168 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u715E\u65A7" + rect: + serializedVersion: 2 + x: 2880 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dea134c3e2300db70800000000000000 + internalID: 8921634358935362285 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u72FC\u52C7\u58EB" + rect: + serializedVersion: 2 + x: 2912 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f76c619866a23b370800000000000000 + internalID: 8337053955067922047 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u72FC\u722A" + rect: + serializedVersion: 2 + x: 2944 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea32618f5b166a140800000000000000 + internalID: 4730575892778460078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u7483\u6B8B\u7247" + rect: + serializedVersion: 2 + x: 2976 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ac33c70615357170800000000000000 + internalID: 8175499067296791720 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u77F3\u6B8B\u7247\u5C71" + rect: + serializedVersion: 2 + x: 3008 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e43b7b44764ce86d0800000000000000 + internalID: -2986233555086494898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u77F3\u6B8B\u7247\u5C71\u6D41\u901A" + rect: + serializedVersion: 2 + x: 3040 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34567ea090336f480800000000000000 + internalID: -8865842702501583549 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u77F3\u6B8B\u7247\u6D77" + rect: + serializedVersion: 2 + x: 3072 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 863184f570abe71d0800000000000000 + internalID: -3351036531890973848 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u77F3\u6B8B\u7247\u6D77\u6D41\u901A" + rect: + serializedVersion: 2 + x: 3104 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e00054acd8321c20800000000000000 + internalID: 3175663207550288096 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u7EA2\u9AA8" + rect: + serializedVersion: 2 + x: 3136 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7898461c124d4ada0800000000000000 + internalID: -5934385167523870329 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u8E44\u72FC" + rect: + serializedVersion: 2 + x: 3168 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8667aa31f6d2fba0800000000000000 + internalID: -6056542217300384115 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u96E8\u957F\u77DB" + rect: + serializedVersion: 2 + x: 3200 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ef1c93a429a11c10800000000000000 + internalID: 2022583682494898146 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u96FE\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 3232 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a145f9acdfbd1650800000000000000 + internalID: 6205326816051544482 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u96FE\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 3264 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bec5a45bbc153dd00800000000000000 + internalID: 996229877940772075 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u96FE\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 3296 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56469d7d6a3902ba0800000000000000 + internalID: -6115725949173930907 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u96FE\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 3328 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0f6d096a03586c60800000000000000 + internalID: 7811584857851391759 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u96FE\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 3360 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ef77d72a8812d780800000000000000 + internalID: -8659832151827054617 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u96FE\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 3392 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99215595e09c94e00800000000000000 + internalID: 1029575053296341657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8840\u9E6B\u4E4B\u5FC3" + rect: + serializedVersion: 2 + x: 3424 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4c4c5e250a9f14e0800000000000000 + internalID: -2008717561740637108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u884C\u5343\u91CC\u8BC1\u660E" + rect: + serializedVersion: 2 + x: 3456 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c90bb46e26d7ca500800000000000000 + internalID: 408839529907859612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u884C\u767E\u91CC\u8BC1\u660E" + rect: + serializedVersion: 2 + x: 3488 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94045fddf204caf10800000000000000 + internalID: 2282269685501476937 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8854\u73AF\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3520 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9dc7dc24dd06c3d50800000000000000 + internalID: 6718351247554739417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8854\u73AF\u4E4B\u77F3\u5305\u88F9" + rect: + serializedVersion: 2 + x: 3552 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0960a3f521641eaa0800000000000000 + internalID: -6133544172780910960 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8857\u5934\u6D41\u884C\u5BC6\u7801\u7537\u88C5-\u5934\u53D132" + rect: + serializedVersion: 2 + x: 3584 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 789ef85a3acc95e60800000000000000 + internalID: 7951611620328728967 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8857\u5934\u6D41\u884C\u5BC6\u7801\u7537\u88C5-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 3616 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ae766a24f82e2dd0800000000000000 + internalID: -2509022913250296155 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8857\u5934\u6D41\u884C\u5BC6\u7801\u7537\u88C5-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 3648 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8aea8fcb99156c70800000000000000 + internalID: 8963598790343453324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8857\u5934\u6D41\u884C\u5BC6\u7801\u7537\u88C5-\u978B32" + rect: + serializedVersion: 2 + x: 3680 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c1a1a5905b8a8330800000000000000 + internalID: 3713934020944437698 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8863\u670D\u5185\u886C" + rect: + serializedVersion: 2 + x: 3712 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02f33ef1885c0b0f0800000000000000 + internalID: -1103164720264560864 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8863\u895F" + rect: + serializedVersion: 2 + x: 3744 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57584f12bcfbbbc30800000000000000 + internalID: 4376302342089508213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8865\u5929\u80F6" + rect: + serializedVersion: 2 + x: 3776 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 959b3b84bde3b8370800000000000000 + internalID: 8325817447662991705 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8865\u7B7E\u4EE4" + rect: + serializedVersion: 2 + x: 3808 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 886d2f7d3e5416f00800000000000000 + internalID: 1108243828192761480 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8882\u96EA\u72D0\u5143\u9B42" + rect: + serializedVersion: 2 + x: 3840 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1737fcbbd55de8f30800000000000000 + internalID: 4579832469641982833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8896\u5251" + rect: + serializedVersion: 2 + x: 3872 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe7d11220f62b0eb0800000000000000 + internalID: -4752662168953825297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8896\u7BAD" + rect: + serializedVersion: 2 + x: 3904 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d46c3942957e7fc0800000000000000 + internalID: -3495226989638556462 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88AB\u52AB\u7684\u836F\u54C1" + rect: + serializedVersion: 2 + x: 3936 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9fafc9c5ce57411a0800000000000000 + internalID: -6839712276042417415 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88AB\u56F0\u7684\u68A6\u9B47" + rect: + serializedVersion: 2 + x: 3968 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d5f53daef28bb910800000000000000 + internalID: 1854219701932389847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88AB\u56F0\u7684\u866B\u5B50" + rect: + serializedVersion: 2 + x: 4000 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af72998b9b58855a0800000000000000 + internalID: -6532324226788415494 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88AB\u611F\u67D3\u7684\u722A\u5B50" + rect: + serializedVersion: 2 + x: 4032 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5300a929a24354640800000000000000 + internalID: 5063510713500827701 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88AB\u63A0\u53BB\u7684\u8D27\u7269" + rect: + serializedVersion: 2 + x: 4064 + y: 2304 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3b9c82cbacf80040800000000000000 + internalID: 4614215632874675002 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88AB\u89E3\u8BFB\u7684\u5377\u8F74" + rect: + serializedVersion: 2 + x: 0 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45b2e847717165490800000000000000 + internalID: -7757987918591939756 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88AB\u89E3\u8BFB\u7684\u5377\u8F74\u53D8\u8272" + rect: + serializedVersion: 2 + x: 32 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2ce2c694a980b4b0800000000000000 + internalID: -5426686210984448978 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88AD\u5F71\u56DE\u793C" + rect: + serializedVersion: 2 + x: 64 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0d278882507ee58a0800000000000000 + internalID: -6314355618185973040 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88AD\u5F71\u7269\u8D44" + rect: + serializedVersion: 2 + x: 96 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0169f6c67e049d5b0800000000000000 + internalID: -5343168120197507568 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88C1\u7F1D\u5927\u5E08\u4E4B\u5323\u5C0F" + rect: + serializedVersion: 2 + x: 128 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2cc4e8e56d820360800000000000000 + internalID: 7134420228546808875 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88C1\u7F1D\u7CBE\u901A" + rect: + serializedVersion: 2 + x: 160 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 293694ed092de71c0800000000000000 + internalID: -4503931057677442158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88C2\u5203\u7B26" + rect: + serializedVersion: 2 + x: 192 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25eec550cb5543780800000000000000 + internalID: -8704237913768137134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88C2\u5730\u957F\u65A7" + rect: + serializedVersion: 2 + x: 224 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0945bf166dea58710800000000000000 + internalID: 1694953070564955280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88C2\u5929\u4E4B\u65A7" + rect: + serializedVersion: 2 + x: 256 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 375146dcd4dfedaf0800000000000000 + internalID: -369579608797604493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88C2\u5CA9\u62F3\u5957" + rect: + serializedVersion: 2 + x: 288 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ebea1dd105bdcdd0800000000000000 + internalID: -2464114401492669472 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88C5\u6709\u6BD2\u836F\u7684\u73BB\u7483\u74F6" + rect: + serializedVersion: 2 + x: 320 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eedf8a56b787de3c0800000000000000 + internalID: -4328671195451294226 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88C5\u6709\u8702\u871C\u7684\u73BB\u7483\u74F6" + rect: + serializedVersion: 2 + x: 352 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ade7ead89ab23d50800000000000000 + internalID: 6715635160033258912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88C5\u6709\u9B54\u836F\u7684\u73BB\u7483\u74F6" + rect: + serializedVersion: 2 + x: 384 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad321a2c3334458b0800000000000000 + internalID: -5164428983099382822 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88C5\u6EE1\u9152\u7684\u9152\u676F" + rect: + serializedVersion: 2 + x: 416 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c8b6903587fe2fa30800000000000000 + internalID: 4247720698632039308 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88C5\u847A\u4EFB\u52A1\u5F00\u542F\u9053\u5177" + rect: + serializedVersion: 2 + x: 448 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ab6e74bb0bbe59b0800000000000000 + internalID: -5089424869934863447 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88C5\u847A\u914D\u65B9\u5305\u88F9" + rect: + serializedVersion: 2 + x: 480 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d3d8241bc424bf360800000000000000 + internalID: 7204424926068116797 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88C5\u847A\u914D\u65B9\u5305\u88F92" + rect: + serializedVersion: 2 + x: 512 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dae1147e18aebf680800000000000000 + internalID: -8720118409821348179 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88C5\u847A\u914D\u65B9\u5305\u88F93" + rect: + serializedVersion: 2 + x: 544 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 989e53f03d32243f0800000000000000 + internalID: -918131984629896823 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u88F9\u94DC\u7F20\u4E1D\u5782\u706F" + rect: + serializedVersion: 2 + x: 576 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 323a0ef966c060930800000000000000 + internalID: 4108985344930652963 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u4E2D\u7EA7\u4E3B\u5C4B" + rect: + serializedVersion: 2 + x: 608 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e898f82621c56d0a0800000000000000 + internalID: -6857192148592260722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u4F4E\u7EA7\u4E3B\u5C4B" + rect: + serializedVersion: 2 + x: 640 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca8a2883eadb8fc70800000000000000 + internalID: 9005156010897352876 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u5927\u95E8\u8C6A\u534E" + rect: + serializedVersion: 2 + x: 672 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 900bbd1bff79fb450800000000000000 + internalID: 6106766744194101257 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u5A5A\u793C\u5973\u58EB\u793C\u76D2" + rect: + serializedVersion: 2 + x: 704 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b9681980b6b6fb60800000000000000 + internalID: 7779606275659688377 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 736 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1870ab3d57589af70800000000000000 + internalID: 9199030454990800769 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 768 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2748c6b441b1502b0800000000000000 + internalID: -5619055186096126862 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u5973\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 800 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a1b4986bbed60360800000000000000 + internalID: 7135635556109955488 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 832 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 296e667f62be93510800000000000000 + internalID: 1529512101060994706 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 864 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ecd4a0e09b1d8090800000000000000 + internalID: -8030732251473584922 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 896 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86eeb8126ee017c50800000000000000 + internalID: 6661121705425759848 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 928 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a75718f45c8ee35f0800000000000000 + internalID: -774926151721060998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 960 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61217405a802eb6b0800000000000000 + internalID: -5278745934807231978 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 992 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a2378246aad46660800000000000000 + internalID: 7378262497155297953 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u5A5A\u793C\u7537\u58EB\u793C\u76D2" + rect: + serializedVersion: 2 + x: 1024 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ebc9928a6d590830800000000000000 + internalID: 4037861252953394145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u5F0F\u9AD8\u7EA7\u4E3B\u5C4B" + rect: + serializedVersion: 2 + x: 1056 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2347b5f2f9eb11720800000000000000 + internalID: 2815240832986870834 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u6597\u5361" + rect: + serializedVersion: 2 + x: 1088 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2c816cdb027d5580800000000000000 + internalID: -8836781498563458006 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u65B9\u55B7\u6CC91" + rect: + serializedVersion: 2 + x: 1120 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57fbc9a9cb1c498c0800000000000000 + internalID: -3993353953778811019 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u65B9\u55B7\u6CC92" + rect: + serializedVersion: 2 + x: 1152 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e245342f6c041aa90800000000000000 + internalID: -7304485897406032850 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u65B9\u55B7\u6CC93" + rect: + serializedVersion: 2 + x: 1184 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5aae456a30fb82d90800000000000000 + internalID: -7122232788290049371 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u670D\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1216 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8c470d6139c38a2a0800000000000000 + internalID: -6726059441037216568 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u670D\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1248 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ebdd15e3a8f6d810800000000000000 + internalID: 1789891284733647848 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u670D\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1280 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b69ca86fdd073890800000000000000 + internalID: -7478493403040409935 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u90E8\u725B\u4ED4\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1312 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6dc34bf6c6cd7d320800000000000000 + internalID: 2582775269608930518 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u90E8\u725B\u4ED4\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1344 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 644119055187c28c0800000000000000 + internalID: -4022708334207364026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u90E8\u725B\u4ED4\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 1376 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d45dd2e3853e00c80800000000000000 + internalID: -8358430940259822259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u90E8\u725B\u4ED4\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 1408 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c1e578bcc44492d0800000000000000 + internalID: -3272915383132757565 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u897F\u90E8\u725B\u4ED4\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1440 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b6e2fe5bf36d3680800000000000000 + internalID: -8773746567766939980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8986\u971C\u4E4B\u5FBD\xB7\u62A4" + rect: + serializedVersion: 2 + x: 1472 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78fe95538014f17e0800000000000000 + internalID: -1792642623159537785 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89C2\u4E16\u97F3\u83E9\u8428" + rect: + serializedVersion: 2 + x: 1504 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f4ac8501d1715a30800000000000000 + internalID: 4202265069868590323 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89C2\u4E16\u97F3\u83E9\u8428\u788E\u7247\u526F\u672C" + rect: + serializedVersion: 2 + x: 1536 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d42d9e5e4d3aef650800000000000000 + internalID: 6268627866132009549 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89C2\u56A3\u4E4B\u53701" + rect: + serializedVersion: 2 + x: 1568 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da410911689f14270800000000000000 + internalID: 8233135948025566381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89C2\u56A3\u4E4B\u53702" + rect: + serializedVersion: 2 + x: 1600 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8cc0d4356cd6a3ff0800000000000000 + internalID: -55611346820199224 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89C2\u56A3\u4E4B\u5370\u7070" + rect: + serializedVersion: 2 + x: 1632 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f366202da6fb63b30800000000000000 + internalID: 4266808162490934847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89C2\u56A3\u4E4B\u5370\u84DD" + rect: + serializedVersion: 2 + x: 1664 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9fd3a5a0484d9710800000000000000 + internalID: 1701595676710002589 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89C2\u56A3\u4E4B\u5370\u91D1" + rect: + serializedVersion: 2 + x: 1696 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6bfc8f8384cd32ec0800000000000000 + internalID: -3592785874959937610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89C2\u6F6E\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 1728 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e8736241aa8fbf00800000000000000 + internalID: 1134778056328837346 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89C2\u6F9C\u5251" + rect: + serializedVersion: 2 + x: 1760 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6c5c39be51d3f2b0800000000000000 + internalID: -5551863710852817813 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89C2\u97F3\u5750\u50CF" + rect: + serializedVersion: 2 + x: 1792 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a743d3b237bcf4e50800000000000000 + internalID: 6795874058232476794 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89C9\u9192\u62AB\u98CE1" + rect: + serializedVersion: 2 + x: 1824 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 764e61c4c5a4672d0800000000000000 + internalID: -3281353518218812313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89C9\u9192\u62AB\u98CE2" + rect: + serializedVersion: 2 + x: 1856 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7c1c7ddb637a74c0800000000000000 + internalID: -4288988788002382726 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89D2\u8272\u6539\u540D" + rect: + serializedVersion: 2 + x: 1888 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e82cee27d79fb2fe0800000000000000 + internalID: -1212601357451738482 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89E3\u6BD2\u9732" + rect: + serializedVersion: 2 + x: 1920 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61ecafd2a976ede50800000000000000 + internalID: 6836015196289027606 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89E3\u725B\u5200" + rect: + serializedVersion: 2 + x: 1952 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ade3e504260efc60800000000000000 + internalID: 7853721551968136617 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u89E6\u89D2" + rect: + serializedVersion: 2 + x: 1984 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9c48bbdd72732bf0800000000000000 + internalID: -350310461121999713 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8A93\u8840\u6756" + rect: + serializedVersion: 2 + x: 2016 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e38b4019338177350800000000000000 + internalID: 6014302437131991102 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BB8\u613F\u6811" + rect: + serializedVersion: 2 + x: 2048 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 47e10be682987fa20800000000000000 + internalID: 3096094075589238388 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BB8\u613F\u6811_2" + rect: + serializedVersion: 2 + x: 2080 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4601282d2d84e3170800000000000000 + internalID: 8160039645153988708 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BB8\u613F\u724C" + rect: + serializedVersion: 2 + x: 2112 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a72db53f345dae1d0800000000000000 + internalID: -3320607287409913222 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BB8\u613F\u7B7E" + rect: + serializedVersion: 2 + x: 2144 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5705bcb261a928300800000000000000 + internalID: 252933949100871797 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BC1" + rect: + serializedVersion: 2 + x: 2176 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1d06473c5360a3f0800000000000000 + internalID: -891603478503879395 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BD5\u70BC\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 2208 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f53820c1e68d15900800000000000000 + internalID: 671555786882843487 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BDA\u5FC3\u724C" + rect: + serializedVersion: 2 + x: 2240 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33fc2c24453ca6330800000000000000 + internalID: 3704988410130386739 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BDA\u610F\u56DE\u9988\u793C\u5305" + rect: + serializedVersion: 2 + x: 2272 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7365630835d79a340800000000000000 + internalID: 4875565869192074807 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BDA\u610F\u724C" + rect: + serializedVersion: 2 + x: 2304 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c832569a99dabac0800000000000000 + internalID: -3838516474409764667 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BDB\u4ED9\u5251" + rect: + serializedVersion: 2 + x: 2336 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8da8ff3d78f9a260800000000000000 + internalID: 7109486703608901002 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BDB\u795E\u5251" + rect: + serializedVersion: 2 + x: 2368 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c96bed21622e7d00800000000000000 + internalID: 972252370336180673 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BE1\u5F02\u6CD5\u6756" + rect: + serializedVersion: 2 + x: 2400 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 998171818d0b70250800000000000000 + internalID: 5910887478110656665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BF1\u4EBA\u7684\u5143\u5B9D" + rect: + serializedVersion: 2 + x: 2432 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58fe7abed51a74740800000000000000 + internalID: 5136251324797022085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BF8\u5929\u4E50\u884C" + rect: + serializedVersion: 2 + x: 2464 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fbed86f62ba33ae0800000000000000 + internalID: -1570723661188568076 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8BF8\u845B\u5F29" + rect: + serializedVersion: 2 + x: 2496 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de88eba3c09d86a20800000000000000 + internalID: 3055930993719281901 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C46\u6C99" + rect: + serializedVersion: 2 + x: 2528 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e2139d9fb4d6b750800000000000000 + internalID: 6320473046508573411 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C61\u68CB\u6307\u5F52" + rect: + serializedVersion: 2 + x: 2560 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22b3ca2496ef37830800000000000000 + internalID: 4067874616489294626 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C61\u7259\u516D\u65B9\u7B14\u7B52" + rect: + serializedVersion: 2 + x: 2592 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 15794810295353db0800000000000000 + internalID: -4812881725568542895 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C61\u7259\u5C0F\u6BB5" + rect: + serializedVersion: 2 + x: 2624 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dac9246c267536d70800000000000000 + internalID: 9035161359180012717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C61\u7259\u5D4C\u91D1\u7AD6\u7434\u949F" + rect: + serializedVersion: 2 + x: 2656 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 067eaaac61e0816b0800000000000000 + internalID: -5325491068313344160 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C61\u7259\u6212" + rect: + serializedVersion: 2 + x: 2688 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bbd03bf0e2afe3070800000000000000 + internalID: 8088177056542821819 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C61\u7259\u624B\u638C\u6A21\u677F" + rect: + serializedVersion: 2 + x: 2720 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 648872b938fcae9c0800000000000000 + internalID: -3897074363385018298 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C61\u7259\u6756\u67C4" + rect: + serializedVersion: 2 + x: 2752 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9b0d6d0c215a2550800000000000000 + internalID: 6136806691891383195 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C61\u7259\u8282\u6263" + rect: + serializedVersion: 2 + x: 2784 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d885c74e9d5a3de0800000000000000 + internalID: -1352665803681068844 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C79\u5B50\u6210\u5E74" + rect: + serializedVersion: 2 + x: 2816 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6b79084a55863670800000000000000 + internalID: 8518142368020003691 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C79\u5B50\u7684\u5C3E\u5DF4" + rect: + serializedVersion: 2 + x: 2848 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbb0138d9308fc4d0800000000000000 + internalID: -3112127831561139267 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C79\u7EB9\u76AE\u8863\u5973\u4E0A\u886332" + rect: + serializedVersion: 2 + x: 2880 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67ef27aab864212b0800000000000000 + internalID: -5615348219703525770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C79\u7EB9\u76AE\u8863\u5973\u5934\u53D132" + rect: + serializedVersion: 2 + x: 2912 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c09f5b187698442b0800000000000000 + internalID: -5601200958891230964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C79\u7EB9\u76AE\u8863\u5973\u624B\u595732" + rect: + serializedVersion: 2 + x: 2944 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a12f167372cffdb90800000000000000 + internalID: -7214770832661155302 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C79\u7EB9\u76AE\u8863\u5973\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 2976 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d28cd9287d2ff3080800000000000000 + internalID: -9205372105898735571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C79\u7EB9\u76AE\u8863\u5973\u978B\u5B5032" + rect: + serializedVersion: 2 + x: 3008 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 31a30af66aca83250800000000000000 + internalID: 5924675140643207699 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C79\u7EB9\u76AE\u8863\u7537\u4E0A\u886332" + rect: + serializedVersion: 2 + x: 3040 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad3dbb7dca1ce4ec0800000000000000 + internalID: -3580711705615019046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C79\u7EB9\u76AE\u8863\u7537\u5934\u53D132" + rect: + serializedVersion: 2 + x: 3072 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82d287ec19aa1b490800000000000000 + internalID: -7732211542007468760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C79\u7EB9\u76AE\u8863\u7537\u624B\u595732" + rect: + serializedVersion: 2 + x: 3104 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2a25f14694873710800000000000000 + internalID: 1672951567477975595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C79\u7EB9\u76AE\u8863\u7537\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 3136 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ddd6f82ba79c60530800000000000000 + internalID: 3820962862689381853 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C79\u7EB9\u76AE\u8863\u7537\u978B\u5B5032" + rect: + serializedVersion: 2 + x: 3168 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 460c23753daa59540800000000000000 + internalID: 5014101584824680548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8C82\u76AE" + rect: + serializedVersion: 2 + x: 3200 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c294720dd3ab4b910800000000000000 + internalID: 1852310121404123436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D1D\u53F6\u9C9B\u4EBA\u5143\u9B42" + rect: + serializedVersion: 2 + x: 3232 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3706edc1c1dae6090800000000000000 + internalID: -8039297948554731405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D1D\u58F3" + rect: + serializedVersion: 2 + x: 3264 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f47fd74ef61ab1ab0800000000000000 + internalID: -5036254256336865457 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D1D\u58F3\u9762\u5177" + rect: + serializedVersion: 2 + x: 3296 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 706854a915288e8d0800000000000000 + internalID: -2816858279928035833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D1D\u5E01" + rect: + serializedVersion: 2 + x: 3328 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: beedb314b65998230800000000000000 + internalID: 3641606061594238699 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D22\u5B9D\u5929\u73E0" + rect: + serializedVersion: 2 + x: 3360 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5226ad89016eb97f0800000000000000 + internalID: -604636765992885723 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D24\u8005\u4E4B\u6212" + rect: + serializedVersion: 2 + x: 3392 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff81b5b43939f3eb0800000000000000 + internalID: -4737906022136735489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D24\u8005\u4E4B\u8BED" + rect: + serializedVersion: 2 + x: 3424 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef6725149d0f5b040800000000000000 + internalID: 4662897805106509566 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D27\u7269" + rect: + serializedVersion: 2 + x: 3456 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cccbad088fa1f2a40800000000000000 + internalID: 5345520937328098508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D27\u90CE\u7684\u5DE5\u5177\u7BB1" + rect: + serializedVersion: 2 + x: 3488 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8f935c6f9efcd610800000000000000 + internalID: 1647471524381433743 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2A\u72FC\u9557" + rect: + serializedVersion: 2 + x: 3520 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 168decec7adc61230800000000000000 + internalID: 3609298271996926049 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C" + rect: + serializedVersion: 2 + x: 3552 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6999ba41257308da0800000000000000 + internalID: -5944690682455418474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u6B63\u7EA2" + rect: + serializedVersion: 2 + x: 3584 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0bcaf604e77333420800000000000000 + internalID: 2608489624564116656 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u767D" + rect: + serializedVersion: 2 + x: 3616 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f7d6236c62f8b8b0800000000000000 + internalID: -5136088827682170896 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u7C89" + rect: + serializedVersion: 2 + x: 3648 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 310059561d253dac0800000000000000 + internalID: -3831627798656253933 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u7D2B" + rect: + serializedVersion: 2 + x: 3680 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 263f79d28c1c10100800000000000000 + internalID: 72552134517191522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u7EA2" + rect: + serializedVersion: 2 + x: 3712 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74bffa960151cdab0800000000000000 + internalID: -4982083927541810361 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u7EFF" + rect: + serializedVersion: 2 + x: 3744 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ccd30a7b984fd6ff0800000000000000 + internalID: -41107949248037428 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u84DD" + rect: + serializedVersion: 2 + x: 3776 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7916f20fc53f2bf0800000000000000 + internalID: -346999483060053636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u9752" + rect: + serializedVersion: 2 + x: 3808 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 231eb560975f56080800000000000000 + internalID: -9194673164060466894 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u9ED1" + rect: + serializedVersion: 2 + x: 3840 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb88b2b2f6e003ad0800000000000000 + internalID: -2724661903930718021 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2F\u5F81\u62F3\u5957" + rect: + serializedVersion: 2 + x: 3872 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94a43ad1c703448d0800000000000000 + internalID: -2863110153469474231 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2F\u8033\u9524" + rect: + serializedVersion: 2 + x: 3904 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 372d7d94fc643af80800000000000000 + internalID: -8096549848970964365 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2F\u8292\u957F\u65A7" + rect: + serializedVersion: 2 + x: 3936 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60dcfdaa1587bc270800000000000000 + internalID: 8271837432750525702 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D2F\u9B42\u96D5\u6587" + rect: + serializedVersion: 2 + x: 3968 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cddbae3775a636430800000000000000 + internalID: 3774977836506070492 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D35\u4EBA\u5361" + rect: + serializedVersion: 2 + x: 4000 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fcb5df0a21cd96b0800000000000000 + internalID: -5287858001064641292 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D35\u592B\u4EBA\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 4032 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea76c8747bf2ee840800000000000000 + internalID: 5255190279413852078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D35\u592B\u4EBA\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 4064 + y: 2272 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0895bf2fb385835f0800000000000000 + internalID: -776773921218537088 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D35\u592B\u4EBA\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 0 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 134d6d41347da2960800000000000000 + internalID: 7578106006116684849 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D35\u592B\u4EBA\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 32 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2b65a4b45a0e2ff0800000000000000 + internalID: -59098386184967378 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D35\u592B\u4EBA\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 64 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd8f039771f6308a0800000000000000 + internalID: -6340101703799342884 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D35\u65CF\u60C5\u4FA3\u88C5\u5973\u8155" + rect: + serializedVersion: 2 + x: 96 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: deee2fa7fa51266c0800000000000000 + internalID: -4151732063055974675 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D35\u65CF\u60C5\u4FA3\u88C5\u5973\u88D9" + rect: + serializedVersion: 2 + x: 128 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 583370dcac17048a0800000000000000 + internalID: -6322928760991042683 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D35\u65CF\u60C5\u4FA3\u88C5\u5973\u9774" + rect: + serializedVersion: 2 + x: 160 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 30be648143e35ce30800000000000000 + internalID: 4523089794230053635 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D35\u65CF\u60C5\u4FA3\u88C5\u7537\u8155" + rect: + serializedVersion: 2 + x: 192 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62441f71aa98c2da0800000000000000 + internalID: -5968244042533616602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D35\u65CF\u60C5\u4FA3\u88C5\u7537\u88C5" + rect: + serializedVersion: 2 + x: 224 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7cdc1cc48d082fad0800000000000000 + internalID: -2669929962588222009 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D35\u65CF\u60C5\u4FA3\u88C5\u7537\u88E4" + rect: + serializedVersion: 2 + x: 256 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0e7e31b49f094c50800000000000000 + internalID: 6649863456092487180 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D35\u65CF\u60C5\u4FA3\u88C5\u7537\u978B" + rect: + serializedVersion: 2 + x: 288 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e406cfc08b64f7a80800000000000000 + internalID: -8466971018127450034 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D3A\u5361-1" + rect: + serializedVersion: 2 + x: 320 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1cb0512d4c4a8ea60800000000000000 + internalID: 7703588327862373313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D3A\u5361-10" + rect: + serializedVersion: 2 + x: 352 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f53ba61486eae0ed0800000000000000 + internalID: -2445825784818257057 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D3A\u5361-2" + rect: + serializedVersion: 2 + x: 384 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b185be6dbf6d3fb0800000000000000 + internalID: -4666450779489074764 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D3A\u5361-3" + rect: + serializedVersion: 2 + x: 416 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0674efdc5aeaec30800000000000000 + internalID: 4389578471440152075 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D3A\u5361-4" + rect: + serializedVersion: 2 + x: 448 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 334d5095aa487dee0800000000000000 + internalID: -1236373705517050829 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D3A\u5361-5" + rect: + serializedVersion: 2 + x: 480 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e0672b1e34d44d750800000000000000 + internalID: 6328768330307106318 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D3A\u5361-6" + rect: + serializedVersion: 2 + x: 512 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0d6b745ddf50a400800000000000000 + internalID: 333371776635202827 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D3A\u5361-7" + rect: + serializedVersion: 2 + x: 544 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9460294517ac2d710800000000000000 + internalID: 1716656996080551497 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D3A\u5361-9" + rect: + serializedVersion: 2 + x: 576 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a0446f1168c57360800000000000000 + internalID: 7166854701494059173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D3A\u5C81\u9F20" + rect: + serializedVersion: 2 + x: 608 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08d209a35bf4a6cd0800000000000000 + internalID: -2564149398043873920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D4C\u7403" + rect: + serializedVersion: 2 + x: 640 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14e0f5a60316dae70800000000000000 + internalID: 9128058880320802369 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D4E\u7F6A\u96D5\u50CF\u6838\u5FC3" + rect: + serializedVersion: 2 + x: 672 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55c2b838c77fe6ea0800000000000000 + internalID: -5877488349516977067 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u5934\u5343\u8DB3\u866B\u866B\u5375" + rect: + serializedVersion: 2 + x: 704 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 447bc0101b56e8830800000000000000 + internalID: 4075306523718104900 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u7075\u77F3" + rect: + serializedVersion: 2 + x: 736 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0bb87913bfb03f640800000000000000 + internalID: 5112443175492357040 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u708E\u9886\u4E3B\u5361\u72471" + rect: + serializedVersion: 2 + x: 768 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4432a2780e3cf0f00800000000000000 + internalID: 1085301404327355204 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u708E\u9886\u4E3B\u5361\u72472" + rect: + serializedVersion: 2 + x: 800 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea291c2b713652760800000000000000 + internalID: 7432455713479299758 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u708E\u9886\u4E3B\u5361\u72473" + rect: + serializedVersion: 2 + x: 832 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1644de902fc28af0800000000000000 + internalID: -395526078244567521 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u708E\u9886\u4E3B\u5361\u72474" + rect: + serializedVersion: 2 + x: 864 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 852e26ca2009ca250800000000000000 + internalID: 5957294748260819544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u708E\u9886\u4E3B\u5361\u72475" + rect: + serializedVersion: 2 + x: 896 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d2ea770f670c56430800000000000000 + internalID: 3775635479693078061 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u708E\u9886\u4E3B\u5361\u72476" + rect: + serializedVersion: 2 + x: 928 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0754cb8b71212bac0800000000000000 + internalID: -3840987639100717712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u708E\u9886\u4E3B\u5361\u72477" + rect: + serializedVersion: 2 + x: 960 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cebe68e4cd082ea10800000000000000 + internalID: 1937252473421360108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u708E\u9886\u4E3B\u5361\u72478" + rect: + serializedVersion: 2 + x: 992 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9dcf355f92ccd6350800000000000000 + internalID: 6011685558191127769 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u70BC\u97AD" + rect: + serializedVersion: 2 + x: 1024 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c72f67dc05f631e0800000000000000 + internalID: -2218316330930591802 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u70BC\u98CE\u9AB8\u7684\u4E2D\u67A2\u6C34\u6676" + rect: + serializedVersion: 2 + x: 1056 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78047ef201bca72a0800000000000000 + internalID: -6738850622022926201 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u70BC\u98CE\u9AB8\u7684\u6C34\u6676\u788E\u7247" + rect: + serializedVersion: 2 + x: 1088 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ead79f421a037fe30800000000000000 + internalID: 4537148618267262382 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u7130\u4E4B\u529B" + rect: + serializedVersion: 2 + x: 1120 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33f0f8c862e7c9760800000000000000 + internalID: 7465980986305482547 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u7130\u4E4B\u610F" + rect: + serializedVersion: 2 + x: 1152 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f094ed07ef4f03730800000000000000 + internalID: 3976947844620634383 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u7130\u6218\u65A7" + rect: + serializedVersion: 2 + x: 1184 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 17fd3961a9302c230800000000000000 + internalID: 3657489807716900721 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u7130\u94DC\u6A3D\u8DEF\u706F" + rect: + serializedVersion: 2 + x: 1216 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b08b95b9d450c26e0800000000000000 + internalID: -1861106715133888501 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u7389" + rect: + serializedVersion: 2 + x: 1248 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6535b551cf2ffb10800000000000000 + internalID: 2017383665498404205 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u7389\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1280 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fba46426fb19e0480800000000000000 + internalID: -8931040759855560001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u76EE\u6212" + rect: + serializedVersion: 2 + x: 1312 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f82b4d98b61a9410800000000000000 + internalID: 1484524009340741879 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u773C\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1344 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42f762ea22602b250800000000000000 + internalID: 5958832002985000740 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u7EC3\u86C7" + rect: + serializedVersion: 2 + x: 1376 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef55b8f3fa7c3b370800000000000000 + internalID: 8337226890692220414 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u865A\u5934\u9970" + rect: + serializedVersion: 2 + x: 1408 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9cd063b55642c6910800000000000000 + internalID: 1831879166173515209 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u865A\u5C65" + rect: + serializedVersion: 2 + x: 1440 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69600e611e5a83bd0800000000000000 + internalID: -2650185994537531754 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u865A\u6212\uFF08\u9633\uFF09" + rect: + serializedVersion: 2 + x: 1472 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd32c4e2aa5330f40800000000000000 + internalID: 5693453358963893215 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u865A\u6212\uFF08\u9634\uFF09" + rect: + serializedVersion: 2 + x: 1504 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c0cc35e447726550800000000000000 + internalID: 6152611178728964295 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u865A\u62A4\u624B" + rect: + serializedVersion: 2 + x: 1536 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c7f7637a63abf36a0800000000000000 + internalID: -6467245795984375940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u865A\u62A4\u7B26" + rect: + serializedVersion: 2 + x: 1568 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61854e7433195a150800000000000000 + internalID: 5883268137664927766 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u865A\u888D" + rect: + serializedVersion: 2 + x: 1600 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fa56d388d11d961f0800000000000000 + internalID: -1051079113244318289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u865A\u88E4" + rect: + serializedVersion: 2 + x: 1632 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6482544a104c1dc0800000000000000 + internalID: -3666985515026840467 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D64\u8840\u77F3\u5760\u5B50" + rect: + serializedVersion: 2 + x: 1664 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fcf7bf8c29d531920800000000000000 + internalID: 2959812265131081679 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D70\u517D\u8840\u6DB2" + rect: + serializedVersion: 2 + x: 1696 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 713867a56524cc5d0800000000000000 + internalID: -3040982709729590505 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D77" + rect: + serializedVersion: 2 + x: 1728 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22017b4864b4e5c10800000000000000 + internalID: 2044154047119167522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D85\u77ED\u767D\u7EB1\u5C0F\u9E1F\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1760 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91c2e0211ae8f0380800000000000000 + internalID: -9002820307646534631 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D85\u77ED\u767D\u7EB1\u5C0F\u9E1F\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1792 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ffd5a5bf1dc1bd90800000000000000 + internalID: -7083655202801852429 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D85\u7EA7\u4E5D\u9633\u4E39" + rect: + serializedVersion: 2 + x: 1824 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0cb33a608c4a3bf80800000000000000 + internalID: -8091942926442873920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D85\u7EA7\u5168\u52E4\u5956" + rect: + serializedVersion: 2 + x: 1856 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf4fe88d08bff6800800000000000000 + internalID: 607981005525939451 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D85\u7EA7\u795E\u6C14\u4E38" + rect: + serializedVersion: 2 + x: 1888 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 30dffe5af22233ad0800000000000000 + internalID: -2723795761586242301 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8D85\u7EA7\u91D1\u521B\u836F" + rect: + serializedVersion: 2 + x: 1920 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d2b3f4d2d558ae470800000000000000 + internalID: 8424692688188554029 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8DB3\u7403" + rect: + serializedVersion: 2 + x: 1952 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf037b003b6da61c0800000000000000 + internalID: -4509556012558634756 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8DB3\u7403\u5B9D\u8D1D" + rect: + serializedVersion: 2 + x: 1984 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e07cc2aee00829620800000000000000 + internalID: 2779424721587717902 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8DE8\u670D\u5587\u53ED" + rect: + serializedVersion: 2 + x: 2016 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eba981fbe68cb7f70800000000000000 + internalID: 9186156242930277054 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8DEF\u6807" + rect: + serializedVersion: 2 + x: 2048 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d30a74e0c3aa3aa0800000000000000 + internalID: -6180447489750334503 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8DF3\u8DC3\u7684\u52A8\u4F5C1" + rect: + serializedVersion: 2 + x: 2080 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e0f60fc7440d413c0800000000000000 + internalID: -4389654744206905586 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8DF3\u8DC3\u7684\u52A8\u4F5C2" + rect: + serializedVersion: 2 + x: 2112 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e63af4174e626ffa0800000000000000 + internalID: -5767379510205897874 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8E0F\u96EA\u718A" + rect: + serializedVersion: 2 + x: 2144 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b078f8270ff3b470800000000000000 + internalID: 8409345335448072372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8EAB\u4EFD\u8BC1\u660E" + rect: + serializedVersion: 2 + x: 2176 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7179c36331c49bba0800000000000000 + internalID: -6072738977134373097 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F69\u7A97\u5982\u610F\u95E8" + rect: + serializedVersion: 2 + x: 2208 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6dd07e5524df65250800000000000000 + internalID: 5933208020458081750 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F69\u8F95\u6218\u7532" + rect: + serializedVersion: 2 + x: 2240 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b16fde7add41a2d0800000000000000 + internalID: -3269246253667491403 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F69\u8F95\u7389\u73BA" + rect: + serializedVersion: 2 + x: 2272 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 359397a178e7ed060800000000000000 + internalID: 6980155591200684371 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F69\u8F95\u76D4" + rect: + serializedVersion: 2 + x: 2304 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3adee2a529f78370800000000000000 + internalID: 8324896376260319807 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F69\u8F95\u817F\u7532" + rect: + serializedVersion: 2 + x: 2336 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6d4980e851a0a2e30800000000000000 + internalID: 4479403867066897622 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F69\u8F95\u8896\u7532" + rect: + serializedVersion: 2 + x: 2368 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 888d128f468c92210800000000000000 + internalID: 1308797502713092232 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F69\u8F95\u9774" + rect: + serializedVersion: 2 + x: 2400 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b825bce040793b90800000000000000 + internalID: -7261649500006700876 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F6C\u4E16\u4E4B\u7B26" + rect: + serializedVersion: 2 + x: 2432 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f76f715f94b99e9b0800000000000000 + internalID: -5050334765172394369 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F6C\u4E91\u5343\u5CF0\u697C" + rect: + serializedVersion: 2 + x: 2464 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74d0a1c1fbe9d5cc0800000000000000 + internalID: -3720643173490750137 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F6C\u52A8\u7684\u9B54\u65B9\u9F7F\u8F6E" + rect: + serializedVersion: 2 + x: 2496 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f6b119d42b36441b0800000000000000 + internalID: -5673300013123298449 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F6C\u8FD0\u73B2\u73D1" + rect: + serializedVersion: 2 + x: 2528 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52a315c884cbce420800000000000000 + internalID: 2660708499646921253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F6E\u56DE\u68AD" + rect: + serializedVersion: 2 + x: 2560 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0119544bcc3cb7830800000000000000 + internalID: 4070061972224577808 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F6E\u6905" + rect: + serializedVersion: 2 + x: 2592 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0cec10b58d66f18f0800000000000000 + internalID: -567621948599578944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F6E\u8F6C\u4E4B\u77F3\u5DE8\u86CB" + rect: + serializedVersion: 2 + x: 2624 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b7751d36b652a940800000000000000 + internalID: 5305898651704719281 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F6F\u6BDB\u76AE" + rect: + serializedVersion: 2 + x: 2656 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4ecea37b32b791c0800000000000000 + internalID: -4496929734492500406 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F6F\u732C\u523A\u7403\u7684\u523A" + rect: + serializedVersion: 2 + x: 2688 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06735b328e30c45f0800000000000000 + internalID: -771237140620822688 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F6F\u76AE\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 2720 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f54959843efde7d50800000000000000 + internalID: 6737068259861173343 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F6F\u76AE\u6218\u94E0" + rect: + serializedVersion: 2 + x: 2752 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6104aad11872e4e0800000000000000 + internalID: -1953867270247415444 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F6F\u76AE\u8155\u7532" + rect: + serializedVersion: 2 + x: 2784 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e15e255d290737120800000000000000 + internalID: 2410394001519863070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F6F\u76AE\u978B" + rect: + serializedVersion: 2 + x: 2816 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c074b90d53d17fe0800000000000000 + internalID: -1192940029728231225 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F6F\u7B4B" + rect: + serializedVersion: 2 + x: 2848 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 396f1cfe6f90a9c00800000000000000 + internalID: 908049231057647251 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F70\u9706\u5F02\u4E16\u74A7\u6CD5\u7CFB" + rect: + serializedVersion: 2 + x: 2880 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27b8fe1e1285b4980800000000000000 + internalID: -8553646164712387726 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F70\u9706\u5F02\u4E16\u74A7\u7269\u7406" + rect: + serializedVersion: 2 + x: 2912 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d03b694ab53be2980800000000000000 + internalID: -8561708635399998707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u5DE7\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 2944 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c5474ec1b167ffd0800000000000000 + internalID: -2308268867706206784 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u5DE7\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 2976 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a574d39cb5abaf6b0800000000000000 + internalID: -5261688311247976614 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u5DE7\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 3008 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f863a008887936310800000000000000 + internalID: 1397126921934485135 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u5DE7\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 3040 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79d92f0fca549d9a0800000000000000 + internalID: -6207854002274394729 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u5DE7\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 3072 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb1f2edf8e0f6eb50800000000000000 + internalID: 6622245185577480639 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u5DE7\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 3104 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 779407b0f91c3c250800000000000000 + internalID: 5963823220404537719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u7075\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 3136 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb816e78e552183e0800000000000000 + internalID: -2053318867167078213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u7075\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 3168 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7fedc07dc0681bf0800000000000000 + internalID: -353426135271477382 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u7075\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 3200 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99270baa60231caf0800000000000000 + internalID: -377965889507528039 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u7075\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 3232 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21cf04aac8632bed0800000000000000 + internalID: -2399795673655346158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u7075\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 3264 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4139334cfa49822e0800000000000000 + internalID: -2150305339437509868 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u7075\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 3296 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d74fe3e9a1214540800000000000000 + internalID: 4990306875660519381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u70DF\u7075\u73E0" + rect: + serializedVersion: 2 + x: 3328 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fbae9efcbb041050800000000000000 + internalID: 5770249928922016760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u76C8\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 3360 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45e51aa53e2288c20800000000000000 + internalID: 3208853094374923860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u76C8\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 3392 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 83bc1ce21ad669390800000000000000 + internalID: -7811935964585931976 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u76C8\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 3424 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 420ddb93f55625380800000000000000 + internalID: -8984006846985678812 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u76C8\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 3456 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cddafde8c8e32bb20800000000000000 + internalID: 3148647862898765276 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u76C8\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 3488 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 849ad616e6b8773f0800000000000000 + internalID: -903099894067254968 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u76C8\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 3520 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa5823deb3ca8d180800000000000000 + internalID: -9090326474464787030 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u7EB1\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3552 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25218c40454285250800000000000000 + internalID: 5933532452336702034 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u7EB1\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3584 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c3c3969bbd3f9fb0800000000000000 + internalID: -4638921215273876539 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u7EB1\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3616 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab43e1fed9e86d8f0800000000000000 + internalID: -516068298314599238 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u7EB1\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3648 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b32bc29133599f6c0800000000000000 + internalID: -4109089138300636613 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u7FBD\u857E\u4E1D\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3680 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39248cdeab7f38330800000000000000 + internalID: 3712082900108722835 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u7FBD\u857E\u4E1D\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3712 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b43463b22044c0b80800000000000000 + internalID: -8427286026611440821 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u7FBD\u857E\u4E1D\u5973\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3744 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b0ef1f24ee1d6730800000000000000 + internalID: 3993882409939493041 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7B\u7FBD\u857E\u4E1D\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3776 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a821b41a3ae9bd950800000000000000 + internalID: 6474943314898129546 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F7D" + rect: + serializedVersion: 2 + x: 3808 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 225891849fc8a3370800000000000000 + internalID: 8303103865295308066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F89\u591C\u519B\u4E4B\u5370" + rect: + serializedVersion: 2 + x: 3840 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69559a1ade5b82c40800000000000000 + internalID: 5487836178175055254 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F89\u591C\u519B\u5148\u950B\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 3872 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14575c4411757e510800000000000000 + internalID: 1578325926096500033 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F89\u591C\u519B\u52C7\u8005\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 3904 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5993b2db32f181d70800000000000000 + internalID: 9013988892540090773 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F89\u591C\u519B\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 3936 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 658e837b21f8ff670800000000000000 + internalID: 8574729526082857046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F89\u591C\u519B\u7EDF\u9886\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 3968 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 053c73e78b1f9fdf0800000000000000 + internalID: -145819738218970288 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F89\u714C\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 4000 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24b8a8ce318eed770800000000000000 + internalID: 8637596307613715266 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F89\u714C\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 4032 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b988d9fa691af0e0800000000000000 + internalID: -2235446317787084362 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F89\u714C\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 4064 + y: 2240 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a597d33d4ecea5c40800000000000000 + internalID: 5501970362327202138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F89\u714C\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 0 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e2029da621e480d0800000000000000 + internalID: -3421362260657700121 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F89\u714C\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 32 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1790783cc324bfd0800000000000000 + internalID: -2327195747416500454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F89\u714C\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 64 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 72a4db0976f5d1470800000000000000 + internalID: 8366948581138844199 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F89\u714C\u5370\u8BB0" + rect: + serializedVersion: 2 + x: 96 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9bcc74c622db3eeb0800000000000000 + internalID: -4691698431246742343 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F89\u77F3" + rect: + serializedVersion: 2 + x: 128 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4d41af8f0a2c2310800000000000000 + internalID: 1381525432018488655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F9B" + rect: + serializedVersion: 2 + x: 160 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3917070e665bdde00800000000000000 + internalID: 1071211739840803219 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F9F\u5C18\u89D2" + rect: + serializedVersion: 2 + x: 192 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3115adee62b30c780800000000000000 + internalID: -8664860644658753261 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F9F\u5CB3\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 224 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8af3f87613d0f15f0800000000000000 + internalID: -783893304297177176 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F9F\u5FC3\u4E4B\u7389" + rect: + serializedVersion: 2 + x: 256 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ce9cf9d848838980800000000000000 + internalID: -8537830622088094013 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F9F\u7280\u9879\u94FE" + rect: + serializedVersion: 2 + x: 288 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46adc7d5a447e1c50800000000000000 + internalID: 6637870763535555172 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F9F\u90AA\u5E61\u6756" + rect: + serializedVersion: 2 + x: 320 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd6f1c799a299d8f0800000000000000 + internalID: -515219425264011553 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8F9F\u90AA\u76D4" + rect: + serializedVersion: 2 + x: 352 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9121cb22c4311080800000000000000 + internalID: -9218528953688317540 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FB0" + rect: + serializedVersion: 2 + x: 384 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f210bb44d8d8bdef0800000000000000 + internalID: -82316530293210833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FCE\u5BA2\u677E" + rect: + serializedVersion: 2 + x: 416 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 689d9caa7fd4a4850800000000000000 + internalID: 6361983149731862918 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FCE\u98CE\u62DB\u5C55\u7684\u7D2B\u65D7" + rect: + serializedVersion: 2 + x: 448 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 934db99162c92a400800000000000000 + internalID: 334001009831171129 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FCE\u98CE\u62DB\u5C55\u7684\u7EA2\u65D7" + rect: + serializedVersion: 2 + x: 480 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af3e61269ce48d6d0800000000000000 + internalID: -2965533727782411270 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FCE\u98CE\u62DB\u5C55\u7684\u84DD\u65D7" + rect: + serializedVersion: 2 + x: 512 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9ee01ef9eddf1d50800000000000000 + internalID: 6710325966864969372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FD0\u52A8\u5065\u5C06\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 544 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 990f0a93b5fda4db0800000000000000 + internalID: -4806784069362716519 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FD4\u58A3\u51A0" + rect: + serializedVersion: 2 + x: 576 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: daaa3472bb96f4570800000000000000 + internalID: 8453091278136257197 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FD4\u8001\u8FD8\u7AE5\u4E39" + rect: + serializedVersion: 2 + x: 608 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f39ae60cecb4c0c0800000000000000 + internalID: -4556309201077758988 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FD4\u9B42\u8349" + rect: + serializedVersion: 2 + x: 640 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f259dd0110ee8fa40800000000000000 + internalID: 5402329441376245039 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FD8\u9B42\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 672 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7d9821aa64202be60800000000000000 + internalID: 7976440392550877655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FDB\u5316\u86CB" + rect: + serializedVersion: 2 + x: 704 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a74bfac34a8310660800000000000000 + internalID: 7350218344889300090 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FDC\u53E4\u56FE\u817E" + rect: + serializedVersion: 2 + x: 736 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cca0472463bb7b370800000000000000 + internalID: 8338339076817291980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FDC\u53E4\u9A6F\u9E7F\u7684\u8840" + rect: + serializedVersion: 2 + x: 768 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a41acb1fad2ec490800000000000000 + internalID: -7724186080785066843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FDC\u884C\u4E4B\u9774" + rect: + serializedVersion: 2 + x: 800 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da3ff0b9477740220800000000000000 + internalID: 2451215439897818029 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FDE\u4E91\u5F29" + rect: + serializedVersion: 2 + x: 832 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b72ad8e02204c9330800000000000000 + internalID: 3718917907318415995 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FDE\u51FB\u5F29" + rect: + serializedVersion: 2 + x: 864 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a5db78e9290620a0800000000000000 + internalID: -6906822902927338077 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FDE\u6A2A\u5251" + rect: + serializedVersion: 2 + x: 896 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60b67c4aaf81cec40800000000000000 + internalID: 5542832706171661062 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FDE\u73AF\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 928 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce4d17c176ab0be90800000000000000 + internalID: -7011899667794242324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FDE\u73AF\u6218\u94E0" + rect: + serializedVersion: 2 + x: 960 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9def29e74941ebcc0800000000000000 + internalID: -3693492016385949991 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FDE\u73AF\u8155\u7532" + rect: + serializedVersion: 2 + x: 992 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f12114ef811c3b10800000000000000 + internalID: 1962462847331017201 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FDE\u73AF\u978B" + rect: + serializedVersion: 2 + x: 1024 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac2683dc9fb01ac30800000000000000 + internalID: 4368786281043878602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FE6\u84DD\u4E4B\u77F31" + rect: + serializedVersion: 2 + x: 1056 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d24a44fff0e521910800000000000000 + internalID: 1806609823329199149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FE6\u84DD\u4E4B\u77F32" + rect: + serializedVersion: 2 + x: 1088 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8ce2e0cafd1888b0800000000000000 + internalID: -5149833211083035507 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FE6\u84DD\u4E4B\u77F3\u7070" + rect: + serializedVersion: 2 + x: 1120 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f98dd4d2f0674f510800000000000000 + internalID: 1582019176670550175 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FE6\u84DD\u4E4B\u77F3\u84DD" + rect: + serializedVersion: 2 + x: 1152 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24be20ddd8b1616d0800000000000000 + internalID: -3020196203993044158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FE6\u84DD\u4E4B\u77F3\u91D1" + rect: + serializedVersion: 2 + x: 1184 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c3cd85a5723cd070800000000000000 + internalID: 8132430507994366912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FEA\u8D5B\u5965\u9ED1\u9F99" + rect: + serializedVersion: 2 + x: 1216 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e52c87cd400fd160800000000000000 + internalID: 7052355875545818601 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FF7\u5F69\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1248 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ccc18f11868d6c30800000000000000 + internalID: 4354284303874641097 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FF7\u5F69\u88C5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 1280 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 346a15d36add31570800000000000000 + internalID: 8436330233058141763 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FF7\u5F69\u88C5\u7537\u88E4" + rect: + serializedVersion: 2 + x: 1312 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b223c20bbb79d9f0800000000000000 + internalID: -443187045183839562 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FF7\u5F69\u88C5\u7537\u978B" + rect: + serializedVersion: 2 + x: 1344 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4085d005c737af50800000000000000 + internalID: 6892539073975910474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FF7\u8776\u68A6\u8FF4\u523B\u5370" + rect: + serializedVersion: 2 + x: 1376 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 475cc54d8d69f56c0800000000000000 + internalID: -4152434473392355980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FFD\u4E91\u5954\u9A6C" + rect: + serializedVersion: 2 + x: 1408 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d85b35052fad0fc90800000000000000 + internalID: -7137964675117632115 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FFD\u6708\u8FDE\u5F29" + rect: + serializedVersion: 2 + x: 1440 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e933a7ec4590da00800000000000000 + internalID: 779286893071383011 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u8FFD\u98CE\u8C79" + rect: + serializedVersion: 2 + x: 1472 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3ba038f64a2806d0800000000000000 + internalID: -3024120665479271620 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9006\u4ED9\u679C" + rect: + serializedVersion: 2 + x: 1504 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e78fac3ae452ccde0800000000000000 + internalID: -1311632371785992066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9006\u5929\u6212" + rect: + serializedVersion: 2 + x: 1536 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 962fb8ef4d3e19a00800000000000000 + internalID: 761640315945480809 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9006\u8F6C\u5B9D\u73E0" + rect: + serializedVersion: 2 + x: 1568 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8078cebfe136f580800000000000000 + internalID: -8793786316626562931 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9006\u9CDE\u65A7" + rect: + serializedVersion: 2 + x: 1600 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 163ed6dfaf343e980800000000000000 + internalID: -8510884125527383199 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u900D\u9065\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 1632 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44ab59a8dcfc34730800000000000000 + internalID: 3982254977225964100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u900D\u9065\u6218\u94E0" + rect: + serializedVersion: 2 + x: 1664 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 196afe22c9df3bf20800000000000000 + internalID: 3437369787656677009 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u900D\u9065\u6E38\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 1696 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5b092a4ffbe6dc90800000000000000 + internalID: -7145264277083321510 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u900D\u9065\u7075\u7389" + rect: + serializedVersion: 2 + x: 1728 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eae285a31d0b59d60800000000000000 + internalID: 7896411934337543854 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u900D\u9065\u8155\u7532" + rect: + serializedVersion: 2 + x: 1760 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ecb365939d162290800000000000000 + internalID: -7915606775353328407 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u900D\u9065\u978B" + rect: + serializedVersion: 2 + x: 1792 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57e555103ae73e3c0800000000000000 + internalID: -4331479178033144203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u900F\u540D\u9F99\u5973\u88C5\u8863\u670D" + rect: + serializedVersion: 2 + x: 1824 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b7952772381294110800000000000000 + internalID: 1245563619130890619 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u900F\u660E\u9F99\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1856 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 05ac7ddd8c8069960800000000000000 + internalID: 7608278279297419856 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u900F\u660E\u9F99\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1888 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9f7370609721bc690800000000000000 + internalID: -7580945236746618887 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9010\u5149\u4E4B\u5F13" + rect: + serializedVersion: 2 + x: 1920 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90d8d09ba730bdb30800000000000000 + internalID: 4313044893762948361 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9010\u5149\u5F02\u5316\u9CD7" + rect: + serializedVersion: 2 + x: 1952 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99758ef3d06a528d0800000000000000 + internalID: -2871706611541846119 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9010\u5149\u5F29" + rect: + serializedVersion: 2 + x: 1984 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca044a24fb26982a0800000000000000 + internalID: -6734743194159529812 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u4ECA\u51A0" + rect: + serializedVersion: 2 + x: 2016 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: adfab1073482e3a30800000000000000 + internalID: 4196836172864663514 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u5E7D\u6756" + rect: + serializedVersion: 2 + x: 2048 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b3a64b0fab1da77f0800000000000000 + internalID: -613947798350173637 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u5E7D\u9B54\u864E" + rect: + serializedVersion: 2 + x: 2080 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a4190652d95fb100800000000000000 + internalID: 125918074511103138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u5E7D\u9B54\u864E\u5B9D\u5B9D" + rect: + serializedVersion: 2 + x: 2112 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce4cd8fe0230bcab0800000000000000 + internalID: -4986888722389809940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u7075\u4F7F\u8005\u4EE4" + rect: + serializedVersion: 2 + x: 2144 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c03d3fb9fb0f3c7e0800000000000000 + internalID: -1746287524743752948 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u7384\u4ED9\u864E" + rect: + serializedVersion: 2 + x: 2176 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 376e0295b474786d0800000000000000 + internalID: -2988341438793587085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u7384\u4ED9\u864E\u5B9D\u5B9D" + rect: + serializedVersion: 2 + x: 2208 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c99e649aa439ba80800000000000000 + internalID: -8450665318544664123 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u7528\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 2240 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f644ffa2554a96770800000000000000 + internalID: 8604589248768590959 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u7528\u6D3B\u52A8\u95E8\u7968" + rect: + serializedVersion: 2 + x: 2272 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68107bbce8a49edd0800000000000000 + internalID: -2456350144590315130 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u7528\u6D3B\u52A8\u95E8\u79682" + rect: + serializedVersion: 2 + x: 2304 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e40e5fc47d0c3be40800000000000000 + internalID: 5671088386731270222 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u7528\u6D3B\u52A8\u95E8\u79683" + rect: + serializedVersion: 2 + x: 2336 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fcc08839395961290800000000000000 + internalID: -7919978433616540465 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u7528\u6D3B\u52A8\u95E8\u79684" + rect: + serializedVersion: 2 + x: 2368 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2302d4baddbbadd0800000000000000 + internalID: -2473674823275773138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u7528\u6D3B\u52A8\u95E8\u79685" + rect: + serializedVersion: 2 + x: 2400 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 466d275418c29efd0800000000000000 + internalID: -2312267999950481820 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u7528\u914D\u65B9\u5305\u88F9" + rect: + serializedVersion: 2 + x: 2432 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df08dd3b8b6ae0cb0800000000000000 + internalID: -4895792432683319043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901A\u7ECF\u8349" + rect: + serializedVersion: 2 + x: 2464 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 706163037c3785990800000000000000 + internalID: -7397035088611502585 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901F\u5C04\u5F29" + rect: + serializedVersion: 2 + x: 2496 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b5485c1fb4bed120800000000000000 + internalID: 2440586780988687801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u901F\u5EA6\u4E4B\u8BC1" + rect: + serializedVersion: 2 + x: 2528 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62953bed1c48998c0800000000000000 + internalID: -3992013626487383770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9022" + rect: + serializedVersion: 2 + x: 2560 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b4d4f2395f17c480800000000000000 + internalID: -8879093672370187083 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9053\u7075\u7B26" + rect: + serializedVersion: 2 + x: 2592 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9246f1895a2f52180800000000000000 + internalID: -9140633075642833879 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9057\u4E66" + rect: + serializedVersion: 2 + x: 2624 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8e5d994cf6a7d8a60800000000000000 + internalID: 7677927560194938344 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9057\u5931\u7684\u5305\u88F9" + rect: + serializedVersion: 2 + x: 2656 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e4faab09975ed470800000000000000 + internalID: 8421264668066772198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9057\u5931\u7684\u8D27\u7269" + rect: + serializedVersion: 2 + x: 2688 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7edabe12a05c54240800000000000000 + internalID: 4775439627205717479 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9057\u5931\u7684\u9996\u9970" + rect: + serializedVersion: 2 + x: 2720 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc32f72e5ff543d50800000000000000 + internalID: 6716098453987861452 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9057\u8BAD\u523B\u6587" + rect: + serializedVersion: 2 + x: 2752 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 056d2d4a3951b9ba0800000000000000 + internalID: -6081243147964066224 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9057\u8FF9\u5FBD\u7AE0\u788E\u7247" + rect: + serializedVersion: 2 + x: 2784 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 913be6be7a1440ba0800000000000000 + internalID: -6123697403851787495 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u906E\u5929\u5E61\u6756" + rect: + serializedVersion: 2 + x: 2816 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9a89ae81f01cd5b40800000000000000 + internalID: 5430708996265384105 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9080\u4ED9\u5760\u5B50" + rect: + serializedVersion: 2 + x: 2848 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 032f04826af63fd60800000000000000 + internalID: 7922798928905433648 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9080\u6708\u5760\u5B50" + rect: + serializedVersion: 2 + x: 2880 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f64af06545aa65360800000000000000 + internalID: 7158095936949822575 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9080\u795E\u5760\u5B50" + rect: + serializedVersion: 2 + x: 2912 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea131133a52b87960800000000000000 + internalID: 7600020471661277614 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9080\u971E\u5760\u5B50" + rect: + serializedVersion: 2 + x: 2944 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5be05843f27b20c0800000000000000 + internalID: -4599456205212947619 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u90AA\u9B42\u4E4B\u5370" + rect: + serializedVersion: 2 + x: 2976 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2df4610d7416a0cf0800000000000000 + internalID: -285308665322909742 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u90AA\u9B42\u4EE4" + rect: + serializedVersion: 2 + x: 3008 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a128524ac188e4f10800000000000000 + internalID: 2255890119953580570 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u90AA\u9B42\u7075\u9F9B" + rect: + serializedVersion: 2 + x: 3040 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09291dcae8a37ce80800000000000000 + internalID: -8158487815499181424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u90C1\u91D1" + rect: + serializedVersion: 2 + x: 3072 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb6820976216fca40800000000000000 + internalID: 5390634096852633279 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u90C1\u91D1\u9999" + rect: + serializedVersion: 2 + x: 3104 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a53c453ff3e7fd80800000000000000 + internalID: -8216848309863828056 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u90C1\u91D1\u99991" + rect: + serializedVersion: 2 + x: 3136 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08471d23145823e60800000000000000 + internalID: 7940555608079561856 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u90CE\u60C5\u59BE\u610F" + rect: + serializedVersion: 2 + x: 3168 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 947708ff4d5488310800000000000000 + internalID: 1407451664675272521 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u90E1\u4E3B\u88D9" + rect: + serializedVersion: 2 + x: 3200 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d7e45eee8e2e5a40800000000000000 + internalID: 5358771798036244435 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u90E1\u4E3B\u8902" + rect: + serializedVersion: 2 + x: 3232 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36363f85c8718ce60800000000000000 + internalID: 7982656231069410147 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u90E1\u4E3B\u978B" + rect: + serializedVersion: 2 + x: 3264 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4cd4e7642a8ee70b0800000000000000 + internalID: -5728885892303663676 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9149" + rect: + serializedVersion: 2 + x: 3296 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ba4c410524399ef0800000000000000 + internalID: -100992183098914128 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9152\u676F" + rect: + serializedVersion: 2 + x: 3328 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8934ba39576cce940800000000000000 + internalID: 5326850667563402136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9177\u5BA2\u725B\u4ED4\u7537\u88C5-\u5934\u53D132" + rect: + serializedVersion: 2 + x: 3360 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1a5ea775fdefffe0800000000000000 + internalID: -1152941341052872162 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9177\u5BA2\u725B\u4ED4\u7537\u88C5-\u62A4\u815532" + rect: + serializedVersion: 2 + x: 3392 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 93ae8a2a5b6a32760800000000000000 + internalID: 7431967109139720761 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9177\u5BA2\u725B\u4ED4\u7537\u88C5-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 3424 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 507dc1291974328e0800000000000000 + internalID: -1719451942178203899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9177\u5BA2\u725B\u4ED4\u7537\u88C5-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 3456 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 062d8569665bf1f70800000000000000 + internalID: 9160239619308573280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9177\u5BA2\u725B\u4ED4\u7537\u88C5-\u978B32" + rect: + serializedVersion: 2 + x: 3488 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6bf74c2e16e39e880800000000000000 + internalID: -8581259024840491082 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9177\u76AE\u8863\u6DF1\u8272\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 3520 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22f646937fb368600800000000000000 + internalID: 470129144112639778 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9177\u76AE\u8863\u6DF1\u8272\u7537\u88C5" + rect: + serializedVersion: 2 + x: 3552 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd5fc260bffcfc440800000000000000 + internalID: 4958410391805556191 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9177\u76AE\u8863\u6DF1\u8272\u7537\u88E4" + rect: + serializedVersion: 2 + x: 3584 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cde21437ac6e58600800000000000000 + internalID: 470035493321518812 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9177\u76AE\u8863\u6DF1\u8272\u7537\u978B" + rect: + serializedVersion: 2 + x: 3616 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c12f6e76c4a868370800000000000000 + internalID: 8324493022006276636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9177\u7EDA\u821E\u53F0\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3648 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6282879fa5b3f3f0800000000000000 + internalID: -868150537386556818 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9177\u7EDA\u821E\u53F0\u88C5\u7537\u8155" + rect: + serializedVersion: 2 + x: 3680 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25cdd0bc22c8a8a70800000000000000 + internalID: 8830024100476738642 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9177\u7EDA\u821E\u53F0\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3712 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 643ba5fb59e3c7170800000000000000 + internalID: 8177479836279419718 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9177\u7EDA\u821E\u53F0\u88C5\u7537\u978B" + rect: + serializedVersion: 2 + x: 3744 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d191c025a7dd69d0800000000000000 + internalID: -2779328290798595629 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9189\u4ED9\u9732" + rect: + serializedVersion: 2 + x: 3776 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f1d1c91c8d47d290800000000000000 + internalID: -7865732960056389136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9189\u7389\u76CF" + rect: + serializedVersion: 2 + x: 3808 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fb94757d7cecce1a0800000000000000 + internalID: -6778815981392803393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9189\u9752\u7334\u5143\u9B42" + rect: + serializedVersion: 2 + x: 3840 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cab3766ab3a41c550800000000000000 + internalID: 6179301783784340396 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u918D\u9190\u9999" + rect: + serializedVersion: 2 + x: 3872 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e8aba897ffe80cf0800000000000000 + internalID: -285714729640679193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91C7\u77F3\u573A" + rect: + serializedVersion: 2 + x: 3904 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5262a7bdc97913600800000000000000 + internalID: 446304538039297573 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91C7\u77FF\u573A" + rect: + serializedVersion: 2 + x: 3936 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a901b1c39805cae60800000000000000 + internalID: 7974837590515454106 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91CD\u8981\u4FE1\u7269" + rect: + serializedVersion: 2 + x: 3968 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 828d399d045732d50800000000000000 + internalID: 6711336791100872744 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91CE\u517D\u7684\u6BDB" + rect: + serializedVersion: 2 + x: 4000 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61f318ea60c7d7a40800000000000000 + internalID: 5367582699034853142 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91CE\u5916\u5F00\u4ED3\u5E93\u77F3" + rect: + serializedVersion: 2 + x: 4032 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f1a9f0653b1cf230800000000000000 + internalID: 3673841312101671413 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91CE\u5916\u5F00\u5546\u5E97\u77F3" + rect: + serializedVersion: 2 + x: 4064 + y: 2208 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fefc1fac4f255e1c0800000000000000 + internalID: -4475079443392376849 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91CE\u5916\u5F00\u90AE\u7BB1\u77F3" + rect: + serializedVersion: 2 + x: 0 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f65c74ecfb7d43a0800000000000000 + internalID: -6679546346225248526 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91CE\u5C71\u53C2" + rect: + serializedVersion: 2 + x: 32 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69acf84f6f4c1bbf0800000000000000 + internalID: -310250334367790442 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91CE\u6027\u6F06\u76AE\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 64 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dff7a537669fb3340800000000000000 + internalID: 4844740042584391677 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91CE\u6027\u6F06\u76AE\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 96 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e6294ad99d5153c0800000000000000 + internalID: -4372610847826434336 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91CE\u6027\u6F06\u76AE\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 128 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: efeb609dee5ae7730800000000000000 + internalID: 3998815964413476606 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91CE\u6027\u6F06\u76AE\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 160 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c03d88994e552f90800000000000000 + internalID: -6979068377355702075 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91CE\u679C" + rect: + serializedVersion: 2 + x: 192 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c1ab9a6d95686ea0800000000000000 + internalID: -5879337586759327295 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91CE\u732C\u7CBE\u7684\u523A" + rect: + serializedVersion: 2 + x: 224 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5e1bf5f3316fad70800000000000000 + internalID: 9056564251463458394 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91CE\u8DA3\u56FE\u846B\u82A6" + rect: + serializedVersion: 2 + x: 256 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94824a65b14d91260800000000000000 + internalID: 7068914304017508425 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1zippo" + rect: + serializedVersion: 2 + x: 288 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0baac2998d04df9e0800000000000000 + internalID: -1586040194737591632 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u4E39" + rect: + serializedVersion: 2 + x: 320 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac6f36b5a7608f780800000000000000 + internalID: -8649155961775982902 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u4E4B\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 352 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d63e9d0254e26650800000000000000 + internalID: 6224788676046370520 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u4E4B\u82F1" + rect: + serializedVersion: 2 + x: 384 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4a8f4c7957bb12e0800000000000000 + internalID: -2153926401801090481 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u4E4C\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 416 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8a40898b10d39440800000000000000 + internalID: 4941522032845146762 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u5143\u5B9D\u82B1\u706F" + rect: + serializedVersion: 2 + x: 448 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee5c4f544f35a3fe0800000000000000 + internalID: -1208561241384761874 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u5143\u7D20\u7CBE\u534E" + rect: + serializedVersion: 2 + x: 480 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7d3c1560ddedae70800000000000000 + internalID: 9128213499055193466 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u5149\u72EE\u5B50" + rect: + serializedVersion: 2 + x: 512 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af4952de064735b40800000000000000 + internalID: 5427809935555925242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u5149\u7535\u6BCD" + rect: + serializedVersion: 2 + x: 544 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0abfaefb0d77f3ec0800000000000000 + internalID: -3585015039906874464 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u5149\u95EA\u95EA\u7684\u9CA4\u9C7C" + rect: + serializedVersion: 2 + x: 576 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 283cdd95f6e60e070800000000000000 + internalID: 8133622351559246722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u521A\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 608 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a88b0b41ed99eda0800000000000000 + internalID: -5915023044622186328 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u521A\u5929\u97F3" + rect: + serializedVersion: 2 + x: 640 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb6d907507aa9fd00800000000000000 + internalID: 1007023391167338174 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u521A\u624B\u83E9\u8428" + rect: + serializedVersion: 2 + x: 672 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6ae35d340cc630f0800000000000000 + internalID: -1137497537283626389 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u521A\u624B\u83E9\u8428\u788E\u7247" + rect: + serializedVersion: 2 + x: 704 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3023a205135570030800000000000000 + internalID: 3460828508944216579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u521A\u62A4\u7B26" + rect: + serializedVersion: 2 + x: 736 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0a22f0f7ac98d440800000000000000 + internalID: 4960887234664475149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u521A\u6485" + rect: + serializedVersion: 2 + x: 768 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef23efb7ada02a000800000000000000 + internalID: 45610879726531326 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u521A\u6728" + rect: + serializedVersion: 2 + x: 800 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 101d68df94027a920800000000000000 + internalID: 3001403178823897345 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u521A\u6775" + rect: + serializedVersion: 2 + x: 832 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aecfb90af3a479450800000000000000 + internalID: 6095422257807228138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u521A\u77F3\u94FE\u5B50" + rect: + serializedVersion: 2 + x: 864 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59dd04ed0da574470800000000000000 + internalID: 8378765484874587541 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u521A\u7802" + rect: + serializedVersion: 2 + x: 896 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad6fbc17e844ae710800000000000000 + internalID: 1723265186007873242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u521A\u83E9\u63D0\u5FF5" + rect: + serializedVersion: 2 + x: 928 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9aaf72a2ea227c270800000000000000 + internalID: 8270617372116122281 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u521B\u836F" + rect: + serializedVersion: 2 + x: 960 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c13272f8caffff8d0800000000000000 + internalID: -2810246525854735588 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u53F6\u5B50" + rect: + serializedVersion: 2 + x: 992 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc572c88b1cdb74a0800000000000000 + internalID: -6594435218537286193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u5C5E\u7FFC" + rect: + serializedVersion: 2 + x: 1024 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ae8077ca13695070800000000000000 + internalID: 8095610771841519265 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u5C5E\u82B1\u6735" + rect: + serializedVersion: 2 + x: 1056 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88fe4c2f6d5e503d0800000000000000 + internalID: -3240931645464449144 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u5E01" + rect: + serializedVersion: 2 + x: 1088 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9b4b79e409308320800000000000000 + internalID: 2558107281606265757 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u5E01\u888B\u5B50" + rect: + serializedVersion: 2 + x: 1120 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ce5887a35362d1f0800000000000000 + internalID: -1021644954515513655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6761" + rect: + serializedVersion: 2 + x: 1152 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58c93eba6fc559920800000000000000 + internalID: 2996403341600464005 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6BDB\u72AC" + rect: + serializedVersion: 2 + x: 1184 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b22c78fa0a5a45570800000000000000 + internalID: 8454564510039523883 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6BDB\u72EE\u738B" + rect: + serializedVersion: 2 + x: 1216 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba3050dfe9608d0a0800000000000000 + internalID: -6856723152752016469 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6C64\u6218\u7532" + rect: + serializedVersion: 2 + x: 1248 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c73fe422da85f9d70800000000000000 + internalID: 9052051276666172284 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6C64\u76D4" + rect: + serializedVersion: 2 + x: 1280 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c3f10b0be3da1ae0800000000000000 + internalID: -1577715712984484922 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6C64\u817F\u7532" + rect: + serializedVersion: 2 + x: 1312 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 64f67b38df97b8040800000000000000 + internalID: 4650945169933692742 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6C64\u8896\u7532" + rect: + serializedVersion: 2 + x: 1344 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52955f99e2e350fa0800000000000000 + internalID: -5835189372316198619 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6C64\u9774" + rect: + serializedVersion: 2 + x: 1376 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 454f40d6ba23d2ae0800000000000000 + internalID: -1572544983032597420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6D9B\u5E7F\u4EAE\u95E8" + rect: + serializedVersion: 2 + x: 1408 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44448bbb468146270800000000000000 + internalID: 8242740038920062020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6D9B\u7EA2\u5899" + rect: + serializedVersion: 2 + x: 1440 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 549f172859acb7bb0800000000000000 + internalID: -4937129822994171579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6D9B\u7EA2\u6A90\u67F1" + rect: + serializedVersion: 2 + x: 1472 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56ae40dd3687e05a0800000000000000 + internalID: -6553168037472310683 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6F9C\u5B88\u62A4\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1504 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9fff4a8351fa5ae90800000000000000 + internalID: -7015008338880167943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6F9C\u795E\u884C\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1536 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 72737fb220e74b300800000000000000 + internalID: 266976825714358055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6F9C\u79FB\u5C71\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1568 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97ca9b4c9fa3895e0800000000000000 + internalID: -1902705998142264199 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6F9C\u8BC6\u6D77\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1600 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ebf4f1c465d6aaf70800000000000000 + internalID: 9199285406269394878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u6F9C\u8FC5\u6377\u5377\u8F74" + rect: + serializedVersion: 2 + x: 1632 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85193150bc3a8de10800000000000000 + internalID: 2222706508466196824 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E00\u7B49\u4F2F\u7235" + rect: + serializedVersion: 2 + x: 1664 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0a4d9db9bf3280a0800000000000000 + internalID: -6880867213685994997 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E00\u7B49\u4FAF\u7235" + rect: + serializedVersion: 2 + x: 1696 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7d6aed8bb0748a80800000000000000 + internalID: -8465517448707543682 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E00\u7B49\u516C\u7235" + rect: + serializedVersion: 2 + x: 1728 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e16e3776328f22190800000000000000 + internalID: -7988549958058645986 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E00\u7B49\u5B50\u7235" + rect: + serializedVersion: 2 + x: 1760 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4658ac41c1afff640800000000000000 + internalID: 5116082700231017828 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E00\u7B49\u7537\u7235" + rect: + serializedVersion: 2 + x: 1792 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce9a2c2d7e3536b20800000000000000 + internalID: 3126434821463779820 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E09\u7B49\u4F2F\u7235" + rect: + serializedVersion: 2 + x: 1824 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8358d97a3d8204980800000000000000 + internalID: -8556794402488613576 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E09\u7B49\u4FAF\u7235" + rect: + serializedVersion: 2 + x: 1856 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8cbcabe7f4c451590800000000000000 + internalID: -7704167683235066936 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E09\u7B49\u516C\u7235" + rect: + serializedVersion: 2 + x: 1888 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c94ad336821f590c0800000000000000 + internalID: -4569481091131530084 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E09\u7B49\u5B50\u7235" + rect: + serializedVersion: 2 + x: 1920 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d15b3538d4fb6450800000000000000 + internalID: 6083224931137180114 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E09\u7B49\u7537\u7235" + rect: + serializedVersion: 2 + x: 1952 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b484bb42473d3540800000000000000 + internalID: 4989204720073868470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E8C\u7B49\u4F2F\u7235" + rect: + serializedVersion: 2 + x: 1984 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe3278f3bd236d310800000000000000 + internalID: 1429385848981758959 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E8C\u7B49\u4FAF\u7235" + rect: + serializedVersion: 2 + x: 2016 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 055877c4da26f7d20800000000000000 + internalID: 3278447550200776016 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E8C\u7B49\u516C\u7235" + rect: + serializedVersion: 2 + x: 2048 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc5b0d52ecbe819f0800000000000000 + internalID: -497388488194214449 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E8C\u7B49\u5B50\u7235" + rect: + serializedVersion: 2 + x: 2080 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ea438392a3bb4710800000000000000 + internalID: 1678632796966570728 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u724C\u4E8C\u7B49\u7537\u7235" + rect: + serializedVersion: 2 + x: 2112 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bf2da228cf011f90800000000000000 + internalID: -6984784194825277518 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u732A" + rect: + serializedVersion: 2 + x: 2144 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc2c7d41e347d7000800000000000000 + internalID: 35312182075310795 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u7532\u5929\u795E" + rect: + serializedVersion: 2 + x: 2176 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b4857af7d1861440800000000000000 + internalID: 4906251608686691510 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u775B\u73E0" + rect: + serializedVersion: 2 + x: 2208 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5c9c26c5f4b26f560800000000000000 + internalID: 7347107461953931717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u7816" + rect: + serializedVersion: 2 + x: 2240 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef87800f8e6cba970800000000000000 + internalID: 8767319803368601854 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u78A7\u6749\u6728\u821F" + rect: + serializedVersion: 2 + x: 2272 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b97b9801110dfe230800000000000000 + internalID: 3670380993040725915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u7B94" + rect: + serializedVersion: 2 + x: 2304 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 161a5eda25b5bdd10800000000000000 + internalID: 2151413657662497121 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u7EBF\u828D" + rect: + serializedVersion: 2 + x: 2336 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d7b02a8bd141cd30800000000000000 + internalID: 4449910317989803993 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u7EBF\u9576\u8FB9\u957F\u9760\u57AB" + rect: + serializedVersion: 2 + x: 2368 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a4e76a38005e8fe0800000000000000 + internalID: -1184921655682014044 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u7ED8\u9F99\u7EB9\u5BAB\u7EB8" + rect: + serializedVersion: 2 + x: 2400 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 01af5ef8cc7e20420800000000000000 + internalID: 2594891201092385296 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u7FC5\u8702" + rect: + serializedVersion: 2 + x: 2432 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d13895bc05ebb0080800000000000000 + internalID: -9220066557892656355 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u8272\u94DC\u7403" + rect: + serializedVersion: 2 + x: 2464 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5687b22e1342e7d00800000000000000 + internalID: 972254366225102949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u8299\u84C9\u7F8A\u7ED2\u9760\u57AB" + rect: + serializedVersion: 2 + x: 2496 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0e12b97c858cc320800000000000000 + internalID: 2579583524960083469 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u82B1\u5760\u6D6E\u706F" + rect: + serializedVersion: 2 + x: 2528 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6b62405d2dcff660800000000000000 + internalID: 7421876305433619309 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u8475\u94F6\u4E1D\u74F6" + rect: + serializedVersion: 2 + x: 2560 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ede5a6f48650f1710800000000000000 + internalID: 1666056332717481694 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u864E\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 2592 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 533fb3b9d5bfe1020800000000000000 + internalID: 2314563637969941301 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u864E\u5323" + rect: + serializedVersion: 2 + x: 2624 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 434c432a1c2c5fdf0800000000000000 + internalID: -146997275913829324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u86C7\u7EB3\u798F" + rect: + serializedVersion: 2 + x: 2656 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd39ee65bd17e45c0800000000000000 + internalID: -4229317813184064547 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u86C7\u80C6" + rect: + serializedVersion: 2 + x: 2688 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ce04fb03bb929a5c0800000000000000 + internalID: -4203782893220183828 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u86CB" + rect: + serializedVersion: 2 + x: 2720 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d76ad9046f4da9940800000000000000 + internalID: 5303785665293297277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u8C79" + rect: + serializedVersion: 2 + x: 2752 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb3a04fd1b172bc80800000000000000 + internalID: -8308453353776438338 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u8D28\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 2784 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09252d6f387a8f510800000000000000 + internalID: 1583199454244262544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u8D28\u53D1\u7968" + rect: + serializedVersion: 2 + x: 2816 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1932193a7cab44530800000000000000 + internalID: 3838398149031961489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u8D28\u5956\u7AE0" + rect: + serializedVersion: 2 + x: 2848 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c0004d744fd5a900800000000000000 + internalID: 695207202750726340 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u8D28\u6210\u5C31\u5FBD\u7AE0\xB7\u4ED9\u5E7B\u5929" + rect: + serializedVersion: 2 + x: 2880 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6beec808b774ea40800000000000000 + internalID: 5396569885802163054 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u8D28\u8FD4\u5238" + rect: + serializedVersion: 2 + x: 2912 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4f0549ccd5a6fa60800000000000000 + internalID: 7707530179979317071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u8D28\u9996\u9970\u76D2" + rect: + serializedVersion: 2 + x: 2944 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: feedf89c19b8a72e0800000000000000 + internalID: -2127234415710970129 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u8D28\u9AD8\u7EA7\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 2976 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ad2d7000fb243440800000000000000 + internalID: 4914601403168402850 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u8FB9\u6728\u76D2" + rect: + serializedVersion: 2 + x: 3008 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff36be6bef310a1b0800000000000000 + internalID: -5647491948011101185 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u949F\u7F69" + rect: + serializedVersion: 2 + x: 3040 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fa675fd88e824de60800000000000000 + internalID: 7986053018513929903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u94F6\u82B1" + rect: + serializedVersion: 2 + x: 3072 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d5f004414af3be20800000000000000 + internalID: 3365308504796624340 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u94F6\u94DC\u94C1\u6212\u630712" + rect: + serializedVersion: 2 + x: 3104 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bfb71f29d99e090e0800000000000000 + internalID: -2265053749582922757 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u94F6\u94DC\u94C1\u6212\u630713" + rect: + serializedVersion: 2 + x: 3136 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e78c9180616a04590800000000000000 + internalID: -7691965549993408386 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u952D" + rect: + serializedVersion: 2 + x: 3168 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67ac5070d5b5e6470800000000000000 + internalID: 8389743610945718902 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u96F7\u4E4B\u529B" + rect: + serializedVersion: 2 + x: 3200 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ea2583d5a146fbf0800000000000000 + internalID: -290972945444689182 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u96F7\u4E4B\u610F" + rect: + serializedVersion: 2 + x: 3232 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1824841a98b7f0e0800000000000000 + internalID: -2236115718057482214 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u96FE\u67AD\u5C06" + rect: + serializedVersion: 2 + x: 3264 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37c536f857601b320800000000000000 + internalID: 2571843964191857779 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9879\u5708" + rect: + serializedVersion: 2 + x: 3296 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74aca22cc0d8e1d40800000000000000 + internalID: 5557034076158478919 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9B44\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3328 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7cf0a61dca488e130800000000000000 + internalID: 3596270180237971399 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9C7C" + rect: + serializedVersion: 2 + x: 3360 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 006c5b43698784ee0800000000000000 + internalID: -1276637907834780160 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9C7C1" + rect: + serializedVersion: 2 + x: 3392 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10687621445313290800000000000000 + internalID: -7912484503830428159 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9C7C2\u5C0F" + rect: + serializedVersion: 2 + x: 3424 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9367a597e382e210800000000000000 + internalID: 1360795068090770335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9C7Camd" + rect: + serializedVersion: 2 + x: 3456 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4389ca686ea01ce20800000000000000 + internalID: 3368985981468055604 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9C7C\u88C5\u5973\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3488 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57d8d1cdc72e07490800000000000000 + internalID: -7750445932807877259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9C7C\u88C5\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 3520 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd89dc01a42036db0800000000000000 + internalID: -4799990260714071844 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9C7C\u88C5\u5973\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3552 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 732fe88501e85cca0800000000000000 + internalID: -5997231127917563337 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9C7C\u88C5\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3584 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d23ab85a4a2631260800000000000000 + internalID: 7067100699565990701 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9CDE" + rect: + serializedVersion: 2 + x: 3616 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da37156fd482b14e0800000000000000 + internalID: -2009968493380668499 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u91D1\u9EC4\u8272\u7684\u80E1\u987B" + rect: + serializedVersion: 2 + x: 3648 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0107a84c77a2ff070800000000000000 + internalID: 8142273345196027920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u938F\u91D1\u8299\u84C9\u5F69\u86CB" + rect: + serializedVersion: 2 + x: 3680 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 683aa3a2014371e10800000000000000 + internalID: 2168258989634790278 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u938F\u91D1\u94DC\u53F6\u897F\u6D0B\u949F" + rect: + serializedVersion: 2 + x: 3712 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d2d24459a562b500800000000000000 + internalID: 410502293981680341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u93CA\u99A8\u77F3\u4E7E" + rect: + serializedVersion: 2 + x: 3744 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f65fa421bd11c4c50800000000000000 + internalID: 6650710382321792367 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u93CA\u99A8\u77F3\u4E98\u4E45" + rect: + serializedVersion: 2 + x: 3776 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0d233b3e62871780800000000000000 + internalID: -8712351544173712115 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u93CA\u99A8\u77F3\u5151" + rect: + serializedVersion: 2 + x: 3808 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7cf8cd6c4c82a4cd0800000000000000 + internalID: -2573199411473772601 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u93CA\u99A8\u77F3\u574E" + rect: + serializedVersion: 2 + x: 3840 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 233298e732dba06b0800000000000000 + internalID: -5329239248895139022 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u93CA\u99A8\u77F3\u5764" + rect: + serializedVersion: 2 + x: 3872 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0cad00b8486e43dc0800000000000000 + internalID: -3660047140203210048 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u93CA\u99A8\u77F3\u5DFD" + rect: + serializedVersion: 2 + x: 3904 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6564e47668a511ef0800000000000000 + internalID: -139230580166474154 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u93CA\u99A8\u77F3\u65E0\u5E38" + rect: + serializedVersion: 2 + x: 3936 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9a1447c3b62d76e0800000000000000 + internalID: -1838270519313163620 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u93CA\u99A8\u77F3\u79BB" + rect: + serializedVersion: 2 + x: 3968 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9dc2fa5aa66182750800000000000000 + internalID: 6280294327670222041 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u93CA\u99A8\u77F3\u826E" + rect: + serializedVersion: 2 + x: 4000 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b755baf04f6712ac0800000000000000 + internalID: -3881690613209672325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u93CA\u99A8\u77F3\u9707" + rect: + serializedVersion: 2 + x: 4032 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a3a40e1b3d1618130800000000000000 + internalID: 3567239941704403514 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9488\u5C3E\u6C99\u9525\u7684\u5375" + rect: + serializedVersion: 2 + x: 4064 + y: 2176 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0489b0e8c42b9fd00800000000000000 + internalID: 1007032033564399680 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9489\u8019" + rect: + serializedVersion: 2 + x: 0 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c4169a8d1b852d10800000000000000 + internalID: 2100237760233608393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9497\u5315\u9996" + rect: + serializedVersion: 2 + x: 32 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 795e9ffa24dbdbdf0800000000000000 + internalID: -162765917397588585 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u949D\u722A" + rect: + serializedVersion: 2 + x: 64 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29676e9a27dc56ef0800000000000000 + internalID: -115460323067660654 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94A2\u5200" + rect: + serializedVersion: 2 + x: 96 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e043f3cbc3c8ecf0800000000000000 + internalID: -222712901621563165 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94A2\u722A" + rect: + serializedVersion: 2 + x: 128 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5903b197b5caad230800000000000000 + internalID: 3664430755693146261 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94A5\u73E0" + rect: + serializedVersion: 2 + x: 160 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bacc7c7c206e536c0800000000000000 + internalID: -4164169380818072405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94B1\u5806" + rect: + serializedVersion: 2 + x: 192 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb971acfadafd7690800000000000000 + internalID: -7602644777483273797 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94B1\u5E84\u901A\u79681" + rect: + serializedVersion: 2 + x: 224 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fed74119dfd41c8c0800000000000000 + internalID: -3980814844162703889 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94B1\u5E84\u901A\u79682" + rect: + serializedVersion: 2 + x: 256 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae265a3ea79200a20800000000000000 + internalID: 3026464557374989034 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94B1\u5E84\u901A\u79683" + rect: + serializedVersion: 2 + x: 288 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d9a867326f0592a0800000000000000 + internalID: -6731457153524520487 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94B1\u5E84\u901A\u79684" + rect: + serializedVersion: 2 + x: 320 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 201a977d49f0a6e70800000000000000 + internalID: 9109110328254898434 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94B1\u5E84\u901A\u79685" + rect: + serializedVersion: 2 + x: 352 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3462249b794ae4d0800000000000000 + internalID: -3104588198003448770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BA\u5200" + rect: + serializedVersion: 2 + x: 384 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d343634a4403ab90800000000000000 + internalID: -7231931859622214696 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u6746\u866B" + rect: + serializedVersion: 2 + x: 416 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ad9f109368b160c0800000000000000 + internalID: -4584180207927190105 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u6746\u866B2" + rect: + serializedVersion: 2 + x: 448 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d815a896cde2ecb90800000000000000 + internalID: -7219781628429971059 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u77F3\u5973\u738B\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 480 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97f12e44ccc4c6310800000000000000 + internalID: 1399578024418090873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u77F3\u5973\u738B\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 512 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 503158a79bab68360800000000000000 + internalID: 7171624762421351173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u77F3\u5973\u738B\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 544 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b87cc06d742e42720800000000000000 + internalID: 2820628064802490251 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u77F3\u5973\u738B\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 576 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5496f28818a5553e0800000000000000 + internalID: -2065645341697414843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u77F3\u5973\u840C\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 608 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0c0e13632a368e30800000000000000 + internalID: 4505352400891939850 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u77F3\u5973\u840C\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 640 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1b11394c26e92af0800000000000000 + internalID: -420552012301526244 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u77F3\u5973\u840C\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 672 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36fef5ce7af9e3970800000000000000 + internalID: 8736595870719405923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u77F3\u5973\u840C\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 704 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d80c8e99e82226350800000000000000 + internalID: 6008402848728531085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u77F3\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 736 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a61366263a0e62390800000000000000 + internalID: -7843334708683984534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u77F3\u6212" + rect: + serializedVersion: 2 + x: 768 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8dece355da5f1c810800000000000000 + internalID: 1783977052223753944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u77F3\u62FC\u56FE" + rect: + serializedVersion: 2 + x: 800 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a73a6d969c6bd600800000000000000 + internalID: 494107978269079456 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u77F3\u94C2\u91D1\u6212\u6307\uFF08\u5973\uFF09" + rect: + serializedVersion: 2 + x: 832 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edfa4777473918b50800000000000000 + internalID: 6593713457876742110 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u77F3\u94C2\u91D1\u6212\u6307\uFF08\u7537\uFF09" + rect: + serializedVersion: 2 + x: 864 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e355c849a81aa8e0800000000000000 + internalID: -1681504395520027673 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94BB\u79C6\u866B" + rect: + serializedVersion: 2 + x: 896 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5886dcfc6e6ec7f50800000000000000 + internalID: 6880628209718487173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u4E1D\u7F51" + rect: + serializedVersion: 2 + x: 928 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10abe66e5055e0390800000000000000 + internalID: -7850243616630982143 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u5320\u5927\u5E08\u4E4B\u5323\u5C0F" + rect: + serializedVersion: 2 + x: 960 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd6ac099182062520800000000000000 + internalID: 2676829784160118492 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u5320\u7CBE\u901A" + rect: + serializedVersion: 2 + x: 992 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4754fa34a0400fd00800000000000000 + internalID: 1004307159035364724 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u62F3\u5957" + rect: + serializedVersion: 2 + x: 1024 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f38ae2b40d19e0ec0800000000000000 + internalID: -3598778728421873601 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u6761" + rect: + serializedVersion: 2 + x: 1056 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52845ec8924a1e040800000000000000 + internalID: 4675198386551736357 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u6876" + rect: + serializedVersion: 2 + x: 1088 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 332525d8c2227f600800000000000000 + internalID: 501907458219987507 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E00\u7B49\u4F2F\u7235" + rect: + serializedVersion: 2 + x: 1120 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b0ae81484bc23f30800000000000000 + internalID: 4553925684422942905 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E00\u7B49\u4FAF\u7235" + rect: + serializedVersion: 2 + x: 1152 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81e40ca3a38537490800000000000000 + internalID: -7749753526657462760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E00\u7B49\u516C\u7235" + rect: + serializedVersion: 2 + x: 1184 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d3d390c5f353a6b20800000000000000 + internalID: 3128371437405551933 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E00\u7B49\u5B50\u7235" + rect: + serializedVersion: 2 + x: 1216 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32f9781c13a6dc3d0800000000000000 + internalID: -3184772599548240093 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E00\u7B49\u7537\u7235" + rect: + serializedVersion: 2 + x: 1248 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b74bdcbc32db5cc90800000000000000 + internalID: -7150100871940033413 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E09\u7B49\u4F2F\u7235" + rect: + serializedVersion: 2 + x: 1280 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87eeb300ac694ab90800000000000000 + internalID: -7231489307318686088 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E09\u7B49\u4FAF\u7235" + rect: + serializedVersion: 2 + x: 1312 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c19704e940a063870800000000000000 + internalID: 8662121948244900124 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E09\u7B49\u516C\u7235" + rect: + serializedVersion: 2 + x: 1344 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4ec3ba474d3a30f0800000000000000 + internalID: -1136528579552358833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E09\u7B49\u5B50\u7235" + rect: + serializedVersion: 2 + x: 1376 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ceb88e32c4d1f960800000000000000 + internalID: 7634116774107594437 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E09\u7B49\u7537\u7235" + rect: + serializedVersion: 2 + x: 1408 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3bc09483657027e50800000000000000 + internalID: 6805510053803134131 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E8C\u7B49\u4F2F\u7235" + rect: + serializedVersion: 2 + x: 1440 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32494ab33ff85aa90800000000000000 + internalID: -7303272945870924765 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E8C\u7B49\u4FAF\u7235" + rect: + serializedVersion: 2 + x: 1472 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78dc90bea0d6bd490800000000000000 + internalID: -7720457242536194681 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E8C\u7B49\u516C\u7235" + rect: + serializedVersion: 2 + x: 1504 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f9451673e5494fd90800000000000000 + internalID: -7064858783060503393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E8C\u7B49\u5B50\u7235" + rect: + serializedVersion: 2 + x: 1536 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 528333f0a2b171cc0800000000000000 + internalID: -3740491098050316251 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u724C\u4E8C\u7B49\u7537\u7235" + rect: + serializedVersion: 2 + x: 1568 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8205c94f069984710800000000000000 + internalID: 1677759502895304744 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u7599\u7629" + rect: + serializedVersion: 2 + x: 1600 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71ae803e70bfd8960800000000000000 + internalID: 7606011356990990871 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u77E2" + rect: + serializedVersion: 2 + x: 1632 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a95c5682083ebf560800000000000000 + internalID: 7348717356558173594 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u77FF" + rect: + serializedVersion: 2 + x: 1664 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a7d7fad7f9b3bde0800000000000000 + internalID: -1318505791707687004 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u7802\u5F39" + rect: + serializedVersion: 2 + x: 1696 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3e3faa595dac3ac0800000000000000 + internalID: -3874030980160340420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u80CE\u5F13" + rect: + serializedVersion: 2 + x: 1728 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55db0ea7ddec1d380800000000000000 + internalID: -8948143533963821739 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u810A\u52512012" + rect: + serializedVersion: 2 + x: 1760 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0325ac9fcb90adf50800000000000000 + internalID: 6906843685775364656 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u864E\u5323" + rect: + serializedVersion: 2 + x: 1792 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e490365bbedd7a960800000000000000 + internalID: 7613297699523332430 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u8D28\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 1824 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 166f3dd3d4906a290800000000000000 + internalID: -7879600270683670943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u8D28\u53D1\u7968" + rect: + serializedVersion: 2 + x: 1856 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6112342fcffe50d0800000000000000 + internalID: -3432024600879165074 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u8D28\u82B1\u7BEE\u5DE5\u827A\u949F" + rect: + serializedVersion: 2 + x: 1888 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d738fb8d07ae2f0c0800000000000000 + internalID: -4543311303669742723 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u8D28\u8FD4\u5238" + rect: + serializedVersion: 2 + x: 1920 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f7c9c6a35edb5150800000000000000 + internalID: 5862523790814726129 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u8D28\u9AD8\u7EA7\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 1952 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e509d9fe0b01f0050800000000000000 + internalID: 5768847999805263966 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u94F3" + rect: + serializedVersion: 2 + x: 1984 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f132e1af00fc2100800000000000000 + internalID: 84706442944328181 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u9524" + rect: + serializedVersion: 2 + x: 2016 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1852d99550d090660800000000000000 + internalID: 7352422183288513921 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u9539" + rect: + serializedVersion: 2 + x: 2048 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5166fca18a3f90640800000000000000 + internalID: 5046832760775206421 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C1\u9774\u523A" + rect: + serializedVersion: 2 + x: 2080 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fadab3385bf3b9be0800000000000000 + internalID: -1469510804582978129 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C2\u91D1\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 2112 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 97bffbefaa73329e0800000000000000 + internalID: -1647411831129506951 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C3\u513F\u624B\u956F" + rect: + serializedVersion: 2 + x: 2144 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: faa6901612e1a54f0800000000000000 + internalID: -839325251840415057 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C3\u5170" + rect: + serializedVersion: 2 + x: 2176 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0ebdf46fc9dce850800000000000000 + internalID: 6407735854617181709 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C3\u51701" + rect: + serializedVersion: 2 + x: 2208 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ca28c56e31284740800000000000000 + internalID: 5136391926895356609 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C3\u94DB\u513F" + rect: + serializedVersion: 2 + x: 2240 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b24f31a84eb9ac80800000000000000 + internalID: -8310902418183339342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94C5\u9730\u5F39" + rect: + serializedVersion: 2 + x: 2272 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff83ed137ef2da3e0800000000000000 + internalID: -2040922386108368641 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u5E01" + rect: + serializedVersion: 2 + x: 2304 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bcd4a1e6a43f5fff0800000000000000 + internalID: -2828723743470133 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u62F3\u5957" + rect: + serializedVersion: 2 + x: 2336 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56de55836c7b7f2b0800000000000000 + internalID: -5550765953734283931 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E00\u7B49\u4F2F\u7235" + rect: + serializedVersion: 2 + x: 2368 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff9f6411da1bdcdf0800000000000000 + internalID: -158275055010776577 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E00\u7B49\u4FAF\u7235" + rect: + serializedVersion: 2 + x: 2400 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6599de49de8516c90800000000000000 + internalID: -7178358553622767274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E00\u7B49\u516C\u7235" + rect: + serializedVersion: 2 + x: 2432 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cdcaaa88760405400800000000000000 + internalID: 310819187707260124 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E00\u7B49\u5B50\u7235" + rect: + serializedVersion: 2 + x: 2464 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b38db281d2db9cc0800000000000000 + internalID: -3703134471298645070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E00\u7B49\u7537\u7235" + rect: + serializedVersion: 2 + x: 2496 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94eb23c44ba678040800000000000000 + internalID: 4649802462888377929 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E09\u7B49\u4F2F\u7235" + rect: + serializedVersion: 2 + x: 2528 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8913d6f00fa855c90800000000000000 + internalID: -7181681267116789352 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E09\u7B49\u4FAF\u7235" + rect: + serializedVersion: 2 + x: 2560 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 819bf6a9c467b5d40800000000000000 + internalID: 5574179035181725976 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E09\u7B49\u516C\u7235" + rect: + serializedVersion: 2 + x: 2592 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02e3630a2390803f0800000000000000 + internalID: -934486809638453728 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E09\u7B49\u5B50\u7235" + rect: + serializedVersion: 2 + x: 2624 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1fa1e166109083410800000000000000 + internalID: 1456924381067221745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E09\u7B49\u7537\u7235" + rect: + serializedVersion: 2 + x: 2656 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 541814c28be93a410800000000000000 + internalID: 1487206815816057157 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E8C\u7B49\u4F2F\u7235" + rect: + serializedVersion: 2 + x: 2688 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1111e1358740ff6f0800000000000000 + internalID: -648794906480996079 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E8C\u7B49\u4FAF\u7235" + rect: + serializedVersion: 2 + x: 2720 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d45614bd09ee3d30800000000000000 + internalID: 4413220929934873813 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E8C\u7B49\u516C\u7235" + rect: + serializedVersion: 2 + x: 2752 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4aaabfa1b9971f800800000000000000 + internalID: 644429928770284196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E8C\u7B49\u5B50\u7235" + rect: + serializedVersion: 2 + x: 2784 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f147ccbbd5c9ffda0800000000000000 + internalID: -5908832259690171361 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u724C\u4E8C\u7B49\u7537\u7235" + rect: + serializedVersion: 2 + x: 2816 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c35668b7591b3f930800000000000000 + internalID: 4175876535083230524 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u76D4" + rect: + serializedVersion: 2 + x: 2848 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a837bc9ee43767f20800000000000000 + internalID: 3420047749801538442 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u864E\u5323" + rect: + serializedVersion: 2 + x: 2880 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9a7fd05768faceaf0800000000000000 + internalID: -365724477699524695 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u8D28\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 2912 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1883780fac4c75480800000000000000 + internalID: -8910436961831405439 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u8D28\u53D1\u7968" + rect: + serializedVersion: 2 + x: 2944 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e1c2668ee3012f00800000000000000 + internalID: 1090156907792089575 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u8D28\u5956\u7AE0" + rect: + serializedVersion: 2 + x: 2976 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b71e80574757b4770800000000000000 + internalID: 8596093456806895995 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u8D28\u6210\u5C31\u5FBD\u7AE0\xB7\u4ED9\u5E7B\u5929" + rect: + serializedVersion: 2 + x: 3008 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca552d7abc71931f0800000000000000 + internalID: -1064793673435032148 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u8D28\u767E\u7075\u7B3C" + rect: + serializedVersion: 2 + x: 3040 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8784653dedcb03430800000000000000 + internalID: 3760713354068772984 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u8D28\u8FD4\u5238" + rect: + serializedVersion: 2 + x: 3072 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd39409f9b726c990800000000000000 + internalID: -7366156460817607716 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u8D28\u9AD8\u7EA7\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 3104 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2beaa2ffb9583d5b0800000000000000 + internalID: -5344781427711234382 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u938F\u91D1\u4F5B" + rect: + serializedVersion: 2 + x: 3136 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 365fb109522c211f0800000000000000 + internalID: -1075583894400797341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u94B1" + rect: + serializedVersion: 2 + x: 3168 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b0b37b811bcf5ca0800000000000000 + internalID: -6025874500183936843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u94BA" + rect: + serializedVersion: 2 + x: 3200 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a0d5fb349fbf09b0800000000000000 + internalID: -5111656408660193113 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u94C3\u4E03\u5B9D\u9F0E\u7089" + rect: + serializedVersion: 2 + x: 3232 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3678444349eda6ba0800000000000000 + internalID: -6094814417579112605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u9547\u7EB82012" + rect: + serializedVersion: 2 + x: 3264 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6138860c974344590800000000000000 + internalID: -7690964566118202602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u9774\u523A" + rect: + serializedVersion: 2 + x: 3296 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52e9a40cf53897350800000000000000 + internalID: 6014983224601255461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94DC\u9879\u5708" + rect: + serializedVersion: 2 + x: 3328 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e9a855bbcc300b50800000000000000 + internalID: 6557307903069956578 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u4E1D\u8C61\u7259\u7B14" + rect: + serializedVersion: 2 + x: 3360 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c63b21df0dc5b9620800000000000000 + internalID: 2781919247500227436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u5236\u8033\u73AF" + rect: + serializedVersion: 2 + x: 3392 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be0c425664e671970800000000000000 + internalID: 8725564051677298923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u5E01" + rect: + serializedVersion: 2 + x: 3424 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eca465101a67ce390800000000000000 + internalID: -7787719221746185522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u674F\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 3456 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ee2722c2f0018ea10800000000000000 + internalID: 1938817296934007534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E00\u7B49\u4F2F\u7235" + rect: + serializedVersion: 2 + x: 3488 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04fdd69c2d1ed1020800000000000000 + internalID: 2314254078977105728 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E00\u7B49\u4FAF\u7235" + rect: + serializedVersion: 2 + x: 3520 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59f3f5a5cfe5c7710800000000000000 + internalID: 1692331997925425045 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E00\u7B49\u516C\u7235" + rect: + serializedVersion: 2 + x: 3552 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f684d300aa451ee0800000000000000 + internalID: -1291043667052296457 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E00\u7B49\u5B50\u7235" + rect: + serializedVersion: 2 + x: 3584 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f1ee269668214920800000000000000 + internalID: 2972701650112668149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E00\u7B49\u7537\u7235" + rect: + serializedVersion: 2 + x: 3616 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df8df16086a63d2f0800000000000000 + internalID: -949298101433149187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E09\u7B49\u4F2F\u7235" + rect: + serializedVersion: 2 + x: 3648 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a878fb6ad95184580800000000000000 + internalID: -8842794101490350198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E09\u7B49\u4FAF\u7235" + rect: + serializedVersion: 2 + x: 3680 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 786a45230a1907330800000000000000 + internalID: 3706622610551121543 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E09\u7B49\u516C\u7235" + rect: + serializedVersion: 2 + x: 3712 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e1ac6a497f81c7d0800000000000000 + internalID: -2899878933947440668 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E09\u7B49\u5B50\u7235" + rect: + serializedVersion: 2 + x: 3744 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c6e48fc272bd7ca10800000000000000 + internalID: 1929751926656224876 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E09\u7B49\u7537\u7235" + rect: + serializedVersion: 2 + x: 3776 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3c87b8f1fa79f1a0800000000000000 + internalID: -6775248984723715010 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E8C\u7B49\u4F2F\u7235" + rect: + serializedVersion: 2 + x: 3808 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6beff029a0d733e80800000000000000 + internalID: -8200073012157874506 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E8C\u7B49\u4FAF\u7235" + rect: + serializedVersion: 2 + x: 3840 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eff82ffc3411f54e0800000000000000 + internalID: -1990853527325208578 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E8C\u7B49\u516C\u7235" + rect: + serializedVersion: 2 + x: 3872 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3ce1c1d88115bfb0800000000000000 + internalID: -4632777362348315586 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E8C\u7B49\u5B50\u7235" + rect: + serializedVersion: 2 + x: 3904 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: afe0d29c8b2b1d780800000000000000 + internalID: -8659944101737853190 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u724C\u4E8C\u7B49\u7537\u7235" + rect: + serializedVersion: 2 + x: 3936 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2efe8f51ed8e3a5e0800000000000000 + internalID: -1899418577271197726 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u7261\u4E39\u7F8A\u7ED2\u9760\u57AB" + rect: + serializedVersion: 2 + x: 3968 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56d1ea23e1bc20e50800000000000000 + internalID: 6774200120078376293 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u72D0\u5C3E" + rect: + serializedVersion: 2 + x: 4000 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c95d62f1c52b356e0800000000000000 + internalID: -1849938913189767780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u7FFC\u4E4B\u5F13" + rect: + serializedVersion: 2 + x: 4032 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e557409c759b5320800000000000000 + internalID: 2547794376437224935 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u7FFC\u72D0" + rect: + serializedVersion: 2 + x: 4064 + y: 2144 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8e3eae6bffffbe6c0800000000000000 + internalID: -4112912360922225688 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u8272\u4E4B\u604B\u957F\u88D9" + rect: + serializedVersion: 2 + x: 0 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9fa71ae970fc0a840800000000000000 + internalID: 5233410398637619961 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u8272\u4E4B\u604B\u978B\u5B50" + rect: + serializedVersion: 2 + x: 32 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d52b8b93fdf0f6370800000000000000 + internalID: 8317884488197124701 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u864E\u5323" + rect: + serializedVersion: 2 + x: 64 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94a6cfe05131791c0800000000000000 + internalID: -4497104721739486647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u88C5\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 96 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ceb1085ab81ed9f10800000000000000 + internalID: 2278224976412679148 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u88C5\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 128 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4047f6a6322ecd4b0800000000000000 + internalID: -5414204010268756988 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u88C5\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 160 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6df6cd6245b225df0800000000000000 + internalID: -193044193594282026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u88C5\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 192 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45143bf10fc4ecb50800000000000000 + internalID: 6615309496861540692 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u88C5\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 224 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e67c999265eb029b0800000000000000 + internalID: -5106872700163733650 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u8D28\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 256 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: abb3ad43ed3491680800000000000000 + internalID: -8783914976560923718 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u8D28\u53D1\u7968" + rect: + serializedVersion: 2 + x: 288 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 33a0181b750dd74b0800000000000000 + internalID: -5440963699734934989 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u8D28\u5956\u7AE0" + rect: + serializedVersion: 2 + x: 320 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 53537f1eae35bf980800000000000000 + internalID: -8504111203080522443 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u8D28\u6210\u5C31\u5FBD\u7AE0\xB7\u4ED9\u5E7B\u5929" + rect: + serializedVersion: 2 + x: 352 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c69603eff6d5ba070800000000000000 + internalID: 8118685488852789612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u8D28\u8FD4\u5238" + rect: + serializedVersion: 2 + x: 384 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 54f187cb04f18e290800000000000000 + internalID: -7860998786674843835 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u8D28\u9AD8\u7EA7\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 416 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7fb90da8692ba760800000000000000 + internalID: 7470109936480534399 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u94A9" + rect: + serializedVersion: 2 + x: 448 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99ffb6da04de77710800000000000000 + internalID: 1691081047144136601 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u9774\u523A" + rect: + serializedVersion: 2 + x: 480 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9055eb6c086b0e490800000000000000 + internalID: -7718969097106598647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F6\u9879\u5708" + rect: + serializedVersion: 2 + x: 512 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e33c118de486f5ff0800000000000000 + internalID: -45202783408635074 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u5F29\u673A" + rect: + serializedVersion: 2 + x: 544 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03cd1816d3417ca70800000000000000 + internalID: 8847062246854089776 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u5F3A\u529B\u673A\u7C27" + rect: + serializedVersion: 2 + x: 576 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ab3678c0cfeb0520800000000000000 + internalID: 2669490815423101861 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 608 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5ff9f2d05a6dfda0800000000000000 + internalID: -5909450240670695587 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u62A4\u8EAB\u9501" + rect: + serializedVersion: 2 + x: 640 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16a65f87e492fa6f0800000000000000 + internalID: -671272402441377183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u68CD\u68D2\u62A4\u624B" + rect: + serializedVersion: 2 + x: 672 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ab5a000e2a4d63630800000000000000 + internalID: 3906543522798413242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u77DB\u67C4" + rect: + serializedVersion: 2 + x: 704 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a36ed5ff9a58a8bd0800000000000000 + internalID: -2627140467436952006 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u77ED\u5203\u67C4" + rect: + serializedVersion: 2 + x: 736 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c316670bf3537230800000000000000 + internalID: 3635341661844149193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u80A1\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 768 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cf4e4ecbddd99e040800000000000000 + internalID: 4677443263683421436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u80A9\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 800 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57ae9aa4e637266b0800000000000000 + internalID: -5304550493552776587 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u8155\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 832 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0d149151c8f6c380800000000000000 + internalID: -8951193700171244273 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u836F\u5BA4" + rect: + serializedVersion: 2 + x: 864 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25a2bed1cfbd7f000800000000000000 + internalID: 69766195127724626 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u88F9\u8FB9\u7BB1" + rect: + serializedVersion: 2 + x: 896 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a1734636bad82200800000000000000 + internalID: 155614663273574817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u8E1D\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 928 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cbadbed54f79bd080800000000000000 + internalID: -9161561941151589700 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u957F\u5200\u5200\u683C" + rect: + serializedVersion: 2 + x: 960 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8fcc28ce5f19ff1b0800000000000000 + internalID: -5620613324514079496 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u957F\u6746\u63A5\u69AB" + rect: + serializedVersion: 2 + x: 992 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc27e1b006e7fcbd0800000000000000 + internalID: -2607726708255722803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u94C1\u9762\u7F69\u5408\u9875" + rect: + serializedVersion: 2 + x: 1024 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d64fc0a4fa487560800000000000000 + internalID: 7311676409566414546 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u94F8\u9B42\u949B\u6676" + rect: + serializedVersion: 2 + x: 1056 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61fed5f0724790610800000000000000 + internalID: 1587928054735171350 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9501\u5B50\u80F8\u7532" + rect: + serializedVersion: 2 + x: 1088 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 708239b789b18e330800000000000000 + internalID: 3740269832253417479 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9501\u5B50\u817F\u7532" + rect: + serializedVersion: 2 + x: 1120 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5917b23232d3013b0800000000000000 + internalID: -5543863920169881195 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9501\u5B50\u8896\u7532" + rect: + serializedVersion: 2 + x: 1152 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37ef53aa766c23900800000000000000 + internalID: 662810243716480627 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9501\u5B50\u9774" + rect: + serializedVersion: 2 + x: 1184 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a90e1f80bdaa4f790800000000000000 + internalID: -7497179621940404070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u950B\u5229\u7684\u722A\u5B50" + rect: + serializedVersion: 2 + x: 1216 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e260f751e7b29600800000000000000 + internalID: 473643089298219749 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9510\u5229\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1248 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45c9b7942b5f87a40800000000000000 + internalID: 5366309102097767508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u951F\u94FB\u4E4B\u52031" + rect: + serializedVersion: 2 + x: 1280 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70d1e835848f5acf0800000000000000 + internalID: -241514015471297273 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u951F\u94FB\u4E4B\u52032" + rect: + serializedVersion: 2 + x: 1312 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a464fcb2e13adc20800000000000000 + internalID: 3231950532494255266 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u951F\u94FB\u4E4B\u5203\u7070" + rect: + serializedVersion: 2 + x: 1344 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8271446e7c551630800000000000000 + internalID: 3897122750476677770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u951F\u94FB\u4E4B\u5203\u84DD" + rect: + serializedVersion: 2 + x: 1376 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9ae4ec4be914656f0800000000000000 + internalID: -696296942488105303 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u951F\u94FB\u4E4B\u5203\u91D1" + rect: + serializedVersion: 2 + x: 1408 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbc20a7ee1ea73d40800000000000000 + internalID: 5564107312397823165 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9521\u864E\u5323" + rect: + serializedVersion: 2 + x: 1440 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d135a1253b4311c70800000000000000 + internalID: 8939984680088392477 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9521\u9152\u58F6" + rect: + serializedVersion: 2 + x: 1472 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6350b2ba0fabd3800800000000000000 + internalID: 593836268709414198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9526\u4E0A\u6DFB\u82B1" + rect: + serializedVersion: 2 + x: 1504 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b154364d3306d0b0800000000000000 + internalID: -5704368316312432203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9526\u56CA" + rect: + serializedVersion: 2 + x: 1536 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c0b2984142c42980800000000000000 + internalID: -8564507005705604925 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9526\u56CA\u5999\u8BA1" + rect: + serializedVersion: 2 + x: 1568 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88650ea4e084493f0800000000000000 + internalID: -895011199716927864 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9526\u7EE3\u7261\u4E39\u74F7\u676F" + rect: + serializedVersion: 2 + x: 1600 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0ed081a02ebd2ace0800000000000000 + internalID: -1395311170652992032 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9526\u7EE3\u7FA4\u82B3\u679C\u7BEE" + rect: + serializedVersion: 2 + x: 1632 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5f5c970dee841ba70800000000000000 + internalID: 8840927734042052085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9526\u7EE3\u96D5\u82B1\u95E8" + rect: + serializedVersion: 2 + x: 1664 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60f0535e023896ec0800000000000000 + internalID: -3573180652034126074 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9526\u7F0E\u62A4\u8155\u7EE3\u9762" + rect: + serializedVersion: 2 + x: 1696 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d08d80c28b868610800000000000000 + internalID: 1623138109406150865 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9526\u7F0E\u6CD5\u672F\u978B\u5E95" + rect: + serializedVersion: 2 + x: 1728 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7ef3774403bfc3da0800000000000000 + internalID: -5963615621819711513 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9526\u7F0E\u6CD5\u888D\u8863\u895F" + rect: + serializedVersion: 2 + x: 1760 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e42a8e014cb1f030800000000000000 + internalID: 3526806970810639586 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9526\u7F0E\u6CD5\u88E4\u4E0B\u6446" + rect: + serializedVersion: 2 + x: 1792 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd273cbee66d344c0800000000000000 + internalID: -4304361046945860901 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9526\u7F0E\u7075\u529B\u5E61\u7EE6" + rect: + serializedVersion: 2 + x: 1824 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7921c03d9ac31ae90800000000000000 + internalID: -7016260044378598761 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9526\u7F0E\u9999\u56CA" + rect: + serializedVersion: 2 + x: 1856 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3306da3deb622c780800000000000000 + internalID: -8664320132070416333 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9526\u953B\u62A4\u8155\u7EE3\u9762" + rect: + serializedVersion: 2 + x: 1888 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd9df8fc37bdf4fb0800000000000000 + internalID: -4661265798855140900 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9526\u96C0\u938F\u94F6\u6446\u4EF6" + rect: + serializedVersion: 2 + x: 1920 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74464fc794f826210800000000000000 + internalID: 1324778786192122951 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9542\u82B1\u73BB\u7483\u9152\u5177" + rect: + serializedVersion: 2 + x: 1952 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f5d38e2e43cf5bcb0800000000000000 + internalID: -4848692119719101089 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9547\u5143\u9524" + rect: + serializedVersion: 2 + x: 1984 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5cc8556d7c978db60800000000000000 + internalID: 7771095056229174469 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9547\u538B\u4E4B\u529B" + rect: + serializedVersion: 2 + x: 2016 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eae548ecde2f00470800000000000000 + internalID: 8358948011585593006 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9547\u6D77\u8170\u9970" + rect: + serializedVersion: 2 + x: 2048 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3da141830279227d0800000000000000 + internalID: -2944625041711293741 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9547\u9B3C\u7075\u7B26" + rect: + serializedVersion: 2 + x: 2080 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 82daebbdfbfeb68b0800000000000000 + internalID: -5157765340918272728 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9547\u9B42\u77ED\u6756" + rect: + serializedVersion: 2 + x: 2112 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0735d6d95d849710800000000000000 + internalID: 1699138376421422858 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u954C\u523B\u94ED\u6587" + rect: + serializedVersion: 2 + x: 2144 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 538a0f10337861cc0800000000000000 + internalID: -3740653787338987467 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u954F\u91D1\u9524" + rect: + serializedVersion: 2 + x: 2176 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8b93ba88a0030cf0800000000000000 + internalID: -287385227340047475 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9550\u5B50" + rect: + serializedVersion: 2 + x: 2208 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16b90ece3d59722c0800000000000000 + internalID: -4456428568815035551 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9556\u888B" + rect: + serializedVersion: 2 + x: 2240 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cfd12b15b353d5ff0800000000000000 + internalID: -45821892313866756 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u955C\u4E4B\u6CC9\u6C34" + rect: + serializedVersion: 2 + x: 2272 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2259da0b360c18c0800000000000000 + internalID: -4027337116121214421 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200100\u7EA7" + rect: + serializedVersion: 2 + x: 2304 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0cc7cc606136f00a0800000000000000 + internalID: -6913197956735927104 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u520016\u54C1" + rect: + serializedVersion: 2 + x: 2336 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1f04df18155ef6aa0800000000000000 + internalID: -6165457226610949903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u51C6\u9876\u7EA7" + rect: + serializedVersion: 2 + x: 2368 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2ca879e9815682e0800000000000000 + internalID: -2123920521489241041 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u521D\u59CB" + rect: + serializedVersion: 2 + x: 2400 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 79c006df24459e090800000000000000 + internalID: -8004774215978840937 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u52BF\u529B" + rect: + serializedVersion: 2 + x: 2432 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc444cc72eb31fa20800000000000000 + internalID: 3094320262922126541 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u65B016\u54C1" + rect: + serializedVersion: 2 + x: 2464 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc254502c45d0cc70800000000000000 + internalID: 8989419379168137932 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u65B0\u4E5D\u519B" + rect: + serializedVersion: 2 + x: 2496 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62c9f995bbed5ee40800000000000000 + internalID: 5685195000869002278 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u65B0\u516B\u519B" + rect: + serializedVersion: 2 + x: 2528 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f20b18fba40c8c230800000000000000 + internalID: 3659386124511588399 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u795E\u6708" + rect: + serializedVersion: 2 + x: 2560 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04578efcc907c6e60800000000000000 + internalID: 7956858460462150976 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u8FC7\u6E211" + rect: + serializedVersion: 2 + x: 2592 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6be2b93665525e410800000000000000 + internalID: 1505650703393828534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u8FC7\u6E212" + rect: + serializedVersion: 2 + x: 2624 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f5e01c2e7b76288a0800000000000000 + internalID: -6304362488884294049 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u8FC7\u6E213" + rect: + serializedVersion: 2 + x: 2656 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd1c73e4057f12e60800000000000000 + internalID: 7935895942685245915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u8FC7\u6E214" + rect: + serializedVersion: 2 + x: 2688 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2925abf8ba8287200800000000000000 + internalID: 177936902597005970 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u8FC7\u6E215" + rect: + serializedVersion: 2 + x: 2720 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6d4efea8c38441dd0800000000000000 + internalID: -2516306866927049514 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u8FC7\u6E216" + rect: + serializedVersion: 2 + x: 2752 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16b03828a1a1ba1f0800000000000000 + internalID: -1032702988390298783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u8FC7\u6E217" + rect: + serializedVersion: 2 + x: 2784 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 87a509d55fef43540800000000000000 + internalID: 4986891017196165752 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u8FC7\u6E218" + rect: + serializedVersion: 2 + x: 2816 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ef0ab0f29f803d5a0800000000000000 + internalID: -6497839971036323586 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9570\u5200\u9EC4\u660F" + rect: + serializedVersion: 2 + x: 2848 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94559ec71cb18fa70800000000000000 + internalID: 8860862784689755465 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9576\u78A7\u79C0\u7AF9" + rect: + serializedVersion: 2 + x: 2880 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78b08c6371e53fe80800000000000000 + internalID: -8146063847186756729 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9576\u8FB9\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 2912 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9307fd00dc2bc02b0800000000000000 + internalID: -5616918041685168071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u51FB\u5200" + rect: + serializedVersion: 2 + x: 2944 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bd51bb5d02e651070800000000000000 + internalID: 8076482594062669275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u5200\u7F8A" + rect: + serializedVersion: 2 + x: 2976 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7436064596e4306a0800000000000000 + internalID: -6484252824189246649 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u53F6\u7247" + rect: + serializedVersion: 2 + x: 3008 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 224e2328e3e323920800000000000000 + internalID: 2968503542583845922 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u5F13" + rect: + serializedVersion: 2 + x: 3040 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c2dbd50d9ee4c100800000000000000 + internalID: 127489047648785094 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u5F81\u76AE\u5E26\u6263" + rect: + serializedVersion: 2 + x: 3072 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c8b91cea54a76c10800000000000000 + internalID: 2046785266078300353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u65D7\u888D" + rect: + serializedVersion: 2 + x: 3104 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f32d58af4f7508770800000000000000 + internalID: 8610979197219099199 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u706B\u67AA" + rect: + serializedVersion: 2 + x: 3136 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e926b4320538c14d0800000000000000 + internalID: -3162508458108165474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u751F\u5305" + rect: + serializedVersion: 2 + x: 3168 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6f73f09037f77b90800000000000000 + internalID: -7244049687639785619 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u751F\u79D8\u5238" + rect: + serializedVersion: 2 + x: 3200 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5798c907b3dffba20800000000000000 + internalID: 3080459101878913397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u751F\u8BC0" + rect: + serializedVersion: 2 + x: 3232 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d5409117491791f60800000000000000 + internalID: 8005554694994330717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u76F8\u53AE\u5B88" + rect: + serializedVersion: 2 + x: 3264 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2826152621d1bceb0800000000000000 + internalID: -4698629821434862974 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u76F8\u5B88" + rect: + serializedVersion: 2 + x: 3296 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db42b192cecd3fa70800000000000000 + internalID: 8859667798827934909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u7A7A\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 3328 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37824181473860090800000000000000 + internalID: -8068617147744245645 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u7A7A\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 3360 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c15b8316186f716b0800000000000000 + internalID: -5325516998800001764 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u7A7A\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 3392 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1763b2a515efd8b70800000000000000 + internalID: 8903051663739926129 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u7A7A\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 3424 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f129e3e7193cb6b00800000000000000 + internalID: 822966386580951583 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u7A7A\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 3456 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 718b15e22e1f6fdd0800000000000000 + internalID: -2452506993314645993 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u7A7A\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 3488 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c540a809173c4c5e0800000000000000 + internalID: -1890171051065080740 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u81C2\u86EE" + rect: + serializedVersion: 2 + x: 3520 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3293576a054143240800000000000000 + internalID: 4770460241914837283 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u8857\u9189\u6708\u574A" + rect: + serializedVersion: 2 + x: 3552 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc58849346acb5aa0800000000000000 + internalID: -6171116332574538291 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u957F\u97AD" + rect: + serializedVersion: 2 + x: 3584 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b3a14bc657cad3c0800000000000000 + internalID: -4333932515799489614 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u95EA\u5149\u4E4B\u5251" + rect: + serializedVersion: 2 + x: 3616 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55e00175eeb15c190800000000000000 + internalID: -7942911657321165227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u95EA\u5149\u788E\u7247" + rect: + serializedVersion: 2 + x: 3648 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad71a7644cea68190800000000000000 + internalID: -7960483133311543334 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u95EA\u534E\u65A7" + rect: + serializedVersion: 2 + x: 3680 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 182eecb9f24cf4a00800000000000000 + internalID: 743028172295955073 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u95EA\u7535\u9CD0" + rect: + serializedVersion: 2 + x: 3712 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70b22d2c57b3b04a0800000000000000 + internalID: -6626137049779787001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u95EA\u7A7A\u4E4B\u77DB" + rect: + serializedVersion: 2 + x: 3744 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8dd216019987afc90800000000000000 + internalID: -7135258060814996008 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u95EA\u94BB\u793C\u670D\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3776 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f5389b73c986bc3b0800000000000000 + internalID: -5491180300489096353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u95EA\u94BB\u793C\u670D\u7537\u624B\u5957" + rect: + serializedVersion: 2 + x: 3808 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8aed6e8fabc228130800000000000000 + internalID: 3567463036382273192 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u95EA\u94BB\u793C\u670D\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3840 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4566fb1275adf3420800000000000000 + internalID: 2612046376661378644 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u95EA\u94BB\u793C\u670D\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3872 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca3bbb1a6fb1e3e90800000000000000 + internalID: -7044162021071539284 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u95ED\u6708\u7F9E\u82B1" + rect: + serializedVersion: 2 + x: 3904 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34f8fa5490f421350800000000000000 + internalID: 5985933755971243843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u95F7\u5C16\u72EE\u5B50\u5934" + rect: + serializedVersion: 2 + x: 3936 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 23b66ba066e354750800000000000000 + internalID: 6288501062680079154 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u95FB\u81A6" + rect: + serializedVersion: 2 + x: 3968 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70d69868294b8a190800000000000000 + internalID: -7950906600707232505 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u960E\u738B\u4EE4" + rect: + serializedVersion: 2 + x: 4000 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4a7023251f7ef620800000000000000 + internalID: 2809822946286139982 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u960E\u9B54\u76D4" + rect: + serializedVersion: 2 + x: 4032 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 698fcb94a36281070800000000000000 + internalID: 8077247963476064406 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9614\u5FC3\u6797\u6728" + rect: + serializedVersion: 2 + x: 4064 + y: 2112 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4145a950ece2647c0800000000000000 + internalID: -4087528149400005612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9616\u5BB6\u56E2\u5706" + rect: + serializedVersion: 2 + x: 0 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd9c6f4d9e6cd7280800000000000000 + internalID: -9043853769087464996 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u961F\u4F0D\u96C6\u7ED3\u4EE4" + rect: + serializedVersion: 2 + x: 32 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8974a3d5568074ef0800000000000000 + internalID: -124121233280579688 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9633\u5149\u74F6" + rect: + serializedVersion: 2 + x: 64 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 480307a3e4990ccf0800000000000000 + internalID: -234018619356335996 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9634\u5DEE\u9633\u9519\u5361" + rect: + serializedVersion: 2 + x: 96 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a409550ffe613e40800000000000000 + internalID: 5634406650402636966 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9634\u9523" + rect: + serializedVersion: 2 + x: 128 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ce6d3a8264b99570800000000000000 + internalID: 8474002509193375425 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9634\u9633\u5251" + rect: + serializedVersion: 2 + x: 160 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a58b4c0a7ab383490800000000000000 + internalID: -7766391966257596326 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9634\u9633\u593A\u9B44\u8F6E" + rect: + serializedVersion: 2 + x: 192 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c792684f933969f80800000000000000 + internalID: -8100125002654406276 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9634\u9633\u7B26" + rect: + serializedVersion: 2 + x: 224 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec48be11678a1e3d0800000000000000 + internalID: -3179074636886604594 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9634\u973E\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 256 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aa631e675541ee710800000000000000 + internalID: 1724338064628725418 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9634\u973E\u4E4B\u7231" + rect: + serializedVersion: 2 + x: 288 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f47a15a861aeb8260800000000000000 + internalID: 7101026620010506063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9634\u973E\u4E4B\u7EB1" + rect: + serializedVersion: 2 + x: 320 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8533cbb81f6643010800000000000000 + internalID: 1167671391013319512 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9634\u973E\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 352 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 729d56c2a1b1a02b0800000000000000 + internalID: -5617647785963300569 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9634\u973E\u4E4B\u821E" + rect: + serializedVersion: 2 + x: 384 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d1e2241f100da860800000000000000 + internalID: 7542685084397265362 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9634\u973E\u4E4B\u9732" + rect: + serializedVersion: 2 + x: 416 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 512a25d1d57468510800000000000000 + internalID: 1551005586925199893 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9634\u9B54\u4EE4" + rect: + serializedVersion: 2 + x: 448 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ad6f47c25c1554c0800000000000000 + internalID: -4299499127398503006 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9635\u96E8\u5200" + rect: + serializedVersion: 2 + x: 480 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e912c13b943481c80800000000000000 + internalID: -8351851525141945954 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u963F\u62C9\u4E01\u98DE\u6BEF" + rect: + serializedVersion: 2 + x: 512 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2342ccbd4a79790c0800000000000000 + internalID: -4569016562626059214 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u963F\u661F\u7684\u5305\u88F9" + rect: + serializedVersion: 2 + x: 544 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67edf4e8b758795a0800000000000000 + internalID: -6514591570253062538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9646\u5316\u7684\u6D77\u9F9F\u8910\u8272" + rect: + serializedVersion: 2 + x: 576 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bec0653088fbb73d0800000000000000 + internalID: -3207759718678917909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9646\u751F\u673A\u5668\u8783\u87F9" + rect: + serializedVersion: 2 + x: 608 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0790f8f854180a410800000000000000 + internalID: 1486330012793506160 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9648\u65E7\u7684\u4EE4\u724C" + rect: + serializedVersion: 2 + x: 640 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55073d486cb55c0f0800000000000000 + internalID: -1097370026004746155 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u964D\u4E16\u4E4B\u51A0" + rect: + serializedVersion: 2 + x: 672 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f4f028b4b09fcc30800000000000000 + internalID: 4381880068312462584 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u964D\u7130\u9B54\u5B97" + rect: + serializedVersion: 2 + x: 704 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b14ca5d45c50a7c10800000000000000 + internalID: 2051958925185172507 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u964D\u9B54\u6775" + rect: + serializedVersion: 2 + x: 736 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5719871147e53d4d0800000000000000 + internalID: -3111039064980549259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9664\u76D6\u969C\u83E9\u8428" + rect: + serializedVersion: 2 + x: 768 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9c43606aa26e00660800000000000000 + internalID: 7350127662717088969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9664\u76D6\u969C\u83E9\u8428\u788E\u7247" + rect: + serializedVersion: 2 + x: 800 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 968f6ab7db2d68c90800000000000000 + internalID: -7167810045648373655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9668\u661F\u5251" + rect: + serializedVersion: 2 + x: 832 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5d67d58bde8ce630800000000000000 + internalID: 3957695246046293339 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9668\u94C1\u6B8B\u7247\u5C71" + rect: + serializedVersion: 2 + x: 864 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c14a389dce322a6e0800000000000000 + internalID: -1827858998590462948 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9668\u94C1\u6B8B\u7247\u5C71\u6D41\u901A" + rect: + serializedVersion: 2 + x: 896 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c91b7ab8f8773bba0800000000000000 + internalID: -6074380013985615460 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9668\u94C1\u6B8B\u7247\u6D77" + rect: + serializedVersion: 2 + x: 928 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 19bbdd4dcc8781720800000000000000 + internalID: 2817134388060208017 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9668\u94C1\u6B8B\u7247\u6D77\u6D41\u901A" + rect: + serializedVersion: 2 + x: 960 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ee3c1184d50e6f90800000000000000 + internalID: -6958617963983520029 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9676\u5200\u950B\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 992 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a47fa0909a753490800000000000000 + internalID: -7767167221009255261 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9676\u5251\u5203\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 1024 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1354395216e4c3040800000000000000 + internalID: 4628660696179230001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9676\u5668" + rect: + serializedVersion: 2 + x: 1056 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4625dd97705fd20a0800000000000000 + internalID: -6904593241230978460 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9676\u5B50\u6BCD\u65A7\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 1088 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2d18108ff0b24f20800000000000000 + internalID: 3405478879657729327 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9676\u5B50\u6BCD\u9524\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 1120 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: abe60a101bbb6a160800000000000000 + internalID: 7036517836723875514 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9676\u6307\u73AF\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 1152 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2fe4ca76f9e624dc0800000000000000 + internalID: -3656238316553220366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9676\u65A7\u5203\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 1184 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14b7e32b97b65ba80800000000000000 + internalID: -8451730955265213631 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9676\u91D1\u521A\u6775\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 1216 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e6195365906bbb40800000000000000 + internalID: 5457061568222664423 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9676\u9524\u5934\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 1248 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12761adbbdbdc5780800000000000000 + internalID: -8692831443906107615 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9676\u9E33\u9E2F\u5200\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 1280 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65153018e94fc9a70800000000000000 + internalID: 8835205530600558934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9676\u9E33\u9E2F\u5251\u94F8\u6A21" + rect: + serializedVersion: 2 + x: 1312 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8abe3afddfa805b80800000000000000 + internalID: -8408067681317295192 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9677\u9631" + rect: + serializedVersion: 2 + x: 1344 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f216670d3a180f430800000000000000 + internalID: 3814691424959881519 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u968F\u4E16\u4ED9\u59D1\u5361" + rect: + serializedVersion: 2 + x: 1376 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 698fdf969c970b9e0800000000000000 + internalID: -1607651160997627754 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u968F\u5019\u9057\u73E0" + rect: + serializedVersion: 2 + x: 1408 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a59a3b12aaf2a260800000000000000 + internalID: 7107518736092534179 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u968F\u673A\u67D3\u8272\u5242" + rect: + serializedVersion: 2 + x: 1440 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e773353c95f69cfd0800000000000000 + internalID: -2321201701612996738 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u968F\u8EAB\u80CC\u5305" + rect: + serializedVersion: 2 + x: 1472 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 297f961504c127010800000000000000 + internalID: 1185040714521245586 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9690\u58EB\u4E4B\u955C" + rect: + serializedVersion: 2 + x: 1504 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4663e74a2bf362d50800000000000000 + internalID: 6712122331138766436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9690\u8272\u8349" + rect: + serializedVersion: 2 + x: 1536 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5bb3841f9cfd0a1d0800000000000000 + internalID: -3341424865079444555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9694\u6C34\u5200" + rect: + serializedVersion: 2 + x: 1568 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fad9cf4948f4a2650800000000000000 + internalID: 6208862467137510831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96C0\u753B\u5F13" + rect: + serializedVersion: 2 + x: 1600 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d37788a0c81d77240800000000000000 + internalID: 4789527128134154045 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96C0\u77F3" + rect: + serializedVersion: 2 + x: 1632 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba2ad9ee13f821620800000000000000 + internalID: 2743412567641531051 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96C0\u821E\u7FC5" + rect: + serializedVersion: 2 + x: 1664 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9643b708abb2b5270800000000000000 + internalID: 8240228023223923817 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96C4\u9E70\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 1696 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1c4027396942f460800000000000000 + internalID: 7273957064402029595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96C4\u9EC4" + rect: + serializedVersion: 2 + x: 1728 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90fd0591aafd2f430800000000000000 + internalID: 3815357755998396169 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96C5\u5B9D\u7F20\u679D\u7B14\u7B52" + rect: + serializedVersion: 2 + x: 1760 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46fc8a3f37012c5d0800000000000000 + internalID: -3043852307953823900 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96C5\u73B2\u7684\u7075\u9B42" + rect: + serializedVersion: 2 + x: 1792 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f437ee4ab68e2bc90800000000000000 + internalID: -7155401308912061617 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96CF\u9E70\u5C0F\u8349" + rect: + serializedVersion: 2 + x: 1824 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62536a765868c8e80800000000000000 + internalID: -8175011316056574682 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96D51" + rect: + serializedVersion: 2 + x: 1856 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3aa8c8e59f46e670800000000000000 + internalID: 8567622846393133631 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96D52" + rect: + serializedVersion: 2 + x: 1888 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 858fbdc729f651450800000000000000 + internalID: 6058871548647569496 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96D53" + rect: + serializedVersion: 2 + x: 1920 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ead508bede5f424b0800000000000000 + internalID: -5465973645513826898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96D54" + rect: + serializedVersion: 2 + x: 1952 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f06c2b9b1b9c856f0800000000000000 + internalID: -695584377266846193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96D5\u50CF\u4E4B\u5FC3" + rect: + serializedVersion: 2 + x: 1984 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8e7793393b8a1ee0800000000000000 + internalID: -1289565265493262707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96D5\u7FCE\u7BAD" + rect: + serializedVersion: 2 + x: 2016 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 867173372eeabd830800000000000000 + internalID: 4097060573642430312 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96D5\u82B1\u56F4\u9F99\u5C4B" + rect: + serializedVersion: 2 + x: 2048 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5520bdd0347ee0960800000000000000 + internalID: 7570242298837664341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96D5\u82B1\u70B9\u988F\u7B3C" + rect: + serializedVersion: 2 + x: 2080 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6e0cbee2bdd3c54c0800000000000000 + internalID: -4297491932823961370 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96D5\u82B1\u73BB\u7483\u94C1\u5EA7\u949F" + rect: + serializedVersion: 2 + x: 2112 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b64493e16c7022370800000000000000 + internalID: 8296202011061863531 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96D5\u82B1\u9A6C\u7532\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2144 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 393aa6055ccc04d70800000000000000 + internalID: 9025438801080263571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96D5\u82B1\u9A6C\u7532\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2176 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c1bfc1b6750befb0800000000000000 + internalID: -4617590985590853182 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96D5\u82B1\u9A6C\u7532\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2208 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c32862b577f7e37f0800000000000000 + internalID: -630926747178204612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96D5\u82B1\u9A6C\u7532\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2240 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0809fbb58311cc660800000000000000 + internalID: 7407314420872745088 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96E8\u4F1E" + rect: + serializedVersion: 2 + x: 2272 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27106153b99cc1190800000000000000 + internalID: -7990289970414354062 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96E8\u82B1\u77F3\u5760\u5B50" + rect: + serializedVersion: 2 + x: 2304 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88755318cb0c86a70800000000000000 + internalID: 8820511786059257736 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u4E4B\u5370" + rect: + serializedVersion: 2 + x: 2336 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 57a596f5db06064e0800000000000000 + internalID: -1990484668831933835 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u4E4B\u7075\u4E0A\u534A" + rect: + serializedVersion: 2 + x: 2368 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 371a02fc095ea9820800000000000000 + internalID: 2925903318043631987 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u4E4B\u7075\u4E0B\u534A" + rect: + serializedVersion: 2 + x: 2400 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bab208ce2c3f2de90800000000000000 + internalID: -7002266452090672213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u4EBA\u5750\u9A91" + rect: + serializedVersion: 2 + x: 2432 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65e98fae7d24c33b0800000000000000 + internalID: -5531472747190247850 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u5154\u5B9D\u5B9D" + rect: + serializedVersion: 2 + x: 2464 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8cbd7d7f8f58af6c0800000000000000 + internalID: -4108824405665653816 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u540E\u5C71\u884C\u56FE" + rect: + serializedVersion: 2 + x: 2496 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 606c06528b44f5de0800000000000000 + internalID: -1342278606241348090 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u5973" + rect: + serializedVersion: 2 + x: 2528 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59544676ec1f90050800000000000000 + internalID: 5767406666624812437 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u5A03\u5A03" + rect: + serializedVersion: 2 + x: 2560 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e811aee7318af87d0800000000000000 + internalID: -2913925632198307442 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u6218\u58EB" + rect: + serializedVersion: 2 + x: 2592 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3fafa72b1df417c0800000000000000 + internalID: -4101375067555909828 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u6D6A\u5760\u5B50" + rect: + serializedVersion: 2 + x: 2624 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2c56857a443d0410800000000000000 + internalID: 1444868549859761194 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u7403" + rect: + serializedVersion: 2 + x: 2656 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 028097c59172f8c90800000000000000 + internalID: -7165465492244068320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u78A7" + rect: + serializedVersion: 2 + x: 2688 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5246056ad86eeb950800000000000000 + internalID: 6466859611005674533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u7FBD\u6BDB" + rect: + serializedVersion: 2 + x: 2720 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b3a0cef933077000800000000000000 + internalID: 33499069850624953 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u821E\u938F\u6676" + rect: + serializedVersion: 2 + x: 2752 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 38550d737a0cee570800000000000000 + internalID: 8497941371323176323 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u86EE\u795E\u5B98\u5854\u5854" + rect: + serializedVersion: 2 + x: 2784 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1255b4216e8ca9b00800000000000000 + internalID: 836201571305608481 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96EA\u9E92\u9E9F" + rect: + serializedVersion: 2 + x: 2816 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29ab1a6b9ab46ffb0800000000000000 + internalID: -4614417575908885870 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F6" + rect: + serializedVersion: 2 + x: 2848 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3c0dbc58e04936630800000000000000 + internalID: 3919138890837643459 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u5149\u523A" + rect: + serializedVersion: 2 + x: 2880 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2fb5037c10b599a50800000000000000 + internalID: 6528349198045174770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u5203\u7B26" + rect: + serializedVersion: 2 + x: 2912 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2816381af0c37cbc0800000000000000 + internalID: -3762972925812842110 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u5996\u4E4B\u89D2" + rect: + serializedVersion: 2 + x: 2944 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e4ebc83843f5af7a0800000000000000 + internalID: -6342652446047945138 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u7259\u72471" + rect: + serializedVersion: 2 + x: 2976 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d093c934ca61a5c00800000000000000 + internalID: 890048805483591949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u7259\u72472" + rect: + serializedVersion: 2 + x: 3008 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 323872e915d4d9550800000000000000 + internalID: 6169172077508526883 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u7259\u72473" + rect: + serializedVersion: 2 + x: 3040 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37616f56c295469f0800000000000000 + internalID: -476157613370370445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u7259\u72474" + rect: + serializedVersion: 2 + x: 3072 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 47164b679b9e8a100800000000000000 + internalID: 119602372895072628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u7259\u72475" + rect: + serializedVersion: 2 + x: 3104 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c7d400400b46f220800000000000000 + internalID: 2519283506006513602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u7259\u72476" + rect: + serializedVersion: 2 + x: 3136 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42cdadacb5d3db610800000000000000 + internalID: 1638533303887387684 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u7259\u72477" + rect: + serializedVersion: 2 + x: 3168 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bae97aea647d109e0800000000000000 + internalID: -1656806489317728597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u7259\u72478" + rect: + serializedVersion: 2 + x: 3200 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04be34d4e88bbce70800000000000000 + internalID: 9136599190372346688 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u7535\u7F8A\u9A91\u5BA0" + rect: + serializedVersion: 2 + x: 3232 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44f983a020252dc00800000000000000 + internalID: 923891042279268164 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u9706\u9707" + rect: + serializedVersion: 2 + x: 3264 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1c937ff0356b29bd0800000000000000 + internalID: -2624835164937176639 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u96F7\u97F3\u68CD" + rect: + serializedVersion: 2 + x: 3296 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a14401eb11f626da0800000000000000 + internalID: -5953073635436510182 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9707\u4E4B\u8868\u5FBD" + rect: + serializedVersion: 2 + x: 3328 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c333fa7e2dbe35f90800000000000000 + internalID: -6965964907549347012 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9707\u4E4B\u9B42" + rect: + serializedVersion: 2 + x: 3360 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7fa0423b543cbe20800000000000000 + internalID: 3367624187656056698 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9707\u5730\u5F39" + rect: + serializedVersion: 2 + x: 3392 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45f37da0c33403330800000000000000 + internalID: 3688522019975413588 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9707\u6012\u5E7B\u5F71" + rect: + serializedVersion: 2 + x: 3424 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eb5d6592b8a912e10800000000000000 + internalID: 2171186417853978046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9732\u4E38" + rect: + serializedVersion: 2 + x: 3456 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5e7940756f8e2d20800000000000000 + internalID: 3255697246473780826 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9732\u534E\u8170\u9970" + rect: + serializedVersion: 2 + x: 3488 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4bf8c87490b85030800000000000000 + internalID: 3483728463499164490 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9732\u6E10\u6E05\u8377\u5782\u706F" + rect: + serializedVersion: 2 + x: 3520 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2041a4a8c28e24480800000000000000 + internalID: -8916309034243845118 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9738\u4E1A" + rect: + serializedVersion: 2 + x: 3552 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2465f38953e775920800000000000000 + internalID: 2978988447181526594 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9738\u6D77\u4E4B\u7389" + rect: + serializedVersion: 2 + x: 3584 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7dc0f961da2b4f3a0800000000000000 + internalID: -6632479894731289385 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9738\u6D77\u4E4B\u9774" + rect: + serializedVersion: 2 + x: 3616 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 196e844ef5ac257d0800000000000000 + internalID: -2931057894264084847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9738\u6D77\u6212\uFF08\u9633\uFF09" + rect: + serializedVersion: 2 + x: 3648 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8219b329cbbda400800000000000000 + internalID: 337132019684807306 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9738\u6D77\u6212\uFF08\u9634\uFF09" + rect: + serializedVersion: 2 + x: 3680 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4832cd3c5400d55a0800000000000000 + internalID: -6531063584978623612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9738\u6D77\u62A4\u624B" + rect: + serializedVersion: 2 + x: 3712 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 944a4fa09ed0303e0800000000000000 + internalID: -2088810507607432119 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9738\u6D77\u62A4\u817F" + rect: + serializedVersion: 2 + x: 3744 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a65af36962ff803b0800000000000000 + internalID: -5545902399912172182 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9738\u6D77\u7384\u7532" + rect: + serializedVersion: 2 + x: 3776 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 00edc51ab9df39170800000000000000 + internalID: 8184163792731299328 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9738\u6D77\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3808 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1147fe9a89ff24900800000000000000 + internalID: 667376725955408913 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9739\u96F3\u517D\u7684\u7360\u7259" + rect: + serializedVersion: 2 + x: 3840 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 81b0ccb0ad0506af0800000000000000 + internalID: -405235069032330472 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9739\u96F3\u5F39" + rect: + serializedVersion: 2 + x: 3872 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d968969ee6b7eb830800000000000000 + internalID: 4088841227991615133 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u5149\u4E2D\u7EA7" + rect: + serializedVersion: 2 + x: 3904 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e62a493d4d12b0780800000000000000 + internalID: -8715835455878946194 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u5149\u521D\u7EA7" + rect: + serializedVersion: 2 + x: 3936 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 154bbd79a5efb2110800000000000000 + internalID: 1237362187691603025 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u5149\u9AD8\u7EA7" + rect: + serializedVersion: 2 + x: 3968 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1f1c98a2faa9f9d0800000000000000 + internalID: -2739970939090624738 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u5A25\u4F69" + rect: + serializedVersion: 2 + x: 4000 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5eae0b3473eecbe40800000000000000 + internalID: 5673671551706262245 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u5F71\u9879\u94FE" + rect: + serializedVersion: 2 + x: 4032 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3c941da669e46440800000000000000 + internalID: 4928320519449910334 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u679D\u8FCE\u5BA2" + rect: + serializedVersion: 2 + x: 4064 + y: 2080 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03e3e4a30afaf3030800000000000000 + internalID: 3476690540061146672 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u6C34\u9F99\u517D\u5361\u72471" + rect: + serializedVersion: 2 + x: 0 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fcab087126cc7bd10800000000000000 + internalID: 2141404869511133903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u6C34\u9F99\u517D\u5361\u72472" + rect: + serializedVersion: 2 + x: 32 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 492cc4f53d17b8580800000000000000 + internalID: -8823833892251450732 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u6C34\u9F99\u517D\u5361\u72473" + rect: + serializedVersion: 2 + x: 64 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bce41bb2650624150800000000000000 + internalID: 5855348388751560395 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u6C34\u9F99\u517D\u5361\u72474" + rect: + serializedVersion: 2 + x: 96 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a15a9ae3be62531a0800000000000000 + internalID: -6830510468027013862 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u6C34\u9F99\u517D\u5361\u72475" + rect: + serializedVersion: 2 + x: 128 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 645b27ec9ea0dfa40800000000000000 + internalID: 5403487127221744966 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u6C34\u9F99\u517D\u5361\u72476" + rect: + serializedVersion: 2 + x: 160 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6453f987ddc94ce80800000000000000 + internalID: -8159224149863090874 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u6C34\u9F99\u517D\u5361\u72477" + rect: + serializedVersion: 2 + x: 192 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04b1434a420846170800000000000000 + internalID: 8170796518818978624 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u6C34\u9F99\u517D\u5361\u72478" + rect: + serializedVersion: 2 + x: 224 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f8edab77cfba64e0800000000000000 + internalID: -1987565422036260617 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u7389" + rect: + serializedVersion: 2 + x: 256 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: afd002ef320961f90800000000000000 + internalID: -6983235687929606662 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u7389\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 288 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 778e9337254a43890800000000000000 + internalID: -7479172407128102793 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u7476\u9732\u9CDE\u9B44" + rect: + serializedVersion: 2 + x: 320 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: abcad0927d643ecd0800000000000000 + internalID: -2530100675731411782 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u74F7\u6C34\u6CE8" + rect: + serializedVersion: 2 + x: 352 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4704b0a1ea43d8930800000000000000 + internalID: 4147028754243993716 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u767D\u7389\u9547\u7EB8" + rect: + serializedVersion: 2 + x: 384 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0ab97caad179f220800000000000000 + internalID: 2520170650500971021 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u77F3\u6697\u7EB9\u684C\u6905" + rect: + serializedVersion: 2 + x: 416 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ad35876b19e5b800800000000000000 + internalID: 627664026998226337 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u7F57\u8F6F\u97AD" + rect: + serializedVersion: 2 + x: 448 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 282703231efd2f8f0800000000000000 + internalID: -508097649636773246 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u7FE0\u7389\u4F69" + rect: + serializedVersion: 2 + x: 480 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 489b9eda2b18f7d60800000000000000 + internalID: 7890167676598335876 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u8272\u67D3\u8272\u5242" + rect: + serializedVersion: 2 + x: 512 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 73ce5299f5f675fc0800000000000000 + internalID: -3506211328502666185 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u82B1\u70DF\u96E8\u523B\u74F7" + rect: + serializedVersion: 2 + x: 544 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc1640ee2cc81a5e0800000000000000 + internalID: -1900082798928830001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u82B1\u73B2\u73D1\u7559\u9999\u58F6" + rect: + serializedVersion: 2 + x: 576 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f427481bcb55d3650800000000000000 + internalID: 6214217329761612367 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u82B1\u74F7\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 608 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2bfcecdda99b7210800000000000000 + internalID: 1331827086833023787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u82B1\u74F7\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 640 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5083caf9fc024f90800000000000000 + internalID: -6970995005422600101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u82B1\u74F7\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 672 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8d9a7a5d3274bc30800000000000000 + internalID: 4374246745920150925 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u82B1\u7B14\u7B52" + rect: + serializedVersion: 2 + x: 704 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43e320cb40cdc0770800000000000000 + internalID: 8578473303126195764 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u82B1\u7F20\u679D\u74F6" + rect: + serializedVersion: 2 + x: 736 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42161babf980319d0800000000000000 + internalID: -2804888660796677852 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u8349" + rect: + serializedVersion: 2 + x: 768 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0594de94f3133b010800000000000000 + internalID: 1203359673331042640 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u83B2\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 800 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 723ac659703e180f0800000000000000 + internalID: -1116361610899971289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u85E4\u7ED5\u6897" + rect: + serializedVersion: 2 + x: 832 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5a0869c84b938f1f0800000000000000 + internalID: -1010994668729106267 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u86A8" + rect: + serializedVersion: 2 + x: 864 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7577b3e72d11e2fa0800000000000000 + internalID: -5823697672384841897 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u86A8\u76AE" + rect: + serializedVersion: 2 + x: 896 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 86156cc84e465af60800000000000000 + internalID: 8044947242144387432 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u86D9\u4E0B\u96E8\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 928 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 56e571d2381acc370800000000000000 + internalID: 8344221794379980389 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u86D9\u4E0B\u96E8\u5973\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 960 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ddcca5cd298994350800000000000000 + internalID: 6001495734977481949 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u86D9\u4E0B\u96E8\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 992 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 995fc2ea651ec5d00800000000000000 + internalID: 962892182756062617 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u86D9\u4E0B\u96E8\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1024 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39b8787d3ce7c5940800000000000000 + internalID: 5286239442225826707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u91C9\u83B2\u82B1\u7897" + rect: + serializedVersion: 2 + x: 1056 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e0534179bba05f2e0800000000000000 + internalID: -2092754651033881330 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u91C9\u846B\u82A6\u7B14\u6D17" + rect: + serializedVersion: 2 + x: 1088 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a24fade38e9b7f6d0800000000000000 + internalID: -2956690223207353302 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u91D1\u4F69" + rect: + serializedVersion: 2 + x: 1120 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3824f06f394827540800000000000000 + internalID: 5004207906985296515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u91D1\u96F7\u77F3\u56FE\u817E" + rect: + serializedVersion: 2 + x: 1152 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1b51f0bbda905e30800000000000000 + internalID: 4490259096845507358 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u5251" + rect: + serializedVersion: 2 + x: 1184 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c64f8f358ba7e0d90800000000000000 + internalID: -7129626227979520916 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u5B88\u795E\u7B26" + rect: + serializedVersion: 2 + x: 1216 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9eee252881045fa0800000000000000 + internalID: -5813019534777454948 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u5B88\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 1248 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a7f8c75ea95d2750800000000000000 + internalID: 6281775660583679911 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u5F29\u673A" + rect: + serializedVersion: 2 + x: 1280 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 757faafd01ef6a7c0800000000000000 + internalID: -4060278665602468009 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u5F3A\u529B\u673A\u7C27" + rect: + serializedVersion: 2 + x: 1312 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b960274c18620caa0800000000000000 + internalID: -6142867552944912741 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 1344 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7df64159efa8cfac0800000000000000 + internalID: -3820025557889552425 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u62A4\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 1376 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c512d38de274d4d60800000000000000 + internalID: 7876029589862818140 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u62A4\u8EAB\u9501" + rect: + serializedVersion: 2 + x: 1408 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58b3f26743404b320800000000000000 + internalID: 2572685910503013253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u68CD\u68D2\u62A4\u624B" + rect: + serializedVersion: 2 + x: 1440 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d412c954a1af8aa0800000000000000 + internalID: -6156524438339578663 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u72B6\xB7\u4ED9\u5E7B\u5929" + rect: + serializedVersion: 2 + x: 1472 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c62ed2cfd56165bd0800000000000000 + internalID: -2641899538487582100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u77DB\u67C4" + rect: + serializedVersion: 2 + x: 1504 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 505b420d093551490800000000000000 + internalID: -7776217300152830715 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u77ED\u5203\u67C4" + rect: + serializedVersion: 2 + x: 1536 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 43785e013fdcc9260800000000000000 + internalID: 7105780755928024884 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u80A1\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 1568 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: acffd56ba5b5a3120800000000000000 + internalID: 2394326597065637834 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u80A9\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 1600 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a786ad22762cca5b0800000000000000 + internalID: -5355692108628203398 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u8155\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 1632 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b929ba5486a30b080800000000000000 + internalID: -9173768221433818469 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u836F\u5BA4" + rect: + serializedVersion: 2 + x: 1664 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2474003beec185660800000000000000 + internalID: 7374676201350121282 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u864E\u7B26" + rect: + serializedVersion: 2 + x: 1696 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2740e089a58db8cb0800000000000000 + internalID: -4860553489206606734 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u8E1D\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 1728 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc95ac10b38e3acb0800000000000000 + internalID: -4853780633244509748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u957F\u5200\u5200\u683C" + rect: + serializedVersion: 2 + x: 1760 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 195f9834dfefac720800000000000000 + internalID: 2867384476488037777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u957F\u6746\u63A5\u69AB" + rect: + serializedVersion: 2 + x: 1792 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 50a2e2d8fa33ed1a0800000000000000 + internalID: -6782927159692482043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u94DC\u9762\u7F69\u5408\u9875" + rect: + serializedVersion: 2 + x: 1824 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36bd95a5be39fa090800000000000000 + internalID: -8021029772281128093 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u950B\u5251" + rect: + serializedVersion: 2 + x: 1856 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 614d74b0b39e518f0800000000000000 + internalID: -570293337990900714 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9E1F\u4E4B\u7FBD" + rect: + serializedVersion: 2 + x: 1888 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b9e8394231a6aa20800000000000000 + internalID: 3073321033075845554 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9E1F\u4E4B\u98CE" + rect: + serializedVersion: 2 + x: 1920 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc6b37caf6b9adbc0800000000000000 + internalID: -3757520035150317873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9E64\u9876\u793C\u70DB\u53F0" + rect: + serializedVersion: 2 + x: 1952 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: aed031d849b5e15d0800000000000000 + internalID: -3089931600749457942 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u5217" + rect: + serializedVersion: 2 + x: 1984 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db351815bbe7a1690800000000000000 + internalID: -7630647275634469955 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u5730" + rect: + serializedVersion: 2 + x: 2016 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5e0fbe58e4d41010800000000000000 + internalID: 1158785098628140635 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u5929" + rect: + serializedVersion: 2 + x: 2048 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5cb6a4e6d45867050800000000000000 + internalID: 5797968137895439301 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u5B87" + rect: + serializedVersion: 2 + x: 2080 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63fa9487080977e80800000000000000 + internalID: -8180911316646908106 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u5B99" + rect: + serializedVersion: 2 + x: 2112 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91ce14ce269bd6070800000000000000 + internalID: 8101335139231067161 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u5BBF" + rect: + serializedVersion: 2 + x: 2144 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8dfdd0921cbf3dd60800000000000000 + internalID: 7913945777256128472 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u5F20" + rect: + serializedVersion: 2 + x: 2176 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc764679de2dc3db0800000000000000 + internalID: -4810738384049510449 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u65E5" + rect: + serializedVersion: 2 + x: 2208 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7dc81f3f20f424c0800000000000000 + internalID: -4313058457401373313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u6603" + rect: + serializedVersion: 2 + x: 2240 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 318d4c1f6213c41a0800000000000000 + internalID: -6824025292038416365 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u6708" + rect: + serializedVersion: 2 + x: 2272 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90a03c4abb5bd4330800000000000000 + internalID: 3696810686668802569 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u6D2A" + rect: + serializedVersion: 2 + x: 2304 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 28842804438dd9fc0800000000000000 + internalID: -3486392817582716798 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u76C8" + rect: + serializedVersion: 2 + x: 2336 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 53b6755766419c520800000000000000 + internalID: 2722729880010058549 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u8352" + rect: + serializedVersion: 2 + x: 2368 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63f99b6c81ea5d6b0800000000000000 + internalID: -5272116367330795722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u8FB0" + rect: + serializedVersion: 2 + x: 2400 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe24c8d6b9a10b9b0800000000000000 + internalID: -5066520325931646225 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u4E4B\u9EC4" + rect: + serializedVersion: 2 + x: 2432 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ceec15b488ebe9f0800000000000000 + internalID: -438000882066592063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9752\u9F99\u78D0\u73BA" + rect: + serializedVersion: 2 + x: 2464 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e7b02dda38f5a0b0800000000000000 + internalID: -5717891220175276055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9759\u5CB3\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 2496 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 212d9b1c058c85690800000000000000 + internalID: -7613114920896703982 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9759\u5FC3\u6C34" + rect: + serializedVersion: 2 + x: 2528 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9359e8ab02aa2a00800000000000000 + internalID: 732576060363330461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9759\u5FC3\u77F3" + rect: + serializedVersion: 2 + x: 2560 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 30050480a7938d100800000000000000 + internalID: 132919385294655491 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9759\u6CC9\u5251" + rect: + serializedVersion: 2 + x: 2592 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f1e7626aa165400a0800000000000000 + internalID: -6916308455277560289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9759\u9B42\u706F" + rect: + serializedVersion: 2 + x: 2624 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2eb460d95694a1870800000000000000 + internalID: 8654310334720789474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975B\u84DD\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 2656 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44d6fa16925dc6fd0800000000000000 + internalID: -2347266932057608892 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975B\u9752\u661F\u6CB3\u9547\u7EB8" + rect: + serializedVersion: 2 + x: 2688 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e14162f9ace11000800000000000000 + internalID: 5045289264169447 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975B\u9752\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 2720 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7f9418763cdb4b6a0800000000000000 + internalID: -6434309320652797449 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975E\u4E3B\u6D41\u5A5A\u793C\u5973\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2752 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46d26c2012cc9c850800000000000000 + internalID: 6397869187809029476 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975E\u4E3B\u6D41\u5A5A\u793C\u5973\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2784 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 298682fc004291cd0800000000000000 + internalID: -2586996925053507438 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975E\u4E3B\u6D41\u5A5A\u793C\u5973\u88C5\u624B\u5957" + rect: + serializedVersion: 2 + x: 2816 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe4fef942ae1e2440800000000000000 + internalID: 4912897925882770671 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975E\u4E3B\u6D41\u5A5A\u793C\u5973\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2848 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1abdea13616c42ce0800000000000000 + internalID: -1430800982971851871 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975E\u4E3B\u6D41\u5A5A\u793C\u5973\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2880 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b4a62c5b29509ca0800000000000000 + internalID: -6012207459775109961 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975E\u4E3B\u6D41\u5A5A\u793C\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2912 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4b5e011d54b95d5b0800000000000000 + internalID: -5344194658642631244 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975E\u4E3B\u6D41\u5A5A\u793C\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2944 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7c3101e735706b20800000000000000 + internalID: 3125627024253729917 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975E\u4E3B\u6D41\u5A5A\u793C\u7537\u88C5\u624B\u5957" + rect: + serializedVersion: 2 + x: 2976 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: efa92e5be60eb6460800000000000000 + internalID: 7236123992403385086 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975E\u4E3B\u6D41\u5A5A\u793C\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3008 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c7484f1a8f14c540800000000000000 + internalID: 5027177762143094727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975E\u4E3B\u6D41\u5A5A\u793C\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3040 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ddcd36228dde69630800000000000000 + internalID: 3933592837100395741 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975E\u5E38\u5B8C\u7F8E\u5305\u5C0F" + rect: + serializedVersion: 2 + x: 3072 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c42b0caafdddd6c90800000000000000 + internalID: -7174834678619131316 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u975E\u955C" + rect: + serializedVersion: 2 + x: 3104 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c160cbbfa47a7ef20800000000000000 + internalID: 3451911579895596572 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9762\u7C89" + rect: + serializedVersion: 2 + x: 3136 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f8faeadc816b88120800000000000000 + internalID: 2416381417730518927 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u978B\u5B50" + rect: + serializedVersion: 2 + x: 3168 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 259f6d06404333670800000000000000 + internalID: 8517208513696954706 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u97AD\u5B50" + rect: + serializedVersion: 2 + x: 3200 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f6655f1b093cea520800000000000000 + internalID: 2715322651579340399 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u97AD\u70AE" + rect: + serializedVersion: 2 + x: 3232 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 930e40705750020b0800000000000000 + internalID: -5755594323592421319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u97E6\u9640\u6775" + rect: + serializedVersion: 2 + x: 3264 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a53b629eff43ee2f0800000000000000 + internalID: -941756998340922534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u97E7\u4E4B\u4E1D" + rect: + serializedVersion: 2 + x: 3296 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2c7790f74b0b03520800000000000000 + internalID: 2679836067557373890 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u97EC\u5149\u62AB\u98CE" + rect: + serializedVersion: 2 + x: 3328 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 847ccd96fb1407d80800000000000000 + internalID: -8255025826599483576 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9876" + rect: + serializedVersion: 2 + x: 3360 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e28f7fcd3cabf4160800000000000000 + internalID: 7012028495227779118 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9876\u706F" + rect: + serializedVersion: 2 + x: 3392 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39294888be730c640800000000000000 + internalID: 5098136262930633363 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9876\u9488" + rect: + serializedVersion: 2 + x: 3424 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45d6c147ce970c890800000000000000 + internalID: -7439812527948796588 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u987B\u9640" + rect: + serializedVersion: 2 + x: 3456 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d503ab89367d09c10800000000000000 + internalID: 2058381852472389725 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9882\u5531\u4E4B\u8BED" + rect: + serializedVersion: 2 + x: 3488 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b55160b7687601c60800000000000000 + internalID: 7786837583010862427 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9885\u9AA8" + rect: + serializedVersion: 2 + x: 3520 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60f8b13061d7ce980800000000000000 + internalID: -8508288062514819322 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9886\u5E26\u4F11\u95F2\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 3552 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63eb76f9e0821a2c0800000000000000 + internalID: -4422209315832086986 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9886\u5E26\u4F11\u95F2\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 3584 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 840a08cea192d2a40800000000000000 + internalID: 5344973528372387912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9886\u5E26\u4F11\u95F2\u88C5\u978B" + rect: + serializedVersion: 2 + x: 3616 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d5a05ffc7f307020800000000000000 + internalID: 2337438012697257429 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE" + rect: + serializedVersion: 2 + x: 3648 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f712021fd5883dc50800000000000000 + internalID: 6688839808634069375 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u4E4B\u5973\u795E\u7684\u795D\u798F" + rect: + serializedVersion: 2 + x: 3680 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4314fdd198601fee0800000000000000 + internalID: -1229194037313978060 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u4E4B\u7CBE\u7075" + rect: + serializedVersion: 2 + x: 3712 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a82d7298db6564f00800000000000000 + internalID: 1100662530988561034 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u4E4B\u7CBE\u9B44" + rect: + serializedVersion: 2 + x: 3744 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3bb068db4a2e21e30800000000000000 + internalID: 4472886577114516403 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u4FE1\u5B50" + rect: + serializedVersion: 2 + x: 3776 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0893ad1538b2b6c40800000000000000 + internalID: 5506542812404529536 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u60C5\u6708\u610F" + rect: + serializedVersion: 2 + x: 3808 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2411209cc49d40b50800000000000000 + internalID: 6558605881171382594 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u6696\u9152\u65D7\u697C" + rect: + serializedVersion: 2 + x: 3840 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22b41cd4c2ae5d320800000000000000 + internalID: 2582227437370821410 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u706B\u8F6E1" + rect: + serializedVersion: 2 + x: 3872 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 840c1bd43d688fa60800000000000000 + internalID: 7708059004344320072 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u706B\u8F6E2" + rect: + serializedVersion: 2 + x: 3904 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37f75b7d217e13410800000000000000 + internalID: 1455198222731804531 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u706B\u8F6E3" + rect: + serializedVersion: 2 + x: 3936 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c506ce12e518d3cc0800000000000000 + internalID: -3729682675096854436 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u706B\u8F6E4" + rect: + serializedVersion: 2 + x: 3968 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10588c91dd5117580800000000000000 + internalID: -8831253354932304639 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u706B\u8F6E5" + rect: + serializedVersion: 2 + x: 4000 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 387cd0edf73b3d490800000000000000 + internalID: -7722631574242605181 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u7B5D" + rect: + serializedVersion: 2 + x: 4032 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a00d9657459c2d60800000000000000 + internalID: 7866826782737760418 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u7B5D\u7EEF\u68A6" + rect: + serializedVersion: 2 + x: 4064 + y: 2048 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22436d5e4877cae40800000000000000 + internalID: 5669037443628020770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u9A9A\u51EF\u6492\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 0 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d89cdfa160aff36a0800000000000000 + internalID: -6467175635751155315 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u9A9A\u51EF\u6492\u7537\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 32 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 134771f43e44dd230800000000000000 + internalID: 3665161414824653873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u9A9A\u51EF\u6492\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 64 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4abac31c276dd61b0800000000000000 + internalID: -5661633368178250844 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98CE\u9A9A\u51EF\u6492\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 96 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63c5f86cbc1512760800000000000000 + internalID: 7431310795789524022 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98D8\u6E3A\u4E4B\u5F13" + rect: + serializedVersion: 2 + x: 128 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbbac590bbd2588c0800000000000000 + internalID: -3997738812882244675 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98D8\u6E3A\u4ED9\u4E39" + rect: + serializedVersion: 2 + x: 160 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 80c1dccd206aea510800000000000000 + internalID: 1562368651968715784 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u517D\u627F\u5F71" + rect: + serializedVersion: 2 + x: 192 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d93c06b420f1e350800000000000000 + internalID: 6044376215371659736 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5200" + rect: + serializedVersion: 2 + x: 224 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 44bf4773325592770800000000000000 + internalID: 8586487774301190980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u52511" + rect: + serializedVersion: 2 + x: 256 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd4a922b3db27dd40800000000000000 + internalID: 5609000049140409564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u525110" + rect: + serializedVersion: 2 + x: 288 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60198a9963d2d9890800000000000000 + internalID: -7449748496071487226 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u525111" + rect: + serializedVersion: 2 + x: 320 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae2a61a8b3fbe4ea0800000000000000 + internalID: -5886557400485944598 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u525113" + rect: + serializedVersion: 2 + x: 352 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c5a646ddc76462930800000000000000 + internalID: 4118056411381131868 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u525114" + rect: + serializedVersion: 2 + x: 384 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8a8459f025f31ef50800000000000000 + internalID: 6908872925044361384 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u525115" + rect: + serializedVersion: 2 + x: 416 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 037c79e9dd6dbaee0800000000000000 + internalID: -1248668224328317136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u52512" + rect: + serializedVersion: 2 + x: 448 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 73b7c705e297fdab0800000000000000 + internalID: -4981129423022687433 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u52513" + rect: + serializedVersion: 2 + x: 480 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84a9141dfbdf11500800000000000000 + internalID: 365352045085039176 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u52514" + rect: + serializedVersion: 2 + x: 512 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d47bd9358de73ba0800000000000000 + internalID: -6109153213047671597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u52515" + rect: + serializedVersion: 2 + x: 544 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 458f2a595e9ef0a10800000000000000 + internalID: 1877976741904054356 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u52516" + rect: + serializedVersion: 2 + x: 576 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7dd39be29e92cf670800000000000000 + internalID: 8573773872094592471 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u52517" + rect: + serializedVersion: 2 + x: 608 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 501e6fe00fc326b00800000000000000 + internalID: 820285083875729669 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u52518" + rect: + serializedVersion: 2 + x: 640 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0c0ae88e57546620800000000000000 + internalID: 2766432134647909391 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u52519" + rect: + serializedVersion: 2 + x: 672 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 03f2e5c901db92d30800000000000000 + internalID: 4407261589399285552 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5251\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 704 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24f740699be2e9050800000000000000 + internalID: 5809131943975223106 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5251\u65B0\u4FEE\u9752\u94DC\u5E95\u5B50" + rect: + serializedVersion: 2 + x: 736 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ace5266f3635abf30800000000000000 + internalID: 4592074458858151626 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5251\u7BB1" + rect: + serializedVersion: 2 + x: 768 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5db7efb8326ac7f20800000000000000 + internalID: 3421792488497511381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5251\u9F99\u6E0A" + rect: + serializedVersion: 2 + x: 800 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 53a76a73b8dc2b960800000000000000 + internalID: 7616375917654735413 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5347\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 832 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62197e26099f07f40800000000000000 + internalID: 5724349524917850406 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5723" + rect: + serializedVersion: 2 + x: 864 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b342668c4c2b5b60800000000000000 + internalID: 7735825492122682289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5723\u5251" + rect: + serializedVersion: 2 + x: 896 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad3d04af0cf356840800000000000000 + internalID: 5216645841443410906 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5929\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 928 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24ab6486c36420620800000000000000 + internalID: 2738828748656130626 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5929\u72C2\u9CA8" + rect: + serializedVersion: 2 + x: 960 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc75531b164e789f0800000000000000 + internalID: -466152928173533236 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5929\u732A" + rect: + serializedVersion: 2 + x: 992 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5af59f651281b1040800000000000000 + internalID: 4619312374270746533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5929\u795E\u8C5A" + rect: + serializedVersion: 2 + x: 1024 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a598a4626ba4b4e80800000000000000 + internalID: -8193372950883563174 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5929\u864E\u5996" + rect: + serializedVersion: 2 + x: 1056 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d20e43903ad68a110800000000000000 + internalID: 1272387441733722157 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5929\u8708\u86A3" + rect: + serializedVersion: 2 + x: 1088 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 848be379f539941a0800000000000000 + internalID: -6824761721534629816 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5929\u88D9" + rect: + serializedVersion: 2 + x: 1120 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4dcbf36734fc3e080800000000000000 + internalID: -9159249328487809836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u5929\u978B" + rect: + serializedVersion: 2 + x: 1152 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5bf64e1e31fa22320800000000000000 + internalID: 2531778440464723893 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u65A7" + rect: + serializedVersion: 2 + x: 1184 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5ad8cdd3c368258b0800000000000000 + internalID: -5164918229346513499 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u6C99\u602A\u5361\u72471" + rect: + serializedVersion: 2 + x: 1216 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 935275048790f25e0800000000000000 + internalID: -1932315303038474951 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u6C99\u602A\u5361\u72472" + rect: + serializedVersion: 2 + x: 1248 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 045fd5b85652abd20800000000000000 + internalID: 3294987195435054400 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u6C99\u602A\u5361\u72473" + rect: + serializedVersion: 2 + x: 1280 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 059716c037e542830800000000000000 + internalID: 4045462213507512656 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u6C99\u602A\u5361\u72474" + rect: + serializedVersion: 2 + x: 1312 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 60a53585d15eb3e50800000000000000 + internalID: 6790272777389824518 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u6C99\u602A\u5361\u72475" + rect: + serializedVersion: 2 + x: 1344 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74971e6ef185b4fb0800000000000000 + internalID: -4662536095171249849 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u6C99\u602A\u5361\u72476" + rect: + serializedVersion: 2 + x: 1376 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1e6d27ab6c7695d0800000000000000 + internalID: -3056118495316185573 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u6C99\u602A\u5361\u72477" + rect: + serializedVersion: 2 + x: 1408 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0a06e3c031fec4b0800000000000000 + internalID: -5418128109932770803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u6C99\u602A\u5361\u72478" + rect: + serializedVersion: 2 + x: 1440 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69e97fe644c462440800000000000000 + internalID: 4910696300497313430 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u72D0\u4E4B\u7FBD" + rect: + serializedVersion: 2 + x: 1472 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7cb62dcb9dabe6ad0800000000000000 + internalID: -2707020881664513081 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u7BAD\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 1504 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a48d0604911d73b20800000000000000 + internalID: 3114187573734463562 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u7FBD\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 1536 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f35ce08a7c4f34a80800000000000000 + internalID: -8483668134680672961 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u7FD4\u4E4B\u7FBD" + rect: + serializedVersion: 2 + x: 1568 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10e38297bcc884d80800000000000000 + internalID: -8266202310499615231 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u7FD4\u9CA8\u7684\u7259\u9F7F" + rect: + serializedVersion: 2 + x: 1600 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 504fe88f519a10100800000000000000 + internalID: 72524980844164101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u864E\u517D\u6076\u7075" + rect: + serializedVersion: 2 + x: 1632 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37fb6fa394d980020800000000000000 + internalID: 2308267746874802035 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u864E\u517D\u9057\u9AB8" + rect: + serializedVersion: 2 + x: 1664 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9aa9552de85a8fd20800000000000000 + internalID: 3312579558763764393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u86C7\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 1696 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6ce1e3fdc1d769f0800000000000000 + internalID: -475180553174127509 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u884C\u566809" + rect: + serializedVersion: 2 + x: 1728 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 85c4645d5650a1d80800000000000000 + internalID: -8279299030039245736 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u884C\u5668\u52A0\u901F\u5668" + rect: + serializedVersion: 2 + x: 1760 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7290ee5e22cfe0910800000000000000 + internalID: 1805657727438817575 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u884C\u5668\u5996\u517D\u767D\u51E4\u51F0" + rect: + serializedVersion: 2 + x: 1792 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 402f0f96b80545a60800000000000000 + internalID: 7661837425772130820 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u884C\u5668\u8D34\u9F99\u6E0A\u627F\u5F71" + rect: + serializedVersion: 2 + x: 1824 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd04599f2514f52b0800000000000000 + internalID: -5593680387540434723 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u9556" + rect: + serializedVersion: 2 + x: 1856 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac86a206763572590800000000000000 + internalID: -7699093334506444598 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u9CD0" + rect: + serializedVersion: 2 + x: 1888 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2eb8505d5755b7260800000000000000 + internalID: 7096359602425793506 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u9CD01" + rect: + serializedVersion: 2 + x: 1920 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4445175338a16e480800000000000000 + internalID: -8870373265219955644 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u9CD02" + rect: + serializedVersion: 2 + x: 1952 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 36849018670eae240800000000000000 + internalID: 4821913150629169251 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u9CD03" + rect: + serializedVersion: 2 + x: 1984 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8eab0914ee179b20800000000000000 + internalID: 3141013230135783050 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u9E1F\u8840\u6DB2" + rect: + serializedVersion: 2 + x: 2016 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4de15d1c81ab0ac10800000000000000 + internalID: 2062853244829638356 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u9E70\u91D1\u4EE4" + rect: + serializedVersion: 2 + x: 2048 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fb40b47450cbd0b0800000000000000 + internalID: -5702753034167104524 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u9E70\u91D1\u94A5" + rect: + serializedVersion: 2 + x: 2080 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 196ec53e1a60e55d0800000000000000 + internalID: -3072010603446081903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u9E70\u94A5\u5319\u94F8\u4EF6" + rect: + serializedVersion: 2 + x: 2112 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d712487bbf4706910800000000000000 + internalID: 1828590073176924541 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DE\u9F99\u5750\u9A91" + rect: + serializedVersion: 2 + x: 2144 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 71c10bda7c1d40dd0800000000000000 + internalID: -2520659235877938153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98DF\u4EBA\u82B1\u79CD\u5B50" + rect: + serializedVersion: 2 + x: 2176 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c05d81fa47daab50800000000000000 + internalID: 6605328520372375748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u98E8\u8D5E\u79CB\u5B9E\u679C\u7BEE" + rect: + serializedVersion: 2 + x: 2208 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6675241eeb2e58530800000000000000 + internalID: 3856737965363582822 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9910\u5385" + rect: + serializedVersion: 2 + x: 2240 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6da967bb6f847b4e0800000000000000 + internalID: -1966022487779665194 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9955\u992E\u7EB9\u846B\u82A6" + rect: + serializedVersion: 2 + x: 2272 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14191fde31f80db50800000000000000 + internalID: 6615945168366440769 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9971\u6EE1\u7684\u79CD\u5B50" + rect: + serializedVersion: 2 + x: 2304 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3fe5b1e16500f46d0800000000000000 + internalID: -3004182056560533773 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9977\u94F6" + rect: + serializedVersion: 2 + x: 2336 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b93d92ce2c8ae1c50800000000000000 + internalID: 6637928455929975707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u997F\u72FC" + rect: + serializedVersion: 2 + x: 2368 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d298a71a760b7d6d0800000000000000 + internalID: -2965707870462899923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9996\u4E4C" + rect: + serializedVersion: 2 + x: 2400 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 46f576f790e97d100800000000000000 + internalID: 132748477660094308 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9996\u7EA7\u96D5\u50CF" + rect: + serializedVersion: 2 + x: 2432 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7409a1d7a5c206be0800000000000000 + internalID: -1486139109874692025 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9996\u9886\u5934\u9885" + rect: + serializedVersion: 2 + x: 2464 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca6b714da5d56b8f0800000000000000 + internalID: -525129661855320404 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9996\u9886\u5C38\u4F53" + rect: + serializedVersion: 2 + x: 2496 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25c20e1191f6a7c40800000000000000 + internalID: 5510839247505992786 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9996\u9970\u76D2" + rect: + serializedVersion: 2 + x: 2528 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 255e9076d677ac850800000000000000 + internalID: 6398057532397053266 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9999\u4E38\u7C89" + rect: + serializedVersion: 2 + x: 2560 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a4720cbca5a1cf530800000000000000 + internalID: 3890013155409012554 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9999\u56CA\u8170\u997012" + rect: + serializedVersion: 2 + x: 2592 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 697e59e8c847fc810800000000000000 + internalID: 1787775724125808534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9999\u56CA\u8170\u997013" + rect: + serializedVersion: 2 + x: 2624 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48f3bc17243548f50800000000000000 + internalID: 6882717675371052932 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9999\u6728\u96D5\u6247" + rect: + serializedVersion: 2 + x: 2656 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0a1868ba31bc84a0800000000000000 + internalID: -6589697288989828598 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9999\u67CF\u6C90\u6D74\u6876" + rect: + serializedVersion: 2 + x: 2688 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 841a7c0db45763d60800000000000000 + internalID: 7869606367362261320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9999\u69DF\u73AB\u7470" + rect: + serializedVersion: 2 + x: 2720 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0347a0e6d801873a0800000000000000 + internalID: -6667561048699407312 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9999\u69DF\u73AB\u7470\u74DC\u68F1\u7F50" + rect: + serializedVersion: 2 + x: 2752 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6aa25ed6ccbaa33b0800000000000000 + internalID: -5531920297765819738 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9999\u7CBE\u7EF3" + rect: + serializedVersion: 2 + x: 2784 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 91d06c40598a6b190800000000000000 + internalID: -7946979134464979687 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9999\u80A0\u5355\u624B\u77ED" + rect: + serializedVersion: 2 + x: 2816 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 20c33d12ea4367d30800000000000000 + internalID: 4428785206061906946 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9999\u80A0\u9570\u5200" + rect: + serializedVersion: 2 + x: 2848 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fd018317e50d2e890800000000000000 + internalID: -7430147331162894113 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9999\u8349\u68D2\u68D2\u7CD6" + rect: + serializedVersion: 2 + x: 2880 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc085c37e84de8ca0800000000000000 + internalID: -6012634744200265521 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9999\u8549" + rect: + serializedVersion: 2 + x: 2912 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b153e7fe075eaafb0800000000000000 + internalID: -4635640593207380709 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A6C\u4E0A\u6709\u798F" + rect: + serializedVersion: 2 + x: 2944 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c778a5e5d1b3b5dc0800000000000000 + internalID: -3649258075730573444 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A6C\u724C" + rect: + serializedVersion: 2 + x: 2976 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e9e7f2deb27632e30800000000000000 + internalID: 4477535892896972446 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A6C\u8E44\u83B2" + rect: + serializedVersion: 2 + x: 3008 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59bd6df96030dab30800000000000000 + internalID: 4300096546195037077 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A6D\u517D\u4EE4" + rect: + serializedVersion: 2 + x: 3040 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4041b1dbefe348c80800000000000000 + internalID: -8321456947658550268 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A6D\u517D\u4EE42" + rect: + serializedVersion: 2 + x: 3072 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 278b201effc8106a0800000000000000 + internalID: -6484746957817202574 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A6D\u517D\u4EE43" + rect: + serializedVersion: 2 + x: 3104 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: acfff5963d1417b40800000000000000 + internalID: 5436198601474703306 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A6D\u9B54\u5E61\u6756" + rect: + serializedVersion: 2 + x: 3136 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd277cc881a55f850800000000000000 + internalID: 6410128706119365341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A71\u866B\u836F" + rect: + serializedVersion: 2 + x: 3168 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 151da6cf7b00324c0800000000000000 + internalID: -4313603227876929199 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A71\u90AA\u6C34\u6676" + rect: + serializedVersion: 2 + x: 3200 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 998d5d060d4db8420800000000000000 + internalID: 2633432398571100313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A71\u9B3C\u7C89" + rect: + serializedVersion: 2 + x: 3232 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e3cbacdde7f9cc20800000000000000 + internalID: 3227383208969225185 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A71\u9B54\u7BAD" + rect: + serializedVersion: 2 + x: 3264 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe33d912a1f0263a0800000000000000 + internalID: -6673755092902136849 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A71\u9F99\u6756" + rect: + serializedVersion: 2 + x: 3296 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c29d921e1b37eee60800000000000000 + internalID: 7993453596453230892 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A7C\u7ED2\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 3328 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3ba6897ebf25d6110800000000000000 + internalID: 1255751112982031027 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A86\u9A7C" + rect: + serializedVersion: 2 + x: 3360 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04b501abe6635c080800000000000000 + internalID: -9167861617246840000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A90\u9AA5\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 3392 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 26828f1fd1d75bb70800000000000000 + internalID: 8914168605016860770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A90\u9AA5\u6218\u94E0" + rect: + serializedVersion: 2 + x: 3424 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1f52b96d73b52fb0800000000000000 + internalID: -4673131687101440228 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A90\u9AA5\u8155\u7532" + rect: + serializedVersion: 2 + x: 3456 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12b727378b66c6160800000000000000 + internalID: 7020098861560658721 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A90\u9AA5\u978B" + rect: + serializedVersion: 2 + x: 3488 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e718b959a4665e400800000000000000 + internalID: 352800616342061438 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A91\u5BA0\u9A6C\u767D" + rect: + serializedVersion: 2 + x: 3520 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db168a701cbd01f00800000000000000 + internalID: 1085609132299936189 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A91\u5BA0\u9A6C\u7EA2" + rect: + serializedVersion: 2 + x: 3552 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e71e146de8ed88200800000000000000 + internalID: 182640489969869182 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A91\u5BA0\u9A6C\u7EFF" + rect: + serializedVersion: 2 + x: 3584 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b177ecde476a4050800000000000000 + internalID: 5785550259722088886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A91\u5BA0\u9A6C\u9ED1" + rect: + serializedVersion: 2 + x: 3616 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75537c7258e1c9c90800000000000000 + internalID: -7161815750179080873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9A91\u9F99" + rect: + serializedVersion: 2 + x: 3648 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 917c467978ec97650800000000000000 + internalID: 6231238641199662873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AA8\u6756" + rect: + serializedVersion: 2 + x: 3680 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8ee6e07e694b94800800000000000000 + internalID: 597206985817878248 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AA8\u7070" + rect: + serializedVersion: 2 + x: 3712 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac3701af530e95500800000000000000 + internalID: 385585765550158794 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AA8\u77E2" + rect: + serializedVersion: 2 + x: 3744 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1095da1dabf2aef0800000000000000 + internalID: -98239520950611940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AA8\u9F7F\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3776 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9db5602ba8cc96ee0800000000000000 + internalID: -1267256924063769639 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AB0\u5B50\u5151\u6362\u5238" + rect: + serializedVersion: 2 + x: 3808 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e9f1b0ca5edc4350800000000000000 + internalID: 6002416884739340772 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AB7\u9AC5" + rect: + serializedVersion: 2 + x: 3840 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd5392340216ee670800000000000000 + internalID: 8569893932126254557 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u539F\u65CB\u9F9F\u8089" + rect: + serializedVersion: 2 + x: 3872 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 629f825584878b0c0800000000000000 + internalID: -4559762370650900186 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u70AD\u94A2" + rect: + serializedVersion: 2 + x: 3904 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 973c7027105eb7010800000000000000 + internalID: 1187794721113097081 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7" + rect: + serializedVersion: 2 + x: 3936 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 420082ada7cf71dc0800000000000000 + internalID: -3668185766893715420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u539A\u78F7\u7B26" + rect: + serializedVersion: 2 + x: 3968 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d559a97d9c6a3bce0800000000000000 + internalID: -1390584474091481763 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u5408\u91D1\u94A2" + rect: + serializedVersion: 2 + x: 4000 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 972648786aa964b30800000000000000 + internalID: 4271271336636342905 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u5468\u5929\u6B8B\u9875" + rect: + serializedVersion: 2 + x: 4032 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25564c958fccf3530800000000000000 + internalID: 3837010774572950866 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u5934\u76D4\u56FE\u6807" + rect: + serializedVersion: 2 + x: 4064 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10109c21ba4896ea0800000000000000 + internalID: -5879021968266034943 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u5E7B\u5929\u6B8B\u9875" + rect: + serializedVersion: 2 + x: 0 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1ff5105c25dbeab0800000000000000 + internalID: -4977650576829055203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u5F13" + rect: + serializedVersion: 2 + x: 32 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 918abe93259b3d530800000000000000 + internalID: 3878647466906331161 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u5F3A\u5316\u76AE\u9769" + rect: + serializedVersion: 2 + x: 64 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 830c79a5fd5bc5ca0800000000000000 + internalID: -6026742230426337224 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u5FA1\u795E\u5F55" + rect: + serializedVersion: 2 + x: 96 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c095e694eff17e1b0800000000000000 + internalID: -5627494032362022644 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u6613\u5BB9\u5377\u8F74" + rect: + serializedVersion: 2 + x: 128 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b530be4629fd3fbc0800000000000000 + internalID: -3750408244818148517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u6728\u6599" + rect: + serializedVersion: 2 + x: 160 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e3c50bea440a42050800000000000000 + internalID: 5774916839044832318 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u6DEC\u706B\u5242" + rect: + serializedVersion: 2 + x: 192 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f30322f7641ff4490800000000000000 + internalID: -7759718347853123521 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u706B\u4E91\u7B26" + rect: + serializedVersion: 2 + x: 224 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4eb2e83e632c44610800000000000000 + internalID: 1604620908252507108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u7126\u70AD" + rect: + serializedVersion: 2 + x: 256 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9b38586d5d9541e10800000000000000 + internalID: 2167456095634031545 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u72FC\u517D" + rect: + serializedVersion: 2 + x: 288 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 578665094c7366fc0800000000000000 + internalID: -3502050342859282315 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u7384\u5929\u6B8B\u9875" + rect: + serializedVersion: 2 + x: 320 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a05a4708ddee60cf0800000000000000 + internalID: -286278891181136630 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u7EA7\u5168\u80FD\u6D17\u70B9\u5238" + rect: + serializedVersion: 2 + x: 352 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 838c1c8e8f34fac20800000000000000 + internalID: 3219866994929158200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u80FD\u529B\u6D17\u70B9\u5238" + rect: + serializedVersion: 2 + x: 384 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7eeb086d6ec071f40800000000000000 + internalID: 5699038039041425127 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u84DD\u5F71\u7B26" + rect: + serializedVersion: 2 + x: 416 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 290bbd9c470213100800000000000000 + internalID: 85885553871663250 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u7EA7\u9752\u5149\u7B26" + rect: + serializedVersion: 2 + x: 448 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 080597c95bba2b3d0800000000000000 + internalID: -3192300389349633920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9AD8\u811A\u73BB\u7483\u7A7A\u9152\u676F" + rect: + serializedVersion: 2 + x: 480 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d08b763c73b01d6b0800000000000000 + internalID: -5273421354544678899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u51A5\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 512 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 479293077b80ebc20800000000000000 + internalID: 3224023967198685556 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u51A5\u6212\u6307" + rect: + serializedVersion: 2 + x: 544 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f0d30ce4764c7410800000000000000 + internalID: 1476132245860503796 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u51A5\u79D8\u6CD5\u88E4" + rect: + serializedVersion: 2 + x: 576 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d54556b5061e0680800000000000000 + internalID: -8787061609163569711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u51A5\u7B26\u6587\u4F69" + rect: + serializedVersion: 2 + x: 608 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34805d25e75909900800000000000000 + internalID: 689215112775796803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u51A5\u91CD\u7532" + rect: + serializedVersion: 2 + x: 640 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 216741f9f1fb6db30800000000000000 + internalID: 4311843835787638290 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u51A5\u91CD\u76D4" + rect: + serializedVersion: 2 + x: 672 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 609da46ebb7b84910800000000000000 + internalID: 1821908066921797894 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u51A5\u9879\u94FE" + rect: + serializedVersion: 2 + x: 704 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc146f1ebd7c67c00800000000000000 + internalID: 898124922909770188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u5239\u8FFD\u9B42\u94F3" + rect: + serializedVersion: 2 + x: 736 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c660767b9ffd309d0800000000000000 + internalID: -2809155478932224404 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u5578\u6218\u65A7" + rect: + serializedVersion: 2 + x: 768 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2eed9dd603cd0c00800000000000000 + internalID: 868564737407708718 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u5934\u5200" + rect: + serializedVersion: 2 + x: 800 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea5f1535d98a83d90800000000000000 + internalID: -7117753817397856850 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u5E06\u6212" + rect: + serializedVersion: 2 + x: 832 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d4fd5a883db506cd0800000000000000 + internalID: -2566950823512383667 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u5E06\u8170\u4F69" + rect: + serializedVersion: 2 + x: 864 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4cdcae6bd2b05110800000000000000 + internalID: 1247693752306031695 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u5E06\u8F7B\u5E3D" + rect: + serializedVersion: 2 + x: 896 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 76aad29450313dc20800000000000000 + internalID: 3229946271178271335 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u5E06\u8F7B\u8155" + rect: + serializedVersion: 2 + x: 928 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 53f4bbb2ece2f9210800000000000000 + internalID: 1341842677011533621 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u5E06\u91CD\u7532" + rect: + serializedVersion: 2 + x: 960 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 524e5ecf5bb66d3a0800000000000000 + internalID: -6641002171135040475 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u5E06\u91CD\u8155" + rect: + serializedVersion: 2 + x: 992 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0292bbd27c4287470800000000000000 + internalID: 8392498343489251616 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u5E06\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1024 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8837b036e212587e0800000000000000 + internalID: -1763967195931774072 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u6012\u957F\u5200" + rect: + serializedVersion: 2 + x: 1056 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eda07ca8327f4dc10800000000000000 + internalID: 2077557060148857566 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u6276\u62A4\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 1088 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5634426fd9cdc310800000000000000 + internalID: 1427018618209842778 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u6276\u9B54\u529B\u7B26" + rect: + serializedVersion: 2 + x: 1120 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9926e7ce2a2c772a0800000000000000 + internalID: -6739704312328461671 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u65A7\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 1152 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b67f2fd0a77bfaf20800000000000000 + internalID: 3436166775554897771 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u706B" + rect: + serializedVersion: 2 + x: 1184 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1c007fef9e190840800000000000000 + internalID: 5190713717786938395 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u753B\u7B26" + rect: + serializedVersion: 2 + x: 1216 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 67072e1737451ad40800000000000000 + internalID: 5593845066979504246 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u8138\u9762\u5177" + rect: + serializedVersion: 2 + x: 1248 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a394e2ed97de47550800000000000000 + internalID: 6157807698196711738 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u95E8\u5341\u4E09\u9488" + rect: + serializedVersion: 2 + x: 1280 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a9bb083ec073abdd0800000000000000 + internalID: -2469600917163295846 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u9634\u706B\u67AA" + rect: + serializedVersion: 2 + x: 1312 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad1d5a371c06172a0800000000000000 + internalID: -6741500783211720230 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u96C4\u62F3\u5957" + rect: + serializedVersion: 2 + x: 1344 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ed05d3c031e07fe70800000000000000 + internalID: 9148796642998964446 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B3C\u96C4\u6775" + rect: + serializedVersion: 2 + x: 1376 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e12ef20ac0d7ef7f0800000000000000 + internalID: -576886209076272610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B42\u529B\u9B54\u76D2" + rect: + serializedVersion: 2 + x: 1408 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8934b263ae9c87d30800000000000000 + internalID: 4429512241287218072 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B42\u5370\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 1440 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f93570fd010a28c20800000000000000 + internalID: 3207301878962934687 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B42\u5370\u4E4B\u77F3\u5305\u88F9" + rect: + serializedVersion: 2 + x: 1472 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 735a6b5f0fe4e21a0800000000000000 + internalID: -6832436787852958409 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B42\u5370\u4E4B\u77F3\u5DE8\u86CB" + rect: + serializedVersion: 2 + x: 1504 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a23048811fedc96f0800000000000000 + internalID: -676420716932627670 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B42\u7275\u68A6\u8426" + rect: + serializedVersion: 2 + x: 1536 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca7d1749124d669e0800000000000000 + internalID: -1628380974558357588 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B42\u9B44\u4E4B\u706B" + rect: + serializedVersion: 2 + x: 1568 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a80a35e5c9617bf0800000000000000 + internalID: -328364999146075998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45" + rect: + serializedVersion: 2 + x: 1600 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7e83e2cc5f7770e0800000000000000 + internalID: -2272207450601714049 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u4E4B\u6C34\u6676" + rect: + serializedVersion: 2 + x: 1632 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 28c255228901e10e0800000000000000 + internalID: -2297380514315293566 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u529B\u516C\u4E3B\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 1664 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c068a8a75e5f29f0800000000000000 + internalID: -491070103775321920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u529B\u516C\u4E3B\u88C5\u4E0B\u8863" + rect: + serializedVersion: 2 + x: 1696 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f3c867608adc63b70800000000000000 + internalID: 8878509836954143807 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u529B\u516C\u4E3B\u88C5\u5934\u9970" + rect: + serializedVersion: 2 + x: 1728 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ec9e9d213e7959250800000000000000 + internalID: 5950829484169619918 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u529B\u516C\u4E3B\u88C5\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1760 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c45729204e9d125c0800000000000000 + internalID: -4241869800687372980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u529B\u516C\u4E3B\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1792 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7458fcdf590712050800000000000000 + internalID: 5774019986776360263 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u5F71" + rect: + serializedVersion: 2 + x: 1824 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6891e7550ddd1ea20800000000000000 + internalID: 3089994706210134406 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u5F71\u62F3\u5957" + rect: + serializedVersion: 2 + x: 1856 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 51de598899a209280800000000000000 + internalID: -9038677613222695659 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u5F71\u6362\u8272\u6A59\u8272" + rect: + serializedVersion: 2 + x: 1888 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90f0fabe76e5bdea0800000000000000 + internalID: -5846975890781696247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u707516\u54C1\u6756" + rect: + serializedVersion: 2 + x: 1920 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7d96def9bbe2c3d0800000000000000 + internalID: -3187726402147934854 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E03\u8D24\u6756" + rect: + serializedVersion: 2 + x: 1952 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c05d16181e0cc890800000000000000 + internalID: -7436553388082507584 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u6709\u67561" + rect: + serializedVersion: 2 + x: 1984 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba6db6b2d5d4944d0800000000000000 + internalID: -3149901401813166421 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u6709\u67562" + rect: + serializedVersion: 2 + x: 2016 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 88da3498be00dbe60800000000000000 + internalID: 7979535126390615432 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u6709\u67564" + rect: + serializedVersion: 2 + x: 2048 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2cbc3fd21bf8f77a0800000000000000 + internalID: -6377220556190397502 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C501\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2080 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65375f36a93571010800000000000000 + internalID: 1159487351638291286 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C501\u624B\u5957" + rect: + serializedVersion: 2 + x: 2112 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e64da58113f8120e0800000000000000 + internalID: -2296396893957467026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C501\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2144 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de96425d15a2be8d0800000000000000 + internalID: -2816110611033462291 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C501\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2176 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89eb547c25d225e40800000000000000 + internalID: 5643623116602457752 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C502\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2208 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7447201f5603ceae0800000000000000 + internalID: -1518785759937399737 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C502\u624B\u5957" + rect: + serializedVersion: 2 + x: 2240 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 72bda88b706a763a0800000000000000 + internalID: -6672181770835010777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C502\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2272 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6fdc426ea2cdb6ab0800000000000000 + internalID: -5013671683339006474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C502\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2304 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dec36fbadbbbbdb50800000000000000 + internalID: 6619090500659330285 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C503\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2336 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6c56ca6d4a79dc220800000000000000 + internalID: 2507827301747287494 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C503\u624B\u5957" + rect: + serializedVersion: 2 + x: 2368 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bc492195fe2e9b660800000000000000 + internalID: 7402196980179571915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C503\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2400 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 509610e50e5d30cb0800000000000000 + internalID: -4898836810022426363 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C503\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2432 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48c5d70843b6b7820800000000000000 + internalID: 2917043056890698884 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C504\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2464 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d86e520302280aa60800000000000000 + internalID: 7683284039052420749 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C504\u624B\u5957" + rect: + serializedVersion: 2 + x: 2496 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e92bbcdb5537be80800000000000000 + internalID: -8162997130924185115 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C504\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2528 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c4ab9fcec99ddd870800000000000000 + internalID: 8709356522418321996 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C504\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2560 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59cb105c209711240800000000000000 + internalID: 4760719333909445781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C505\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2592 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 35e362b0cf015f280800000000000000 + internalID: -9010276804779950509 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C505\u624B\u5957" + rect: + serializedVersion: 2 + x: 2624 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8c44db850361c8b0800000000000000 + internalID: -5133713224753722230 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C505\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2656 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 946ed32994ed8b000800000000000000 + internalID: 52035803282269769 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u670D\u88C505\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2688 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 939c4d9b19b616900800000000000000 + internalID: 675939692714445113 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4E13\u7528\u67563" + rect: + serializedVersion: 2 + x: 2720 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bae423d0032abe670800000000000000 + internalID: 8569121043266031275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u4ED9\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 2752 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 11e754cdfddb226d0800000000000000 + internalID: -3016640031213912559 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u516B\u519B\u6756" + rect: + serializedVersion: 2 + x: 2784 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22cc661b6ade5de30800000000000000 + internalID: 4527786300587559970 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u5927\u5E08" + rect: + serializedVersion: 2 + x: 2816 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2d5fec246455b390800000000000000 + internalID: -7803237990122169046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 2848 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ca71049977c7da140800000000000000 + internalID: 4732575636550326188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u65B0\u624B\u6756" + rect: + serializedVersion: 2 + x: 2880 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f4765c51610a61010800000000000000 + internalID: 1159289970809464655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u661F\u76D8" + rect: + serializedVersion: 2 + x: 2912 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c826f7136faf5fb40800000000000000 + internalID: 5473556857438036620 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u8170\u724C" + rect: + serializedVersion: 2 + x: 2944 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 949fd9ff106a76ea0800000000000000 + internalID: -5879548260995172023 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u94ED\u724C" + rect: + serializedVersion: 2 + x: 2976 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 13e1593af238b4ef0800000000000000 + internalID: -122860324191396303 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B45\u7075\u9B54\u6280\u80FD\u4E66" + rect: + serializedVersion: 2 + x: 3008 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04e803ebad0586d00800000000000000 + internalID: 966111020494917184 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u5929\u6212" + rect: + serializedVersion: 2 + x: 3040 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c1a51473176cec3c0800000000000000 + internalID: -4337311201550575076 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u65B9vip\u8D35\u5BBE\u5361" + rect: + serializedVersion: 2 + x: 3072 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3304ded35ef81ed50800000000000000 + internalID: 6764846330036437043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u65B9\u4E50\u900F\u5E01" + rect: + serializedVersion: 2 + x: 3104 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d6ba7e267754a0e20800000000000000 + internalID: 3317540454574566253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u65B9\u4E50\u900F\u9080\u8BF7\u51FD" + rect: + serializedVersion: 2 + x: 3136 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6dae7932eb881cb60800000000000000 + internalID: 7764637582785768150 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u65B9\u8463\u4E8B\u4F1A\u5BC6\u4FE1" + rect: + serializedVersion: 2 + x: 3168 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 496c91ea1be571a60800000000000000 + internalID: 7644683009707853460 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u65B9\u8463\u4E8B\u59D4\u6258\u4E66" + rect: + serializedVersion: 2 + x: 3200 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bcc5e9a0060476a0800000000000000 + internalID: -6452525766194901836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u65F6\u88C5\u5305\u88F9" + rect: + serializedVersion: 2 + x: 3232 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4a017f237b0af1160800000000000000 + internalID: 6998489054651551908 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u68B0\u8760\u7684\u6BD2\u7259" + rect: + serializedVersion: 2 + x: 3264 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f281176c9df955f40800000000000000 + internalID: 5716651059702732847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u6CD5\u58F6" + rect: + serializedVersion: 2 + x: 3296 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7abe124b8c2c5dcb0800000000000000 + internalID: -4839748057268360281 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u6CD5\u5FC3" + rect: + serializedVersion: 2 + x: 3328 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0c3dfb33eb65b3b80800000000000000 + internalID: -8414036103899655232 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u6CD5\u6676\u77F3" + rect: + serializedVersion: 2 + x: 3360 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a2e656dac67158fe0800000000000000 + internalID: -1187517171209245142 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u6CD5\u8D35\u65CF\u5973\u5DEB-\u8863\u670D32" + rect: + serializedVersion: 2 + x: 3392 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eefc26f01bd741000800000000000000 + internalID: 5767698955030510 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u6CD5\u8D35\u65CF\u5973\u5DEB-\u978B32" + rect: + serializedVersion: 2 + x: 3424 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f34739bddcbab28e0800000000000000 + internalID: -1717089932271193025 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u6CD5\u8D35\u65CF\u5973\u5DEB\u62A4\u815532" + rect: + serializedVersion: 2 + x: 3456 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c281b8fca75bdf6d0800000000000000 + internalID: -2955006241412540372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u6CD5\u8D35\u65CF\u7537\u5DEB-\u4E0A\u886332" + rect: + serializedVersion: 2 + x: 3488 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba0b6cb4cd8eaf6a0800000000000000 + internalID: -6414558686374088533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u6CD5\u8D35\u65CF\u7537\u5DEB-\u88E4\u5B5032" + rect: + serializedVersion: 2 + x: 3520 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9c0916bf8c19b4b0800000000000000 + internalID: -5424272872630055781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u6CD5\u8D35\u65CF\u7537\u5DEB-\u978B32" + rect: + serializedVersion: 2 + x: 3552 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cb1d34c92bbc04e60800000000000000 + internalID: 7944573710667862460 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u715E\u62A4\u817F" + rect: + serializedVersion: 2 + x: 3584 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b42cfcda1b8039db0800000000000000 + internalID: -4786472419746397621 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u715E\u6CD5\u888D" + rect: + serializedVersion: 2 + x: 3616 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 013598ffada38e190800000000000000 + internalID: -7933026031348657392 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u715E\u76D4" + rect: + serializedVersion: 2 + x: 3648 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 088c338ca06a95660800000000000000 + internalID: 7375108430034618496 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u715E\u79D8\u6CD5\u6212" + rect: + serializedVersion: 2 + x: 3680 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 340944c0b391d07d0800000000000000 + internalID: -2950674439458222013 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u715E\u8170\u4F69" + rect: + serializedVersion: 2 + x: 3712 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c65497a6eb488fb10800000000000000 + internalID: 2015506786613282156 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u715E\u8F7B\u7532" + rect: + serializedVersion: 2 + x: 3744 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9d4352b3060885c0800000000000000 + internalID: -4213110838458626659 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u715E\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3776 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a95eb12b7c30e5ab0800000000000000 + internalID: -5017568778622605926 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u715E\u9B3C\u529B\u6212" + rect: + serializedVersion: 2 + x: 3808 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8c48503c110849c0800000000000000 + internalID: -3942900253181064054 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u7259\u9879\u94FE" + rect: + serializedVersion: 2 + x: 3840 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3bed21139e7af1bf0800000000000000 + internalID: -351377625919070541 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u7532\u7384\u6B66\u5361\u72471" + rect: + serializedVersion: 2 + x: 3872 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a786f18c09bb4c1b0800000000000000 + internalID: -5637174603053832070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u7532\u7384\u6B66\u5361\u72472" + rect: + serializedVersion: 2 + x: 3904 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d3dfbfe24e38272a0800000000000000 + internalID: -6741180676156162755 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u7532\u7384\u6B66\u5361\u72473" + rect: + serializedVersion: 2 + x: 3936 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 22c477314b9b41ca0800000000000000 + internalID: -6047004216579896286 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u7532\u7384\u6B66\u5361\u72474" + rect: + serializedVersion: 2 + x: 3968 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 505065c2d4634a100800000000000000 + internalID: 118279195302692101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u7532\u7384\u6B66\u5361\u72475" + rect: + serializedVersion: 2 + x: 4000 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c25418b368b62da20800000000000000 + internalID: 3085646918970328364 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u7532\u7384\u6B66\u5361\u72476" + rect: + serializedVersion: 2 + x: 4032 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e6b7c3157d05fea0800000000000000 + internalID: -5839746545321789726 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u7532\u7384\u6B66\u5361\u72477" + rect: + serializedVersion: 2 + x: 4064 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c26e54cbfe5cf52d0800000000000000 + internalID: -3287691569510619604 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u7532\u7384\u6B66\u5361\u72478" + rect: + serializedVersion: 2 + x: 0 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 93bbba4b76917c810800000000000000 + internalID: 1785423710479170361 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u754C\u6218\u5200" + rect: + serializedVersion: 2 + x: 32 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0cfd8b635a8e32430800000000000000 + internalID: 3757102310442459072 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u754C\u6CD5\u5251" + rect: + serializedVersion: 2 + x: 64 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d566ccf69a2fe2c0800000000000000 + internalID: -4400251482943363627 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u795E\u7CBE\u9B44" + rect: + serializedVersion: 2 + x: 96 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1ab9d79dbac4d6390800000000000000 + internalID: -7823512676700677215 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u795E\u86A9\u5C24" + rect: + serializedVersion: 2 + x: 128 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e1cba9c61f80ca40800000000000000 + internalID: 5386462482370642405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u79CD" + rect: + serializedVersion: 2 + x: 160 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac9cac4edb4ac9310800000000000000 + internalID: 1413185518581762506 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u7F50" + rect: + serializedVersion: 2 + x: 192 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b783983e300a0bc70800000000000000 + internalID: 8984857195166906491 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u9B42\u7075\u9F9B" + rect: + serializedVersion: 2 + x: 224 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: af37b15383f0dece0800000000000000 + internalID: -1374425577194556422 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9B54\u9B42\u79D8\u7B08" + rect: + serializedVersion: 2 + x: 256 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3448dd7daf244a560800000000000000 + internalID: 7324052539142145091 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9C7C" + rect: + serializedVersion: 2 + x: 288 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c388add6fedfcf040800000000000000 + internalID: 4682896917340522556 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9C7C2" + rect: + serializedVersion: 2 + x: 320 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e14d9296f15a6d0e0800000000000000 + internalID: -2245425809870695394 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9C7C\u4EBA\u7684\u5934" + rect: + serializedVersion: 2 + x: 352 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dcc7c3ea7d8536310800000000000000 + internalID: 1397057992779398349 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9C7C\u7FC5" + rect: + serializedVersion: 2 + x: 384 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da25b8f5ed3455860800000000000000 + internalID: 7517989775329677997 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9C7C\u9AA8" + rect: + serializedVersion: 2 + x: 416 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cdc94325afc776890800000000000000 + internalID: -7464860442780459812 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9C7C\u9AA8\u7AD6\u7434" + rect: + serializedVersion: 2 + x: 448 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61ada3c5371f245c0800000000000000 + internalID: -4232555222003951082 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9C7C\u9CCD" + rect: + serializedVersion: 2 + x: 480 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6a8b08c6588bc45a0800000000000000 + internalID: -6535646076030895962 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9C9C\u6A59\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 512 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45b2899ce7f2db380800000000000000 + internalID: -8953948262548100268 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9C9C\u8089" + rect: + serializedVersion: 2 + x: 544 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1f374259d3445880800000000000000 + internalID: -8623192785840292067 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9C9C\u82B1" + rect: + serializedVersion: 2 + x: 576 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e09ed576677482a0800000000000000 + internalID: -6736127860691529501 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CA8\u76AE\u5E3D\u6A90" + rect: + serializedVersion: 2 + x: 608 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e67590298d37010b0800000000000000 + internalID: -5759976549406648466 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CA8\u76AE\u62A4\u5FC3\u955C\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 640 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ebc4efa73b9181cf0800000000000000 + internalID: -281446718057329474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CA8\u76AE\u62A4\u8155\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 672 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2b9dcb698f1633630800000000000000 + internalID: 3905573022169094578 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CA8\u76AE\u62A4\u819D\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 704 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c9336d5b6bafdca00800000000000000 + internalID: 778553973246669724 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CA8\u76AE\u62A4\u8E1D\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 736 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8eb18b0ed63d3a70800000000000000 + internalID: 8808256773510250123 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CA8\u76AE\u98D8\u5E26\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 768 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 05e7ef2ec0cab0090800000000000000 + internalID: -8067165136156197296 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB2\u9E4F" + rect: + serializedVersion: 2 + x: 800 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 59c8662218e463180800000000000000 + internalID: -9136028477539578731 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB2\u9E4F\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 832 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c7ac04f5b528da50800000000000000 + internalID: 6546023521796794308 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB2\u9E4F\u4E4B\u6E38" + rect: + serializedVersion: 2 + x: 864 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1e6d14f28dac23d0800000000000000 + internalID: -3230016054778565090 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB2\u9E4F\u4E4B\u9CDE" + rect: + serializedVersion: 2 + x: 896 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c9f94af12fe98eb0800000000000000 + internalID: -4716976205481772604 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB2\u9E4F\u6218\u94E0" + rect: + serializedVersion: 2 + x: 928 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ea134580feeab28e0800000000000000 + internalID: -1717086491251560018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB2\u9E4F\u7D2B\u7FBD" + rect: + serializedVersion: 2 + x: 960 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 35848839120d70590800000000000000 + internalID: -7707963394593634221 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB2\u9E4F\u8155\u7532" + rect: + serializedVersion: 2 + x: 992 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8e85b5759b3ec3d20800000000000000 + internalID: 3259730615483455720 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB2\u9E4F\u978B" + rect: + serializedVersion: 2 + x: 1024 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dd7bc7e1ae59d1e90800000000000000 + internalID: -7053316608625952803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB8\u6D9B\u901A\u7075\u5E08\u9CB8\u54C8\u5C14" + rect: + serializedVersion: 2 + x: 1056 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e64f366dfc5be4b10800000000000000 + internalID: 1967709991467218030 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB8\u76AE\u5E3D\u6A90" + rect: + serializedVersion: 2 + x: 1088 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d51293d45bcf5d5e0800000000000000 + internalID: -1885323013369814691 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB8\u76AE\u62A4\u5FC3\u955C\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 1120 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbe68344a8a2eb210800000000000000 + internalID: 1350563711596129981 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB8\u76AE\u62A4\u8155\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 1152 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 04b24170ce851abc0800000000000000 + internalID: -3773637242005476544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB8\u76AE\u62A4\u819D\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 1184 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e7491a6374a419e40800000000000000 + internalID: 5661387876301116542 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB8\u76AE\u62A4\u8E1D\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 1216 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 16cd7a672d40043c0800000000000000 + internalID: -4377493535823766431 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB8\u76AE\u98D8\u5E26\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 1248 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 768a02d036f7d0010800000000000000 + internalID: 1156720742702819431 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB8\u80F6\u5F13\u5F26" + rect: + serializedVersion: 2 + x: 1280 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a13af09f62823f770800000000000000 + internalID: 8643296257706533658 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB8\u80F6\u7EDE\u4E1D" + rect: + serializedVersion: 2 + x: 1312 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0b2cd9995d6b5040800000000000000 + internalID: 4637420472908917516 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB8\u80F6\u8FDE\u63A5\u73AF" + rect: + serializedVersion: 2 + x: 1344 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a53e6905ff98ea490800000000000000 + internalID: -7733091780486831270 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CB8\u9522\u4E4B\u773C" + rect: + serializedVersion: 2 + x: 1376 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68dd2a8862f59ee90800000000000000 + internalID: -6995955927037583994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CC4\u9C7C\u7684\u773C\u6CEA" + rect: + serializedVersion: 2 + x: 1408 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a69353d5b523da9f0800000000000000 + internalID: -455652619307370134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CC4\u9C7C\u76AE" + rect: + serializedVersion: 2 + x: 1440 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 969cf6a890cddc690800000000000000 + internalID: -7580160664259278487 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CC4\u9C7C\u8840" + rect: + serializedVersion: 2 + x: 1472 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3dc6bd4ea25ee32e0800000000000000 + internalID: -2144024400190804781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CD0\u7CBE1" + rect: + serializedVersion: 2 + x: 1504 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf27bcb22ae698fd0800000000000000 + internalID: -2339216888643751173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CD0\u7CBE2" + rect: + serializedVersion: 2 + x: 1536 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5d0dd2aa84a0dfe90800000000000000 + internalID: -6990419739400089387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CD0\u7CBE3" + rect: + serializedVersion: 2 + x: 1568 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 403917e93a2d13970800000000000000 + internalID: 8732992752627847940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CD0\u7CBE4" + rect: + serializedVersion: 2 + x: 1600 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 154c98f9c6e4159b0800000000000000 + internalID: -5093203475139279791 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CD0\u7CBE5" + rect: + serializedVersion: 2 + x: 1632 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4ac1b3d617b4fbae0800000000000000 + internalID: -1531422397746701148 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CD0\u7CBE6" + rect: + serializedVersion: 2 + x: 1664 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbbc89839a1872db0800000000000000 + internalID: -4816738712650462275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CDE\u7247" + rect: + serializedVersion: 2 + x: 1696 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 938ee1c6a8b148900800000000000000 + internalID: 685703324600559673 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9CDE\u7532\u5C71\u732B" + rect: + serializedVersion: 2 + x: 1728 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d0409bd1a20c0d360800000000000000 + internalID: 7192459892030505997 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E1F\u7A9D" + rect: + serializedVersion: 2 + x: 1760 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c277b23dbf17932b0800000000000000 + internalID: -5604322934892300500 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E1F\u7A9D2" + rect: + serializedVersion: 2 + x: 1792 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edc3d7ba3f3b6b9c0800000000000000 + internalID: -3911741367189160738 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E21\u817F" + rect: + serializedVersion: 2 + x: 1824 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0f16fa15b17d14e20800000000000000 + internalID: 3333181711565414896 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E21\u86CB\u4ED4" + rect: + serializedVersion: 2 + x: 1856 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e63fcf7abbbcfd710800000000000000 + internalID: 1720317589516514158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E22\u5C3E" + rect: + serializedVersion: 2 + x: 1888 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 635f8f05d4fcaa8d0800000000000000 + internalID: -2834225084498381514 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E23\u9E3E\u8170\u9970" + rect: + serializedVersion: 2 + x: 1920 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f368e18339a4804e0800000000000000 + internalID: -2015278837086124481 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E23\u9E3F\u957F\u5200" + rect: + serializedVersion: 2 + x: 1952 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e5305c9cb2be13c0800000000000000 + internalID: -4386872463866186265 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E2D\u5B50" + rect: + serializedVersion: 2 + x: 1984 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 35049f28e77e2ea90800000000000000 + internalID: -7286006716582772653 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E33\u8776\u821E" + rect: + serializedVersion: 2 + x: 2016 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8e0ba850be92ea600800000000000000 + internalID: 481368299562250472 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E33\u9E2F\u5251" + rect: + serializedVersion: 2 + x: 2048 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62b304c5bc060a700800000000000000 + internalID: 549545581081541414 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E33\u9E2F\u8170\u4F69\uFF08\u7537\uFF09" + rect: + serializedVersion: 2 + x: 2080 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d18ff5b1f1f18320800000000000000 + internalID: 2558592083765985748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E3D\u5B50\u5750\u9A91" + rect: + serializedVersion: 2 + x: 2112 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0eef7e8b07e24090800000000000000 + internalID: -8051619146963620342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E3F\u8499\u79D8\u6284" + rect: + serializedVersion: 2 + x: 2144 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 883ea207451d4d050800000000000000 + internalID: 5824510378686210952 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E45\u9EC4\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 2176 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ad407eced24ec1230800000000000000 + internalID: 3611011887143519450 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E64\u5750\u9A91" + rect: + serializedVersion: 2 + x: 2208 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a75da2fb98013ab60800000000000000 + internalID: 7756061167065945466 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E66\u9E49" + rect: + serializedVersion: 2 + x: 2240 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d49890faf17b8bb60800000000000000 + internalID: 7762155304481556813 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E70\u51FB\u4E4B\u5F13" + rect: + serializedVersion: 2 + x: 2272 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0116dcb696e91d320800000000000000 + internalID: 2581018237077381392 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E7F\u76AE\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 2304 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96d01091dd9d97ea0800000000000000 + internalID: -5874424695297602199 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E7F\u76AE\u6218\u94E0" + rect: + serializedVersion: 2 + x: 2336 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 806ee5c291150d840800000000000000 + internalID: 5246782734447076872 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E7F\u76AE\u8155\u7532" + rect: + serializedVersion: 2 + x: 2368 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 48863d126c1ed45a0800000000000000 + internalID: -6535319243157444476 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E7F\u76AE\u978B" + rect: + serializedVersion: 2 + x: 2400 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc17e15e1ddaa6530800000000000000 + internalID: 3849079948545257932 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E7F\u8338" + rect: + serializedVersion: 2 + x: 2432 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6fc2f56a1d53b8cf0800000000000000 + internalID: -249046179833238282 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E8B\u9E7F" + rect: + serializedVersion: 2 + x: 2464 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d466469650f3f1a30800000000000000 + internalID: 4188135470953424461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E92\u9E9F\u4E4B\u5FD7" + rect: + serializedVersion: 2 + x: 2496 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d02de8b28b50d91f0800000000000000 + internalID: -1036666050662444531 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E92\u9E9F\u4E4B\u89D2" + rect: + serializedVersion: 2 + x: 2528 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7156e352ebbacda00800000000000000 + internalID: 782689268412605719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E92\u9E9F\u58A8" + rect: + serializedVersion: 2 + x: 2560 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 057534b9573026dd0800000000000000 + internalID: -2494427439958894768 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E92\u9E9F\u7EFF" + rect: + serializedVersion: 2 + x: 2592 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1ace9b219cdffcf0800000000000000 + internalID: -216211741030299109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E92\u9E9F\u9752\u94DC\u5370" + rect: + serializedVersion: 2 + x: 2624 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 272e3587b91cc65c0800000000000000 + internalID: -4220785877270142350 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E9D\u7075\u73E0" + rect: + serializedVersion: 2 + x: 2656 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc5db0eda8c9b3e40800000000000000 + internalID: 5637271478829045197 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E9F\u5609\u8170\u9970" + rect: + serializedVersion: 2 + x: 2688 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2ddbf0a8c751eecb0800000000000000 + internalID: -4832901725485548078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9E9F\u7532\u7B26" + rect: + serializedVersion: 2 + x: 2720 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c15fcb4bffcb2f6c0800000000000000 + internalID: -4111015703400876772 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EA6\u82BD\u9EC4\u67D3\u6599" + rect: + serializedVersion: 2 + x: 2752 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 249175b919fbff360800000000000000 + internalID: 7205688560913422658 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u6A59\u68D2\u68D2\u7CD6" + rect: + serializedVersion: 2 + x: 2784 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27200cb741edc0330800000000000000 + internalID: 3678559175211745906 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u6A80\u63CF\u91D1\u96C6\u9526\u683C" + rect: + serializedVersion: 2 + x: 2816 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba720504f17b504d0800000000000000 + internalID: -3168925417934411861 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u6A80\u675F\u8170\u592A\u5E08\u6905" + rect: + serializedVersion: 2 + x: 2848 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f32de43de1c0ac360800000000000000 + internalID: 7190573081584128575 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u6A80\u675F\u8170\u94A9\u4E91\u684C" + rect: + serializedVersion: 2 + x: 2880 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f0223293c191f72a0800000000000000 + internalID: -6737638908514590193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u6A80\u675F\u8349\u7EB9\u5708\u6905\u7EC4\u5408" + rect: + serializedVersion: 2 + x: 2912 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 426c0ee423e310860800000000000000 + internalID: 7494339640713856548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u6A80\u7D20\u9762\u516B\u4ED9\u684C" + rect: + serializedVersion: 2 + x: 2944 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3704671824e045ba0800000000000000 + internalID: -6101235916377538445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u6C34\u6676\u5760\u5B50" + rect: + serializedVersion: 2 + x: 2976 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09c8000edb8d82a20800000000000000 + internalID: 3037916258679950480 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u6C89\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3008 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d7dc7e4ed998dc390800000000000000 + internalID: -7796424068665193091 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u6CB9" + rect: + serializedVersion: 2 + x: 3040 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9cec64ddf6296d2d0800000000000000 + internalID: -3254252671577174327 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u6CC9\u4E4B\u6C34" + rect: + serializedVersion: 2 + x: 3072 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 19b56ddcc4d38ab40800000000000000 + internalID: 5451674749012171665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u6CC9\u5200" + rect: + serializedVersion: 2 + x: 3104 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78f4d228a1ae7beb0800000000000000 + internalID: -4704033886191136889 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u7389" + rect: + serializedVersion: 2 + x: 3136 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39f06dbab67387ad0800000000000000 + internalID: -2704350640652021869 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u7389\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3168 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 232af2098815a72f0800000000000000 + internalID: -974376722395848142 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u8272\u5C0F\u70DF\u82B1" + rect: + serializedVersion: 2 + x: 3200 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d8ce758a787311ff0800000000000000 + internalID: -67211463649399667 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u8272\u67D3\u8272\u5242" + rect: + serializedVersion: 2 + x: 3232 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0e70766ce260d9810800000000000000 + internalID: 1773580626220746720 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u8272\u6D46\u8349" + rect: + serializedVersion: 2 + x: 3264 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 70e8828d5f4f184c0800000000000000 + internalID: -4286876033549300217 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u8272\u7684\u7425\u73C0\u7389" + rect: + serializedVersion: 2 + x: 3296 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 61841c2321a35c960800000000000000 + internalID: 7621561794229782550 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u82B1\u68A8\u900F\u96D5\u65B9\u51F3" + rect: + serializedVersion: 2 + x: 3328 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 53228d44b551b4d30800000000000000 + internalID: 4416647341308125749 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u82F9\u679C" + rect: + serializedVersion: 2 + x: 3360 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 89e5cef9c4f9ce3d0800000000000000 + internalID: -3175988485753643368 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u8C46" + rect: + serializedVersion: 2 + x: 3392 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a98637b22cbc19130800000000000000 + internalID: 3571860014294591642 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u4E94\u89D2\u661F" + rect: + serializedVersion: 2 + x: 3424 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 431af79625131cdf0800000000000000 + internalID: -161793881581575884 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u5315\u9996\u8865\u51451" + rect: + serializedVersion: 2 + x: 3456 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b09b6b285b6d2bcc0800000000000000 + internalID: -3696656269047318261 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u5315\u9996\u8865\u51452" + rect: + serializedVersion: 2 + x: 3488 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 846222295a53a5ae0800000000000000 + internalID: -1559875335692868024 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u5315\u9996\u8865\u51453" + rect: + serializedVersion: 2 + x: 3520 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 610080930850aa770800000000000000 + internalID: 8622710484825014294 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u5315\u9996\u8865\u51454" + rect: + serializedVersion: 2 + x: 3552 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63bf8213adf193660800000000000000 + internalID: 7365953687529257782 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u5315\u9996\u8865\u51455" + rect: + serializedVersion: 2 + x: 3584 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07670487be0958100800000000000000 + internalID: 109653106949650032 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u5315\u9996\u8865\u51456" + rect: + serializedVersion: 2 + x: 3616 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1974807657a249a80800000000000000 + internalID: -8461091116194183279 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u53CC\u525113" + rect: + serializedVersion: 2 + x: 3648 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 060de6a529f0a1890800000000000000 + internalID: -7486654309293174688 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u53CC\u65A713" + rect: + serializedVersion: 2 + x: 3680 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5646d4abcd6d0f410800000000000000 + internalID: 1508942118675899493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u5B88\u795E\u7B26" + rect: + serializedVersion: 2 + x: 3712 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc113224e2a4c8600800000000000000 + internalID: 471833623505605071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u5B88\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 3744 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8aa29c6f0e2a55180800000000000000 + internalID: -9127209982699689304 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u5E03\u978B\u9774\u5B5012" + rect: + serializedVersion: 2 + x: 3776 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 019544b583b3199e0800000000000000 + internalID: -1616445678013884144 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u5E03\u978B\u9774\u5B5013" + rect: + serializedVersion: 2 + x: 3808 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d3feaaada1f08c4a0800000000000000 + internalID: -6572987048135037123 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u5F1312" + rect: + serializedVersion: 2 + x: 3840 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6ab556668a2206ec0800000000000000 + internalID: -3575819997464405082 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u5F2913" + rect: + serializedVersion: 2 + x: 3872 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f7fcf5e9ef4bdd080800000000000000 + internalID: -9160967061329948801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u5FBD\u8BB0" + rect: + serializedVersion: 2 + x: 3904 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 65c762142e9b55560800000000000000 + internalID: 7301946752257915990 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u62A4\u8EAB\u7B26" + rect: + serializedVersion: 2 + x: 3936 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: effd24319bca1bab0800000000000000 + internalID: -4994020600885092354 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u62A4\u8EAB\u9501" + rect: + serializedVersion: 2 + x: 3968 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cfcd86cf21f493b50800000000000000 + internalID: 6573372074086685948 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u68CD\u68D2\u62A4\u624B" + rect: + serializedVersion: 2 + x: 4000 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 622d131449325a630800000000000000 + internalID: 3937592568861282854 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u6CD5\u525113" + rect: + serializedVersion: 2 + x: 4032 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f07053d28f75c620800000000000000 + internalID: 2793779343721001208 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u6CD5\u5B9D\u8865\u51451" + rect: + serializedVersion: 2 + x: 4064 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7cb78fc55cc9927a0800000000000000 + internalID: -6401413023848170553 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u6CD5\u5B9D\u8865\u51452" + rect: + serializedVersion: 2 + x: 0 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc9a8f643952faa50800000000000000 + internalID: 6534482898819000780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u6CD5\u5B9D\u8865\u51453" + rect: + serializedVersion: 2 + x: 32 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68fd8af1c27298d60800000000000000 + internalID: 7892882892406710150 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u6CD5\u5B9D\u8865\u51454" + rect: + serializedVersion: 2 + x: 64 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7229aa3e0dd58d160800000000000000 + internalID: 7050488368402698791 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u6CD5\u5B9D\u8865\u51455" + rect: + serializedVersion: 2 + x: 96 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e973a3c3bc2f61920800000000000000 + internalID: 2960820759745410974 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u6CD5\u5B9D\u8865\u51456" + rect: + serializedVersion: 2 + x: 128 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8520ae1fdf6f5c00800000000000000 + internalID: 891554255324849550 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u6CD5\u888D\u4E0A\u886312" + rect: + serializedVersion: 2 + x: 160 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1d3f3d8cc846e0ba0800000000000000 + internalID: -6120844287722392623 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u6CD5\u888D\u4E0A\u886313" + rect: + serializedVersion: 2 + x: 192 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4c55be118d920ab90800000000000000 + internalID: -7232734993566706236 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u6CD5\u888D\u817F\u88E4\u5B5012" + rect: + serializedVersion: 2 + x: 224 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7a7b5da72f7c55620800000000000000 + internalID: 2762333790718506919 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u6CD5\u888D\u817F\u88E4\u5B5013" + rect: + serializedVersion: 2 + x: 256 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 362ee0acc2cd970a0800000000000000 + internalID: -6883228470532447645 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u72B6\xB7\u4ED9\u5E7B\u5929" + rect: + serializedVersion: 2 + x: 288 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c173f470f5f834910800000000000000 + internalID: 1820456312695109404 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u77DB\u67C4" + rect: + serializedVersion: 2 + x: 320 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5331aa87aa6ebd60800000000000000 + internalID: 7907875263527072603 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u77ED\u5203\u67C4" + rect: + serializedVersion: 2 + x: 352 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3471ce50ba3e834b0800000000000000 + internalID: -5460364224508455101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u77ED\u675612" + rect: + serializedVersion: 2 + x: 384 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8f8cfd5e3d7a06ba0800000000000000 + internalID: -6097689366923065096 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u793C\u5305" + rect: + serializedVersion: 2 + x: 416 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1ac0bb135d0aea70800000000000000 + internalID: 8856906267775519261 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u80A1\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 448 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08d5831f79fea2ce0800000000000000 + internalID: -1429066495870608000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u80A9\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 480 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4bda8696e1f7d0730800000000000000 + internalID: 3966966615377489332 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u8155\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 512 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 29614f2bee72b5090800000000000000 + internalID: -8044792403209218414 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u864E\u7B26" + rect: + serializedVersion: 2 + x: 544 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a1eab0c8cc8b55e40800000000000000 + internalID: 5644620896641199642 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u8E1D\u7532\u5408\u9875" + rect: + serializedVersion: 2 + x: 576 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b27c87a34744bcf70800000000000000 + internalID: 9208529129076999979 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u8F7B\u578B\u62A4\u815512" + rect: + serializedVersion: 2 + x: 608 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ebe72fef751450220800000000000000 + internalID: 2451437418368368318 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u8F7B\u578B\u62A4\u815513" + rect: + serializedVersion: 2 + x: 640 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1a2b4339835995ba0800000000000000 + internalID: -6099680150076214623 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u8F7B\u5E3D\u5934\u76D412" + rect: + serializedVersion: 2 + x: 672 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 112c0313e558c2f20800000000000000 + internalID: 3399238458356580881 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u8F7B\u5E3D\u5934\u76D413" + rect: + serializedVersion: 2 + x: 704 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 869645735d0795330800000000000000 + internalID: 3700112629920196968 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u8F7B\u7532\u4E0A\u886312" + rect: + serializedVersion: 2 + x: 736 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e38a8cf5d159da570800000000000000 + internalID: 8479597626802087998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u8F7B\u7532\u4E0A\u886313" + rect: + serializedVersion: 2 + x: 768 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e08415bb5eee3ec80800000000000000 + internalID: -8294523418228733938 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u8F7B\u7532\u62A4\u8155\u62A4\u815512" + rect: + serializedVersion: 2 + x: 800 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f01c28de29e0865c0800000000000000 + internalID: -4222108626447056625 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u8F7B\u7532\u62A4\u8155\u62A4\u815513" + rect: + serializedVersion: 2 + x: 832 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 162efc1c05f059f90800000000000000 + internalID: -6947630010625695135 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u8F7B\u7532\u817F\u88E4\u5B5012" + rect: + serializedVersion: 2 + x: 864 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 423808bab7afaab90800000000000000 + internalID: -7229690842724662492 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u8F7B\u7532\u817F\u88E4\u5B5013" + rect: + serializedVersion: 2 + x: 896 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f048398fce9b8f940800000000000000 + internalID: 5330214586426819599 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u8F7B\u9774\u9774\u5B5012" + rect: + serializedVersion: 2 + x: 928 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ba784545d278bc3e0800000000000000 + internalID: -2032382178069542997 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u8F7B\u9774\u9774\u5B5013" + rect: + serializedVersion: 2 + x: 960 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc5efc3c6f856e2e0800000000000000 + internalID: -2096890759624006195 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u901A\u7528\u62AB\u98CE12" + rect: + serializedVersion: 2 + x: 992 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 974c4afccba7736b0800000000000000 + internalID: -5316645883731458951 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u901A\u7528\u62AB\u98CE13" + rect: + serializedVersion: 2 + x: 1024 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 55dbafa14126d9d00800000000000000 + internalID: 981048132328144213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u91CD\u578B\u62A4\u815512" + rect: + serializedVersion: 2 + x: 1056 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8ea2cc4eaf19d660800000000000000 + internalID: 7410989495287459470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u91CD\u578B\u62A4\u815513" + rect: + serializedVersion: 2 + x: 1088 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52570b03c0d666d60800000000000000 + internalID: 7883108096882537765 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u91CD\u593412" + rect: + serializedVersion: 2 + x: 1120 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4e81c9f65392e93b0800000000000000 + internalID: -5503916385117660956 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u91CD\u7532\u4E0A\u886312" + rect: + serializedVersion: 2 + x: 1152 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e376820ebbd2d7730800000000000000 + internalID: 3998402329117747006 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u91CD\u7532\u4E0A\u886313" + rect: + serializedVersion: 2 + x: 1184 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 065a6e873f11ac330800000000000000 + internalID: 3731814978632983904 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u91CD\u7532\u817F\u88E4\u5B5012" + rect: + serializedVersion: 2 + x: 1216 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 069ef513b3c50b350800000000000000 + internalID: 6030421310350289248 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u91CD\u7532\u817F\u88E4\u5B5013" + rect: + serializedVersion: 2 + x: 1248 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b20b3009283ee34f0800000000000000 + internalID: -846989529997660117 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u91CD\u76D4\u5934\u76D412" + rect: + serializedVersion: 2 + x: 1280 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7e7e9f86ba4ec3be0800000000000000 + internalID: -1496069551342098457 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u91CD\u76D4\u5934\u76D413" + rect: + serializedVersion: 2 + x: 1312 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f13dee8ffd0023720800000000000000 + internalID: 2824320878268830495 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u91CD\u9774\u9774\u5B5012" + rect: + serializedVersion: 2 + x: 1344 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7923bf3202afc4980800000000000000 + internalID: -8553186576333852009 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u91CD\u9774\u9774\u5B5013" + rect: + serializedVersion: 2 + x: 1376 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07b34a10b0ad13fa0800000000000000 + internalID: -5822633102406304912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u957F\u5200\u5200\u683C" + rect: + serializedVersion: 2 + x: 1408 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96d8e28e64c0b5ad0800000000000000 + internalID: -2712560851877982871 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u957F\u65A712" + rect: + serializedVersion: 2 + x: 1440 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7785c615b5ed75d10800000000000000 + internalID: 2114403033863182455 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u957F\u6746\u63A5\u69AB" + rect: + serializedVersion: 2 + x: 1472 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eff8d04fc63e51360800000000000000 + internalID: 7139862841356292094 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u96D5\u5851" + rect: + serializedVersion: 2 + x: 1504 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cc68821c4bdf22b50800000000000000 + internalID: 6567090159436203724 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u9762\u5177" + rect: + serializedVersion: 2 + x: 1536 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e1600f1daac561870800000000000000 + internalID: 8653205622775350814 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u9762\u7F69\u5408\u9875" + rect: + serializedVersion: 2 + x: 1568 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c0a24bdfc8972a220800000000000000 + internalID: 2495690789975501324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u91D1\u9E64\u5634\u9504" + rect: + serializedVersion: 2 + x: 1600 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12f327436c2e9cf30800000000000000 + internalID: 4596454235619606305 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u94BB" + rect: + serializedVersion: 2 + x: 1632 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae41cb4a5999c6f80800000000000000 + internalID: -8111939960808139542 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u94DC\u6D6E\u96D5\u7B14\u7B52" + rect: + serializedVersion: 2 + x: 1664 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 02c6e3f4ea03d1ba0800000000000000 + internalID: -6116679193687331808 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EC4\u9C7C\u5375" + rect: + serializedVersion: 2 + x: 1696 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 94e5ce59d8c60b3c0800000000000000 + internalID: -4345854285051044279 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u4E94\u661F\u793C\u670D\u5973\u5934\u53D1" + rect: + serializedVersion: 2 + x: 1728 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4d09d44ed5146e2b0800000000000000 + internalID: -5555681218796875564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u4E94\u661F\u793C\u670D\u5973\u624B\u5957" + rect: + serializedVersion: 2 + x: 1760 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db14bc903e657e330800000000000000 + internalID: 3740053548676366781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u4E94\u661F\u793C\u670D\u5973\u88D9\u5B50" + rect: + serializedVersion: 2 + x: 1792 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b5b4b206a27a6ab50800000000000000 + internalID: 6604149704029326171 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u4E94\u661F\u793C\u670D\u5973\u978B\u5B50" + rect: + serializedVersion: 2 + x: 1824 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 99efed35b4dbc8d60800000000000000 + internalID: 7893892378100956825 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u5DE2\u5E03\u5C65" + rect: + serializedVersion: 2 + x: 1856 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 08871fc65ccf985c0800000000000000 + internalID: -4212558051561867136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u5DE2\u6212\u6307" + rect: + serializedVersion: 2 + x: 1888 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37bc423a8e45fda60800000000000000 + internalID: 7700967245973080947 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u5DE2\u62A4\u817F" + rect: + serializedVersion: 2 + x: 1920 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3896f686ef6d75110800000000000000 + internalID: 1249703809780771203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u5DE2\u8170\u4F69" + rect: + serializedVersion: 2 + x: 1952 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 349de13d36a855930800000000000000 + internalID: 4131360394530707779 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u5DE2\u8F7B\u94E0" + rect: + serializedVersion: 2 + x: 1984 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 39bb05edb8c4d3b10800000000000000 + internalID: 1962809176217402259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u5DE2\u964D\u9B54\u65A7" + rect: + serializedVersion: 2 + x: 2016 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b0c6f695f7a76240800000000000000 + internalID: 4784977802346021040 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u5DE2\u9879\u94FE" + rect: + serializedVersion: 2 + x: 2048 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9d61c393bf62b47f0800000000000000 + internalID: -627364862649166119 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u5DE7\u514B\u529B\u68D2\u68D2\u7CD6" + rect: + serializedVersion: 2 + x: 2080 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8f2e2142a620d160800000000000000 + internalID: 7048175895154929547 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u5E02" + rect: + serializedVersion: 2 + x: 2112 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e9c4a814fb830a580800000000000000 + internalID: -8817985676301939554 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u6697\u4E4B\u8840" + rect: + serializedVersion: 2 + x: 2144 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4be5a7d11e2ebb920800000000000000 + internalID: 3007246632690015924 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u6697\u5F98\u5F8A\u8005" + rect: + serializedVersion: 2 + x: 2176 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75f9efb85f22419c0800000000000000 + internalID: -3957499734540771497 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u6697\u65A5\u5019" + rect: + serializedVersion: 2 + x: 2208 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b2445a3824701f360800000000000000 + internalID: 7201545261400015915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u6697\u6C34\u6676" + rect: + serializedVersion: 2 + x: 2240 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 14a44224ab6425890800000000000000 + internalID: -7470831066066695615 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u66DC\u864E\u7B26" + rect: + serializedVersion: 2 + x: 2272 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9aa7feb8739173380800000000000000 + internalID: -8991690404660282711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u6746\u94F1\u91D1\u7B14\u4E60\u7B3A" + rect: + serializedVersion: 2 + x: 2304 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45641ccbdd28acfb0800000000000000 + internalID: -4626741778303596972 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u6C34\u6676\u5760\u5B50" + rect: + serializedVersion: 2 + x: 2336 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7464bd1836ef97310800000000000000 + internalID: 1403432462236468807 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u6D1E\u5251" + rect: + serializedVersion: 2 + x: 2368 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bdf6cb9c6bbca5eb0800000000000000 + internalID: -4730244472670228517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u70AB\u5C0F\u793C\u670D\u7537\u88C5\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2400 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 925d01c574f67a280800000000000000 + internalID: -9032128175390272215 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u70AB\u5C0F\u793C\u670D\u7537\u88C5\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2432 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 748d4e1f62e6ec140800000000000000 + internalID: 4741848571213830215 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u70AB\u5C0F\u793C\u670D\u7537\u88C5\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2464 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4faacd1e2127dd890800000000000000 + internalID: -7431658384667137292 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u70AB\u5C0F\u793C\u670D\u7537\u88C5\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2496 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3d0db86f529e57530800000000000000 + internalID: 3852241405544747219 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u7389" + rect: + serializedVersion: 2 + x: 2528 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: abd4a2a18792bbb20800000000000000 + internalID: 3151157960087588282 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u7389\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 2560 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff2b05fd73f3989d0800000000000000 + internalID: -2771614586467470593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u7389\u4F69" + rect: + serializedVersion: 2 + x: 2592 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3e14f2fb1975d95e0800000000000000 + internalID: -1901267184191061533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u7532\u866B32" + rect: + serializedVersion: 2 + x: 2624 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 702d27035c4b3c0d0800000000000000 + internalID: -3403678134347574777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u7EA2\u7FBD\u7FFC" + rect: + serializedVersion: 2 + x: 2656 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2216144f30c356a0800000000000000 + internalID: -6461609662388760018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u8000\u77F3\u94FE\u5B50" + rect: + serializedVersion: 2 + x: 2688 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 64c828fe01bbcf140800000000000000 + internalID: 4754880988008582214 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u8272\u5BA0\u7269\u86CB" + rect: + serializedVersion: 2 + x: 2720 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6edade77bbb1d910800000000000000 + internalID: 1860474517862407787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u8272\u67D3\u6599" + rect: + serializedVersion: 2 + x: 2752 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5d0ba59898c129c0800000000000000 + internalID: -3953658440182985382 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u8272\u67D3\u8272\u5242" + rect: + serializedVersion: 2 + x: 2784 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: de6b4e74276b94240800000000000000 + internalID: 4776549481751820013 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u8272\u72FC\u7259" + rect: + serializedVersion: 2 + x: 2816 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 779f1307ec15113e0800000000000000 + internalID: -2084795205408392841 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u8272\u77FF\u77F3" + rect: + serializedVersion: 2 + x: 2848 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0042d63180769b20800000000000000 + internalID: 3140821490410340362 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u8272\u7981\u836F\u7537\u4E0A\u8863" + rect: + serializedVersion: 2 + x: 2880 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 251575d24c133ff50800000000000000 + internalID: 6913924571587891538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u8272\u7981\u836F\u7537\u5934\u53D1" + rect: + serializedVersion: 2 + x: 2912 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: caaed73012d67f190800000000000000 + internalID: -7928748630402536788 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u8272\u7981\u836F\u7537\u88E4\u5B50" + rect: + serializedVersion: 2 + x: 2944 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b1bcb439a6ba99130800000000000000 + internalID: 3574076253521300251 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u8272\u7981\u836F\u7537\u978B\u5B50" + rect: + serializedVersion: 2 + x: 2976 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b765ca5211e5d7e60800000000000000 + internalID: 7961623144000411259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u8C79" + rect: + serializedVersion: 2 + x: 3008 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 45376a9d8503aa6a0800000000000000 + internalID: -6437279559205883052 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED1\u94BB" + rect: + serializedVersion: 2 + x: 3040 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 47ba6efdfb188ff00800000000000000 + internalID: 1150812365888334708 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9ED8\u97F3\u9E3E\u9E1F\u5143\u9B42" + rect: + serializedVersion: 2 + x: 3072 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6502420d9a032b8d0800000000000000 + internalID: -2832147709762985898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9EDB\u74E6\u6708\u7259\u95E8" + rect: + serializedVersion: 2 + x: 3104 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4f2066a0a45367b00800000000000000 + internalID: 825906173787374324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F20\u5C3E\u8349" + rect: + serializedVersion: 2 + x: 3136 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3896b36de774026c0800000000000000 + internalID: -4170254644859410045 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F20\u9F7F" + rect: + serializedVersion: 2 + x: 3168 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 550d8aeb959682e50800000000000000 + internalID: 6784788672805392469 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F50\u5929\u6212" + rect: + serializedVersion: 2 + x: 3200 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9153b673796619dd0800000000000000 + internalID: -2481089120048564967 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F50\u7709\u68CD" + rect: + serializedVersion: 2 + x: 3232 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7bc33978380dec110800000000000000 + internalID: 1283192207181036727 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F50\u7709\u8F8A" + rect: + serializedVersion: 2 + x: 3264 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 90891989deaf1ae10800000000000000 + internalID: 2207321190762125321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F7F\u86EE\u4EBA" + rect: + serializedVersion: 2 + x: 3296 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 27cc3776e205b2aa0800000000000000 + internalID: -6184761503028884366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F7F\u8F6E\u96F6\u4EF6" + rect: + serializedVersion: 2 + x: 3328 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1e568353f629216d0800000000000000 + internalID: -3021191393680267807 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u51E4\u864E\u9996\u749C" + rect: + serializedVersion: 2 + x: 3360 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06725995be6803de0800000000000000 + internalID: -1355435142460135584 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u5377\u65A7" + rect: + serializedVersion: 2 + x: 3392 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c3852503bc01bcbf0800000000000000 + internalID: -303130085042268100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u5750\u9A91" + rect: + serializedVersion: 2 + x: 3424 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 352613f49cd2e1a70800000000000000 + internalID: 8799521064568840787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u5934\u68D2\u53CC\u624B\u77ED" + rect: + serializedVersion: 2 + x: 3456 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4da6a4846c7758950800000000000000 + internalID: 6450693734778170068 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u5973\u4E4B\u8840" + rect: + serializedVersion: 2 + x: 3488 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 58cccdfd6c60c1470800000000000000 + internalID: 8366569658976619653 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u5973\u4E4B\u9CDE" + rect: + serializedVersion: 2 + x: 3520 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9cb9c195f7d567630800000000000000 + internalID: 3924426926837242825 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u5BAB\u795E\u4ED9\u9C7C" + rect: + serializedVersion: 2 + x: 3552 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b9e33dd84b4766a0800000000000000 + internalID: -6456108764491421256 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u5E74\u6446\u644A" + rect: + serializedVersion: 2 + x: 3584 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7b3c434c5b136e2d0800000000000000 + internalID: -3249855424350600265 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u5E74\u6625\u8282\u5750\u9A91" + rect: + serializedVersion: 2 + x: 3616 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a14c506cfa140cd50800000000000000 + internalID: 6755471664253092890 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u5F69\u53CC\u9524" + rect: + serializedVersion: 2 + x: 3648 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 069497caa50517f70800000000000000 + internalID: 9183209465556060512 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u606F" + rect: + serializedVersion: 2 + x: 3680 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5e5fd163174d2ea0800000000000000 + internalID: -5895978188586131878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u6756" + rect: + serializedVersion: 2 + x: 3712 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e280088e584f2bc40800000000000000 + internalID: 5526748548705552430 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u6D8E" + rect: + serializedVersion: 2 + x: 3744 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 881bd6a7b91c562b0800000000000000 + internalID: -5591850488792501880 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u708E\u4E4B\u77F3" + rect: + serializedVersion: 2 + x: 3776 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fe09304529ee33360800000000000000 + internalID: 7148319345809264879 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u73B0\u4E4B\u5F13" + rect: + serializedVersion: 2 + x: 3808 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e2445c895596418c0800000000000000 + internalID: -4029479950233549778 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u76AE\u5E3D\u6A90" + rect: + serializedVersion: 2 + x: 3840 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a0e3d9c4fcd6b2d10800000000000000 + internalID: 2101894388209499658 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u76AE\u62A4\u5FC3\u955C\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 3872 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d02ca8be50da5e870800000000000000 + internalID: 8711559295156273677 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u76AE\u62A4\u8155\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 3904 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b4fac9d41a1257b90800000000000000 + internalID: -7244847448880009397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u76AE\u62A4\u819D\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 3936 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e8e3edb0cc5d8c150800000000000000 + internalID: 5893195184763453070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u76AE\u62A4\u8E1D\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 3968 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df6ce199d2a1ea430800000000000000 + internalID: 3796000319064688381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u76AE\u98D8\u5E26\u7EC4\u4EF6" + rect: + serializedVersion: 2 + x: 4000 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 75f124f8479958750800000000000000 + internalID: 6306615579100979031 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u773C\u5760\u5B50" + rect: + serializedVersion: 2 + x: 4032 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 430ad740431f4fe60800000000000000 + internalID: 7995280444205408308 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u795E\u5B9D\u85CF" + rect: + serializedVersion: 2 + x: 4064 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: db21b8cf772f3e010800000000000000 + internalID: 1217082921472168637 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u795E\u7684\u53F9\u606F" + rect: + serializedVersion: 2 + x: 0 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a810348edd17bbac0800000000000000 + internalID: -3838349059504799350 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u7965\u6212" + rect: + serializedVersion: 2 + x: 32 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cd41bf04ca474e470800000000000000 + internalID: 8422985486263063772 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u7B4B\u5F13\u5F26" + rect: + serializedVersion: 2 + x: 64 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 10298d48c5ceb01c0800000000000000 + internalID: -4536272317535710719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u7B4B\u7EDE\u4E1D" + rect: + serializedVersion: 2 + x: 96 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 674ece559fb7e8560800000000000000 + internalID: 7317922755342296182 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u7B4B\u8FDE\u63A5\u73AF" + rect: + serializedVersion: 2 + x: 128 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0a9b7607f98d4ced0800000000000000 + internalID: -2394550922557015648 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u7CAA\u4FBF" + rect: + serializedVersion: 2 + x: 160 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6c3c656b67d23af0800000000000000 + internalID: -418034959128970130 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u80C6\u7D2B" + rect: + serializedVersion: 2 + x: 192 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63a91ab1324642dc0800000000000000 + internalID: -3664694094822532554 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u817E\u6218\u76D4" + rect: + serializedVersion: 2 + x: 224 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8dbb279605d1e9d0800000000000000 + internalID: -2746680073436545653 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u864E\u76D4" + rect: + serializedVersion: 2 + x: 256 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9834f7cd1b74f01f0800000000000000 + internalID: -1076562956684147831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u86ED" + rect: + serializedVersion: 2 + x: 288 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 53316006a72595680800000000000000 + internalID: -8765884514149461195 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u987B\u62A4\u8155\u7EE3\u9762" + rect: + serializedVersion: 2 + x: 320 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8aef9d333d0bb5ea0800000000000000 + internalID: -5882914067074908504 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u987B\u6CD5\u672F\u978B\u5E95" + rect: + serializedVersion: 2 + x: 352 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 12b8d233302a8d3e0800000000000000 + internalID: -2028693497503184095 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u987B\u6CD5\u888D\u8863\u895F" + rect: + serializedVersion: 2 + x: 384 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 824e005d71ee46b80800000000000000 + internalID: -8402329218641239000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u987B\u6CD5\u88E4\u4E0B\u6446" + rect: + serializedVersion: 2 + x: 416 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0de6294043a640010800000000000000 + internalID: 1154164176161238736 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u987B\u7075\u529B\u5E61\u7EE6" + rect: + serializedVersion: 2 + x: 448 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1fc22d6703dfbe4d0800000000000000 + internalID: -3104109133548081935 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u987B\u7BAD" + rect: + serializedVersion: 2 + x: 480 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7169fd83a4c5628c0800000000000000 + internalID: -4024427743157447145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u987B\u9999\u56CA" + rect: + serializedVersion: 2 + x: 512 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ddd766351e4293fc0800000000000000 + internalID: -3514737484000494115 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9A6C\u8E0F\u7075\u829D" + rect: + serializedVersion: 2 + x: 544 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dc180cb7439169640800000000000000 + internalID: 5086280542366761421 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9A6D\u4E5D\u5929\u7684\u89D2" + rect: + serializedVersion: 2 + x: 576 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 06035ef8cad128990800000000000000 + internalID: -7385307811948449696 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9A6D\u4E5D\u5929\u7684\u9CDE\u7247" + rect: + serializedVersion: 2 + x: 608 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bb0af0913882c2460800000000000000 + internalID: 7218188846294343867 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9AA8\u516C\u7235\u5361\u72471" + rect: + serializedVersion: 2 + x: 640 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 34884664c6ef36e70800000000000000 + internalID: 9107402612464191555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9AA8\u516C\u7235\u5361\u72472" + rect: + serializedVersion: 2 + x: 672 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f291bd63d3bdb3020800000000000000 + internalID: 2322691088799439151 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9AA8\u516C\u7235\u5361\u72473" + rect: + serializedVersion: 2 + x: 704 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5acc8b097863b92b0800000000000000 + internalID: -5576803757691712347 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9AA8\u516C\u7235\u5361\u72474" + rect: + serializedVersion: 2 + x: 736 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bdcfc568c0d2404f0800000000000000 + internalID: -863515696731194149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9AA8\u516C\u7235\u5361\u72475" + rect: + serializedVersion: 2 + x: 768 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bfa882bf1be964c80800000000000000 + internalID: -8338803172769756421 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9AA8\u516C\u7235\u5361\u72476" + rect: + serializedVersion: 2 + x: 800 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 247e60adc66e74f60800000000000000 + internalID: 8018631016745199426 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9AA8\u516C\u7235\u5361\u72477" + rect: + serializedVersion: 2 + x: 832 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: df58f1838de827590800000000000000 + internalID: -7677917355407604227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9AA8\u516C\u7235\u5361\u72478" + rect: + serializedVersion: 2 + x: 864 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2aaab8cf820b32020800000000000000 + internalID: 2315888323480758946 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9AA8\u5C0F\u6BB5" + rect: + serializedVersion: 2 + x: 896 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b1cb9bbe2e371e40800000000000000 + internalID: 5627034629859688880 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9AA8\u624B\u638C\u6A21\u677F" + rect: + serializedVersion: 2 + x: 928 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 78dffb50ee43f2f90800000000000000 + internalID: -6976299100870279801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9AA8\u6756\u67C4" + rect: + serializedVersion: 2 + x: 960 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9dff34ad303c2510800000000000000 + internalID: 1525647415078550939 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9AA8\u7A81" + rect: + serializedVersion: 2 + x: 992 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 159fb5dde80a49fd0800000000000000 + internalID: -2336065771238852271 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9AA8\u8282\u6263" + rect: + serializedVersion: 2 + x: 1024 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b0595fb7fb54a3810800000000000000 + internalID: 1745784494280250635 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9CDE\u6CD5\u888D" + rect: + serializedVersion: 2 + x: 1056 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 291ff8c72817dae70800000000000000 + internalID: 9128076824999358866 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9CDE\u9879\u94FE" + rect: + serializedVersion: 2 + x: 1088 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ac6654b2551ef78f0800000000000000 + internalID: -540465674346731830 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9E6B\u4E4B\u7FFC" + rect: + serializedVersion: 2 + x: 1120 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e300523417572a1f0800000000000000 + internalID: -1035135835023540162 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F99\u9E6B\u76AE" + rect: + serializedVersion: 2 + x: 1152 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 852b237e62043e400800000000000000 + internalID: 352195731696824920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F9F\u7075\u5C65" + rect: + serializedVersion: 2 + x: 1184 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c42626296c37e7bb0800000000000000 + internalID: -4936380844854844852 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F9F\u7075\u62A4\u8155" + rect: + serializedVersion: 2 + x: 1216 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5e69e1d538b4165e0800000000000000 + internalID: -1918168938708035867 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F9F\u7075\u888D" + rect: + serializedVersion: 2 + x: 1248 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5b78aa7f3becd3bb0800000000000000 + internalID: -4954576742688061515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F9F\u7075\u88E4" + rect: + serializedVersion: 2 + x: 1280 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0b8a5c143efd97420800000000000000 + internalID: 2628378024701438128 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F9F\u86C7\u4E0B\u94E0" + rect: + serializedVersion: 2 + x: 1312 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dec7509d7b9289060800000000000000 + internalID: 6960359093697871085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F9F\u86C7\u6218\u94E0" + rect: + serializedVersion: 2 + x: 1344 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8959dfd92f87c1da0800000000000000 + internalID: -5972766022372059752 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F9F\u86C7\u8155\u7532" + rect: + serializedVersion: 2 + x: 1376 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e0fa5e5aa0c8bf510800000000000000 + internalID: 1584013671311716110 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: "\u9F9F\u86C7\u978B" + rect: + serializedVersion: 2 + x: 1408 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0cc5b13576cf1b3d0800000000000000 + internalID: -3192493140122837824 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8749 + rect: + serializedVersion: 2 + x: 1440 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63875e5d3f669c490800000000000000 + internalID: -7725530488325703626 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8750 + rect: + serializedVersion: 2 + x: 1472 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 21546bd89baab5b70800000000000000 + internalID: 8888886003469010194 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8751 + rect: + serializedVersion: 2 + x: 1504 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d6e40104bd62de30800000000000000 + internalID: 4526801195339409112 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8752 + rect: + serializedVersion: 2 + x: 1536 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 900c3f721905390a0800000000000000 + internalID: -6876063621693849591 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8753 + rect: + serializedVersion: 2 + x: 1568 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 213665e0f1f412840800000000000000 + internalID: 5197522439765386002 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8754 + rect: + serializedVersion: 2 + x: 1600 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 569d8191c9b5e05a0800000000000000 + internalID: -6553199681783408283 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8755 + rect: + serializedVersion: 2 + x: 1632 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 710137458d76aa880800000000000000 + internalID: -8598946359683117033 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8756 + rect: + serializedVersion: 2 + x: 1664 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2aca54b670d42a20800000000000000 + internalID: 3036781257005124140 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8757 + rect: + serializedVersion: 2 + x: 1696 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1702911b80a37310800000000000000 + internalID: 1401640428198037277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8758 + rect: + serializedVersion: 2 + x: 1728 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 74a0776ad46190ff0800000000000000 + internalID: -69499796486419897 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8759 + rect: + serializedVersion: 2 + x: 1760 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: eeff7cccfd9974a00800000000000000 + internalID: 740729850218151918 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8760 + rect: + serializedVersion: 2 + x: 1792 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d32c68d3d08b1c0e0800000000000000 + internalID: -2251315971702209987 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8761 + rect: + serializedVersion: 2 + x: 1824 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2a9d64e55eaec98a0800000000000000 + internalID: -6296899908120684126 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8762 + rect: + serializedVersion: 2 + x: 1856 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4cda17e57ce7953d0800000000000000 + internalID: -3217401064031408700 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8763 + rect: + serializedVersion: 2 + x: 1888 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9a93202c354b6b00800000000000000 + internalID: 822827481464806043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8764 + rect: + serializedVersion: 2 + x: 1920 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 32292d94eb2967c10800000000000000 + internalID: 2050988026293817891 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8765 + rect: + serializedVersion: 2 + x: 1952 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e0f30e122d802800800000000000000 + internalID: 585623129230143721 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8766 + rect: + serializedVersion: 2 + x: 1984 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3912a12796cc88a20800000000000000 + internalID: 3064924299683570067 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8767 + rect: + serializedVersion: 2 + x: 2016 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0333e9adb5ef5f450800000000000000 + internalID: 6122078938943337264 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8768 + rect: + serializedVersion: 2 + x: 2048 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: edf6cb7d8858aeb30800000000000000 + internalID: 4317410015569539038 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8769 + rect: + serializedVersion: 2 + x: 2080 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: bf2b16a893fca3f00800000000000000 + internalID: 1097417305259881211 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8770 + rect: + serializedVersion: 2 + x: 2112 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ffa86bffeb1b3cc70800000000000000 + internalID: 8990224715053697791 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8771 + rect: + serializedVersion: 2 + x: 2144 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f5e391225eb85a890800000000000000 + internalID: -7447392592551395745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8772 + rect: + serializedVersion: 2 + x: 2176 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2d5b15476a61e2120800000000000000 + internalID: 2390873356352206290 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8773 + rect: + serializedVersion: 2 + x: 2208 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e5b6462a641d1e60800000000000000 + internalID: 7934520564637939177 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8774 + rect: + serializedVersion: 2 + x: 2240 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a7f0218cf92ed1e80800000000000000 + internalID: -8206153770114871430 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8775 + rect: + serializedVersion: 2 + x: 2272 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fa78e7c40e0baee50800000000000000 + internalID: 6839473461518043055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8776 + rect: + serializedVersion: 2 + x: 2304 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: da017b78bea3d4140800000000000000 + internalID: 4705481968940683437 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8777 + rect: + serializedVersion: 2 + x: 2336 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b014968a730b9bdd0800000000000000 + internalID: -2469749167540846325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8778 + rect: + serializedVersion: 2 + x: 2368 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5708217fbd1796990800000000000000 + internalID: -7392252123794997131 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8779 + rect: + serializedVersion: 2 + x: 2400 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b6735fc23f6c02da0800000000000000 + internalID: -5971554358159657109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8780 + rect: + serializedVersion: 2 + x: 2432 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dbac4540116375120800000000000000 + internalID: 2402448372940458685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8781 + rect: + serializedVersion: 2 + x: 2464 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8a376418d5d2e750800000000000000 + internalID: 6332859150068300427 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8782 + rect: + serializedVersion: 2 + x: 2496 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: dfaaebc63aaf2dbf0800000000000000 + internalID: -300902645269353731 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8783 + rect: + serializedVersion: 2 + x: 2528 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 187c928cc4f7b0eb0800000000000000 + internalID: -4752565014007003263 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8784 + rect: + serializedVersion: 2 + x: 2560 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1fb6f5c3c0dec4fc0800000000000000 + internalID: -3509169372820182031 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8785 + rect: + serializedVersion: 2 + x: 2592 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cfa887d1d567afea0800000000000000 + internalID: -5838223824633951492 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8786 + rect: + serializedVersion: 2 + x: 2624 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: cecfce26870c14fd0800000000000000 + internalID: -2359393106477122324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8787 + rect: + serializedVersion: 2 + x: 2656 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3994897a110762e10800000000000000 + internalID: 2172547091381373331 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8788 + rect: + serializedVersion: 2 + x: 2688 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 52e07e9719db42e20800000000000000 + internalID: 3324990857419361829 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8789 + rect: + serializedVersion: 2 + x: 2720 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d1e30a0d1d2dc2eb0800000000000000 + internalID: -4743184508937814499 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8790 + rect: + serializedVersion: 2 + x: 2752 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9713e3044e3f8610800000000000000 + internalID: 1625586452347951003 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8791 + rect: + serializedVersion: 2 + x: 2784 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ae6049c3d3cb56400800000000000000 + internalID: 316866319994849002 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8792 + rect: + serializedVersion: 2 + x: 2816 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 07d1fb633acb3f4f0800000000000000 + internalID: -796085299930260112 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8793 + rect: + serializedVersion: 2 + x: 2848 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 002a80ad697c5de80800000000000000 + internalID: -8154392099567394304 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8794 + rect: + serializedVersion: 2 + x: 2880 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0dedd3892b818fb50800000000000000 + internalID: 6627074007013121744 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8795 + rect: + serializedVersion: 2 + x: 2912 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ff38e4c9a819a58f0800000000000000 + internalID: -550967979885558785 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8796 + rect: + serializedVersion: 2 + x: 2944 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3a46b7d3c14c9fa20800000000000000 + internalID: 3096721844363551907 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8797 + rect: + serializedVersion: 2 + x: 2976 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: badaefdfcb1b4c9c0800000000000000 + internalID: -3907803151377453653 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8798 + rect: + serializedVersion: 2 + x: 3008 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a5c4dbe47e84b7170800000000000000 + internalID: 8177209706716941402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8799 + rect: + serializedVersion: 2 + x: 3040 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a99069bc00d534680800000000000000 + internalID: -8772065391190603366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8800 + rect: + serializedVersion: 2 + x: 3072 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 24496b65b541e8230800000000000000 + internalID: 3642871531118695490 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8801 + rect: + serializedVersion: 2 + x: 3104 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 42ad8fef614d80020800000000000000 + internalID: 2308328004259469860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8802 + rect: + serializedVersion: 2 + x: 3136 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b9918691d06c8c1d0800000000000000 + internalID: -3330194164877354597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8803 + rect: + serializedVersion: 2 + x: 3168 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: fc9b062707cfef2e0800000000000000 + internalID: -2089955617167853105 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8804 + rect: + serializedVersion: 2 + x: 3200 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 62e9a301063f422f0800000000000000 + internalID: -998405623454720474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8805 + rect: + serializedVersion: 2 + x: 3232 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4fe3bc5a363940080800000000000000 + internalID: -9222084080755327244 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8806 + rect: + serializedVersion: 2 + x: 3264 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9de841d81797a2920800000000000000 + internalID: 2966316833182093017 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8807 + rect: + serializedVersion: 2 + x: 3296 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 329481eef3c8f1c80800000000000000 + internalID: -8349800977916212957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8808 + rect: + serializedVersion: 2 + x: 3328 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 96d037ec2d2f74f70800000000000000 + internalID: 9171566153384004969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8809 + rect: + serializedVersion: 2 + x: 3360 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b47ccc3cd7a77e1e0800000000000000 + internalID: -2168630014981126325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8810 + rect: + serializedVersion: 2 + x: 3392 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: e6cf1b71cf5e70fa0800000000000000 + internalID: -5834441921343128466 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8811 + rect: + serializedVersion: 2 + x: 3424 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 429bf182701b0bd80800000000000000 + internalID: -8236889074164582108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8812 + rect: + serializedVersion: 2 + x: 3456 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 6b11cb8bd2e908270800000000000000 + internalID: 8250768436552798646 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8813 + rect: + serializedVersion: 2 + x: 3488 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d526dfec6489a64f0800000000000000 + internalID: -834687351035960739 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8814 + rect: + serializedVersion: 2 + x: 3520 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2e13224facb55c4e0800000000000000 + internalID: -1962061135412579870 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8815 + rect: + serializedVersion: 2 + x: 3552 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 37b01192a4635a360800000000000000 + internalID: 7180204873056586611 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8816 + rect: + serializedVersion: 2 + x: 3584 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3f9198c560c6a7920800000000000000 + internalID: 2988820077291837939 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8817 + rect: + serializedVersion: 2 + x: 3616 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 77d7ae8dc60272d60800000000000000 + internalID: 7865290926093663607 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8818 + rect: + serializedVersion: 2 + x: 3648 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 09e44c07e8a12a2f0800000000000000 + internalID: -963178171224273264 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8819 + rect: + serializedVersion: 2 + x: 3680 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2f0c4b5075da43220800000000000000 + internalID: 2464785485347995890 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8820 + rect: + serializedVersion: 2 + x: 3712 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 986b32f9d63a54aa0800000000000000 + internalID: -6177351622652086647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8821 + rect: + serializedVersion: 2 + x: 3744 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1b0906443595e1150800000000000000 + internalID: 5845207580537819313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8822 + rect: + serializedVersion: 2 + x: 3776 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 49aea1222425873b0800000000000000 + internalID: -5514567299721663852 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8823 + rect: + serializedVersion: 2 + x: 3808 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8b60c789f146d1ca0800000000000000 + internalID: -6044565037996308808 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8824 + rect: + serializedVersion: 2 + x: 3840 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f2a22bb2d0600dcf0800000000000000 + internalID: -229676927358457297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8825 + rect: + serializedVersion: 2 + x: 3872 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 9e153f90996ad7c30800000000000000 + internalID: 4358823190591656425 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8826 + rect: + serializedVersion: 2 + x: 3904 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f79d49e017f1a1f10800000000000000 + internalID: 2241138335006644607 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8827 + rect: + serializedVersion: 2 + x: 3936 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 790e0613ea56e94c0800000000000000 + internalID: -4278870797128245097 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8828 + rect: + serializedVersion: 2 + x: 3968 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c79692257382a6760800000000000000 + internalID: 7451812751504664956 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8829 + rect: + serializedVersion: 2 + x: 4000 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 30a8ecec1ecc03ea0800000000000000 + internalID: -5894986642018629117 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8830 + rect: + serializedVersion: 2 + x: 4032 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 63e7c28dab88d82e0800000000000000 + internalID: -2121889513349546442 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: 8831 + rect: + serializedVersion: 2 + x: 4064 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7c49bf6258e6ab5a0800000000000000 + internalID: -6504765193619532601 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: + 0: -5027509340213622084 + "0_\u4E1C\u5317\u5F53\u5F52": -932705024901165342 + "0_\u5251\u9EBB": 6920694519929021184 + 1: -2374222918679686493 + "100000_\u6C34\u834901": 6667243681039338185 + "100001_\u6C34\u834902": 7541893468535563073 + "100002_\u6C34\u834903": -5454051907323492371 + "100003_\u6C34\u834904": 6304073762741421361 + "100004_\u6C34\u834905": -2579302661628557618 + "100005_\u6C34\u834906": -7604479646222310823 + "100006_\u6C34\u834907": 791479178476785391 + "100007_\u6C34\u834908": -1812637491912042904 + "100008_\u6C34\u834909": 7887186895238926307 + "100009_\u6C34\u834910": -718883746507788515 + "100010_\u6C34\u834911": 4237278902828757374 + "100011_\u6C34\u834912": 8124903727993723985 + "100012_\u6C34\u834913": -2657909595017547511 + "100013_\u6C34\u834914": 8645869302973282550 + "100014_\u6C34\u834915": -279463733446678436 + "100_\u7384\u5173\u5F71\u58C1": 46877608748956412 + "100\u5757\u5E3D\u5B50\u5973": -4020762547729681271 + "100\u5757\u5E3D\u5B50\u7537": -1441794429523314439 + "101_\u4E00\u7EA7\u684C\u5B50": -1542723325373951779 + "102_\u4E00\u7EA7\u6905\u5B50": -1105075579196217835 + "103_\u4E8C\u7EA7\u684C\u5B50": 2404628677368688058 + "104_\u4E8C\u7EA7\u6905\u5B50": 3422330180894222696 + "105_\u4E09\u7EA7\u684C\u5B50": 2744265006279684961 + "106_\u4E09\u7EA7\u6905\u5B50": 5485221238569998203 + "106_\u9E45\u5375\u77F3\u5730\u976202": -4037795170420510989 + "107_\u56DB\u7EA7\u684C\u5B50": -7653299592573815684 + "108_\u56DB\u7EA7\u6905\u5B50": -6405819874397298989 + "108_\u9E45\u5375\u77F3\u5730\u976204": -4758798071137036549 + "109_\u5C0F\u8239": 1879973461665852049 + "10_\u7C89\u5EB7\u8418\u85AA01": -60057177521436778 + "10\u5E74\u4E07\u5723\u8282\u5973\u88C5\u4E0A\u8863": 969007698554181816 + "10\u5E74\u4E07\u5723\u8282\u5973\u88C5\u5934\u53D1": -7572794945291602758 + "10\u5E74\u4E07\u5723\u8282\u5973\u88C5\u624B\u5957": 1486792305743761330 + "10\u5E74\u4E07\u5723\u8282\u5973\u88C5\u88E4\u5B50": -7539079535344739137 + "10\u5E74\u4E07\u5723\u8282\u5973\u88C5\u978B\u5B50": 1468032833484798690 + "10\u5E74\u4E07\u5723\u8282\u7537\u88C5\u4E0A\u8863": 1697424296774152155 + "10\u5E74\u4E07\u5723\u8282\u7537\u88C5\u5934\u53D1": -2699217920862709321 + "10\u5E74\u4E07\u5723\u8282\u7537\u88C5\u624B\u5957": 9077083030308179188 + "10\u5E74\u4E07\u5723\u8282\u7537\u88C5\u88E4\u5B50": 843869007825668589 + "10\u5E74\u4E07\u5723\u8282\u7537\u88C5\u978B\u5B50": 339128921410405873 + "10\u7EA7\u7D2B": 3887307435528149431 + "10\u7EA7\u7EA2": -2108852169907481550 + "10\u7EA7\u84DD": 6960877480865794727 + "110_\u56F4\u68CB": 2240621939320901993 + "111_\u5706\u77F3\u684C": 3128702254833061639 + "112_\u5706\u77F3\u51F3": 3016102117565746136 + "113_\u65B9\u77F3\u684C": 4005651392554290576 + "114_\u65B9\u77F3\u51F3": -3470399361773519233 + "115_\u53E4\u8463\u5982\u610F": 7376047958383590200 + "116_\u53E4\u7434\u67B6": -2530091690461073851 + "117_\u4E00\u7EA7\u5C4F\u98CE": -1553150620326937413 + "118_\u4E8C\u7EA7\u5C4F\u98CE": -1995365202875584071 + "119_\u4E09\u7EA7\u5C4F\u98CE": -5845204083895236486 + "11_\u7C89\u5EB7\u8418\u85AA02": 6974316009148552347 + "11\u7EA7\u7D2B": 4323242195891583603 + "11\u7EA7\u7EA2": 3400999556507120587 + "11\u7EA7\u84DD": 3460380805632609660 + "120_\u56DB\u7EA7\u5C4F\u98CE": 4394618810564241012 + "121_\u4E94\u7EA7\u5C4F\u98CE": 4708425168845208488 + "122_\u516D\u7EA7\u5C4F\u98CE": 7385154059223740877 + "123_\u4E03\u7EA7\u5C4F\u98CE": 322881800410318446 + "124_\u516B\u7EA7\u5C4F\u98CE": -502819402854673419 + "125_\u5927\u7EFF\u53F6\u76C6\u666F": -6959058253023100591 + "126_\u53CC\u53F6\u5927\u76C6\u666F": -7258987496393387293 + "127_\u5251\u5170\u76C6\u666F": -9030791440246520853 + "128_\u91D1\u6843\u76C6\u666F": 1629940370525089877 + "129_\u5C0F\u8349\u76C6\u666F": 4464555918797212813 + "12_\u7D2B\u7275\u725B": 6746953620934423703 + "12\u5E74\u5973\u793C\u670D\u4E0A\u8863": -3871181928409281059 + "12\u5E74\u5973\u793C\u670D\u5934\u53D1": -742924678568446037 + "12\u5E74\u5973\u793C\u670D\u624B\u5957": -5459221798659557620 + "12\u5E74\u5973\u793C\u670D\u978B\u5B50": -1583284492004214922 + "12\u5E74\u7537\u793C\u670D\u4E0A\u8863": 2429502098245246487 + "12\u5E74\u7537\u793C\u670D\u5934\u53D1": -7623680948933880484 + "12\u5E74\u7537\u793C\u670D\u88E4\u5B50": 5243490729872303780 + "12\u5E74\u7537\u793C\u670D\u978B\u5B50": 3676833547719976477 + "12\u7EA7\u7D2B": -1229710847013808423 + "12\u7EA7\u7EA2": 7393400238348418107 + "12\u7EA7\u84DD": -6582511964493703703 + "130_\u84B2\u56E2\u8349\u76C6\u666F": 8084969458983652502 + "131_\u4E00\u7EA7\u724C\u533E": -2105236769819016615 + "132_\u4E8C\u7EA7\u724C\u533E": -8760889281468444472 + "133_\u4E09\u7EA7\u724C\u533E": 3251247462386796517 + "134_\u56DB\u7EA7\u724C\u533E": -6660800409232966752 + "135_\u65B9\u82B1\u67B6": 7042468266645305185 + "136_\u5706\u82B1\u67B6": 6212743619309295906 + "137_\u4E00\u7EA7\u5047\u7A97": 2492897964840923319 + "138_\u4E8C\u7EA7\u5047\u7A97": 5021868786472282257 + "139_\u4E09\u7EA7\u5047\u7A97": -2415782618503718788 + "13\u7EA7\u7D2B": -2023932799218136919 + "13\u7EA7\u7EA2": 3761457148037854630 + "13\u7EA7\u84DD": 8021407642442434208 + "140_\u53E4\u8463\u82B1\u74F6": -7634568935283253717 + "141_\u4ED9\u754C\u5927\u53F6\u8349\u5730": -96308469064496888 + "141_\u8C6A\u534E\u5EA7\u6905": -758062698134743386 + "142_\u4ED9\u754C\u65B0\u9053\u8DEF": 7687814541803092067 + "142_\u679C\u76D8": -8012380458159045692 + "143_\u4E00\u7EA7\u67DC\u5B50": -6709309621074955479 + "144_\u4E8C\u7EA7\u67DC\u5B50": -5186753152412463949 + "145_\u4E09\u7EA7\u67DC\u5B50": 3171653602267152070 + "146_\u56DB\u7EA7\u67DC\u5B50": -6204452395779668813 + "147_\u53E4\u7434": -8708505453570966727 + "148_\u9AD8\u7EA7\u68B3\u5986\u53F0": -6440408171621614122 + "149_\u53E4\u8463\u9AD8\u82B1\u74F6": -1653525704609402671 + "149_\u6742\u77F3": -4972907632839070387 + "14_\u4FC4\u56FD\u6A44\u6984": -4373418544196903519 + "14_\u82A6\u82C7": 1090099525224755218 + "14\u5723\u8BDE\u5973\u4E0A\u8863": -4352319289118508523 + "14\u5723\u8BDE\u5973\u62A4\u8155": -6882153044184452508 + "14\u5723\u8BDE\u5973\u88C5\u5934\u53D1": 7708820647379561855 + "14\u5723\u8BDE\u5973\u88E4\u5B50": 7513021624710690317 + "14\u5723\u8BDE\u5973\u978B\u5B50": 437889428410905044 + "14\u5723\u8BDE\u7537\u4E0A\u8863": 890837501930529412 + "14\u5723\u8BDE\u7537\u62A4\u8155": -912818876550959768 + "14\u5723\u8BDE\u7537\u88C5\u5934\u53D1": 7033174524028555598 + "14\u5723\u8BDE\u7537\u88E4\u5B50": -579678617255774393 + "14\u5723\u8BDE\u7537\u978B\u5B50": 1994320195514423983 + "14\u7EA7\u7D2B": 8357929245089273529 + "14\u7EA7\u7EA2": 5989632562487022760 + "14\u7EA7\u84DD": 6602315751503068330 + "150_\u4E00\u7EA7\u5E8A": 7445935933015292962 + "150_\u6C99\u6EE901": -2501834168466653016 + "151_\u4E8C\u7EA7\u5E8A": 2142270749356590025 + "152_\u4E09\u7EA7\u5E8A": 5345594800335623323 + "152_\u6C99\u6EE9\u8D1D\u58F3": 3391123099460711055 + "153_\u56DB\u7EA7\u5E8A": -9004337062474247292 + "154_\u4F4E\u7EA7\u68B3\u5986\u53F0": -7660182994282925141 + "155_\u4E00\u7EA7\u5BF9\u8054\u5DE6\u8054": -5514326285812465156 + "155_\u6C99\u6F2003": -3238545750324477065 + "156_\u4E00\u7EA7\u5BF9\u8054\u53F3\u8054": 6344253581374288119 + "157_\u4E8C\u7EA7\u5BF9\u8054\u5DE6\u8054": -9064426688565247834 + "158_\u4E8C\u7EA7\u5BF9\u8054\u53F3\u8054": -218212959790646090 + "159_\u4E09\u7EA7\u5BF9\u8054\u5DE6\u8054": 7279660667911112143 + "15_\u7EFF\u8272\u82F1\u56FD\u50CF\u6811": -904718222069813214 + "15\u54C1\u5355\u5200": 5092176900114929700 + "15\u54C1\u5355\u5251": -1647777845663423861 + "15\u54C1\u53CC\u624B\u65A7": -5202690697878439247 + "15\u54C1\u5973\u6CD5\u6CE1\u6CD5\u8155": 353107372791064345 + "15\u54C1\u5973\u6CD5\u6CE1\u6CD5\u978B": 8812114755626164383 + "15\u54C1\u5973\u6CD5\u888D\u6CD5\u8863": 1100120895618898666 + "15\u54C1\u5973\u6CD5\u888D\u6CD5\u88E4": -7560830053547319104 + "15\u54C1\u5973\u8F7B\u7532\u624B\u8155": -7470403410299433424 + "15\u54C1\u5973\u8F7B\u7532\u8863\u670D": -7614746944738707527 + "15\u54C1\u5973\u8F7B\u7532\u88E4\u5B50": -266311654510365277 + "15\u54C1\u5973\u8F7B\u7532\u978B": 3438667298388828473 + "15\u54C1\u5973\u91CD\u7532\u624B\u8155": 493986884956034489 + "15\u54C1\u5973\u91CD\u7532\u8863\u670D": -3784463435857790204 + "15\u54C1\u5973\u91CD\u7532\u8863\u88E4\u5B50": 1797573242481855790 + "15\u54C1\u5973\u91CD\u7532\u978B": -4816393605890591417 + "15\u54C1\u5F13": -8557605020797352408 + "15\u54C1\u62AB\u98CE": 8152122810746595782 + "15\u54C1\u62F3\u5957": -2209491454323714538 + "15\u54C1\u6CD5\u4ED7": 39197888824585180 + "15\u54C1\u6CD5\u5251": -5635836612626520772 + "15\u54C1\u6CD5\u5668": -6153948634986832094 + "15\u54C1\u6CD5\u62121": 106054453016952858 + "15\u54C1\u6CD5\u62122": 4639244119515019333 + "15\u54C1\u6CD5\u8170": -3372465384018356358 + "15\u54C1\u6CD5\u9879\u94FE": -7783832690916348787 + "15\u54C1\u722A": 5500554518603042601 + "15\u54C1\u7269\u62121": 8312304545036852536 + "15\u54C1\u7269\u62122": 2564272843568875412 + "15\u54C1\u7269\u8170": -5696337216689284899 + "15\u54C1\u7269\u9879\u94FE": -7267054861327099173 + "15\u54C1\u7537\u6CD5\u888D\u6CD5\u8155": 8909850990921416221 + "15\u54C1\u7537\u6CD5\u888D\u6CD5\u8863": -5524349715839551099 + "15\u54C1\u7537\u6CD5\u888D\u6CD5\u88E4": -894208211968008479 + "15\u54C1\u7537\u6CD5\u888D\u6CD5\u978B": 5284463863928392781 + "15\u54C1\u7537\u8F7B\u7532\u624B\u8155": -875794503363322768 + "15\u54C1\u7537\u8F7B\u7532\u8863\u670D": -8092309272070658519 + "15\u54C1\u7537\u8F7B\u7532\u88E4\u5B50": -7516434734792575101 + "15\u54C1\u7537\u8F7B\u7532\u978B": -2023676962113941556 + "15\u54C1\u7537\u91CD\u7532\u624B\u8155": -3627894417227335494 + "15\u54C1\u7537\u91CD\u7532\u8863\u670D": 7446215818688603637 + "15\u54C1\u7537\u91CD\u7532\u88E4\u5B50": 6573581601867074608 + "15\u54C1\u7537\u91CD\u7532\u978B": -1658659751262827067 + "15\u54C1\u957F\u67AA": -6129769342360203599 + "15\u54C1\u957F\u9524": -532925277848071388 + "15\u54C1\u95EA\u8170": 1620661428984968207 + "15\u54C1\u95EA\u9879\u94FE": -3263473223427077423 + "15\u5723\u8BDE\u88C5\u5973\u5934\u53D1": 7785240788259852573 + "15\u5723\u8BDE\u88C5\u5973\u62A4\u8155": -1856387667518427167 + "15\u5723\u8BDE\u88C5\u5973\u8863\u670D": 2979084921886909861 + "15\u5723\u8BDE\u88C5\u5973\u978B\u5B50": 1720717791222363405 + "15\u5723\u8BDE\u88C5\u7537\u4E0A\u8863": -784624215878754241 + "15\u5723\u8BDE\u88C5\u7537\u4E0B\u8863": -8724818189229659323 + "15\u5723\u8BDE\u88C5\u7537\u5934\u53D1": 2323775152240584801 + "15\u5723\u8BDE\u88C5\u7537\u62A4\u8155": 5974311123060627434 + "15\u5723\u8BDE\u88C5\u7537\u978B\u5B50": -584494333102788414 + "15\u5E74\u8774\u8776\u5973\u88C5\u4E0A\u8863": -5124728038519909810 + "15\u5E74\u8774\u8776\u5973\u88C5\u5934\u53D1": 2978411632854126953 + "15\u5E74\u8774\u8776\u5973\u88C5\u62A4\u8155": 304460673735207881 + "15\u5E74\u8774\u8776\u5973\u88C5\u978B\u5B50": 7378338311859876198 + "15\u65B0\u5E74\u88C5\u5973\u4E0A\u8863": 1771361544547209707 + "15\u65B0\u5E74\u88C5\u5973\u978B\u5B50": 1228847411322419156 + "15\u65B0\u5E74\u88C5\u7537\u4E0A\u8863": 1426114616272098004 + "15\u65B0\u5E74\u88C5\u7537\u978B\u5B50": 2241665255829152106 + "15\u7EA7\u7D2B": -3964126682579352940 + "15\u7EA7\u7EA2": -4429826054581028235 + "15\u7EA7\u84DD": 2286100721215696125 + "160_\u4E09\u7EA7\u5BF9\u8054\u53F3\u8054": -6226303959876683784 + "161_\u56DB\u7EA7\u5BF9\u8054\u5DE6\u8054": -1763898000969550802 + "161_\u6E7F\u571F\u6742\u8349": 852439647883795268 + "162_\u56DB\u7EA7\u5BF9\u8054\u53F3\u8054": -5645690673614194405 + "163_\u4E00\u7EA7\u5730\u6BEF": -7210630335332864657 + "164_\u4E8C\u7EA7\u5730\u6BEF": -2401447600643298549 + "165_\u4E09\u7EA7\u5730\u6BEF": -1756020180008263358 + "166_\u56DB\u7EA7\u5730\u6BEF": -3921118333624218662 + "167_\u4E94\u7EA7\u5730\u6BEF": -7788384910146271626 + "168_\u516D\u7EA7\u5730\u6BEF": -3151359399707076881 + "169_\u4E03\u7EA7\u5730\u6BEF": 1919631941130479544 + "16_\u5939\u6742\u788E\u77F301": 3365407279361196693 + "16\u54C1\u5355\u5200": 1320261613372959116 + "16\u54C1\u5355\u5251": -2196912666687673465 + "16\u54C1\u53CC\u65A7": 8052661332793025444 + "16\u54C1\u5F13": -8697903167729904185 + "16\u54C1\u62F3\u5957": 7615855230930867728 + "16\u54C1\u6CD5\u5251": -3143354550567417754 + "16\u54C1\u6CD5\u5668": 4434497894431872440 + "16\u54C1\u6CD5\u6756": 3761259347668126529 + "16\u54C1\u722A": -1237623522310999252 + "16\u54C1\u957F\u67AA": 7038923317887428300 + "16\u54C1\u957F\u9524": 7000950995112607391 + "170_\u516B\u7EA7\u5730\u6BEF": 8839733298890068208 + "17173\u5C0F\u7AE0\u9C7C": 7008884903389664485 + "171_\u4E5D\u7EA7\u5730\u6BEF": 7582647597295992351 + "172_\u5341\u7EA7\u5730\u6BEF": 7379132753264047298 + "173_\u4E00\u7EA7\u706F": 60146437548213397 + "174_\u4E8C\u7EA7\u706F": 3896704716434850401 + "175_\u4E09\u7EA7\u706F": 3264826185684475812 + "176_\u56DB\u7EA7\u706F": 1691196594482519858 + "177_\u4E94\u7EA7\u706F": -2989920737564859486 + "178_\u77F3\u677F\u8DEF": -2003188354825675055 + "178_\u8336\u76D8": 5636436462369108300 + "179_1\u7EA7\u5EFA\u7B51": -4156111103752382190 + "179_\u788E\u77F3\u6DF7\u5408\u8349\u5730": -7577679750254411292 + "17\u54C1\u5355\u5200": -1561568493912609435 + "17\u54C1\u5355\u5251": 6345086106758379656 + "17\u54C1\u53CC\u5200": 6608260577785801518 + "17\u54C1\u53CC\u5251": -457839657381188921 + "17\u54C1\u53CC\u65A7": -2843105126972537314 + "17\u54C1\u5F13": -132288998387142262 + "17\u54C1\u5F29": 8881400851201884880 + "17\u54C1\u5F39\u5F13": -1013157156507838895 + "17\u54C1\u62F3\u5957": -5103058161539544791 + "17\u54C1\u6CD5\u4E08": 3373866107681766864 + "17\u54C1\u6CD5\u5251": -7463422130159782559 + "17\u54C1\u6CD5\u5668": -3571890231052062798 + "17\u54C1\u6CD5\u672F\u6212\u6307": -5094021192732743297 + "17\u54C1\u6CD5\u672F\u8170\u9970": 7078148345740754338 + "17\u54C1\u6CD5\u672F\u9879\u94FE": 5143823857561971213 + "17\u54C1\u6CD5\u7403": -3939993089103969336 + "17\u54C1\u6CD5\u888D\u4E0A\u8863": 7370484624022781777 + "17\u54C1\u6CD5\u888D\u5934\u76D4": 8951915066803182652 + "17\u54C1\u6CD5\u888D\u62A4\u8155": -1311537325051674532 + "17\u54C1\u6CD5\u888D\u62AB\u98CE": -2268796910665995533 + "17\u54C1\u6CD5\u888D\u88E4\u5B50": -5366289173930225957 + "17\u54C1\u6CD5\u888D\u978B\u5B50": -3740323126434056105 + "17\u54C1\u7075\u5DE7\u8170\u9970": 3918432319796049768 + "17\u54C1\u7075\u5DE7\u9879\u94FE": -950160850009052980 + "17\u54C1\u7269\u7406\u6212\u6307": -3696765561877957547 + "17\u54C1\u7269\u7406\u8170\u9970": -507828434742139713 + "17\u54C1\u7269\u7406\u9879\u94FE": -3033254495709635030 + "17\u54C1\u77ED\u5203": 3532776740443180588 + "17\u54C1\u77ED\u6756": 3588437006438304844 + "17\u54C1\u77ED\u9524": 4603299611273596341 + "17\u54C1\u8F7B\u7532\u4E0A\u8863": -3554391798460182175 + "17\u54C1\u8F7B\u7532\u5934\u76D4": 1004191960383452303 + "17\u54C1\u8F7B\u7532\u62A4\u8155": 1630404923212229433 + "17\u54C1\u8F7B\u7532\u62AB\u98CE": -2994584764036697597 + "17\u54C1\u8F7B\u7532\u88E4\u5B50": 5564297905907212011 + "17\u54C1\u8F7B\u7532\u978B\u5B50": -5984409048239578920 + "17\u54C1\u91CD\u7532\u4E0A\u8863": -452802107258616480 + "17\u54C1\u91CD\u7532\u5934\u76D4": 1826899589617227882 + "17\u54C1\u91CD\u7532\u62A4\u8155": 4921697248006068742 + "17\u54C1\u91CD\u7532\u62AB\u98CE": 6500157471404842518 + "17\u54C1\u91CD\u7532\u88E4\u5B50": -8060369206115393093 + "17\u54C1\u91CD\u7532\u978B\u5B50": -1822067853667968479 + "17\u54C1\u94BA": -8359006595653823773 + "17\u54C1\u957F\u5200": -1798581615554627601 + "17\u54C1\u957F\u65A7": -5663639953818883116 + "17\u54C1\u957F\u67AA": -2297328526262657042 + "17\u54C1\u957F\u9524": 3359458614382702689 + "180_\u4E00\u7EA7\u5EFA\u7B51\u5927\u7CAE\u4ED3": -365447887892790888 + "181_\u4E00\u7EA7\u5EFA\u7B51\u5C0F\u7CAE\u4ED3": -1050454455372663869 + "182_\u4E00\u7EA7\u5EFA\u7B51\u9A6C\u8F66": 1403336539458412217 + "183_\u4E00\u7EA7\u5EFA\u7B51\u667E\u8863\u67B6": 914751719790680779 + "184_\u4E00\u7EA7\u5EFA\u7B51\u7B38\u7BA9": -1654282733974730027 + "185_\u4E00\u7EA7\u5EFA\u7B51\u78E8\u76D8": 2928363862509432901 + "186_\u4E00\u7EA7\u5EFA\u7B51\u6C34\u4E95": 3937811578862534554 + "187_4\u7EA7\u5EFA\u7B51": -2536280682523185151 + "188_3\u7EA7\u5EFA\u7B51": 8640733830509736917 + "188_\u8D1D\u58F3": 6188477096781025979 + "189_2\u7EA7\u5EFA\u7B51": 5539032829194880803 + "189_\u8DEF\u8FB9\u77F3\u58C1": -2881605369392061209 + "18_\u9646\u573003": 1669785633534566402 + "18\u54C1\u5355\u5200": -666833090347969063 + "18\u54C1\u5355\u5251": 649253747275023772 + "18\u54C1\u53CC\u5200": 8775820708092103334 + "18\u54C1\u53CC\u5251": -5142451372378437312 + "18\u54C1\u53CC\u65A7": 6488749644697999454 + "18\u54C1\u53CC\u9524": 5619061925862394912 + "18\u54C1\u5F13": 2597549750746049276 + "18\u54C1\u5F29": 6333626904839270462 + "18\u54C1\u5F39\u5F13": -8099384998838347219 + "18\u54C1\u62F3\u5957": 8576460712237513688 + "18\u54C1\u6CD5\u4ED7": 820738152995550845 + "18\u54C1\u6CD5\u5251": -1400910169800457750 + "18\u54C1\u6CD5\u5668": 8863945358955680898 + "18\u54C1\u6CD5\u672F\u6212\u6307": -4352879696727883409 + "18\u54C1\u6CD5\u672F\u8170\u9970": -2717202275602950261 + "18\u54C1\u6CD5\u672F\u9879\u94FE": 8178017806124932594 + "18\u54C1\u6CD5\u888D\u4E0A\u8863": -5437705263281278212 + "18\u54C1\u6CD5\u888D\u5934\u76D4": 2746125655861521419 + "18\u54C1\u6CD5\u888D\u62A4\u8155": 4139333025819196544 + "18\u54C1\u6CD5\u888D\u62AB\u98CE": -2150616379297718213 + "18\u54C1\u6CD5\u888D\u88E4\u5B50": -8468302237275443682 + "18\u54C1\u6CD5\u888D\u978B\u5B50": 1637944477359888745 + "18\u54C1\u7075\u5DE7\u8170\u9970": 7518883156488463446 + "18\u54C1\u7075\u5DE7\u9879\u94FE": -1705003472781112063 + "18\u54C1\u7269\u7406\u6212\u6307": -2594285663352348582 + "18\u54C1\u7269\u7406\u8170\u9970": 5053465654597157769 + "18\u54C1\u7269\u7406\u9879\u94FE": 7608622446149983774 + "18\u54C1\u77ED\u4E08": 2929910459998032756 + "18\u54C1\u77ED\u5203": -2915857754607820613 + "18\u54C1\u8F7B\u7532\u4E0A\u8863": 3756441849619074122 + "18\u54C1\u8F7B\u7532\u5934\u76D4": -5569181592398166405 + "18\u54C1\u8F7B\u7532\u62A4\u8155": 3244166827029948450 + "18\u54C1\u8F7B\u7532\u62AB\u98CE": -1532909374587449141 + "18\u54C1\u8F7B\u7532\u88E4\u5B50": -7166325279255063721 + "18\u54C1\u8F7B\u7532\u978B\u5B50": -3923567147406268111 + "18\u54C1\u91CD\u7532\u4E0A\u8863": -4880705655999069623 + "18\u54C1\u91CD\u7532\u5934\u76D4": -17660401800443361 + "18\u54C1\u91CD\u7532\u62A4\u8155": -4035452265584045822 + "18\u54C1\u91CD\u7532\u62AB\u98CE": 2655988242342391182 + "18\u54C1\u91CD\u7532\u88E4\u5B50": -7677552689594151387 + "18\u54C1\u91CD\u7532\u978B\u5B50": -3936975872724986381 + "18\u54C1\u94BA": -2886554836333204986 + "18\u54C1\u957F\u5200": -2924894263260383292 + "18\u54C1\u957F\u65A7": -1361665936151763877 + "18\u54C1\u957F\u67AA": -439070762208807824 + "18\u54C1\u957F\u9524": 1805632538159038604 + "190_\u897F\u65B92\u7EA7\u5EFA\u7B51": -5445040573042460739 + "190_\u96E8\u6797\u5C0F\u82B1": -8026465011552272436 + "191_\u6559\u5802": -3896851680755188991 + "192_\u96E8\u6797\u77F3\u5934\u8DEF": -4636474846218943386 + "193_\u897F\u65B93\u7EA7\u5EFA\u7B51": 7772551864367058711 + "194_\u897F\u65B9\u516C\u5171\u533A\u957F\u5ECA": 5986293606075723454 + "196_\u897F\u65B9\u8DEF\u706F": 4437329014740082345 + "196_\u96E8\u6797\u843D\u53F6": -2825425821714420481 + "199_\u897F\u65B93\u7EA7\u7A97\u5E18": -7558607212692807170 + "19_\u5E72\u88C2\u7EB9\u5E72\u9EC4\u571F": 2274499163906522834 + "19_\u9646\u573004": -1691584634507956097 + "19\u54C1\u5315\u9996": -8467487281980754397 + "19\u54C1\u5355\u5200": 6983275440529726568 + "19\u54C1\u5355\u5251": 4795090988057891185 + "19\u54C1\u53CC\u5200": -291255643588466735 + "19\u54C1\u53CC\u5251": 9024651408270538367 + "19\u54C1\u53CC\u65A7": 8968790466725827562 + "19\u54C1\u53CC\u9524": 405501642951596277 + "19\u54C1\u5F13": 5088806728370585674 + "19\u54C1\u5F29": -7396759932393428014 + "19\u54C1\u5F39\u5F13": -2889170450918762880 + "19\u54C1\u6212\u6307": -7490310368991167510 + "19\u54C1\u62F3\u5957": -1926251203851745210 + "19\u54C1\u6CD5\u5251": 8426179620988533809 + "19\u54C1\u6CD5\u5668": 8864094268471486705 + "19\u54C1\u6CD5\u6756": -5169503546449464676 + "19\u54C1\u6CD5\u7403": -3231770998188868817 + "19\u54C1\u6CD5\u888D\u4E0A\u8863": -8507670096990517648 + "19\u54C1\u6CD5\u888D\u4E0B\u8863": -9150535338861004502 + "19\u54C1\u6CD5\u888D\u62A4\u8155": -6415922266270568128 + "19\u54C1\u6CD5\u888D\u978B\u5B50": 1873103324546246152 + "19\u54C1\u6CD5\u88C5\u5934\u76D4": 5617335431930068366 + "19\u54C1\u6CD5\u88C5\u62AB\u98CE": 4346056273576292659 + "19\u54C1\u77ED\u5203": 8882175113281793517 + "19\u54C1\u77ED\u6756": 688384036164540690 + "19\u54C1\u8170\u4F69": 8458090992677609233 + "19\u54C1\u8F7B\u7532\u4E0A\u8863": -5831109940193461633 + "19\u54C1\u8F7B\u7532\u4E0B\u8863": 6754692914848391694 + "19\u54C1\u8F7B\u7532\u62A4\u8155": 6268796512752563593 + "19\u54C1\u8F7B\u7532\u978B\u5B50": 1746402360468032449 + "19\u54C1\u8F7B\u88C5\u5934\u76D4": 991845240219499949 + "19\u54C1\u8F7B\u88C5\u62AB\u98CE": -3764020051272561209 + "19\u54C1\u91CD\u7532\u4E0A\u8863": 1939869790737293665 + "19\u54C1\u91CD\u7532\u4E0B\u8863": -7045931060971052011 + "19\u54C1\u91CD\u7532\u62A4\u8155": 1226789230556183719 + "19\u54C1\u91CD\u7532\u978B\u5B50": 7812547367876524849 + "19\u54C1\u91CD\u88C5\u5934\u76D4": 5542201632410488995 + "19\u54C1\u91CD\u88C5\u62AB\u98CE": 2149279406765640628 + "19\u54C1\u94BA": -1357482105761100429 + "19\u54C1\u957F\u5200": 5050038672008974987 + "19\u54C1\u957F\u65A7": 1292737273610891302 + "19\u54C1\u957F\u77DB": 2719654203787366846 + "19\u54C1\u957F\u9524": -2776775435590394065 + "1_\u4ED9\u4EBA\u67F1": -6653089661299386388 + "1_\u5411\u65E5\u847501": -4130907966003593643 + "1\u7EA7\u65F6\u88C5\u6280\u80FD\u4E66": 4485987268723116666 + "1\u7EA7\u7D2B": 4541456301550149018 + "1\u7EA7\u7EA2": 7910159920041122899 + "1\u7EA7\u84DD": -3133551454251429340 + "1\u7EA7\u989C\u6599": -8024939288772402513 + "1\u7EA7\u98DE\u5251\u6280\u80FD\u4E66": 3269168614659470045 + 2: -761933863725385812 + "2010\u5E7412\u6708\u98DE\u884C\u5668\u62CD\u54C1": -7959873533033149951 + "2010\u62C9\u62C9\u961F\u88C52\u5973\u4E0A\u8863": 2138387260858761274 + "2010\u62C9\u62C9\u961F\u88C52\u5973\u5934\u53D1": -8098311384433961615 + "2010\u62C9\u62C9\u961F\u88C52\u5973\u88E4\u5B50": -1517432151236766433 + "2010\u62C9\u62C9\u961F\u88C52\u5973\u978B\u5B50": -4572116816149692627 + "2011\u5723\u8BDE\u5973\u88C5\u5934\u53D1": -5605462195590225992 + "2011\u5723\u8BDE\u5973\u88C5\u62A4\u8155": 409446699919019869 + "2011\u5723\u8BDE\u5973\u88C5\u8863\u670D": 6136832551740317263 + "2011\u5723\u8BDE\u5973\u88C5\u978B\u5B50": -2340019225080703267 + "2011\u5723\u8BDE\u7537\u88C5\u4E0A\u8863": 5423060039640945691 + "2011\u5723\u8BDE\u7537\u88C5\u5934\u53D1": -2559258883957924420 + "2011\u5723\u8BDE\u7537\u88C5\u88E4\u5B50": 7285912425832789892 + "2011\u5723\u8BDE\u7537\u88C5\u978B\u5B50": 5712107784504520590 + "2012\u5723\u8BDE\u5973\u5E3D": -7669839069303134782 + "2012\u5723\u8BDE\u5973\u88C5": -8900722333921354835 + "2012\u5723\u8BDE\u5973\u88C5\u62A4\u8155": -5892515074160333950 + "2012\u5723\u8BDE\u5973\u88C5\u978B": -3368145020520373544 + "2012\u5723\u8BDE\u5F69\u7403": 3110479551653713681 + "2012\u5723\u8BDE\u5F69\u889C": -3495875024173891540 + "2012\u5723\u8BDE\u62D0\u6756\u7CD6": 8764691242021029690 + "2012\u5723\u8BDE\u661F\u661F": -4760267580934035304 + "2012\u5723\u8BDE\u7537\u5E3D": 246016744481036891 + "2012\u5723\u8BDE\u7537\u88C5\u4E0A\u8863": 2160568779339227979 + "2012\u5723\u8BDE\u7537\u88C5\u88E4": 5237945311584127899 + "2012\u5723\u8BDE\u7537\u88C5\u978B": 5061177659620450966 + "2012\u5723\u8BDE\u7F0E\u5E26": -433506823899209977 + "2012\u5723\u8BDE\u8001\u4EBA\u7684\u888B\u5B50": -4233811891006394023 + "2012\u5723\u8BDE\u94C3\u94DB": 7706195720120576357 + "2012\u57C3\u53CA\u9152": -5947771110099374831 + "2012\u62C9\u62C9\u961F\u88C5\u5973\u4E0A\u8863": 1426389623270942061 + "2012\u62C9\u62C9\u961F\u88C5\u5973\u5934\u53D1": 1609525995862286606 + "2012\u62C9\u62C9\u961F\u88C5\u5973\u88E4\u5B50": -8275113210427440404 + "2012\u62C9\u62C9\u961F\u88C5\u5973\u978B\u5B50": 4350839973110727537 + "2012\u6625\u5929\u5973\u88C5\u4E0A\u8863": -1493659588096098783 + "2012\u6625\u5929\u5973\u88C5\u5934\u53D1": 7460794112878773780 + "2012\u6625\u5929\u5973\u88C5\u62A4\u8155": -2076596292258828036 + "2012\u6625\u5929\u5973\u88C5\u978B\u5B50": 6667708792243529182 + "2012\u6625\u5929\u7537\u88C5\u4E0A\u8863": -1064796622156957850 + "2012\u6625\u5929\u7537\u88C5\u5934\u53D1": 2270825322543665785 + "2012\u6625\u5929\u7537\u88C5\u62A4\u8155": 890133592476624491 + "2012\u6625\u5929\u7537\u88C5\u978B\u5B50": -2014639097863321146 + "2012\u7403\u8863\u88C5\u7537\u4E0A\u8863": 5358921413436109986 + "2012\u7403\u8863\u88C5\u7537\u5934\u53D1": -260864433285659294 + "2012\u7403\u8863\u88C5\u7537\u88E4\u5B50": 5720346021780158523 + "2012\u7403\u8863\u88C5\u7537\u978B\u5B50": -2905034600271877927 + "2012\u8461\u8404\u9152": 232040102905453952 + "2012\u9152\u74F61": 1681798086225536609 + "2012\u9152\u74F62": -3954976604844795758 + "2012\u9152\u74F63": -191925329373763932 + "2012\u96EA\u7403": -4948178553300108564 + "2013\u5723\u8BDE\u5973\u88C5\u4E0A\u8863": 8350058832538201350 + "2013\u5723\u8BDE\u5973\u88C5\u5934\u53D1": 1369596015848273810 + "2013\u5723\u8BDE\u5973\u88C5\u62A4\u624B": -4306102733916971755 + "2013\u5723\u8BDE\u5973\u88C5\u978B\u5B50": -8171238540494655136 + "2013\u5723\u8BDE\u7537\u88C5\u4E0A\u8863": 1771578849498322239 + "2013\u5723\u8BDE\u7537\u88C5\u5934\u53D1": 326464887645648949 + "2013\u5723\u8BDE\u7537\u88C5\u62A4\u624B": -4229499606472066801 + "2013\u5723\u8BDE\u7537\u88C5\u88E4\u5B50": -1070345096358281851 + "2013\u5723\u8BDE\u7537\u88C5\u978B\u5B50": 6829507504453972337 + "2013\u98DE\u5929\u732A": 616664180032407680 + "2014\u5973\u5DF4\u897F\u7403\u8863\u4E0A\u8863": -4652212653082789806 + "2014\u5973\u5DF4\u897F\u7403\u8863\u978B\u5B50": -5027646379727853821 + "2014\u5973\u5FB7\u56FD\u7403\u8863\u4E0A\u8863": -6666964570808375642 + "2014\u5973\u5FB7\u56FD\u7403\u8863\u978B\u5B50": 9108943082176366674 + "2014\u5973\u610F\u5927\u5229\u7403\u8863\u8863\u670D": -3475132494123561140 + "2014\u5973\u610F\u5927\u5229\u7403\u8863\u978B\u5B50": -1654180777426730927 + "2014\u5973\u6CD5\u56FD\u7403\u8863\u4E0A\u8863": -2379437778038225303 + "2014\u5973\u6CD5\u56FD\u7403\u8863\u978B\u5B50": -1769890652516679454 + "2014\u5973\u8377\u5170\u7403\u8863\u8863\u670D": 3359080401529631729 + "2014\u5973\u8377\u5170\u7403\u8863\u978B\u5B50": 1489241400671104762 + "2014\u5973\u8461\u8404\u7259\u7403\u8863\u8863\u670D": -4681008998839211136 + "2014\u5973\u8461\u8404\u7259\u7403\u8863\u978B\u5B50": -6118091308094561647 + "2014\u5973\u897F\u73ED\u7259\u7403\u8863\u8863\u670D": 3483437358253491666 + "2014\u5973\u897F\u73ED\u7259\u7403\u8863\u978B\u5B50": 7291822901317518843 + "2014\u5973\u963F\u6839\u5EF7\u7403\u8863\u4E0A\u8863": 8595892988505577248 + "2014\u5973\u963F\u6839\u5EF7\u7403\u8863\u978B\u5B50": -7544213623019274745 + "2014\u6625\u8282\u5973\u88C5\u4E0A\u8863": 4697059780351464888 + "2014\u6625\u8282\u5973\u88C5\u5934\u53D1": -45588130274047353 + "2014\u6625\u8282\u5973\u88C5\u62A4\u8155": -4534944645193999530 + "2014\u6625\u8282\u5973\u88C5\u978B\u5B50": 7045498985326333444 + "2014\u6625\u8282\u7537\u88C5\u4E0A\u8863": 5169969045762080592 + "2014\u6625\u8282\u7537\u88C5\u5934\u53D1": 2325783408813384260 + "2014\u6625\u8282\u7537\u88C5\u62A4\u624B": -8481677749257501741 + "2014\u6625\u8282\u7537\u88C5\u978B\u5B50": -3312927709894389119 + "2014\u7537\u5DF4\u897F\u7403\u8863\u4E0A\u8863": -4359226408624060163 + "2014\u7537\u5DF4\u897F\u7403\u8863\u88E4\u5B50": 553631610570311341 + "2014\u7537\u5DF4\u897F\u7403\u8863\u978B\u5B50": 8678383075249335277 + "2014\u7537\u5FB7\u56FD\u7403\u8863\u4E0A\u8863": -5049649672090683839 + "2014\u7537\u5FB7\u56FD\u7403\u8863\u88E4\u5B50": -6930525728966169500 + "2014\u7537\u5FB7\u56FD\u7403\u8863\u978B\u5B50": 6559720795280064141 + "2014\u7537\u610F\u5927\u5229\u7403\u8863\u4E0A\u8863": 298207716086520228 + "2014\u7537\u610F\u5927\u5229\u7403\u8863\u88E4\u5B50": 1340883318648466135 + "2014\u7537\u610F\u5927\u5229\u7403\u8863\u978B\u5B50": 8119213798941009788 + "2014\u7537\u6CD5\u56FD\u7403\u8863\u4E0A\u8863": 7976551674654226178 + "2014\u7537\u6CD5\u56FD\u7403\u8863\u88E4\u5B50": -4828245205388568266 + "2014\u7537\u6CD5\u56FD\u7403\u8863\u978B\u5B50": -2759330814457829357 + "2014\u7537\u8377\u5170\u7403\u8863\u4E0A\u8863": 3522572239309775315 + "2014\u7537\u8377\u5170\u7403\u8863\u88E4\u5B50": 5162263091425901115 + "2014\u7537\u8377\u5170\u7403\u8863\u978B\u5B50": 1835332402218845017 + "2014\u7537\u8461\u8404\u7259\u7403\u8863\u4E0A\u8863": 6386083252623153281 + "2014\u7537\u8461\u8404\u7259\u7403\u8863\u88E4\u5B50": 8321599748206714293 + "2014\u7537\u8461\u8404\u7259\u7403\u8863\u978B\u5B50": -4677468206804436989 + "2014\u7537\u897F\u73ED\u7259\u7403\u8863\u4E0A\u8863": -1532714776522234183 + "2014\u7537\u897F\u73ED\u7259\u7403\u8863\u88E4\u5B50": 6660523384999759607 + "2014\u7537\u897F\u73ED\u7259\u7403\u8863\u978B\u5B50": -5370792634305392428 + "2014\u7537\u963F\u6839\u5EF7\u7403\u8863\u4E0A\u8863": -1446711638699214695 + "2014\u7537\u963F\u6839\u5EF7\u7403\u8863\u88E4\u5B50": 4299205807626966751 + "2014\u7537\u963F\u6839\u5EF7\u7403\u8863\u978B\u5B50": 2155445191759150538 + "2014\u82B1\u5315\u9996": 3748968675515503332 + "2014\u82B1\u5355\u624B\u77ED": 7446601196994110056 + "2014\u82B1\u5355\u624B\u77ED2": -6121230826261507597 + "2014\u82B1\u53CC\u624B\u77ED": -5477695780520058172 + "2014\u82B1\u53CC\u624B\u957F": -4061642099063842717 + "2014\u82B1\u5F13": -458928513073136300 + "2014\u82B1\u6CD5\u7403": -4686738092920031056 + "2015\u4E0D\u7CFB\u821F": 589994063771002845 + "2015\u4E0D\u95EE\u82CD\u751F\u95EE\u9B3C\u795E": -2679053539408608335 + "2015\u4EBA\u65CF\u7AF9\u7B80": -2252154014530818001 + "2015\u4EBA\u65CF\u94A5\u5319": -4685037838589599835 + "2015\u4F1A\u633D\u96D5\u5F13\u5982\u6EE1\u6708": 5176697151020835824 + "2015\u529B\u62D4\u5C71\u516E\u6C14\u76D6\u4E16": -6271218191824225127 + "2015\u5317\u7F8E\u72EE\u5B50": 6775195074185907145 + "2015\u536B\u6B66\u7EB9\u7AE0": -6299220721077696643 + "2015\u5723\u8BDE\u6C14\u7403": -31494514681094505 + "2015\u5723\u8BDE\u889C\u5B50": -1300859037042105256 + "2015\u5723\u8BDE\u96EA\u82B1": -4548895640390825155 + "2015\u5927\u98CE\u8D77\u516E\u4E91\u98DE\u626C": -3383238734849983841 + "2015\u5929\u82E5\u6709\u60C5\u5929\u4EA6\u8001": 7212540240955573259 + "2015\u5996\u517D\u767D\u708E\u517D": -8093692889323358442 + "2015\u5996\u65CF\u7FFC\u9F99\u98DE\u884C\u5668": 7602557513324404975 + "2015\u5996\u65CF\u98DE\u7F8A": 2754507402664337088 + "2015\u5BB6\u56ED\u5723\u8BDE\u5C0F\u96EA\u4EBA\u626B\u628A": -3246356527290951472 + "2015\u5BB6\u56ED\u5723\u8BDE\u5C0F\u96EA\u4EBA\u96EA\u7403": 605050296196502393 + "2015\u5BB6\u56ED\u5723\u8BDE\u6811": 4477417626897216263 + "2015\u5BB6\u56ED\u5723\u8BDE\u793C\u76D2": -5880315651979154568 + "2015\u5BB6\u56ED\u5723\u8BDE\u7CD6\u679C\u5C4B": -3329211141004232911 + "2015\u5BB6\u56ED\u5723\u8BDE\u8001\u4EBA": -791101203545805461 + "2015\u5BB6\u56ED\u5723\u8BDE\u964D\u843D\u4F1E": -8281804712264961166 + "2015\u5BB6\u56ED\u5723\u8BDE\u9774\u5B50": 1929744806301742098 + "2015\u5C0F\u697C\u4E00\u591C\u542C\u6625\u96E8": 668698448488124799 + "2015\u5E2E\u6D3E\u51B0\u9F99": 600947557934646198 + "2015\u5E2E\u6D3E\u706B\u9F99": -6586169508905604257 + "2015\u5E742\u5B63\u5EA6\u7FBD\u65CF\u98DE\u884C\u5668": -7114395455891523122 + "2015\u62C9\u5F25\u4E9A": -3823836633999035287 + "2015\u6708\u5982\u65E0\u6068\u6708\u5E38\u5706": 5546791431415350148 + "2015\u673A\u5668\u4EBA\u5BA0\u7269": 855703372707062729 + "2015\u67EF\u57FA\u5BA0\u7269": -135457867561223366 + "2015\u68A6\u91CC\u6311\u706F\u9189\u770B\u5251": -2958668175870911073 + "2015\u6A31\u82B1\u6247": -6189670630108948221 + "2015\u6C50\u65CF\u53CC\u9C7C\u5EA7": -4622406929738785883 + "2015\u6C50\u65CF\u7279\u6548\u7FC5\u8180": 5558953128546987782 + "2015\u6C50\u65CF\u9EC4\u7EFF": -5007026374563590256 + "2015\u7075\u65CF\u82AD\u8549\u6247": -266978635216598816 + "2015\u7075\u65CF\u82B1\u706F": 8965409403339252139 + "2015\u7075\u65CF\u82B1\u7075": -3025765295534845784 + "2015\u70ED\u6C14\u7403\u98DE\u9A91": -6290277315087174003 + "2015\u72EC\u89D2\u517D": -3264321905273786860 + "2015\u72EE\u9E6B\u5750\u9A91": 8336619614284857868 + "2015\u7334\u5E74\u6446\u644A": -3615506892461203140 + "2015\u7834\u788E\u5C71\u6CB3\u5370": 5395397401258672548 + "2015\u7CD6\u846B\u82A6\u53CC\u624B\u77ED": 3576809694476958086 + "2015\u7FBD\u65CF\u58A8\u67D3": -6500699012759411797 + "2015\u7FBD\u65CF\u707F\u8776": -5440951072541863074 + "2015\u7FBD\u65CF\u9189\u7965\u4E91": -166804797445422246 + "2015\u80E7\u65CF\u795E\u5668": -5484231729273149880 + "2015\u80E7\u65CF\u84DD\u5149\u8F6E": -1437852184488304412 + "2015\u80E7\u65CF\u91D1\u534E": 1716932589185802250 + "2015\u897F\u65B9\u6076\u9F99": -8177600394406065707 + "2015\u96EA\u82B1\u6B66\u5668\u5315\u9996": -3716804673365642017 + "2015\u96EA\u82B1\u6B66\u5668\u5355\u624B\u77ED": 2001994187407429024 + "2015\u96EA\u82B1\u6B66\u5668\u53CC\u624B\u77ED": -6631050034288650041 + "2015\u96EA\u82B1\u6B66\u5668\u53CC\u624B\u957F": -4940745483511733602 + "2015\u96EA\u82B1\u6B66\u5668\u5F13": 3660374580230188672 + "2015\u96EA\u82B1\u6B66\u5668\u62F3\u5957": 9154833510341909470 + "2015\u96EA\u82B1\u6B66\u5668\u6708\u9570": 5436561700880389464 + "2015\u96EA\u82B1\u6B66\u5668\u6CD5\u7403": -8432489582815992673 + "2015\u96EA\u82B1\u6B66\u5668\u80E7\u5200": 6968565090721464698 + "2016vip\u6C50\u65CF\u6B66\u5668": 8987587136733055161 + "2016vip\u6C50\u65CF\u7FC5\u8180": -6422494305273494736 + "2016vip\u7FBD\u65CF\u6B66\u5668": 1634107247307539420 + "2016vip\u7FBD\u65CF\u7FC5\u8180": -6305659849138175576 + "2016vip\u80E7\u65CF\u6B66\u5668": 8689568101197305062 + "2016vip\u80E7\u65CF\u98DE\u884C\u5668": -5724802568431126956 + "2016\u4EBA\u65CF\u70AB\u5F69\u98CE\u8F66": -3985975487504923487 + "2016\u51B0\u6DC7\u6DCB\u5355\u624B\u77ED": 3130296997770486966 + "2016\u51B0\u6DC7\u6DCB\u6CD5\u7403": -6882188051784833851 + "2016\u609F\u7A7A\u5750\u9A91": 1102840530646568582 + "2016\u65B0\u6625\u798F\u888B": 5516137659248436074 + "2016\u6625\u8282\u5973\u88C5\u4E0A\u8863": 7877187765481998070 + "2016\u6625\u8282\u5973\u88C5\u5934\u53D1": -7346105732487026837 + "2016\u6625\u8282\u5973\u88C5\u62A4\u8155": -2052575204328078164 + "2016\u6625\u8282\u5973\u88C5\u978B\u5B50": 5140007552154915572 + "2016\u6625\u8282\u7537\u88C5\u4E0A\u8863": 2239864068967938108 + "2016\u6625\u8282\u7537\u88C5\u4E0B\u8863": -5243288058414452077 + "2016\u6625\u8282\u7537\u88C5\u5934\u53D1": -7029934146987600999 + "2016\u6625\u8282\u7537\u88C5\u62A4\u8155": -1810518412511241621 + "2016\u6625\u8282\u7537\u88C5\u978B\u5B50": -4663271695925445386 + "2016\u7070\u59D1\u5A18\u9A6C\u8F66": 2894302239502745750 + "2016\u7CD6\u679C\u5315\u9996": 1334155508070552123 + "2016\u7CD6\u679C\u53CC\u624B\u77ED": -4217499816639300708 + "2016\u7CD6\u679C\u53CC\u624B\u957F": 3020137354627417134 + "2016\u7CD6\u679C\u5F29": 8238747158059700259 + "2016\u7CD6\u679C\u5F39\u5F13": 204044085585462085 + "2016\u7CD6\u679C\u62F3\u5957": 4976262022754212702 + "2016\u7CD6\u679C\u80E7\u5200": 636113076586349114 + "2016\u7CD6\u679C\u9570\u5200": 1923949037142783903 + "2016\u7EA2\u5305\u4E00": 7725764219998250672 + "2016\u7EA2\u5305\u4E09": -498212025803080391 + "2016\u7EA2\u5305\u4E8C": -2562016700038296697 + "2016\u7EA2\u5305\u4E94": -6866454435491529237 + "2016\u7EA2\u5305\u516D": -5379976151702121014 + "2016\u7EA2\u5305\u56DB": 6951209481953665043 + "2016\u97F3\u7B26\u5973\u4E0A\u8863": -8535576696620875794 + "2016\u97F3\u7B26\u5973\u5934\u53D1": 1186269065698966665 + "2016\u97F3\u7B26\u5973\u62A4\u8155": 6116813856706936285 + "2016\u97F3\u7B26\u5973\u978B\u5B50": 6608363227087074153 + "202_\u897F\u65B91\u7EA7\u5EFA\u7B51": 6283030531468709145 + "202_\u897F\u65B92\u7EA7\u7A97\u5E18": 7982673857505267278 + "203_\u897F\u65B9\u4E00\u7EA7\u7A97\u5E18": -2967610340757078530 + "204_\u897F\u65B91\u7EA7\u6CB9\u753B": -7519642239160082897 + "205_\u897F\u65B92\u7EA7\u6CB9\u753B": -8593913688206260565 + "206_\u897F\u65B93\u7EA7\u6CB9\u753B": -8032251177845238875 + "207_\u897F\u65B91\u7EA7\u53F0\u706F": -7978394412549831796 + "208_\u897F\u65B92\u7EA7\u53F0\u706F": -5886451163521064896 + "209_\u897F\u65B93\u7EA7\u53F0\u706F": 7022625712605620373 + "20_\u7070\u7EFF\u834901": -2243981246776129458 + "20\u54C1\u5315\u9996": -6477424457673384033 + "20\u54C1\u53CC\u5251": 1015041742742489948 + "20\u54C1\u53CC\u65A7": -8980876129990284059 + "20\u54C1\u5F13": 4031295313321173085 + "20\u54C1\u62F3\u5957": 2649270161444376486 + "20\u54C1\u6CD5\u5251": 4236023842347802760 + "20\u54C1\u6CD5\u5668": -2527381973108799331 + "20\u54C1\u6CD5\u888D\u4E0A\u8863": -2043785791961394227 + "20\u54C1\u6CD5\u888D\u62A4\u8155": 6889890250078561080 + "20\u54C1\u6CD5\u888D\u88E4\u5B50": 10698115172113917 + "20\u54C1\u6CD5\u888D\u978B\u5B50": -259760016748779262 + "20\u54C1\u8F7B\u7532\u4E0A\u8863": 2154596223139000600 + "20\u54C1\u8F7B\u7532\u62A4\u8155": -2382095821676884420 + "20\u54C1\u8F7B\u7532\u88E4\u5B50": -7279852127659878425 + "20\u54C1\u8F7B\u7532\u978B\u5B50": 7245319809651654112 + "20\u54C1\u91CD\u7532\u4E0A\u8863": 4654229331607647950 + "20\u54C1\u91CD\u7532\u62A4\u8155": 8450277747418412059 + "20\u54C1\u91CD\u7532\u88E4\u5B50": -8501940037713037539 + "20\u54C1\u91CD\u7532\u978B\u5B50": -6286729998379763180 + "210_\u897F\u65B91\u7EA7\u6905\u5B50": -3703488432887763512 + "211_\u897F\u65B92\u7EA7\u6905\u5B50": 8717907605767439316 + "212_\u897F\u65B93\u7EA7\u6905\u5B50": 8757002649838738738 + "213_\u897F\u65B91\u7EA7\u53F0\u706F": 6431956190540505756 + "214_\u897F\u65B92\u7EA7\u53F0\u706F": -2769133344081900490 + "214_\u9EC4\u8272\u5C0F\u82B1": -8909019806979257576 + "215_\u4E71\u6742\u788E\u8349": 8221013339168670951 + "215_\u897F\u65B93\u7EA7\u53F0\u706F": -313935812835190221 + "216_\u519C\u753001": 5733630238864386113 + "216_\u897F\u65B9\u7AD6\u7434": 764418242016078928 + "217_\u897F\u65B91\u7EA7\u68B3\u5986\u53F0": 3962819563428452105 + "218_\u897F\u65B92\u7EA7\u68B3\u5986\u53F0": -8349155872278043856 + "219_\u897F\u65B93\u7EA7\u68B3\u5986\u53F0": 4221837301078813059 + "21_\u7070\u7EFF\u834902": -8791869168916957745 + "21\u54C1\u5315\u9996": -6199382103833917185 + "21\u54C1\u5355\u5200": 4088964396803241459 + "21\u54C1\u5934\u90E8": -7445684264921983443 + "21\u54C1\u5F29": 1190208199295312966 + "21\u54C1\u6CD5\u5668": 1125356691032824946 + "21\u54C1\u6CD5\u5B9D": -942806912447821360 + "21\u54C1\u6CD5\u888D\u4E0A\u8863": -2189729814072016589 + "21\u54C1\u6CD5\u888D\u62A4\u8155": 3708249708468317547 + "21\u54C1\u6CD5\u888D\u88E4\u5B50": -8931632180146410806 + "21\u54C1\u6CD5\u888D\u978B\u5B50": 6968158076897876843 + "21\u54C1\u8F7B\u7532\u4E0A\u8863": 1907012657364425921 + "21\u54C1\u8F7B\u7532\u62A4\u8155": -8876321641327234005 + "21\u54C1\u8F7B\u7532\u88E4\u5B50": -2949047573550336346 + "21\u54C1\u8F7B\u7532\u978B\u5B50": -156347074261101909 + "21\u54C1\u91CD\u7532\u4E0A\u8863": -5326587890684174994 + "21\u54C1\u91CD\u7532\u62A4\u8155": 5028110693532992141 + "21\u54C1\u91CD\u7532\u88E4\u5B50": -4336043253263755380 + "21\u54C1\u91CD\u7532\u978B\u5B50": -8529993373571025685 + "21\u54C1\u957F\u67AA": 7958015290880674139 + "21\u54C1\u957F\u9524": 1825039587173604065 + "220_\u897F\u65B9\u56FD\u9645\u8C61\u68CB": -8126674012604817348 + "221_\u5C71\u58C12": 329505233705481972 + "221_\u897F\u65B91\u7EA7\u540A\u706F": -7545829878569638439 + "222_\u5C71\u58C13": 5853994449214824579 + "222_\u897F\u65B92\u7EA7\u540A\u706F": -2481080169709916100 + "223_\u5C71\u58C14": 4052646024352249445 + "223_\u897F\u65B93\u7EA7\u540A\u706F": 412871397935701384 + "224_\u5C71\u58C15": -7495540213169354803 + "224_\u897F\u65B9\u5C0F\u63D0\u7434": 4761270535528625161 + "225_\u5C71\u77F3": -4971773511886374223 + "225_\u897F\u65B9\u7EA2\u5730\u6BEF": 6495278670777517558 + "226_\u897F\u65B9\u7EA2\u5170\u6BEF": -2357860939024821849 + "227_\u897F\u65B91\u7EA7\u843D\u5730\u706F": -4261943668677636256 + "228_\u5E72\u88C2\u5730\u9762": 676154779137974831 + "228_\u897F\u65B92\u7EA7\u843D\u5730\u706F": -3620100701250340961 + "229_\u897F\u65B93\u7EA7\u843D\u5730\u706F": -915837772950563962 + "22\u54C1\u5315\u9996": 8631644346998732286 + "22\u54C1\u53CC\u5200": 3576035293766212434 + "22\u54C1\u53CC\u65A7": -6100953537439010838 + "22\u54C1\u5934\u90E8": 273357331465505024 + "22\u54C1\u62F3\u5957": 3026709653612568808 + "22\u54C1\u6CD5\u5251": -4232327489195918577 + "22\u54C1\u6CD5\u888D\u4E0A\u8863": -8961129309276521048 + "22\u54C1\u6CD5\u888D\u624B\u5957": -6266185953718988251 + "22\u54C1\u6CD5\u888D\u88E4\u5B50": -7277603847425867760 + "22\u54C1\u6CD5\u888D\u978B\u5B50": 4399976053427748129 + "22\u54C1\u77ED\u5203": -5825468536820846799 + "22\u54C1\u8F7B\u7532\u4E0A\u8863": 4072681197913268026 + "22\u54C1\u8F7B\u7532\u624B\u5957": -6387881059791518604 + "22\u54C1\u8F7B\u7532\u88E4\u5B50": 3087128489758775930 + "22\u54C1\u8F7B\u7532\u978B\u5B50": -53267992320753132 + "22\u54C1\u91CD\u7532\u4E0A\u8863": 2796283775921640949 + "22\u54C1\u91CD\u7532\u62A4\u8155": 8821895655637603829 + "22\u54C1\u91CD\u7532\u88E4\u5B50": -8579774768547551973 + "22\u54C1\u91CD\u7532\u978B\u5B50": 8753686450802579198 + "22\u54C1\u957F\u65A7": -7873465088207997090 + "22\u5F39\u5F13": -3998882887358031704 + "22\u6CD5\u5B9D": -2833485569563028350 + "22\u77ED\u6756": 6104550540117480077 + "230_\u70C2\u6CE5\u8349\u5730": -5944808423374678769 + "230_\u897F\u65B9\u5927\u63D0\u7434": -2886076136200501396 + "231_\u897F\u65B91\u7EA7\u5E8A": -3184696152096412720 + "232_\u77F3\u5934\u573003": 6006347880270276326 + "232_\u897F\u65B92\u7EA7\u5E8A": 7949164392339768474 + "233_\u897F\u65B93\u7EA7\u5E8A": 3770178021404892745 + "234_\u77F3\u5934\u5730\u9762": -4924867547999140047 + "234_\u897F\u65B91\u7EA7\u53F0\u706F": 7094525887799990227 + "235_\u77F3\u5934\u5730\u97622": -2708619171108881597 + "235_\u897F\u65B92\u7EA7\u540A\u706F": 5027992473419439948 + "236_\u77F3\u5934\u5730\u97623": -609249165125857950 + "236_\u897F\u65B93\u7EA7\u540A\u706F": 3530317327599713600 + "237_\u77F3\u5934\u8DEF": 740538220012695123 + "237_\u897F\u65B91\u7EA7\u684C\u5B50": -7335742562529462858 + "238_\u7834\u77F3\u677F\u8DEF": 7502758516562750817 + "238_\u897F\u65B92\u7EA7\u684C\u5B50": 2841638626539824703 + "239_\u788E\u6E23\u5730": 3382236999223087976 + "239_\u897F\u65B93\u7EA7\u684C\u5B50": -4210974876122480020 + "23_\u6742\u788E\u77F3\u9508\u7EA2\u571F": -4543368962390344414 + "23_\u7070\u7EFF\u834903": -552706062751329781 + "23\u5355\u5251": 5895220134384313278 + "23\u54C1\u5315\u9996": 4630019549194081589 + "23\u54C1\u53CC\u9524": -3121628730002664435 + "23\u54C1\u5934\u90E8": 2164820390840892564 + "23\u54C1\u5E61\u6756": -2408338752844476241 + "23\u54C1\u5F13": 3236698947152111486 + "23\u54C1\u65E0\u5984\u6CD5\u7403": -1279655201608810589 + "23\u54C1\u6CD5\u888D\u4E0A\u8863": 292508661510779481 + "23\u54C1\u6CD5\u888D\u62A4\u8155": -3680538257657168995 + "23\u54C1\u6CD5\u888D\u88E4\u5B50": -6791032358729352761 + "23\u54C1\u6CD5\u888D\u978B\u5B50": -574277517589292160 + "23\u54C1\u8F7B\u7532\u4E0A\u8863": 6371535929521831492 + "23\u54C1\u8F7B\u7532\u62A4\u8155": -1675959990132567543 + "23\u54C1\u8F7B\u7532\u88E4\u5B50": 4443761399100502836 + "23\u54C1\u8F7B\u7532\u978B\u5B50": 1494961690938970872 + "23\u54C1\u91CD\u7532\u4E0A\u8863": 4434624940925897926 + "23\u54C1\u91CD\u7532\u62A4\u8155": 8162985496251037899 + "23\u54C1\u91CD\u7532\u88E4\u5B50": 4239887806464860843 + "23\u54C1\u91CD\u7532\u978B\u5B50": -2299466935872514376 + "23\u54C1\u957F\u5200": 6530265095481590426 + "242_\u788E\u6E23\u57304": 3476257666330597615 + "243_\u82D4\u85D3\u6CE5\u571F": 2432860811841846436 + "244_\u8349\u5730": 8664268205221491820 + "245_\u8349\u57302": 3809685679346670711 + "246_\u8910\u571F\u6742\u8349": -3592824677339973947 + "249_\u9E45\u5375\u77F3\u5730\u9762": 7673685681907796564 + "24_\u6742\u788E\u77F3\u9EC4\u571F": -1100171861487611690 + "24\u54C1\u5315\u9996": 6885098250571851501 + "24\u54C1\u53CC\u5251": 2123031391875162636 + "24\u54C1\u53CC\u5251\u65B0": -5197406725749828726 + "24\u54C1\u53CC\u65A7": -7406416006629749834 + "24\u54C1\u5934\u90E8": -5963411982415882386 + "24\u54C1\u5F13": -4692820427976678417 + "24\u54C1\u5F29": -4931878583571957955 + "24\u54C1\u6CD5\u5668": -2844732680768263046 + "24\u54C1\u6CD5\u5B9D": -6972242963728461247 + "24\u54C1\u77ED\u5203": 7939031818987083476 + "250_\u9EC4\u571F\u5730": 6284991290877738027 + "25_\u6742\u788E\u77F3\u9ED1\u8910\u571F": 1439514168781033269 + "25_\u7070\u7EFF\u834904": 1730645081990049493 + "25\u54C1\u5315\u9996": -8831373876341603957 + "25\u54C1\u5355\u5251": 4001576370966355107 + "25\u54C1\u5F13": 2837340014653232760 + "25\u54C1\u6CD5\u5251": -4586325289374281680 + "25\u54C1\u6CD5\u5B9D": 2937508599002682105 + "25\u54C1\u957F\u65A7": -2021354741753045525 + "25\u54C1\u957F\u67AA": 7379702998860795777 + "264_\u5927\u53F6\u8349\u5730": 2583504133781005195 + "268_\u5927\u7EB9\u7406\u8349\u57302": 8414408929451285934 + "26_\u7EFF\u834901": -571616470963144226 + "26\u5315\u9996": -7160772711037816770 + "26\u5355\u5251": 3184008626839559085 + "26\u54C1\u5315\u9996": 3644778420170720755 + "26\u54C1\u53CC\u65A7": 4961379264980995529 + "26\u54C1\u5E61\u6756": -2439999068324261879 + "26\u54C1\u5F13": -4830739349858009964 + "26\u54C1\u6CD5\u5251": 7512873004774037579 + "26\u6CD5\u5668": 9205091141531830493 + "26\u6CD5\u7403": 5748866757090817354 + "26\u77ED\u6756": -7597035883889699279 + "26\u957F\u9524": 1480369938994140852 + "271_\u767D\u82B1\u6742\u8349": -3920797959976078909 + "272_\u8584\u88C2\u571F-02": 4272188860741585765 + "273_\u8584\u88C2\u571F": -8581956630691281632 + "275_\u9EC4\u82B1\u8349\u5730": -8652744768503941707 + "27_\u602A\u5F02\u677E\u6811": 7700145644465850517 + "27_\u7EFF\u834902": -8808806548168520715 + "27\u5315\u9996": -3358581280618418696 + "27\u5355\u5200": -4783768355215558902 + "27\u53CC\u5200": 284463531246154201 + "27\u53CC\u65A7\u5B50": 1207201272166296672 + "27\u6BDB\u5F13": 5503627633841666614 + "27\u6CD5\u5251": -4576015735896798702 + "27\u6CD5\u7403": -2223234294097954497 + "27\u6CD5\u8F6E": -2101322951245082721 + "27\u756A\u4ED7": 1789060793261910878 + "27\u77ED\u6756": -2069267661908252041 + "27\u957F\u9524": 929643533111227803 + "284_\u5AE9\u6742\u8349": -5808798083499621511 + "286_\u6A59\u548C\u7070\u9EC4\u53F6\u6A44\u6984\u7EFF\u6742\u8349": 641689237933400443 + "289_\u7070\u8910\u571F\u5AE9\u6742\u8349": 266274259226775053 + "28_\u602A\u5F02\u677E\u681101": 8858201770219412312 + "28_\u6D45\u7070\u9EC4\u571F": 962540019537121176 + "28_\u7EFF\u834903": -6345403832196345018 + "28\u5315\u9996": 2564630746558992064 + "28\u54C1\u53CC\u5200": 3011229813407571978 + "28\u54C1\u53CC\u5251": 8288111837877996031 + "28\u54C1\u53CC\u624B\u65A7": -5350920502248571253 + "28\u54C1\u5F13": -3192603020481644693 + "28\u54C1\u77ED\u6756": -4828573336208525840 + "28\u5E61\u4E08": -7038128678427581094 + "28\u6CD5\u5251": -4508118914666160238 + "28\u6CD5\u5668": 8091341834915026654 + "28\u6CD5\u7403": -3697462399461148792 + "28\u957F\u67AA": -3382147469237816892 + "290_\u7070\u9EC4\u571F\u5AE9\u6742\u8349": -772766605922966402 + "29_\u7EFF\u834904": 2778185639677457487 + "29\u54C1\u5315\u9996": 1545783941827369936 + "29\u54C1\u53CC\u5200\uFF08\u65A7\uFF09": 1700358906265803138 + "29\u54C1\u53CC\u624B\u53CC\u5251": -5105720846142333627 + "29\u54C1\u5E61\u6756": -8208062844351617877 + "29\u54C1\u5F13": -1629630751577153949 + "29\u54C1\u6CD5\u5251": -8440552550102744379 + "29\u54C1\u6CD5\u5668": 4850777656265471069 + "29\u54C1\u6CD5\u56682": 7552399533761464025 + "29\u54C1\u6CD5\u7403": 6693142792371505651 + "29\u54C1\u77ED\u5203": -4156784672437483521 + "29\u54C1\u77ED\u6756": -6661632922155991018 + "29\u54C1\u957F\u5200": 6119150697225925617 + "29\u54C1\u957F\u9524": -3257566793682815969 + "2_\u4ED9\u754C\u6811\u6728": 7958319404689612018 + "2_\u5411\u65E5\u847502": 467928555769125610 + "2\u7EA7\u65F6\u88C5\u6280\u80FD\u4E66": 6676287906865988361 + "2\u7EA7\u7D2B": 7387118810104596658 + "2\u7EA7\u7EA2": 4630183663773723270 + "2\u7EA7\u84DD": -4185764968267595168 + "2\u7EA7\u989C\u6599": 1593581865564207293 + "2\u7EA7\u98DE\u5251\u6280\u80FD\u4E66": -8108794434287247055 + 3: -5906598218874874896 + "302_\u96E8\u6797\u8349\u5730": -4643929764019094435 + "306_\u8349\u5730\u5218": 665318356764776657 + "30_\u7EFF\u834905": 2209612536291249206 + "31_\u6DF1\u7070\u9EC4\u571F": 391048004110921252 + "31_\u7EFF\u834906": 7429762546697263542 + "32_\u7EFF\u834907": -7487843756980080077 + "33_\u6DF1\u9508\u7EA2\u571F": 6520294161699260968 + "33_\u7EFF\u834908": -4169474789492014091 + "34_\u82B1\u8349": -6954693823761620094 + "35_\u7530\u5730": -921556238671252924 + "35_\u9EC4\u7EFF\u834901": 2670317048392530746 + "37_\u7EA2\u788E\u53F6\u9508\u7EA2\u571F": 2235089166907981400 + "38_\u67F3\u6811": -7744409534242296580 + "38_\u9EC4\u834901": 6109254431207777137 + "39_\u6843\u6811": -3956596741330397214 + "39_\u9EC4\u834902": -312895186200922742 + "3_\u50CF\u6811": -7037395459740298713 + "3_\u5C0F\u9EC4\u82B101": -7467899601649797330 + "3\u7EA7\u65F6\u88C5\u6280\u80FD\u4E66": 2076538853362172300 + "3\u7EA7\u7D2B": 4851800141835877220 + "3\u7EA7\u7EA2": -30003423176910344 + "3\u7EA7\u84DD": 1755241436150188140 + "3\u7EA7\u98DE\u5251\u6280\u80FD\u4E66": -8891909201061602539 + 4: -1816755548282093316 + "40_\u6843\u6811\u5C0F": -63455115974901676 + "40_\u9508\u7EA2\u571F": 3736614842963187424 + "41_\u6843\u6811\u5C0F\u5C0F": 809969456877832206 + "41_\u9508\u9EC4\u571F": -8864101391754054826 + "42_\u6851\u6811": 2707513201953464278 + "43_\u68A8\u6811": 4891380597922612272 + "44_\u68A8\u681101": -8617921485699571359 + "45_\u68D5\u6988": -6892621536980916003 + "46_\u68D5\u698801": -4850452381319535576 + "47_\u6930\u5B50\u6811": -5603208602115349130 + "48_\u6930\u5B50\u681101": -7158883866391099382 + "49\u5173\u8272\u5B50_1": -8282394514847506389 + "49\u5173\u8272\u5B50_2": 5232715326329189801 + "49\u5173\u8272\u5B50_3": -1157650078428120564 + "49\u5173\u8272\u5B50_4": 6533826320380988754 + "49\u5173\u8272\u5B50_5": 802497581817985748 + "49\u5173\u8272\u5B50_6": -3866227306463151978 + "4_\u5370\u5EA6\u6995": -8969003474634974218 + "4_\u5C0F\u9EC4\u82B102": 6787806715532428597 + "4\u7EA7\u65F6\u88C5\u6280\u80FD\u4E66": 6685128180979660539 + "4\u7EA7\u7D2B": 7623776473522564505 + "4\u7EA7\u7EA2": 1156045916735678505 + "4\u7EA7\u84DD": -3531056334560705263 + "4\u7EA7\u98DE\u5251\u6280\u80FD\u4E66": -8702615730321601940 + 5: 2008176328888099268 + "50_\u5343\u5C42\u7EA2": 3500674353717685893 + "53_\u5927\u5047\u5C71": 9182507772278602113 + "53_\u5927\u6735\u9EC4\u82B1": -1250688429998018049 + "54_\u5927\u6735\u9EC4\u82B101": 3368880858546416086 + "54_\u5C0F\u5047\u5C71": -2444955809170025009 + "55_\u55B7\u6CC9": -6130364392722283801 + "55_\u5C0F\u788E\u9EC4\u82B101": -3172941953423048077 + "56_\u5C0F\u788E\u9EC4\u82B102": 7361497492419461384 + "56_\u77F3\u6865": -4614206773027873145 + "57_\u5C0F\u788E\u9EC4\u82B103": -378550176429493217 + "58_\u5C0F\u9EC4\u82B105": -571308385994241036 + "58_\u767D\u6768": -4657238199451512778 + "59_\u5C0F\u9EC4\u82B106": 5127970043928521595 + "59_\u6DF1\u7070\u8910\u571F": -7981411986891950031 + "59_\u767D\u676801": 7310043788632585078 + "5_\u5916\u8116\u767D\u6811": 5596414062704013599 + "5_\u5C0F\u9EC4\u82B103": -4070562991498801943 + "5\u7EA7\u65F6\u88C5\u6280\u80FD\u4E66": -3576625630360332866 + "5\u7EA7\u7D2B": 252815192406529888 + "5\u7EA7\u7EA2": 8976078718682699502 + "5\u7EA7\u84DD": -6052714050788528978 + "5\u7EA7\u98DE\u5251\u6280\u80FD\u4E66": -7055330109982321153 + 6: 6967745887157389618 + "60_\u5927\u77F3\u72EE\u5B50": 1600851901338717152 + "60_\u5EB7\u5948\u85AA": 5725343794967486962 + "60_\u6DF1\u7070\u9EC4\u571F": 5975101230865882949 + "61_\u5C0F\u77F3\u72EE\u5B50": -3968688945880884004 + "61_\u5EB7\u5948\u85AA01": 5391214435777351607 + "61_\u6DF1\u9508\u7EA2\u571F": -2227684148606365433 + "61_\u7AF9\u679701": 6220895034273129670 + "62_\u6843\u91D1\u5A18": -1978994932165599454 + "62_\u6DF1\u9EC4\u571F": -7546127839517969586 + "62_\u7AF9\u679702": 5639818656232432947 + "63_\u7070\u8272\u571F": 3880753206498213512 + "63_\u72ED\u53F6\u756A": 8561877311817894435 + "63_\u7AF9\u679703": -7190537058104249295 + "64_\u7389\u7C73": 7288083786167589583 + "64_\u767D\u571F": -4135338158201232275 + "64_\u7AF9\u679704": -6794268733989673567 + "65_\u7CD6\u68A7\u6850": -8411918396369451971 + "65_\u7D2B\u8272\u5C0F\u82B1": 7071692415545222831 + "66_\u7CD6\u68A7\u685001": -1900348216651107623 + "68_\u9508\u7EA2\u6742\u8349\u70B9\u571F": 4417179587325353921 + "69_\u82A6\u82C7\u82B1": -287974060541052555 + "69_\u82F1\u56FD\u50CF\u6811": -1515321447889768023 + "69_\u96E8\u6797\u571F": -6698992546227226730 + "6_\u6A61\u80F6\u6811": -2499969685489243134 + "6\u7EA7\u7D2B": 3695391663887573322 + "6\u7EA7\u7EA2": -5376195052768964125 + "6\u7EA7\u84DD": 7927480643925026452 + 7: 6501298950303736333 + "70_\u82B1\u817E": 2217714106987537976 + "71_\u8774\u8776\u82B1": -8191913787905674963 + "71_\u9EC4\u571F": -5719217219351498062 + "72_\u83E9\u63D0\u6811": 3338841312813032921 + "72_\u9EA6\u5B50": -3269918871819798785 + "73_\u704C\u672801": -8025821525887417271 + "73_\u83E9\u63D0\u681101": -7626752692415855748 + "74_\u704C\u672802": -485740932332461860 + "75_\u704C\u672803": 5088746860281958666 + "76_\u704C\u672804": -1844279843657842496 + "77_\u704C\u672805": -5975897317679143135 + "78_\u704C\u672806": 373261243411017851 + "79_\u704C\u672807": -5601803646507418495 + "7_\u5C0F\u9EC4\u82B104": 501895432525414307 + "7_\u6C99\u6811": -3593548695279819741 + "7\u7EA7\u7D2B": -3858284017352940480 + "7\u7EA7\u7EA2": -2950219016338877621 + "7\u7EA7\u84DD": 515013068746320812 + 8: -3181606171480048652 + "80_\u704C\u6728\u7403": 4560881092620383522 + "82_\u8349\u85E401": 3493620475565862622 + "83_\u8349\u85E402": -1702487001123115811 + "85_\u4EAC\u57CE\u5730\u9762": -6089417643789561243 + "86_\u8349\u85E403": 8400283409896530843 + 8749: -7725530488325703626 + 8750: 8888886003469010194 + 8751: 4526801195339409112 + 8752: -6876063621693849591 + 8753: 5197522439765386002 + 8754: -6553199681783408283 + 8755: -8598946359683117033 + 8756: 3036781257005124140 + 8757: 1401640428198037277 + 8758: -69499796486419897 + 8759: 740729850218151918 + 8760: -2251315971702209987 + 8761: -6296899908120684126 + 8762: -3217401064031408700 + 8763: 822827481464806043 + 8764: 2050988026293817891 + 8765: 585623129230143721 + 8766: 3064924299683570067 + 8767: 6122078938943337264 + 8768: 4317410015569539038 + 8769: 1097417305259881211 + 8770: 8990224715053697791 + 8771: -7447392592551395745 + 8772: 2390873356352206290 + 8773: 7934520564637939177 + 8774: -8206153770114871430 + 8775: 6839473461518043055 + 8776: 4705481968940683437 + 8777: -2469749167540846325 + 8778: -7392252123794997131 + 8779: -5971554358159657109 + 8780: 2402448372940458685 + 8781: 6332859150068300427 + 8782: -300902645269353731 + 8783: -4752565014007003263 + 8784: -3509169372820182031 + 8785: -5838223824633951492 + 8786: -2359393106477122324 + 8787: 2172547091381373331 + 8788: 3324990857419361829 + 8789: -4743184508937814499 + 8790: 1625586452347951003 + 8791: 316866319994849002 + 8792: -796085299930260112 + 8793: -8154392099567394304 + 8794: 6627074007013121744 + 8795: -550967979885558785 + 8796: 3096721844363551907 + 8797: -3907803151377453653 + 8798: 8177209706716941402 + 8799: -8772065391190603366 + 8800: 3642871531118695490 + 8801: 2308328004259469860 + 8802: -3330194164877354597 + 8803: -2089955617167853105 + 8804: -998405623454720474 + 8805: -9222084080755327244 + 8806: 2966316833182093017 + 8807: -8349800977916212957 + 8808: 9171566153384004969 + 8809: -2168630014981126325 + 8810: -5834441921343128466 + 8811: -8236889074164582108 + 8812: 8250768436552798646 + 8813: -834687351035960739 + 8814: -1962061135412579870 + 8815: 7180204873056586611 + 8816: 2988820077291837939 + 8817: 7865290926093663607 + 8818: -963178171224273264 + 8819: 2464785485347995890 + 8820: -6177351622652086647 + 8821: 5845207580537819313 + 8822: -5514567299721663852 + 8823: -6044565037996308808 + 8824: -229676927358457297 + 8825: 4358823190591656425 + 8826: 2241138335006644607 + 8827: -4278870797128245097 + 8828: 7451812751504664956 + 8829: -5894986642018629117 + 8830: -2121889513349546442 + 8831: -6504765193619532601 + "88_\u4E00\u7EA7\u5B57\u753B": 7402463335332876162 + "88_\u9AD8\u704C\u672801": -4065855409659513648 + "89_\u4E8C\u7EA7\u5B57\u753B": 2782492604694035584 + "89_\u9AD8\u704C\u672802": 6076368862117001840 + "8_\u6C99\u681101": -6801993024627883841 + "8_\u72D7\u5C3E\u8349": 5914143094448333679 + "8\u7EA7\u7D2B": 4590501640342357307 + "8\u7EA7\u7EA2": 4916738910803209662 + "8\u7EA7\u84DD": -3236103131344726197 + 9: -7010260848350730462 + "90_\u4E09\u7EA7\u5B57\u753B": 6318683541797712608 + "90_\u5C0F\u65B9\u7816\u5730\u976203": 9037990786714988193 + "91_\u56DB\u7EA7\u5B57\u753B": 2951357232490152156 + "91_\u6761\u77F3\u5730\u9762": 8470026294463678905 + "91_\u9AD8\u704C\u672803": 7638792140315878187 + "92_\u4E94\u7EA7\u5B57\u753B": -2692519844066106875 + "92_\u9E45\u5375\u77F3\u50CF\u6811\u5927": 237770920377556108 + "93_\u516D\u7EA7\u5B57\u753B": -5575678506126710896 + "93_\u9E45\u5375\u77F3\u50CF\u681101": -4459092854528405015 + "94_\u4E03\u7EA7\u5B57\u753B": -8632585986593301289 + "94_\u9E45\u5375\u77F3\u50CF\u681102": 746697664251116 + "95_\u516B\u7EA7\u5B57\u753B": -2336824905161164466 + "95_\u9E45\u5375\u77F3\u50CF\u681103": 7939638345438682969 + "96_\u767D\u8721\u70DB": -5535723533331270829 + "96_\u77F3\u5934\u5730": -2102290962004603136 + "96_\u9E45\u5375\u77F3\u50CF\u681104": -595990262750520302 + "97_\u7EA2\u8721\u70DB": 6280108461064091009 + "98_\u7EB1\u7F69\u706F": -8945070145255145867 + "99_\u53E4\u8463\u7389\u74A7": 6079657932045193637 + "99\u5355\u52003": -2286353770773236174 + "99\u53CC\u52511": 4907657481365660932 + "99\u53CC\u65A71": 2103155641890112413 + "99\u5B9D\u8F6E": -7713206384662487116 + "99\u5F132": -7871653561784371933 + "99\u5F291": 6873847946085434476 + "99\u6210\u5C31\u4E4B\u7FFC": 175864633405177700 + "99\u67AA4": 5720870391883144034 + "99\u6CD5\u52515": 263903535732580369 + "99\u85E9\u6756": 6378324705305023748 + "99\u957F\u9524": 5220920091962643910 + "9_\u82F1\u683C\u5170\u50CF\u6811": -7842301364279341553 + "9\u6708\u7FC5\u8180": -7429912322793958047 + "9\u6708\u98DE\u5251": -3161594371798883208 + "9\u7EA7\u7D2B": 3051648892451745242 + "9\u7EA7\u7EA2": -8125616539254356745 + "9\u7EA7\u84DD": 6688534391887741204 + "gm\u5956\u7AE0": -9222957173015780297 + hana: -367939409324590473 + happybirthday: 7202815389048060995 + iloveyou: 1318581852565104485 + "it\u7537\u624B\u6307\u62F3\u5957": -480867269732629470 + love: -1441953335386821384 + merrychristmas: 2821922061772936754 + "q\u5C0F\u9F99": -6571970824865761847 + "rmb\u9053\u5177_\u5E26\u9501\u7684\u5B9D\u7BB1": -5496532078654643712 + "rmb\u9053\u5177_\u6253\u5F00\u7684\u5B9D\u7BB1": -1999334380487863832 + "rmb\u9053\u5177_\u795E\u79D8\u9524\u5B50": -3828720314294338652 + "sina\u5C0F\u6D6A": 1893214615869064563 + unknown: 969654227808767567 + "yy\u5973\u718A": 1980315650294615793 + "yy\u7537\u718A": -6049880443825021657 + zippo: 1260466050614819922 + "\x7F2012\u5723\u8BDE\u889C\u5B501": -2997215187572846431 + "\x7F2012\u5723\u8BDE\u889C\u5B502": -5738379729015076869 + "\x7F2012\u5723\u8BDE\u889C\u5B503": 3503043426080464453 + "\x7F2012\u5723\u8BDE\u889C\u5B504": 4390612970050996823 + "\x7F2012\u5723\u8BDE\u889C\u5B505": 2822675047596973173 + "\u4E00": 8956252966083695526 + "\u4E00\u4E32\u7EA2": -4424701999325040041 + "\u4E00\u5143\u590D\u59CB\u4EE4": -8835877333313374498 + "\u4E00\u5143\u77F3": 5784390820653471547 + "\u4E00\u534A\u7684\u91D1\u624B\u956F": -7184459073790648709 + "\u4E00\u5468\u5E74\u5750\u9A91\u9F99": 7609822573075616517 + "\u4E00\u661F\u9F99\u73E0": 5329340035452580005 + "\u4E00\u672C\u5F69\u8272\u7684\u4E66": -2700031676786508918 + "\u4E00\u6839\u725B\u89D2": 5014976888853048205 + "\u4E00\u6B65\u767B\u5929\xB7\u52A8\u5929": -7628412135236511214 + "\u4E00\u6B65\u767B\u5929\u5468\u5929": -3057383986780810839 + "\u4E00\u6B65\u767B\u5929\u5E7B\u5929": -8558021522479636886 + "\u4E00\u6B65\u767B\u5929\u7384\u5929": -203299561053046398 + "\u4E00\u6B69\u83B2\u534E\u53F0": -4702865686989351432 + "\u4E00\u7B49\u5956": 2437451255330157469 + "\u4E00\u7B49\u7956\u9F99\u52CB\u7AE0": 534414454753228538 + "\u4E00\u7B49\u954C\u523B": 5800434497864370813 + "\u4E00\u7BAD\u503E\u5FC3": -7744049967141621332 + "\u4E00\u7EA7\u4E5D\u9633\u4E39": -3975498753291273914 + "\u4E00\u7EA7\u4E5D\u9F99\u6563": 4613974256847026898 + "\u4E00\u7EA7\u5F52\u5143\u6563": -52293009362173411 + "\u4E00\u7EA7\u6728\u7CBE": -1032176960896117119 + "\u4E00\u7EA7\u6C89\u9999\u4E38": 4921655089085074589 + "\u4E00\u7EA7\u6D3B\u8840\u6563": 4113428379724647069 + "\u4E00\u7EA7\u795E\u6C14\u4E38": -4671181353820719759 + "\u4E00\u7EA7\u7CBE\u91D1": 4254446124277047828 + "\u4E00\u7EA7\u7EEB\u7F57": -8151414004950193099 + "\u4E00\u7EA7\u8FD8\u7075\u6C34": -4563910607044544064 + "\u4E00\u7EA7\u91D1\u521B\u836F": 7425169803775289359 + "\u4E00\u7EA7\u9F99\u6D8E\u9999": -668210885836200809 + "\u4E00\u89C1\u949F\u60C5": 2908952338505692055 + "\u4E01": -1931914011743705943 + "\u4E03": 5067661070915724786 + "\u4E03\u515C\u517D\u5143\u9B42": -3576655081540687063 + "\u4E03\u5915\u4E4B\u591C\u6267\u624B\u9E4A\u6865": -3016762918907938725 + "\u4E03\u5F69\u5927\u793C\u5305": -3310295712528299608 + "\u4E03\u5F69\u795E\u77F3": -7384674599454527714 + "\u4E03\u661F\u5251": -1777786728605523011 + "\u4E03\u661F\u77F3": -3398280304275349466 + "\u4E03\u661F\u795E\u5251": 5752255894713370828 + "\u4E03\u661F\u9F99\u73E0": 4894334713559093146 + "\u4E03\u66DC\u534E\u6676": 1092639548304003887 + "\u4E03\u66DC\u8170\u9970": 2782448256196106782 + "\u4E03\u6740\u4EE4\xB7\u660E": 5349324260863119046 + "\u4E03\u6740\u4EE4\xB7\u6697": 9024650909416177100 + "\u4E03\u6740\u4EE4\xB7\u865A": 8678402161343515728 + "\u4E03\u6740\u5370\xB7\u660E": -59789931534042510 + "\u4E03\u6740\u5370\xB7\u6697": 8060542793571937762 + "\u4E03\u6740\u5370\xB7\u865A": -6569415623347374242 + "\u4E03\u6740\u5E16\xB7\u592A\u5FAE": 2029996685978949623 + "\u4E03\u6740\u5E16\xB7\u5C11\u5FAE": -6102003931170051604 + "\u4E03\u6740\u5E16\xB7\u7D2B\u5FAE": 1558740098528690620 + "\u4E03\u7B49\u5956": -995105433017176169 + "\u4E03\u7B49\u954C\u523B": -6392630761395402117 + "\u4E03\u7F6A": 6450778465418031265 + "\u4E07\u4EBA\u654C": 7520781834732065387 + "\u4E07\u52AB\u62A4\u817F": 7093349366530756086 + "\u4E07\u52AB\u62AB\u98CE": 819787036181808246 + "\u4E07\u5316\u57CE\u7CBE\u5143": -7057971109062213739 + "\u4E07\u5723\u5357\u74DC\u94DC\u6805\u680F": 2284451422028676370 + "\u4E07\u5723\u6212": -5172757028357697498 + "\u4E07\u5723\u8282\u5357\u74DC\u5934\u5973\u5934\u53D1": -631569488962532077 + "\u4E07\u5723\u8282\u5357\u74DC\u5934\u7537\u5934\u53D1": -3352108229031990601 + "\u4E07\u58D1\u677E\u98CE\u56FE": -3706766979475436283 + "\u4E07\u5B9D\u77F3\u523B\u8DEF\u706F": 5910054631157529410 + "\u4E07\u5BFF\u798F\u5B57\u67DC": -8729687750890800313 + "\u4E07\u5E74\u69FD": -7002812077527616850 + "\u4E07\u5E74\u7075\u829D": -5286615433595914300 + "\u4E07\u6BD2\u6BCD\u6DB2": 251303116616237840 + "\u4E07\u8C61\u5C65": 3472607361680253268 + "\u4E07\u8C61\u62A4\u8155": -8775962248878180488 + "\u4E07\u8C61\u66F4\u65B0\u77F3": 8777234111100712328 + "\u4E07\u8C61\u888D": -7947007350117780178 + "\u4E07\u8C61\u88E4": 8315204846626294755 + "\u4E07\u94A7\u5DE8\u65A7": -7508488171903204566 + "\u4E09": 756969435421583460 + "\u4E09\u5203\u77E2": 302690241571966588 + "\u4E09\u53C9\u621F": 4064022065328367867 + "\u4E09\u53E0\u74F7\u6A3D\u58C1\u76CF": -1922661056501701885 + "\u4E09\u5934\u72D7": 8354337525002371612 + "\u4E09\u5C0A\u4E0B\u51E1": 7340793065331932896 + "\u4E09\u5C38\u661F\u5361": -2538237379847412639 + "\u4E09\u5C71\u4E94\u5CB3\u5361": -3048339773115679234 + "\u4E09\u5C81\u661F\u5361": -3049779051927591934 + "\u4E09\u5F69\u5B9D\u6708\u74F6": 7003756357015424939 + "\u4E09\u5F69\u6D17\u53E3\u74F6": 2970195744818723601 + "\u4E09\u624D\u77F3": -4575254195008759132 + "\u4E09\u661F\u9F99\u73E0": -2852328446910819131 + "\u4E09\u66DC\u71A0\u706B\u9B42": -8437677588308237386 + "\u4E09\u6E05\u4F69": -7219428991669727311 + "\u4E09\u6E05\u5361": 8866727455836436887 + "\u4E09\u6E05\u592A\u6781\u574A": 2900305589384820576 + "\u4E09\u7384\u5408\u5242": 4673963588923293600 + "\u4E09\u751F\u6811": -2864916920704358236 + "\u4E09\u751F\u77F3\u4E03\u5F69": -614331009812707022 + "\u4E09\u751F\u77F3\u6A59": -7462987873801236216 + "\u4E09\u751F\u77F3\u767D": 5823905071387680983 + "\u4E09\u751F\u77F3\u7D2B": -967888939903167867 + "\u4E09\u751F\u77F3\u7EFF": -4862514063481398429 + "\u4E09\u751F\u77F3\u84DD": -424075089652882575 + "\u4E09\u751F\u77F3\u8D64": 8435002888635910268 + "\u4E09\u751F\u77F3\u9752": 9031093488440944528 + "\u4E09\u751F\u77F3\u9EC4": -9216379911456676053 + "\u4E09\u751F\u77F3\u9ED1": 2215856617763753219 + "\u4E09\u754C\u4E4B\u5251": 5115590604931281689 + "\u4E09\u754C\u795E\u6C34": 7804963474653231514 + "\u4E09\u795E\u5361": -5234811294575618114 + "\u4E09\u7B49\u5956": -3622578816536789995 + "\u4E09\u7B49\u7956\u9F99\u52CB\u7AE0": 7863026673656003172 + "\u4E09\u7B49\u954C\u523B": -816068593850909465 + "\u4E09\u7EA7\u4E5D\u9633\u4E39": 3149831880714488050 + "\u4E09\u7EA7\u4E5D\u9F99\u6563": -6347360995001270469 + "\u4E09\u7EA7\u5F52\u5143\u6563": 8510981432595280178 + "\u4E09\u7EA7\u6C89\u9999\u4E38": 3381341987224940237 + "\u4E09\u7EA7\u6D3B\u8840\u6563": -3503280387694382498 + "\u4E09\u7EA7\u795E\u6C14\u4E38": -4308482114439071990 + "\u4E09\u7EA7\u8FD8\u7075\u6C34": 8439007435272904164 + "\u4E09\u7EA7\u91D1\u521B\u836F": 6210911325179109112 + "\u4E09\u7EA7\u9F99\u6D8E\u9999": 1166788763055633898 + "\u4E09\u8000\u9AA8\u6C24\u7075": -1226803223272820937 + "\u4E09\u8272\u7403": 8255775371084355262 + "\u4E09\u8FDE\u7206": -2333618819963944181 + "\u4E0A\u51A5\u5251": -4325509652243587509 + "\u4E0A\u53E4\u5143\u7075": -3536650248324289187 + "\u4E0A\u53E4\u517D": -6998667772523734893 + "\u4E0A\u53E4\u51B0\u9B44": 8660567777622456476 + "\u4E0A\u5E1D\u6B66\u88C5": 2875532524314699381 + "\u4E0A\u6E05\u4E4B\u5251": -7672415915322069306 + "\u4E0A\u6E05\u5361": -1051646123882888314 + "\u4E0D\u670Dpk": 5052729740064306837 + "\u4E0D\u7834\u9879\u94FE": 1911208427616273939 + "\u4E0D\u7CFB\u821F": 3082037202761535275 + "\u4E0D\u8D25\u610F\u5FD7": 6658967982503347694 + "\u4E0E\u5B50\u8C10\u8001": -9158160832970379297 + "\u4E11": 8361444542381455120 + "\u4E16": 5872496062984795682 + "\u4E16\u754C\u6811": -4942536861797140202 + "\u4E16\u7CBE\u8840\u7483": 9019369608531415886 + "\u4E16\u7CBE\u8840\u7483\u955C": -2224145538606844803 + "\u4E18\u6A0A\u8FCE\u4ED9\u6846": 8295924966846932571 + "\u4E19": -4438734523193699868 + "\u4E1B\u6797\u4E4B\u773C\u6CD51\u6863": -836674239746719401 + "\u4E1B\u6797\u4E4B\u773C\u6CD52\u6863": 1629478299010706199 + "\u4E1B\u6797\u4E4B\u773C\u6CD53\u6863": 7599804335938455875 + "\u4E1B\u6797\u4E4B\u773C\u72691\u6863": 3024181253220747564 + "\u4E1B\u6797\u4E4B\u773C\u72692\u6863": -4252889391477276294 + "\u4E1B\u6797\u4E4B\u773C\u72693\u6863": -2186609715541252462 + "\u4E1B\u6797\u4E4B\u77F3": 3541262732959607617 + "\u4E1B\u6797\u9057\u4F69\xB7\u5BC6\u5319": 8829130695977036209 + "\u4E1B\u6797\u9057\u7389\xB7\u6A59\u9732": 8542396163236568752 + "\u4E1B\u6797\u9057\u7389\xB7\u767D\u7FFC": -3574263205496656547 + "\u4E1B\u6797\u9057\u7389\xB7\u78A7\u7075": 1857850238588970337 + "\u4E1B\u6797\u9057\u7389\xB7\u7D2B\u5E7B": 2353692093033795597 + "\u4E1B\u6797\u9057\u7389\xB7\u84DD\u7F18": 275960538431790299 + "\u4E1B\u6797\u9057\u7389\xB7\u8D64\u706B": 6693669876806720125 + "\u4E1B\u6797\u9057\u7389\xB7\u9EC4\u695A": 1605658739118484044 + "\u4E1B\u6797\u9057\u7389\xB7\u9ED1\u70EC": -7548066505635538280 + "\u4E1B\u6797\u9057\u73AF\xB7\u9041\u9B54": 1417450970219459476 + "\u4E1B\u6797\u9057\u73AF\xB7\u98DE\u4ED9": 4063086437674473415 + "\u4E1B\u6797\u9057\u73E0": 5378981225867591929 + "\u4E1C\u6597\u5361": -1297498989589593600 + "\u4E1C\u65B9\u4E0D\u8D25\u5973\u5E3D\u5B50": 6939832088986806341 + "\u4E1C\u65B9\u4E0D\u8D25\u5973\u8863\u670D": 6017977622801373819 + "\u4E1C\u65B9\u4E0D\u8D25\u5973\u978B\u5B50": 5208596459617244943 + "\u4E1C\u65B9\u4E0D\u8D25\u7537\u5E3D\u5B50": -6571719430260787649 + "\u4E1C\u65B9\u4E0D\u8D25\u7537\u8863\u670D": 3667364097132196494 + "\u4E1C\u65B9\u4E0D\u8D25\u7537\u978B\u5B50": 8881384185918163297 + "\u4E1D\u5DFE": -2543747932592386018 + "\u4E1D\u5E26": 590989582796059477 + "\u4E1D\u7EBF": -1092496402017537172 + "\u4E1D\u7EF8\u62A4\u8155\u7EE3\u9762": -731199288118399804 + "\u4E1D\u7EF8\u6CD5\u672F\u978B\u5E95": -1619345279392537071 + "\u4E1D\u7EF8\u6CD5\u888D\u8863\u895F": 1928031208408026817 + "\u4E1D\u7EF8\u6CD5\u88E4\u4E0B\u6446": -2617261971364129437 + "\u4E1D\u7EF8\u7075\u529B\u5E61\u7EE6": -1996966204981465516 + "\u4E1D\u7EF8\u9999\u56CA": 5797684288429452827 + "\u4E24\u4EEA\u5C65": 4576070747645919299 + "\u4E24\u4EEA\u62A4\u8155": 7015290021651693722 + "\u4E24\u4EEA\u77F3": 7333191185498214373 + "\u4E24\u4EEA\u888D": -8448217808243654800 + "\u4E24\u4EEA\u88E4": 5183059686906086187 + "\u4E24\u6606\u4ED1": -258563358443314833 + "\u4E2A\u6027\u76AE\u8863\u957F\u88D9\u65F6\u88C5\u4E0A\u8863": -1898542643066230262 + "\u4E2A\u6027\u76AE\u8863\u957F\u88D9\u65F6\u88C5\u5934\u53D1": -704178742179910234 + "\u4E2A\u6027\u76AE\u8863\u957F\u88D9\u65F6\u88C5\u978B\u5B50": -3179117981608046708 + "\u4E2A\u6027\u83AB\u897F\u5E72\u7537\u5934\u53D1": 3788586931712099857 + "\u4E2D": -2740778943601193004 + "\u4E2D\u4E16\u7EAA\u8D35\u5987\u88C5\u5973\u4E0A\u8863": -6640942472542333135 + "\u4E2D\u4E16\u7EAA\u8D35\u5987\u88C5\u5973\u5934\u53D1": 6662498014514964703 + "\u4E2D\u4E16\u7EAA\u8D35\u5987\u88C5\u5973\u624B\u5957": -2814669913190387628 + "\u4E2D\u4E16\u7EAA\u8D35\u5987\u88C5\u5973\u978B\u5B50": -8313264331265708079 + "\u4E2D\u4E16\u7EAA\u98CE\u60C5\u5973\u88C5-\u8863\u670D32": -3297413462214900201 + "\u4E2D\u4E16\u7EAA\u98CE\u60C5\u5973\u88C5-\u978B32": -5298505517791096463 + "\u4E2D\u4E16\u7EAA\u98CE\u60C5\u7537\u88C5-\u8863\u670D32": 7479243802702240548 + "\u4E2D\u4E16\u7EAA\u98CE\u60C5\u7537\u88C5-\u88E4\u5B5032": -1806849917020769618 + "\u4E2D\u4E16\u7EAA\u98CE\u60C5\u7537\u88C5-\u978B32": -849718738428269899 + "\u4E2D\u4E5D\u9633\u4E39": -4184237716179896839 + "\u4E2D\u56FD\u7ED3\u5973\u4E0A\u886332": -1049801359992930788 + "\u4E2D\u56FD\u7ED3\u5973\u5934\u53D132": -5076794941539683408 + "\u4E2D\u56FD\u7ED3\u5973\u624B\u595732": 5168553722061587936 + "\u4E2D\u56FD\u7ED3\u5973\u978B\u5B5032": 8706127530777383805 + "\u4E2D\u56FD\u91D1\u9F99": 3926013881062765608 + "\u4E2D\u5883\u795E\u4E39\u7384\u5929": 5950523728351014616 + "\u4E2D\u5F0F\u4E2D\u7EA7\u4E3B\u5C4B": -3357595515096266949 + "\u4E2D\u5F0F\u4F4E\u7EA7\u4E3B\u5C4B": -2423665097081086701 + "\u4E2D\u5F0F\u5A5A\u793C\u88C5\u5973\u4E0A\u8863": 8644642831019617721 + "\u4E2D\u5F0F\u5A5A\u793C\u88C5\u5973\u978B\u5B50": 3300241337512589326 + "\u4E2D\u5F0F\u5A5A\u793C\u88C5\u7537\u4E0A\u8863": 4134630506523805864 + "\u4E2D\u5F0F\u5A5A\u793C\u88C5\u7537\u88E4\u5B50": 5854535295479765548 + "\u4E2D\u5F0F\u5A5A\u793C\u88C5\u7537\u978B\u5B50": -6274643242007324716 + "\u4E2D\u5F0F\u9AD8\u7EA7\u4E3B\u5C4B": -2489021166924048920 + "\u4E2D\u6597\u5361": 9019031714134463949 + "\u4E2D\u795E\u6C14\u4E38": -4374981280464383935 + "\u4E2D\u79CB\u5FEB\u4E50": -1612878810370973303 + "\u4E2D\u79CB\u6708\u997C": -169312992708398707 + "\u4E2D\u79CB\u793C\u76D2": 3717085350798995474 + "\u4E2D\u7EA7\u5168\u80FD\u6D17\u70B9\u5238": 8487135649842264361 + "\u4E2D\u7EA7\u539A\u78F7\u7B26": 6666728994755851988 + "\u4E2D\u7EA7\u5934\u76D4\u56FE\u6807": -4375241827653764335 + "\u4E2D\u7EA7\u706B\u4E91\u7B26": 2911625987121979098 + "\u4E2D\u7EA7\u77F3\u5934": -6769793934453963292 + "\u4E2D\u7EA7\u80FD\u529B\u6D17\u70B9\u5238": -5656466283063351684 + "\u4E2D\u7EA7\u84DD\u5F71\u7B26": -1133960310075683233 + "\u4E2D\u7EA7\u9752\u5149\u7B26": 8823753255871915470 + "\u4E2D\u8206\u5E7B\u672C": 8603295719907742641 + "\u4E2D\u91D1\u521B\u836F": 2836968530332567691 + "\u4E2D\u9690\u62AB\u98CE": -3745669932971712833 + "\u4E34\u6479\u5370\u8BB0": -466761156319478320 + "\u4E39\u4E66\u6298\u753B\u5C4F": -1977293505381061821 + "\u4E39\u67AB\u5466\u9E7F\u56FE": -3651554683990612000 + "\u4E39\u971E\u665A\u67AB": 3295431389255841490 + "\u4E39\u9F0E": 7662788600628720254 + "\u4E3A\u7231\u5B88\u5019": -8580585006057574548 + "\u4E3A\u7231\u8D70\u904D\u5929\u6DAF": 8827440121611778850 + "\u4E3B\u57FA\u5730": -565965729310973971 + "\u4E3E\u56FD\u540C\u6B22": 2503230401554574676 + "\u4E49\u5FB7\u4E4B\u5FBD": -776559135596719924 + "\u4E49\u5FB7\u4E4B\u7AE0": 8316021543672350297 + "\u4E4C\u6E38\u738B\u86C7\u7684\u8840\u6DB2": 89193231139737906 + "\u4E4C\u9F9F": -7745550687188416261 + "\u4E4C\u9F9F\u5361": 4661144587428971943 + "\u4E50": 8630981941964643966 + "\u4E58\u80DC\u4E07\u91CC\u4F0F": 7069287935227044622 + "\u4E59": -5806741530697487774 + "\u4E5D": 3409687460138600274 + "\u4E5D\u51A5\u6714\u5F71": 5790711774801315348 + "\u4E5D\u547D\u4E0B\u94E0": -4853671139256522104 + "\u4E5D\u547D\u6218\u94E0": 2564899092971155454 + "\u4E5D\u547D\u8155\u7532": 6738364578548830071 + "\u4E5D\u547D\u978B": 2238747558893998166 + "\u4E5D\u5730\u5996\u738B\u5361\u72471": 4420579756387523777 + "\u4E5D\u5730\u5996\u738B\u5361\u72472": -1353003523320364153 + "\u4E5D\u5730\u5996\u738B\u5361\u72473": 1262169664036111310 + "\u4E5D\u5730\u5996\u738B\u5361\u72474": -3801560789940841602 + "\u4E5D\u5730\u5996\u738B\u5361\u72475": 3348299597201886334 + "\u4E5D\u5730\u5996\u738B\u5361\u72476": 7868763058043919538 + "\u4E5D\u5730\u5996\u738B\u5361\u72477": -4325160885076377143 + "\u4E5D\u5730\u5996\u738B\u5361\u72478": 6075357821200087026 + "\u4E5D\u5929\u4F0F\u9B54\u5200": 1948372730388255476 + "\u4E5D\u5929\u606F\u58E4": -6529221745514450980 + "\u4E5D\u5BAB\u77F3": 7638739920483980314 + "\u4E5D\u5BAB\u9524": 8156415685603905372 + "\u4E5D\u5C3A\u58A8\u5F71": -2043407293745525999 + "\u4E5D\u5C3E\u706B\u72D0": -6379525462862274556 + "\u4E5D\u5E7D\u5203": -8039512087695772994 + "\u4E5D\u5E7D\u7CBE\u9B4432": 8079708232049951923 + "\u4E5D\u661F\u9F99\u73E0": -2374836080651850051 + "\u4E5D\u66DC\u661F\u5361": -8864033861939887497 + "\u4E5D\u7131\u534E\u6676": 8437748715209275072 + "\u4E5D\u7B49\u5956": -3495040261817320598 + "\u4E5D\u7B49\u954C\u523B": 1723352243821287836 + "\u4E5D\u8033\u9521\u6756": -2137057162643110525 + "\u4E5D\u83B2\u6258\u5B9D\u70DB\u53F0": 6657050034325132693 + "\u4E5D\u8F6C\u6D3B\u80BA\u4E39": -5507332987748851878 + "\u4E5D\u8F6C\u6D3B\u8840\u4E38": -4747636554792043731 + "\u4E5D\u8F6C\u8FD8\u9B42\u4E39": 4888682627382635496 + "\u4E5D\u91CC\u9999": 9146927003646289610 + "\u4E5D\u9633\u4E39": -4813462683111852854 + "\u4E5D\u96BE\u957F\u5200": -670585733394054798 + "\u4E5D\u9704\u78A7\u7A79\u7389": -2589419121259055108 + "\u4E5D\u9704\u78A7\u7A79\u7389\u6D41\u901A": -7503441980626776342 + "\u4E5D\u9704\u8840\u7075\u77F3": 772424730144327430 + "\u4E5D\u9704\u8840\u7075\u77F3\u6D41\u901A": 2138955893359399860 + "\u4E5D\u9704\u91D1\u74F4\u94C1": -6580443490023147005 + "\u4E5D\u9704\u91D1\u74F4\u94C1\u6D41\u901A": 5729936384419934431 + "\u4E5D\u9999\u866B": -4802533825697530027 + "\u4E5D\u9999\u866B1": 8148130994943666182 + "\u4E5D\u9B3C\u5F52\u547D": -2611454919393638616 + "\u4E5D\u9B3C\u7834\u5929": 5555139231287547893 + "\u4E5D\u9B3C\u88C2\u98CE": -920159237296485957 + "\u4E5D\u9B3C\u95EA\u96F7": -8976147941323693790 + "\u4E5D\u9F0E\u6218\u7532": -9155023052671186414 + "\u4E5D\u9F0E\u817F\u7532": 5417304845037720095 + "\u4E5D\u9F0E\u8896\u7532": -3758110529984982746 + "\u4E5D\u9F0E\u9774": 5903695865433203744 + "\u4E61\u6751\u98CE\u683C\u9676\u74F7\u5A03\u5A03": -4326728113396325777 + "\u4E61\u95F4\u9EC4\u6768\u6805\u680F": -3880393040847186130 + "\u4E66\u65AD\u5217\u4F20": 8248333803240426129 + "\u4E66\u7C4D1": 3668953044203287141 + "\u4E66\u7C4D2": -973359808093840026 + "\u4E66\u7C4D3": -4460154363131058445 + "\u4E66\u7C4D4": -8003169301045552127 + "\u4E71\u821E\u6597\u9189": -1084171530716070724 + "\u4E7E\u4E4B\u8868\u5FBD": -6100993047352104380 + "\u4E7E\u4E4B\u9B42": -49937997457369568 + "\u4E7E\u5764\u4E00\u63B7": 2147732073474426839 + "\u4E7E\u5764\u77F3": 2880610660142848079 + "\u4E8C": 408222639867968753 + "\u4E8C\u5341\u516B\u5BBF\u5361": 1779667796827525532 + "\u4E8C\u661F\u9F99\u73E0": 5453440751094968254 + "\u4E8C\u7B49\u5956": 2811602171737104043 + "\u4E8C\u7B49\u7956\u9F99\u52CB\u7AE0": -6743954881875839279 + "\u4E8C\u7B49\u954C\u523B": -4503571580124964390 + "\u4E8C\u7EA7\u4E5D\u9633\u4E39": -1137226433882441417 + "\u4E8C\u7EA7\u4E5D\u9F99\u6563": 734744592470470738 + "\u4E8C\u7EA7\u5F52\u5143\u6563": 3959088621459087402 + "\u4E8C\u7EA7\u6C89\u9999\u4E38": 4076602965822597636 + "\u4E8C\u7EA7\u6D3B\u8840\u6563": -2395512971226323809 + "\u4E8C\u7EA7\u795E\u6C14\u4E38": 4944005612513709867 + "\u4E8C\u7EA7\u8FD8\u7075\u6C34": 5722898145768618264 + "\u4E8C\u7EA7\u91D1\u521B\u836F": -1087402667685778259 + "\u4E8C\u7EA7\u9F99\u6D8E\u9999": -7072296170150119184 + "\u4E8C\u8FDE\u7206": 2720695351809959471 + "\u4E91\u5251": 3868316640559008470 + "\u4E91\u5C9A\u70DF\u7FE0\u56FE": -2424964491735443280 + "\u4E91\u6BCD\u53CC\u8054\u67DC": 9060168863765273946 + "\u4E91\u6BCD\u753B\u5C4F\u7F57\u6C49\u5E8A": -5488394147172274368 + "\u4E91\u6D77\u671B\u677E\u74F6": -434426328574478203 + "\u4E91\u6D9B\u5F29": 6540511117704326313 + "\u4E91\u7476\u8170\u9970": -6243770060584328580 + "\u4E91\u7EB9\u4E07\u5BFF\u7389\u5982\u610F": -8406505134783572809 + "\u4E91\u7EB9\u70B9\u7FE0\u7ACB\u67DC": 6407046026381863780 + "\u4E91\u7EB9\u7537\u88C5\u793C\u5305": -851591671198214252 + "\u4E91\u7EB9\u864E\u7B26": -1677595362528817152 + "\u4E91\u7FD4": 3650699992739425307 + "\u4E91\u96D5\u4E07\u5BFF\u83CA\u6F06\u76D2": -7544899597362572423 + "\u4E91\u9704\u4E4B\u4E1D": -4147387064844578236 + "\u4E91\u9704\u4E4B\u7231": -8482804943694483116 + "\u4E91\u9704\u4E4B\u7EB1": -1450709326956758997 + "\u4E91\u9704\u4E4B\u7FFC": -5439676932413930351 + "\u4E91\u9704\u4E4B\u821E": 6887719563136797987 + "\u4E91\u9704\u4E4B\u9732": 1375722255871997069 + "\u4E94": -8830929083897568965 + "\u4E94\u4E00\u52B3\u52A8\u8282\u5956\u7AE0": -2308340896646199253 + "\u4E94\u5A01\u5C06\u4EE4": 5130259052869796897 + "\u4E94\u5E1D\u5947\u73CD": 8581193471214693544 + "\u4E94\u5E9C\u5361": -9175864635671216944 + "\u4E94\u5F69\u5BD2\u51B0": -3206740020334276858 + "\u4E94\u5F69\u76CF": -609549691208575042 + "\u4E94\u65B9\u658B\u7CBD": -8998808742913690760 + "\u4E94\u661F\u8FDE\u73E0\u571F": -2666382671914695128 + "\u4E94\u661F\u8FDE\u73E0\u6728": -8178428705816144627 + "\u4E94\u661F\u8FDE\u73E0\u6C34": -5881592024578287197 + "\u4E94\u661F\u8FDE\u73E0\u706B": 6114337164567644877 + "\u4E94\u661F\u8FDE\u73E0\u91D1": -4318261219275568169 + "\u4E94\u661F\u9F99\u73E0": -415527879395067132 + "\u4E94\u6BD2\u6DB2": -6244610909339034186 + "\u4E94\u70E8\u534E\u6676": 6185073230532338953 + "\u4E94\u74E3\u6885\u7EB9\u9694\u65AD": -7867224094275607165 + "\u4E94\u7B49\u5956": 1545049981162676125 + "\u4E94\u7B49\u954C\u523B": 8025408359956132777 + "\u4E94\u7EA7\u4E5D\u9633\u4E39": 368072326854725152 + "\u4E94\u7EA7\u4E5D\u9F99\u6563": 7645652818063111533 + "\u4E94\u7EA7\u5F52\u5143\u6563": 6099754019870519800 + "\u4E94\u7EA7\u6C89\u9999\u4E38": 1398779505440670305 + "\u4E94\u7EA7\u6D3B\u8840\u6563": -4737651615322415448 + "\u4E94\u7EA7\u795E\u6C14\u4E38": -3584634656826057217 + "\u4E94\u7EA7\u8FD8\u7075\u6C34": -8904222353798812334 + "\u4E94\u7EA7\u91D1\u521B\u836F": 9156460565226696241 + "\u4E94\u7EA7\u9F99\u6D8E\u9999": -3274516057570021607 + "\u4E94\u8272\u7405\u740A\u8170\u9970": 1764095844418567712 + "\u4E94\u8272\u795E\u4F51\u9879\u94FE": -885519667898589038 + "\u4E94\u8272\u795E\u62A4\u9879\u94FE": -1168458424958294600 + "\u4E94\u8272\u795E\u79C0\u9879\u94FE": -70997209132567859 + "\u4E94\u8272\u795E\u8C0F\u9879\u94FE": 6252377154365573592 + "\u4E94\u8272\u7C98\u5408\u5242": 7958907594943910309 + "\u4E94\u8272\u821C\u65E5\u8170\u9970": -976558370999373266 + "\u4E94\u8272\u82F1\u534E\u8170\u9970": -7249669085123203806 + "\u4E94\u8272\u9E7F": -2093811348693963711 + "\u4E94\u8272\u9E9F\u5609\u8170\u9970": -4223240333570867770 + "\u4E94\u82B1\u86DB": -310630715257680158 + "\u4E94\u82B1\u874E": -6677473291544126715 + "\u4E94\u884C\u4E7E\u5764\u4EE4": -1973474178004907270 + "\u4E94\u884C\u5143\u6C14": -8960222479117268172 + "\u4E94\u884C\u5929\u8F6E": 4177845935834492612 + "\u4E94\u884C\u77F3": 6600632579752571458 + "\u4E94\u9041\u76D4": -6335114373540748657 + "\u4E94\u94E2\u94B1": 7830336202197643685 + "\u4E94\u9999\u6842\u82B1\u7CD5": 8552028590691875619 + "\u4E9F\u96F7\u5B50\u5361\u72471": -4008219741538600537 + "\u4E9F\u96F7\u5B50\u5361\u72472": -566943912426303840 + "\u4E9F\u96F7\u5B50\u5361\u72473": -7085155600655356098 + "\u4E9F\u96F7\u5B50\u5361\u72474": -87726521047958748 + "\u4E9F\u96F7\u5B50\u5361\u72475": 110454675106516145 + "\u4E9F\u96F7\u5B50\u5361\u72476": 5284633796871418428 + "\u4E9F\u96F7\u5B50\u5361\u72477": 7632567405158300785 + "\u4E9F\u96F7\u5B50\u5361\u72478": 4501196944645923875 + "\u4EA1\u8005\u4E4B\u51A0": 6622661312831651612 + "\u4EA5": -4130424322692264228 + "\u4EA6": -4388560950860807820 + "\u4EAE\u7247\u68A6\u5E7B\u7537\u88C5\u4E0A\u8863": 864903595506734497 + "\u4EAE\u7247\u68A6\u5E7B\u7537\u88C5\u5934\u53D1": 506767052415287321 + "\u4EAE\u7247\u68A6\u5E7B\u7537\u88C5\u88E4\u5B50": 7522743713059846716 + "\u4EAE\u7247\u68A6\u5E7B\u7537\u88C5\u978B\u5B50": 1250210452172550751 + "\u4EAE\u82B1\u756A\u83B2\u53CC\u9760\u57AB": -4731267014764558875 + "\u4EAE\u94F6\u67AA": 2015235460689767988 + "\u4EAE\u94F6\u9524": -4579793777651904002 + "\u4EB2\u4EB2\u5BC6\u5BC6\u7684\u52A8\u4F5C": 9207590688989522561 + "\u4EBA\u4ED9\u77F3": -1799444713928460447 + "\u4EBA\u53C2\u679C": 1690702010227840454 + "\u4EBA\u65CF13a\u6B66\u4FA0\u804C\u4E1A\u88C5\u4E0A\u8863": -3145709688337270709 + "\u4EBA\u65CF13a\u6B66\u4FA0\u804C\u4E1A\u88C5\u62A4\u8155": 769378714033517990 + "\u4EBA\u65CF13a\u6B66\u4FA0\u804C\u4E1A\u88C5\u88E4\u5B50": -1303752117390987991 + "\u4EBA\u65CF13a\u6B66\u4FA0\u804C\u4E1A\u88C5\u978B\u5B50": 7324017100858036755 + "\u4EBA\u65CF13a\u6CD5\u5E08\u804C\u4E1A\u88C5\u4E0A\u8863": -8326800742508950404 + "\u4EBA\u65CF13a\u6CD5\u5E08\u804C\u4E1A\u88C5\u62A4\u8155": 8330124072537436551 + "\u4EBA\u65CF13a\u6CD5\u5E08\u804C\u4E1A\u88C5\u88E4\u5B50": 5630377588513339681 + "\u4EBA\u65CF13a\u6CD5\u5E08\u804C\u4E1A\u88C5\u978B\u5B50": -999367741921856325 + "\u4EBA\u65CF13b\u6B66\u4FA0\u804C\u4E1A\u88C5\u4E0A\u8863": 6628739763868715063 + "\u4EBA\u65CF13b\u6B66\u4FA0\u804C\u4E1A\u88C5\u62A4\u624B": -6090186041685123108 + "\u4EBA\u65CF13b\u6B66\u4FA0\u804C\u4E1A\u88C5\u88E4\u5B50": -4789157641756814668 + "\u4EBA\u65CF13b\u6B66\u4FA0\u804C\u4E1A\u88C5\u978B\u5B50": -1832403413482716429 + "\u4EBA\u65CF13b\u6CD5\u5E08\u804C\u4E1A\u88C5\u4E0A\u8863": -4787933280733128133 + "\u4EBA\u65CF13b\u6CD5\u5E08\u804C\u4E1A\u88C5\u62A4\u624B": -1692619438131659573 + "\u4EBA\u65CF13b\u6CD5\u5E08\u804C\u4E1A\u88C5\u88E4\u5B50": -1843134923539789370 + "\u4EBA\u65CF13b\u6CD5\u5E08\u804C\u4E1A\u88C5\u978B\u5B50": 2616333044712306766 + "\u4EBA\u65CF\u5377\u8F74\u98DE\u884C\u5668": -213446920749861625 + "\u4EBA\u65CF\u53CC\u9F99\u98DE\u5251": 5354416046412251350 + "\u4EBA\u65CF\u5982\u610F": -2963199362881879839 + "\u4EBA\u65CF\u5C0F\u82B1\u8774\u8776\u5251": -8472560585862477012 + "\u4EBA\u65CF\u62C2\u5C18\u98DE\u5251": -3767353553514774402 + "\u4EBA\u65CF\u6B66\u4FA0\u804C\u4E1A\u88C5\u4E0A\u8863": -4427118894733051858 + "\u4EBA\u65CF\u6B66\u4FA0\u804C\u4E1A\u88C5\u62A4\u8155": 7531493774024542374 + "\u4EBA\u65CF\u6B66\u4FA0\u804C\u4E1A\u88C5\u88E4\u5B50": -2853047141375414911 + "\u4EBA\u65CF\u6B66\u4FA0\u804C\u4E1A\u88C5\u978B\u5B50": -2431999906707512274 + "\u4EBA\u65CF\u6CD5\u5E08\u804C\u4E1A\u88C5\u4E0A\u8863": -6180179855843024231 + "\u4EBA\u65CF\u6CD5\u5E08\u804C\u4E1A\u88C5\u62A4\u8155": 8011206371660781466 + "\u4EBA\u65CF\u6CD5\u5E08\u804C\u4E1A\u88C5\u88E4\u5B50": 3668144821914873221 + "\u4EBA\u65CF\u6CD5\u5E08\u804C\u4E1A\u88C5\u978B\u5B50": 2977281920658394341 + "\u4EBA\u65CF\u70C8\u7EA2\u98DE\u5251": -1555986891350953651 + "\u4EBA\u65CF\u72FC\u5934": 8885274057217358535 + "\u4EBA\u65CF\u7D2B\u743C": -1407568345980691228 + "\u4EBA\u65CF\u9C7C": -564410020888419493 + "\u4EBA\u65CF\u9F99\u5E1D\u8840\u88D4": -5916912925193711085 + "\u4EBA\u6C11\u5E01": 3739988568670775647 + "\u4EBA\u738B\u5143\u7CBE": 4003411373981405173 + "\u4EBA\u7684\u8111\u888B": -5010432069879992904 + "\u4EBA\u7C7B\u98DE\u884C\u5668": -98741965955733957 + "\u4EBA\u9C7C": 8358696161614177802 + "\u4EBA\u9C7C\u4E4B\u5FC3": 6864590123503721592 + "\u4EBA\u9C7C\u5B9D\u85CF": -5880024530885172243 + "\u4EBA\u9C7C\u6446\u644A\u5C0F": 8568534285724753714 + "\u4EBA\u9C7C\u73A9\u5076": 5683543345355538430 + "\u4EBA\u9C7C\u9CCD": 3255954920461332670 + "\u4EC1\u5FB7\u4E4B\u5FBD": 8927153634329084058 + "\u4EC1\u5FB7\u4E4B\u7AE0": -9030900435623532934 + "\u4EC7\u4EBA\u8FFD\u8E2A": 3446256600796473472 + "\u4ECE\u5883\u795E\u4E39\xB7\u5468\u5929": 3269790028820745059 + "\u4ECE\u9769\u9879\u94FE": 6879483408363909787 + "\u4ED3\u5E93\u6269\u5145\u77F3": 3716318852823577071 + "\u4ED3\u9F20": -3403610010900226093 + "\u4ED5\u5973\u56FE": -5498696373924875573 + "\u4ED5\u5973\u88C5": -5926564254636355424 + "\u4ED5\u5973\u88D9\u5B50": -6335987493562777689 + "\u4ED5\u5973\u978B": -7803330057940881318 + "\u4ED9\u4EBA\u638C": -4793246842128835247 + "\u4ED9\u4EBA\u7403": -8639265654660255243 + "\u4ED9\u4F51\u62A4\u8EAB\u7B26": 8345607844050228574 + "\u4ED9\u4F51\u9B54\u529B\u7B26": 4818470049952739180 + "\u4ED9\u51A5\u4E4B\u4E1D": -6847790051522923399 + "\u4ED9\u51A5\u4E4B\u7231": 3990634427996581841 + "\u4ED9\u51A5\u4E4B\u7EB1": -1884139122582465477 + "\u4ED9\u51A5\u4E4B\u7FFC": 8463787530724967825 + "\u4ED9\u51A5\u4E4B\u821E": -2102657787384405939 + "\u4ED9\u51A5\u4E4B\u9732": -9219788616775820361 + "\u4ED9\u5883\u5947\u7F18": 1535536591342300776 + "\u4ED9\u5B97\u79D8\u7B08": -7231420164170037135 + "\u4ED9\u5C65\u5E72\u7EA2\u6446\u4EF6": 8991606874291335904 + "\u4ED9\u65F6\u88C5\u5305\u88F92": -2437659614040082382 + "\u4ED9\u6811\u679C": -7370991993764612657 + "\u4ED9\u7075\u4E39": 4613862215619670690 + "\u4ED9\u7075\u4E4B\u4E1D": -6207070443713867721 + "\u4ED9\u7075\u4E4B\u606F": 6176909142082962564 + "\u4ED9\u7075\u4E4B\u7231": -7951553678153621897 + "\u4ED9\u7075\u4E4B\u7EB1": 6650185446369665683 + "\u4ED9\u7075\u4E4B\u7FFC": -1385410661989886968 + "\u4ED9\u7075\u4E4B\u821E": 2371258370893174778 + "\u4ED9\u7075\u4E4B\u9732": 1418286834958008470 + "\u4ED9\u7075\u4F69": 3786454920579488790 + "\u4ED9\u7075\u5F69\u4F69": -346281732138415973 + "\u4ED9\u7075\u62A4\u817F": 8005473530706955633 + "\u4ED9\u7075\u6CD5\u888D": 8020909846142528434 + "\u4ED9\u7075\u76D4": -9136837211479555915 + "\u4ED9\u7075\u795E\u529B\u6212": -7757227244118062855 + "\u4ED9\u7075\u79D8\u6CD5\u6212": -471681841952503367 + "\u4ED9\u7075\u7B26": -3787216770557382981 + "\u4ED9\u7075\u7EDD\u9B54\u4F69": 3202350087242796129 + "\u4ED9\u7075\u8F7B\u94E0": 5883489113985204287 + "\u4ED9\u7075\u9879\u94FE": -4835522803291177909 + "\u4ED9\u77F3\u788E\u7247": 794067233522470277 + "\u4ED9\u829D\u8349": 1988143260060046085 + "\u4ED9\u9522\u4EE4": 2441434028522270616 + "\u4ED9\u9713\u7B11\u9690": 5483765969031063206 + "\u4ED9\u98CE\u4E4B\u4E1D": 2814748733876092665 + "\u4ED9\u98CE\u4E4B\u7231": 3838168935823531088 + "\u4ED9\u98CE\u4E4B\u7EB1": 611366393012178396 + "\u4ED9\u98CE\u4E4B\u7FFC": -2060252876906374749 + "\u4ED9\u98CE\u4E4B\u821E": -1900294209579169758 + "\u4ED9\u98CE\u4E4B\u9732": 6496908561916725605 + "\u4ED9\u98CE\u5C65": 4555356775673193487 + "\u4ED9\u98CE\u62A4\u624B": -1423593348562749807 + "\u4ED9\u98CE\u888D": -7078464821332749014 + "\u4ED9\u98CE\u88E4": -762114136900984859 + "\u4ED9\u98CE\u9879\u94FE": -80451278952843141 + "\u4ED9\u9B54\u5370\u8BB0": -58862781728294110 + "\u4ED9\u9B54\u5C3A": -4248457136300466899 + "\u4ED9\u9B54\u5C3A\u6A21\u5177": 1158615338308295298 + "\u4ED9\u9B54\u788E\u7247": -6568676409753511240 + "\u4ED9\u9B54\u795E\u5C3A": 6474329703017882522 + "\u4ED9\u9B54\u79D8\u7B08": 2851318478993623534 + "\u4ED9\u9B54\u79D8\u7B3A": 6910980914834211231 + "\u4ED9\u9B54\u888B": -7896626289158718748 + "\u4ED9\u9E64\u8349": -7623688046001132054 + "\u4EE3\u8868\u8D22\u5BCC\u7684\u7EB8\u5F20": 5702542245815248903 + "\u4EE4\u7BAD": -6615908704557635739 + "\u4EF2\u590F\u4E4B\u7CBD": 3450147204204590380 + "\u4EFB": -2203429891704205456 + "\u4EFB\u52A1\u680F\u6269\u5145\u77F3": -6243458274507626037 + "\u4F01\u9E45\u53D1\u5C04\u5668": 4496728266100178109 + "\u4F01\u9E45\u5587\u53ED": 3999691142149322260 + "\u4F01\u9E45\u5A03\u5A03": -8273463701009476946 + "\u4F09\u4FEA\u60C5\u6DF1": 2508989212106302702 + "\u4F0F\u7FB2\u6613\u540D\u77F3": 4225801966859290677 + "\u4F0F\u7FB2\u6613\u540D\u77F31": 5288121779121164957 + "\u4F0F\u7FB2\u6613\u540D\u77F32": -6861284126645525736 + "\u4F0F\u7FB2\u6613\u540D\u77F33": -4320863161430438123 + "\u4F0F\u7FB2\u73E0": 7017137262575238930 + "\u4F0F\u7FB2\u9057\u9B44": -5235988354668338691 + "\u4F0F\u7FB2\u9B42\u5B88": -1874504150839353797 + "\u4F10\u6728\u5382": -984953586757199617 + "\u4F1A\u52A8\u7684\u52FA\u5B50": -2884624076998300915 + "\u4F20\u56FD\u7389\u73BA": 2193086149064799851 + "\u4F24\u75D5\u4E4B\u5319": 5370985255095155020 + "\u4F24\u9E92\u68EE\u6797\u4E4B\u53F6": 2554184710695407811 + "\u4F2F\u7235\u73AB\u7470\u9AA8\u74F7\u676F": 7612783344895593797 + "\u4F2F\u7235\u7537\u88C5\u4E0A\u8863": 237244016000380322 + "\u4F2F\u7235\u7537\u88C5\u5934\u53D1": 6910371054397244454 + "\u4F2F\u7235\u7537\u88C5\u88E4\u5B50": 6508282430660917783 + "\u4F2F\u7235\u7537\u88C5\u978B\u5B50": 7725688114649556722 + "\u4F4E\u7EA7\u5934\u76D4\u56FE\u6807": -8273371003912505742 + "\u4F4E\u7EA7\u77F3\u5934": 7387823016057543970 + "\u4F50\u7F57\u65F6\u88C5\u7537\u4E0A\u8863": 6675566593461427771 + "\u4F50\u7F57\u65F6\u88C5\u7537\u5934\u53D1": -21157616577171100 + "\u4F50\u7F57\u65F6\u88C5\u7537\u624B\u5957": 5047934531071479417 + "\u4F50\u7F57\u65F6\u88C5\u7537\u88E4\u5B50": -3481950108034803394 + "\u4F50\u7F57\u65F6\u88C5\u7537\u978B\u5B50": -4329452171412816810 + "\u4F53\u80FD\u4E39": -7943704968680678603 + "\u4F5B\u5149\u9879\u94FE": -7108980198304832756 + "\u4F5B\u624B": 7044279831743444354 + "\u4F60\u662F\u6211\u7684\u552F\u4E00": -1536125936376114226 + "\u4F8D\u5973\u88C5\u5934\u53D1": -5482263619708155315 + "\u4F8D\u5E94\u7537\u88C5\u4E0A\u8863": -8549093813288093779 + "\u4F8D\u5E94\u7537\u88C5\u5934\u53D1": 5035316043197900517 + "\u4F8D\u5E94\u7537\u88C5\u88E4\u5B50": 7068136329861615834 + "\u4F8D\u5E94\u7537\u88C5\u978B\u5B50": 8056631222426068217 + "\u4FA0\u5BA2\u4E0A\u8863": -5304333853768853875 + "\u4FA0\u5BA2\u5305\u5B50\u5C0F\u56FE\u6807": 4837772790405728068 + "\u4FA0\u5BA2\u884C": -6871256296537823009 + "\u4FA0\u5BA2\u88C5": 6281009765965047789 + "\u4FA0\u5BA2\u88E4\u5B50": -4946790759469290417 + "\u4FA0\u5BA2\u978B": 8677993905712819609 + "\u4FA0\u98CE\u4E4B\u529B": -9013170074791470538 + "\u4FC4\u7F57\u65AF\u62B9\u80F8\u88D9\u5973\u5934\u53D1": 6762512897806634138 + "\u4FC4\u7F57\u65AF\u62B9\u80F8\u88D9\u5973\u62A4\u8155": 4623334445017128071 + "\u4FC4\u7F57\u65AF\u62B9\u80F8\u88D9\u5973\u88D9\u5B50": 4303711415037917805 + "\u4FC4\u7F57\u65AF\u62B9\u80F8\u88D9\u5973\u978B\u5B50": -7360310087489156127 + "\u4FCF\u4E3D\u8774\u8776\u5973\u88C5-\u5934\u53D132": -5487372774390957715 + "\u4FCF\u4E3D\u8774\u8776\u5973\u88C5-\u8863\u670D32": -5966220751323783151 + "\u4FCF\u4E3D\u8774\u8776\u5973\u88C5-\u88E4\u5B5032": 6217039414284085993 + "\u4FCF\u4E3D\u8774\u8776\u5973\u88C5-\u978B32": 3671828261097188340 + "\u4FCF\u76AE\u7C89\u8272\u88C5\u5973\u4E0A\u8863": 66266699861401422 + "\u4FCF\u76AE\u7C89\u8272\u88C5\u5973\u5934\u53D1": -6370212519227564540 + "\u4FCF\u76AE\u7C89\u8272\u88C5\u5973\u88E4\u5B50": -2176963249460578293 + "\u4FCF\u76AE\u7C89\u8272\u88C5\u5973\u978B\u5B50": -7557924546097107665 + "\u4FDD\u547D\u7B26": 1354171449877635712 + "\u4FE1": 2778648538146339157 + "\u4FE1\u4EF0\u6212\u6307": -5399899990133154207 + "\u4FE1\u4EF6": -7574607602443787548 + "\u4FE1\u5FB7\u4E4B\u5FBD": 2499362764491552342 + "\u4FE1\u5FB7\u4E4B\u7AE0": 7755833289623588849 + "\u4FEE\u597D\u7684\u5251": -8748919286710854530 + "\u4FEE\u597D\u7684\u70E7\u706B\u68CD": -3091666702653523690 + "\u4FEE\u70BC\u53F0": -1392737104116949200 + "\u4FEE\u771F\u5315\u9996\u846B\u82A6": 3826971737644263912 + "\u4FEE\u771F\u53CC\u9B54\u955C": -2942975254769180011 + "\u4FEE\u771F\u6843\u82B1\u5F13": 8551237157205544764 + "\u4FEE\u771F\u7F50\u5B50": 3048599973632589067 + "\u4FEE\u771F\u957F\u706F": 1941342148586665780 + "\u4FEE\u771F\u9B54\u955C": -5831835515619100348 + "\u4FEE\u7F57": -4371614859730170842 + "\u4FEE\u7F57\u4E4B\u5FC3": 5188352293200051847 + "\u4FEE\u7F57\u4E4B\u77F3": -6481600193013027223 + "\u4FEE\u7F57\u4E4B\u89D2": 3429021140852122656 + "\u4FEE\u7F57\u5929\u97F3": 5098880287044945979 + "\u4FEE\u7F57\u6775": -2697531594869680887 + "\u4FEE\u884C\u5C65": -2138013618701611342 + "\u4FEE\u884C\u62A4\u8155": -6218320634830578314 + "\u4FEE\u884C\u888D": 8906122166124394775 + "\u4FEE\u884C\u88E4": -383506105036156700 + "\u4FEE\u9020\u4EFB\u52A1\u5F00\u542F\u9053\u5177": -230243425710065627 + "\u4FEE\u9020\u914D\u65B9\u5305\u88F9": 4062951374363157323 + "\u4FEE\u9020\u914D\u65B9\u5305\u88F92": -3991346190268663812 + "\u4FEE\u9020\u914D\u65B9\u5305\u88F93": 2481787085424431891 + "\u501A\u5929\u9547\u9B42\u5251": -5722418391033618193 + "\u501A\u5929\u9547\u9B42\u6756": 8176588492882860098 + "\u501A\u836B\u957F\u4E50": 8757573602330926562 + "\u501F\u4E66\u79EF\u5206\u5361": 2538526525209000920 + "\u502D\u5974\u94F3": -5413692160165939157 + "\u5043\u6708\u957F\u5200": -6988568842650294538 + "\u50AC\u4E91\u52A9\u96E8\u5361": 8697526524401931072 + "\u50E7\u4FA3\u6280\u80FD\u4E66": -6902079399470539064 + "\u50F5\u5C38\u5175": -7128696074708033331 + "\u513F\u7AE5\u8282\u5FEB\u4E50": 292905447003400135 + "\u5143\u5BB5": 7261044674005904681 + "\u5143\u6676": -1494158887172899733 + "\u5143\u795E\u4E4B\u73E0": -3944869294969345000 + "\u5143\u7D20\u4E4B\u5149": 2017052626929086682 + "\u5143\u7D20\u4E4B\u6838": -3136404843335950496 + "\u5143\u7D20\u4E4B\u7075": 6457373185585270519 + "\u5143\u7D20\u4E4B\u77F3": 30425944428129719 + "\u5143\u7D20\u5B9D\u94BB": 8794558471100659363 + "\u5143\u7D20\u5FAE\u5C18": -5478102724807147450 + "\u5143\u7D20\u788E\u7247": -1210582603105095985 + "\u5143\u7D20\u7C89\u672B": -3438651044125155214 + "\u5143\u7D20\u7CBE\u534E": 5715749407318058550 + "\u5143\u7D20\u7ED3\u6676": -2123755024792921592 + "\u5143\u9633\u4E4B\u77F3": 2050257284708246757 + "\u5143\u9738\u9524": -8566733775243604530 + "\u5143\u9B42\u4E2D\u7EA7\u666E\u901A": -4084706018914437168 + "\u5143\u9B42\u4E2D\u7EA7\u7A00\u6709": 1771624664013761571 + "\u5143\u9B42\u4F4E\u7EA7\u666E\u901A": 4816352015608589427 + "\u5143\u9B42\u4F4E\u7EA7\u7A00\u6709": -4437310165697237420 + "\u5143\u9B42\u9AD8\u7EA7\u666E\u901A": -5742173923309365827 + "\u5143\u9B42\u9AD8\u7EA7\u7A00\u6709": 5023911715778762159 + "\u5143\u9B42\u9B54\u587F": 4260064460440542333 + "\u5144\u5F1F\u5B88\u62A4\u5377\u8F74": 8487024241254571508 + "\u5144\u5F1F\u79FB\u5C71\u5377\u8F74": -2153003229840361309 + "\u5144\u5F1F\u8BC6\u6D77\u5377\u8F74": 7227751024996047759 + "\u5144\u5F1F\u8BF8\u4E16\u754C\u5377\u8F74": -858702246258332295 + "\u5144\u5F1F\u8FC5\u6377\u5377\u8F74": -9107358124726457275 + "\u5145\u6EE1\u7684\u878D\u7075\u4E4B\u9F0E": 1001855551815876399 + "\u5145\u80FD\u5668": -8175528542405639298 + "\u5145\u80FD\u56682": -8337769058582041370 + "\u5149\u4E4B\u53F6": 5515283600465904586 + "\u5149\u5203\u7B26": 5727373733822976060 + "\u5149\u660E\u4E07\u5723\u6212": 4607410556964741636 + "\u5149\u660E\u5343\u4F5B\u6212": 4155559798984361623 + "\u5149\u660E\u594B\u626C\u6212": -582199564567428861 + "\u5149\u660E\u771F\u8A00\u6212": 2875923185267248720 + "\u5149\u77F3": -3112399555405618648 + "\u5149\u7FFC09": 1144301450501783227 + "\u5149\u7FFC\u5B9A\u5149": -6714334048010886636 + "\u5149\u8292\u5B9D\u77F3": -6882312036988426852 + "\u5151\u4E4B\u8868\u5FBD": 4477157073322071648 + "\u5151\u4E4B\u9B42": 987091718506687640 + "\u5151\u5956\u52381": -6565320610705340937 + "\u5151\u5956\u52382": 7343786485058557608 + "\u5151\u5956\u52383": -3876947941439236831 + "\u5151\u5956\u52384": -7062953190539664824 + "\u5151\u5956\u52385": 1155446239495760899 + "\u5151\u5956\u52386": 5676305214827596394 + "\u5151\u5956\u52387": -3495958336713736826 + "\u5154\u5973\u90CE\u5305\u88F9": -7215589433105964632 + "\u5154\u5973\u90CE\u5973\u5934\u53D1": 7491611953645462115 + "\u5154\u5973\u90CE\u5973\u624B\u5957": 3174693716637294920 + "\u5154\u5973\u90CE\u5973\u8863\u670D": 6505803512843743745 + "\u5154\u5973\u90CE\u5973\u88E4\u5B50": -4508952528165442977 + "\u5154\u5973\u90CE\u5973\u978B\u5B50": -2268754398606733648 + "\u5154\u5B50\u5361": 8908368569874045572 + "\u5154\u5B50\u5E7C\u5E74": -6979282672743148372 + "\u5154\u5E7C\u5E74": -5210905276277067672 + "\u5154\u7ED2": 7143191952400737253 + "\u5154\u9F7F\u5C71\u732B": -6857662671609627892 + "\u5168\u6C11\u793C\u5305": -1813520915566178689 + "\u516B": 6332798500813331626 + "\u516B\u5366\u5C65": 1276515788130763588 + "\u516B\u5366\u62A4\u8155": -2811176998069430254 + "\u516B\u5366\u76D8": 699297881776736605 + "\u516B\u5366\u77F3": 3709888401312660720 + "\u516B\u5366\u888D": -6254536026890316158 + "\u516B\u5366\u88E4": 8659050354594334602 + "\u516B\u5366\u9635": -7817089467021440491 + "\u516B\u5366\u9635_2": 1926193461959018010 + "\u516B\u5B9D\u4F69": -1413560966510324748 + "\u516B\u65B9\u9524": 3662516326545568780 + "\u516B\u661F\u9F99\u73E0": -1724144124613526618 + "\u516B\u68F1\u51C0\u6C34\u74F6": -3222028680672018647 + "\u516B\u7B49\u5956": -842714012242367470 + "\u516B\u7B49\u954C\u523B": 1320412607680472921 + "\u516B\u89D2\u94DC\u9524": -1074049025373219674 + "\u516C\u4E3B\u4E0A\u8863": 6154183304231730658 + "\u516C\u4E3B\u88D9": 932031506402394725 + "\u516C\u4E3B\u978B": 1254190362592138902 + "\u516C\u5B59\u5251\u5668": 5130693134727323089 + "\u516C\u7235\u88C5\u5973\u4E0A\u8863": 6238058435999259757 + "\u516C\u7235\u88C5\u5973\u51A0": 5797307625118441930 + "\u516C\u7235\u88C5\u5973\u62A4\u8155": -3046637834623520912 + "\u516C\u7235\u88C5\u5973\u88E4\u5B50": 3407763816699120285 + "\u516C\u7235\u88C5\u5973\u978B\u5B50": 1589729983653339234 + "\u516C\u7235\u88C5\u7537\u4E0A\u8863": 1852767301702927386 + "\u516C\u7235\u88C5\u7537\u51A0": -8092959169617777811 + "\u516C\u7235\u88C5\u7537\u62A4\u8155": 8885655452872257590 + "\u516C\u7235\u88C5\u7537\u88E4\u5B50": -7962076087097968598 + "\u516C\u7235\u88C5\u7537\u978B\u5B50": -5345893874111876738 + "\u516D": -4683148051768191020 + "\u516D\u53F6\u7389\u83B2\u7ACB\u706F": -5337566289427963991 + "\u516D\u5408\u77F3": 1798737665422630139 + "\u516D\u661F\u9F99\u73E0": 1513838019662943836 + "\u516D\u7B49\u5956": -2514659827104134563 + "\u516D\u7B49\u954C\u523B": -2756832858786174322 + "\u516D\u7FFC": -3239479035279111361 + "\u516D\u8292\u661F\u7EB9\u7AE0": 108771876449095725 + "\u516D\u8F6C\u6307\u7384\u73E0": -4242647365457435971 + "\u516D\u9053\u8F6C\u8F6E": 5275587358456141859 + "\u5170\u6676\u6811": 1300710197972918517 + "\u5170\u683C\u5C14\u6728\u5C4B": -6477085042913379922 + "\u5170\u7530\u7389\u4F69": 6303474923811073956 + "\u5170\u9876\u5343\u811A\u697C": -5930180881096837192 + "\u5170\u9999\u6E10\u5E7D\u8DEF\u706F": -2575232052591653864 + "\u5171\u5DE5\u4E4B\u77F3": -1396829079270529946 + "\u5171\u5DE5\u9B42\u5B88": -3276201979900815477 + "\u5173\u6D77\u6CD5": -3625788322246078711 + "\u5175\u5668\u67B6": 478968140230791372 + "\u5175\u5668\u67B6_2": -38895676087690874 + "\u5175\u5668\u67B6_3": 8980787311667186776 + "\u517B\u5FC3\u8349": -5279376095620629113 + "\u517B\u6666\u62AB\u98CE": -5967684910468933347 + "\u517B\u751F\u77F3": -5894326836892996559 + "\u517B\u751F\u77F3\u5927": 2503901749332573253 + "\u517D\u738B\u9F13\u821E": 3047315747875574375 + "\u517D\u9762\u7389\u724C": 2183346329460276606 + "\u517D\u9AA8": -7558267470790906912 + "\u517D\u9AA8\u9879\u94FE": -6826848514683469760 + "\u518D": 4012625045498872718 + "\u518D\u751F\u4E39": -5763105465618780257 + "\u519B\u4E8B\u65F6\u88C5\u5973\u4E0A\u8863": 1893099873414771682 + "\u519B\u4E8B\u65F6\u88C5\u5973\u88D9\u5B50": -835458048610357538 + "\u519B\u4E8B\u65F6\u88C5\u5973\u978B": 1963609240617033721 + "\u519B\u4E8B\u65F6\u88C5\u7537\u4E0A\u8863": 662943440083354055 + "\u519B\u4E8B\u65F6\u88C5\u7537\u624B\u5957": 2110066153957275122 + "\u519B\u4E8B\u65F6\u88C5\u7537\u88E4\u5B50": 3942448269985253937 + "\u519B\u4E8B\u65F6\u88C5\u7537\u978B": -3233536662512897166 + "\u519B\u65D7": 2616668459932862014 + "\u519B\u88C5\u7537\u4E0A\u8863": 4429604816603257373 + "\u519B\u88C5\u7537\u624B\u5957": 1516939998660161804 + "\u519B\u88C5\u7537\u88E4\u5B50": 2056796952241562632 + "\u519B\u88C5\u7537\u978B": 2824733720229444712 + "\u51A0\u519B\u52C7\u58EB\u6212\u6307": -1109185716836762681 + "\u51A0\u519B\u5FBD\u8BB0": -582123791200570912 + "\u51A0\u519B\u8D24\u8005\u6212\u6307": -6351299617281539224 + "\u51A5\u517D\u76AE": 1506928968937910674 + "\u51A5\u60F3\u91D1\u9CDE\u77F3": -4561841038769576040 + "\u51A5\u706D\u6D2A\u8352\u7684\u5FC3\u810F": -6972278773209612618 + "\u51A5\u72EE\u4E4B\u6BDB": -7040953153921209323 + "\u51A5\u7965\u4E0B\u94E0": 8013851494497355924 + "\u51A5\u7965\u6218\u94E0": 4845569897416075084 + "\u51A5\u7965\u8155\u7532": -8370061654090481201 + "\u51A5\u7965\u978B": 2713942248850645811 + "\u51A5\u7B26": -8530135946194756436 + "\u51A5\u9E26\u5229\u722A": 8696172133595652469 + "\u51AC": -8144077219219470976 + "\u51AC\u5B63\u6821\u670D\u88C5\u5973-\u5934\u53D132": -8584472997412619643 + "\u51AC\u5B63\u6821\u670D\u88C5\u5973-\u8863\u670D32": -6172752402204457856 + "\u51AC\u5B63\u6821\u670D\u88C5\u5973-\u88E4\u5B5032": 5332144185791446481 + "\u51AC\u5B63\u6821\u670D\u88C5\u5973-\u978B32": 4235490380663329869 + "\u51AC\u5B63\u6821\u670D\u88C5\u7537-\u5934\u53D132": -1295059841504715622 + "\u51AC\u5B63\u6821\u670D\u88C5\u7537-\u8863\u670D32": 2647387660567392383 + "\u51AC\u5B63\u6821\u670D\u88C5\u7537-\u88E4\u5B5032": 911550539914852645 + "\u51AC\u5B63\u6821\u670D\u88C5\u7537-\u978B32": 8253657685764280698 + "\u51B0\u4E4B\u5370": -2235952664488475943 + "\u51B0\u4E4B\u9B42\u9B44\u4E0A\u534A": 2059729357506805941 + "\u51B0\u4E4B\u9B42\u9B44\u4E0B\u534A": 3488288820600362304 + "\u51B0\u51DD\u4E4B\u77F3": -7282622814178803281 + "\u51B0\u51E4\u51F0": 168785404599971923 + "\u51B0\u6676\u84DD\u67D3\u8272\u5242": -3210943358630210233 + "\u51B0\u6756": -4480118934570992878 + "\u51B0\u708E\u98DE\u5251\u5C0F": -6124016301920345587 + "\u51B0\u722A": 7710687508626806644 + "\u51B0\u77F3\u884C\u8005": -3087558575393522580 + "\u51B0\u8695\u4E1D\u51A0": -4764312387253333713 + "\u51B0\u96EA\u4EE4\u724C": 6381187084947326974 + "\u51B0\u96EA\u62A4\u7B26": 5653216639217343767 + "\u51B0\u96EA\u795E\u8C15": 644657415467696670 + "\u51B0\u98CE\u82B1": 1599587332163831033 + "\u51B0\u9B42\u5B9D\u73E0": 7341588308097650046 + "\u51B0\u9B44\u5F39": 1208126012460093843 + "\u51B2\u5929\u51A0": -3797100916864321866 + "\u51B2\u9704\u4EE4\u4E7E": -2587968317075778562 + "\u51B2\u9704\u4EE4\u4E98\u4E45": 2151196099834453382 + "\u51B2\u9704\u4EE4\u5151": -5905028741057022354 + "\u51B2\u9704\u4EE4\u574E": -6476733216259113499 + "\u51B2\u9704\u4EE4\u5764": 7345035213835630334 + "\u51B2\u9704\u4EE4\u5DFD": 3658338561295815984 + "\u51B2\u9704\u4EE4\u65E0\u5E38": -545951900407601476 + "\u51B2\u9704\u4EE4\u79BB": -6173036683807432626 + "\u51B2\u9704\u4EE4\u826E": 6919843999949566839 + "\u51B2\u9704\u4EE4\u9707": -7777966457110666898 + "\u51B3\u9635\u957F\u5200": -3011823767535197070 + "\u51B6\u4ED9\u5854": 1504414533130665309 + "\u51B6\u4ED9\u5854_2": -3339285718649541282 + "\u51B7\u8273\u952F": 5407767905306594925 + "\u51C0\u5316\u4E4B\u73E0": -5704660975335440870 + "\u51C0\u6C34": 4529779811222958475 + "\u51C0\u7075\u539F\u77F3": 1925295266948611674 + "\u51C0\u8EAB\u9732": 4621393249504814251 + "\u51CC\u4E91\u5B9D\u888B1": 449620950613011174 + "\u51CC\u4E91\u5B9D\u888B2": -5511265368519857656 + "\u51CC\u4E91\u5B9D\u888B3": 7762478307671820783 + "\u51CC\u4E91\u7891\u6B8B\u73A6": -3745026760130520514 + "\u51CC\u4E91\u7ED3\u4E91": 7579434645199780251 + "\u51CC\u4E91\u7ED3\u96E8": 4975059154628714277 + "\u51CC\u4E91\u7ED3\u98CE": -7780926324723347508 + "\u51CC\u589F\u516B\u89C9\u9AD3": 6044167666093591474 + "\u51CC\u589F\u516B\u89C9\u9AD3\u6D41\u901A": 5578253138077333731 + "\u51CC\u589F\u5929\u7384\u9AA8": -6700411323778345682 + "\u51CC\u589F\u5929\u7384\u9AA8\u6D41\u901A": -9140855405892461892 + "\u51CC\u589F\u6E0E\u795E\u6728": -6898115983472988007 + "\u51CC\u589F\u6E0E\u795E\u6728\u6D41\u901A": 4895716560229373519 + "\u51CC\u9704\u5B9D\u6BBF\u9547\u5B88\u5361": 1165676834470815907 + "\u51CC\u971C\u51A0": 8276703774567440677 + "\u51CC\u98CE\u7684\u5251": 8357010895800662854 + "\u51CC\u98CE\u7684\u62A4\u7B26": -8065164394129908387 + "\u51CC\u98CE\u7684\u7389\u4F69": -684515684472935940 + "\u51CC\u98CE\u7684\u9057\u7269": 6042662662511353536 + "\u51CC\u98CE\u9501\u5FC3": -4133878578782461428 + "\u51DD\u795E\u4E38": 2433713722998049111 + "\u51DD\u795E\u4E39\u836F": -5429128698302465393 + "\u51DD\u795E\u7B26": -5137972964534015390 + "\u51DD\u7ED3\u7684\u5185\u4E39": 2253808634021642806 + "\u51DD\u8840\u6218\u7532": -1468811002089749487 + "\u51DD\u8840\u817F\u7532": 3971142875752485789 + "\u51DD\u8840\u8896\u7532": 5096734705362352230 + "\u51DD\u8840\u9774": -4652660018716213950 + "\u51DD\u9732\u5251": 5402665913221276736 + "\u51DD\u9B42\u949B\u6676": -3569082384660631173 + "\u51E0\u6839\u767D\u7684\u5C0F\u788E\u9AA8": 5648869845723087150 + "\u51E1\u5C14\u8D5B\u5178\u96C5\u5BAB\u5899": 1394683455319832050 + "\u51E4\u4EEA\u73CD\u73E0\u6CC9": -3800156337357204157 + "\u51E4\u51F0\u4E4B\u7FFC": 5485525019201732441 + "\u51E4\u51F0\u7C89\u53F0": 5681843737483698141 + "\u51E4\u51F0\u7FBD": -7293928192464782874 + "\u51E4\u51F0\u9A91\u5BA0": 2789004343314493478 + "\u51E4\u5C3E\u5F13\u5F26": 2483666996840550403 + "\u51E4\u5C3E\u7AF9\u4E1B": 3022840054292870321 + "\u51E4\u5C3E\u7BAD": -562411381878011863 + "\u51E4\u5C3E\u7EDE\u4E1D": 7750614754500929534 + "\u51E4\u5C3E\u8FDE\u63A5\u73AF": -1346403226932255608 + "\u51E4\u7FBD\u62A4\u8155\u7EE3\u9762": -8920586301112814495 + "\u51E4\u7FBD\u6CD5\u672F\u978B\u5E95": 1372857826762268020 + "\u51E4\u7FBD\u6CD5\u888D\u8863\u895F": 550178995876945306 + "\u51E4\u7FBD\u6CD5\u88E4\u4E0B\u6446": -6517782812007729038 + "\u51E4\u7FBD\u7075\u529B\u5E61\u7EE6": 6387332447930265486 + "\u51E4\u7FBD\u9999\u56CA": -2748692756770795148 + "\u51E4\u7FC5\u9557": 8442093713754583658 + "\u51E4\u7FD4\u4E4B\u5F13": 2742146369545869440 + "\u51E4\u7FFC\u5929\u7FD4": 1695090717068844910 + "\u51E4\u821E\u4EE4": 3603384330147833817 + "\u51E4\u9E23\u7075\u73E0": -2980468966942629222 + "\u51ED\u865A\u51C0\u7FBD": 1647792663199076115 + "\u51EF\u6492\u82F1\u59FF\u88C5\u7537\u53D1": 914492757379490968 + "\u51EF\u65CB\u4E4B\u5FC3": -8920882105494354349 + "\u51F6\u795E\u6302\u4EF6": -8338640404694139134 + "\u51F6\u7B7E": -8315860563456720934 + "\u51F6\u8C7A\u66B4\u7259": 7523559954126167983 + "\u51FA\u552E\u6210\u5C31\u6A21\u5F0F\u95E8\u7968": 4544409094112006511 + "\u5203\u4E0D\u52A0\u8EAB": 5321956434737669687 + "\u5203\u4E0D\u52A0\u8EAB1": -4659855328381013040 + "\u5203\u4E0D\u52A0\u8EAB2": -7405225198330697666 + "\u5203\u7532\u7280\u725B\u8089": 5193884861358669900 + "\u5206\u5149\u76D4": 1459648857050415283 + "\u5211\u5929\u65A7": -7329834008835079306 + "\u5217\u523A\u5251\u9F7F\u9CA8": 5159573692591786293 + "\u521A\u7389\u7C89": -2347722051681982704 + "\u521D\u669D\u5E61\u6756": -8523934020962495605 + "\u521D\u7EA7\u5168\u80FD\u6D17\u70B9\u5238": -8140382808819245347 + "\u521D\u7EA7\u539A\u78F7\u7B26": 5537802915198231767 + "\u521D\u7EA7\u5408\u91D1\u94A2": 3762153101994479602 + "\u521D\u7EA7\u5F3A\u5316\u76AE\u9769": -7887960953174735752 + "\u521D\u7EA7\u6DEC\u706B\u5242": 1426041277785293939 + "\u521D\u7EA7\u706B\u4E91\u7B26": 552594024273565752 + "\u521D\u7EA7\u7126\u70AD": 5645798139859795085 + "\u521D\u7EA7\u80FD\u529B\u6D17\u70B9\u5238": -8195391874120233342 + "\u521D\u7EA7\u84DD\u5F71\u7B26": 3423656860988347151 + "\u521D\u7EA7\u9752\u5149\u7B26": -234288638169785089 + "\u5229\u5203\u5FBD\u8BB0": 2238445592825305969 + "\u5229\u5203\u5FBD\u8BB0\u5DE8\u86CB": 1650698089618254370 + "\u5229\u722A": 1663104931317115534 + "\u522E\u522E\u5361": 602355499735786148 + "\u5236\u9738\u88C5\u7537\u4E0A\u8863": -914197745128863731 + "\u5236\u9738\u88C5\u7537\u5934\u53D1": -6111214524744381943 + "\u5236\u9738\u88C5\u7537\u624B\u5957": 3533553832757570629 + "\u5236\u9738\u88C5\u7537\u88E4\u5B50": 2516467445799137686 + "\u5236\u9738\u88C5\u7537\u978B\u5B50": 7376193732851048478 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C501\u4E0A\u8863": -8376790747246642943 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C501\u62A4\u8155": -4577408001116473841 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C501\u88E4\u5B50": -3880457405519592536 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C501\u978B\u5B50": -5568309508150835157 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C502\u4E0A\u8863": -1817130745976701718 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C502\u62A4\u8155": -3478528372317846971 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C502\u88E4\u5B50": -3279190134630130244 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C502\u978B\u5B50": 3340039200569993677 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C503\u4E0A\u8863": 2741332666923962771 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C503\u62A4\u8155": -2075417808804007004 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C503\u88E4\u5B50": -7841097552439372133 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C503\u978B\u5B50": -2255451889321135086 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C504\u4E0A\u8863": 597396558938002372 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C504\u62A4\u8155": -7810310220804797352 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C504\u88E4\u5B50": 7487909644640331344 + "\u523A\u5BA2\u4E13\u7528\u670D\u88C504\u978B\u5B50": -5456092329946846787 + "\u523A\u5BA2\u4ED9\u9B54\u6280\u80FD\u4E66": -8208490392207524733 + "\u523A\u5BA2\u5927\u5E08": 7834973091084615493 + "\u523A\u5BA2\u661F\u76D8": -2213770596522426595 + "\u523A\u7403\u6C41\u6DB2": 8500864719202509291 + "\u523A\u7EE3\u63D2\u5C4F\u7F57\u6C49\u5E8A": 3326085992346910447 + "\u523A\u9CDE\u9C7C": 5526662280217383706 + "\u524D\u950B\u6218\u5730\u62A5\u544A": -2373019158580740580 + "\u5251\u4ED9\u57CE\u7CBE\u5143": 6691760569569037107 + "\u5251\u575B\u5370\u8BB0": -3849659819538103314 + "\u5251\u707516\u54C1\u5251": 6760239055587890017 + "\u5251\u7075\u4E03\u8D24\u5251": -7538539975849027117 + "\u5251\u7075\u4E13\u6709\u52511": 269400461812991768 + "\u5251\u7075\u4E13\u6709\u52512": -1990574257791255992 + "\u5251\u7075\u4E13\u6709\u52513": -6942893673071094221 + "\u5251\u7075\u4E13\u6709\u52514": 309316814497794759 + "\u5251\u7075\u4E13\u6709\u53CC\u52511": 6363353133375023999 + "\u5251\u7075\u4E13\u6709\u53CC\u52512": 4733089135104501856 + "\u5251\u7075\u4E13\u6709\u53CC\u52514": 4133336663235953105 + "\u5251\u7075\u4E13\u7528\u670D\u88C501\u4E0A\u8863": -6000593313609755302 + "\u5251\u7075\u4E13\u7528\u670D\u88C501\u624B\u5957": -5493643068343477008 + "\u5251\u7075\u4E13\u7528\u670D\u88C501\u88E4\u5B50": -4174344157049789654 + "\u5251\u7075\u4E13\u7528\u670D\u88C501\u978B\u5B50": 8581977455516363402 + "\u5251\u7075\u4E13\u7528\u670D\u88C502\u4E0A\u8863": 3808861915861272196 + "\u5251\u7075\u4E13\u7528\u670D\u88C502\u624B\u5957": 819589123620600777 + "\u5251\u7075\u4E13\u7528\u670D\u88C502\u88E4\u5B50": -8963719183689919226 + "\u5251\u7075\u4E13\u7528\u670D\u88C502\u978B\u5B50": 1331549618102957945 + "\u5251\u7075\u4E13\u7528\u670D\u88C503\u4E0A\u8863": -2186916561028995437 + "\u5251\u7075\u4E13\u7528\u670D\u88C503\u624B\u5957": -4397835104035774590 + "\u5251\u7075\u4E13\u7528\u670D\u88C503\u88E4\u5B50": 229981675009813464 + "\u5251\u7075\u4E13\u7528\u670D\u88C503\u978B\u5B50": -1069849021583766857 + "\u5251\u7075\u4E13\u7528\u670D\u88C504\u4E0A\u8863": 5907724343648674551 + "\u5251\u7075\u4E13\u7528\u670D\u88C504\u624B\u5957": -2269577269040688813 + "\u5251\u7075\u4E13\u7528\u670D\u88C504\u88E4\u5B50": 9087866178366170634 + "\u5251\u7075\u4E13\u7528\u670D\u88C504\u978B\u5B50": -7321726190971334860 + "\u5251\u7075\u4E13\u7528\u670D\u88C505\u4E0A\u8863": -1128870288073906970 + "\u5251\u7075\u4E13\u7528\u670D\u88C505\u624B\u5957": -755202913445406159 + "\u5251\u7075\u4E13\u7528\u670D\u88C505\u88E4\u5B50": 3935194500899796180 + "\u5251\u7075\u4E13\u7528\u670D\u88C505\u978B\u5B50": 5607615216431144321 + "\u5251\u7075\u4ED9\u6280\u80FD\u4E66": 8076962452240988727 + "\u5251\u7075\u516B\u519B\u5251": -1830025868115234399 + "\u5251\u7075\u5927\u5E08": 464040436835179758 + "\u5251\u7075\u6280\u80FD\u4E66": -1727628271468711220 + "\u5251\u7075\u65B0\u624B\u5251": 3603757719400201011 + "\u5251\u7075\u661F\u76D8": -3089641488902204757 + "\u5251\u7075\u8170\u724C": -1901660838522802784 + "\u5251\u7075\u94ED\u724C": 2679552634042790523 + "\u5251\u7075\u9B54\u6280\u80FD\u4E66": 3094222412165362556 + "\u5251\u7EB9\u7AE0": 2968642529927354353 + "\u5251\u9B42": 8759484575124484838 + "\u5251\u9B421": -9076945270415721822 + "\u5251\u9B422": -7678775841790847876 + "\u5251\u9B423": -6905836260280524876 + "\u5251\u9B424": -8388273927972787966 + "\u5251\u9B425": -7969377978238740568 + "\u5251\u9B426": 4264743024257375465 + "\u5251\u9F7F\u864E\u7684\u5DE8\u7259": -1826763151485906101 + "\u5254\u900F\u7684\u5408\u6B22\u5760\u5B50": 3538794115725935121 + "\u5254\u900F\u7684\u5FD8\u5FE7\u5760\u5B50": 565077932526780296 + "\u5254\u900F\u7684\u65E0\u5E38\u9879\u94FE": 2932150328012057859 + "\u5254\u900F\u7684\u65E0\u91CF\u5760\u5B50": 7427953277155796787 + "\u5254\u900F\u7684\u6DB5\u865A\u9879\u94FE": -4199822157557451647 + "\u5254\u900F\u7684\u7389\u58F6\u9879\u94FE": 1988462765449476813 + "\u5254\u900F\u7684\u78A7\u7A7A\u9879\u94FE": 1878131645742435296 + "\u5254\u900F\u7684\u7D2B\u5FAE\u5760\u5B50": -1995268643693233491 + "\u526A\u7EB81": -1308424548082830724 + "\u526A\u7EB82": -1050648221730063548 + "\u526A\u7EB83": -4454263140491042485 + "\u526A\u7EB84": -1013205671331257241 + "\u5272\u9E7F\u5200": 6690202678547690098 + "\u5288\u6302\u5200": 3710497472403041344 + "\u5288\u7A7A\u957F\u65A7": 3138249320285570225 + "\u529B\u58EB": 3791474252321724235 + "\u529B\u91CF\u4E4B\u6E90": 4910461134322896968 + "\u529B\u91CF\u4E4B\u706F": -7424232920938697678 + "\u529B\u91CF\u4E4B\u8BC1": -539882964429287755 + "\u529B\u91CF\u7ED3\u6676": 6570048398048380608 + "\u529B\u91CF\u94F8\u6750": -6441076350550553252 + "\u52A0\u901F\u5668": 1256713156907884393 + "\u52A3\u9B54": 5407205630566646277 + "\u52A8\u611F\u8FF7\u5F69\u88E4\u65F6\u88C5\u4E0A\u8863": -3523033665678567325 + "\u52A8\u611F\u8FF7\u5F69\u88E4\u65F6\u88C5\u5934\u53D1": -2642810810500441295 + "\u52A8\u611F\u8FF7\u5F69\u88E4\u65F6\u88C5\u624B\u5957": -4050830224286092237 + "\u52A8\u611F\u8FF7\u5F69\u88E4\u65F6\u88C5\u88E4\u5B50": 2366418251696642733 + "\u52A8\u611F\u8FF7\u5F69\u88E4\u65F6\u88C5\u978B\u5B50": 5001008631096516695 + "\u52A8\u7269\u76AE\u6BDB": 7880680317231134855 + "\u52A8\u7269\u80F6": 845071652826046747 + "\u52B2\u8349\u6276\u98CE": -372076483491720929 + "\u52B3\u52A8\u5149\u8363": -6761576686165787453 + "\u52C7\u58EB\u5956\u7AE01": -2385196331734551426 + "\u52C7\u58EB\u5956\u7AE02": 517538768997681668 + "\u52C7\u6C14\u4E4B\u8BC1": -1288464395651955007 + "\u52C7\u6C14\u5FBD\u7AE0": 3991599887964956054 + "\u52C7\u6C14\u9879\u94FE": 951421302294881579 + "\u52C7\u8005\u4E4B\u529B": 6554080921368396915 + "\u52C7\u8005\u6C34\u6676": 5734205966188689054 + "\u52FE\u9B42\u724C": -3578608171184716249 + "\u5305\u5B50\u5587\u53ED": 1756046250952609651 + "\u5305\u88F9\u680F\u6269\u5145\u77F3": -3590423911412134698 + "\u5315\u999601": 6122899573521196477 + "\u5315\u999602": -3647428297339733808 + "\u5315\u999603": -8185055780325920298 + "\u5315\u999604": 7517583246762339593 + "\u5315\u999605": 8351538170723263940 + "\u5315\u999606": 2060171754223837469 + "\u5315\u999607": 1137913015998514331 + "\u5315\u999608": -1762393094612330395 + "\u5315\u999609": -7940907624814967370 + "\u5315\u999610": -2915669813327265343 + "\u5315\u999611": 2174874579053983082 + "\u5315\u999612": -5862926169900271667 + "\u5315\u999613": 2612537311400685153 + "\u5315\u999614": -3476269669275003108 + "\u5315\u999615": 8259069193194649771 + "\u5315\u999616": 4687546770468991280 + "\u5315\u999617": 1386646057592626302 + "\u5315\u999618": 3875842110927713311 + "\u5315\u9996\u4E52\u4E53\u7403\u62CD": -8275966471537358333 + "\u5315\u9996\u53C9\u5B50": 1940248338659523102 + "\u5315\u9996\u5C0F\u8FA3\u6912": -5628945855849968548 + "\u5315\u9996\u7F8A": -913315303164029069 + "\u5315\u9996\u94F8\u51771": 7749043604102213910 + "\u5315\u9996\u94F8\u517710": 5233700040912014072 + "\u5315\u9996\u94F8\u51772": 8182988824386952020 + "\u5315\u9996\u94F8\u51773": 8337636554282473381 + "\u5315\u9996\u94F8\u51774": 676012229866255649 + "\u5315\u9996\u94F8\u51775": 4411203475028157821 + "\u5315\u9996\u94F8\u51776": 2760376096891738847 + "\u5315\u9996\u94F8\u51777": 2843312156446349021 + "\u5315\u9996\u94F8\u51778": -8601908299035248133 + "\u5315\u9996\u94F8\u51779": 8731703189791498289 + "\u5316\u5A74\u4E39": -8111872274249586331 + "\u5316\u6781\u7559\u610F\u6846": -5058125614317676373 + "\u5316\u89E3\u7075\u7B26": 5205085411157560673 + "\u5316\u8EAB\u9879\u94FE": -6489900048305255501 + "\u5317\u51A5\u4E0B\u94E0": -1004850731912521871 + "\u5317\u51A5\u6218\u94E0": 493748574162534255 + "\u5317\u51A5\u8155\u7532": -62233490050144811 + "\u5317\u51A5\u978B": -309720138299906594 + "\u5317\u5C71\u9152\u7ECF": 6386169698562162104 + "\u5317\u6597\u5361": -575079249213425158 + "\u5317\u7F8E\u5934\u76D4": 8354298306219769961 + "\u5317\u7F8E\u62AB\u98CE": 2484050551807093203 + "\u5317\u7F8E\u6CD5\u5E3D": -8156536616499411765 + "\u5317\u7F8E\u6CD5\u672F\u6212\u6307": -3083180089676470612 + "\u5317\u7F8E\u6CD5\u672F\u9879\u94FE": -6549683979726124986 + "\u5317\u7F8E\u7269\u7406\u6212\u6307": 1943247441642566181 + "\u5317\u7F8E\u7269\u7406\u9879\u94FE": -2027326233641553802 + "\u5320\u5FC3\u4E4B\u4E1D": -2961730730157269009 + "\u5320\u5FC3\u4E4B\u7231": -5518048923508157727 + "\u5320\u5FC3\u4E4B\u7EB1": 3890270869488526547 + "\u5320\u5FC3\u4E4B\u7FFC": -5832045900011703534 + "\u5320\u5FC3\u4E4B\u821E": 5760195814556651619 + "\u5320\u5FC3\u4E4B\u9732": 5273200580333099567 + "\u5321\u5E90\u9AD8\u5C71\u56FE": 6676795665971891989 + "\u5341": -3158268168690089481 + "\u5341\u4E00": 3948109774312386413 + "\u5341\u4E00\u661F\u9F99\u73E0": 8969099329418025130 + "\u5341\u4E8C": -674663034742210545 + "\u5341\u4E8C\u5CF0\u9676\u781A": -7772276513398497102 + "\u5341\u4E8C\u661F\u9F99\u73E0": -3965099903645024215 + "\u5341\u5B57\u5F29": -1667991346752432945 + "\u5341\u5B57\u661F": -7849247261148679136 + "\u5341\u5B57\u767D\u7537\u519B\u88C5\u7537\u4E0A\u8863": 2461585031565629224 + "\u5341\u5B57\u767D\u7537\u519B\u88C5\u7537\u5934\u53D1": -6817323289598540180 + "\u5341\u5B57\u767D\u7537\u519B\u88C5\u7537\u88E4\u5B50": -3700974804618938442 + "\u5341\u5B57\u767D\u7537\u519B\u88C5\u7537\u978B\u5B50": -3884859322819917920 + "\u5341\u65B9\u5929\u7F57\u5B9D\u5370": 1965698692112880856 + "\u5341\u661F\u9F99\u73E0": 1843589157073548167 + "\u5341\u7B49\u5956": 2200052036998863192 + "\u5341\u7B49\u954C\u523B": -1737277952659508989 + "\u5343\u4F5B\u6212": -4736657015857949560 + "\u5343\u5E74\u96EA\u83B2": -776367302178428712 + "\u5343\u5FC3\u7ED3": -5313170862593471281 + "\u5343\u773C\u795E\u8033\u5361": -2902957350132142258 + "\u5343\u91CC\u5171\u5A75\u5A1F": -8849038589796825085 + "\u5343\u91D1\u5B50": -2592844141360002654 + "\u5347\u7EA7\u7248\u52A0\u901F\u5668\u5C0F": -6812792946732661619 + "\u5348": 3557080958826266770 + "\u5348\u591C\u53DB\u9006\u5973\u88C5-\u8863\u670D32": -2345521425591808800 + "\u5348\u591C\u53DB\u9006\u5973\u88C5-\u978B32": -5430218652988083500 + "\u5348\u591C\u53DB\u9006\u5973\u88C5\u4E0B\u88C532": -774156450331709351 + "\u5348\u591C\u53DB\u9006\u5973\u88C5\u62A4\u815532": -3212327686374671033 + "\u534A\u652F\u767D\u7FBD": 763525847905837087 + "\u534E\u4E3D\u957F\u5251": -4308494265673682327 + "\u534E\u5149\u4F1A\u4E4B\u5370": 4880069835692301411 + "\u534E\u5149\u4F1A\u5148\u950B\u4EE4\u724C": 1566182831039990292 + "\u534E\u5149\u4F1A\u52C7\u8005\u4EE4\u724C": 2701585766623097576 + "\u534E\u5149\u4F1A\u5FBD\u8BB0": 2857400631220235573 + "\u534E\u5149\u4F1A\u7EDF\u9886\u4EE4\u724C": 8007147354186315578 + "\u534E\u80E5\u5F15\u8FF7\u9999\u7089": 6950093420724302289 + "\u5355\u624B\u77ED\u4E94\u661F\u6756": 7848855181620347574 + "\u5355\u624B\u77ED\u591C\u5F71\u7F8A": 1851606166635481100 + "\u5355\u624B\u77ED\u5DF4\u638C": 7798845983098231692 + "\u5355\u624B\u77ED\u6273\u624B": -3877558461129379949 + "\u5355\u624B\u77ED\u7F8A": -5651502548747211977 + "\u5355\u624B\u77ED\u80E1\u841D\u535C": -7630133308886936137 + "\u5355\u624B\u77ED\u9999\u8549": 4192467982644012530 + "\u5355\u80A9\u5B9D\u77F3\u4E0A\u8863": -2145107498671332715 + "\u5355\u80A9\u5B9D\u77F3\u5934\u53D1": 5375810172708764159 + "\u5355\u80A9\u5B9D\u77F3\u62A4\u8155": 8686404879039128991 + "\u5355\u80A9\u5B9D\u77F3\u978B\u5B50": 1134168761533108405 + "\u5355\u81C2\u6CD5\u87BA\u8DEF\u706F": 4651608855301793034 + "\u5357\u51A5\u79BB\u706B\u5251": 3272483219707060754 + "\u5357\u6597\u5361": 3437025502811290266 + "\u5357\u74DC\u88D9\u4E0A\u8EAB": -2019037596918197020 + "\u5357\u74DC\u88D9\u5934\u53D1": 3412163386377031208 + "\u5357\u74DC\u88D9\u62A4\u8155": -5119611727798111496 + "\u5357\u74DC\u88D9\u978B\u5B50": -3649155733429591273 + "\u535A\u53E4\u51A0": -4234193980486115647 + "\u535A\u53E4\u82B1\u6979\u67DC": -6256614854422181346 + "\u5361": -3958082586048649273 + "\u5361\u724C\u5B8C\u74A7\u7C7B\u6A59\u8272": -2945655758179157140 + "\u5361\u724C\u5B8C\u74A7\u7D2B\u8272": -8993644611132062687 + "\u5361\u724C\u5B8C\u74A7\u7EA2\u8272": 7015073815688690930 + "\u5361\u724C\u5B8C\u74A7\u84DD\u8272": -2910997960806209218 + "\u5361\u724C\u5B8C\u74A7\u9EC4\u8272": 7654211611447748052 + "\u5361\u724C\u5B9D\u7BB1a": 7245740387296694888 + "\u5361\u724C\u5B9D\u7BB1b": 717613842950496383 + "\u5361\u724C\u5B9D\u7BB1c": -2660071592966629222 + "\u5361\u724C\u5B9D\u7BB1s": 3461005577630323170 + "\u5361\u724C\u5B9D\u7BB1ss": -6714715166468533339 + "\u5361\u724C\u7384\u547D\u7C7B\u6A59\u8272": -8482800422199132435 + "\u5361\u724C\u7384\u547D\u7C7B\u7D2B\u8272": 8412263472841889465 + "\u5361\u724C\u7384\u547D\u7C7B\u7EA2\u8272": -4858846536921805013 + "\u5361\u724C\u7384\u547D\u7C7B\u84DD\u8272": -3942728346569783203 + "\u5361\u724C\u7384\u547D\u7C7B\u9EC4\u8272": 2576948977044169851 + "\u5361\u724C\u7384\u9B42\u7C7B\u6A59\u8272": -4246271396964731610 + "\u5361\u724C\u7384\u9B42\u7C7B\u7D2B\u8272": -232883534857976303 + "\u5361\u724C\u7384\u9B42\u7C7B\u7EA2\u8272": -2974299627287270406 + "\u5361\u724C\u7384\u9B42\u7C7B\u84DD\u8272": 1626082181996469748 + "\u5361\u724C\u7384\u9B42\u7C7B\u9EC4\u8272": 8088668971448995836 + "\u5361\u724C\u7834\u519B\u7C7B\u6A59\u8272": -1039220154621241722 + "\u5361\u724C\u7834\u519B\u7C7B\u7D2B\u8272": 3796107507937319175 + "\u5361\u724C\u7834\u519B\u7C7B\u7EA2\u8272": 1222662202788843548 + "\u5361\u724C\u7834\u519B\u7C7B\u84DD\u8272": 6930653190899873369 + "\u5361\u724C\u7834\u519B\u7C7B\u9EC4\u8272": -7882739158444434068 + "\u5361\u724C\u7834\u9635\u7C7B\u6A59\u8272": 6765759998002274866 + "\u5361\u724C\u7834\u9635\u7C7B\u7D2B\u8272": 2869186825087570278 + "\u5361\u724C\u7834\u9635\u7C7B\u7EA2\u8272": -8242107323713908587 + "\u5361\u724C\u7834\u9635\u7C7B\u84DD\u8272": 8366580740657934318 + "\u5361\u724C\u7834\u9635\u7C7B\u9EC4\u8272": 3522943870448414628 + "\u5361\u724C\u957F\u751F\u6A59\u8272": -9061665507077459362 + "\u5361\u724C\u957F\u751F\u7D2B\u8272": 6835699798029268625 + "\u5361\u724C\u957F\u751F\u7EA2\u8272": -2815957384895354701 + "\u5361\u724C\u957F\u751F\u84DD\u8272": -3350799458800284199 + "\u5361\u724C\u957F\u751F\u9EC4\u8272": -7737989179784649116 + "\u5367\u864E\u5486\u5CA9": -3080638408297483499 + "\u536B\u58EB\u5956\u7AE01": 284315175343092017 + "\u536B\u58EB\u5956\u7AE02": -1406698901220935939 + "\u536F": 3327595887706021632 + "\u5370\u5EA6\u821E\u5A18\u65F6\u88C5\u4E0A\u8863": 7262728940189876598 + "\u5370\u5EA6\u821E\u5A18\u65F6\u88C5\u5934\u53D1": 4797951852742158823 + "\u5370\u5EA6\u821E\u5A18\u65F6\u88C5\u62A4\u8155": 8292602692200399790 + "\u5370\u5EA6\u821E\u5A18\u65F6\u88C5\u88E4\u5B50": -7794138808153252505 + "\u5370\u5EA6\u821E\u5A18\u65F6\u88C5\u978B\u5B50": -701730059291249387 + "\u5370\u82B1\u8774\u8776\u5C11\u5973\u88C5\u5934\u53D1": 7129121052445368197 + "\u5370\u82B1\u8774\u8776\u5C11\u5973\u88C5\u8863\u670D": -5085829448216048634 + "\u5370\u82B1\u8774\u8776\u5C11\u5973\u88C5\u978B\u5B50": 8043050088587736225 + "\u5377\u4E91\u6258\u76CF\u70DB\u53F0": 8450677191660386240 + "\u5377\u4E91\u77F3\u574A": -7549472481762669773 + "\u5377\u8349\u5377\u7EB9\u9694\u65AD": 8125835758586731858 + "\u5377\u8F74": -6589539464856305647 + "\u5384\u8FD0\u62F3\u5957": -4430853719128686213 + "\u539A\u571F\u4E4B\u529B": -5358912131172285588 + "\u539A\u571F\u4E4B\u610F": -3736551460845291657 + "\u539A\u5B9E\u7684\u677F\u89D2": 7687506080429771439 + "\u539A\u5FB7\u8F7D\u7269": -5375182359638688858 + "\u539A\u78F7\u4E2D\u7EA7": 2006824521286249206 + "\u539A\u78F7\u521D\u7EA7": 4077337914671646806 + "\u539A\u78F7\u9AD8\u7EA7": 1200628305474031277 + "\u539F\u59CB\u4EBA": 2082556681198304020 + "\u539F\u59CB\u4EBA\u9762\u5177": -2315639613755977866 + "\u539F\u6728": -7487483182688105664 + "\u53A8\u623F": 5570428471783565327 + "\u53BB": 3766908053902394213 + "\u53C2\u5408\u5BC6\u5377": 2026506884067299150 + "\u53C2\u5BBF\u77F3\u523B": -6354344728537062248 + "\u53C8": 5423832474981740064 + "\u53CB\u8C0A\u5730\u4E45\u5929\u957F": 4824758707637936145 + "\u53CC\u500D\u7ECF\u9A8C\u5377\u8F74": 3924629502423291372 + "\u53CC\u51E4\u51FA\u5ED3\u58C1": 7649156171782018758 + "\u53CC\u5200\u5343\u8DB3\u866B\u89E6\u89D2": 2241366617784961863 + "\u53CC\u56CD\u540C\u5FC3\u697C": 5869494819190410992 + "\u53CC\u57CE\u4E89\u9738": 4588012327138354145 + "\u53CC\u5934\u72FC": -4304045762443976815 + "\u53CC\u5B50\u661F": 4186727876465298274 + "\u53CC\u5C42\u7EFF\u841D\u82B1\u67B6": 67622280393981311 + "\u53CC\u5C42\u8F6C\u9F99\u5E90": 7013886982366594075 + "\u53CC\u624B\u77ED\u5927\u8471": 4789270364798818237 + "\u53CC\u624B\u77ED\u5C0F\u6728\u69CC": -2863519082258166422 + "\u53CC\u624B\u77ED\u7F8A": 5186435843067732594 + "\u53CC\u624B\u957F\u4E94\u661F\u6756": -691687077834422994 + "\u53CC\u624B\u957F\u7518\u8517": 5518228425342937662 + "\u53CC\u624B\u957F\u7F8A": -5962710575318717221 + "\u53CC\u624B\u957F\u83B2\u85D5\u4E4B\u9524": -1231869211700135531 + "\u53CC\u624B\u957F\u94C1\u9539": -4438773567075043622 + "\u53CC\u638C\u5200": -4777715191517941116 + "\u53CC\u7BA1\u730E\u67AA": -622717553154012625 + "\u53CC\u7FFC\u884C\u5DE6\u94DC\u72EE": -1819397244190575995 + "\u53CC\u7FFC\u8D2F\u53F3\u94DC\u72EE": -427892346080154484 + "\u53CC\u8393\u4F20\u5947": 7179703486226331169 + "\u53CC\u8F6E\u6728\u677F\u8F66": 2537552560345354003 + "\u53CC\u98DE\u71D5": 1296285884505705760 + "\u53CC\u9F99\u620F\u73E0\u67DC": -7648970683505325246 + "\u53D1\u7535\u5668\u5B98": -7516284034621824133 + "\u53D1\u767D\u7684\u773C\u775B": 7215766867337643800 + "\u53D1\u9ED1\u7684\u72FC\u722A": 2508274198057365336 + "\u53D8\u5F02\u6BD2\u56CA\u86D9": -1590294315614187213 + "\u53D8\u5F02\u7684\u91CE\u72D7": 8084524134231829274 + "\u53D8\u79CD\u523A\u9488": 231871562208800824 + "\u53E3\u53F7": -2819483941157598349 + "\u53E4\u4F1E\u5355\u624B\u77ED": 3590870531842186010 + "\u53E4\u5229\u7279\u7537\u5934\u53D1": -5910278225722830699 + "\u53E4\u5251\u6B8B\u7247": -4778249747433341058 + "\u53E4\u5251\u788E\u7247": -3930839713621167301 + "\u53E4\u5F0F\u7D20\u7F69\u7ACB\u706F": -2977409206897686968 + "\u53E4\u6587\u4E66": 4869267923257503111 + "\u53E4\u6734\u9999\u76D2": 3158883490384309273 + "\u53E4\u7269": 2395902290628960668 + "\u53E4\u7389\u864E\u7B26": -8685722402595630348 + "\u53E4\u753B\u54C1\u5F55": 7027914678049672968 + "\u53E4\u8272\u53E4\u9999\u7684\u60C5\u4E66": -6464658824045193405 + "\u53E4\u85E4\u6756": -4396826429252395431 + "\u53E4\u85E4\u795E\u7B14": 1639575752020742959 + "\u53E4\u88C5\u4E0A\u8863": 5669153669856465495 + "\u53E4\u88C5\u4E0B\u8863": 1311033943292645293 + "\u53E4\u88C5\u5C0F\u5973\u5B69": 4062644239969277236 + "\u53E4\u88C5\u5C0F\u7537\u5B69": 5469480327975001489 + "\u53E4\u88C5\u62A4\u8155": -9023527255726698091 + "\u53E4\u88C5\u7537\u5934\u53D1": -5360756431887031355 + "\u53E4\u88C5\u7537\u62A4\u8155": -2025560987458956059 + "\u53E4\u88C5\u978B\u5B50": -7320362988460817237 + "\u53E6\u7C7B\u975E\u4E3B\u6D41\u7537\u88C5-\u4E0A\u886332": -8834528160278091401 + "\u53E6\u7C7B\u975E\u4E3B\u6D41\u7537\u88C5-\u88E4\u5B5032": 6346431525926386269 + "\u53E6\u7C7B\u975E\u4E3B\u6D41\u7537\u88C5-\u978B\u5B5032": -2956443170571763708 + "\u53EC\u795E\u7B26": 9145882640464522242 + "\u53EF\u4E50": -547461243731786730 + "\u53EF\u53EF\u8C46": 3957754659810930146 + "\u53EF\u7231\u65F6\u5C1A\u5973\u88C5-\u5934\u53D132": 3389330283711690019 + "\u53EF\u7231\u65F6\u5C1A\u5973\u88C5-\u62A4\u815532": -4677823302919384628 + "\u53EF\u7231\u65F6\u5C1A\u5973\u88C5-\u8863\u670D32": 2799154999941292216 + "\u53EF\u7231\u65F6\u5C1A\u5973\u88C5-\u88E4\u5B5032": -896780578401049515 + "\u53EF\u7231\u65F6\u5C1A\u5973\u88C5-\u978B32": 4872493371231039080 + "\u53EF\u7231\u6C14\u6CE1\u9C7C": -5706797564124234163 + "\u53EF\u7231\u8783\u87F9": -7804386680630995938 + "\u53EF\u7231\u9C7C\u5996": -8293288558255255568 + "\u53F1\u54A4\u4E0B\u94E0": 8095213817900174508 + "\u53F1\u54A4\u6218\u94E0": -4350676229130676388 + "\u53F1\u54A4\u8155\u7532": 3621858281966609452 + "\u53F1\u54A4\u978B": 1941379566985034000 + "\u53F1\u98CE\u6218\u9524": -268724389282334378 + "\u53F3\u864E\u7B26": 5644056462483600330 + "\u53F7\u89D2\u80E7\u5200": 4448320302177530440 + "\u5408\u5BB6\u56E2\u5706": -9037479589041402781 + "\u5408\u6210\u4E1D": 6149861227855627545 + "\u5408\u6210\u6CB9": 2746694358996700984 + "\u5408\u6B22\u5760\u5B50": 8945335111043650138 + "\u5408\u91D1\u5F29\u673A": 3811111991517059206 + "\u5408\u91D1\u77E2": 6016704860583980188 + "\u5408\u91D1\u836F\u5BA4": -2383390405301610343 + "\u5409\u7965\u4F69": 7948955726134770462 + "\u5409\u7965\u620F\u7403\u72EE": 1584871201282785774 + "\u5409\u7965\u7EB9\u523B\u8C61\u7259\u96D5": 1151617776818409743 + "\u5409\u7965\u8170\u9970": -5730473544960618599 + "\u5409\u7965\u9501": 2502809541601802827 + "\u5409\u7965\u9E92\u9E9F": -7210583141732933931 + "\u5409\u7B7E": -5388631119129687274 + "\u540E\u571F\u9B42\u5B88": 4911499472570821286 + "\u5411\u65E5\u8475": 8677922012852303664 + "\u5411\u65E5\u8475\u88C5\u8155": -6315405450859013248 + "\u5411\u65E5\u8475\u88C5\u8863": -226433573970678503 + "\u5411\u65E5\u8475\u88C5\u88E4": 1359347931315598910 + "\u5411\u65E5\u8475\u88C5\u978B": 8350101348286615188 + "\u541B\u4E4B\u5370\u7EF6": 8139988597537431313 + "\u541B\u5B50\u5170": 2756598498080043119 + "\u541E\u4E91\u76D4": 2419338837384579703 + "\u541E\u4F5B\u9B54\u5C0A\u7684\u795E\u5FD7\u7CBE\u534E": -7784461758890973005 + "\u541E\u4F5B\u9B54\u5C0A\u7684\u9F3B\u73AF\u788E\u7247": 2648475394698849345 + "\u541E\u9B54\u6212": -3356926286196508719 + "\u542B\u60C5\u8109\u8109": 7883548920366375874 + "\u542F\u5929\u6B8B\u7AE0": 8481460245416270172 + "\u5434\u6052\u7684\u4FE1": 3783506077690596733 + "\u5434\u94A9\u5251": 2240177990049083670 + "\u5439\u96EA\u51A0": 4874574921306519210 + "\u5468\u5929\u6B8B\u9875": -7022764534219212609 + "\u5468\u5E74\u5E86\u5927\u793C\u5305\u5C0F": -7393241889362520771 + "\u547C\u5438\u7403": 7857225770676467529 + "\u547D\u8FD0\u91D1\u724C": -9031093151731750605 + "\u547D\u8FD0\u9B54\u65B9": -1644956416352652451 + "\u547D\u8FD0\u9B54\u65B9\u4E4B\u8F6E1": -2692066280351926375 + "\u547D\u8FD0\u9B54\u65B9\u4E4B\u8F6E2": -1242952799395480739 + "\u547D\u8FD0\u9B54\u65B9\u4E4B\u8F6E3": 6256148063453696661 + "\u547D\u8FD0\u9B54\u65B9\u4E4B\u8F6E4": -923486359265229425 + "\u547D\u8FD0\u9B54\u65B9\u4E4B\u8F6E5": 8647885625522799227 + "\u547D\u8FD0\u9B54\u65B9\u4E4B\u8F6E6": 7267743134452788440 + "\u547D\u8FD0\u9B54\u65B9\u5FBD\u8BB0": -7785406915312737688 + "\u5486\u54EE\u957F\u65A7": 8459969377090550790 + "\u548C\u7530\u7389\u4F69": 8014147347850500772 + "\u548C\u98CE\u7075\u73E0": -1297286668518039301 + "\u5492\u672F\u5C65": -3228240604503306953 + "\u5492\u672F\u62A4\u8155": -6861083213346455425 + "\u5492\u672F\u888D": 4802392611170616719 + "\u5492\u672F\u88E4": -6349670950867540266 + "\u5492\u672F\u9006\u5929\u6212": -2027947052402212132 + "\u5492\u7075\u7B26": -3875930032216183970 + "\u54C8\u96F7\u5957\u88C5\u5973\u4E0A\u8863": -6636934576653202329 + "\u54C8\u96F7\u5957\u88C5\u5973\u5934\u53D1": 5050996210525207613 + "\u54C8\u96F7\u5957\u88C5\u5973\u62A4\u624B": -1651456056157946870 + "\u54C8\u96F7\u5957\u88C5\u5973\u978B\u5B50": -3278952389156254905 + "\u54C8\u96F7\u5957\u88C5\u7537\u4E0A\u8863": -3559393760129613144 + "\u54C8\u96F7\u5957\u88C5\u7537\u5E3D\u5B50": 4745333197682935625 + "\u54C8\u96F7\u5957\u88C5\u7537\u62A4\u8155": -3259897674419982250 + "\u54C8\u96F7\u5957\u88C5\u7537\u88E4\u5B50": -5954860701182446297 + "\u54C8\u96F7\u5957\u88C5\u7537\u978B\u5B50": -6030614652233962361 + "\u54E5\u7279\u841D\u8389\u88C5\u5973\u53D1": -6332439936234184144 + "\u54E5\u7279\u98CE\u841D\u8389\u88C5\u4E0A\u8863": -204768272852188403 + "\u54E5\u7279\u98CE\u841D\u8389\u88C5\u88E4\u5B50": -5070500776037445233 + "\u54E5\u7279\u98CE\u841D\u8389\u88C5\u978B\u5B50": 7229764063695652037 + "\u54FC\u54C8\u4E8C\u5C06\u5361": 5373160660391466394 + "\u5510\u624D\u5B50\u4F20": -9094368984608784928 + "\u5510\u88C5\u7537\u4E0A\u8863": -8316019731498793312 + "\u5510\u88C5\u7537\u88E4\u5B50": 1827363900365922847 + "\u5510\u88C5\u7537\u978B": -8835917766565239494 + "\u5564\u9152\u74F6": 5761829324693872530 + "\u556E\u971C\u957F\u9524": 2291888558403187695 + "\u5578\u98CE\u65A7": -9154823191498414089 + "\u559C\u4ECE\u5929\u964D": 7608561803719305377 + "\u559C\u62A5\u6625\u82B1\u706F": 4381621175840104833 + "\u559C\u7CD6": -751655239380171877 + "\u559C\u7EB8": 4406804876000948522 + "\u559C\u8D34": -8568434439050412537 + "\u559C\u9152": -6812809965318120809 + "\u559C\u94B1": -994582560458022638 + "\u5636\u98CE\u9557": -9118543602554385179 + "\u563B\u54C8\u5973\u8155": 2135713862325598672 + "\u563B\u54C8\u5973\u88C5": 4717381460233784069 + "\u563B\u54C8\u5973\u88D9": 101270433112825294 + "\u563B\u54C8\u5973\u978B": 7627364582430108193 + "\u566C\u5149": -9180194314169741682 + "\u566C\u9B42\u4E0B\u94E0": -7251666355364475778 + "\u566C\u9B42\u4E4B\u6212": -1957580796432230640 + "\u566C\u9B42\u5203": 5444268995371803598 + "\u566C\u9B42\u6212": 51771111185095906 + "\u568E\u6708\u65D7\u5E1C": 2065118492203207744 + "\u56DA\u9F99\u6756": 4095193170486252888 + "\u56DB": -4426923660498769741 + "\u56DB\u5723\u95E8\u5F92\u6D6E\u96D5": 5187420414183207983 + "\u56DB\u5927\u5929\u738B\u5361": 3470302458540324279 + "\u56DB\u5B63\u4ED5\u5973\u56FE": -6156314111567069754 + "\u56DB\u5B63\u6155\u65AF\u86CB\u7CD5\u62FC\u76D8": -4721439479468141112 + "\u56DB\u65B9\u795E\u5361": 5436891595558485296 + "\u56DB\u661F\u5929\u725B\u738B\u7684\u7FC5\u8180": -8626868859616359819 + "\u56DB\u661F\u9F99\u73E0": 1598099022323534205 + "\u56DB\u731B\u9524": -7161619206250743126 + "\u56DB\u76F8\u5C65": -2684926080910437885 + "\u56DB\u76F8\u62A4\u8155": 8206076638853699123 + "\u56DB\u76F8\u888D": -2904676647017343636 + "\u56DB\u76F8\u88E4": -4535901374542954605 + "\u56DB\u7B49\u5956": 6645450847546261206 + "\u56DB\u7B49\u954C\u523B": -3030767905446772183 + "\u56DB\u7EA7\u4E5D\u9633\u4E39": -3445791412372497400 + "\u56DB\u7EA7\u4E5D\u9F99\u6563": 1699537316436340393 + "\u56DB\u7EA7\u5F52\u5143\u6563": 6823152234646545859 + "\u56DB\u7EA7\u6C89\u9999\u4E38": -7162733018347517593 + "\u56DB\u7EA7\u6D3B\u8840\u6563": -8601240225462323263 + "\u56DB\u7EA7\u795E\u6C14\u4E38": 4149786842734285619 + "\u56DB\u7EA7\u8FD8\u7075\u6C34": -8374223549847671122 + "\u56DB\u7EA7\u91D1\u521B\u836F": -2583326137019464133 + "\u56DB\u7EA7\u9F99\u6D8E\u9999": -8716526189841500001 + "\u56DB\u8C61\u77F3": 7536632262124022614 + "\u56DE": -238291286479062077 + "\u56DE\u57CE\u77F3": -107473759330795071 + "\u56DE\u57CE\u9999": 8073135469444143885 + "\u56DE\u5929\u6212": 7506443121436603383 + "\u56DE\u6625\u6563": -5682758465461907880 + "\u56DE\u9633\u4E39": 6847998501391514533 + "\u56E2\u7ED3\u5C31\u662F\u529B\u91CF": 974702579569303595 + "\u56ED\u827A\u526A\u5200\u624B": -2902365513615685705 + "\u56ED\u827A\u533A\u54E8\u5175": 5443340062943047686 + "\u56FA\u795E\u7B26": -7028716509855909445 + "\u56FA\u9B42\u949B\u6676": -8073333960937369780 + "\u56FD": 4209479970780051954 + "\u56FD\u8272\u5929\u9999\u523B\u74F7": 2721087114085741667 + "\u5706\u5F62\u6708\u997C": -3598897768715426689 + "\u5706\u76FE\u52CB\u7AE0\u5DE8\u86CB": -6572006488864765525 + "\u5706\u76FE\u5FBD\u7AE0": 2197216471825588154 + "\u5706\u9876\u56F4\u9F99\u5C4B": -8682946940730777945 + "\u571F\u4E4B\u9AD3": 309632008656171846 + "\u571F\u5143\u7D20\u7CBE\u534E": 1594047328639051318 + "\u571F\u62D4\u9F20\u56FD\u738B": 1317877300237504268 + "\u571F\u877C\u536B\u5175": -3947782601092867992 + "\u571F\u877C\u54E8\u5175": -198564566899921307 + "\u571F\u877C\u6218\u58EB": 4073579202677253996 + "\u571F\u8C82": 8955670283818051571 + "\u571F\u94F3": -7656494330401343431 + "\u5723\u6BBF\u4E4B\u77F3": -4189876839962047623 + "\u5723\u6BBF\u4E4B\u77F3\u5305\u88F9": 7619303092180013845 + "\u5723\u6BCD\u73E0": 5312183885937604723 + "\u5723\u6CC9": -4360243872807282532 + "\u5723\u6D01\u4E4B\u4E1D": 385944260272771697 + "\u5723\u6D01\u4E4B\u7231": 6341232259233147216 + "\u5723\u6D01\u4E4B\u7EB1": -1840970814443266572 + "\u5723\u6D01\u4E4B\u7FFC": -2010176065963429494 + "\u5723\u6D01\u4E4B\u821E": 8410804400273685505 + "\u5723\u6D01\u4E4B\u9732": -4308241210047133629 + "\u5723\u7075": 4945012307745522141 + "\u5723\u7075\u4E39": -974999435236690081 + "\u5723\u83B2\u4EE4": 2465634377808310832 + "\u5723\u8BDE\u5927\u793C\u76D2": 1887137411769784356 + "\u5723\u8BDE\u5957\u88C5\u5973": 3120135439361998185 + "\u5723\u8BDE\u5957\u88C5\u7537": -995233199590490596 + "\u5723\u8BDE\u5973\u88C5\u539F\u8272\u624B\u5957": -1982737450340765209 + "\u5723\u8BDE\u5973\u88C5\u539F\u8272\u8863\u670D": -5245592878944015249 + "\u5723\u8BDE\u5973\u88C5\u539F\u8272\u88D9\u5B50": 4132269747164366331 + "\u5723\u8BDE\u5973\u88C5\u539F\u8272\u978B\u5B50": 6424171029394661605 + "\u5723\u8BDE\u5973\u88C5\u53D8\u8272\u624B\u5957": 4109067589002600469 + "\u5723\u8BDE\u5973\u88C5\u53D8\u8272\u8863\u670D": 5072806888560844791 + "\u5723\u8BDE\u5973\u88C5\u53D8\u8272\u88D9\u5B50": 5713025890654998171 + "\u5723\u8BDE\u5973\u88C5\u53D8\u8272\u978B\u5B50": 5193137980047964098 + "\u5723\u8BDE\u5973\u88C5\u5934\u53D1": 1824704100058123916 + "\u5723\u8BDE\u5FEB\u4E50": 5327913717710071128 + "\u5723\u8BDE\u65B0\u8001\u4EBA\u5934": -8467717297149722708 + "\u5723\u8BDE\u65B0\u88C5\u5973\u4E0A\u88D9": 160892880460672880 + "\u5723\u8BDE\u65B0\u88C5\u5973\u624B\u5957": -8842982047114866241 + "\u5723\u8BDE\u65B0\u88C5\u5973\u88C5\u978B": -9180334437564441145 + "\u5723\u8BDE\u65B0\u88C5\u7537\u4E0A\u8863": -128426966389816417 + "\u5723\u8BDE\u65B0\u88C5\u7537\u624B\u5957": 2455166440193317002 + "\u5723\u8BDE\u65B0\u88C5\u7537\u88E4\u5B50": 3554637549528617655 + "\u5723\u8BDE\u65B0\u88C5\u7537\u978B": 3768036823821724964 + "\u5723\u8BDE\u6811\u7684\u5C0F\u661F\u661F": -2336883965466319975 + "\u5723\u8BDE\u7537\u88C5\u539F\u8272\u5E3D\u5B50": -8508328354292652047 + "\u5723\u8BDE\u7537\u88C5\u539F\u8272\u62A4\u8155": 2286141433161466612 + "\u5723\u8BDE\u7537\u88C5\u539F\u8272\u8863\u670D": -8946357067952939886 + "\u5723\u8BDE\u7537\u88C5\u539F\u8272\u88E4\u5B50": 5527632234557049015 + "\u5723\u8BDE\u7537\u88C5\u539F\u8272\u978B\u5B50": 8949779822794945260 + "\u5723\u8BDE\u7537\u88C5\u53D8\u8272\u62A4\u8155": 5764686741300354482 + "\u5723\u8BDE\u7537\u88C5\u53D8\u8272\u8863\u670D": -676290915298169323 + "\u5723\u8BDE\u7537\u88C5\u53D8\u8272\u88E4\u5B50": -4285203208848511007 + "\u5723\u8BDE\u7537\u88C5\u53D8\u8272\u978B\u5B50": -5652586907703110931 + "\u5723\u8BDE\u793C\u670D\u539F\u8272\u5973-\u4E0A\u8EAB": -8236853612857732317 + "\u5723\u8BDE\u793C\u670D\u539F\u8272\u5973-\u4E0B\u8EAB": -2377545593785345053 + "\u5723\u8BDE\u793C\u670D\u539F\u8272\u5973-\u5934\u53D1": -7727257008785751314 + "\u5723\u8BDE\u793C\u670D\u539F\u8272\u5973-\u62A4\u8155": -3979867703630637493 + "\u5723\u8BDE\u793C\u670D\u539F\u8272\u5973-\u978B": -2659345159668228750 + "\u5723\u8BDE\u793C\u670D\u539F\u8272\u7537-\u4E0A\u8EAB": 191155388974884486 + "\u5723\u8BDE\u793C\u670D\u539F\u8272\u7537-\u4E0B\u8EAB": 4879757085831129078 + "\u5723\u8BDE\u793C\u670D\u539F\u8272\u7537-\u5934\u53D1": 5675269668337790825 + "\u5723\u8BDE\u793C\u670D\u539F\u8272\u7537-\u624B\u5957": 9141338394628460722 + "\u5723\u8BDE\u793C\u670D\u539F\u8272\u7537-\u978B": 2402285265403300358 + "\u5723\u8BDE\u793C\u670D\u5973-\u4E0A\u8EAB": 548408165416677180 + "\u5723\u8BDE\u793C\u670D\u5973-\u4E0B\u8EAB": -88119398198926321 + "\u5723\u8BDE\u793C\u670D\u5973-\u5934\u53D1": -1131262504166184322 + "\u5723\u8BDE\u793C\u670D\u5973-\u62A4\u8155": -960146906796647117 + "\u5723\u8BDE\u793C\u670D\u5973-\u978B": 220413752631550735 + "\u5723\u8BDE\u793C\u670D\u7537-\u4E0A\u8EAB": 6016136848830298980 + "\u5723\u8BDE\u793C\u670D\u7537-\u4E0B\u8EAB": 1468527803698065325 + "\u5723\u8BDE\u793C\u670D\u7537-\u5934\u53D1": -3832951101199854613 + "\u5723\u8BDE\u793C\u670D\u7537-\u624B\u5957": -731995104856623597 + "\u5723\u8BDE\u793C\u670D\u7537-\u978B": 6087719370247735534 + "\u5723\u8BDE\u793C\u670D\u7537\u4E0A\u8863": -9164721648639870904 + "\u5723\u8BDE\u793C\u670D\u7537\u4E0A\u8863-\u53D8\u8272": 8176085751554789865 + "\u5723\u8BDE\u793C\u670D\u7537\u624B\u5957-\u53D8\u8272": -7667508578634064165 + "\u5723\u8BDE\u793C\u670D\u7537\u88E4-\u53D8\u8272": 8739032847486874098 + "\u5723\u8BDE\u793C\u670D\u7537\u88E4\u5B50": -1667853799434902405 + "\u5723\u8BDE\u793C\u670D\u7537\u978B": -4648436564664101569 + "\u5723\u8BDE\u793C\u670D\u7537\u978B-\u53D8\u8272": 9095522685336752465 + "\u5723\u8BDE\u8001\u4EBA\u7684\u5E3D\u5B50": 8793280485668532707 + "\u5723\u8BDE\u8001\u4EBA\u7684\u65E5\u8BB0": -4078712107394343421 + "\u5723\u8BDE\u889C\u5B50": 7195894341255201761 + "\u5723\u8BDE\u889C\u5B50(\u7D2B)": 7020543653008233419 + "\u5723\u8BDE\u889C\u5B50(\u7EFF)": 3174798733287485999 + "\u5723\u8BDE\u889C\u5B50(\u84DD)": -2436391579599264609 + "\u5723\u8BDE\u889C\u5B50(\u9EC4)": 7912360014670604867 + "\u5723\u8BDE\u88C5\u5973\u4E0A\u8863": -286372632067931777 + "\u5723\u8BDE\u88C5\u5973\u4E0A\u88D9": -7684368589856422131 + "\u5723\u8BDE\u88C5\u5973\u4E0A\u88D9-\u53D8\u8272": 5856019033491503046 + "\u5723\u8BDE\u88C5\u5973\u624B\u5957": 4527128640504854878 + "\u5723\u8BDE\u88C5\u5973\u624B\u5957-\u53D8\u8272": -3481949542627499618 + "\u5723\u8BDE\u88C5\u5973\u88C5\u978B-\u53D8\u8272": -4151600669869550948 + "\u5723\u8BDE\u88C5\u5973\u88D9\u5B50": -2970271479362950023 + "\u5723\u8BDE\u88C5\u5973\u9774\u5B50": -5478514611074478456 + "\u5723\u8BDE\u88C5\u7537\u4E0A\u8863": -7597698070727182580 + "\u5723\u8BDE\u88C5\u7537\u624B\u5957": -4516582892304173240 + "\u5723\u8BDE\u88C5\u7537\u88E4\u5B50": -4248923666062337051 + "\u5723\u8BDE\u88C5\u7537\u9774\u5B50": -798008567225193883 + "\u5723\u8BDE\u9080\u8BF7\u51FD": -5200116988122637957 + "\u5723\u8BDE\u91D1\u5E01": 8047318140759828415 + "\u5723\u8BDE\u94DC\u5E01": -5524424072909811005 + "\u5723\u8BDE\u94F6\u5E01": -9036327494113531715 + "\u5723\u8BDE\u9E8B\u9E7F\u5750\u9A91": -1501439723313992590 + "\u5730\u4E4B\u5723\u5370": 6830629160856333380 + "\u5730\u4E4B\u788E\u7247": -3312694968861444344 + "\u5730\u4E4B\u7CBE\u534E": -1359512058352914235 + "\u5730\u4ED9\u77F3": 9125667885771769278 + "\u5730\u4F51\u5B9D\u4E66": 8129543365498215117 + "\u5730\u5143\u77F3": -8039094289332027059 + "\u5730\u55B7\u82B11": -4120250032923151382 + "\u5730\u55B7\u82B12": -6529958049279975311 + "\u5730\u55B7\u82B13": -6509932607079383538 + "\u5730\u55B7\u82B14": 840510005910301241 + "\u5730\u55B7\u82B15": -2235105433150437883 + "\u5730\u65CB\u82B11": 8717039418503613775 + "\u5730\u65CB\u82B12": 3324343395891360528 + "\u5730\u65CB\u82B13": 5388288728158951078 + "\u5730\u65CB\u82B14": 102307514270825995 + "\u5730\u65CB\u82B15": -5331203317802617012 + "\u5730\u6E0A\u5996\u5C06\u5361\u72471": 450243909628768081 + "\u5730\u6E0A\u5996\u5C06\u5361\u72472": 6073257855732337244 + "\u5730\u6E0A\u5996\u5C06\u5361\u72473": 6680396703883082304 + "\u5730\u6E0A\u5996\u5C06\u5361\u72474": 5591994359580869371 + "\u5730\u6E0A\u5996\u5C06\u5361\u72475": -8628465184386519380 + "\u5730\u6E0A\u5996\u5C06\u5361\u72476": 8395906767338839115 + "\u5730\u6E0A\u5996\u5C06\u5361\u72477": -6459076761563799607 + "\u5730\u6E0A\u5996\u5C06\u5361\u72478": -5197140420701715115 + "\u5730\u7075\u77F3": -2683143066581103171 + "\u5730\u715E\u5143\u7CBE": -5491639535946810910 + "\u5730\u715E\u661F\u5361": 479412276682263211 + "\u5730\u715E\u77F3": 1274151304240279645 + "\u5730\u715E\u957F\u9524": 2101308052611819599 + "\u5730\u72F1\u72EE\u738B": -3599933702984563783 + "\u5730\u7F1A\u5BC6\u5377": 1897386626850293265 + "\u5730\u85CF\u83E9\u8428": -4628031229597982071 + "\u5730\u85CF\u83E9\u8428\u788E\u7247": 7068128046163242291 + "\u5730\u884C\u5F69\u9E1F": 8709136234304635958 + "\u5730\u9B3C\u7259": 866427774368146641 + "\u574E\u4E4B\u8868\u5FBD": 8263377373109584 + "\u574E\u4E4B\u9B42": 4203996140767104166 + "\u574F\u4EBA\u5361": -143574857516166613 + "\u574F\u6389\u7684\u5F13": -4629434663915631377 + "\u5750\u9A91\u5938\u7236": 5832032900766460901 + "\u5750\u9A91\u5BA0\u7269\u5151\u6362\u724C": 5092532861654133387 + "\u5750\u9A91\u673A\u68B0\u6218\u72EE": 44251120360554336 + "\u5750\u9A91\u731B\u72B8\u5DE8\u8C61": -8967214403483054586 + "\u5750\u9A91\u7AE0\u9C7C\u9F99\u602A": -7780062422128557239 + "\u5750\u9A91\u846B\u82A6": -6726807436892734239 + "\u5750\u9A91\u86C7": -2603366498479644879 + "\u5750\u9A91\u98DE\u9F99": -2216839874951230300 + "\u5750\u9A91\u9F20\u8F6E\u8F66": -766125048374709915 + "\u575A\u57CE": -6189842242440215887 + "\u575A\u58C1\u4E4B\u77F3": 8814951355344851392 + "\u575A\u58C1\u4E4B\u77F3\u5305\u88F9": -8004281061606582093 + "\u575A\u5B9A\u7EA2\u661F": 3560440302358534783 + "\u575A\u786C\u7684\u5599": 3031045317514001267 + "\u575A\u786C\u866B\u7FC5": -3051672413615566448 + "\u5764\u4E4B\u8868\u5FBD": -1868054379235823905 + "\u5764\u4E4B\u9B42": -6698095720376322888 + "\u5782\u6708\u55B7\u6CC9": -7366091966407410345 + "\u5782\u7EBF\u6D41\u661F": -8967887990525467826 + "\u5782\u82B1\u8BD7\u95E8": 7001280880365029786 + "\u5792\u4E1D\u7F20\u9B42\xB7\u7D2B": 3622582119124280451 + "\u5792\u4E1D\u7F20\u9B42\xB7\u84DD": -1020072121418199427 + "\u5792\u4E1D\u7F20\u9B42\xB7\u8D64": 1843610005522784286 + "\u5792\u4E1D\u7F20\u9B42\xB7\u9752": -1843303008343232002 + "\u57CE\u5E02\u5FBD\u8BB0": 8068586086460365575 + "\u589E\u957F\u65E0\u91CF\u6728": 2584500230575517723 + "\u58A8": -207405537956657258 + "\u58A8\u708E\u957F\u65A7": 4844671563309228652 + "\u58A8\u96E8\u4E4B\u5F13": -6854080169044821594 + "\u58A8\u9CB6": 9121915149756916171 + "\u590D\u53E4\u73BB\u7483\u5782\u706F": -4727846985756005080 + "\u590D\u53E4\u7EB9\u9970\u7B52\u706F": -4788998278221442522 + "\u590D\u6D3B\u5377\u8F74": 8369472256352189568 + "\u590D\u82CF\u7684\u4E91\u5251": -8323707539662893990 + "\u590F\u5A01\u5937\u65F6\u88C5\u5973\u4E0A\u8EAB": -1232420165666915903 + "\u590F\u5A01\u5937\u65F6\u88C5\u5973\u4E0B\u8EAB": 3761055769650534225 + "\u590F\u5A01\u5937\u65F6\u88C5\u5973\u5934\u53D1": 8405908844664716790 + "\u590F\u5A01\u5937\u65F6\u88C5\u5973\u62A4\u8155": 3709891457346892987 + "\u590F\u5A01\u5937\u65F6\u88C5\u5973\u978B\u5B50": -3083569168514135393 + "\u590F\u5B63\u6821\u670D\u7537\u88C5-\u8863\u670D32": -6497847963140271099 + "\u590F\u5B63\u6821\u670D\u7537\u88C5-\u88E4\u5B5032": -1453799138579230693 + "\u590F\u5B63\u6821\u670D\u7537\u88C5-\u978B32": -180015874012933322 + "\u590F\u5B63\u6821\u670D\u88C5\u5973-\u8863\u670D32": 7692723615035737915 + "\u590F\u5B63\u6821\u670D\u88C5\u5973-\u88D9\u5B5032": 877324374783928848 + "\u590F\u5B63\u6821\u670D\u88C5\u5973-\u978B32": 3243881649351540748 + "\u590F\u5B63\u6C99\u6F20\u7537\u88C5\u4E0A\u8863": -7680897773751980338 + "\u590F\u5B63\u6C99\u6F20\u7537\u88C5\u4E0B\u8863": -359942662730410000 + "\u590F\u5B63\u6C99\u6F20\u7537\u88C5\u5934\u53D1": 8149640418320898548 + "\u590F\u5B63\u6C99\u6F20\u7537\u88C5\u978B\u5B50": 5855135817796427524 + "\u590F\u65E5\u6E05\u51C9\u88C5\u8863": -9159985128178156190 + "\u590F\u65E5\u6E05\u51C9\u88C5\u88D9": -3118148497700717358 + "\u590F\u65E5\u6E05\u51C9\u88C5\u978B": -600823004981192754 + "\u590F\u65E5\u9633\u5149\u6C99\u6EE9\u6905": 5213778543359873008 + "\u5915\u513F\u7F1D\u7684\u5F81\u8863": 7808585323708959343 + "\u591A\u5B9D\u6C89\u9999\u7B14\u67B6": -3114224354571716752 + "\u591A\u5BFF\u6C34\u997A": -5541312749554616579 + "\u591A\u5F69\u9879\u94FE12": -7310332843277991986 + "\u591A\u5F69\u9879\u94FE13": 5189515984454098474 + "\u591A\u60C5\u5251": 206893543253493508 + "\u591A\u798F\u6C34\u997A": -4174092436171047036 + "\u591A\u95FB\u65E0\u53CC\u4E1D": -5343981611676143597 + "\u591C\u5149\u4E4B\u4E1D": 5190258615086932012 + "\u591C\u5149\u4E4B\u7231": -7157520427463365333 + "\u591C\u5149\u4E4B\u7EB1": -1389665117732442573 + "\u591C\u5149\u4E4B\u7FFC": 5802612117344169485 + "\u591C\u5149\u4E4B\u821E": -2229341510134077939 + "\u591C\u5149\u4E4B\u9732": 182600714063999873 + "\u591C\u5149\u5B9D\u73E0": -7208894094899692412 + "\u591C\u53C9\u4E4B\u77F3": 7255137273005796416 + "\u591C\u5F71\u6280\u80FD\u4E66": -430159190152745063 + "\u591C\u5F71\u661F\u76D8": 179625945861878906 + "\u591C\u660E\u73E0": -1224737141245872644 + "\u591C\u660E\u73E0\u53D8\u8272": 8357079980822409222 + "\u591C\u715E": 4349864618565906313 + "\u5927": 6242736102960216528 + "\u5927\u4E5D\u9633\u4E39": 4305735668184547111 + "\u5927\u5200": 7753089823602011967 + "\u5927\u529B\u4E38": 7960017780256312218 + "\u5927\u529B\u795E": 2294232733595153773 + "\u5927\u529B\u795E\u4E4B\u51A0": -4166254067490769647 + "\u5927\u5305\u88F9": -378718613724139938 + "\u5927\u561F\u561F\u718A": 4565890007865618600 + "\u5927\u5730\u4E4B\u77F3": -9049842182637602360 + "\u5927\u578B\u51CC\u4E91\u7269\u8D44\u7BB1": 1155738963479973926 + "\u5927\u578B\u51CC\u4E91\u7269\u8D44\u888B": 9136184329929557850 + "\u5927\u5934\u4E38": -4100894215220368622 + "\u5927\u660E\u5BA3\u5FB7\u7089": -3011425479448994899 + "\u5927\u6F20\u5B64\u70DF": -1689361345046341012 + "\u5927\u73CD\u73E0": -3249780285852555332 + "\u5927\u795E\u6C14\u4E38": 1412680403689126125 + "\u5927\u79B9\u5E1D\u9AA8": -2921940092789653132 + "\u5927\u81EA\u5728\u8F6E": 5429055505980710162 + "\u5927\u82B1\u65D7\u888D\u5934\u53D1": -3087727776235929440 + "\u5927\u82B1\u65D7\u888D\u88D9\u5B50": -8287375218331542092 + "\u5927\u82B1\u65D7\u888D\u978B\u5B50": 4650734200591877189 + "\u5927\u867E\u5F13": -2364989401774331236 + "\u5927\u867E\u62F3\u5957": -1281228358795144924 + "\u5927\u8D1D\u58F3": 4614270128455165993 + "\u5927\u8D1D\u58F3\u4EAE": 6831342473260721138 + "\u5927\u91D1\u521B\u836F": -4484965013969673371 + "\u5927\u91D1\u952D": 5503757070457155342 + "\u5927\u94B3\u5B50": -8621262304583709428 + "\u5927\u94F6\u952D": -6281249862301307027 + "\u5927\u9690\u62AB\u98CE": -1603865571226868454 + "\u5927\u9EC4": 3270274879490545369 + "\u5927\u9F99\u867E": -5837244502977438911 + "\u5929\u4E00\u6C34": -6956713855269176001 + "\u5929\u4E0A\u4EBA\u95F4": 3917407715763140093 + "\u5929\u4E0A\u5929\u4E0B\u793C\u76D2": 1340683762099103729 + "\u5929\u4E0B\u7B2C\u4E00\u5E2E": 6739845266999265668 + "\u5929\u4E4B\u660A\u955C": -5543090180466461762 + "\u5929\u4E4B\u788E\u7247": 4582360216975358565 + "\u5929\u4E4B\u7CBE\u534E": -1673081510196347081 + "\u5929\u4E66_\u4E00\u526A\u6885": -4998172478887173493 + "\u5929\u4E66_\u4E00\u592B\u5F53\u5173": 5314437059476606951 + "\u5929\u4E66_\u4E00\u82C7\u6E21\u6C5F": 6719112414377229932 + "\u5929\u4E66_\u4E03\u5A18\u5B50": 3362229291353464327 + "\u5929\u4E66_\u4E09\u5B66\u58EB": -2046230211597636424 + "\u5929\u4E66_\u4E09\u6627\u771F\u706B": -8484324664804652581 + "\u5929\u4E66_\u4E18\u6BD4\u7279": -6183571604820187133 + "\u5929\u4E66_\u4E1A\u706B": -4500247598727227085 + "\u5929\u4E66_\u4E1C\u98CE\u7834": -3848676460263135475 + "\u5929\u4E66_\u4E5D\u91CD\u845B": 420104903866699086 + "\u5929\u4E66_\u4E8C\u90CE\u795E": 2558703670888758203 + "\u5929\u4E66_\u4E94\u66F4\u8F6C": -3722397869102563335 + "\u5929\u4E66_\u4F18\u94B5\u7F57": -4401182099130517052 + "\u5929\u4E66_\u516B\u58F0\u7518\u5DDE": -2092081748086131413 + "\u5929\u4E66_\u516D\u5DDE\u6B4C\u5934": -6217273345628776817 + "\u5929\u4E66_\u51B0\u5937": -7956617164837250775 + "\u5929\u4E66_\u51B0\u706B\u9E92\u9E9F": -8695986742463290564 + "\u5929\u4E66_\u51E4\u6765\u671D": 8883352872451935307 + "\u5929\u4E66_\u529B\u62D4\u5343\u94A7": -8896339607405886565 + "\u5929\u4E66_\u529B\u633D\u72C2\u6F9C": 423235120988358690 + "\u5929\u4E66_\u52FE\u9B42\u6444\u9B44": -4312636809068011534 + "\u5929\u4E66_\u5317\u51A5": -1215343999087085442 + "\u5929\u4E66_\u5341\u4E09\u592A\u4FDD": 193810176419024420 + "\u5929\u4E66_\u5341\u516B\u5B66\u58EB": 2925936465349360410 + "\u5929\u4E66_\u5341\u6837\u9526": -5777636908510222773 + "\u5929\u4E66_\u5343\u79CB\u5C81": -3332455782002449979 + "\u5929\u4E66_\u5343\u91CC\u70DF\u6CE2": 3803619119158522418 + "\u5929\u4E66_\u53CC\u98DE\u7FFC": -7747207698024718071 + "\u5929\u4E66_\u53D8\u4E71": 8947895608624845298 + "\u5929\u4E66_\u56DB\u5927\u7686\u7A7A": -7119696829611296486 + "\u5929\u4E66_\u56DB\u65F6\u597D": -6285479965341299267 + "\u5929\u4E66_\u571F\u5730\u62DC\u5BFF": 7362242274062935707 + "\u5929\u4E66_\u5750\u5FD8\u7985": -8075276563864252952 + "\u5929\u4E66_\u585E\u4E0B": 3566122051635064504 + "\u5929\u4E66_\u5929\u5730\u53D8\u8272": 2688203638865513449 + "\u5929\u4E66_\u5929\u5730\u548C\u8C10": 8059494391079261259 + "\u5929\u4E66_\u5929\u6B8B\u5730\u7F3A": -4698402131166543201 + "\u5929\u4E66_\u5929\u9999": 7898826254966549909 + "\u5929\u4E66_\u5929\u9F13\u5999\u53F9\uFF08\u96F7\uFF09": 6298781809578088717 + "\u5929\u4E66_\u5938\u7236": -7804439589585017657 + "\u5929\u4E66_\u5947\u5F02\u6069\u5178": 4850788010461606903 + "\u5929\u4E66_\u5982\u6C90\u6625\u98CE": 6357262499376512434 + "\u5929\u4E66_\u5982\u8499\u795E\u52A9": 2748763379155782923 + "\u5929\u4E66_\u5983\u5B50\u7B11": 1871716497836463219 + "\u5929\u4E66_\u5AE6\u5A25": -5024128525803009144 + "\u5929\u4E66_\u5B50\u591C\u6B4C": 5901498866119835214 + "\u5929\u4E66_\u5BBF\u547D": 7129490437134728653 + "\u5929\u4E66_\u5BF9\u9152\u5F53\u6B4C": 5436815090940356428 + "\u5929\u4E66_\u5C04\u5929\u72FC": 8744393886426960213 + "\u5929\u4E66_\u5D29\u574F": 4475108130352167435 + "\u5929\u4E66_\u5DE8\u7075": -667616253253474118 + "\u5929\u4E66_\u5F31\u6C34\u4E09\u5343": -8551969775826481773 + "\u5929\u4E66_\u5F39\u5F13\u5BA2": 8449909524767527012 + "\u5929\u4E66_\u5F39\u7403\u624B": 8868880896140126025 + "\u5929\u4E66_\u5FC3\u5982\u6B62\u6C34\uFF08\u5B9A\uFF09": -3609161518603457905 + "\u5929\u4E66_\u5FC6\u6C5F\u5357": -8250399571583645818 + "\u5929\u4E66_\u5FF5\u5974\u5A07": -4869633098106264319 + "\u5929\u4E66_\u6012\u706B\u653B\u5FC3": 8299255878966655218 + "\u5929\u4E66_\u637B\u82B1\u4E00\u7B11": -5980660679949329334 + "\u5929\u4E66_\u65E0\u5B57\u5929\u4E66": 4236705438163830066 + "\u5929\u4E66_\u6606\u4ED1": -5788518641940893842 + "\u5929\u4E66_\u6740\u7834\u72FC": 8297404732478967122 + "\u5929\u4E66_\u6843\u4E4B\u592D\u592D": -3919861361880755817 + "\u5929\u4E66_\u6843\u82B1\u6247": -6799097961051095208 + "\u5929\u4E66_\u68A8\u82B1\u70DF\u96E8": -8486469421296481450 + "\u5929\u4E66_\u6C34\u6EF4\u77F3\u7A7F": -6302930808372155321 + "\u5929\u4E66_\u6C34\u9F99\u541F": 2384352779365436809 + "\u5929\u4E66_\u6C5F\u5357": -5197184298383037655 + "\u5929\u4E66_\u6CE2\u5F8B\u9999\u9882": -6425590288622700895 + "\u5929\u4E66_\u6CE2\u6D69\u6DFC": -2963402358214013420 + "\u5929\u4E66_\u6D1B\u795E": -1733320030537132488 + "\u5929\u4E66_\u6D74\u706B\u9E3E\u51E4": 2228259569937077514 + "\u5929\u4E66_\u6D77\u5578": 6629348830451806732 + "\u5929\u4E66_\u6EE1\u6C5F\u7EA2": 5202612096031089254 + "\u5929\u4E66_\u6F5C\u9F99": -8189366706031728473 + "\u5929\u4E66_\u706B\u5BB5\u4E4B\u6708": 6382449783520079021 + "\u5929\u4E66_\u70B9\u7EDB\u5507": 6333849832163127077 + "\u5929\u4E66_\u70DF\u5149\u6B8B\u7167": 6351132305679878540 + "\u5929\u4E66_\u711A\u60C5": -165404957842029198 + "\u5929\u4E66_\u7389\u58F6\u51B0\u5FC3": 1711485536151213921 + "\u5929\u4E66_\u73AB\u7470\u523A": 9189303652561749697 + "\u5929\u4E66_\u767E\u517D\u4E4B\u738B": 8258363698238996374 + "\u5929\u4E66_\u76D8\u53E4": 6856157982967645692 + "\u5929\u4E66_\u7834\u9635\u5B50": 4013818483232383018 + "\u5929\u4E66_\u78A7\u4E91\u5929": 2138087896395312430 + "\u5929\u4E66_\u79BB\u6068\u5929": 1037035869114653017 + "\u5929\u4E66_\u79BB\u6B4C": -1260192934646212273 + "\u5929\u4E66_\u7A7A\u5883": -1480131363567039159 + "\u5929\u4E66_\u7B11\u75AF\u766B": 8119488948974371873 + "\u5929\u4E66_\u7EA2\u83B2": -4161828214329178003 + "\u5929\u4E66_\u7F8E\u4EBA\u9999": -853517657257538414 + "\u5929\u4E66_\u7F8E\u5973\u86C7": -4642385507603330564 + "\u5929\u4E66_\u80ED\u8102\u7EA2\u6CEA": 1989956996676234131 + "\u5929\u4E66_\u822C\u82E5\u6C64": 7271317666057053827 + "\u5929\u4E66_\u8352\u6F20\u7518\u6CC9": -1523520770380649595 + "\u5929\u4E66_\u838E\u4E50\u7F8E": -6870799788964989856 + "\u5929\u4E66_\u83E9\u63D0\u660E\u955C": 7683982425515079976 + "\u5929\u4E66_\u86A9\u5C24": -8046262328365743432 + "\u5929\u4E66_\u8776\u604B\u82B1": -3635707670232084185 + "\u5929\u4E66_\u8840\u96E8\u8165\u98CE": -182773663843277626 + "\u5929\u4E66_\u8D64\u58C1": -160078242052627712 + "\u5929\u4E66_\u8D64\u70BC": 4614666189045365249 + "\u5929\u4E66_\u9189\u7EA2\u5C18": 1605374456593679566 + "\u5929\u4E66_\u94A2\u94C1\u795E\u5175": -7689207738592094478 + "\u5929\u4E66_\u957F\u751F\u6BBF": -4459537174092352983 + "\u5929\u4E66_\u9633\u5173": 588425523029209183 + "\u5929\u4E66_\u96E8\u5E08": -3967838070267119666 + "\u5929\u4E66_\u98CE\u864E\u4E91\u9F99": -69399688355556166 + "\u5929\u4EBA\u5408\u4E00\u7B26": 4860970574292172172 + "\u5929\u4EBA\u6367\u79CB\u6EAA": -2092875276570985188 + "\u5929\u4ED9\u5B50": -4956082557925666742 + "\u5929\u4ED9\u77F3": -8559691435515157161 + "\u5929\u4F7F\u5587\u53ED": 8233557740312831618 + "\u5929\u4F7F\u5FC3": -6829885547878369294 + "\u5929\u4F7F\u62A4\u58EB\u88C5\u5973\u4E0A\u8863": -5777973918574482495 + "\u5929\u4F7F\u62A4\u58EB\u88C5\u5973\u5934\u53D1": -2403900456855880957 + "\u5929\u4F7F\u62A4\u58EB\u88C5\u5973\u62A4\u8155": -586828877633770868 + "\u5929\u4F7F\u62A4\u58EB\u88C5\u5973\u88D9\u5B50": 8850360260934628071 + "\u5929\u4F7F\u62A4\u58EB\u88C5\u5973\u978B": 8312830709693064604 + "\u5929\u5203\u7B26": -7609366470200390038 + "\u5929\u52AB\u5C04\u65E5\u5F13": -7308424550779518657 + "\u5929\u52AB\u6212": -9043501836722643930 + "\u5929\u52AB\u8170\u4F69": 3615465570482538730 + "\u5929\u52AB\u9879\u94FE": 6638949072384801719 + "\u5929\u5370\u8F6E": 3069352674763711855 + "\u5929\u53F1\u5B9D\u5200": 2341131259878213408 + "\u5929\u547D\u4E4B\u4E66": 21638656847108631 + "\u5929\u547D\u51A0": 2684211474309946735 + "\u5929\u547D\u5E61\u6756": 8837095851365091632 + "\u5929\u547D\u900D\u9065\u793C\u76D2": -8769197619255205767 + "\u5929\u55BB\u517D\u56FE": 1722031844350209302 + "\u5929\u5730\u7075\u5149\u5B9D\u76D2": 8388032271669104930 + "\u5929\u5929\u60F3\u4F60": -4208461064897221001 + "\u5929\u5A01": -7247614266483129321 + "\u5929\u5B50\u884C\u73BA": 5780596966121614522 + "\u5929\u5C71\u96EA\u67AD\u7684\u5C38\u4F53": 3160289834843039022 + "\u5929\u5DE5\u7B26\u6587": -995948185375038160 + "\u5929\u5E08\u4EE4\u5251": 6311680869036121665 + "\u5929\u5FC3\u6218\u7532": 2905460507408035743 + "\u5929\u5FC3\u817F\u7532": -3687102269208849300 + "\u5929\u5FC3\u8896\u7532": -962534603029791891 + "\u5929\u5FC3\u9774": -4117375654357705089 + "\u5929\u673A\u8F6E": 108408336092711275 + "\u5929\u67A2\u4E4B\u5251": 1950348457346152226 + "\u5929\u6B4C": 9032654612864252891 + "\u5929\u6C34\u51C0\u4F53\u9732": -7179504316320702 + "\u5929\u6CEA\u4E4B\u5319": -4578631007660315515 + "\u5929\u6CFD\u5723\u5178": 4064357227181249950 + "\u5929\u7384\u9AA8": -5242990404133476590 + "\u5929\u7384\u9AA8\u6D41\u901A": -7921149753412298364 + "\u5929\u751F\u6211\u624D": 7567494662305061167 + "\u5929\u754C\u9057\u5377": -6710754495355980398 + "\u5929\u7687\u7EED\u9B42\u4E39": 5968583851823835210 + "\u5929\u7A7A\u9E3F\u6BDB": -4871322757612661818 + "\u5929\u7F57\u8282\u97AD": 1723579836049307454 + "\u5929\u7F61\u5143\u7CBE": 7696033781629655193 + "\u5929\u7F61\u5730\u715E\u5361": -7244482264845912921 + "\u5929\u7F61\u661F": -5346194490362101277 + "\u5929\u7F61\u661F\u5361": -7558481677366675841 + "\u5929\u7F61\u77F3": 556768585048293777 + "\u5929\u7F61\u957F\u9524": 5974227539242123473 + "\u5929\u8352\u5730\u8001": 7931963326341773668 + "\u5929\u84DD\u8272\u67D3\u6599": -722789853042665672 + "\u5929\u8695\u4E1D": -3368183121614012269 + "\u5929\u8863": 6403458238276349700 + "\u5929\u8863\u788E\u7247": 6662683159065060873 + "\u5929\u957F\u5730\u4E45\u4E1D": -1673235156979188900 + "\u5929\u95E8\u793C\u4E50\u6D6E\u96D5": 108261104379470639 + "\u5929\u9752\u84DD\u67D3\u6599": -8875936790595727189 + "\u5929\u9A6C\u6218\u58EB\u7684\u8840\u6DB2": 5551433576177356594 + "\u5929\u9A6C\u72EC\u89D2\u517D": 5845077427761511230 + "\u5929\u9B44\u77F3": 6338047233210142426 + "\u5929\u9B54\u6DEC\u4F53\u4E38": -4500020502538627545 + "\u5929\u9E45": 7751667525572138961 + "\u5929\u9E45\u4E4B\u7FFC": 8048656247025236416 + "\u5929\u9E45\u4E4B\u7FFC2": -6733461070676958671 + "\u5929\u9E45\u4E4B\u7FFC3": 4191931725169887639 + "\u5929\u9F99\u7389\u9AD3\u77F3": -4684135740794336563 + "\u5929\u9F99\u7CBE\u8840\u77F3": -9209716256397975246 + "\u592A\u4E59\u4E4B\u5251": -1384902774019110958 + "\u592A\u4E59\u7834\u9615\u5F29": -4282285792703026207 + "\u592A\u4E59\u7834\u9619\u5F13": 5440714782300747903 + "\u592A\u521D\u534E\u6676": -3842137224763637165 + "\u592A\u5C81": -1036354534706012196 + "\u592A\u5C81\u5361": 3712018030744655134 + "\u592A\u6781\u5C65": 7536912807241361701 + "\u592A\u6781\u62A4\u8155": 4937855515180414517 + "\u592A\u6781\u7EB9\u6837\u6247": 7904942297763248407 + "\u592A\u6781\u888D": -8023467440419028603 + "\u592A\u6781\u88E4": -5928233395762687553 + "\u592A\u6E05\u5361": 1064129868049133210 + "\u592A\u865A\u4E4B\u5251": 234787330859419335 + "\u592A\u9633\u5143\u6C14": 6940710201740863524 + "\u592A\u9634\u4E4B\u5251": -8860309467295852610 + "\u592A\u9634\u5143\u6C14": -953260365097483036 + "\u592B\u8BF8\u738B": 5358611765146032027 + "\u592B\u8BF8\u89D2": 7505760661526897121 + "\u5931\u5FC3\u5BC6\u5377": -3826509517350101720 + "\u5931\u6548\u7684\u9B54\u65B9\u9F7F\u8F6E": -4982561941142127147 + "\u5934\u76D41": 8592018416768836297 + "\u5934\u76D42": -5831466745535696062 + "\u5934\u76D43": 8154770690031863003 + "\u5934\u9886\u4F69\u5200": -7649377104191696047 + "\u5938\u7236\u8FFD\u65E5\u4E38": 113303123334561988 + "\u593A\u5929\u4E4B\u7FFC": 5747401681225731459 + "\u593A\u7075\u8FFD\u9B42\u76BF": 2733897622577906036 + "\u593A\u9B42\u5203": -136943543249748227 + "\u593A\u9B44\u5203": -6081925896337647076 + "\u5947\u5999\u679C": 2272055253188729534 + "\u5947\u5CF0\u4E07\u6728\u56FE": 595904580996208509 + "\u5947\u602A\u7684\u94A5\u5319": -1468503913500720351 + "\u5947\u7279\u7684\u6811\u679D": -445364351997879984 + "\u5947\u7687\u70B9\u91D1\u5C3A": -5836473791775144376 + "\u5947\u95E8\u6218\u7532": 3393901367028980055 + "\u5947\u95E8\u76D4": -5129762228534471801 + "\u5947\u95E8\u817F\u7532": -2926246080393877650 + "\u5947\u95E8\u8896\u7532": -451703487940809001 + "\u5947\u95E8\u9774": 1013740591287557546 + "\u5949\u7075\u706B\u724C": 9029745779664767478 + "\u594B\u626C\u6212": -5380123115377210149 + "\u5951\u7EA6": 7463604355546293848 + "\u5954\u6D41": -777435462057389634 + "\u5954\u96F7\u9557": 7081168527549810454 + "\u5973": 1582522082810090307 + "\u5973\u4EC6\u5973\u88C5\u4E0A\u8863": 6965012505151909613 + "\u5973\u4EC6\u5973\u88C5\u88D9\u5B50": 571334709926990581 + "\u5973\u4EC6\u5973\u88C5\u978B\u5B50": -4193447643065205115 + "\u5973\u53CC\u8272\u5A5A\u7EB1\u624B\u5957": 7558559766864954375 + "\u5973\u53CC\u8272\u5A5A\u7EB1\u88D9": -3814707566248180705 + "\u5973\u53CC\u8272\u5A5A\u7EB1\u978B": 3939369322605383764 + "\u5973\u5510\u88C5": -6749995800089612157 + "\u5973\u5F0F\u6076\u9B54\u5957\u88C5\u4E0A\u8863": -8135110165123375799 + "\u5973\u5F0F\u6076\u9B54\u5957\u88C5\u4E0B\u8863": 5470791370420172795 + "\u5973\u5F0F\u6076\u9B54\u5957\u88C5\u5934\u53D1": 2603078273871070002 + "\u5973\u5F0F\u6076\u9B54\u5957\u88C5\u978B\u5B50": 2725043564286889770 + "\u5973\u5FCD\u8005\u5934\u53D1": -8939956916392991358 + "\u5973\u5FCD\u8005\u624B\u5957": 5146681769265647173 + "\u5973\u5FCD\u8005\u8863\u670D": 5353354955242474338 + "\u5973\u5FCD\u8005\u88E4\u5B50": 5570451933453012366 + "\u5973\u5FCD\u8005\u978B\u5B50": 8689639451750060901 + "\u5973\u65F6\u5C1A\u77ED\u88D9\u4E0A\u8863": 6778146415190142421 + "\u5973\u65F6\u5C1A\u77ED\u88D9\u5E3D\u5B50": -4752473026161594399 + "\u5973\u65F6\u5C1A\u77ED\u88D9\u88E4\u5B50": -8633154557797355897 + "\u5973\u65F6\u5C1A\u77ED\u88D9\u978B\u5B50": -2923506902002714864 + "\u5973\u6697\u8272\u857E\u4E1D-\u62A4\u8155": -1125470575916894215 + "\u5973\u6697\u8272\u857E\u4E1D-\u8863\u670D": 7558357561721800179 + "\u5973\u6697\u8272\u857E\u4E1D-\u978B": -1019754379196365018 + "\u5973\u673A\u8F66\u88C5\u4E0A\u8863": 8413198050805309680 + "\u5973\u673A\u8F66\u88C5\u5934\u53D1": -1620411773789209890 + "\u5973\u673A\u8F66\u88C5\u88E4\u5B50": 8946475968803795146 + "\u5973\u673A\u8F66\u88C5\u978B\u5B50": -2253139444305859276 + "\u5973\u6C34\u6676\u82AD\u857E-\u8863\u670D32": -7181551172591859750 + "\u5973\u6C34\u6676\u82AD\u857E-\u978B32": 7465790370878862501 + "\u5973\u6D77\u7802-\u77ED\u88D9": 60492048963973940 + "\u5973\u6D77\u7802-\u8863\u670D": -3737152897171717705 + "\u5973\u6D77\u7802-\u978B": -2431223975954979252 + "\u5973\u7403\u978B": -6596490419195779964 + "\u5973\u767D\u7403\u620E\u88C5\u4E0A\u8863": 8046692160898438200 + "\u5973\u767D\u7403\u620E\u88C5\u5934\u53D1": 747132873427610129 + "\u5973\u767D\u7403\u620E\u88C5\u978B\u5B50": -6686508732328388095 + "\u5973\u7687\u51A0": 7063908106432870562 + "\u5973\u795E\u793C\u8D5E": 3509643062350955747 + "\u5973\u8C79\u7EB9\u540A\u5E26\u88C5-\u5934\u53D132": -4750893419214027576 + "\u5973\u8C79\u7EB9\u540A\u5E26\u88C5-\u8863\u670D32": 4718912691986567114 + "\u5973\u8C79\u7EB9\u540A\u5E26\u88C5-\u88E4\u5B5032": -6330938650239596413 + "\u5973\u8C79\u7EB9\u540A\u5E26\u88C5-\u978B32": 1464573140363870453 + "\u5973\u8C79\u7EB9\u6BD4\u57FA\u5C3C\u4E0A\u8863": 4401198079822170137 + "\u5973\u8C79\u7EB9\u6BD4\u57FA\u5C3C\u4E0B\u8863": -7626116554058860606 + "\u5973\u8C79\u7EB9\u6BD4\u57FA\u5C3C\u5934\u53D1": -8895643615992468916 + "\u5973\u8C79\u7EB9\u6BD4\u57FA\u5C3C\u978B\u5B50": -7627914705628911584 + "\u5973\u95EA\u8000\u793C\u670D\u4E0A\u8863": -1766730239420957554 + "\u5973\u95EA\u8000\u793C\u670D\u5934\u53D1": 5560302641045867726 + "\u5973\u95EA\u8000\u793C\u670D\u62A4\u8155": -7189616254255476918 + "\u5973\u95EA\u8000\u793C\u670D\u978B\u5B50": 8585580945536415995 + "\u597D\u4EBA\u5361": -910569964840378740 + "\u5982\u610F\u4F69": -4303020483198305503 + "\u5982\u610F\u5F13": 2896371300734204734 + "\u5982\u610F\u767D\u5899": -5241332023362247020 + "\u5982\u610F\u767D\u6A90\u67F1": -535683457782162521 + "\u5982\u610F\u8170\u9970": -5062104332500791517 + "\u5982\u610F\u9E92\u9E9F": -976577781647009245 + "\u5982\u80F6\u4F3C\u6F06": 9111809405991666076 + "\u5982\u864E\u6DFB\u7FFC": 7057777363475176388 + "\u5982\u98CE\u4E4B\u4FE1": 1669545173712088533 + "\u5982\u98CE\u5251": -1996479409947786018 + "\u5983\u7EA2\u8272\u67D3\u6599": 5695760677593459602 + "\u5996": 320546258358670919 + "\u5996\u517D\u5408\u4F53\u795E\u517D": 5996297645601863110 + "\u5996\u517D\u5927\u5E08": 240141157011718579 + "\u5996\u517D\u5996\u864E": 4219107240387943836 + "\u5996\u517D\u6280\u80FD\u4E66": -3095626719441150593 + "\u5996\u517D\u65F6\u88C5\u4E0A\u8863": 8195887261983841110 + "\u5996\u517D\u65F6\u88C5\u62A4\u8155": 2903496211392336420 + "\u5996\u517D\u65F6\u88C5\u88E4\u5B50": 9117913639077494333 + "\u5996\u517D\u65F6\u88C5\u978B\u5B50": -4417938277139369366 + "\u5996\u517D\u661F\u76D8": 6083583873302653395 + "\u5996\u517D\u708E\u9E20\u5750\u9A91": -43748383179847341 + "\u5996\u517D\u77F3\u6591\u9C7C": 8871714298802563628 + "\u5996\u517D\u98DE\u602A": 1296969850413150213 + "\u5996\u517D\u98DE\u873B\u9F99": -2928452060647176109 + "\u5996\u51A5\u866B\u5361\u72471": 8954930530838780871 + "\u5996\u51A5\u866B\u5361\u72472": 5414461384534888769 + "\u5996\u51A5\u866B\u5361\u72473": -3814073921748567386 + "\u5996\u51A5\u866B\u5361\u72474": 2623785947318907541 + "\u5996\u51A5\u866B\u5361\u72475": 6594511402259804823 + "\u5996\u51A5\u866B\u5361\u72476": 5826552549203321288 + "\u5996\u51A5\u866B\u5361\u72477": 2388698450908669839 + "\u5996\u51A5\u866B\u5361\u72478": -2172777911619707997 + "\u5996\u62A4\u62A4\u8EAB\u7B26": 2712288884009524601 + "\u5996\u62A4\u9B54\u529B\u7B26": -8125357986003297081 + "\u5996\u65CF13b\u5996\u517D\u804C\u4E1A\u88C5\u4E0A\u8863": 4568216960581998047 + "\u5996\u65CF13b\u5996\u517D\u804C\u4E1A\u88C5\u62A4\u624B": 5558409732248448313 + "\u5996\u65CF13b\u5996\u517D\u804C\u4E1A\u88C5\u88E4\u5B50": 402535767178642210 + "\u5996\u65CF13b\u5996\u517D\u804C\u4E1A\u88C5\u978B\u5B50": -9106233879862518817 + "\u5996\u65CF13b\u5996\u7CBE\u804C\u4E1A\u88C5\u4E0A\u8863": 1580619528723200781 + "\u5996\u65CF13b\u5996\u7CBE\u804C\u4E1A\u88C5\u62A4\u624B": 7050680939914729454 + "\u5996\u65CF13b\u5996\u7CBE\u804C\u4E1A\u88C5\u88E4\u5B50": -8220837927361741145 + "\u5996\u65CF13b\u5996\u7CBE\u804C\u4E1A\u88C5\u978B\u5B50": -2808937942034504338 + "\u5996\u65CF\u591C\u67AD\u63A2\u9669\u5BB6": -3244052665573775731 + "\u5996\u65CF\u597313a\u5996\u7CBE\u804C\u4E1A\u88C5\u4E0A\u8863": 7728693961496548947 + "\u5996\u65CF\u597313a\u5996\u7CBE\u804C\u4E1A\u88C5\u62A4\u8155": 9155141394154655316 + "\u5996\u65CF\u597313a\u5996\u7CBE\u804C\u4E1A\u88C5\u88E4\u5B50": -3818172256517544313 + "\u5996\u65CF\u597313a\u5996\u7CBE\u804C\u4E1A\u88C5\u978B\u5B50": -9114115007996704924 + "\u5996\u65CF\u5973\u5996\u7CBE\u804C\u4E1A\u88C5\u4E0A\u8863": -839008713817268508 + "\u5996\u65CF\u5973\u5996\u7CBE\u804C\u4E1A\u88C5\u62A4\u8155": -245860990585132818 + "\u5996\u65CF\u5973\u5996\u7CBE\u804C\u4E1A\u88C5\u88E4\u5B50": -2254975011314843241 + "\u5996\u65CF\u5973\u5996\u7CBE\u804C\u4E1A\u88C5\u978B\u5B50": 4665490695300712894 + "\u5996\u65CF\u753713a\u5996\u517D\u804C\u4E1A\u88C5\u4E0A\u8863": 565133456365091420 + "\u5996\u65CF\u753713a\u5996\u517D\u804C\u4E1A\u88C5\u62A4\u8155": 6805109446965644468 + "\u5996\u65CF\u753713a\u5996\u517D\u804C\u4E1A\u88C5\u88E4\u5B50": 5707497076883876938 + "\u5996\u65CF\u753713a\u5996\u517D\u804C\u4E1A\u88C5\u978B\u5B50": -8991525037907055971 + "\u5996\u65CF\u7537\u5996\u517D\u804C\u4E1A\u88C5\u4E0A\u8863": -3182140033563395899 + "\u5996\u65CF\u7537\u5996\u517D\u804C\u4E1A\u88C5\u62A4\u8155": -3629953966211649488 + "\u5996\u65CF\u7537\u5996\u517D\u804C\u4E1A\u88C5\u88E4\u5B50": -3308871137225939384 + "\u5996\u65CF\u7537\u5996\u517D\u804C\u4E1A\u88C5\u978B\u5B50": 1692030719164095308 + "\u5996\u65CF\u795E\u9E64": -8677424533475970759 + "\u5996\u65CF\u8377\u82B1\u98DE\u884C\u5668": -5918217311430067060 + "\u5996\u65CF\u873B\u8713\u98DE\u884C\u5668": 9009407161424697685 + "\u5996\u65CF\u9EC4\u8702": 1235817907192460662 + "\u5996\u725B\u89D2": 4322995312085387260 + "\u5996\u7CBE\u5927\u5E08": -1716944312405617680 + "\u5996\u7CBE\u6280\u80FD\u4E66": 782097234315283950 + "\u5996\u7CBE\u661F\u76D8": 8641667114724174378 + "\u5999\u8BA1\u9526\u56CA": -7005387098000666988 + "\u59A9\u5A9A\u5A18\u4E0A\u8863": -5308025270880794019 + "\u59A9\u5A9A\u5A18\u5934\u53D1": -2520346106588159900 + "\u59A9\u5A9A\u5A18\u978B\u5B50": 9072957153707922268 + "\u59DC\u5C0F\u864E-\u5305\u88F9": 976920894516159488 + "\u59DC\u5C0F\u864E_\u5305\u88F9\u8868\u60C5": -8586681608901333423 + "\u59DC\u5C0F\u864E\u5BA0\u7269": 8780404257049909685 + "\u5A01\u51DB\u6597\u7BF7": 7749719031926277271 + "\u5A36\u6211\u5427": 2319060065813415321 + "\u5A46\u7F57\u5B50": 7071681450719089889 + "\u5A5A\u5E86\u559C\u5E16": 332575596736951871 + "\u5A5A\u5E86\u86CB\u7CD5": 4833357000974431534 + "\u5A5A\u5E86\u9999\u69DF": 1022950156064363421 + "\u5A5A\u6212\u5973": -2680570875535066963 + "\u5A5A\u6212\u7537": -1538400999272707503 + "\u5A5A\u793C\u5C0F\u7CBE\u7075": -4102753651087519193 + "\u5A5A\u793C\u670D\u88C5\u539F\u8272\u5973\u4E0A\u8863": 7406144507938925470 + "\u5A5A\u793C\u670D\u88C5\u539F\u8272\u5973\u5934\u9970": -6965101200876019741 + "\u5A5A\u793C\u670D\u88C5\u539F\u8272\u5973\u978B\u5B50": -106554092808999937 + "\u5A5A\u793C\u670D\u88C5\u539F\u8272\u7537\u4E0A\u8863": -3414519238339198940 + "\u5A5A\u793C\u670D\u88C5\u539F\u8272\u7537\u978B\u5B50": -6726571697482092787 + "\u5A5A\u793C\u670D\u88C5\u53D8\u8272\u5973\u4E0A\u8863": -1444305673572765868 + "\u5A5A\u793C\u670D\u88C5\u53D8\u8272\u5973\u978B\u5B50": 5217861214609085036 + "\u5A5A\u793C\u670D\u88C5\u53D8\u8272\u7537\u4E0A\u8863": 3704790465726309750 + "\u5A5A\u793C\u670D\u88C5\u53D8\u8272\u7537\u5934\u9970": 3727538370323237929 + "\u5A5A\u793C\u670D\u88C5\u53D8\u8272\u7537\u978B\u5B50": 1474034545247260283 + "\u5A5A\u793C\u7537\u5934\u53D1": -5739156852774782551 + "\u5A5A\u793C\u7537\u8863\u670D": 601274666387776189 + "\u5A5A\u793C\u7537\u88E4\u5B50": 7116511763594507773 + "\u5A5A\u793C\u7537\u978B\u5B50": -6492590493616540222 + "\u5A5A\u793C\u8BF7\u67EC": 6037411387256660562 + "\u5A5A\u7EB1": -7688161855457732164 + "\u5A5A\u7EB1\u624B\u5957": -5296554883977528415 + "\u5A5A\u7EB1\u978B\u5B50": 6308876297650797515 + "\u5AC1\u7ED9\u6211\u5427": -2060215745005166024 + "\u5AE3\u7EA2\u8272\u67D3\u8272\u5242": -998527026764199562 + "\u5B50": -7832201409400995314 + "\u5B50\u5348\u53C2": -2923692519537755272 + "\u5B50\u5F39\u888B": -2006462447373511768 + "\u5B50\u6BCD\u5251": 1122152794292979922 + "\u5B50\u6BCD\u79BB\u9B42\u9556": 4848569430881566157 + "\u5B54\u96C0\u77F3\u94FE\u5B50": -5907724159018167917 + "\u5B57\u724C": -1710810831685808226 + "\u5B5F\u5A46\u6C64": -8844033544294901746 + "\u5B64\u7A79\u5251": 7786194242542407225 + "\u5B81\u7D20\u77F3\u67F1": 2189929391899254917 + "\u5B81\u7D20\u94C1\u5899": 3403002800574270448 + "\u5B81\u7D20\u94C1\u95E8": -7259165099952172920 + "\u5B81\u8299\u77F3\u67F1": 6240924274561883866 + "\u5B81\u8299\u94C1\u5899": -365804190757003483 + "\u5B81\u8299\u94C1\u95E8": 4584492282977971342 + "\u5B88\u62A4\u6218\u7532": 1603410110833130972 + "\u5B88\u62A4\u6597\u7BF7": -1681721143418058411 + "\u5B88\u62A4\u817F\u7532": 903642141548635076 + "\u5B88\u62A4\u8896\u7532": -7243094095031491943 + "\u5B88\u62A4\u9774": 9048317992161336144 + "\u5B89\u6D4E\u548C\u6625\u6865": -975666851408528978 + "\u5B8C": 5731995298628169103 + "\u5B8C\u6574\u7684\u624B\u673A\u5546\u5238": -7089031603445523809 + "\u5B8C\u6574\u7684\u76AE\u56CA": 4310497318908280077 + "\u5B8C\u6574\u864E\u7B26": 8834420207121697943 + "\u5B8C\u74A7": -6570250816991305366 + "\u5B8C\u74A7\u5305": -1156290135096269726 + "\u5B8C\u74A7\u7684\u788E\u7247": 1799516945591328509 + "\u5B8C\u7F8E_\u4E94\u94E2\u94B1": 3950298659322554046 + "\u5B8C\u7F8E\u4E0A\u4E0A\u7B7E": -7432763661621329171 + "\u5B8C\u7F8E\u4E0A\u4E0A\u7B7E\u53D8\u8272": 6959746452767701356 + "\u5B8C\u7F8E\u4E0A\u4E0A\u7B7E\u5F69\u7968\u7528\u5C0F": -3905224408407214132 + "\u5B8C\u7F8E\u4E0A\u7B7E": -7807054516145388335 + "\u5B8C\u7F8E\u4E16\u754C": 4381773896656207378 + "\u5B8C\u7F8E\u4F0F\u6CE2\u5E01": 8944097477333260741 + "\u5B8C\u7F8E\u519B\u5907\u7BB1": -6519850956990687462 + "\u5B8C\u7F8E\u519B\u7AE01": -7379283227497766088 + "\u5B8C\u7F8E\u519B\u7AE02": 3350062004767670165 + "\u5B8C\u7F8E\u519B\u7AE03": 9205616325489261783 + "\u5B8C\u7F8E\u53F7\u89D2": 6228762306775605544 + "\u5B8C\u7F8E\u540A\u5E26\u88C5\u5973\u624B\u5957": 527807080444723518 + "\u5B8C\u7F8E\u540A\u5E26\u88C5\u5973\u88C5": -2015379394817967920 + "\u5B8C\u7F8E\u540A\u5E26\u88C5\u5973\u88E4": -640044826041726346 + "\u5B8C\u7F8E\u540A\u5E26\u88C5\u5973\u978B": 2032260726671494029 + "\u5B8C\u7F8E\u548C\u670D\u5973\u5C0F": 2565315023403593722 + "\u5B8C\u7F8E\u548C\u670D\u5973\u978B": 6802642618358123262 + "\u5B8C\u7F8E\u548C\u670D\u7537\u5C0F": -8618327409208609540 + "\u5B8C\u7F8E\u548C\u670D\u7537\u978B": 8654556245305800347 + "\u5B8C\u7F8E\u5510\u88C5\u5973\u4E0A\u8863": 2625847055051922397 + "\u5B8C\u7F8E\u5510\u88C5\u5973\u88D9": -9065317630492572288 + "\u5B8C\u7F8E\u5510\u88C5\u5973\u978B": 1166190810655866212 + "\u5B8C\u7F8E\u5510\u88C5\u7537\u4E0A\u8863": -8346475576774205289 + "\u5B8C\u7F8E\u5510\u88C5\u7537\u88E4": -791618245196172977 + "\u5B8C\u7F8E\u5510\u88C5\u7537\u978B": -6826375581591854065 + "\u5B8C\u7F8E\u590F\u88C5\u5973\u4E0A\u8863": -3850313683036945607 + "\u5B8C\u7F8E\u590F\u88C5\u5973\u5934\u53D1": 8338855842147569356 + "\u5B8C\u7F8E\u590F\u88C5\u5973\u978B\u5B50": 3748108521459949158 + "\u5B8C\u7F8E\u5927\u793C\u53051": -5781347942299142872 + "\u5B8C\u7F8E\u5927\u793C\u53052": -1213934799993112857 + "\u5B8C\u7F8E\u5927\u793C\u53053": 3856060239315529860 + "\u5B8C\u7F8E\u5927\u793C\u53054": -2422233847399466315 + "\u5B8C\u7F8E\u5927\u793C\u53055": -5922150388084798332 + "\u5B8C\u7F8E\u5927\u793C\u53056": -7543038177813720143 + "\u5B8C\u7F8E\u5927\u793C\u53057": 104256068659337161 + "\u5B8C\u7F8E\u5927\u793C\u53058": -8245009498476004138 + "\u5B8C\u7F8E\u62C9\u62C9\u961F\u5973": 5476068377104611117 + "\u5B8C\u7F8E\u62C9\u62C9\u961F\u5973\u978B": -7233254815399010821 + "\u5B8C\u7F8E\u6C34\u997A": -4874708355093991438 + "\u5B8C\u7F8E\u6D41\u94F6\u5E01": -4674924262542024873 + "\u5B8C\u7F8E\u72FC\u517D": 2051389965591791066 + "\u5B8C\u7F8E\u76AE\u88C5\u5973\u4E0A": -1186846111085666906 + "\u5B8C\u7F8E\u76AE\u88C5\u5973\u624B\u5957": -4280819870527885811 + "\u5B8C\u7F8E\u76AE\u88C5\u5973\u88D9": 3926185553394717301 + "\u5B8C\u7F8E\u76AE\u88C5\u5973\u978B": 3768387382570020191 + "\u5B8C\u7F8E\u76AE\u88C5\u7537\u4E0A": -8095798839078396341 + "\u5B8C\u7F8E\u76AE\u88C5\u7537\u88E4": -9217881621314294636 + "\u5B8C\u7F8E\u76AE\u88C5\u7537\u978B": 3019807552208360337 + "\u5B8C\u7F8E\u77F3": -5176421521627842592 + "\u5B8C\u7F8E\u795E\u6C14\u4E38": -7401368712127913194 + "\u5B8C\u7F8E\u7CBD\u5B50": 1446335677672240840 + "\u5B8C\u7F8E\u7CBD\u5B502": -9032942377085209527 + "\u5B8C\u7F8E\u7CBD\u5B503": -8293292532922601552 + "\u5B8C\u7F8E\u91D1\u521B\u836F": -1688099901768680943 + "\u5B8C\u7F8E\u94F6\u7968": 9026328288085742248 + "\u5B8C\u7F8E\u9ED1\u793C\u670D\u5973": -6387556738777414601 + "\u5B8C\u7F8E\u9ED1\u793C\u670D\u5973\u624B\u5957": 292054733773217175 + "\u5B8C\u7F8E\u9ED1\u793C\u670D\u5973\u624B\u978B": 5430521873931538638 + "\u5B97\u5E08\u4E4B\u8BED": -2695612019876931473 + "\u5B9A\u5149\u62F3\u5957": -457273669461694676 + "\u5B9A\u6D77\u957F\u9524": 7336266033441170866 + "\u5B9A\u7075\u7B26": -4607706243738894362 + "\u5B9A\u795E\u7B26": -8185884361981870681 + "\u5B9A\u97F3\u957F\u9524": -1747401167399280191 + "\u5B9A\u9B42\u4E38": -7369845698813493427 + "\u5B9D\u56FE\u6B8B\u9875": 6807094829186063334 + "\u5B9D\u56FE\u788E\u7247": -6235010073483006157 + "\u5B9D\u7269\u5377\u8F74": -1495061655128402008 + "\u5B9D\u84DD\u8D21\u591A\u62C9": -3394853885027819597 + "\u5B9E\u60E0\u793C\u5305": 225509214891608083 + "\u5BA0\u7269\u7B3C": 5175052429546635148 + "\u5BA0\u7269\u86CB": 1973480441281299220 + "\u5BA0\u7269\u9ED8\u8BA4": -8810736806557450340 + "\u5BA0\u7269\u9F9F": -9069185473173207278 + "\u5BA3\u4F20\u5973\u88C5\u4E0A\u8863": -796048156300464613 + "\u5BA3\u4F20\u5973\u88C5\u5934\u53D1": -3043161651616219967 + "\u5BA3\u4F20\u5973\u88C5\u62A4\u8155": -4261201064502892201 + "\u5BA3\u4F20\u5973\u88C5\u88E4\u5B50": 8351002872775534988 + "\u5BA3\u4F20\u5973\u88C5\u978B\u5B50": -2825792128762608684 + "\u5BA3\u4F20\u65F6\u88C5\u7537\u4E0A\u8863": -8280344115277881529 + "\u5BA3\u4F20\u65F6\u88C5\u7537\u5934\u53D1": -937403913853160552 + "\u5BA3\u4F20\u65F6\u88C5\u7537\u624B\u5957": 3364398488263585782 + "\u5BA3\u4F20\u65F6\u88C5\u7537\u88E4\u5B50": -7946700859977870568 + "\u5BA3\u4F20\u65F6\u88C5\u7537\u978B\u5B50": -4596768203279842125 + "\u5BA3\u82B1\u65A7": -6640257269391140389 + "\u5BAB\u5EF7\u5E03\u827A\u7ACB\u706F": 1408179910017657328 + "\u5BB6\u4F20\u5B9D\u4F69": -4036401839476917838 + "\u5BB6\u548C\u4E07\u4E8B\u5174": -304870379543818602 + "\u5BB6\u56ED\u4E66\u6CD5\u88C5\u9970\u6A2A": 7196865388471844126 + "\u5BB6\u56ED\u4EBA\u53C2\u679C": -192030698515993657 + "\u5BB6\u56ED\u4EBA\u53C2\u679C\u79CD\u5B50": 1216704571248784519 + "\u5BB6\u56ED\u5154\u5B50": -2535586859206508468 + "\u5BB6\u56ED\u5154\u5B50\u5E7C\u5D3D": 2406924254177016572 + "\u5BB6\u56ED\u5357\u74DC": -3709786113684569786 + "\u5BB6\u56ED\u5357\u74DC\u79CD\u5B50": 6735156012901667522 + "\u5BB6\u56ED\u56FD\u753B\u6A2A": -1621360830441010825 + "\u5BB6\u56ED\u56FD\u753B\u7AD6": 1571256278037363477 + "\u5BB6\u56ED\u5976\u725B": -2809952877368946124 + "\u5BB6\u56ED\u5976\u725B\u5E7C\u5D3D": -8122078258642359854 + "\u5BB6\u56ED\u5BF9\u8054": -489114785865117481 + "\u5BB6\u56ED\u5C0F\u9EA6": 5662679494487866063 + "\u5BB6\u56ED\u5C0F\u9EA6\u79CD\u5B50": 2980093885227794057 + "\u5BB6\u56ED\u5C71\u4F53": -8644396441595284414 + "\u5BB6\u56ED\u5C71\u7F8A": 8071714120416876321 + "\u5BB6\u56ED\u5C71\u7F8A\u5E7C\u5D3D": 3720762810488199793 + "\u5BB6\u56ED\u5C71\u9E21": -226429450941490016 + "\u5BB6\u56ED\u5C71\u9E21\u5E7C\u5D3D": -3585342599225371460 + "\u5BB6\u56ED\u6247\u5F62\u5899\u9970": 4623002287445722252 + "\u5BB6\u56ED\u6843\u91D1\u5A18": 1724178105400591474 + "\u5BB6\u56ED\u6843\u91D1\u5A18\u79CD\u5B50": 3211585457327553676 + "\u5BB6\u56ED\u732A": -3136627378052683418 + "\u5BB6\u56ED\u732A\u5E7C\u5D3D": -7913521933155570276 + "\u5BB6\u56ED\u805A\u5B9D\u76C6": -4628431989868696952 + "\u5BB6\u56ED\u8377\u82B1": 1763270826374730312 + "\u5BB6\u56ED\u83B2\u96FE": 988924472311553186 + "\u5BB6\u56ED\u83B2\u96FE\u79CD\u5B50": 9151943365514604173 + "\u5BB6\u56ED\u8FA3\u6912": -5052623385659886443 + "\u5BB6\u56ED\u8FA3\u6912\u79CD\u5B50": -5800258871395714899 + "\u5BB6\u56ED\u914D\u65B9\u5377\u8F74\u4E2D\u7EA7": -8651428985906735336 + "\u5BB6\u56ED\u914D\u65B9\u5377\u8F74\u521D\u7EA7": 1220256919798270760 + "\u5BB6\u56ED\u914D\u65B9\u5377\u8F74\u9AD8\u7EA7": -8040289911791585266 + "\u5BB6\u56ED\u914D\u65B9\u901A\u5173\u6587\u7252\u4E2D\u7EA7": 3342606436661060646 + "\u5BB6\u56ED\u914D\u65B9\u901A\u5173\u6587\u7252\u521D\u7EA7": 5306671206431817519 + "\u5BB6\u56ED\u914D\u65B9\u901A\u5173\u6587\u7252\u9AD8\u7EA7": 6158058872202967580 + "\u5BB6\u56ED\u9A6C": 2232862728128171836 + "\u5BB6\u56ED\u9A6C\u5E7C\u5D3D": -2499837245997978428 + "\u5BB6\u56ED\u9E7F": 515997828540022018 + "\u5BB6\u56ED\u9E7F\u5E7C\u5D3D": -4246601529752209659 + "\u5BB6\u56ED\u9EC4\u91D1\u679C": 5615139290097201788 + "\u5BB6\u56ED\u9EC4\u91D1\u679C\u79CD\u5B50": 6024406057168526699 + "\u5BBD\u5634\u5947\u8DB3": 3923283054353718253 + "\u5BBE\u5BA2\u80F8\u82B1": 8526595477864988325 + "\u5BC2\u7167\u7280\u53D8": -5775567999162130514 + "\u5BC4\u5356\u5E97\u94FA\u5F00\u5E97\u51ED\u8BC1\u5468": 8220372815994452084 + "\u5BC4\u5356\u5E97\u94FA\u5F00\u5E97\u51ED\u8BC1\u6708": 4234056302940510665 + "\u5BC4\u5C45\u87F9\u58F3": 8407441380437963776 + "\u5BC4\u9B42\u82B1\u854A": -8879745597993749723 + "\u5BC5": -3256720434093990199 + "\u5BD2": 3305600830222156278 + "\u5BD2\u4E4B\u5370": -7311294741877851887 + "\u5BD2\u4E4B\u610F\u53F3\u534A": -4423041914905133044 + "\u5BD2\u4E4B\u610F\u5DE6\u534A": -7267555753226853372 + "\u5BD2\u51B0\u4E4B\u5FC3": -1383128686934947386 + "\u5BD2\u51B0\u516C\u4E3B": 5162190744570807023 + "\u5BD2\u6B66\u9F99": 8204536931583993546 + "\u5BD2\u6C34\u4E4B\u529B": -6875151479971346384 + "\u5BD2\u6C34\u4E4B\u610F": 4839280916021274777 + "\u5BD2\u70DF\u7FE0": 3081682615559324231 + "\u5BD2\u7EEF\u6A31\u906E\u69BB": -753951644874841925 + "\u5BF0\u4E16\u53E4\u672C": 7461891194120279579 + "\u5BF0\u5B87\u4EE4\u724C": 7544381963180891261 + "\u5BFB\u5B9D\u7F51\u6446\u644A": -4072557337021079667 + "\u5BFF": 8528605692064201909 + "\u5C01\u5370\u4E4B\u5200": -4651023150682112935 + "\u5C01\u5370\u4E4B\u5F13": 3366080668944584307 + "\u5C01\u5370\u4E4B\u7389\u74F6": -1628755422281643781 + "\u5C01\u5370\u4E4B\u8F6E": 6269607853523882583 + "\u5C01\u5370\u6B8B\u7247": -2651931434621534746 + "\u5C01\u5370\u7684\u795E\u5251": 5626568564114090426 + "\u5C01\u5589\u5203": 3003432769827940416 + "\u5C01\u795E\u4E66\u5377": -4528830875112945757 + "\u5C01\u795E\u6A59\u8272\u5361": -1102720557625578627 + "\u5C01\u795E\u7D2B\u8272\u5361": -4245447427401111057 + "\u5C01\u795E\u7EFF\u8272\u5361": -2068262409646499119 + "\u5C01\u795E\u84DD\u8272\u5361": 3538826770804666509 + "\u5C01\u795E\u8D64\u8272\u5361": 5892356611392990176 + "\u5C01\u795E\u9752\u8272\u5361": 5225125979857533642 + "\u5C01\u795E\u9EC4\u8272\u5361": 709548488424490397 + "\u5C04\u5929\u77E2": 5688451168152576195 + "\u5C04\u624B\u96D5\u50CF\u6838\u5FC3": -147362133335242788 + "\u5C04\u65E5\u5F29": 1188402322930414542 + "\u5C06\u519B\u5B9D\u5251": 7018642951139395529 + "\u5C0F\u4E5D\u9633\u4E39": -6819312800244830899 + "\u5C0F\u5029\u7684\u62A4\u7B26": 7654210525260819775 + "\u5C0F\u53F6\u8702": 1260158470535001342 + "\u5C0F\u578B\u51CC\u4E91\u7269\u8D44\u7BB1": 7798756170092646204 + "\u5C0F\u578B\u51CC\u4E91\u7269\u8D44\u888B": 5671350151053776810 + "\u5C0F\u6050\u9F99\u9ED1": -3978123565527777436 + "\u5C0F\u6076\u9B54\u5B9D\u5B9D": 5869530315202488245 + "\u5C0F\u661F\u661F": -5766796019343044718 + "\u5C0F\u6D63\u718A2013": 4761260353619251994 + "\u5C0F\u6E05\u65B0\u6C99\u6EE9\u7537\u4E0A\u8863": 7827874730130016785 + "\u5C0F\u6E05\u65B0\u6C99\u6EE9\u7537\u4E0B\u8863": 1543010440082299725 + "\u5C0F\u6E05\u65B0\u6C99\u6EE9\u7537\u5934\u53D1": -3597492875720601684 + "\u5C0F\u6E05\u65B0\u6C99\u6EE9\u7537\u978B\u5B50": -6084686422423338494 + "\u5C0F\u6E05\u65B0\u8FDE\u4F53\u88C5\u5973\u4E0A\u8863": -290886925050137511 + "\u5C0F\u6E05\u65B0\u8FDE\u4F53\u88C5\u5973\u5934\u53D1": 1494631325330818101 + "\u5C0F\u6E05\u65B0\u8FDE\u4F53\u88C5\u5973\u62A4\u8155": -7579518350365505637 + "\u5C0F\u6E05\u65B0\u8FDE\u4F53\u88C5\u5973\u978B\u5B50": 298611123319963096 + "\u5C0F\u718A\u732B": -286866722369472829 + "\u5C0F\u7231\u795E": 3975128795418736473 + "\u5C0F\u732A\u98CE\u683C\u7537\u88C5\u4E0A\u8863": -1125222172026917312 + "\u5C0F\u732A\u98CE\u683C\u7537\u88C5\u4E0B\u8863": 135173654237275851 + "\u5C0F\u732A\u98CE\u683C\u7537\u88C5\u5934\u53D1": 6346813936335061140 + "\u5C0F\u732A\u98CE\u683C\u7537\u88C5\u978B\u5B50": -4036074296314074565 + "\u5C0F\u732B\u88C5\u4E0A\u8863": -107741453920218260 + "\u5C0F\u732B\u88C5\u624B\u5957": 5604325103784381786 + "\u5C0F\u732B\u88C5\u88E4\u5B50": -4743324816883672825 + "\u5C0F\u732B\u88C5\u978B\u5B50": 7711529684245809421 + "\u5C0F\u795E\u6C14\u4E38": 8806082583704647620 + "\u5C0F\u795E\u9F99": -6601320214655915368 + "\u5C0F\u7AE0\u9C7C_\u5305\u88F9\u56FE\u6807": 8843887146220068686 + "\u5C0F\u7CBE\u51AC1\u5F62\u6001": -5721930205812688631 + "\u5C0F\u7CBE\u51AC2\u5F62\u6001": -2054741610684161916 + "\u5C0F\u7CBE\u51AC3\u5F62\u6001": -1518992639955841186 + "\u5C0F\u7CBE\u51AC4\u5F62\u6001": 2805277036814342685 + "\u5C0F\u7CBE\u590F1\u5F62\u6001": -4628188656588161946 + "\u5C0F\u7CBE\u590F2\u5F62\u6001": 3468988808424538518 + "\u5C0F\u7CBE\u590F3\u5F62\u6001": 7844400855805879226 + "\u5C0F\u7CBE\u590F4\u5F62\u6001": 1970965331018694107 + "\u5C0F\u7CBE\u66251\u5F62\u6001": 3067164068805769304 + "\u5C0F\u7CBE\u66252\u5F62\u6001": -5275533634060150851 + "\u5C0F\u7CBE\u66253\u5F62\u6001": -160680745753563996 + "\u5C0F\u7CBE\u66254\u5F62\u6001": 6305372726427770020 + "\u5C0F\u7CBE\u7075\u51AC1\u5F62\u6001": 102312537496060372 + "\u5C0F\u7CBE\u7075\u51AC2\u5F62\u6001": 878216543669153899 + "\u5C0F\u7CBE\u7075\u51AC3\u5F62\u6001": 3734031276043834498 + "\u5C0F\u7CBE\u7075\u51AC4\u5F62\u6001": 2895769808279593671 + "\u5C0F\u7CBE\u7075\u590F1\u5F62\u6001": 2395552446206547244 + "\u5C0F\u7CBE\u7075\u590F2\u5F62\u6001": -4847241588517404040 + "\u5C0F\u7CBE\u7075\u590F3\u5F62\u6001": -3742217266204920695 + "\u5C0F\u7CBE\u7075\u590F4\u5F62\u6001": -7738610350610765417 + "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D1": -377994106310310327 + "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D10": -9203790987680261839 + "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D2": 5882200409746323809 + "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D3": -8932916245869920798 + "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D4": 5605441233784882817 + "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D5": 9121820779639280290 + "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D6": 8488764057963674465 + "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D7": 2550905632641154511 + "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D8": -3243800443749964138 + "\u5C0F\u7CBE\u7075\u6280\u80FD\u79D8\u7C4D9": -6141069843151924985 + "\u5C0F\u7CBE\u7075\u66251\u5F62\u6001": 3657460701850347960 + "\u5C0F\u7CBE\u7075\u66252\u5F62\u6001": 4164276901547880653 + "\u5C0F\u7CBE\u7075\u66253\u5F62\u6001": 370363311924577545 + "\u5C0F\u7CBE\u7075\u66254\u5F62\u6001": 1578968246865469341 + "\u5C0F\u7CBE\u7075\u79CB1\u5F62\u6001": 5905629575389051201 + "\u5C0F\u7CBE\u7075\u79CB2\u5F62\u6001": 3759888162971328166 + "\u5C0F\u7CBE\u7075\u79CB3\u5F62\u6001": 4904775005693311813 + "\u5C0F\u7CBE\u7075\u79CB4\u5F62\u6001": 2757850796580710637 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73891": 4198105134519087160 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73891_1": 9205833466758407614 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73891_2": 3378031861031352066 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73891_3": 5379385013313738991 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73891_4": -1807255997913633634 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73891_5": 7258144565749396326 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73892": 3635290098479978648 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73892_1": -156741939359102679 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73892_2": -2540636635656156885 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73892_3": -2178163558767662499 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73892_4": -3240467094965562699 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73892_5": -2653240635692596048 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73893": 6377776843076669738 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73893_1": -2001660721036090888 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73893_2": -5266241226219794972 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73893_3": 6026241907463684801 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73893_4": -9158685505971631698 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73893_5": 6041118113601293874 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73894": -6298560617721228595 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73894_1": -8843066481856722325 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73894_2": 4784062361728303445 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73894_3": -857876370874618413 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73894_4": 8314143004094776976 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73894_5": -315154125179555191 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73895": -5683186943500411727 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73895_1": -1782511907419780361 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73895_2": -8801060400589971410 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73895_3": 1417279718179034707 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73896": -3862418753278169823 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73896_1": -7523197582481721309 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73896_2": -3214818673384533869 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73896_3": -9113753395020092634 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7389\u65B01": -8410476292920097308 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7389\u65B02": -8604335431520085619 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7389\u65B03": 2409533312811572174 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7389\u65B04": 3975808335230798107 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7389\u65B05": -7591378273646941765 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7389\u65B06": -1628244120627314 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E01": 6833965738958056138 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E01_1": -9032831674543076362 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E01_2": -3766887535131391061 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E01_3": 2379712128276728368 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E01_4": 7388099705639204070 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E01_5": 8187374493341042027 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E02": -1785032763005069068 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E02_1": 4907089760932810201 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E02_2": -11251711002076735 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E02_3": -344284046544661714 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E02_4": 3680608032603914352 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E02_5": 1925867915283616019 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E03": -2952391560961529290 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E03_1": -8093771079227303978 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E03_2": -4587284467339800753 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E03_3": -8603926422147691199 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E03_4": -48899923290946896 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E03_5": 4447427646839513769 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E04": -1939220643940406679 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E04_1": 3069390544371042972 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E04_2": -7127793970717804610 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E04_3": 1923195525914129918 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E04_4": 621099829670313303 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E04_5": 5642135843479495015 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E05": -4202602639307280431 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E05_1": -5435013440368023552 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E05_2": 4187338751503840973 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E05_3": 575581712404895167 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E06": 7276826889239103666 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E06_1": -3578548650609471067 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E06_2": -5377031704301548340 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E06_3": -5934352645291466599 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E0\u65B01": -196780080366272356 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E0\u65B02": -1457684196155314440 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E0\u65B03": 1601707765848903035 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E0\u65B04": -9205112034354953978 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E0\u65B05": 2817311049947661257 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u73E0\u65B06": -1518382006132871427 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B261": -4143055367382509529 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B261_1": 6033990102168747888 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B261_2": -1347878286188802151 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B261_3": 2205870462453781936 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B261_4": 7456692668704285637 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B261_5": 3879366933570041421 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B262": -2614633546464734984 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B262_1": 7746579093006941592 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B262_2": 7129265363573732681 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B262_3": -1332124195428805893 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B262_4": -8605283377563957519 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B262_5": -943878154607375181 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B263": 8382317549292654144 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B263_1": 1363534844492039057 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B263_2": 5060640718744728234 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B263_3": -5858326326551821423 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B263_4": -4549348154401342579 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B263_5": 5026392650755569040 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B264": 7359150721650002955 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B264_1": -6020844801801048441 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B264_2": 2621379652796747873 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B264_3": 5405450269899314950 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B264_4": -6456919168217803273 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B264_5": 5976780958860975461 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B265": 7544942705528194173 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B265_1": 1970766599516425188 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B265_2": -5372570612314186633 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B265_3": 3626220083082871188 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B266": -6725788643269547988 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B266_1": 2200190374157659148 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B266_2": 1785046501592325764 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B266_3": -4950557876570130914 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B26\u65B01": 6679984540914073223 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B26\u65B02": -1107900832169616288 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B26\u65B03": 7886748143543043394 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B26\u65B04": 63467984028844140 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B26\u65B05": -2133952657147583847 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u7B26\u65B06": 8796864565766442566 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C1": 5689463431957812576 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C1_1": -8450750045008402452 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C1_2": 1103672185922370287 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C1_3": -5686524455664161337 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C1_4": -7037502936497009311 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C1_5": -7207425741039385221 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C2": -3531894648090546502 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C2_1": 6251336592271799726 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C2_2": -8007387562501665944 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C2_3": -7862768627615697709 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C2_4": 3579774012645014587 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C2_5": 9025746650632979949 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C3": 7639809349120399663 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C3_1": 7517997357647658330 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C3_2": 4457624636872470141 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C3_3": 1048619666289630705 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C3_4": 7063641174551962063 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C3_5": 2294507986369372438 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C4": 3014987730546340556 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C4_1": 8176638173686692618 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C4_2": 2072432854817584247 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C4_3": -3855238713595070865 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C4_4": 5665813451620335105 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C4_5": -8629773219792061633 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C5": -320419238355929715 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C5_1": 5601517048068288704 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C5_2": 721157995166331887 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C5_3": 366972218875412814 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C6": -3842869807948323944 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C6_1": -1982650100373657646 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C6_2": -3954806551717373964 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C6_3": 3507101256771413585 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C\u65B01": 5148189563645519749 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C\u65B02": -8624405481280226714 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C\u65B03": -5750630288294478976 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C\u65B04": 1102044811747228406 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C\u65B05": -2384255610350135765 + "\u5C0F\u7CBE\u7075\u88C5\u5907\u955C\u65B06": -4736290574716474612 + "\u5C0F\u7CBE\u79CB1\u5F62\u6001": -4994883337327408564 + "\u5C0F\u7CBE\u79CB2\u5F62\u6001": -2841541939082769910 + "\u5C0F\u7CBE\u79CB3\u5F62\u6001": 9214857774841147358 + "\u5C0F\u7CBE\u79CB4\u5F62\u6001": 1049288743378636276 + "\u5C0F\u7EA2\u65D7": -3750953799238845406 + "\u5C0F\u866B": -9012367929106453359 + "\u5C0F\u866B\u7F51": -3338652877755304033 + "\u5C0F\u8D1D\u83AB\u897F\u5E72\u7537\u5934\u53D1": 5267889638248788762 + "\u5C0F\u8FA3\u6912": -7224146756169013139 + "\u5C0F\u91CE\u4EBA\u5BA0\u7269\u86CB": 7025989683372889634 + "\u5C0F\u91D1\u521B\u836F": -7364188866219963740 + "\u5C0F\u9690\u62AB\u98CE": 1624541544531828309 + "\u5C0F\u9752\u86D9": -2968309662622269019 + "\u5C0F\u9C7C\u4EBA\u84DD": -1629528913922291470 + "\u5C0F\u9E1F\u70DF\u82B1\u7B80\u5355": -2288890715527693052 + "\u5C0F\u9E1F\u73AB\u7470\u70DF\u82B1": -988656559467047988 + "\u5C0F\u9E1F\u88C5\u5973\u53D1": -7585673941921354332 + "\u5C11\u9633\u5143\u6C14": -4651261905841018827 + "\u5C11\u9634\u5143\u6C14": 6346955763219650925 + "\u5C16\u5634\u5947\u8DB3": 3399696408144525628 + "\u5C16\u7259": -1648851201522677803 + "\u5C71\u5C45\u79CB\u669D": 7311174463151865674 + "\u5C71\u6CB3\u5730\u7406\u56FE": 3098705352287795053 + "\u5C71\u6CB3\u58EE\u4E3D": 7164004135040817912 + "\u5C71\u6D77\u51CC\u4E91\u5951": 2612789674078221909 + "\u5C71\u76DF\u6D77\u8A93": 5453672063903185296 + "\u5C71\u76DF\u6D77\u8A93\u5973\u88C5\u4E0A\u8863": 7969894477035636196 + "\u5C71\u76DF\u6D77\u8A93\u5973\u88C5\u88E4\u5B50": 1047167496371941490 + "\u5C71\u76DF\u6D77\u8A93\u5973\u88C5\u978B": 4853658646027884866 + "\u5C71\u76DF\u6D77\u8A93\u7537\u88C5\u4E0A\u8863": 6876574085153079529 + "\u5C71\u76DF\u6D77\u8A93\u7537\u88C5\u88E4\u5B50": 5856666941511260350 + "\u5C71\u76DF\u6D77\u8A93\u7537\u88C5\u978B": 5685288942386762060 + "\u5C71\u7F8A\u8089": 4778698505346384948 + "\u5C71\u8109\u4E4B\u5FC3": 3706908599720374022 + "\u5C81": 4226092110711435146 + "\u5CA9\u5FC3": -3354074295770871450 + "\u5CA9\u7075\u6218\u58EB": -4601688875021258139 + "\u5CB3\u738B": 7030440162522578107 + "\u5CE5\u5D58\u5C81\u6708": 8407956218369850623 + "\u5D1B": -4307137507777729591 + "\u5DE1\u68C0\u4EE4": 1548757939554317154 + "\u5DE5\u4F1A\u6218\u670D\u5973-\u624B\u595732": -2797501075441531877 + "\u5DE5\u4F1A\u6218\u670D\u5973-\u8863\u670D32": -2382492199118478040 + "\u5DE5\u4F1A\u6218\u670D\u5973-\u88E4\u5B5032": 432886051186974250 + "\u5DE5\u4F1A\u6218\u670D\u5973-\u978B32": 1581786693906602722 + "\u5DE5\u4F1A\u6218\u670D\u7537-\u624B\u595732": -6655673460478105504 + "\u5DE5\u4F1A\u6218\u670D\u7537-\u8863\u670D32": 3911795104282894955 + "\u5DE5\u4F1A\u6218\u670D\u7537-\u88E4\u5B5032": -5630775935674061852 + "\u5DE5\u4F1A\u6218\u670D\u7537-\u978B32": -2982797341766850064 + "\u5DE5\u574A": -1084981152570872918 + "\u5DE5\u9524": -556941808744193486 + "\u5DE6\u864E\u7B26": -2180896093812093887 + "\u5DE7\u514B\u529B": -1604979561614304423 + "\u5DE7\u5320\u5927\u5E08\u4E4B\u5323\u5C0F": 9160498098266370354 + "\u5DE7\u5320\u7CBE\u901A": 851755902713094138 + "\u5DE8\u5634\u5947\u8DB3": -775406598812459126 + "\u5DE8\u578B\u7F8A\u89D2": 6998282177580114600 + "\u5DE8\u5927\u7684\u7F8A\u89D2": 1707540010088723891 + "\u5DE8\u7075\u65A7": -4724827144984751179 + "\u5DE8\u7075\u9E1F": -5688795450566567101 + "\u5DE8\u725B\u76AE\u9769": 6074389318993337155 + "\u5DE8\u8725\u9A91\u5BA0": 8364010907526070595 + "\u5DE8\u87D2\u76AE": 6397538672053560276 + "\u5DE8\u9619": 608532301222096990 + "\u5DEB\u5A74\u5B81\u4EB2\u542F": 5336625319416734538 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C501\u4E0A\u8863": 8013181681800383434 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C501\u62A4\u8155": -6383951277685502143 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C501\u88E4\u5B50": 4017754155535535648 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C501\u978B\u5B50": 3821242235017207073 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C502\u4E0A\u8863": 5939585007308894302 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C502\u62A4\u8155": 8929661065815511560 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C502\u88E4\u5B50": -7070197140255971193 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C502\u978B\u5B50": -7981543839368394493 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C503\u4E0A\u8863": 6272948345108560468 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C503\u62A4\u8155": -9116895399318760807 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C503\u88E4\u5B50": 521384734290388364 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C503\u978B\u5B50": 6038627767628921190 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C504\u4E0A\u8863": 4308483669253546982 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C504\u62A4\u8155": 6748047265233471455 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C504\u88E4\u5B50": 2171413162843641760 + "\u5DEB\u5E08\u4E13\u7528\u670D\u88C504\u978B\u5B50": 8679295572162672074 + "\u5DEB\u5E08\u4ED9\u9B54\u6280\u80FD\u4E66": -4140136281835977403 + "\u5DEB\u5E08\u5927\u5E08": 1443587575782034719 + "\u5DEB\u5E08\u661F\u76D8": -9112318119655168417 + "\u5DEB\u6BD2\u5A03\u5A03": -9130130978614676848 + "\u5DEB\u6C34\u4F5B\u5974\u7684\u9547\u9B42\u724C": -5949125360774072329 + "\u5DF1": -7858547336284539302 + "\u5DF3": 9129990471785276562 + "\u5DF4\u4E54\u7537\u5934\u53D1": 4967953772878507771 + "\u5DF4\u6D1B\u514B\u6D6E\u96D5\u7ACB\u67DC": 3345714873268938645 + "\u5DF4\u6D1B\u514B\u7687\u5BB6\u5C55\u793A\u67DC": -7899157476107291015 + "\u5DF4\u8700\u665A\u6E14\u4EAD": -6077992927304736627 + "\u5DF4\u9ECE\u65F6\u5C1A\u7537\u88C5\u4E0A\u8863": 2053265497310879151 + "\u5DF4\u9ECE\u65F6\u5C1A\u7537\u88C5\u5934\u53D1": -2166731522095132936 + "\u5DF4\u9ECE\u65F6\u5C1A\u7537\u88C5\u88E4\u5B50": 5490722273032075604 + "\u5DF4\u9ECE\u65F6\u5C1A\u7537\u88C5\u978B\u5B50": 2656508064369249032 + "\u5DFD\u4E4B\u8868\u5FBD": -4630938956610826555 + "\u5DFD\u4E4B\u9B42": 2483135944479781318 + "\u5E02\u573A": 7413265919102228316 + "\u5E03": -102881822987158646 + "\u5E03\u5A03\u5A03": -3465033997561013066 + "\u5E03\u5A03\u5A03\uFF08\u84DD\uFF09": 2611418937327652902 + "\u5E03\u5DFE": 4699654492130691630 + "\u5E03\u62A4\u8155\u7EE3\u9762": -7599423996928271903 + "\u5E03\u6599": -4377951137983525045 + "\u5E03\u6CD5\u672F\u978B\u5E95": -2614702621256316803 + "\u5E03\u6CD5\u888D\u8863\u895F": 3722154802953685486 + "\u5E03\u6CD5\u88E4\u4E0B\u6446": 4312247633236761021 + "\u5E03\u7075\u529B\u5E61\u7EE6": 8340717743998971280 + "\u5E03\u9999\u56CA": -2010282734664680964 + "\u5E05\u54E5\u770B\u8FD9\u91CC": -8262201745680511974 + "\u5E0C\u671B\u4E4B\u5149": 7879314215399848171 + "\u5E0C\u671B\u9752\u77F3\u98CE\u8F66": -3129949956209599584 + "\u5E0C\u814A\u5973\u4E0A\u8863": 885369305002476431 + "\u5E0C\u814A\u5973\u5934\u53D1": 823026212802623152 + "\u5E0C\u814A\u5973\u978B\u5B50": -9159601375296865644 + "\u5E0C\u814A\u7537\u4E0A\u8863": 7234647519217173635 + "\u5E0C\u814A\u7537\u5934\u53D1": 7996709583885056114 + "\u5E0C\u814A\u7537\u978B\u5B50": 1039994553114784121 + "\u5E1D": 8423776715872897866 + "\u5E1D\u661F\u5361": 2981585930086732319 + "\u5E1D\u738B": 5753188082173505917 + "\u5E1D\u86EE\u9524": 138250670010429069 + "\u5E1D\u9AA8": 6079061307379724335 + "\u5E2E\u6D3E\u72EC\u9738\u5929\u4E0B": 788764416042682083 + "\u5E2E\u6D3E\u96C6\u7ED3\u4EE4": -1356780564531066468 + "\u5E38\u6625\u85E4\u5341\u5B57\u82B1\u67B6": -7810842230701374221 + "\u5E38\u9752\u679C": -7727528608180549648 + "\u5E38\u9752\u9879\u94FE": 6132093039956134341 + "\u5E74": -8220953530447015380 + "\u5E74\u517D": -935515132348710893 + "\u5E74\u5E74\u6709\u4F59": 2714739467055243424 + "\u5E74\u5E74\u6709\u9C7C\u5782\u706F": 3518033395299390994 + "\u5E74\u7CD5": 9155514546212754868 + "\u5E76\u8482\u83B2\u82B1": -3730677707689621732 + "\u5E78\u8FD0\u6597\u7BF7": -6482651469043375534 + "\u5E78\u8FD0\u6597\u7BF7 ": 3160987375355212237 + "\u5E78\u8FD0\u73CA\u745A": 690591808076803216 + "\u5E78\u8FD0\u78A7\u73BA": -7358058984106848187 + "\u5E7B\u4ED9\u77F3\u7BB1\u5B5032": -3307804622264400801 + "\u5E7B\u5929\u6212": -4952781734495105056 + "\u5E7B\u5929\u6B8B\u9875": 9067221802231573692 + "\u5E7B\u5F69\u7FC5\u8180": -1917586398333323960 + "\u5E7B\u5F69\u87E0\u8FD0\u78A7\u73BA": -946307163998702314 + "\u5E7B\u5F69\u9065\u6781\u78A7\u73BA": -4879988310850184012 + "\u5E7B\u660E\u9879\u94FE": -890887402433597134 + "\u5E7B\u6C14\u51B0\u5251": -6584435619046633412 + "\u5E7B\u7075\u6212\u6307\uFF08\u9633\uFF09": 4104764104456459855 + "\u5E7B\u7075\u6212\u6307\uFF08\u9634\uFF09": -5614411913310449520 + "\u5E7B\u7075\u7B26": -1274488759600633055 + "\u5E7B\u80E7\u62AB\u98CE": 7337113672122480040 + "\u5E7B\u821E\u9690\u6708\u5251": -1739398499764774975 + "\u5E7B\u91D1\u5B88\u795E\u7B26": 1351150435952563041 + "\u5E7B\u91D1\u62A4\u8EAB\u7B26": 287255902474265351 + "\u5E7B\u9B54\u5C65": -4365979202226314501 + "\u5E7B\u9B54\u6212\uFF08\u9633\uFF09": -6417692865732761069 + "\u5E7B\u9B54\u6212\uFF08\u9634\uFF09": -4696287465922683565 + "\u5E7B\u9B54\u62A4\u624B": 7553096773724642623 + "\u5E7B\u9B54\u6CD5\u8863": 4777656347023932286 + "\u5E7B\u9B54\u7389": 9192715607211680595 + "\u5E7B\u9B54\u88E4": 1052496756250154489 + "\u5E7B\u9B54\u9879\u94FE": 5457916450900231431 + "\u5E7C\u5E74\u72D7": -2683230168444292377 + "\u5E7C\u7EA4\u5634\u5947\u8DB3\u7684\u7FBD\u6BDB": -7660625236100961610 + "\u5E7C\u7EB9\u874E": 2594168159999103898 + "\u5E7C\u874E\u5C3E": 1613298997700119859 + "\u5E7C\u9E70\u5C0F\u8349": -5132456993640509710 + "\u5E7D\u5170\u7684\u9879\u94FE": -4369296440350687239 + "\u5E7D\u51A5\u4E4B\u773C": -6849745333269898067 + "\u5E7D\u51A5\u4E4B\u8840": 169369306279538851 + "\u5E7D\u51A5\u51A0": 3935442129962935792 + "\u5E7D\u51A5\u5229\u722A": -158914419856108388 + "\u5E7D\u51A5\u5C65": -2800483348964376218 + "\u5E7D\u51A5\u6212": 7639394928072681900 + "\u5E7D\u51A5\u62A4\u8155": -4729705141263302696 + "\u5E7D\u51A5\u76AE\u6BDB": -2965730348710304790 + "\u5E7D\u51A5\u8089\u5757": 9208719457981540494 + "\u5E7D\u51A5\u8170\u4F69": 3819653794679078893 + "\u5E7D\u51A5\u8F7B\u94E0": 8894763342109738304 + "\u5E7D\u51A5\u9879\u94FE": -7066155799519897701 + "\u5E7D\u6028\u7684\u7075\u5149": -1447213468261536464 + "\u5E7D\u6D6E\u4E4B\u7075": 4571733318741487141 + "\u5E7D\u6D6E\u7384\u5149": 2601749748245369108 + "\u5E7D\u7075\u6218\u58EB": -2580883542837522599 + "\u5E7D\u9B42\u7075\u9F9B": -2226727320010374698 + "\u5E7D\u9B42\u73E0": 736693921080770265 + "\u5E7F\u5F18\u660E\u96C6": 5858945413558309588 + "\u5E7F\u64AD\u5587\u53ED": 1748061657943140788 + "\u5E7F\u6CD5\u68CD": -1266821207531637559 + "\u5E7F\u6D4E\u8F6E": -5622680983582505703 + "\u5E7F\u76EE\u65E0\u8FB9\u77F3": 5846563861442495263 + "\u5E86": -4074942174343706808 + "\u5E87\u4F51\u5723\u7075": -1656000868842717255 + "\u5E87\u62A4\u7B26\u77F3": 3407234384471579317 + "\u5E94\u9F99\u4E4B\u5A01": 3080113658808738355 + "\u5E94\u9F99\u4E4B\u722A": 620644220283045729 + "\u5E94\u9F99\u6218\u7532": -4626618846201488389 + "\u5E94\u9F99\u817F\u7532": -3628293397336883540 + "\u5E94\u9F99\u8896\u7532": -6677416652521524982 + "\u5E94\u9F99\u9774": -84272147980701640 + "\u5E9A": 3588901970525865344 + "\u5EA6\u52AB\u5251": -8076772899015219079 + "\u5EA6\u52AB\u9879\u94FE": 5541336757778284402 + "\u5EB7\u4E43\u99A8": -6020273335762112620 + "\u5F00": 1384204392729599602 + "\u5F00\u5929\u957F\u65A7": 4437862342696850337 + "\u5F00\u7A8D\u77F3": -4686568487032011094 + "\u5F02\u754C\u7CBE\u9B44": -2968790235804387305 + "\u5F02\u8C61\u5B9D\u76D2": -2473435832593629315 + "\u5F13": 1750102532560782459 + "\u5F13\u7F8A": 534282789428778408 + "\u5F20\u90FA\u8138\u8C31": -6261065174530047324 + "\u5F25\u52D2\u83E9\u8428": 8933763062081449498 + "\u5F25\u52D2\u83E9\u8428\u788E\u7247": -4091616871125265133 + "\u5F25\u6492\u53CC\u5C42\u6728\u684C": -3246059771535812514 + "\u5F26\u7EB9\u6267\u58F6": 2856187091635607865 + "\u5F29ak47": 3510517445725136418 + "\u5F29\u85D5\u8282": -8182247215823940243 + "\u5F2F\u89D2\u86A9\u864E\u94DC\u517D": -5861923747108631960 + "\u5F39\u6307\u5341\u5E74\u4E00\u7409\u7483": -30318514060664983 + "\u5F3A\u529B\u80F6": -1817775139198118415 + "\u5F3A\u6548\u4E5D\u9633\u4E39": -4846288952017757320 + "\u5F3A\u6548\u795E\u6C14\u4E38": 6287217797063311901 + "\u5F3A\u6548\u91D1\u521B\u836F": -5689705824498329047 + "\u5F3A\u9178": 2389576616898315579 + "\u5F52\u5143\u62F3\u5957": -4553772751507068475 + "\u5F52\u5143\u76D4": -3492987658698924904 + "\u5F52\u53BB\u6765": -7004298600510787795 + "\u5F52\u5FC3\u5251": 1077016229074985668 + "\u5F52\u661F\u76D8": -7191843660062041218 + "\u5F52\u771F\u51A0": 533043669993000127 + "\u5F69": -6043008970398105010 + "\u5F69\u4E39\u7C89": -7524575803895880610 + "\u5F69\u4E91\u955C": 2979719297973961878 + "\u5F69\u74F7\u6728\u9999\u82B1\u67B6": -5743410790339533142 + "\u5F69\u753B\u767D\u74F7\u70DF\u76C5": -4277952229151960087 + "\u5F69\u7ED8\u9A8F\u9A6C\u706F\u7B3C\u74F6": -2720531729545168043 + "\u5F69\u8272\u7684\u53F6\u5B50": -1349710423320221277 + "\u5F69\u8679\u9A6C\u5361\u9F99\u62FC\u76D8": 6954623149419016269 + "\u5F69\u86CB": -4971006567334509832 + "\u5F69\u8776\u7CBE": 1816992623328980696 + "\u5F69\u8776\u7FFC": 1913016121350020801 + "\u5F69\u9CDE": 6912022975449335095 + "\u5F69\u9E6B\u4E4B\u5FC3": 7200946636143128555 + "\u5F69\u9E6B\u4E4B\u7FBD": -7219240334463490910 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u5934\u76D401": 5807506526456950353 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u5934\u76D402": -8529100787206742110 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u5934\u76D403": 7145016981910907222 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u5934\u76D404": 4770261958862332652 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u62AB\u98CE01": 8834794418257160667 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u62AB\u98CE02": 840505479464229463 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u62AB\u98CE03": -2396515079086501176 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u6CD5\u888D\u62AB\u98CE04": 5401298085995556023 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u5934\u76D401": -750576259612373116 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u5934\u76D402": 8624381077706725445 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u5934\u76D403": -8645452014991111279 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u5934\u76D404": -6791267783947097610 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u62AB\u98CE01": -6842343535507896535 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u62AB\u98CE02": -3661013758215614729 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u62AB\u98CE03": 799389964056034305 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u8F7B\u7532\u62AB\u98CE04": 8920821774875500448 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u5934\u76D401": -6572476668650739972 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u5934\u76D402": -2787048786962706084 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u5934\u76D403": -3111705645260364023 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u5934\u76D404": 505534218867854425 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u62AB\u98CE01": 1521745564350582163 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u62AB\u98CE02": -6969453509852128300 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u62AB\u98CE03": -5456870937943814847 + "\u5F71\u65CF\u4E13\u7528\u88C5\u5907\u91CD\u7532\u62AB\u98CE04": -7846957729841677437 + "\u5F71\u65CF\u8170\u724C": 2078429409074975716 + "\u5F71\u9041\u9879\u94FE": -7515457949420593092 + "\u5F79\u9B3C\u5F29": -9100693002535927913 + "\u5F80\u590D\u9879\u94FE": -6809584167535421320 + "\u5F88\u540A\u7684\u62AB\u98CE": 7986196289924543885 + "\u5F8B\u4EE4": 4039641540408402310 + "\u5FA1\u7532\u7B26": -8167849605059165311 + "\u5FA1\u9F99\u5B9D\u9274": 8915293844608510868 + "\u5FAE\u5149\u4E4B\u5C18": 2151262251907875130 + "\u5FC3": 2777704728266217183 + "\u5FC3\u5F62\u7EA2\u5B9D\u77F3": 6805155053380647327 + "\u5FC3\u5FC3\u76F8\u6620": -5781765009210194881 + "\u5FC3\u601C\u6C34": 5559709732488215369 + "\u5FC3\u624B\u76F8\u4F9D\u5973\u88C5\u4E0A\u8863": -6094208968722878650 + "\u5FC3\u624B\u76F8\u4F9D\u5973\u88C5\u88D9\u5B50": 6794786614228579271 + "\u5FC3\u624B\u76F8\u4F9D\u5973\u88C5\u978B\u5B50": 1678524029434594345 + "\u5FC3\u624B\u76F8\u4F9D\u7537\u88C5\u4E0A\u8863": 4633370029550445608 + "\u5FC3\u624B\u76F8\u4F9D\u7537\u88C5\u88E4\u5B50": -3496787096054754512 + "\u5FC3\u624B\u76F8\u4F9D\u7537\u88C5\u978B\u5B50": -7050630065879082614 + "\u5FC3\u6709\u7075\u7280": -7439766771343881804 + "\u5FCD\u51AC\u7965\u4E91\u67DC": 3089099502217312784 + "\u5FD8\u5C18\u86DF\u9F99\u817E": -7860232486542541297 + "\u5FD8\u5FE7\u5760\u5B50": -5990573542718635250 + "\u5FE0\u4E49\u5173\u5723\u9644\u4F53": -5597786432543074466 + "\u5FE0\u4E49\u706B\u7EA2\u4E4B\u77F3": 3029174947464734655 + "\u5FE0\u4E49\u767D\u96FE\u4E4B\u77F3": 2629738147324633805 + "\u5FE0\u4E49\u9510\u5229\u4E4B\u77F3": 3323488088039420043 + "\u5FE0\u4E49\u9EC4\u6C89\u4E4B\u77F3": -8351598272940368254 + "\u5FE0\u52C7\u78E8\u5200\u77F3": 3360833119354339254 + "\u5FE7\u90C1\u4E4B\u773C": 8475662055985740320 + "\u5FEB": -5455015475701357211 + "\u6012\u653E": -161987765514138276 + "\u6012\u65CC\u76D4": 6198246795820317281 + "\u6012\u6C99\u8349": 1483961522809469200 + "\u6012\u6D77\u84DD\u9CB8": -2729479968395098120 + "\u6012\u706B\u4E4B\u6838": 6393660155859714561 + "\u6012\u773C": -1444797467795959381 + "\u6012\u96F7\u957F\u9524": 7323396900250905350 + "\u6021\u60C5\u60A6\u6027": -8832430524193669632 + "\u6027\u611F\u5957\u88D9\u4E0A\u8863": -8324445578683921348 + "\u6027\u611F\u5957\u88D9\u88D9\u5B50": -7052696240355992128 + "\u6027\u611F\u5957\u88D9\u978B": 4182504188612668916 + "\u6027\u611F\u6DD1\u5973\u88C5\u8863": -7526479399021206954 + "\u6027\u611F\u6DD1\u5973\u88C5\u88E4": 5423376552014750128 + "\u6027\u611F\u6DD1\u5973\u88C5\u978B": 4505053264353689787 + "\u6027\u611F\u76AE\u8863\u6218\u58EB\u5973\u624B\u5957": 8092541496060780778 + "\u6027\u611F\u76AE\u8863\u6218\u58EB\u5973\u88C5": 6521714234678684292 + "\u6027\u611F\u76AE\u8863\u6218\u58EB\u5973\u978B": 7187263088034412004 + "\u6028\u7075\u5854\u788E\u7247": -4031701537222138076 + "\u6028\u9B42\u5C65": 3981492005736853324 + "\u6028\u9B42\u62A4\u8155": 4441868454340712463 + "\u6028\u9B42\u888D": 5324568335478098188 + "\u6028\u9B42\u88E4": 4304621058436389727 + "\u602A\u7269\u6B8B\u9AB8": 5490526640477359511 + "\u602A\u7269\u7279\u5F81": -3535149125981714638 + "\u6052\u7206\u5251": -5527317038407873253 + "\u6068\u522B\u79BB": 2387919923070027872 + "\u6069\u6069\u7231\u7231": 5734276846093954940 + "\u606D\u559C\u53D1\u8D22": 1698251576296064798 + "\u6076\u7075\u7CBE\u534E": 6248922488287744217 + "\u6076\u72FC\u738B\u7360\u7259": -5736443318920617285 + "\u6076\u9B42\u7075\u9F9B": -35006344367279915 + "\u6076\u9B54\u56FE\u817E": -1441722022154446924 + "\u6076\u9B54\u57CE\u88C5\u7537\u4E0A\u8863": -6229099109132637117 + "\u6076\u9B54\u57CE\u88C5\u7537\u5934\u53D1": -3619587990221803815 + "\u6076\u9B54\u57CE\u88C5\u7537\u624B\u5957": -1135953736782163406 + "\u6076\u9B54\u57CE\u88C5\u7537\u88E4\u5B50": -31580359576796988 + "\u6076\u9B54\u57CE\u88C5\u7537\u978B\u5B50": -392348065362194315 + "\u6076\u9B54\u6B66\u58EB": -4668662453811303055 + "\u6076\u9B54\u7684\u5C3E\u5DF4": -5466383359789804772 + "\u6076\u9B54\u7FBD\u7FFC": 3146411338050084192 + "\u60A0\u563B\u7334_\u5305\u88F9\u56FE\u6807": -768031929695182810 + "\u60A0\u563B\u7334\u7279\u522B_\u5305\u88F9\u56FE\u6807": -4600210332973598112 + "\u60A0\u6E38\u8170\u9970": -7343538835266731740 + "\u60B2\u60AF\u62F3\u5957": 5730689457530283000 + "\u60C5\u4E1D\u8282\u97AD": 2376526849498495070 + "\u60C5\u4EBA\u5973\u4F1E": -6302356928495370151 + "\u60C5\u4EBA\u738B\u5B50\u88C5\u4E0A\u8863": 1314008763089595639 + "\u60C5\u4EBA\u738B\u5B50\u88C5\u5934\u9970": 1252860026365280096 + "\u60C5\u4EBA\u738B\u5B50\u88C5\u62A4\u8155": -2986146694416898430 + "\u60C5\u4EBA\u738B\u5B50\u88C5\u88E4\u5B50": -4719125624498936383 + "\u60C5\u4EBA\u738B\u5B50\u88C5\u978B\u5B50": 4553352122460765930 + "\u60C5\u4EBA\u7537\u4F1E": 8424580128840236366 + "\u60C5\u4EBA\u7537\u5929\u9E45\u77ED\u5175": -5078847355176668121 + "\u60C5\u4EBA\u7537\u5929\u9E45\u957F\u5175": 3540936193140826679 + "\u60C5\u4EBA\u7537\u73AB\u7470\u5F13": 3688146997018889928 + "\u60C5\u4EBA\u7537\u73AB\u7470\u77ED\u5175": -2696779010469898246 + "\u60C5\u4EBA\u7537\u73AB\u7470\u957F\u5175": -2873048309295668584 + "\u60C5\u4EBA\u7537\u73AB\u7470\u957F\u51751": -3997157011004955704 + "\u60C5\u4EBA\u8282love": -7504754056285475365 + "\u60C5\u4EBA\u8282\u5DE7\u514B\u529B": 3812361933127998043 + "\u60C5\u4EBA\u8282\u6C38\u8FDC\u7231\u4F60": -2422638840313649325 + "\u60C5\u4EBA\u8282\u73AB\u7470\u82B1": 5462922670595067387 + "\u60C5\u4EBA\u8282\u793C\u7269": 6548463530401361177 + "\u60C5\u4EBA\u8282\u8170\u4F69": 7681950795112797735 + "\u60C5\u4EBA\u8282\u8702\u871C": -8167043968516806790 + "\u60C5\u4EBA\u8282\u90C1\u91D1\u9999": -3130839169939049989 + "\u60C5\u4EBA\u82F1\u4F26\u98CE\u5973\u4E0A\u8863": -4092104875260229660 + "\u60C5\u4EBA\u82F1\u4F26\u98CE\u5973\u5934\u53D1": 8558421073111587197 + "\u60C5\u4EBA\u82F1\u4F26\u98CE\u5973\u624B\u5957": 7500243557822070007 + "\u60C5\u4EBA\u82F1\u4F26\u98CE\u5973\u88E4\u5B50": 2164793366792832942 + "\u60C5\u4EBA\u82F1\u4F26\u98CE\u5973\u978B\u5B50": 8443164194650407884 + "\u60C5\u4EBA\u82F1\u4F26\u98CE\u7537\u4E0A\u8863": 7090865643361383259 + "\u60C5\u4EBA\u82F1\u4F26\u98CE\u7537\u5934\u53D1": -8055882852599460268 + "\u60C5\u4EBA\u82F1\u4F26\u98CE\u7537\u624B\u5957": -3201241486244746421 + "\u60C5\u4EBA\u82F1\u4F26\u98CE\u7537\u88E4\u5B50": 6292965792573153223 + "\u60C5\u4EBA\u82F1\u4F26\u98CE\u7537\u978B\u5B50": 4089104390572249965 + "\u60C5\u610F\u7EF5\u7EF5": -4831201941620264089 + "\u60C5\u6709\u72EC\u949F": -5595117777401759420 + "\u60C5\u6BD4\u91D1\u575A": -5890861112326903481 + "\u60C5\u8FF7\u52A0\u52D2\u6BD4\u5973\u88C5-\u62A4\u815532": -392407803900025025 + "\u60C5\u8FF7\u52A0\u52D2\u6BD4\u5973\u88C5-\u8863\u670D32": -268059588558897097 + "\u60C5\u8FF7\u52A0\u52D2\u6BD4\u5973\u88C5-\u88E4\u5B5032": 8243425159669720667 + "\u60C5\u8FF7\u52A0\u52D2\u6BD4\u5973\u88C5-\u978B32": -3246660024010133468 + "\u60C5\u975E\u5F97\u5DF2": 546485691668745984 + "\u60CA\u6D9B\u57CE\u7CBE\u5143": -3236872872308399808 + "\u60CA\u6D9B\u5E61\u6756": 4666432905957675058 + "\u60CA\u96F7\u6212": -6867533050734976553 + "\u60CA\u98CE\u5251": -4534097868556779843 + "\u60CA\u9F99\u6B8B\u5377": -6184215566846320098 + "\u60CA\u9F99\u793C\u5305": -3719167702006551324 + "\u60D1": 849784434825399302 + "\u60DF\u7F8E\u793C\u670D\u88D9": -4193556681258357582 + "\u60DF\u7F8E\u793C\u670D\u88D9\u5934\u53D1": -4948191615238549312 + "\u60DF\u7F8E\u793C\u670D\u88D9\u624B\u5957": 2591912243291917570 + "\u60DF\u7F8E\u793C\u670D\u88D9\u978B\u5B50": 766271436811380214 + "\u60E9\u6212\u5723\u7075": -6253350054177033525 + "\u60F9\u706B\u88C5\u5973\u4E0A\u8863": -4861019862723031684 + "\u60F9\u706B\u88C5\u5973\u5934\u53D1": 5463210369637887571 + "\u60F9\u706B\u88C5\u5973\u624B\u5957": -8439536715304613200 + "\u60F9\u706B\u88C5\u5973\u88E4\u5B50": 955298033332666888 + "\u60F9\u706B\u88C5\u5973\u978B\u5B50": 1236546947583322359 + "\u610F\u4E71\u60C5\u8FF7": 8149321269227724374 + "\u614A\u7C89\u8272\u67D3\u6599": 1769596800658866032 + "\u6155\u5BD2\u4E30\u793C": 2926866034928477787 + "\u620A": -4867762457138653079 + "\u620C": -4697475595796522414 + "\u6210\u5C31\u4E4B\u7FFC\u795E\u6708": 1297113458093934837 + "\u6210\u5E74\u866B\u7FC5": 184645943798757923 + "\u6210\u5F62\u7684\u5185\u4E39": 4539540034886578941 + "\u6211\u53EA": -2497673129984145850 + "\u6211\u7231\u4F60": 3833319184533239337 + "\u6211\u7231\u4F6002": 8934841511957439830 + "\u6212\u63071": 7552956062754858138 + "\u6212\u63072": 8115153292094445926 + "\u6212\u63073": 3430107255259491686 + "\u6212\u63074": -5685012950264080623 + "\u6218\u573A\u94B1\u5E011": -414832250308562162 + "\u6218\u573A\u94B1\u5E012": -7906678215233868490 + "\u6218\u6B4C\u4E4B\u57CE\xB7\u52C7\u58EB \u6CD5\u7CFB1": 753067437635108209 + "\u6218\u6B4C\u4E4B\u57CE\xB7\u52C7\u58EB \u6CD5\u7CFB2": 3687724939148837179 + "\u6218\u6B4C\u4E4B\u57CE\xB7\u52C7\u58EB \u6CD5\u7CFB3": -5170267287349921174 + "\u6218\u6B4C\u4E4B\u57CE\xB7\u52C7\u58EB \u7269\u74061": -4634658275529933422 + "\u6218\u6B4C\u4E4B\u57CE\xB7\u52C7\u58EB \u7269\u74062": 1661020738564551029 + "\u6218\u6B4C\u4E4B\u57CE\xB7\u52C7\u58EB \u7269\u74063": 6886095048431751473 + "\u6218\u6B4C\u7EDF\u5E05\u5FBD\u7AE0": -6176280262135847995 + "\u6218\u7075\u4E4B\u6E90": 4982483381035920805 + "\u6218\u7075\u5B9D\u5177": -2526775545367045813 + "\u6218\u7075\u5B9D\u888B": 8849867021633809429 + "\u6218\u7075\u89E6\u5A92": -6993242472477183357 + "\u6218\u7075\u89E6\u5A92s": 2445294016724071067 + "\u6218\u7075\u89E6\u5A92\u7CBE": 1965092779019766196 + "\u6218\u795E\u4E4B\u9774": 3850206108165287832 + "\u6218\u795E\u6212\u6307\uFF08\u9633\uFF09": -7581148293938351555 + "\u6218\u795E\u6212\u6307\uFF08\u9634\uFF09": -3196222107540556897 + "\u6218\u795E\u62A4\u8155": -3746684757448102802 + "\u6218\u795E\u62A4\u817F": 9223138495509887643 + "\u6218\u795E\u7389\u4F69": -4790673831663256280 + "\u6218\u795E\u94E0": -3845625076002845456 + "\u6218\u795E\u9879\u94FE": 3281107857483359999 + "\u6218\u9524": 6863051410554958403 + "\u6218\u9A6C\u96D5\u50CF\u6838\u5FC3": -8090138188509075008 + "\u6218\u9B42\u864E\u7B26": 3551095831100243128 + "\u6240\u7F57\u95E8\u738B\u6D6E\u96D5": -2089592889440348639 + "\u624B\u6284\u4E50\u8C31": 4895487342393756885 + "\u624B\u6284\u8BD7\u8BCD\u672C": 9119969959657326358 + "\u624B\u62C9\u624B\u7EA2": 304603432786406258 + "\u624B\u62C9\u624B\u84DD": 2044894457455407448 + "\u624B\u6301\u7AD6\u7434": 4778358517296925046 + "\u624B\u673A\u5546\u5238\u4E0A": -8979549623560103931 + "\u624B\u673A\u5546\u5238\u4E0B": -1475170704978274295 + "\u624B\u6756": -2274313638364181407 + "\u624B\u864E": -4903526659436304474 + "\u624B\u9524": 5660498233733917218 + "\u6251\u514B\u5C11\u5973\u4E0A\u8863": 2805445247648158484 + "\u6251\u514B\u5C11\u5973\u5934\u53D1": -7346677585625495201 + "\u6251\u514B\u5C11\u5973\u62A4\u8155": 8684353905955237105 + "\u6251\u514B\u5C11\u5973\u978B\u5B50": -3212457504141614627 + "\u6253\u6253\u6253\u52AB\u5566": -792822383932092494 + "\u6253\u78E8\u7CBE\u901A": 424996534404401888 + "\u6267\u5B50\u4E4B\u624B": 5851048639494740545 + "\u6267\u5B50\u4E4B\u624B\u4E0E\u5B50\u5055\u8001": 8759277520022359883 + "\u626B\u5200": -2502368749299502534 + "\u6280\u5DE7\u4E4B\u8BC1": -5961163781973150032 + "\u6298\u51B2\u9879\u94FE": -3891689885111406172 + "\u6298\u679D\u7EB1": 2804154745585898990 + "\u6298\u94C1\u5200": -4815764319304924633 + "\u6298\u95E8\u5200": -3661588644534081800 + "\u62A4\u7532\u7B26": 7305588531838188408 + "\u62AB\u8428\u5315\u9996": 6864121388223834937 + "\u62AB\u98CE\u5200": -7298311345686843843 + "\u62B1\u62B1\u5154": -8078279741307161646 + "\u62BD\u9AD3\u97AD": 5485422390130661314 + "\u62D3\u91D1\u5343\u74E3\u83B2\u67F1": -9000059018493461555 + "\u62D3\u9B42\u4E00\u676F\u5012\u6000\u9189": 5554910807090656275 + "\u62D3\u9B42\u4E50\u5929\u5973": 654692720232540281 + "\u62D3\u9B42\u56FE\u5305\u4E13\u4E1A\u7EA7": 6642826281250993153 + "\u62D3\u9B42\u56FE\u5305\u5165\u95E8\u7EA7": -768715111124983448 + "\u62D3\u9B42\u56FE\u5305\u521D\u5B66\u7EA7": -495935036624650594 + "\u62D3\u9B42\u56FE\u5305\u5927\u5E08\u7EA7": 7549873267266830922 + "\u62D3\u9B42\u56FE\u5305\u5B97\u5E08\u7EA7": 7980274707896447836 + "\u62D3\u9B42\u56FE\u5305\u5DE8\u5320\u7EA7": -3814390518177711218 + "\u62D3\u9B42\u56FE\u5305\u6709\u5B66\u7EA7": 8800460511828184681 + "\u62D3\u9B42\u56FE\u5305\u6E38\u5B66\u7EA7": -7495690431385204966 + "\u62D3\u9B42\u56FE\u5305\u7985\u5B97\u7EA7": -5424428282131737170 + "\u62D3\u9B42\u56FE\u5305\u7CBE\u7EAF\u7EA7": -8673450030438401980 + "\u62D3\u9B42\u65E0\u5B57\u771F\u541B": -5806790094573161532 + "\u62D3\u9B42\u9669\u9053\u795E": -8760889080383811758 + "\u62D3\u9B42\u9ED1\u5C06\u519B": 563569302918904242 + "\u62D3\u9B42\uFF1A\u4E09\u5343\u4E16\u754C\xB7\u78A7\u6E38": -2846670447849025628 + "\u62D3\u9B42\uFF1A\u4E5D\u5B50\u9B3C\u6BCD": 6576681241879263609 + "\u62D3\u9B42\uFF1A\u4F0A\u820D": -6436694825176994918 + "\u62D3\u9B42\uFF1A\u4F5B\u9B54\u6CE2\u6D35": -8553691491368023812 + "\u62D3\u9B42\uFF1A\u51A5\u5E9C\u725B\u5934": 8160486619064102324 + "\u62D3\u9B42\uFF1A\u51B0\u96EA\u5973\u738B": -1712756317977181182 + "\u62D3\u9B42\uFF1A\u523A\u5BA2\xB7\u6C90\u98CE": -8847456056574829280 + "\u62D3\u9B42\uFF1A\u5251\u7075\xB7\u4FEE\u7F57": -4033492722065336604 + "\u62D3\u9B42\uFF1A\u53F6\u5B64\u5BD2": 7179350733113474405 + "\u62D3\u9B42\uFF1A\u5578\u5929\u8FB0\u714C": -5150913069052260357 + "\u62D3\u9B42\uFF1A\u58A8\u7FBD\u98CE\u534E\xB7\u9B3C\u9E64": 1837994922223850287 + "\u62D3\u9B42\uFF1A\u590F\u98CE\u5C06\u519B": -1114006567283496354 + "\u62D3\u9B42\uFF1A\u591C\u5F71\xB7\u98CE\u6840\u9A9C": -7980954180458325298 + "\u62D3\u9B42\uFF1A\u5973\u513F\u56FD\u56FD\u738B": 4406121183334428057 + "\u62D3\u9B42\uFF1A\u5996\u517D\xB7\u7834\u5C71": -1510314536543036493 + "\u62D3\u9B42\uFF1A\u5996\u7CBE\xB7\u7409\u7483": 5029470530547626186 + "\u62D3\u9B42\uFF1A\u5DEB\u5E08\xB7\u7EEF\u6708": 6795784572111977165 + "\u62D3\u9B42\uFF1A\u5E7B\u6D77\u9886\u4E3B": -2884760860370284378 + "\u62D3\u9B42\uFF1A\u5F02\u5316\u5F25\u52D2": 1401676817083889388 + "\u62D3\u9B42\uFF1A\u5FC3\u5BBF \u5C0F\u7F8E ": 8628580603062214932 + "\u62D3\u9B42\uFF1A\u60B2\u6124\u83E9\u63D0": 1430148334064541594 + "\u62D3\u9B42\uFF1A\u66B4\u541B\u4E4B\u5B50\xB7\u7A46\u91CA\u6853": -4192024222761493440 + "\u62D3\u9B42\uFF1A\u6708\u4ED9\xB7\u5357\u6708\u5343\u9675": -7383891577224986932 + "\u62D3\u9B42\uFF1A\u6B66\u4FA0\xB7\u67F3\u575A\u8425": -6798868253307089816 + "\u62D3\u9B42\uFF1A\u6CD5\u5E08\xB7\u7530\u5F69": -2886277458961061200 + "\u62D3\u9B42\uFF1A\u6D63\u718A\u914B\u957F": -8309998721742170391 + "\u62D3\u9B42\uFF1A\u6D6E\u5149\u63A0\u5F71\xB7\u591C\u5211": -1291038353484809532 + "\u62D3\u9B42\uFF1A\u706B\u9CDE\u6012\u86DF\xB7\u6556\u9616": -3024755777403654569 + "\u62D3\u9B42\uFF1A\u70BD\u9F99\u5148\u950B": -3753833371144752777 + "\u62D3\u9B42\uFF1A\u70BD\u9F99\u6E0A\u7763\u519B": 3931761972376474239 + "\u62D3\u9B42\uFF1A\u714C\u70C8\u4E4B\u821E\xB7\u697C\u8FB0": -321247470713861767 + "\u62D3\u9B42\uFF1A\u753B\u6C34\u65E0\u98CE": -7340989465385357834 + "\u62D3\u9B42\uFF1A\u753B\u6C34\u800C\u884C": -8824580852127578777 + "\u62D3\u9B42\uFF1A\u753B\u8BED\u5E7D\u83B2": -6635265987784142306 + "\u62D3\u9B42\uFF1A\u767D\u5E1D\xB7\u5E2D\u5C14\u74E6": 9121209840961573277 + "\u62D3\u9B42\uFF1A\u767E\u5C81\u91D1\u86E4": -2593683196774445464 + "\u62D3\u9B42\uFF1A\u7985\u59EC": 4206170952405256109 + "\u62D3\u9B42\uFF1A\u7AF9\u7B1B\u4E50\u7AE5": -533639141325766899 + "\u62D3\u9B42\uFF1A\u7FBD\u7075\xB7\u4E91\u9526": -2242547833299059091 + "\u62D3\u9B42\uFF1A\u7FBD\u8292\xB7\u5C9A\u67AB": -1399887804434172218 + "\u62D3\u9B42\uFF1A\u843D\u6728\u4ED9\u5B50": -2369917924644900525 + "\u62D3\u9B42\uFF1A\u865A\u7A7A\u58C1\u969C\xB7\u5C3A\u52FE": 4424109674324269141 + "\u62D3\u9B42\uFF1A\u8D64\u5E1D\xB7\u6653\u7EAF": -7163656623125917681 + "\u62D3\u9B42\uFF1A\u90AA\u6076\u534A\u9F99\xB7\u8428\u5FB7\u8499": 7433370001602773861 + "\u62D3\u9B42\uFF1A\u971C\u9F99\u5148\u950B": 2498035618253397243 + "\u62D3\u9B42\uFF1A\u9752\u5E1D\xB7\u51B7\u6708": -7612155127318489607 + "\u62D3\u9B42\uFF1A\u9B45\u7075\xB7\u6A31\u77B3": 1147880534199364164 + "\u62D3\u9B42\uFF1A\u9B45\u9B3C\u82B1\u738B": -1136270314879697462 + "\u62D3\u9B42\uFF1A\u9B54\u793C\u9752": 7234418018876283242 + "\u62D3\u9B42\uFF1A\u9ED1\u5E1D\xB7\u4F0A\u8482\u4E1D": 8740254157647047980 + "\u62DB\u884C\u91D1\u8475\u82B1\u5927\u793C\u5305": 7194768093639882711 + "\u62DB\u8D22\u7075\u86C7\u7C89": -3219798993006720978 + "\u62DB\u8D22\u7075\u86C7\u7EFF": 6240764054772371649 + "\u62DB\u8D22\u732B\u5973\u4E0A\u8863": -5016399348918011303 + "\u62DB\u8D22\u732B\u5973\u5E3D\u5B50": -4016160053362966693 + "\u62DB\u8D22\u732B\u5973\u624B\u5957": 6156565668607410094 + "\u62DB\u8D22\u732B\u5973\u978B\u5B50": -4276605182668759597 + "\u62DB\u8D22\u864E\u7537\u5E3D\u5B50": -2274266512408825068 + "\u62DB\u8D22\u864E\u7537\u624B\u5957": 7503381712791522153 + "\u62DB\u8D22\u864E\u7537\u8863\u670D": -3930624186909086531 + "\u62DB\u8D22\u864E\u7537\u978B\u5B50": -217812190438235818 + "\u62DB\u8D22\u8FDB\u5B9D\u5361": -95166992199640308 + "\u62DB\u9B42\u5E61\u6756": 6227476689389434186 + "\u62DC\u5E74\u5E16": -3052385903336783320 + "\u62E8\u6D6A\u9F13\u53CC\u624B\u77ED": -5964396957589300406 + "\u62E8\u6D6A\u9F13\u53CC\u624B\u957F": -1135448435437397353 + "\u62F3\u5957": -2660921855148981857 + "\u62F3\u5957\u68D2\u7403\u624B\u5957": 4496497229864810484 + "\u62F3\u5957\u7F8A": -2726649255943972410 + "\u62F3\u5957\u83E0\u841D": -8639764966208816625 + "\u6301\u56FD\u65E0\u654C\u7389": -2151996761443814503 + "\u6307\u793A\u4E4B\u7FBD": 1488166568578796113 + "\u6316\u77FF\u9053\u5177\u571F": 5180607210408202312 + "\u6316\u77FF\u9053\u5177\u6728": -2113212153708240668 + "\u6316\u77FF\u9053\u5177\u6C34": -3044470257846727463 + "\u6316\u77FF\u9053\u5177\u706B": -2307203202341530158 + "\u6316\u77FF\u9053\u5177\u91D1": 8753734138489649039 + "\u632A\u79FB\u5E61": 7207794484830276305 + "\u632F\u9706\u76D4": -7671966341583952372 + "\u633D\u7559\u8282\u97AD": 2469484806696784348 + "\u6346\u4ED9\u7EF3": 952395396283001718 + "\u6355\u706B\u7075\u7F51": -1497530324716851873 + "\u6377\u5143\u7535\u8111": -8980621085574568353 + "\u6389\u843D\u7684\u679C\u5B9E": -6672709412701651576 + "\u638C\u8FD0\u7EB9\u7AE0": -3509394572873073544 + "\u6392\u7A7A\u5F29": 4343926910568693583 + "\u63A0\u5F71": 1331457917456005631 + "\u63A0\u8679\u6212": -1949854071929871130 + "\u63A2\u9669\u8005": -7323157684606412197 + "\u63A3\u98CE\u4E4B\u77DB": -3027402057176413684 + "\u63A5\u9AA8\u6728": -4047378812061279974 + "\u63A9\u65E5\u65AD\u6C34": 2104407286589312727 + "\u63D0\u70BC\u6CB9": -7062112519876556716 + "\u641C\u795E\u5668": -6781950961034406499 + "\u641C\u9B42\u97AD": -2931898676626224843 + "\u641E\u602A\u7537\u88C5\u5934\u53D1": 625913527607318665 + "\u641E\u602A\u7537\u88C5\u62A4\u624B": -2042434750075432338 + "\u641E\u602A\u7537\u88C5\u8863\u670D": 3266461395884207055 + "\u641E\u602A\u7537\u88C5\u88E4\u5B50": -6791731981301117890 + "\u641E\u602A\u7537\u88C5\u978B\u5B50": 5892752567728188686 + "\u6444\u5FC3\u9B54\u5361\u72471": 8720345065662532599 + "\u6444\u5FC3\u9B54\u5361\u72472": 7803020252282596847 + "\u6444\u5FC3\u9B54\u5361\u72473": 5780621492299760692 + "\u6444\u5FC3\u9B54\u5361\u72474": -5191580036454169932 + "\u6444\u5FC3\u9B54\u5361\u72475": 172726938760338051 + "\u6444\u5FC3\u9B54\u5361\u72476": 258219039349813381 + "\u6444\u5FC3\u9B54\u5361\u72477": 7593045203685480070 + "\u6444\u5FC3\u9B54\u5361\u72478": 5714912735256380955 + "\u6444\u9B42\u74F647": 6397024879796832218 + "\u6446\u644A_\u5723\u8BDE\u889C\u5C0F": -6047168814126533715 + "\u6446\u644A\u5154": 8289379622860969487 + "\u6446\u644A\u5154\u5973": 7855353186693132095 + "\u6446\u644A\u5154\u7537": 2254034315871684100 + "\u6446\u644A\u5C0F\u9A6C": -2776175957395342154 + "\u6446\u644A\u8001\u864E": 6862760212659926911 + "\u6447\u5149\u4E4B\u5251": 1143878211759592848 + "\u6467\u610F\u4E4B\u722A": -6066497525486471712 + "\u6469\u6258\u8F6601": 7814855233830030605 + "\u64BC\u5929\u9524": -9122611395056509099 + "\u64C2\u9F13\u8F70\u91D1": -577085283711671526 + "\u64D2\u9F99\u6756": -3603000294223590989 + "\u652F\u914D\u4E4B\u529B": 2936729590949385735 + "\u6536\u8D39\u5E2E\u6D3E\u96C6\u7ED3\u4EE4": 4578085568460178719 + "\u6536\u8D39\u80FD\u91CF\u6C34\u6676": 1333526021685625666 + "\u6536\u8D39\u961F\u4F0D\u96C6\u7ED3\u4EE4": -4610066439881241575 + "\u6539\u9020\u4E4B\u77F3": -885820244611970689 + "\u654C\u519B\u519B\u670D": 8361198787029078186 + "\u654F\u6377\u94F8\u6750": -6142246901152680037 + "\u6551\u8D4E": 8473008252967469064 + "\u6551\u8D4E\u5723\u7075": -3743129268595755158 + "\u6556\u8499": -4758498462991222254 + "\u6563": 4557015985850795101 + "\u6563\u843D\u7684\u6B66\u5668": 1109939859131590599 + "\u6587\u6587\u8702": 5179563338035416090 + "\u6587\u6B8A\u83E9\u8428": -93713364806877502 + "\u6587\u6B8A\u83E9\u8428\u788E\u7247\u526F\u672C": -2741853452512161608 + "\u6591\u6593\u8C79": -6597375973850601335 + "\u6591\u70B9\u72D7": -7242366771491568549 + "\u6597\u58EB\u4E4B\u529B": 5867430634210749342 + "\u6597\u6218\u80DC\u4F5B": 8382513659960218888 + "\u6597\u7B20": 3654109672208764458 + "\u6597\u8F6C\u661F\u79FB": -8325074500282903867 + "\u6597\u90E8\u8FDE\u5361": 7721840169128808210 + "\u65A7\u5934\u5E2E\u53E3\u53F7": 6460162171928276287 + "\u65A9\u5C06\u5200": 6129106635762884722 + "\u65A9\u77F3\u5251": -1282101263127393408 + "\u65A9\u9A6C\u5200": 8378927401714640625 + "\u65AD\u5251": -1429272421131763527 + "\u65AD\u5934\u4E4B\u77F3": -6673424802565244183 + "\u65AD\u5CB3\u5200": -5817494422521754709 + "\u65AD\u6D41\u65A7": -2462166990987864277 + "\u65AD\u80A0\u5203": 2868331303945690811 + "\u65AD\u88C2\u7684\u6E14\u67AA": 6511502776812926938 + "\u65AD\u95E8\u5200": 7798413815231633078 + "\u65AD\u9996\u9A91\u5175\u7684\u5934\u9885": 1029292407080069660 + "\u65AD\u9996\u9A91\u5175\u7684\u5FC3\u810F": 4981853317400606380 + "\u65AF\u5DF4\u8FBE\u7537\u4E0A\u8863": 6342802084972686572 + "\u65AF\u5DF4\u8FBE\u7537\u5934\u53D1": -5929713360024729443 + "\u65AF\u5DF4\u8FBE\u7537\u624B\u5957": 845859703910797142 + "\u65AF\u5DF4\u8FBE\u7537\u978B\u5B50": 6356743446817823048 + "\u65B017\u54C1\u5315\u9996": 6720672845359965552 + "\u65B017\u54C1\u5355\u5200": -454143490672049474 + "\u65B017\u54C1\u53CC\u5251": 2441263451482090432 + "\u65B017\u54C1\u53CC\u65A7": -8219984050274269481 + "\u65B017\u54C1\u5E61\u6756": 8005634444434990637 + "\u65B017\u54C1\u5F13": -4508001545700959651 + "\u65B017\u54C1\u62F3\u5957": 7087723991729893799 + "\u65B017\u54C1\u6CD5\u5251": -2808768363832898183 + "\u65B017\u54C1\u6CD5\u5668": 6538902324070677793 + "\u65B017\u54C1\u6CD5\u5B9D": 899511347686070264 + "\u65B017\u54C1\u722A": -1177722178753936188 + "\u65B017\u54C1\u77ED\u6756": 8851468847399683486 + "\u65B017\u54C1\u80E7\u5200": -3192034361240444622 + "\u65B017\u54C1\u9570\u5200": 870733618794671463 + "\u65B017\u54C1\u957F\u67AA": -8342046965383707294 + "\u65B017\u54C1\u957F\u9524": 529608578832009404 + "\u65B0\u516B\u5366\u76D8": 5973689105262558043 + "\u65B0\u591C\u53C9\u4E4B\u77F3": -170722044283753256 + "\u65B0\u5A18\u5927\u793C\u5305": 1807366908959913781 + "\u65B0\u5A18\u80F8\u82B1": -1647436241175736701 + "\u65B0\u5A5A\u5927\u793C\u5305": -1862638900390655250 + "\u65B0\u5A5A\u82B1\u675F": 4038306288691304865 + "\u65B0\u5E74\u5FEB\u4E50": 6912579549122017799 + "\u65B0\u5E74\u88C5\u5973\u5934\u53D1": 5473727091621597737 + "\u65B0\u5E74\u88C5\u7537\u5934\u53D1": 2064528674216784687 + "\u65B0\u624B\u4E4B\u7BAD": -4587794107662900818 + "\u65B0\u624B\u793C\u5305": -1761108909532142320 + "\u65B0\u6625\u4E2A\u6027\u65D7\u888D\u4E0A\u8863": 4158083237371922574 + "\u65B0\u6625\u4E2A\u6027\u65D7\u888D\u5934\u53D1": 8095086994665717600 + "\u65B0\u6625\u4E2A\u6027\u65D7\u888D\u624B\u5957": 6790068483190754080 + "\u65B0\u6625\u4E2A\u6027\u65D7\u888D\u978B\u5B50": 7865781048362596159 + "\u65B0\u6625\u53E4\u88C5\u5973\u5934\u53D1": -1022448769775608888 + "\u65B0\u6625\u53E4\u88C5\u5973\u8863\u670D": -3280429388488348727 + "\u65B0\u6625\u53E4\u88C5\u5973\u978B\u5B50": 7335528700895868888 + "\u65B0\u6625\u5927\u706F\u7B3C": 5609329644981633625 + "\u65B0\u6625\u5927\u70AE\u4ED7": 328990504189271981 + "\u65B0\u6625\u5927\u793C\u70AE": 8731259945462086777 + "\u65B0\u6625\u5C0F\u70AE\u4ED7": -1458250062332045660 + "\u65B0\u6625\u7B26\u5370\u7334": -7433254865528756643 + "\u65B0\u6625\u7EA2\u7EB8": 124336141661905690 + "\u65B0\u6708\u4F20\u5947\u793C\u5305": -7014543907747514100 + "\u65B0\u6708\u9576\u91D1\u8247": 2850746230577301055 + "\u65B0\u68A6\u5E7B\u738B\u5B50\u88C5\u4E0A\u8863": -3116169864851164794 + "\u65B0\u68A6\u5E7B\u738B\u5B50\u88C5\u5934\u53D1": -1346660516753710489 + "\u65B0\u68A6\u5E7B\u738B\u5B50\u88C5\u62A4\u8155": -5557829086979975176 + "\u65B0\u68A6\u5E7B\u738B\u5B50\u88C5\u88E4\u5B50": 1187732963986358380 + "\u65B0\u68A6\u5E7B\u738B\u5B50\u88C5\u978B\u5B50": -6498160125060858389 + "\u65B0\u767D\u8611\u83C7": 8629926178317674733 + "\u65B0\u767E\u969C\u4E4B\u77F3": -977764293008552641 + "\u65B0\u7684\u94C1\u94B3": -4222772324043545984 + "\u65B0\u793C\u76D2": -5080746948365430584 + "\u65B0\u7FBD\u6BDB": 8557914683472937956 + "\u65B0\u90CE\u5927\u793C\u5305": 1502507490950868745 + "\u65B0\u90CE\u80F8\u82B1": -4871784921512757552 + "\u65B0\u91D1\u7816": 5270447888766178141 + "\u65B0\u91D1\u9C7C": -2219096832215447186 + "\u65B0\u9C9C\u7684\u9F9F\u58F3": 3845090822964046491 + "\u65B0\u9EC4\u660F\u6CD5\u672F\u6212\u6307\u53D1\u7A7F\u7B49\u7EA7\u7EDD\u5929\u6212": -3549273361380149121 + "\u65B0\u9EC4\u660F\u6CD5\u672F\u8170\u4F69\u653B\u51FB\u7B49\u7EA7\u82F1\u96C4\u8170\u9970": -4161941681568596190 + "\u65B0\u9EC4\u660F\u6CD5\u672F\u8170\u4F69\u6CD5\u7A7F\u7B49\u7EA7\u82F1\u96C4\u8170\u9970": -3370927224980775579 + "\u65B0\u9EC4\u660F\u6CD5\u672F\u9879\u94FE\u6CD5\u7A7F\u7B49\u7EA7\u795E\u62A4\u9879\u94FE": 3572667965555828810 + "\u65B0\u9EC4\u660F\u6CD5\u672F\u9879\u94FE\u9632\u5FA1\u7B49\u7EA7\u795E\u62A4\u9879\u94FE": 2109514470610879499 + "\u65B0\u9EC4\u660F\u7269\u7406\u6212\u6307\u7269\u7A7F\u7B49\u7EA7\u5343\u4F5B\u6212": -4527420016723652884 + "\u65B0\u9EC4\u660F\u7269\u7406\u8170\u4F69\u653B\u51FB\u7B49\u7EA7\u6D77\u5929\u4F69": -1577277304739675855 + "\u65B0\u9EC4\u660F\u7269\u7406\u8170\u4F69\u7269\u7A7F\u7B49\u7EA7\u6D77\u5929\u4F69": 90624870220645596 + "\u65B0\u9EC4\u660F\u7269\u7406\u9879\u94FE\u7269\u7A7F\u7B49\u7EA7\u5F80\u590D\u9879\u94FE": -1895112781774824423 + "\u65B0\u9EC4\u660F\u7269\u7406\u9879\u94FE\u9632\u5FA1\u7B49\u7EA7\u5F80\u590D\u9879\u94FE": 1760556605922286137 + "\u65B9\u5F62\u753B\u7709\u7B3C": 722576062368708706 + "\u65B9\u821F\u5BC6\u51FD": -9223316927072317885 + "\u65B9\u9752\u5B50\u7684\u5143\u5A74": -972102072656275183 + "\u65CB\u98CE\u65A7": 705559032154668911 + "\u65CB\u9F9F": 3183282947759080139 + "\u65CB\u9F9F\u58F3": -8907818003142822038 + "\u65D7\u888D": -8161604095008368849 + "\u65D7\u888D\u7537\u5934\u53D1": -7672297601220788415 + "\u65D7\u888D\u7537\u8863\u670D": 5942638633364160527 + "\u65D7\u888D\u7537\u88E4\u5B50": 5178141257180608021 + "\u65D7\u888D\u7537\u978B\u5B50": 4699323893359010659 + "\u65D7\u888D\u978B": 9053906589948934512 + "\u65E0\u4E0A\u4E4B\u62E5": -6292492197610904624 + "\u65E0\u4E0A\u5FBD\u7AE01": 7751411305801885726 + "\u65E0\u4E0A\u5FBD\u7AE02": 4793099873072410109 + "\u65E0\u4E0A\u6307\u73AF1": 2417726999725835307 + "\u65E0\u4E0A\u6307\u73AF2": 5063613787606987471 + "\u65E0\u4F24\u4F69": 3140177345913266987 + "\u65E0\u53CC": -9133702379373395936 + "\u65E0\u53CC\u4E4B\u7FFC\u5151\u6362\u724C": 7090620906142148074 + "\u65E0\u53CC\u591C\u660E\u73E0": 5464444189264423089 + "\u65E0\u53CC\u6212": 3725740009419382040 + "\u65E0\u53CC\u9526\u56CA": 336427002016459169 + "\u65E0\u540D\u7684\u5C38\u9AA8": -1484608579480592615 + "\u65E0\u5934\u9A91\u5175\u5C06\u519B": -3263897060833216507 + "\u65E0\u5984\u65A7": 8561729412209931046 + "\u65E0\u5B9A\u795E\u4EE4": 7496612948987145937 + "\u65E0\u5E38\u9879\u94FE": 850183885410886261 + "\u65E0\u5F71\u5203": -860405062548651092 + "\u65E0\u654C\u7FC5\u8180": 1475889368163940702 + "\u65E0\u654C\u9526\u56CA": -2192516775148836270 + "\u65E0\u672C\u5947\u6284": 4903146923061792952 + "\u65E0\u6781\u51A0": 8688123478597430107 + "\u65E0\u6781\u6CD5\u795E": 3137947590026058745 + "\u65E0\u6781\u900D\u9065\u4EE4": -8960348581283747319 + "\u65E0\u68A6\u8349": 1710040425766419470 + "\u65E0\u70DF\u7164": -4320984498236526274 + "\u65E0\u754F\u4E4B\u8BC1": -721271420738758544 + "\u65E0\u754F\u6212\u6307": 7651351338893656383 + "\u65E0\u754F\u9526\u56CA": 7228739047473495873 + "\u65E0\u76FE\u4E0D\u6467\u53EA\u77DB": 427790186143697414 + "\u65E0\u8896\u8857\u821E\u7537\u88C5\u4E0A\u8EAB32": 4023089879426922651 + "\u65E0\u8896\u8857\u821E\u7537\u88C5\u4E0B\u8EAB32": 6254837437520001573 + "\u65E0\u8896\u8857\u821E\u7537\u88C5\u5934\u53D132": -7866634314372171639 + "\u65E0\u8896\u8857\u821E\u7537\u88C5\u978B32": -6173291624051465535 + "\u65E0\u90AA\u7CBE\u9B44": -6749211345970447934 + "\u65E0\u91CF\u5760\u5B50": -7937144334431901797 + "\u65E0\u95F4\u53CC\u5B50": 3710405034118830831 + "\u65E0\u97F3\u62AB\u98CE": -8944783661260976628 + "\u65E5": 4972287193095435900 + "\u65E5\u670D\u4F8D\u5973\u88C5\u4E0A\u8863": -3318753858169868756 + "\u65E5\u670D\u4F8D\u5973\u88C5\u978B\u5B50": 2603250386284219814 + "\u65E5\u672C\u65F6\u88C5\u5973\u4E0A\u8863": -7265837923443248969 + "\u65E5\u672C\u65F6\u88C5\u5973\u5934\u53D1": 8964691602962862247 + "\u65E5\u672C\u65F6\u88C5\u5973\u62A4\u8155": 4870788248990399872 + "\u65E5\u672C\u65F6\u88C5\u5973\u88E4\u5B50": 5022677486798744037 + "\u65E5\u672C\u65F6\u88C5\u5973\u978B\u5B50": -5084972032147166191 + "\u65E5\u672C\u65F6\u88C5\u7537\u4E0A\u8863": 5239632702834308167 + "\u65E5\u672C\u65F6\u88C5\u7537\u5934\u53D1": 1986699003116994185 + "\u65E5\u672C\u65F6\u88C5\u7537\u88E4\u5B50": -7887094578096241070 + "\u65E5\u672C\u65F6\u88C5\u7537\u978B\u5B50": 3739970707107572540 + "\u65E5\u76F4\u795E\u5361": 6519679552895001992 + "\u65E5\u7CFB\u841D\u8389\u4E0A\u8863": 1105583187705323360 + "\u65E5\u7CFB\u841D\u8389\u5934\u53D1": 875905424588652059 + "\u65E5\u7CFB\u841D\u8389\u62A4\u8155": -1641530383200175165 + "\u65E5\u7CFB\u841D\u8389\u978B\u5B50": -8739674988152969353 + "\u65F1\u6C34\u7CBE": -171744097984286008 + "\u65F6\u5C1A\u5973\u8B66\u4E0A\u8863": 3347359894590244637 + "\u65F6\u5C1A\u5973\u8B66\u4E0A\u8863\u7EFF": 1504214485244893524 + "\u65F6\u5C1A\u5973\u8B66\u4E0B\u8863": 7709710999861707144 + "\u65F6\u5C1A\u5973\u8B66\u4E0B\u8863\u7EFF": 7136900283065006299 + "\u65F6\u5C1A\u5973\u8B66\u5934\u53D1": 6881007628578131805 + "\u65F6\u5C1A\u5973\u8B66\u62A4\u8155": 724519229645241187 + "\u65F6\u5C1A\u5973\u8B66\u62A4\u8155\u7EFF": 7027454658737801446 + "\u65F6\u5C1A\u5973\u8B66\u978B\u5B50": 4889093207625332965 + "\u65F6\u5C1A\u5973\u8B66\u978B\u5B50\u7EFF": 5052966624065215521 + "\u65F6\u7A7A\u4E66\u5377": 1576232872429121609 + "\u65F6\u88C5\u4ED3\u5E93\u6269\u5145\u77F3\u5C0F": -1838118756342956312 + "\u65F6\u88C5\u6B66\u5668\u5143\u5B9D": -283917764618545860 + "\u65F6\u88C5\u6B66\u5668\u6BDB\u7B14": -8610994126000318953 + "\u65F6\u88C5\u6B66\u5668\u72EE\u5B50\u624B": 9117485489334601487 + "\u65F6\u88C5\u6B66\u5668\u7CD6\u846B\u82A6": 3106974395986751895 + "\u65F6\u88C5\u6B66\u5668\u7EA2\u706F\u7B3C": -3213054025038460219 + "\u65F6\u88C5\u6B66\u5668\u94DC\u9572": 7513028429541332767 + "\u65F6\u88C5\u6B66\u5668\u97AD\u70AE\u4E08": -5526665671244902769 + "\u65F6\u88C5\u6B66\u5668\u997A\u5B50": 9164144559035585066 + "\u65F6\u88C5\u6B66\u5668\u9992\u5934": 8595033431400509972 + "\u65F6\u88C5\u6B66\u5668\u9CA4\u9C7C": 3969627355509001538 + "\u65F6\u88C5\u7CBE\u901A": -5105160386704302785 + "\u6606\u866B\u7FC5\u8180": -2292660083434547017 + "\u660A\u5929\u4E4B\u77F3": -5833288755028778017 + "\u660A\u5929\u8F6E": 3540082977705155380 + "\u660E\u5149\u4E0B\u94E0": 1392000266324714243 + "\u660E\u5149\u6218\u94E0": -6010712734555858690 + "\u660E\u5149\u8155\u7532": -3820455347328830659 + "\u660E\u5149\u978B": 3194547505318497086 + "\u660E\u5149\u9879\u94FE": -5453042852729225253 + "\u660E\u738B\u4E4B\u77F3": -8457009220471272356 + "\u660E\u738B\u8F6E": -4193340451267418118 + "\u660E\u74F7\u70EB\u91D1\u8336\u51E0": -7814443584611035101 + "\u660E\u955C\u6B62\u6C34\u7B14\u67B6": 2002066260300678943 + "\u661F\u4E91\u6563\u805A\u77F3": 7517719325437126406 + "\u661F\u5149\u95EA\u95EA\u5C0F\u793C\u670D\u4E0A\u8863": 5488201981773035764 + "\u661F\u5149\u95EA\u95EA\u5C0F\u793C\u670D\u5934\u53D1": -8299244003969917149 + "\u661F\u5149\u95EA\u95EA\u5C0F\u793C\u670D\u978B\u5B50": 3748764442889914363 + "\u661F\u5BBF\u957F\u9524": 1270002851482152671 + "\u661F\u661F\u65F6\u88C5\u7537\u5934\u53D1": -4333469041260428248 + "\u661F\u661F\u65F6\u88C5\u7537\u8863\u670D": -2028805513422476920 + "\u661F\u661F\u65F6\u88C5\u7537\u88E4\u5B50": -3447421575522525337 + "\u661F\u661F\u65F6\u88C5\u7537\u978B\u5B50": -6862041085229847718 + "\u661F\u6708\u6620": -1032263289109567587 + "\u661F\u6708\u76F8\u8F89": -4273992664477115265 + "\u661F\u6CB3\u7389\u843D": -5312176079044905465 + "\u661F\u7075\u5947\u5F15\u73E01\u7EA7": -345101702411451418 + "\u661F\u7075\u5947\u5F15\u73E02\u7EA7": 3010583529967703023 + "\u661F\u7075\u5947\u5F15\u73E03\u7EA7": 8636606573388961320 + "\u661F\u7075\u5947\u5F15\u73E04\u7EA7": 8155803599807711033 + "\u661F\u7075\u5947\u5F15\u73E0\u5168": 3922683870522654489 + "\u661F\u7403\u5927\u6218\u7537\u5934\u53D1": -3444696428151277618 + "\u661F\u7403\u5927\u6218\u7537\u88C5\u4E0A\u8863": 8442864649191189349 + "\u661F\u7403\u5927\u6218\u7537\u88C5\u4E0B\u8863": 1292466463023129056 + "\u661F\u7403\u5927\u6218\u7537\u88C5\u62A4\u8155": -3862421851662979538 + "\u661F\u7403\u5927\u6218\u7537\u88C5\u978B\u5B50": 7646776555732724028 + "\u661F\u884C\u8BE1\u9053\u6563": 6229537911825822923 + "\u661F\u8FB0\u4E4B\u77F3": -584218178371308857 + "\u661F\u8FD0\u56FE\u7AE0": 8488812148138556746 + "\u661F\u9B42\u767E\u7EB3\u4E391\u7EA7": -1854070573507112892 + "\u661F\u9B42\u767E\u7EB3\u4E392\u7EA7": 3490936209148254810 + "\u661F\u9B42\u767E\u7EB3\u4E393\u7EA7": -6657598898646251934 + "\u661F\u9E3F\u79D8\u5323": -5425946691397637667 + "\u6620\u5F64\u51A0": -8364107924903202310 + "\u6620\u6708\u94DC\u955C": -6435470223846126912 + "\u6625": -4199282665912973662 + "\u6625\u5802\u9152\u6EF4\u5786": -5700632381680443764 + "\u6625\u5929\u673A\u8F66\u88C5\u7537\u4E0A\u8863": 7655679694891577416 + "\u6625\u5929\u673A\u8F66\u88C5\u7537\u624B\u5957": -1532483082777358567 + "\u6625\u5929\u673A\u8F66\u88C5\u7537\u88E4": 7237977584836138774 + "\u6625\u5929\u673A\u8F66\u88C5\u7537\u978B": 6928714883136467513 + "\u6625\u5929\u6E29\u6696\u88C5\u5973\u4E0A\u8863": 840180494818509571 + "\u6625\u5929\u6E29\u6696\u88C5\u5973\u7FA4": 741205282986934401 + "\u6625\u5929\u6E29\u6696\u88C5\u5973\u978B": 2990306986779351872 + "\u6625\u8282\u821E\u72EE\u5934\u9970\u7537": 8748199025293053624 + "\u6625\u8282\u9CA4\u9C7C\u5934\u9970\u5973": 1642795830792207936 + "\u6625\u8282\u9ED1\u80A9\u7537\u4E0A\u8863": 7860686018756426730 + "\u6625\u8282\u9ED1\u80A9\u7537\u5934\u53D1": -6743313303272948961 + "\u6625\u8282\u9ED1\u80A9\u7537\u88E4\u5B50": -8197210590256281755 + "\u6625\u8282\u9ED1\u80A9\u7537\u978B\u5B50": 3901835603865685154 + "\u6625\u98CE\u6696\u96EA\u9C9C\u99A5\u997A": -8081958562361594388 + "\u6652\u5E72\u7684\u6C99\u866B\u786C\u58F3": 4040982940272108791 + "\u6667\u77F3": -4788735467630473870 + "\u6668\u4E91\u7684\u4FE1": 2711319391896703151 + "\u666E\u5929\u540C\u5E86": -1516374404840118222 + "\u666E\u8D24\u83E9\u8428": -80689027126858847 + "\u666E\u8D24\u83E9\u8428\u788E\u7247": 5898397429772769244 + "\u666E\u901A\u5FBD\u8BB01": -1669482406571742492 + "\u666E\u901A\u5FBD\u8BB02": 8571244457310010417 + "\u666E\u901A\u5FBD\u8BB03": -7503673298426181477 + "\u666E\u901A\u5FBD\u8BB04": 4018662686343423617 + "\u666E\u901A\u5FBD\u8BB05": -4770041032978417679 + "\u666E\u901A\u6613\u5BB9\u5377\u8F74": 5003025770368290320 + "\u666E\u901A\u665A\u793C\u670D": 4549578103088713032 + "\u666E\u901A\u665A\u793C\u670D\u624B\u5957": -8268705911456631430 + "\u666E\u901A\u665A\u793C\u670D\u978B": 8205773787548594448 + "\u666E\u901A\u7EA2\u73AB\u7470": -6704893850622276267 + "\u6674\u5CE6\u6625\u972D\u56FE": -4003741749626057966 + "\u6676\u77F3": 5615387745799324240 + "\u6676\u83B9\u77F3": 7044069813515409758 + "\u667A\u5FB7\u4E4B\u5FBD": -5636573513600626692 + "\u667A\u5FB7\u4E4B\u7AE0": -3391147406164973992 + "\u667A\u6167\u4E4B\u8BC1": -3615202788305874455 + "\u667A\u6167\u7ED3\u6676": 4399847451016490740 + "\u667A\u6167\u9879\u94FE": -6562900731620887643 + "\u667A\u8005\u4E4B\u51A0": 4560043548613999258 + "\u6696": 8741125960217219846 + "\u6697\u5F71\u5203": 2913132684842591676 + "\u6697\u7075\u4E4B\u6838": 3219829671698807500 + "\u6697\u708E": -7109023518691017856 + "\u6697\u8272\u5957\u8155": 5034874680359971886 + "\u6697\u8272\u5957\u88D9": -5133041250825159972 + "\u6697\u8272\u5957\u88D9\u4E0B\u8EAB": -4990004667391856563 + "\u6697\u8272\u5957\u978B": 5097964850011588824 + "\u6697\u8BE1\u4F18\u94B5\u7684\u5FE7\u90C1": -5720845884545639047 + "\u6697\u9690\u4F1A\u4E4B\u5370": 2210967680583189778 + "\u6697\u9690\u4F1A\u4F1A\u7AE0": 1445348204534379725 + "\u6697\u9690\u4F1A\u5148\u950B\u4EE4\u724C": 6843281317471248432 + "\u6697\u9690\u4F1A\u52C7\u8005\u4EE4\u724C": -9165106349124667315 + "\u6697\u9690\u4F1A\u5FBD\u8BB0": 4833260010476888091 + "\u6697\u9690\u4F1A\u7EDF\u9886\u4EE4\u724C": 6365630125827736657 + "\u6697\u9752\u4E4B\u77F3": 3676666257920524873 + "\u6697\u9ED1": -5235708925699940609 + "\u6697\u9ED1\u7384\u5929\u6212": -9209020351472817497 + "\u6697\u9ED1\u7EDD\u5929\u6212": -3608544951571234428 + "\u6697\u9ED1\u9B54\u5929\u6212": 5227006078254267207 + "\u66AE\u96E8\u51A0": -5379401510928227881 + "\u66B4\u5E05\u9A91\u9A6C\u7537\u88C5\u4E0A\u8863": -9115573945758305101 + "\u66B4\u5E05\u9A91\u9A6C\u7537\u88C5\u5934\u53D1": -6516292385378899243 + "\u66B4\u5E05\u9A91\u9A6C\u7537\u88C5\u62A4\u8155": 3642617488330747513 + "\u66B4\u5E05\u9A91\u9A6C\u7537\u88C5\u88E4\u5B50": 1112402895893853980 + "\u66B4\u5E05\u9A91\u9A6C\u7537\u88C5\u978B\u5B50": -4267153074011655026 + "\u66B4\u7259\u725B\u55BD\u7F57": 4407824115011775096 + "\u66B4\u98CE\u5F29": -8697624160550228602 + "\u66B4\u98DF\u4E4B\u5203": -8114931218698113252 + "\u66B9\u7F57\u5F02\u679C": 2044483101324579489 + "\u66DC\u5149\u5251": 4672729992262338789 + "\u66F2\u76F4\u9879\u94FE": 4000086227170082887 + "\u66F3\u5F71\u5BAB\u95F1\u70DB\u53F0": 8596395068197314832 + "\u66F4\u5883\u795E\u4E39\xB7\u52A8\u5929": 970269992302149046 + "\u66FC\u73E0\u6C99\u534E": 7507677094120382907 + "\u66FC\u73E0\u6C99\u534E1": 8233880302116163004 + "\u66FF\u8EAB\u5A03\u5A03": -4408390206667965528 + "\u6708": -7897565379361791557 + "\u6708\u4ED9\u6280\u80FD\u4E66": -3322761238127354854 + "\u6708\u4ED9\u661F\u76D8": -8134417430353852319 + "\u6708\u5149\u5973\u795E\u4E0A\u8863": 1894736914066214290 + "\u6708\u5149\u5973\u795E\u5934\u53D1": 5503388622119609981 + "\u6708\u5149\u5973\u795E\u978B\u5B50": -782400028642901832 + "\u6708\u5149\u5B9D\u76D2": -1595797642225660428 + "\u6708\u5F71\u5F13": 7929718595690883167 + "\u6708\u5F71\u91D1\u691F": -3400421155398447455 + "\u6708\u795E\u955C\u50CF": -915448330982881557 + "\u6708\u7FBF\u5984\u4E66": 2688162107356194843 + "\u6708\u8F6E\u957F\u65A7": -5122736662512263995 + "\u6708\u9570\u7F8A": -8139968717114253353 + "\u6708\u997C": -3209559246797243510 + "\u6708\u997C\u6842\u82B1": -7032320057373646941 + "\u6708\u997C\u871C\u7CD6": 4272188212836856265 + "\u670B\u514B\u88C5\u7537\u4E0A\u8863": -7927025919456615108 + "\u670B\u514B\u88C5\u7537\u88E4": -4931725485859333781 + "\u670B\u514B\u88C5\u7537\u978B": -5282779040584780466 + "\u671B\u6708\u73B2\u73D1": 3229120721050176078 + "\u671D": 4802993473804164638 + "\u6728\u4E4B\u7075": 652406346042745569 + "\u6728\u5076": 5619470052165872204 + "\u6728\u5143\u7D20\u7CBE\u534E": -3593149155614350934 + "\u6728\u5236\u5934\u9885": -5902155932572672012 + "\u6728\u5251": 3365354213227601969 + "\u6728\u53D8\u77F3\u94FE\u5B50": 5280268679378332439 + "\u6728\u5934\u517D2012": 4421462883264428480 + "\u6728\u5F13": -6308052188933673449 + "\u6728\u6599\u7CBE\u534E": -8507476024515240452 + "\u6728\u6750": -4048353265155736231 + "\u6728\u68C9": -6878840631969846768 + "\u6728\u68D2": 7635401968709280689 + "\u6728\u69FF\u6C89\u6597\u67DC": 1798541434976702998 + "\u6728\u69FF\u82B1\u5915\u9676\u676F": -3215777811757316568 + "\u6728\u7075\u4E4B\u77F3": 1905115575779850894 + "\u6728\u7075\u5B9E": -3869114182887153593 + "\u6728\u76D2": -4200784588404562109 + "\u6728\u8774\u8776": -7749342185471202160 + "\u6728\u9999": -5905320413437324949 + "\u672A": 736277473963627001 + "\u672A\u77E5\u7684\u77F3\u5934": 4104404887688201034 + "\u672B": -3178543229264687429 + "\u672B\u4E16\u7537\u88C5\u4E0A\u8863": -7138445963876821365 + "\u672B\u4E16\u7537\u88C5\u62A4\u8155": -1730391730598574035 + "\u672B\u4E16\u7537\u88C5\u88E4\u5B50": 2653297459300283029 + "\u672B\u4E16\u7537\u88C5\u978B\u5B50": -3200652397621310535 + "\u672B\u4E16\u88C5\u7537\u53D1": -6161374303363640953 + "\u672B\u65E5\u5929\u5E73": 8838161593712116959 + "\u672B\u65E5\u5E87\u62A4": 6701671979156999065 + "\u672B\u65E5\u7684\u6551\u8D4E": 5841524458703173012 + "\u672B\u65E5\u7ECF\u6587": -2566121213288476944 + "\u6731\u679C\u6708\u997C": -5976783320170806637 + "\u6731\u96C0\u4E4B\u5217": 2625789371636595415 + "\u6731\u96C0\u4E4B\u5730": -5055475921236524492 + "\u6731\u96C0\u4E4B\u5929": -5258604450874177508 + "\u6731\u96C0\u4E4B\u5B87": -4929205731566461010 + "\u6731\u96C0\u4E4B\u5B99": 7771150135801668976 + "\u6731\u96C0\u4E4B\u5BBF": 7712054382695823783 + "\u6731\u96C0\u4E4B\u5F20": -4314975498469760214 + "\u6731\u96C0\u4E4B\u65E5": 2514007010707119811 + "\u6731\u96C0\u4E4B\u6603": 5259684770916343348 + "\u6731\u96C0\u4E4B\u6708": 812329917813332501 + "\u6731\u96C0\u4E4B\u6D2A": 5066254477795042636 + "\u6731\u96C0\u4E4B\u76C8": 660048297684807203 + "\u6731\u96C0\u4E4B\u8352": -1811125457809528098 + "\u6731\u96C0\u4E4B\u8FB0": 1702230360914156658 + "\u6731\u96C0\u4E4B\u9EC4": 7239757685836422565 + "\u6731\u96C0\u78D0\u73BA": 5545185533236394958 + "\u6734\u5200": -1146453744577497789 + "\u673A\u68B0\u5973\u88C5\u4E0A\u8863": -8151805068090487566 + "\u673A\u68B0\u5973\u88C5\u4E0B\u8863": 336940976809882864 + "\u673A\u68B0\u5973\u88C5\u5934\u53D1": -5810901690879115845 + "\u673A\u68B0\u5973\u88C5\u62A4\u8155": -3891921226075277749 + "\u673A\u68B0\u5973\u88C5\u978B\u5B50": -5394992888725829490 + "\u673A\u68B0\u6218\u72EE": 5645623770702419709 + "\u673A\u68B0\u7FFC": -191856003579769464 + "\u673A\u68B0\u7FFC2": 5421724326395269400 + "\u673A\u68B0\u88C5\u7F6E": 8352425553443857222 + "\u6740\u4EBA\u8702": -1568642463071967579 + "\u6740\u624B\u4E4B\u8C1C": 5856503258198085213 + "\u6749\u6728\u7D20\u9762\u957F\u65B9\u51F3": -6130331556973951895 + "\u6749\u6811": -6655318227473479534 + "\u6750\u6599\u4ED3\u5E93\u6269\u5145\u77F3\u5C0F": 7897507775559335160 + "\u6751\u957F\u624B\u8C15": -1811958862003837632 + "\u675C\u9785\u7684\u62A4\u8EAB\u7B26": -6528179214804507642 + "\u675C\u9E43": -2964596525325747803 + "\u6761\u7EB9\u5B9D\u77F3\u767D\u7D2B\u88C5\u4E0A\u8863": -1745936392226167706 + "\u6761\u7EB9\u5B9D\u77F3\u767D\u7D2B\u88C5\u88E4\u5B50": -6486872360777337388 + "\u6761\u7EB9\u5B9D\u77F3\u767D\u7D2B\u88C5\u978B\u5B50": 7786028156699263733 + "\u6761\u7EB9\u5B9D\u77F3\u88C5\u7537\u53D1": -5335057375281624894 + "\u6761\u7EB9\u5C0F\u793C\u670D\u7FA4": 6589387107397066034 + "\u6761\u7EB9\u5C0F\u793C\u670D\u8155": 736806818883232902 + "\u6761\u7EB9\u5C0F\u793C\u670D\u978B": 5577449293632527460 + "\u6761\u7EB9\u8774\u8776\u857E\u4E1D\u5973\u88C5\u4E0A\u8863": -9006118060030361131 + "\u6761\u7EB9\u8774\u8776\u857E\u4E1D\u88C5\u4E0A\u8863": -1365598330125822722 + "\u6761\u7EB9\u8774\u8776\u857E\u4E1D\u88C5\u4E0B\u8863": 4539311589220738492 + "\u6761\u7EB9\u8774\u8776\u857E\u4E1D\u88C5\u62A4\u8155": -6790870423136722921 + "\u6761\u7EB9\u8774\u8776\u857E\u4E1D\u88C5\u978B\u5B50": -6664150291855261551 + "\u6761\u7EB9\u8774\u8776\u88C5\u5973\u53D1": 7110396169727394944 + "\u6765": -5190975025022986171 + "\u6768\u6811": -3779792270872942266 + "\u677E\u67CF\u5EF6\u5E74": -5178779078398411853 + "\u677E\u6EAA\u6E14\u4E50\u56FE": -77223338731888276 + "\u677E\u7EB9\u53E4\u5251": -1273724636714579200 + "\u677E\u9AA8\u957F\u9752\u67DC": -7624341008777708474 + "\u677E\u9E64\u94A7\u5929\u5C4F": -7291810602958582781 + "\u677E\u9F20": 2675778661114748114 + "\u677F\u65A7": -4173563173384037427 + "\u677F\u6B63\u7537\u88C5\u4E0A\u8863": -5634385941990561638 + "\u677F\u6B63\u7537\u88C5\u88E4\u5B50": 4656094727120534944 + "\u677F\u6B63\u7537\u88C5\u978B\u5B50": 7767576175773028338 + "\u677F\u6B63\u88C5\u7537\u53D1": -439401170753967047 + "\u6781\u4E50\u9E1F": -5719511436536500448 + "\u6781\u9177\u88C5": -2328177900930864827 + "\u6781\u9177\u88C5\u4E0A\u8863": -5317383041338373803 + "\u6781\u9177\u88C5\u978B\u5B50": 1542205562101953828 + "\u6784\u88C5\u7535\u864E": -3928166005407398555 + "\u6797\u4FCA\u6770\u7684\u4E13\u8F91(2)": -2096496227330945676 + "\u6797\u4FCA\u6770\u88C5\u4E0A\u8863": -1412440568193366801 + "\u6797\u4FCA\u6770\u88C5\u62A4\u8155": 3865159026000349106 + "\u6797\u4FCA\u6770\u88C5\u88E4\u5B50": -5766608067125571240 + "\u6797\u4FCA\u6770\u88C5\u978B\u5B50": 4009774593109320 + "\u67AA\u624B\u957F\u98CE\u8863\u5973-\u4E0A\u8EAB": 8420454604747871724 + "\u67AA\u624B\u957F\u98CE\u8863\u5973-\u4E0B\u8EAB": 6661606820344884685 + "\u67AA\u624B\u957F\u98CE\u8863\u5973-\u5934\u53D1": 8062460035627700783 + "\u67AA\u624B\u957F\u98CE\u8863\u5973-\u978B": 8061068087253746674 + "\u67AB\u6811": 710348276048659512 + "\u67AD\u96C4\u4E4B\u51A0": -851372223286654890 + "\u67AF\u6728\u6756": -6759770737224711328 + "\u67AF\u8363\u6756": -699834598231041788 + "\u67AF\u840E\u7684\u624B \u526F\u672C": -7679045778555060006 + "\u67CF\u6811": -5093219059937463759 + "\u67D3\u8272\u5242\u793C\u5305": -503657835678974921 + "\u67D3\u8272\u7684\u5B9D\u56FE": 2427560795515229527 + "\u67D3\u8840\u7684\u7AF9\u7B1B": 2971243567900708196 + "\u67D3\u8840\u7684\u9C7C\u76AE\u53E3\u888B": 5819441063511052886 + "\u67DA\u6728\u63CF\u91D1\u5F25\u52D2\u69BB": -4041137967072565683 + "\u67E0\u6AAC\u8272\u67D3\u6599": 7652568161678849008 + "\u67E0\u6AAC\u8272\u67D3\u8272\u5361": -1121129804451476670 + "\u67E5\u7279\u9152\u7EFF": 730982169639855391 + "\u67F3\u53F6\u53CC\u5200": 2853472638193603980 + "\u67F3\u6811": -8947899875878890569 + "\u6807\u8BB0\u7684\u5B9D\u56FE": 4174076254045304613 + "\u6811\u679D": -2786723480143331627 + "\u6811\u79CD": 358678923915649830 + "\u6811\u82D7": 1044507641364561605 + "\u683C\u5B50\u9A6C\u7532\u7537\u88C5\u4E0A\u8863": -656558353230945657 + "\u683C\u5B50\u9A6C\u7532\u7537\u88C5\u5E3D\u5B50": -1084903549853947949 + "\u683C\u5B50\u9A6C\u7532\u7537\u88C5\u88E4\u5B50": -8695688087051837922 + "\u683C\u5B50\u9A6C\u7532\u7537\u88C5\u978B\u5B50": 6924397213082390932 + "\u6842\u5706": -2944234760196899598 + "\u6842\u5B50": 5915020051639406032 + "\u6842\u679D": -6781226600839351994 + "\u6842\u82B1\u9152": 8282441913578923964 + "\u6842\u82B1\u9152\u7CDF": -1012107318682287162 + "\u6843\u5FC3": -7095982914743461707 + "\u6843\u6728\u5251": 243637016889592890 + "\u6843\u6728\u5C0F\u6BB5": 7381305736092580813 + "\u6843\u6728\u624B\u638C\u6A21\u677F": 7310778531249755373 + "\u6843\u6728\u6756\u67C4": -2503212694093660796 + "\u6843\u6728\u6B27\u5F0F\u77EE\u67DC": 1912162969074199618 + "\u6843\u6728\u8282\u6263": 7808281334812088008 + "\u6843\u6811": 1182568806238517770 + "\u6843\u7B261": 3932041267569319831 + "\u6843\u7B262": -5399934385087894906 + "\u6843\u7B263": -8814127602739506389 + "\u6843\u7B264": 4149350322739366046 + "\u6843\u7EA2\u8272\u67D3\u6599": 1502901831688592073 + "\u6843\u82B1\u76AE\u5973\u88C5\u4E0A\u8863": 4025557782981424177 + "\u6843\u82B1\u76AE\u5973\u88C5\u62A4\u8155": 4366232397810775909 + "\u6843\u82B1\u76AE\u5973\u88C5\u978B\u5B50": -1587311778842426979 + "\u6843\u82B1\u88C5\u5973\u53D1": 5187174375901559708 + "\u6854\u5B50\u5587\u53ED": 387039835665918013 + "\u6854\u69D4\u9F99\u9AA8\u6C34\u8F66": 332224357243684223 + "\u6866\u6811": -7245422337044456122 + "\u6881\u795D\u4E4B\u7FFC": -3527437995361725740 + "\u6885\u7EB9\u96D5\u82B1\u67DC": -4910238627001589701 + "\u6885\u82B1\u9E7F": 3373014947491871480 + "\u68A6\u5E7B\u4E4B\u4E1D": -4481728327827275702 + "\u68A6\u5E7B\u4E4B\u7231": 3145289991169349766 + "\u68A6\u5E7B\u4E4B\u7EB1": 8859288570288813730 + "\u68A6\u5E7B\u4E4B\u7FFC": 6915229230426691642 + "\u68A6\u5E7B\u4E4B\u821E": -7555319351120477203 + "\u68A6\u5E7B\u4E4B\u9732": 595238321448780793 + "\u68A6\u5E7B\u4EAE\u7247\u5973\u4E0A\u8863": 7495716798624881727 + "\u68A6\u5E7B\u4EAE\u7247\u5973\u5934\u53D1": 2114978101254772756 + "\u68A6\u5E7B\u4EAE\u7247\u5973\u624B\u5957": 7185765017964379810 + "\u68A6\u5E7B\u4EAE\u7247\u5973\u978B\u5B50": 1767014891723399796 + "\u68A6\u5E7B\u5C11\u5973\u88C5\u4E0A\u8863": 7553192275100713696 + "\u68A6\u5E7B\u5C11\u5973\u88C5\u5934\u53D1": -6389599383850946744 + "\u68A6\u5E7B\u5C11\u5973\u88C5\u62A4\u8155": 8977938490981531562 + "\u68A6\u5E7B\u5C11\u5973\u88C5\u978B\u5B50": 7520026130643339714 + "\u68A6\u9B47\u98DE\u5251": -6684896504624607473 + "\u68A7\u6850": -361398037106037005 + "\u68A8\u6728\u4E24\u4EEA\u67B6\u5B50\u5E8A": -1004233387685983434 + "\u68A8\u6811": -1606036782476729391 + "\u68B3\u5B50\u9570\u5200": -6384553552827342443 + "\u68C9\u5E03": 4117078997452217740 + "\u68C9\u5E03\u978B\u5E95": -843185652751871541 + "\u68C9\u7EBF": -1751614273101863967 + "\u68C9\u82B1": 5570928763053735839 + "\u68D2\u7403\u68CD": 7290480960340373462 + "\u68D5\u6988\u6811": 5452386832880007786 + "\u68D8\u523A\u97AD": 5423214052649654515 + "\u68D8\u6728\u68D2": 876157326844092322 + "\u6930\u58F3\u7EFF\u67D3\u6599": 6614534791840829485 + "\u6960\u6728\u6D77\u68E0\u7EB9\u5706\u51F3": 6617594470589220394 + "\u6978\u6728\u9576\u7FE0\u591A\u5B9D\u683C": 649203588452317963 + "\u6984\u77F3": -4002572002638026423 + "\u6986\u6728\u96D5\u82B1\u6848": -749075549033056339 + "\u6989\u6728\u53E4\u5178\u6B27\u5F0F\u5E8A": 7755407466288630941 + "\u6989\u6728\u7985\u5FC3\u62D4\u6B65\u5E8A": -1988196575271950398 + "\u6995\u6811": 5313634666062758641 + "\u6995\u6811\u987B": 3724822795143076089 + "\u69B4\u77F3": 7593495667002098844 + "\u6A31\u6728\u6728\u7897": 7579742604417933832 + "\u6A31\u82B1\u5973\u88D9\u88C5\u4E0A\u8863": 3237190201754967969 + "\u6A31\u82B1\u5973\u88D9\u88C5\u4E0B\u8863": -1153220981108765685 + "\u6A31\u82B1\u5973\u88D9\u88C5\u5934\u53D1": 3727453401708526967 + "\u6A31\u82B1\u5973\u88D9\u88C5\u62A4\u8155": -6905220353088466205 + "\u6A31\u82B1\u5973\u88D9\u88C5\u978B\u5B50": -1546992797743137937 + "\u6A31\u82B1\u6811": 681313123813971012 + "\u6A59\u5473\u82AC\u8FBE": -224272348814303412 + "\u6A59\u5FC3\u51E4\u68A8": -4309615093637167718 + "\u6A59\u7389": 676781678934473838 + "\u6A59\u8272\u67D3\u8272\u5242": 1118262259090578497 + "\u6A59\u8272\u68C9\u7EBF": -5121857183036840369 + "\u6A61\u6728\u96D5\u82B1\u56DB\u67F1\u5E8A": 6742488482689572783 + "\u6A61\u6811": -2035006800803670938 + "\u6B22\u4E50\u6DD8\u6DD8\u5305": -322944346934276432 + "\u6B23\u6B23\u5411\u8363": 6004258997658054314 + "\u6B27\u5F0F\u523A\u7EE3\u68B3\u5986\u51F3": -6904910901028628710 + "\u6B27\u5F0F\u53E4\u5178\u5E03\u827A\u6C99\u53D1": 3141913245484777500 + "\u6B27\u5F0F\u5929\u9E45\u7ED2\u9760\u80CC\u6905": 3965319150249398177 + "\u6B27\u5F0F\u5EFA\u7B51": 3374213241221149601 + "\u6B27\u5F0F\u82B1\u575B1": 4169591971746550947 + "\u6B27\u5F0F\u82B1\u575B2": 5459450678706887153 + "\u6B27\u5F0F\u82B1\u575B3": -6098163326463775900 + "\u6B27\u5F0F\u9662\u843D": -8824998475302347152 + "\u6B27\u5F0F\u96D5\u82B1\u68B3\u5986\u51F3": 2962554181575882256 + "\u6B27\u7F8E\u4F01\u9E45\u7279\u5DE5\u961F": 6210623677321134656 + "\u6B27\u7F8E\u6597\u725B\u72AC": -4751671160438643955 + "\u6B27\u7F8E\u6CF0\u8FEA\u718A": 1080571280393642180 + "\u6B27\u7F8E\u7280\u725B": 2735278855100806964 + "\u6B27\u7F8E\u9752\u86D9\u9A91\u5BA0": 4078819350122612897 + "\u6B27\u7F8E\u9E2D\u5634\u517D": 6083583899666519781 + "\u6B64\u5730\u65E0\u94F6": 1325718091895178535 + "\u6B66\u4FA0\u5927\u5E08": 8628021155361191150 + "\u6B66\u4FA0\u6280\u80FD\u4E66": -7292739777749025960 + "\u6B66\u4FA0\u661F\u76D8": -1776988011240617232 + "\u6B66\u5668\u5E93": -5144003871275472472 + "\u6B66\u5A01\u4EE4": -8646247472625064644 + "\u6B66\u72B6\u5143\u8170\u4F69": -6647068895991740147 + "\u6B66\u8005\u7684\u798F\u97F3": -6794381301340366205 + "\u6B66\u8005\u7684\u798F\u97F31": -6532664537798385649 + "\u6B66\u8005\u7684\u798F\u97F32": -3795215245481711820 + "\u6B7B\u4EA1\u4E4B\u6212": -3695161051176700810 + "\u6B7B\u6CBC\u6212": 2116978758315374833 + "\u6B7B\u6CBC\u79D8\u6CD5\u88E4": 5853445751022755999 + "\u6B7B\u6CBC\u8170\u4F69": 5986417263636061873 + "\u6B7B\u6CBC\u8F7B\u94E0": -3796712091175593870 + "\u6B7B\u6CBC\u91CD\u76D4": -5310688674458770544 + "\u6B7B\u6CBC\u91CD\u9774": 2863166262505267605 + "\u6B7B\u6CBC\u9879\u94FE": -4069577238235904587 + "\u6B7B\u7075\u6756": 1401075523569087135 + "\u6B7B\u795E\u9570\u5200": 585219024689506045 + "\u6B8B\u6728": -6647406515600281365 + "\u6B8B\u7834\u7684\u65E5\u8BB0": -1217218521170294145 + "\u6B8B\u7834\u7684\u6728\u7BB1": 7862923533576788058 + "\u6B8B\u7834\u7684\u85CF\u5B9D\u56FE": -2956136806310095894 + "\u6B8B\u7834\u7684\u8863\u7532": -1405817671358554445 + "\u6B8B\u7F3A\u7684\u7EB8\u6761": 1561821852619150553 + "\u6BC1\u706D\u4E4B\u6838": -2110938599445175959 + "\u6BD2\u56CA": 2087355252607876816 + "\u6BD2\u6DB2": 6613487252561182755 + "\u6BD2\u82B1\u7684\u79CD\u5B50": -824934322960930140 + "\u6BD2\u87FE": -7477663401900305235 + "\u6BD2\u87FE\u4E4B\u6CEA": 2410115469360466765 + "\u6BD2\u9CDE\u86C7\u76AE": -3691306440828423908 + "\u6BD4\u6B66\u6218\u573A\u672C\u670D\u51ED\u8BC1": 5368990066966078424 + "\u6BD4\u6B66\u6218\u573A\u8DE8\u670D\u51ED\u8BC1": 6376284932683551721 + "\u6BD4\u6B66\u6218\u573A\u95E8\u7968": 5284800137508979438 + "\u6BD4\u7FFC\u53CC\u98DE": 6046320545881579701 + "\u6BD4\u7FFC\u53CC\u98DE\u4E0A\u8863": -6060927080134919745 + "\u6BD4\u7FFC\u53CC\u98DE\u5973\u88C5\u4E0A\u8863": 20484017728913156 + "\u6BD4\u7FFC\u53CC\u98DE\u5973\u88C5\u88D9\u5B50": 8528735551535622328 + "\u6BD4\u7FFC\u53CC\u98DE\u5973\u88C5\u978B": 950070953601187723 + "\u6BD4\u7FFC\u53CC\u98DE\u7537\u88C5\u4E0A\u8863": -303298766158686610 + "\u6BD4\u7FFC\u53CC\u98DE\u7537\u88C5\u88E4\u5B50": 2510853072587183956 + "\u6BD4\u7FFC\u53CC\u98DE\u7537\u88C5\u978B": -516614291846897228 + "\u6BD5\u87AD\u517D\u5361\u72471": -4239091221074626103 + "\u6BD5\u87AD\u517D\u5361\u72472": 7907964146767261852 + "\u6BD5\u87AD\u517D\u5361\u72473": 4748558047724965854 + "\u6BD5\u87AD\u517D\u5361\u72474": -7929676811027136439 + "\u6BD5\u87AD\u517D\u5361\u72475": -3218945579492750565 + "\u6BD5\u87AD\u517D\u5361\u72476": -7563640259937868365 + "\u6BD5\u87AD\u517D\u5361\u72477": -838966079923894964 + "\u6BD5\u87AD\u517D\u5361\u72478": 2078266743847639613 + "\u6BDB\u5C3E\u5DF4\u7537\u4E0A\u8863": 4250603704692582674 + "\u6BDB\u5C3E\u5DF4\u7537\u5934\u53D1": -6506630113959252884 + "\u6BDB\u5C3E\u5DF4\u7537\u88E4\u5B50": 6645594025080624072 + "\u6BDB\u5C3E\u5DF4\u7537\u978B\u5B50": 9138047001765935263 + "\u6BDB\u8338\u8338\u7684\u5C3E\u5DF4": 2380979377384239573 + "\u6BDB\u866B\u98DE\u884C\u5668": -4524777406706077706 + "\u6C34\u4E0B\u4E09\u7532\u866B": -3493934796162339337 + "\u6C34\u4E4B\u7ED3\u6676": -3411175698834404959 + "\u6C34\u4E4B\u80C6": 7381126743226681152 + "\u6C34\u4E91\u73E0": -1368656809272587184 + "\u6C34\u5143\u7D20\u7CBE\u534E": 7598939815280424443 + "\u6C34\u539F\u77F3": -4407974996255242658 + "\u6C34\u5BD2\u7CBE\u534E": 9113256732838532817 + "\u6C34\u6676": 201923293017365724 + "\u6C34\u6676\u5B9D\u76D2": -6113841168115440051 + "\u6C34\u6676\u5FC3\u5F62\u5B9D\u76D2": -1258859262003916858 + "\u6C34\u6676\u68FA\u6750": -2827666754139895916 + "\u6C34\u6676\u6CD5\u5E3D": -3357667231092187938 + "\u6C34\u6676\u7403": 433122764456270835 + "\u6C34\u6676\u8282\u6756": 3894399237049309261 + "\u6C34\u68371": 7693080691969727411 + "\u6C34\u68372": 4757952581965095552 + "\u6C34\u68373": -8947875618303797944 + "\u6C34\u6BCD": 6287223101235050270 + "\u6C34\u7075\u77F3": 7862869068396146968 + "\u6C34\u795E\u5361": 5552044247151789683 + "\u6C34\u7CBE": -7484804629092475137 + "\u6C34\u7F50": -5341121008292499238 + "\u6C34\u8349": 6675691151209218920 + "\u6C34\u871C\u6843\u82AC\u8FBE": -868034001206641840 + "\u6C34\u997A1": -1294373300231458194 + "\u6C34\u997A2": 3869148294798011568 + "\u6C34\u997A3": 1396823246999866572 + "\u6C34\u997A4": 5254217773705282207 + "\u6C34\u9F99\u541F": 5027220656338036595 + "\u6C38\u6052\u70C8\u7130": -8892729596922074019 + "\u6C38\u7ED3\u540C\u5FC3": 1823780636729520957 + "\u6C42\u6551": 2793782338220042613 + "\u6C50\u65CF13a\u523A\u5BA2\u804C\u4E1A\u88C5\u4E0A\u8863": 3104092793850758999 + "\u6C50\u65CF13a\u523A\u5BA2\u804C\u4E1A\u88C5\u62A4\u8155": -1672446716580439791 + "\u6C50\u65CF13a\u523A\u5BA2\u804C\u4E1A\u88C5\u88E4\u5B50": 5776440962911608306 + "\u6C50\u65CF13a\u523A\u5BA2\u804C\u4E1A\u88C5\u978B\u5B50": 2394023515131414745 + "\u6C50\u65CF13a\u5DEB\u5E08\u804C\u4E1A\u88C5\u4E0A\u8863": 1169171761849923711 + "\u6C50\u65CF13a\u5DEB\u5E08\u804C\u4E1A\u88C5\u62A4\u8155": -8569452445049249330 + "\u6C50\u65CF13a\u5DEB\u5E08\u804C\u4E1A\u88C5\u88E4\u5B50": 6288026092385088648 + "\u6C50\u65CF13a\u5DEB\u5E08\u804C\u4E1A\u88C5\u978B\u5B50": -867450946395465496 + "\u6C50\u65CF13b\u523A\u5BA2\u804C\u4E1A\u88C5\u4E0A\u8863": -711240293417507424 + "\u6C50\u65CF13b\u523A\u5BA2\u804C\u4E1A\u88C5\u62A4\u624B": 6078369105986967188 + "\u6C50\u65CF13b\u523A\u5BA2\u804C\u4E1A\u88C5\u88E4\u5B50": 1350567616673811691 + "\u6C50\u65CF13b\u523A\u5BA2\u804C\u4E1A\u88C5\u978B\u5B50": 8812273042723989028 + "\u6C50\u65CF13b\u5DEB\u5E08\u804C\u4E1A\u88C5\u4E0A\u8863": 2794937667391584870 + "\u6C50\u65CF13b\u5DEB\u5E08\u804C\u4E1A\u88C5\u62A4\u624B": 4117738200206514333 + "\u6C50\u65CF13b\u5DEB\u5E08\u804C\u4E1A\u88C5\u88E4\u5B50": -1143671959757863623 + "\u6C50\u65CF13b\u5DEB\u5E08\u804C\u4E1A\u88C5\u978B\u5B50": -298435712602121288 + "\u6C50\u65CF\u5149\u7FFC1\u5C0F": 5259573937558730026 + "\u6C50\u65CF\u5149\u7FFC2\u5C0F": -4775716991902303362 + "\u6C50\u65CF\u5149\u7FFC3\u5C0F": 3465952414883014657 + "\u6C50\u65CF\u5149\u7FFC4\u5C0F": 6269254231862991707 + "\u6C50\u65CF\u5149\u7FFC5\u5C0F": -6561362113598424625 + "\u6C50\u65CF\u5149\u7FFC6\u5C0F": -9213321362297022632 + "\u6C50\u65CF\u5149\u7FFC7": 795030373071097888 + "\u6C50\u65CF\u5149\u7FFC8": 5407759897451982551 + "\u6C50\u65CF\u51B0\u51CC\u7FC5": 7277567661861396994 + "\u6C50\u65CF\u523A\u5BA2\u804C\u4E1A\u88C5\u4E0A\u8863": 1874864347127505819 + "\u6C50\u65CF\u523A\u5BA2\u804C\u4E1A\u88C5\u62A4\u8155": 8451196879671591999 + "\u6C50\u65CF\u523A\u5BA2\u804C\u4E1A\u88C5\u88E4\u5B50": 26325244078271233 + "\u6C50\u65CF\u523A\u5BA2\u804C\u4E1A\u88C5\u978B\u5B50": -960176988932545663 + "\u6C50\u65CF\u52CB\u7AE0": 6586572653913057290 + "\u6C50\u65CF\u53CC\u9E1F\u5149\u7FFC": 3915911020722078708 + "\u6C50\u65CF\u5409\u5149": -888411665131755523 + "\u6C50\u65CF\u5723\u679D\u7FC5\u8180": -2991680134428305451 + "\u6C50\u65CF\u5723\u8BDE\u7FC5\u8180\u5C0F": -8020185502867370092 + "\u6C50\u65CF\u57FA\u7840\u7FC5\u81801": -3572921143282259032 + "\u6C50\u65CF\u57FA\u7840\u7FC5\u81802": 2789068275887781739 + "\u6C50\u65CF\u5DEB\u5E08\u804C\u4E1A\u88C5\u4E0A\u8863": -8428222582092257447 + "\u6C50\u65CF\u5DEB\u5E08\u804C\u4E1A\u88C5\u62A4\u8155": -8638807469673299461 + "\u6C50\u65CF\u5DEB\u5E08\u804C\u4E1A\u88C5\u88E4\u5B50": 5293123286962560027 + "\u6C50\u65CF\u5DEB\u5E08\u804C\u4E1A\u88C5\u978B\u5B50": 2839925003889280410 + "\u6C50\u65CF\u5E7B\u8776\u5149\u7FFC": -7176876225627836845 + "\u6C50\u65CF\u65F6\u95F4\u4E4B\u8F6E": 618898034209339943 + "\u6C50\u65CF\u70B9\u7FE0": 1996345182531182341 + "\u6C50\u65CF\u767D\u70BD\u7FC5": 2554560600568804253 + "\u6C50\u65CF\u805A\u82B1": 7013049986245615850 + "\u6C50\u65CF\u91D1\u9C7C": -8288234067987538044 + "\u6C50\u65CF\u9633\u5149\u8F89\u7FFC": -3277643832501448321 + "\u6C50\u65CF\u9713\u8679\u5149\u7FFC": 3688973751014083515 + "\u6C50\u65CF\u9B54\u7075\u7FC5\u8180": -4086788265403657786 + "\u6C5F\u5C71\u96EA": 6098379041925741805 + "\u6C64\u57061": -5940092236093826680 + "\u6C64\u57062": 3762926780380818161 + "\u6C64\u57063": -5750017803148992260 + "\u6C64\u57064": 6375178561921869925 + "\u6C89\u661F\u6212": 8383411444839169688 + "\u6C89\u6C34\u9F99\u96C0": 2257874953965078620 + "\u6C89\u9999": 2865686303139859636 + "\u6C89\u9C7C\u843D\u96C1": 4714352739662547005 + "\u6C89\u9ED8\u4E4B\u91D1": 4425730205476311763 + "\u6C99\u4E4B\u5854\u6CC9\u6C34": 202737142670449550 + "\u6C99\u4E4B\u5854\u96D5": -7049890336361664170 + "\u6C99\u53D1": 2017333395642366694 + "\u6C99\u6EE9\u900F\u660E\u88C5\u4E0A\u8863": 8056421683926619028 + "\u6C99\u6EE9\u900F\u660E\u88C5\u5934\u53D1": 8815107326621526940 + "\u6C99\u6EE9\u900F\u660E\u88C5\u88E4\u5B50": -4841344850203264610 + "\u6C99\u6EE9\u900F\u660E\u88C5\u978B\u5B50": 3983379722745295788 + "\u6C99\u6F0F": -838686203059135313 + "\u6C99\u6F20\u5224\u5B98\u7537\u4E0A\u8863": 6215631636901278481 + "\u6C99\u6F20\u5224\u5B98\u7537\u5934\u53D1": 1918337727771228732 + "\u6C99\u6F20\u5224\u5B98\u7537\u624B\u5957": 8450300402730456124 + "\u6C99\u6F20\u5224\u5B98\u7537\u88E4\u5B50": -2160045944996903253 + "\u6C99\u6F20\u5224\u5B98\u7537\u978B\u5B50": -5281782617389650104 + "\u6C99\u866B\u4E4B\u9CCD": -7454018654245363942 + "\u6C99\u866B\u7684\u786C\u58F3 ": 4958309075745010846 + "\u6CA5\u6CC9\u4E4B\u77DB": 3000466843115099755 + "\u6CA5\u6CC9\u957F\u77DB": 7237117040179741805 + "\u6CB3\u8C5A": 578796274589064189 + "\u6CB3\u9A6C\u5587\u53ED\u5C0F": -3510968079962762253 + "\u6CC9\u6C34": 4893806701182910095 + "\u6CD5\u5170\u7ED2\u5706\u5F62\u9760\u57AB": -8194467399229886115 + "\u6CD5\u534E\u6775": 6750076695221021787 + "\u6CD5\u5B9D01": 7423455727215128998 + "\u6CD5\u5B9D02": -785054978706443728 + "\u6CD5\u5B9D03": 8802533533935564346 + "\u6CD5\u5B9D04": -1820721764353317229 + "\u6CD5\u5B9D05": -7638723830601615488 + "\u6CD5\u5B9D06": -3640851938773157826 + "\u6CD5\u5B9D07": 7521026469684909504 + "\u6CD5\u5B9D08": 1369807247166193899 + "\u6CD5\u5B9D09": 2196270310568094032 + "\u6CD5\u5B9D10": -947436016224764180 + "\u6CD5\u5B9D11": -2061431962876817424 + "\u6CD5\u5B9D12": 2735963940312112127 + "\u6CD5\u5B9D13": -945134010688944662 + "\u6CD5\u5B9D14": 7608589882000564699 + "\u6CD5\u5B9D15": -3346014469159822192 + "\u6CD5\u5B9D16": -4180110291598430863 + "\u6CD5\u5B9D17": 2633579236119735335 + "\u6CD5\u5B9D18": 2686815080488993968 + "\u6CD5\u5E08\u5927\u5E08": -8557828188797091310 + "\u6CD5\u5E08\u6280\u80FD\u4E66": -6954913164475810319 + "\u6CD5\u5E08\u661F\u76D8": -1675533500884211013 + "\u6CD5\u5E08\u7684\u798F\u97F3": 4640024138746144767 + "\u6CD5\u5E08\u7684\u798F\u97F31": 3133270051282846969 + "\u6CD5\u5E08\u7684\u798F\u97F32": -431767488168549462 + "\u6CD5\u6756": 7283303651423434604 + "\u6CD5\u7403": -628819284732433766 + "\u6CD5\u7403\u756A\u8304": -2880819073169085619 + "\u6CD5\u7403\u7F8A": -7539717915310061060 + "\u6CD5\u7403\u94F8\u51771": -4177774304896699047 + "\u6CD5\u7403\u94F8\u517710": 7857920583155337360 + "\u6CD5\u7403\u94F8\u51772": 9217408817184182078 + "\u6CD5\u7403\u94F8\u51773": 1751947142365210333 + "\u6CD5\u7403\u94F8\u51774": -6746209930722759882 + "\u6CD5\u7403\u94F8\u51775": -5326414820771747546 + "\u6CD5\u7403\u94F8\u51776": 4379391153282046617 + "\u6CD5\u7403\u94F8\u51777": 6283612242552585879 + "\u6CD5\u7403\u94F8\u51778": -1859576851225697504 + "\u6CD5\u7403\u94F8\u51779": -2318384993161619815 + "\u6CD5\u7403\u996D": -8021363124459333386 + "\u6CD5\u8F6E": -8622914590361875953 + "\u6CE1\u6CE1\u68D2": -3297484533504634748 + "\u6CE1\u6CE1\u88D9\u5973\u88C5": 4512229827214097950 + "\u6CE1\u6CE1\u88D9\u5973\u88C5\u978B": 7250534915482900947 + "\u6CE2\u5E0C\u7C73\u4E9A\u4E0A\u8863": 6171477972989044274 + "\u6CE2\u5E0C\u7C73\u4E9A\u88E4\u5B50": -5954317014435589698 + "\u6CE2\u5E0C\u7C73\u4E9A\u978B": 6218058283019467619 + "\u6CE2\u65AF\u592A\u9633\u94DC\u5EA7\u949F": 8745990730503325537 + "\u6CE2\u65AF\u83CA": 1360048326120024268 + "\u6CE2\u6CE2\u9E1F\u5B9D\u5B9D": 6295150746609032387 + "\u6CE5\u9B3C": -8890147876584332555 + "\u6CE8\u5C04\u5668": 4871244535557553504 + "\u6CE8\u5C04\u836F\u5242": 39393402420725030 + "\u6CF0\u68EE": -5305263357775657813 + "\u6CF0\u6CC9\u4E61\u793C": -343346903528140531 + "\u6CF3\u88C5\u5973\u4E0A\u8863": 8672120465987918998 + "\u6CF3\u88C5\u5973\u77ED\u88E4": 1384794757787671685 + "\u6CF3\u88C5\u5973\u88F9\u88D9": -7817108115731342028 + "\u6CF3\u88C5\u5973\u978B": -2593045485921363471 + "\u6CF3\u88C5\u6591\u9A6C\u4E0A": 4990321471814826783 + "\u6CF3\u88C5\u6591\u9A6C\u4E0B": -5940570349380726905 + "\u6CF3\u88C5\u6591\u9A6C\u978B": -7197852273779145387 + "\u6CF3\u88C5\u7537\u77ED\u88E4": 306493975267627287 + "\u6CF3\u88C5\u7537\u978B": 5558590638195304036 + "\u6CF3\u88C5\u864E\u7EB9\u4E0A": 6274466936073979002 + "\u6CF3\u88C5\u864E\u7EB9\u4E0B": 5692385449858455854 + "\u6CF3\u88C5\u864E\u7EB9\u978B": -8748245604544587799 + "\u6CF3\u88C5\u8C79\u7EB9\u4E0A": 877732554130162073 + "\u6CF3\u88C5\u8C79\u7EB9\u4E0B": 7357104203496475104 + "\u6CF3\u88C5\u8C79\u7EB9\u978B": 687301985409100585 + "\u6D01\u767D\u4E4B\u4E1D": -2306617508264645301 + "\u6D01\u767D\u4E4B\u7231": -6078952697707159179 + "\u6D01\u767D\u4E4B\u7EB1": -1611375403092578763 + "\u6D01\u767D\u4E4B\u7FFC": 1385900101803812228 + "\u6D01\u767D\u4E4B\u821E": 7501431518550904363 + "\u6D01\u767D\u4E4B\u9732": 1086685659106016446 + "\u6D0B\u6854\u6897": -1184204911027518800 + "\u6D0B\u7EA2\u8272\u67D3\u6599": -829890241710640446 + "\u6D0B\u8471\u7D2B\u67D3\u6599": 1383523913989771571 + "\u6D17\u70B9\u5361": -2661854271508021417 + "\u6D17\u793C\u5C18\u5BF0\u5C60\u8D66": 3325463559184671348 + "\u6D17\u793C\u5C18\u5BF0\u5FA1\u884C": 1294600378048646998 + "\u6D1B\u53EF\u53EF\u6768\u6728\u68B3\u5986\u53F0": -2185622708808705665 + "\u6D1B\u9633\u7261\u4E39\u8BB0": 779774778616784826 + "\u6D1E\u5BDF\u4E4B\u773C": 1575321955744978773 + "\u6D1E\u7280\u9879\u94FE": -7425621021109736599 + "\u6D2A\u8352\u5C65": 6366131992237344489 + "\u6D2A\u8352\u62A4\u8155": -6904456774433721495 + "\u6D2A\u8352\u888D": 658417313987221655 + "\u6D2A\u8352\u88E4": 3282876754554671087 + "\u6D3B\u529B\u85E4\u6756": 3398395804138954446 + "\u6D41\u4E91\u62F1\u95E8": -1447944071162476765 + "\u6D41\u4E91\u7EB1": -7232942116916181379 + "\u6D41\u4E91\u9010\u98CE\u7B14\u7B52": 4017119234388040709 + "\u6D41\u5149\u4E0B\u94E0": 3708728889635980331 + "\u6D41\u5149\u4E4B\u4E1D": -6488819759027956010 + "\u6D41\u5149\u4E4B\u7231": 1866547585452198515 + "\u6D41\u5149\u4E4B\u7EB1": -1151485345333352647 + "\u6D41\u5149\u4E4B\u7FFC": 7136134059111358763 + "\u6D41\u5149\u4E4B\u821E": 4972756818875790448 + "\u6D41\u5149\u4E4B\u9732": -69340107854793768 + "\u6D41\u5149\u6218\u94E0": 1290203242986785736 + "\u6D41\u5149\u8155\u7532": -834987662999751877 + "\u6D41\u5149\u978B": -130146779287910644 + "\u6D41\u661F\u5251": 4286269993434830438 + "\u6D41\u706B\u4E4B\u77F3": 7205438481923410719 + "\u6D41\u706B\u77F3\u80A4": 4668630883583930564 + "\u6D41\u706B\u8776\u5143\u9B42": 1237034759698730476 + "\u6D41\u708E\u5200": -6364440244371541927 + "\u6D41\u82CF\u523A\u7EE3\u9760\u57AB": -2616303806900522347 + "\u6D41\u82CF\u5DE8\u83C7\u6811": -9078867148995902609 + "\u6D41\u8F6C\u6C34\u6676": -824603852112626023 + "\u6D41\u8F6C\u6C34\u6676\u793C\u5305": -7433154863209754471 + "\u6D41\u91D1\u5C81\u6708": 9079167419765229166 + "\u6D41\u91D1\u7CBD\u53F6": -6120890963767998785 + "\u6D41\u94F6\u5E01": 2507579537546007107 + "\u6D41\u971C\u5251": 2614455918210589406 + "\u6D45\u6D77\u6C99\u67D3\u6599": 1925557519575158341 + "\u6D45\u6D77\u6C99\u67D3\u8272\u5361": -9090023462886384569 + "\u6D51\u5929\u5C18\u964D": 5760382787805200019 + "\u6D51\u94C1\u67AA": 4474395996122313211 + "\u6D53\u60C5\u871C\u610F": 8310597534453603317 + "\u6D53\u60C5\u871C\u610F1": -3446808415130938398 + "\u6D53\u60C5\u871C\u610F\u679C\u7BEE": -6884062815422320024 + "\u6D53\u7F29\u80F6": 7148635732936071387 + "\u6D63\u718A\u5B9D\u5B9D\u5BF9\u5A03": -8601476210792915211 + "\u6D6A\u6F2B\u4E4B\u4E1D": 1947481284313646197 + "\u6D6A\u6F2B\u4E4B\u7231": 2606083496917010389 + "\u6D6A\u6F2B\u4E4B\u7EB1": 272817238361979162 + "\u6D6A\u6F2B\u4E4B\u7FFC": 268076942447133138 + "\u6D6A\u6F2B\u4E4B\u821E": -6440550419455515119 + "\u6D6A\u6F2B\u4E4B\u9732": -2869882192263928902 + "\u6D6A\u8776\u7CBE\u7075": -7284293923156274955 + "\u6D6E\u534E\u5251": -4813060657736537435 + "\u6D6E\u5C60\u68CD": 1657583318202638204 + "\u6D6E\u6C89\u5200": 7891022301499511569 + "\u6D6E\u7075\u5DE2\u7A74": 3940792080785378753 + "\u6D6E\u82B1\u5C0F\u4EAD\u8DEF\u706F": -3035874185065440510 + "\u6D77\u4E4B\u6218": 4177883900920988460 + "\u6D77\u5203\u51B0\u7687": 8980362702053823279 + "\u6D77\u5929\u4F69": -7648086440490097690 + "\u6D77\u5B50\u84DD\u67D3\u6599": -2007868268366181271 + "\u6D77\u661F": -4537631059036273257 + "\u6D77\u661F\u4EBA": 1790548273943971518 + "\u6D77\u67AF\u77F3\u70C2": 2763933808602434968 + "\u6D77\u67AF\u77F3\u70C2\u5370": -2068085227086149147 + "\u6D77\u6D0B\u5FBD\u8BB0": -2566853114066091178 + "\u6D77\u751F\u7075\u83C7": -1468014217807322595 + "\u6D77\u76D7\u55BD\u7F57\u7684\u5FC3\u810F": 2079001921098983995 + "\u6D77\u76D7\u5C9B\u5730\u5F62\u56FE": 8488328101484588170 + "\u6D77\u76D7\u8239\u957F\u7537\u88C5-\u62A4\u815532": -2621468396512817255 + "\u6D77\u76D7\u8239\u957F\u7537\u88C5-\u8863\u670D32": 6682101407478132006 + "\u6D77\u76D7\u8239\u957F\u7537\u88C5-\u88E4\u5B5032": 2579712676046958973 + "\u6D77\u76D7\u8239\u957F\u7537\u88C5-\u978B32": -1472893612063388777 + "\u6D77\u80C6": 7573492875170963027 + "\u6D77\u84DD\u4E4B\u77F3": -1318762635374308914 + "\u6D77\u84DD\u771F\u73D1\u9601": -5446053849812648288 + "\u6D77\u87BA\u6756": 2052935705507110053 + "\u6D77\u8D1D\u7D2B\u67D3\u6599": 1632197111126533446 + "\u6D77\u9519\u7FA4\u89C8": 6914088908460918718 + "\u6D77\u9A6C\u6C34\u5E55\u906E": 4271911377822049691 + "\u6D77\u9CD0\u7532": -270635124997478944 + "\u6D85\u78D0\u4E4B\u6756": 6224275008798615667 + "\u6DA1\u7EB9\u7EA2\u6728\u68B3\u5986\u53F0": -5320115314557707727 + "\u6DA4\u9B42\u77F3": 2004409285595249911 + "\u6DB5\u73CD\u5E7F\u6D4E\u6865": 1627726106377605153 + "\u6DB5\u865A\u9879\u94FE": 9183005237029000027 + "\u6DD8\u5B9D\u65B0\u624B\u793C\u5305": -9167170477699073257 + "\u6DEC\u4F53\u6563": 5538235088423848662 + "\u6DEC\u94C1\u5251": -1213978553330468404 + "\u6DF1\u6C34\u6740\u624B\u5361\u72471": 5436727662616433597 + "\u6DF1\u6C34\u6740\u624B\u5361\u72472": 7181424589011581335 + "\u6DF1\u6C34\u6740\u624B\u5361\u72473": 3151075637296126731 + "\u6DF1\u6C34\u6740\u624B\u5361\u72474": -8762221840034951069 + "\u6DF1\u6C34\u6740\u624B\u5361\u72475": -278108363501545724 + "\u6DF1\u6C34\u6740\u624B\u5361\u72476": 7574157817394582118 + "\u6DF1\u6C34\u6740\u624B\u5361\u72477": 1133869711193392057 + "\u6DF1\u6C34\u6740\u624B\u5361\u72478": 316620368905938700 + "\u6DF1\u6D77\u6050\u9C7C": -8464937618098854164 + "\u6DF1\u6E0A\u4E4B\u77F3": -7604028727756545045 + "\u6DF1\u6E0A\u9B54\u6676": -7203173348151730526 + "\u6DF1\u6F6D\u65CB\u9F9F\u7684\u786C\u58F3": 3697246571164665217 + "\u6DF7\u5143\u4F69": 6163928953484108593 + "\u6DF7\u5143\u9524": -7774607352800253501 + "\u6DF7\u6C8C\u4E4B\u5143": -6107141153828312533 + "\u6DF7\u6C8C\u65A7": -6079348160836168743 + "\u6DF7\u6C8C\u7CBE\u5143": -7404701078038830871 + "\u6E05\u5C18": -1091548158639440787 + "\u6E05\u660E\u4E0A\u6CB3\u56FE": 8060550789405894685 + "\u6E05\u6C34": -3345548330473230859 + "\u6E05\u6F13\u7075\u74A7\u77F3": 3940233819174295552 + "\u6E05\u7FFC\u8713": -1189018466688001634 + "\u6E05\u9759\u7409\u7483": -259001198055151068 + "\u6E14\u6A35\u620F\u846B\u82A6": -6825272993682746398 + "\u6E29\u60C5\u4E4B\u4E1D": -4312947818093442080 + "\u6E29\u60C5\u4E4B\u7231": 4189973853552601934 + "\u6E29\u60C5\u4E4B\u7EB1": 1470016359707776486 + "\u6E29\u60C5\u4E4B\u7FFC": -7172229182389831128 + "\u6E29\u60C5\u4E4B\u821E": -672186045438180641 + "\u6E29\u60C5\u4E4B\u9732": 6191242332531804299 + "\u6E29\u6DA6\u7684\u4E0D\u7834\u9879\u94FE": 2604846543602809432 + "\u6E29\u6DA6\u7684\u5F80\u590D\u9879\u94FE": -8006527585343593769 + "\u6E29\u6DA6\u7684\u6298\u51B2\u9879\u94FE": -3242217276385743960 + "\u6E29\u6DA6\u7684\u65E0\u4F24\u4F69": -7135218177537831697 + "\u6E29\u6DA6\u7684\u6D77\u5929\u4F69": 2437413423812118374 + "\u6E29\u6DA6\u7684\u7075\u9F9F\u4F69": -8618662441737675271 + "\u6E29\u6DA6\u7684\u76C8\u6CF0\u9879\u94FE": -3537264645581689967 + "\u6E29\u6DA6\u7684\u7956\u9F99\u4F69": 7477807543796694633 + "\u6E29\u99A8\u795D\u798F": 1744988088138883312 + "\u6E38\u8361\u7684\u9E66\u9E49": -1558909173705586083 + "\u6E38\u9F99\u8170\u9970": -2735504638403359720 + "\u6E56\u84DD\u8272\u67D3\u6599": 5755888107426138177 + "\u6E90\u751F\u7CBE\u534E": 5821742169339290951 + "\u6EA2\u60C5\u91D1\u676F2015": 6162079131041294196 + "\u6EA2\u6C34\u4E4B\u77F3": -634426536558045233 + "\u6EAA\u5C71\u79CB\u9AD8\u56FE": -7723876077999419122 + "\u6EAA\u5C71\u7EDD\u5C18\u56FE": -3418334229065767305 + "\u6EE1\u5929\u661F": -9013661476316545720 + "\u6F06\u76D2\u77F3\u677F\u781A": -522227024846925767 + "\u6F0F\u6597": 2375230540735993610 + "\u6F4B\u6EDF\u957F\u5200": 1699489250288465692 + "\u6F5C\u4F0F\u6218\u5730\u62A5\u544A": 8225446372957245070 + "\u705E\u6865\u98CE\u96EA\u56FE": 6043108856182819768 + "\u706B\u4E4B\u7CBE": -3413042390502252392 + "\u706B\u4E91\u4E2D\u7EA7": -8662256890599610898 + "\u706B\u4E91\u521D\u7EA7": 1608230917918179962 + "\u706B\u4E91\u90AA\u795E\u5251": 8829753651882848211 + "\u706B\u4E91\u9AD8\u7EA7": -5656167407922739123 + "\u706B\u5143\u7D20\u7CBE\u534E": -4382520455565039535 + "\u706B\u51E4\u51F0": -759725251971893661 + "\u706B\u51E4\u51F0\u7FC5\u818032": 162969858530130733 + "\u706B\u5C16\u67AA": -4013882363321887353 + "\u706B\u5CA9\u6212": 2930524895480927118 + "\u706B\u5CA9\u79D8\u6CD5\u888D": -1807053565229979013 + "\u706B\u5CA9\u8170\u4F69": 3999904510183682589 + "\u706B\u5CA9\u8F7B\u9774": 6655953432736898026 + "\u706B\u5CA9\u91CD\u7532": -5900432963988838160 + "\u706B\u5CA9\u9879\u94FE": 7228432756240503805 + "\u706B\u6811\u70DF\u82B1": 2066351577265388938 + "\u706B\u708E\u7ED3\u6676": -7840492976248776561 + "\u706B\u70E7\u5929": 3373634275261474111 + "\u706B\u7130\u56FE\u817E": -7303054728307430710 + "\u706B\u7130\u97F3\u7B26": -7778594937350939564 + "\u706B\u72D0\u5C3E": -2159578464595202008 + "\u706B\u773C\u9879\u94FE": 6452059052274369161 + "\u706B\u77F3": 6629785253979249196 + "\u706B\u77F3\u4E4B\u5FC3": 7282098492363297340 + "\u706B\u78F7\u77ED\u6756": 2141452068011138453 + "\u706B\u795E\u5361": 2966934117008812795 + "\u706B\u795E\u795D\u878D": -2484174525015764025 + "\u706B\u7EA2\u4E4B\u77F3": 6183229970948971802 + "\u706B\u7EA2\u7070\u70EC": 1235576164612999269 + "\u706B\u7EA2\u7684\u8D1D\u58F3": 3531589190340683447 + "\u706B\u7FBD": 2931115553567150659 + "\u706B\u80C6\u4E4B\u9524": 5343488587365093673 + "\u706B\u836F\u7528\u6728\u70AD": -6850755235158560772 + "\u706B\u836F\u7528\u785D\u77F3": 4535663789294227499 + "\u706B\u836F\u7528\u786B\u78FA": -2768884969269835170 + "\u706B\u83B2\u7EB9\u7AE0": 9116245924466120854 + "\u706B\u9E21": -6157392400650178594 + "\u706D\u5EA6\u62F3\u5957": -1583589670624982384 + "\u706D\u5F71\u4E4B\u5F13": 4750027904679456331 + "\u706D\u795E\u7BAD": 3481374865418301898 + "\u706D\u9B42\u62F3\u5957": 8091891858598105629 + "\u706F\u6620\u5EB7\u5B89\u4E94\u8272\u6C64\u5706": 7490225484888639512 + "\u706F\u7070": 2541638105650984831 + "\u706F\u89D2\u94A9\u6A90\u4EAD": 7076985165812632260 + "\u706F\u9B42": 1788581567707876355 + "\u7070\u59D1\u5A18\u4E0A\u8863": 7931352603901215632 + "\u7070\u59D1\u5A18\u5934\u53D1": -5389312028583737700 + "\u7070\u59D1\u5A18\u738B\u5B50\u4E0A\u8863": -3629907666621133149 + "\u7070\u59D1\u5A18\u738B\u5B50\u5934\u53D1": -315007030769804879 + "\u7070\u59D1\u5A18\u738B\u5B50\u88E4\u5B50": 7825430235674840450 + "\u7070\u59D1\u5A18\u738B\u5B50\u978B\u5B50": 6851358544392996483 + "\u7070\u59D1\u5A18\u978B\u5B50": 7999969901473672630 + "\u7070\u6697\u7684\u4E2D\u8206\u5E7B\u672C": 4085189107253840833 + "\u7070\u6697\u7684\u6467\u610F\u4E4B\u722A": -3489313087889673033 + "\u7070\u6697\u7684\u7F1A\u5730\u4E4B\u854A": -3720556532529478712 + "\u7070\u6697\u7684\u85CF\u7A7A\u5947\u5377": -2257832339292272004 + "\u7070\u6697\u7684\u8F9F\u5FC3\u4E4B\u7389": -234719954228614267 + "\u7070\u6697\u7684\u9E3F\u8499\u79D8\u6284": -8481374046465800401 + "\u7075\u4F50\u62A4\u8EAB\u7B26": 1123749095351581227 + "\u7075\u4F50\u9B54\u529B\u7B26": 9026202291582979733 + "\u7075\u5149\u5B9D\u76D2": -1175551302343545205 + "\u7075\u5149\u9879\u94FE": -917320931817734013 + "\u7075\u529B\u94F8\u6750": -7523253826856211118 + "\u7075\u52A8\u4E4B\u5146": 4103908845858661319 + "\u7075\u52A8\u7ED3\u6676": 7381311799076115424 + "\u7075\u53CD\u9707\u4E4B\u5377": 5678091752658675509 + "\u7075\u58C1\u5760\u5B50": 7975175946911842655 + "\u7075\u5A92": -5744521549203846781 + "\u7075\u5E7D\u9759\u95E8": -4935960129627015117 + "\u7075\u609F\u4E4B\u8BED": 6230210420723412451 + "\u7075\u65CF13a\u5251\u7075\u804C\u4E1A\u88C5\u4E0A\u8863": 6710116777584117526 + "\u7075\u65CF13a\u5251\u7075\u804C\u4E1A\u88C5\u62A4\u8155": -5967725684233407066 + "\u7075\u65CF13a\u5251\u7075\u804C\u4E1A\u88C5\u88E4\u5B50": -3387005834329280058 + "\u7075\u65CF13a\u5251\u7075\u804C\u4E1A\u88C5\u978B\u5B50": 7107775525642840843 + "\u7075\u65CF13a\u9B45\u7075\u804C\u4E1A\u88C5\u4E0A\u8863": -5545756887509739595 + "\u7075\u65CF13a\u9B45\u7075\u804C\u4E1A\u88C5\u62A4\u8155": -4554565109476003361 + "\u7075\u65CF13a\u9B45\u7075\u804C\u4E1A\u88C5\u88E4\u5B50": -7386879135141904039 + "\u7075\u65CF13a\u9B45\u7075\u804C\u4E1A\u88C5\u978B\u5B50": -4361934562185991445 + "\u7075\u65CF13b\u5251\u7075\u804C\u4E1A\u88C5\u4E0A\u8863": 1761848975048440574 + "\u7075\u65CF13b\u5251\u7075\u804C\u4E1A\u88C5\u62A4\u624B": -9063841288205038656 + "\u7075\u65CF13b\u5251\u7075\u804C\u4E1A\u88C5\u88E4\u5B50": -1763495316517869898 + "\u7075\u65CF13b\u5251\u7075\u804C\u4E1A\u88C5\u978B\u5B50": 4893255834234483015 + "\u7075\u65CF13b\u9B45\u7075\u804C\u4E1A\u88C5\u4E0A\u8863": 5840504720601254853 + "\u7075\u65CF13b\u9B45\u7075\u804C\u4E1A\u88C5\u62A4\u624B": -1374721257751505729 + "\u7075\u65CF13b\u9B45\u7075\u804C\u4E1A\u88C5\u88E4\u5B50": 7605907737969467440 + "\u7075\u65CF13b\u9B45\u7075\u804C\u4E1A\u88C5\u978B\u5B50": -6687903701993772863 + "\u7075\u65CF\u5251\u7075\u804C\u4E1A\u88C5\u4E0A\u8863": 7821475689089218682 + "\u7075\u65CF\u5251\u7075\u804C\u4E1A\u88C5\u62A4\u8155": 5278766193592033208 + "\u7075\u65CF\u5251\u7075\u804C\u4E1A\u88C5\u88E4\u5B50": 3862455377718556933 + "\u7075\u65CF\u5251\u7075\u804C\u4E1A\u88C5\u978B\u5B50": -2070923205270218064 + "\u7075\u65CF\u53CC\u5B50\u98CE\u7B5D": -6540890017762126380 + "\u7075\u65CF\u660E\u795E\u98CE\u7B5D": -7644095360044790926 + "\u7075\u65CF\u673A\u68B0\u7075": -8619368822076490720 + "\u7075\u65CF\u6C34\u7389\u98CE\u7B5D": 846657378135311300 + "\u7075\u65CF\u6DF1\u6D77\u9B54\u9CD0": -6113872500007199314 + "\u7075\u65CF\u767D\u96C0": 4126704099251383412 + "\u7075\u65CF\u7FE9\u7FE9\u821E\u8776\u98DE\u884C\u5668": -5585850831757328193 + "\u7075\u65CF\u84B8\u6C7D\u5E7B\u60F3": 997235076169098861 + "\u7075\u65CF\u98CE\u7B5D": 3229144720769194167 + "\u7075\u65CF\u98CE\u7B5D\u68A6\u9B47": -6181417491595883519 + "\u7075\u65CF\u9B45\u7075\u804C\u4E1A\u88C5\u4E0A\u8863": 3474343638080853781 + "\u7075\u65CF\u9B45\u7075\u804C\u4E1A\u88C5\u62A4\u8155": 5050044755598210210 + "\u7075\u65CF\u9B45\u7075\u804C\u4E1A\u88C5\u88E4\u5B50": -6854739250859163881 + "\u7075\u65CF\u9B45\u7075\u804C\u4E1A\u88C5\u978B\u5B50": -2478071547770400504 + "\u7075\u667A\u6CD5\u65D7": 6964975636698184024 + "\u7075\u667A\u6CD5\u7B7E": -3623424788370389923 + "\u7075\u66E6\u5C65": 799744024751043297 + "\u7075\u66E6\u62A4\u8155": -3529344313322429149 + "\u7075\u66E6\u888D": -8396941447254569177 + "\u7075\u66E6\u88E4": 7528221651370748259 + "\u7075\u673A\u5B9D\u5323": -7656873430175088402 + "\u7075\u673A\u5C0F\u5323": -1789513210765527140 + "\u7075\u6839\u4ED9\u77F3": -4385139341505944992 + "\u7075\u6C14\u85E4\u6756": 3624741493939349811 + "\u7075\u6CC9\u5947\u917F": -2016023927494709380 + "\u7075\u706B": -8983611934302770020 + "\u7075\u7280\u57CE\u7CBE\u5143": 6546247809239742241 + "\u7075\u7280\u6247": -80911064369710536 + "\u7075\u7280\u91CA\u5384\u5251": 552638533183658592 + "\u7075\u72D0": -1861562017412225000 + "\u7075\u72EE\u4E0B\u94E0": -1933001013031361174 + "\u7075\u72EE\u6218\u94E0": -8128046703994885874 + "\u7075\u72EE\u8155\u7532": -7660589462907531717 + "\u7075\u72EE\u978B": 2371171438021091847 + "\u7075\u7334\u4E4B\u8840": -7535314135377508178 + "\u7075\u77F3\u7CBE\u534E": -2797875260677151902 + "\u7075\u7B26\u5C65": -7448966172591650653 + "\u7075\u7B26\u62A4\u8155": -103841383990154359 + "\u7075\u7B26\u888D": 2521406110220910515 + "\u7075\u7B26\u88E4": -7248298598815123539 + "\u7075\u829D": 6651411439430246506 + "\u7075\u829D\u7F8A\u8102\u7389\u5982\u610F": 7954606423293856999 + "\u7075\u836F": 3109116489477089373 + "\u7075\u86EE\u79D8\u836F": -9168362343374838391 + "\u7075\u8725\u730E\u4EBA\u5140\u7A81\u5B50": -5540297608667971109 + "\u7075\u9B42\u56FE\u817E": 7287724647410458424 + "\u7075\u9B42\u5B9D\u73E0": 1217515194224528929 + "\u7075\u9B42\u77F3": -6980108636457824117 + "\u7075\u9B42\u788E\u7247": -8726014607484603983 + "\u7075\u9B42\u7CBE\u534E": 3669217149300252544 + "\u7075\u9F9F\u4F69": 3800426777455886503 + "\u707C\u6D41\u62F3\u5957": -6502288210633270774 + "\u707E\u5384\u5E7B\u5F71": 1586909952980412015 + "\u707F\u70C2\u7EDA\u7FBD\u5973\u88C53-\u62A4\u815532": -5499743106048372136 + "\u707F\u70C2\u7EDA\u7FBD\u5973\u88C53-\u8863\u670D32": -2290205766116524444 + "\u707F\u70C2\u7EDA\u7FBD\u5973\u88C53-\u88E4\u5B5032": -6193661659708827791 + "\u707F\u70C2\u7EDA\u7FBD\u5973\u88C53-\u978B32": 8814229126056668381 + "\u707F\u70C2\u7EDA\u7FBD\u7537\u88C5-\u62A4\u815532": 6299738135402683381 + "\u707F\u70C2\u7EDA\u7FBD\u7537\u88C5-\u8863\u670D32": -1458569514898060798 + "\u707F\u70C2\u7EDA\u7FBD\u7537\u88C5-\u88E4\u5B5032": -8167906917686665264 + "\u707F\u70C2\u7EDA\u7FBD\u7537\u88C5-\u978B32": -8300463983302597879 + "\u708E\u51B0\u7FC5\u5C0F": 4165545643684672899 + "\u708E\u51FB\u94F3": 1753582833061546529 + "\u708E\u5239\u94F3": -588331824411712243 + "\u708E\u706D\u94F3": -8141001540114216822 + "\u708E\u7075\u94F3": 3238373182940178518 + "\u708E\u707C\u94F3": 8229486838277227510 + "\u708E\u70C8\u94F3": 2692719881432253592 + "\u708E\u7206\u5E7B\u5F71": -2392409786937822931 + "\u708E\u7206\u94F3": -7456298864877413339 + "\u708E\u7CBE": -8145612282980557026 + "\u708E\u9B42\u94F3": 1426482586493491397 + "\u708E\u9F99\u94F3": -7901525150899838917 + "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u4E0A\u8863": -4163007309056931449 + "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u4E0A\u8863\u7EFF": 6147874714174510668 + "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u5934\u53D1": -2027835236788811372 + "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u62A4\u8155": -352636325359611522 + "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u62A4\u8155\u7EFF": -5370024814980907684 + "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u88E4\u5B50": -2512159729453257965 + "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u88E4\u5B50\u7EFF": 5112695011032531950 + "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u978B\u5B50": 6957260980292809410 + "\u70AB\u9177\u7EC5\u58EB\u7537\u88C5\u978B\u5B50\u7EFF": -7591520829946126098 + "\u70B9\u94A2\u67AA": 4100597251264272373 + "\u70BC\u4E39\u7089": 260951131167925900 + "\u70BC\u4E39\u7089_2": -6853294218188664282 + "\u70BC\u4E39\u7089_3": 3431816472768197572 + "\u70BC\u72F1\u4E4B\u706B": -675010637302707523 + "\u70BC\u72F1\u817F\u7532": -1736956820581941883 + "\u70BC\u72F1\u8896\u7532": -2277206282219051520 + "\u70BC\u72F1\u91D1\u7532": -5329209242937190708 + "\u70BC\u72F1\u9774": -2341741647627304406 + "\u70BC\u96F7\u957F\u65A7": -6720073856947739711 + "\u70BD\u5929\u51E4\u51F0": 2379432449074730504 + "\u70BD\u5929\u6212": -4634767414229422876 + "\u70BD\u5CA9\u788E\u7247": -381993808403980878 + "\u70BD\u6012\u591C\u53C9": -2230518823226326877 + "\u70BD\u60C5\u5956\u676F2015": 6046528571373497363 + "\u70BD\u70C8\u62F3\u5957": 8535433832801007065 + "\u70BD\u7130\u9524": -579855701548017583 + "\u70C1\u5149\u4E4B\u77F3": 5799843640790705841 + "\u70C2\u94F6\u67AA": -7170300285172066637 + "\u70C8\u706B\u6050\u9E1F": -5702290937800855764 + "\u70C8\u708E\u6756": 2388926613077636660 + "\u70C8\u708E\u73E0\u7C89": -5008446501384484014 + "\u70C8\u7130\u4E4B\u5B50": -2432497231606135110 + "\u70C8\u7130\u5B9D\u73E0": -3612215056664399186 + "\u70C8\u7EA2\u6C34\u7389": 2676935479075080524 + "\u70C8\u7EA2\u98DE\u5251": -6665516336513020676 + "\u70DF\u6597": 8766033912255399242 + "\u70DF\u6C5F\u53E0\u5D82\u56FE": 1272433727952168767 + "\u70DF\u7070": 2340703667702751001 + "\u70DF\u7164": 8756829639131664820 + "\u70DF\u82B1": -95061977749945291 + "\u70DF\u82B11": -6429279535576802636 + "\u70DF\u888B": 8441714568535090906 + "\u70E4\u597D\u7684\u8089": -8068821742591494891 + "\u70E4\u9C7C": -8754525338891963798 + "\u70E7\u706B\u68CD": 2924526771630655672 + "\u70E7\u997C\u5587\u53ED\u9053\u5177": -5439088787613119933 + "\u7115\u8840\u4E4B\u77F3": -6537262092035050657 + "\u711A\u5929\u4EE4": -6502617205503068022 + "\u711A\u5929\u6212": -6556192250762586289 + "\u711A\u6BC1\u7684\u65D7\u5E1C": -8565198322045535657 + "\u711A\u9633\u8361\u5929\u5C60\u8D66": -7886425291150527949 + "\u711A\u9633\u8361\u5929\u5FA1\u884C": 4276736782516133383 + "\u711A\u9633\u8C79\u5143\u9B42": -4711481529156783571 + "\u7130\u5149\u5F39": -4102348147770009419 + "\u715E\u7075\u9B3C\u5934\u9524": -212191754663139365 + "\u7164\u6C14\u706F": -8890998583651685603 + "\u7164\u7C89": 1445285492180672419 + "\u716E\u9F99\u5DEB\u5E08\u5C0F\u5DF4\u5C14\u7F55": -2659893549041852319 + "\u718A\u5587\u53ED": -1541265600515911227 + "\u718A\u5E7C\u5E74": 7838570956121329303 + "\u718A\u5E7C\u5E74amd": 8208755852676441885 + "\u718A\u6210\u5E74": 9108701500098430086 + "\u718A\u732B\u9A91\u5BA0": -7597222918885723643 + "\u7194\u5CA9\u4E4B\u77F3": 4096782263808707958 + "\u7194\u5CA9\u7532\u7247": -7937934772128160857 + "\u7194\u5CA9\u7ED3\u6676": 4132121012784099489 + "\u7194\u7130\u4E4B\u6838": -7284126085787607868 + "\u71A0\u661F\u4E89\u8F89": -6443622389391428756 + "\u71A0\u661F\u6CB3\u540A\u6865": -8277092080111589749 + "\u71C3\u60C5\u7075\u682A": -3575408863773661167 + "\u71C3\u70E7\u4E4B\u5FC3": -471062423103658635 + "\u71C3\u70E7\u7684\u5389\u707C\u9B3C\u4E27\u773C\u7403": 1756108145583066828 + "\u71D5\u751F\u7684\u5934\u53D1": 882127248467894651 + "\u71D5\u77F3\u5760\u5B50": -3869596119976232086 + "\u71D5\u7A9D": 4668234558821668262 + "\u71D5\u9A8F\u5343\u91D1": -2561877070037824400 + "\u7206\u70B8\u5934\u5957\u88C5\u7537\u4E0A\u8863": 6181737121156755833 + "\u7206\u70B8\u5934\u5957\u88C5\u7537\u5934\u53D1": -2130642716877275223 + "\u7206\u70B8\u5934\u5957\u88C5\u7537\u624B\u5957": 1179418845108515479 + "\u7206\u70B8\u5934\u5957\u88C5\u7537\u88E4\u5B50": -1393539392395111169 + "\u7206\u70B8\u5934\u5957\u88C5\u7537\u978B\u5B50": -5191719304058778667 + "\u7206\u7834\u62F3": 8363352446533642167 + "\u7206\u7AF91": -5431809740702431144 + "\u7206\u7AF92": 1480582003045511895 + "\u7206\u7AF93": -4856073272520447206 + "\u7206\u7AF94": 1849422653517821121 + "\u7206\u7AF9\u559C\u5230": 738688076775345351 + "\u7206\u7AF9\u6765\u798F": 8225823339424163145 + "\u7206\u88C2\u5F39": 8843838692594206187 + "\u7206\u96F7\u957F\u9524": 2080479170793432649 + "\u7231\u4F60": -6708085139756575242 + "\u7231\u4F60\u4E00\u68D2\u69CC": 6012287227483411923 + "\u7231\u4F60\u6CA1\u5546\u91CF": -5083011929240884322 + "\u7231\u4F60\u751F\u751F\u4E16\u4E16": -4113759761076719517 + "\u7231\u5982\u6F6E\u6C34": 3489555916110672035 + "\u7231\u5FC3\u6C14\u7403": 8144231050871735308 + "\u7231\u83B2\u8BF4": -8151889131525776238 + "\u7259\u5237": 6257683108853389902 + "\u725B\u4EBA": -792671551920153487 + "\u725B\u6BDB\u97AD": 3386966851202763270 + "\u725B\u76AE\u5F13\u5F26": -5630136171599383415 + "\u725B\u76AE\u7EDE\u4E1D": 3207510153401224929 + "\u725B\u76AE\u8FDE\u63A5\u73AF": -912173098813935650 + "\u725B\u89D2\u6212": -3904219827747934213 + "\u725B\u89D2\u9879\u94FE": -981807523000037065 + "\u725B\u903C\u7684\u6212\u6307": 3007035389967119953 + "\u725B\u903C\u7684\u7269\u54C1\u793C\u76D2": 7463758309294273169 + "\u725B\u903C\u7684\u8170\u5760": -3583318240268074220 + "\u725B\u90CE\u7EC7\u5973": -9206118002944887200 + "\u725B\u9EC4": -2952052588728061586 + "\u725B\u9EC42": -4588552502278417662 + "\u7261\u4E39": -7825352788368213129 + "\u7261\u4E39\u677E\u96C0": 737326662382520938 + "\u7267\u573A": -3340954690739479797 + "\u7279\u4F9B\u7834\u7A7A\u4EE4": 718311183431018216 + "\u7279\u5236\u58A8\u6C41": 8538923266351027031 + "\u7279\u6548\u72EC\u89D2\u517D": 7546366904178275625 + "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u5973\u4E0A\u8863": -2801063681895599356 + "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u5973\u5934\u53D1": -5678231310298524557 + "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u5973\u62A4\u8155": -7020021953446950180 + "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u5973\u978B\u5B50": 4518016818607652113 + "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u7537\u4E0A\u8863": 991716513181850655 + "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u7537\u4E0B\u8863": 7015120592694144671 + "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u7537\u5934\u53D1": -8823967964576274834 + "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u7537\u62A4\u8155": 933448052162876141 + "\u7279\u6548\u84DD\u5B9D\u77F3\u88C5\u7537\u978B\u5B50": -6062961321294466860 + "\u7279\u7B49\u5956": -6672061479032165839 + "\u7280\u89D2": 3908127445907177388 + "\u7280\u89D2\u6212": 639126715367557461 + "\u72B0\u72F3 \u526F\u672C": 8581193970869384561 + "\u72C2\u5203\u7B26": 1004547867263297134 + "\u72C2\u6B22\u8282\u5973\u5934\u53D1": -1244769079548436405 + "\u72C2\u6B22\u8282\u5973\u88C5\u4E0A\u8EAB": 7065948741308097690 + "\u72C2\u6B22\u8282\u5973\u978B\u5B50": 4845555784584138876 + "\u72C2\u6B22\u8282\u7537\u5934\u53D1": -6915505192910139088 + "\u72C2\u6B22\u8282\u7537\u88C5\u4E0A\u8EAB": -2086810282509197134 + "\u72C2\u6B22\u8282\u7537\u88C5\u624B\u5957": 1623767050262455811 + "\u72C2\u6B22\u8282\u7537\u88C5\u88E4\u5B50": -6108321205547973254 + "\u72C2\u6B22\u8282\u7537\u978B\u5B50": 7724555163792085353 + "\u72C2\u6F9C\u5200": 6466810078434155742 + "\u72C2\u72EE\u6218\u65A7": -6046466665570810035 + "\u72C2\u9B54\u5200": -8827543876919768962 + "\u72C4\u9F99\u5EB7\u8138\u8C31": 8229498914698004379 + "\u72D0\u72F8\u5587\u53ED": -7697627633771564872 + "\u72D7\u5708": -5000233744149737817 + "\u72D7\u5E7C\u5E74": -8565941674753699959 + "\u72D7\u72D7\u5587\u53ED": -8918054451584161772 + "\u72EC\u5C71\u7389\u4F69": -8727781645331452983 + "\u72EC\u6B65\u5200": 376377680837920523 + "\u72EC\u89D2\u517D\u9ED1": -943989868680520301 + "\u72EC\u89D2\u96F7\u5C0A\u7684\u9057\u4FE1": -5573895414176752902 + "\u72EE\u543C\u91CD\u7532": 4853134484614005972 + "\u72EE\u5B50": 2703141624223555764 + "\u72EE\u5B50\u9C7C": -6396043462371896632 + "\u72EE\u5FC3\u9879\u94FE": -5473977332149919100 + "\u72EE\u775B": 6215373545800636546 + "\u72EE\u9E6B": -83730746976075171 + "\u72EE\u9E6B32": -2689572799788028259 + "\u72FC\u4EBA\u4FE1\u7269": -529272746787865476 + "\u72FC\u65CF\u5BC6\u4EE4": -1716279766636688259 + "\u72FC\u65CF\u5FBD\u8BB0": -6670065947126812187 + "\u72FC\u65CF\u706B\u70AC": 3322897924124285736 + "\u72FC\u722A": -7337899902015321309 + "\u72FC\u7259\u68D2": 3833599560050889674 + "\u72FC\u7259\u7BAD": 3657947175288021704 + "\u72FC\u7259\u9879\u94FE": 2393925773280561352 + "\u72FC\u76AE\u5E3D\u6A90": 5184731807943908085 + "\u72FC\u76AE\u62A4\u5FC3\u955C\u7EC4\u4EF6": -511992182719614508 + "\u72FC\u76AE\u62A4\u8155\u7EC4\u4EF6": -757948908169146884 + "\u72FC\u76AE\u62A4\u819D\u7EC4\u4EF6": -8627993667383739893 + "\u72FC\u76AE\u62A4\u8E1D\u7EC4\u4EF6": 3429503646513455218 + "\u72FC\u76AE\u98D8\u5E26\u7EC4\u4EF6": -758184771719184741 + "\u730E\u53C9": -6106771465450035451 + "\u731B\u6BD2\u6DB2": 8951602980279402204 + "\u731E\u7301\u5C71\u732B": -8274319207658720445 + "\u732A\u5934\u5587\u53ED\u9053\u5177": -6260530112288110696 + "\u732A\u6210\u5E74": 2369715346733919436 + "\u732B\u5934\u9E70": 6170891739972905336 + "\u732B\u5E7C\u5E74": 4687707014211484080 + "\u732B\u732B\u5587\u53ED": -7449935890965009154 + "\u732B\u773C\u6212": -1026499246796335989 + "\u732B\u773C\u77F3\u6212\u6307": 3075988346860772187 + "\u7334\u5B50\u5587\u53ED": 293820918335443168 + "\u7334\u5B50\u5750\u9A91": -6754617906632301000 + "\u7334\u5E74\u9526\u56CA": -5689152694190748399 + "\u7360\u7259": 7168254559143566534 + "\u7360\u7259\u72FC": 5258207248989765697 + "\u7384\u5149\u98DE\u9B45": -1532108304576719630 + "\u7384\u51A5\u73E0": -5384443306250069949 + "\u7384\u51A5\u957F\u9524": 6817964865771280472 + "\u7384\u51B0\u7ED3\u6676": -8948625622375524304 + "\u7384\u51B0\u9879\u94FE": -5005508942903307191 + "\u7384\u547D\u5305": 6114482917939176054 + "\u7384\u5929\u4E3932": -1138407219087538298 + "\u7384\u5929\u6212": -4358378087081569191 + "\u7384\u5929\u6B8B\u9875": 2068971642835948737 + "\u7384\u5F71": -430611425973652677 + "\u7384\u5F71\u9000\u9B54\u5251": 2760070235771329710 + "\u7384\u5FB7\u4E4B\u5251": -1376727300822215348 + "\u7384\u5FB7\u53CC\u5251": 5493343171496374454 + "\u7384\u6676\u6756": 317599185690114537 + "\u7384\u690E\u4E4B\u5F13": 6408046183666088574 + "\u7384\u690E\u4E4B\u6756": 7499291490027581572 + "\u7384\u6B66\u4E4B\u5217": 6258853460828516853 + "\u7384\u6B66\u4E4B\u5730": -8270488815471057191 + "\u7384\u6B66\u4E4B\u5929": -273883777733167811 + "\u7384\u6B66\u4E4B\u5B87": -9062568709512759003 + "\u7384\u6B66\u4E4B\u5BBF": -4117249350248925055 + "\u7384\u6B66\u4E4B\u5E99": -7700707251495590609 + "\u7384\u6B66\u4E4B\u5F20": -7161038228734422122 + "\u7384\u6B66\u4E4B\u65E5": 8684334718162065258 + "\u7384\u6B66\u4E4B\u6603": 6587379023289510051 + "\u7384\u6B66\u4E4B\u6708": 7432472611780802740 + "\u7384\u6B66\u4E4B\u6D2A": -1835703522159576838 + "\u7384\u6B66\u4E4B\u76C8": 7556107928209408239 + "\u7384\u6B66\u4E4B\u8352": -1511162974279924560 + "\u7384\u6B66\u4E4B\u8FB0": 7430415184130115342 + "\u7384\u6B66\u4E4B\u9EC4": 1429010414440481687 + "\u7384\u6B66\u523B\u5370": -5288749657477456121 + "\u7384\u6B66\u78D0\u73BA": -4415319450839417329 + "\u7384\u706B\u98DE\u525132": 7637843433904229309 + "\u7384\u7075\u6728": 9101473541758502994 + "\u7384\u7532\u7B26": 3637434799828611143 + "\u7384\u771F\u5251": 5218338861762431059 + "\u7384\u78F7\u7BAD": -6991908295737841585 + "\u7384\u7ED2\u72EC\u89D2\u4ED9\u7684\u9AA8\u9AD3": 4418420953719883446 + "\u7384\u8352\u4E4B\u8840": -6962240164058900304 + "\u7384\u8352\u8840\u9B42": -6466473660714380206 + "\u7384\u864E": 8139137666281335399 + "\u7384\u86C7\u73E0": 1614395212480200493 + "\u7384\u91D1\u6B8B\u9875": -4820424141713338300 + "\u7384\u9274\u4E39": -5321879688779306458 + "\u7384\u9274\u4E39\u793C\u5305": 2975742357800274168 + "\u7384\u94A2\u62F3\u5957": 6430218141124627405 + "\u7384\u94C1\u4EE4\u724C": 6993712284476875898 + "\u7384\u94C1\u5757": 2722851361260733298 + "\u7384\u94C1\u5F29\u673A": -8274939806149717619 + "\u7384\u94C1\u65B9\u575E": -843750354685751458 + "\u7384\u94C1\u77F3": 5996282943645781551 + "\u7384\u94C1\u7CBE\u91D1": 2874450025224078430 + "\u7384\u94C1\u836F\u5BA4": 2152753528308874073 + "\u7384\u94C1\u91CD\u9524": 3591668217497127977 + "\u7384\u94C1\u952D": -4997151441256495378 + "\u7384\u9619\u5947\u67A2\u73AF\u6CD5\u7CFB": -6681883324053033403 + "\u7384\u9619\u5947\u67A2\u73AF\u7269\u7406": 1452695492444577624 + "\u7384\u9634\u5200": -5712397939073752226 + "\u7384\u9B42\u5305": -2182652713144398789 + "\u7384\u9EC4\u5C65": 2043906159984306744 + "\u7384\u9EC4\u62A4\u8155": -1954138602054438848 + "\u7384\u9EC4\u888D": -2349290204061931066 + "\u7384\u9EC4\u88E4": 8711973075472273035 + "\u7389\u4F69\u8170\u997012": -2230139445438171957 + "\u7389\u4F69\u8170\u997013": -8700088791475838447 + "\u7389\u5154\u5448\u7965": 1723972413304925246 + "\u7389\u5154\u9001\u798F": 1756141147013490548 + "\u7389\u5200\u950B\u94F8\u6A21": 8047223531890155474 + "\u7389\u5251\u5203\u94F8\u6A21": 9065561142640883620 + "\u7389\u5802\u89D0\u5323": -5605099866181039155 + "\u7389\u58F6\u9879\u94FE": 7559027000715923130 + "\u7389\u5982\u610F": -8660311157017534202 + "\u7389\u5B50\u6BCD\u65A7\u94F8\u6A21": 2881123451196467091 + "\u7389\u5B50\u6BCD\u9524\u94F8\u6A21": -451875821114652195 + "\u7389\u6212": -2441816732129353190 + "\u7389\u6307\u73AF\u94F8\u6A21": -285316403834641665 + "\u7389\u65A7\u5203\u94F8\u6A21": 8343540256318927192 + "\u7389\u6843\u80F8\u6263": -6198268342463437282 + "\u7389\u6E05\u5361": 6377244198811294535 + "\u7389\u7483\u68B5\u6676": 3587686498581360522 + "\u7389\u77F3\u739B\u7459\u6212\u630712": -3852987925623394707 + "\u7389\u77F3\u739B\u7459\u6212\u630713": -5788791071502916467 + "\u7389\u7B1B": 3065715889279165230 + "\u7389\u7C73\u53CC\u624B\u957F": 5644394919345473316 + "\u7389\u81C2\u4EFB\u52A1\u5F00\u542F\u9053\u5177": 5198428075381430762 + "\u7389\u81C2\u914D\u65B9\u5305\u88F9": 8960645352708754547 + "\u7389\u81C2\u914D\u65B9\u5305\u88F92": -3243224081185825746 + "\u7389\u81C2\u914D\u65B9\u5305\u88F93": 8111177694658528346 + "\u7389\u91C9\u76E5\u6D17\u76C6": -5702242655156069203 + "\u7389\u91D1\u521A\u6775\u94F8\u6A21": -8437298218144358531 + "\u7389\u9524\u5934\u94F8\u6A21": -2383750974934618777 + "\u7389\u9AD3\u7BA1\u73E0\u9879\u94FE": 2540254858587323299 + "\u7389\u9E33\u9E2F\u5200\u94F8\u6A21": 2552272497144254632 + "\u7389\u9E33\u9E2F\u5251\u94F8\u6A21": 1802729722347459337 + "\u738B": 2473736435887720737 + "\u738B\u4E8C\u529B\u7684\u4F20\u5BB6\u5B9D": -7085280775596121390 + "\u738B\u5927\u529B\u7684\u4F20\u5BB6\u5B9D": -847882613092990533 + "\u738B\u5B50\u88C5\u4E0A\u8863": 2111463383934236369 + "\u738B\u5B50\u88C5\u4E0B\u8863": 8884448216883457610 + "\u738B\u5B50\u88C5\u978B": -2862718920314090268 + "\u738B\u5BB6\u7684\u4F20\u5BB6\u5B9D": -3891765614057608831 + "\u738B\u671D\u4E4B\u5FC3": 3282610900772286933 + "\u738B\u8005\u4E4B\u51A0": -6432817840756284973 + "\u738B\u8005\u4E4B\u529B": 6762642308008710583 + "\u738B\u8005\u4E4B\u6212": 1346986872375158727 + "\u738B\uFF08\u91D1\uFF09": 2887165624048624218 + "\u738B\uFF08\u94C1\uFF09": 4707274509747523715 + "\u738B\uFF08\u94DC\uFF09": 4254895805779319572 + "\u738B\uFF08\u94F6\uFF09": -453810064234359658 + "\u739B\u7459\u4E32": -4695188979890453333 + "\u739B\u7459\u4F5B\u73E0": -9037145731606615090 + "\u739B\u7459\u6212": -7653749046776326989 + "\u739B\u7459\u77F3\u94FE\u5B50": 7503099251497957389 + "\u73A9\u5076\u65F6\u88C5\u5973\u4E0A\u8863": -1920815026008927727 + "\u73A9\u5076\u65F6\u88C5\u5973\u4E0B\u8863": -3222079280389221165 + "\u73A9\u5076\u65F6\u88C5\u5973\u5934\u53D1": -7258273934476712357 + "\u73A9\u5076\u65F6\u88C5\u5973\u62A4\u8155": -8232005932667534271 + "\u73A9\u5076\u65F6\u88C5\u5973\u978B\u5B50": 3456852334520436506 + "\u73A9\u5076\u65F6\u88C5\u7537\u4E0A\u8863": 1775829028720495577 + "\u73A9\u5076\u65F6\u88C5\u7537\u5934\u53D1": -1463240621373448050 + "\u73A9\u5076\u65F6\u88C5\u7537\u62A4\u8155": -4404021527892450658 + "\u73A9\u5076\u65F6\u88C5\u7537\u978B\u5B50": -5310815701813267598 + "\u73A9\u5177\u718A\u732B": 3953588396416538150 + "\u73AB\u7470": 5952954211162518038 + "\u73AB\u7470-1": -1311365465351211937 + "\u73AB\u7470-11": 959675440966590327 + "\u73AB\u7470-3": 5245060426446495077 + "\u73AB\u7470\u5315\u9996": 8452505574336241605 + "\u73AB\u7470\u53CC\u59DD\u5706\u8033\u74F6": -5225819524133828362 + "\u73AB\u7470\u53CC\u624B\u77ED\u5175": -7437103618387480940 + "\u73AB\u7470\u73D0\u7405\u7B14\u7B52": 7796942464780682606 + "\u73AB\u7470\u82B1": 5940132258199790687 + "\u73AB\u7470\u82B1\u675F\u4E2D": -7515818772933912374 + "\u73AB\u7470\u82B1\u675F\u5927": 7853868994845201971 + "\u73AB\u7470\u82B1\u675F\u5C0F": -3363694084415629733 + "\u73AB\u7470\u82B1\u675F\u6700\u5C0F": 6436810959451706819 + "\u73AB\u7470\u9A91\u58EB\u88C5\u4E0A\u8863": 4316561461136875108 + "\u73AB\u7470\u9A91\u58EB\u88C5\u88E4\u5B50": 5249571427675679177 + "\u73AB\u7470\u9A91\u58EB\u88C5\u978B\u5B50": -4651164552260942217 + "\u73B0": -7426392489247237833 + "\u73B2\u73D1\u4FEE\u7F57": 7583676954122711420 + "\u73B3\u7441\u624B\u956F": -4004257803350557259 + "\u73BB\u7483\u978B": 8220957834337281913 + "\u73CA\u745A\u5C0F\u6BB5": -1599272307546636069 + "\u73CA\u745A\u6728\u624B\u638C\u6A21\u677F": -7393459560143664997 + "\u73CA\u745A\u6756\u67C4": -9209036462921317479 + "\u73CA\u745A\u6811": 7584139406599669180 + "\u73CA\u745A\u7EA2": 7758949308084976297 + "\u73CA\u745A\u8282\u6263": -2111210015111987097 + "\u73CD\u73E0\u5854": -7590678093692890434 + "\u73CD\u73E0\u5B9D\u5854": 2508377656986324395 + "\u73CD\u73E0\u6212": 1470498948900026453 + "\u73CD\u8D35\u7684\u73BB\u7247": 4704075456474480538 + "\u73D0\u7405\u5F69\u6885\u679D\u8D2F\u8033\u74F6": -8398083834648055706 + "\u73D0\u7405\u5F69\u7261\u4E39\u8D2F\u8033\u74F6": 7038471139505692683 + "\u73E0\u5B9D\u76D2": -7086025629612037111 + "\u73E0\u7391\u5E7B\u9752\u9E3E": -1227372920397933364 + "\u7403\u5F62\u73AB\u7470\u6302\u82B1": 1229193195518617763 + "\u7403\u8863\u5973\u4E0A\u8863": 7468014929276591984 + "\u7403\u8863\u5973\u77ED\u88E4": -7822755170543284509 + "\u7403\u8863\u7537\u4E0A\u8863": -7826449699737285274 + "\u7403\u8863\u7537\u77ED\u88E4": -4311002470156389783 + "\u7405\u740A\u8170\u9970": 8297554305792090072 + "\u7409\u66F2\u73AF\u77F31": 5134909126544803354 + "\u7409\u66F2\u73AF\u77F32": -945406772218195174 + "\u7409\u66F2\u73AF\u77F3\u7070": -8648373754766668752 + "\u7409\u66F2\u73AF\u77F3\u84DD": -8453700253040235460 + "\u7409\u66F2\u73AF\u77F3\u91D1": -3099063814190606351 + "\u7409\u7483\u5200\u950B\u94F8\u6A21": -2136960063898696119 + "\u7409\u7483\u5251\u5203\u94F8\u6A21": 3161577624425931377 + "\u7409\u7483\u5B50\u6BCD\u65A7\u94F8\u6A21": 5151021613782464256 + "\u7409\u7483\u5B50\u6BCD\u9524\u94F8\u6A21": 7387836751665942072 + "\u7409\u7483\u5B9D\u9274": -757814071369974819 + "\u7409\u7483\u6307\u73AF\u94F8\u6A21": -304840909644947917 + "\u7409\u7483\u65A7\u5203\u94F8\u6A21": -829311382152265443 + "\u7409\u7483\u7235\u676F": 5200860268019459398 + "\u7409\u7483\u8033\u676F": 2282945641830241174 + "\u7409\u7483\u91D1\u521A\u6775\u94F8\u6A21": -6590612565883852170 + "\u7409\u7483\u9524\u5934\u94F8\u6A21": 2526956979498221431 + "\u7409\u7483\u9E33\u9E2F\u5200\u94F8\u6A21": -7320408562855896665 + "\u7409\u7483\u9E33\u9E2F\u5251\u94F8\u6A21": -3811311998751100300 + "\u7425\u73C0\u871C\u8721": 3607676178780756087 + "\u743C\u9B42\u9B54\u587F": -2912507306009296700 + "\u745E\u517D\u5448\u7965\u9547\u7EB8": -4010425519309777989 + "\u7476\u6C60\u5927\u87E0\u6843": 808553180077284381 + "\u7476\u6C60\u5B09\u9E64\u6D6E\u96D5": 2943912551776712006 + "\u7476\u6C60\u732E\u5BFF\u56FE": -4541096479167615701 + "\u7487\u7391\u6756": 7874392877348535828 + "\u74DC\u74DE\u7EF5\u7EF5\u74F6": 2102591526374795317 + "\u74E6\u68F1\u9524": 3288980696838380221 + "\u74F6\u5B50": 8853771896857724608 + "\u74F6\u88C5\u7684\u6697\u5F71": -5879846491900176290 + "\u74F7\u6A3D\u58C1\u76CF": 8915523805449071892 + "\u74F7\u846B\u82A62012": 2306149228847849199 + "\u751F\u547D\u5973\u795E\u7684\u795D\u798F": -7214419329017352886 + "\u751F\u547D\u5973\u795E\u7684\u795D\u798F1": 1007579051200264170 + "\u751F\u547D\u5973\u795E\u7684\u795D\u798F2": -8440809305194682269 + "\u751F\u65E5\u5FEB\u4E50": 527301361720766642 + "\u751F\u65E5\u86CB\u7CD5": 193975621591208184 + "\u751F\u6B7B\u51DD\u606F\u5377\u8F74": -6924017506035251106 + "\u751F\u6B7B\u610F\u5883\u5377\u8F74": -1397659048155512712 + "\u751F\u6B7B\u611F\u609F\u5377\u8F74": -2235278189171753760 + "\u751F\u94C1": -6023881512529940198 + "\u7530\u56ED\u767D\u6866\u6805\u680F": 1918237955325204619 + "\u7530\u56ED\u98CE\u683C\u9676\u74F7\u5A03\u5A03": -4937741932164917544 + "\u7532": 1262000832805558101 + "\u7532\u7247": -5414528078074535527 + "\u7533": 1349077469834486262 + "\u7533\u5C60\u51A5\u7684\u9057\u4FE1": -5065783473336410730 + "\u7537\u4E2D\u56FD\u98CE\u4E0A\u886332": -3838468737892073513 + "\u7537\u4E2D\u56FD\u98CE\u5934\u53D132": 264389060026814620 + "\u7537\u4E2D\u56FD\u98CE\u88E4\u5B5032": -2728570207935176610 + "\u7537\u4E2D\u56FD\u98CE\u978B\u5B5032": -8192565750183884006 + "\u7537\u53E6\u7C7B\u7626\u8EAB\u88C5\u62A4\u815532": -2732795018198715614 + "\u7537\u5510\u88C5": -2691037876956751337 + "\u7537\u590F\u88C5-\u77ED\u88E432": 2462099890904282306 + "\u7537\u590F\u88C5-\u8863\u670D32": -5985191358277711468 + "\u7537\u590F\u88C5-\u978B32": -4102653086431013646 + "\u7537\u5DF4\u6D1B\u514B-\u8863\u670D": -2089666200567527605 + "\u7537\u5DF4\u6D1B\u514B-\u88E4\u5B50": -2474119887422742158 + "\u7537\u5DF4\u6D1B\u514B-\u978B": -6477263218966934225 + "\u7537\u5F0F\u6076\u9B54\u5957\u88C5\u4E0A\u8863": -8008980594069032763 + "\u7537\u5F0F\u6076\u9B54\u5957\u88C5\u5934\u53D1": 8737698637870061358 + "\u7537\u5F0F\u6076\u9B54\u5957\u88C5\u62A4\u8155": -1807436720978656247 + "\u7537\u5F0F\u6076\u9B54\u5957\u88C5\u88E4\u5B50": -2535876774000464687 + "\u7537\u5F0F\u6076\u9B54\u5957\u88C5\u978B\u5B50": 6494902358155876397 + "\u7537\u5FCD\u8005\u5934\u53D1": -8343893507258522369 + "\u7537\u5FCD\u8005\u624B\u5957": 1526651242902141233 + "\u7537\u5FCD\u8005\u8863\u670D": 1132892814690295067 + "\u7537\u5FCD\u8005\u88E4\u5B50": -568550413766046773 + "\u7537\u5FCD\u8005\u978B\u5B50": 6902162797574268896 + "\u7537\u65F6\u5C1A\u5957\u88C5-\u4E0A\u8EAB": 8983278408765836079 + "\u7537\u65F6\u5C1A\u5957\u88C5-\u4E0B\u8EAB": 2801702663433690034 + "\u7537\u65F6\u5C1A\u5957\u88C5-\u5934\u53D1": 3344436812647223748 + "\u7537\u65F6\u5C1A\u5957\u88C5-\u978B": 8993586549873802737 + "\u7537\u65F6\u5C1A\u8C79\u88C5\u4E0A\u8EAB": -614673165254526770 + "\u7537\u65F6\u5C1A\u8C79\u88C5\u4E0B\u8EAB": -7550451748916835066 + "\u7537\u65F6\u5C1A\u8C79\u88C5\u5E3D\u5B50": 6792827600967107280 + "\u7537\u65F6\u5C1A\u8C79\u88C5\u978B\u5B50": -1729872398829071270 + "\u7537\u6625\u5929\u6BDB\u8863\u88C5\u4E0A\u8863": -6735484521274035300 + "\u7537\u6625\u5929\u6BDB\u8863\u88C5\u5934\u53D1": -9043953885510307051 + "\u7537\u6625\u5929\u6BDB\u8863\u88C5\u88E4\u5B50": -1492759444591260100 + "\u7537\u6625\u5929\u6BDB\u8863\u88C5\u978B\u5B50": -8210116028746141488 + "\u7537\u673A\u8F66\u88C5\u4E0A\u8863": 5301293907017076683 + "\u7537\u673A\u8F66\u88C5\u5934\u53D1": -4331755359426938262 + "\u7537\u673A\u8F66\u88C5\u624B\u5957": 1675191779521321263 + "\u7537\u673A\u8F66\u88C5\u88E4\u5B50": -4672641289837370407 + "\u7537\u673A\u8F66\u88C5\u978B\u5B50": 5900041742965147929 + "\u7537\u68A6\u60F3\u7EC8\u6781\u88C5\u4E0A\u8863": 3270204402389828119 + "\u7537\u68A6\u60F3\u7EC8\u6781\u88C5\u88E4\u5B50": 4089709203326805586 + "\u7537\u68A6\u60F3\u7EC8\u6781\u88C5\u978B": -3138115322760837462 + "\u7537\u6BDB\u9886\u9ED1\u9B45\u88C5-\u5934\u53D132": -7601155181314627910 + "\u7537\u6BDB\u9886\u9ED1\u9B45\u88C5-\u8863\u670D32": -199696098305129434 + "\u7537\u6BDB\u9886\u9ED1\u9B45\u88C5-\u88E4\u5B5032": 9030796831731884709 + "\u7537\u6BDB\u9886\u9ED1\u9B45\u88C5-\u978B32": 4744499264688445226 + "\u7537\u6D77\u76D7\u88C5\u4E0A\u8863": 2311574540830244198 + "\u7537\u6D77\u76D7\u88C5\u5934\u53D1": -7175856092950869629 + "\u7537\u6D77\u76D7\u88C5\u88E4\u5B50": -7382203650017999127 + "\u7537\u6D77\u76D7\u88C5\u978B\u5B50": -8971627784554984162 + "\u7537\u73AB\u7470\u82B1\u7403": -7868359452706912899 + "\u7537\u7403\u978B": 2864972709539363506 + "\u7537\u7687\u51A0": 7478981987077285293 + "\u7537\u7729\u821E\u900F\u660E\u88C5-\u8863\u670D": 957665204732975557 + "\u7537\u7729\u821E\u900F\u660E\u88C5-\u88E4\u5B50": 2407815476859660290 + "\u7537\u7729\u821E\u900F\u660E\u88C5-\u978B": -9026937283907902149 + "\u7537\u8349\u88D9\u4E0A\u8863": -4850612426121188096 + "\u7537\u8349\u88D9\u5E3D\u5B50": -1604770290085821382 + "\u7537\u8349\u88D9\u62A4\u624B": 491400325626289506 + "\u7537\u8349\u88D9\u88E4\u5B50": 4738615380377823900 + "\u7537\u8349\u88D9\u978B\u5B50": 5842324988207348587 + "\u7537\u95EA\u94BB\u793C\u670D\u7537\u5934\u53D1": -5947456438191809365 + "\u7537\u9F9F\u7075\u88E4": -2771835005640634932 + "\u753B\u76AE": -4932459265827396116 + "\u754C": -7809831446970735905 + "\u7559\u767D\u5760\u5B50": 8561240847225485575 + "\u7559\u97F3\u6D77\u87BA": 1339654709025832058 + "\u756A\u83B2\u7EB9\u5B9D\u84DD\u6A3D\u7F4D": -8610604007969996828 + "\u75AF\u72C2\u65F6\u88C5\u7537\u4E0A\u8863": 5352826593343030283 + "\u75AF\u72C2\u65F6\u88C5\u7537\u62A4\u8155": -4844256971522223036 + "\u75AF\u72C2\u65F6\u88C5\u7537\u88E4\u5B50": -3539195789211430471 + "\u75AF\u72C2\u65F6\u88C5\u7537\u978B\u5B50": -5055699632645740840 + "\u75AF\u72C2\u7537\u5934\u53D1": 4180844813356230947 + "\u75AF\u72C2\u98DE\u732A": -7080404512655663048 + "\u75AF\u9B54\u6756": -4003139777182791515 + "\u75BE\u4E91\u4E4B\u4E1D": 1328461674809209183 + "\u75BE\u4E91\u4E4B\u7231": -1649467083609476400 + "\u75BE\u4E91\u4E4B\u7EB1": -2124258266204064440 + "\u75BE\u4E91\u4E4B\u7FFC": -6472373117506073871 + "\u75BE\u4E91\u4E4B\u821E": -1356296760592052083 + "\u75BE\u4E91\u4E4B\u9732": 6083479852667397939 + "\u75BE\u5149\u9879\u94FE": 1663380287431967169 + "\u75BE\u706B\u4E4B\u4E1D": -1521830066552976153 + "\u75BE\u706B\u4E4B\u7231": 236321880842880453 + "\u75BE\u706B\u4E4B\u7EB1": 5557342651753166598 + "\u75BE\u706B\u4E4B\u7FFC": 5094624604613924912 + "\u75BE\u706B\u4E4B\u821E": 427878707887645273 + "\u75BE\u706B\u4E4B\u9732": 6902860093390504827 + "\u75BE\u7535": -8977768253495597215 + "\u75BE\u7535\u6212": 3894945158179994235 + "\u75BE\u98CE\u4E39": -7305254571599204497 + "\u75BE\u98CE\u4E4B\u4E1D": -86284287987701436 + "\u75BE\u98CE\u4E4B\u7231": -1819950771596903009 + "\u75BE\u98CE\u4E4B\u7EB1": 3341620729222101539 + "\u75BE\u98CE\u4E4B\u7FFC": -1834739040745918130 + "\u75BE\u98CE\u4E4B\u821E": 276751869839582626 + "\u75BE\u98CE\u4E4B\u9732": -8095747982559345158 + "\u75BE\u98CE\u7834\u7A7A\u4EE4": -3177055512308392280 + "\u75D8\u795E\u5361": 666756594681166502 + "\u761F\u795E\u5361": -5329910753271283242 + "\u7678": -3704264295041598142 + "\u767B\u4ED9\u79D8\u7B08": -7545354905890316199 + "\u767B\u697C\u8D4B": 185591810385514221 + "\u767B\u96461\u5468\u5E74\u65F6\u88C5\u4E0A\u8EAB": -4099023666263634117 + "\u767B\u96461\u5468\u5E74\u65F6\u88C5\u4E0B\u8EAB": -1506407697713038375 + "\u767B\u96461\u5468\u5E74\u65F6\u88C5\u62A4\u8155": 777096709954645225 + "\u767B\u96461\u5468\u5E74\u65F6\u88C5\u978B\u5B50": -2168300961866533417 + "\u767D\u677E\u6B27\u5F0F\u5C55\u793A\u67DC": 3449499717171361798 + "\u767D\u6C34\u6676\u5760\u5B50": -829595520782484375 + "\u767D\u6C99\u6BD2\u9CDE\u86C7\u7259": 1610011140951265564 + "\u767D\u718A": -5990860695874337886 + "\u767D\u7389\u4E4B\u77F3": -7269231329528900124 + "\u767D\u7389\u621F\u8033\u7089": -7653908479504491703 + "\u767D\u7389\u77F3\u4F69": 5059519498839441690 + "\u767D\u7389\u956F": 2205436616415868424 + "\u767D\u7389\u96D5\u82B1\u7B14": 6286252327787654259 + "\u767D\u7EB1\u7EB1\u5973\u88C5\u5934\u53D1": 2198958940116333397 + "\u767D\u7EB1\u7EB1\u5973\u88C5\u62A4\u8155": -8671004975632785527 + "\u767D\u7EB1\u7EB1\u5973\u88C5\u8863\u670D": 6308860838550413181 + "\u767D\u7EB1\u7EB1\u5973\u88C5\u978B\u5B50": -439697099016874921 + "\u767D\u7FBD\u62A4\u7B26": 391085177534679300 + "\u767D\u8272\u4E09\u89D2\u94A2\u7434": -5014691418721219478 + "\u767D\u8272\u5723\u8BDE\u889C": 2456362035040065267 + "\u767D\u8272\u67D3\u6599": 8268438120023930325 + "\u767D\u8272\u67D3\u8272\u5242": -4769400482084386828 + "\u767D\u8272\u6C34\u6676\u77F3": 8834184026316921223 + "\u767D\u8272\u72FC\u7259": 5512540961448145025 + "\u767D\u8272\u836F\u7C89": -6427891892885724882 + "\u767D\u82B1": 7053813453029114717 + "\u767D\u83B2\u6212": 279989332043683428 + "\u767D\u843C\u6885": 5669014153814716504 + "\u767D\u8611\u83C7": 1578339893512368694 + "\u767D\u864E\u4E4B\u5217": 6156603815218428638 + "\u767D\u864E\u4E4B\u5730": 4643853582064391444 + "\u767D\u864E\u4E4B\u5929": 4182556080701371458 + "\u767D\u864E\u4E4B\u5B87": 7622752621600436216 + "\u767D\u864E\u4E4B\u5BBF": 4381625493600228339 + "\u767D\u864E\u4E4B\u5E99": -3949766861295908757 + "\u767D\u864E\u4E4B\u5F20": 2183393337468819463 + "\u767D\u864E\u4E4B\u65E5": 8151460576543489253 + "\u767D\u864E\u4E4B\u6603": 6584672847599921988 + "\u767D\u864E\u4E4B\u6708": 1114660722141428338 + "\u767D\u864E\u4E4B\u6D2A": -6281200413250195254 + "\u767D\u864E\u4E4B\u76C8": -5017372129611905945 + "\u767D\u864E\u4E4B\u8352": -3973936219469235593 + "\u767D\u864E\u4E4B\u8FB0": -4793170718694500703 + "\u767D\u864E\u4E4B\u9EC4": -7801294085087505891 + "\u767D\u864E\u78D0\u73BA": -6370130628468221463 + "\u767D\u864E\u9879\u94FE": 495368796641300177 + "\u767D\u8681\u5DE8\u989A": -4038456890600956088 + "\u767D\u8681\u86F9": -592906834020833369 + "\u767D\u8C61": -4017305585349332959 + "\u767D\u8C79": 3270117931806079820 + "\u767D\u91D1\u5B88\u795E\u7B26": -8916712886068467743 + "\u767D\u91D1\u62A4\u8EAB\u7B26": 3034337845274911897 + "\u767D\u91D1\u62FC\u56FE": -8633059817113502633 + "\u767D\u94BB": -2190212997791748637 + "\u767D\u94F6\u5B88\u795E\u7B26": -8291943396248265763 + "\u767D\u94F6\u5B88\u8EAB\u7B26": -220239028700776734 + "\u767D\u94F6\u5FBD\u8BB0": -6515495493341662912 + "\u767D\u94F6\u62A4\u8EAB\u7B26": 8671025310477110923 + "\u767D\u94F6\u62A4\u8EAB\u9501": 8261132238959725508 + "\u767D\u94F6\u68CD\u68D2\u62A4\u624B": 7495726922220465961 + "\u767D\u94F6\u72B6\xB7\u4ED9\u5E7B\u5929": -7106114188215067804 + "\u767D\u94F6\u77DB\u67C4": -8423310234583908380 + "\u767D\u94F6\u77ED\u5203\u67C4": 4004454774102530786 + "\u767D\u94F6\u793C\u5305": 8517742496050066460 + "\u767D\u94F6\u80A1\u7532\u5408\u9875": 807623429809378660 + "\u767D\u94F6\u80A9\u7532\u5408\u9875": 6473365208803003245 + "\u767D\u94F6\u8155\u7532\u5408\u9875": 8528896334960519336 + "\u767D\u94F6\u864E\u7B26": -3068124813072845569 + "\u767D\u94F6\u8E1D\u7532\u5408\u9875": 4604192714448059257 + "\u767D\u94F6\u9576\u5B9D\u77F3\u516D\u89D2\u5FBD\u7AE0": 781339657714680793 + "\u767D\u94F6\u957F\u5200\u5200\u683C": 5767681732176977422 + "\u767D\u94F6\u957F\u6746\u63A5\u69AB": -8800505074189428580 + "\u767D\u94F6\u9762\u7F69\u5408\u9875": -635546934317653442 + "\u767D\u96EA\u83B2": 335639918024286174 + "\u767D\u96FE\u4E4B\u77F3": 6793157282264887149 + "\u767D\u9716\u9879\u94FE": -1813027920493461853 + "\u767D\u9E64": -3283556498132221655 + "\u767D\u9F99\u888D\u7537": -1701445536984815070 + "\u767D\u9F99\u888D\u7537\u88E4": 2958461567498160072 + "\u767D\u9F99\u888D\u7537\u978B": 9214371298682517390 + "\u767E\u5229\u91D1\u91D1\u7B14\u4E60\u7B3A": 5908034069987050213 + "\u767E\u5320\u5DE5\u5FC3\u77F3": -5210418920292889023 + "\u767E\u5473\u836F\u5F15": -7198935353127095070 + "\u767E\u5B9D\u7BB1": 45964601708475861 + "\u767E\u5E74\u597D\u5408": 4629741052174367802 + "\u767E\u6218\u5200": -3779083879458701285 + "\u767E\u70BC\u5251": 2371255638093283270 + "\u767E\u70BC\u5929\u9053": 1058067378051182759 + "\u767E\u70BC\u94A2": -251379426544838296 + "\u767E\u82B1\u88D9\u4E0A\u8863": -4653004369574014588 + "\u767E\u82B1\u88D9\u88E4": 5042968391474281589 + "\u767E\u82B1\u88D9\u978B": 3360350845054033275 + "\u767E\u8349\u9732": -6641021214587669116 + "\u767E\u8F9F\u8170\u9970": -4002302234488272385 + "\u767E\u91CC\u8FFD\u98CE\u5F29": 8823076178037375633 + "\u767E\u969C\u4E4B\u77F3": 2289971023393010437 + "\u7687\u540E\u88C5\u4E0A\u8863": 7684295390667561873 + "\u7687\u540E\u88C5\u5934\u53D1": -4115342879429205878 + "\u7687\u540E\u88C5\u978B\u5B50": 3563709975069413304 + "\u7687\u5BB6\u5178\u85CF": -5796140186337042284 + "\u7687\u5E1D\u88C5\u4E0A\u8863": 1340497610008765806 + "\u7687\u5E1D\u88C5\u5934\u53D1": 4356249144515616760 + "\u7687\u5E1D\u88C5\u978B\u5B50": -4372817412147503504 + "\u7687\u699C": 5062543309838642975 + "\u7687\uFF08\u91D1\uFF09": -7158319340307128706 + "\u7687\uFF08\u94C1\uFF09": 6397330777893999729 + "\u7687\uFF08\u94DC\uFF09": 8160370471075725466 + "\u7687\uFF08\u94F6\uFF09": 3074351625656761436 + "\u7693\u6708\u73AF\u677E": 8169865117089211454 + "\u76AE\u62F3\u5957": -1115687850632780729 + "\u76AE\u76AE\u9F20\u5587\u53ED": -8666782987620033927 + "\u76AE\u77ED\u88D9\u5973": 7211087287486323725 + "\u76AE\u77ED\u88D9\u5973\u8155": -8460037543575012648 + "\u76AE\u77ED\u88D9\u5973\u978B": -1106053257220028051 + "\u76AE\u88C5\u7537\u4E0A\u8863": -2250179528920379727 + "\u76AE\u88C5\u7537\u5934\u53D1": 5112004483808357020 + "\u76AE\u88C5\u7537\u624B\u5957": 6489338855052431860 + "\u76AE\u88C5\u7537\u88E4\u5B50": 4412413477633678038 + "\u76AE\u88C5\u7537\u978B\u5B50": 6516580239257694139 + "\u76AE\u9769": 2450077153495648090 + "\u76C8\u5929\u6212": -924957758423707580 + "\u76C8\u6CF0\u9879\u94FE": 8070738682704234231 + "\u76CA": -5161739794457935839 + "\u76D0\u77F3": -7123166770477032780 + "\u76D1\u7262\u94A5\u5319": 4963077670789786991 + "\u76D8\u53E4\u4E4B\u77F3": -3651702067871749949 + "\u76D8\u87AD\u9F99\u7EB9\u89E5": 8497909835486095357 + "\u76D8\u9F99\u68CD": -7741952655072924264 + "\u76D8\u9F99\u8349": 4275370515208637773 + "\u76DB\u4E16\u4E07\u5E74": 5022360778679960787 + "\u76F8\u4F9D\u76F8\u504E\u7684\u52A8\u4F5C": -6402972449909497335 + "\u76F8\u5FD8\u6C5F\u6E56": -3854130869406589523 + "\u76F8\u601D\u5165\u9AA8": -3946742896486981389 + "\u76F8\u6FE1\u4EE5\u6CAB": 3693287065552922685 + "\u76FE\u724C": 2724589901052037214 + "\u7709\u76EE\u4F20\u60C5": 6447174507021533066 + "\u771F\u5149\u9879\u94FE": -677542097538466972 + "\u771F\u51B0\u4E4B\u5370": -966625766606840547 + "\u771F\u521A\u62F3\u5957": 1280279273978584845 + "\u771F\u5BD2\u4E4B\u5370": -583548330856010327 + "\u771F\u6B63\u7684\u5377\u8F74": 3518256721417255000 + "\u771F\u6B66\u4E4B\u5251": -175997420990164423 + "\u771F\u6B66\u6218\u7532": -4303873987683382898 + "\u771F\u6B66\u76D4": -3820289653571323354 + "\u771F\u6B66\u817F\u7532": -5222102172801258550 + "\u771F\u6B66\u8896\u7532": 2647804142874801426 + "\u771F\u6B66\u9774": 6058551851956069136 + "\u771F\u864E\u97AD\u6D17\u9AD3\u9732": 3319494938205832244 + "\u771F\u8A00\u6212": 5321376236877238926 + "\u771F\u8C79\u80CE\u6613\u7B4B\u4E38": -5611830089399849976 + "\u771F\u96EA\u4E4B\u5370": -4321411881832014944 + "\u771F\u9B3C\u5B50\u6BCD\u7684\u9524\u67C4\u5B9D\u77F3": 6717081062444069933 + "\u771F\u9F99\u6775": -44463459040595696 + "\u7729\u5149\u4E4B\u77F3": 917150543507117535 + "\u7737\u4E16\u4E4B\u6CEA": -9061237248566435403 + "\u773C\u6CEA\u6C34\u6676": -7345826888262126250 + "\u773C\u775B\u7334": 3367480740141464233 + "\u773C\u955C\u7334": 4233854580431436200 + "\u77AC\u6740\u5203": -4947609045894959735 + "\u77AC\u79FB\u94C3": -240585055406093188 + "\u77E5\u79CB\u9879\u94FE": 1625469225054001930 + "\u77ED\u5F13": -1679903354227152327 + "\u77ED\u5F29": -2818361693729228391 + "\u77ED\u65A7": -5599769566510056933 + "\u77ED\u6756": 816501040471090211 + "\u77ED\u68CD": 8220457903181967672 + "\u77ED\u706B\u67AA": 8890952390806362154 + "\u77ED\u94F2": -7905145899371143593 + "\u77F3\u50CF\u4E4B\u9885": -4784917154926132820 + "\u77F3\u543C\u602A": 8949776176894391555 + "\u77F3\u6591\u9C7C": -8948184608269249653 + "\u77F3\u6599": 3331043336580820430 + "\u77F3\u65A7": 4217900394051062390 + "\u77F3\u6881\u5FA1\u6C34\u6865": 7063111890150226091 + "\u77F3\u69B4\u7EA2\u67D3\u6599": -597057409392400819 + "\u77F3\u69B4\u7EA2\u67D3\u8272\u5361": -1628571812479792636 + "\u77F3\u7070\u7C89": 5163444213415536194 + "\u77F3\u7891\u62D3\u7247": 1278609434334820684 + "\u77F3\u94BA": 7954505068327203855 + "\u77F3\u9525\u4E0B\u94E0": -7013648694214783120 + "\u77F3\u9525\u6212\u6307": 795426278487806724 + "\u77F3\u9525\u62A4\u8155": -7779607148514415046 + "\u77F3\u9525\u79D8\u6CD5\u88E4": 1136345079688755555 + "\u77F3\u9525\u8170\u4F69": 5474965318144503089 + "\u77F3\u9525\u9879\u94FE": -425712306695680533 + "\u77F3\u9B54\u738B\u5361\u72471": 3823798700501886694 + "\u77F3\u9B54\u738B\u5361\u72472": 5106467096282878766 + "\u77F3\u9B54\u738B\u5361\u72473": -71599500752654975 + "\u77F3\u9B54\u738B\u5361\u72474": 965697549442694923 + "\u77F3\u9B54\u738B\u5361\u72475": 2571588252530459364 + "\u77F3\u9B54\u738B\u5361\u72476": -7434750696133873610 + "\u77F3\u9B54\u738B\u5361\u72477": 8286768280025542658 + "\u77F3\u9B54\u738B\u5361\u72478": -3947217780322043262 + "\u77F6\u73E0\u4E7E": 4479188587594676828 + "\u77F6\u73E0\u5151": -1492208664251953910 + "\u77F6\u73E0\u574E": 1990958604939444297 + "\u77F6\u73E0\u5764": 7238149705069040275 + "\u77F6\u73E0\u5DFD": 3894305602907289628 + "\u77F6\u73E0\u79BB": -6151838851033168620 + "\u77F6\u73E0\u826E": 6633270954223381817 + "\u77F6\u73E0\u9707": -5103481731418808262 + "\u77FE\u77F3": -4830146474598282194 + "\u7802\u5200\u950B\u94F8\u6A21": -7124153991993885198 + "\u7802\u5251\u5203\u94F8\u6A21": 636909537094834670 + "\u7802\u5B50\u6BCD\u65A7\u94F8\u6A21": 3266119018705775625 + "\u7802\u5B50\u6BCD\u9524\u94F8\u6A21": 4860707474934268649 + "\u7802\u6307\u73AF\u94F8\u6A21": 1241217678519875712 + "\u7802\u65A7\u5203\u94F8\u6A21": -6549104888707930838 + "\u7802\u77F3": -7578492142410983808 + "\u7802\u7CD6": 8362616298021705547 + "\u7802\u91D1\u521A\u6775\u94F8\u6A21": -395527480214752046 + "\u7802\u9524\u5934\u94F8\u6A21": -8832776825468020 + "\u7802\u9E33\u9E2F\u5200\u94F8\u6A21": -2138864493798802526 + "\u7802\u9E33\u9E2F\u5251\u94F8\u6A21": -6674671606363188187 + "\u7814\u94B5": -6297155191527141985 + "\u781A": 6284012185609401865 + "\u7834\u519B\u4E03\u6740\u7684\u7259\u9F7F": -786385505097253811 + "\u7834\u519B\u5305": -5975953695049487674 + "\u7834\u519B\u6212": -1611306662324199618 + "\u7834\u57CE\u67AA": -1231162458995528290 + "\u7834\u5929\u6212": -8499469076032454501 + "\u7834\u635F\u7684\u5251": -1646076850570270560 + "\u7834\u6BDB\u76AE": 2555806930598048814 + "\u7834\u715E\u5200": 644427380004512276 + "\u7834\u788E\u6C34\u6676": -2109465006042240960 + "\u7834\u788E\u7684\u5370\u8BB0": -5085196616209250686 + "\u7834\u7A7A\u4EE4": -2444432621959893448 + "\u7834\u7A7A\u5F39": -6298524085184771742 + "\u7834\u7F61\u7BAD": -2566203045284823577 + "\u7834\u80C6\u5E7B\u5F71": 3060737160781884207 + "\u7834\u91CE": 6161235955265936603 + "\u7834\u9635\u5200": -3052761530975398628 + "\u7834\u9635\u5305": 451225811334275781 + "\u7834\u9B54\u9879\u94FE": -1453944923099366686 + "\u786C\u5E01": 405545970849093700 + "\u786C\u7532\u7B26": 5459426830930505570 + "\u788E\u68A6\u5200": -1981759141490755231 + "\u788E\u6A59\u7389": -9018305687667358489 + "\u788E\u7075\u9557": 2807412286658131614 + "\u788E\u7389\u4E39\u7B80": 6094273770195894323 + "\u788E\u77F3": -7618735271005873070 + "\u788E\u7D2B\u7389": 4608026559061791256 + "\u788E\u7FE0\u7389": 1930184731388363479 + "\u788E\u84DD\u7389": 118280379789238663 + "\u788E\u8D64\u7389": -8956006251736658928 + "\u788E\u9752\u7389": 5871980576771088177 + "\u788E\u9AA8": 5062101366061645253 + "\u788E\u9B44\u7B26\u5370": 7087092738075372349 + "\u788E\u9EC4\u7389": 2849386055416195603 + "\u78A7\u6C34\u83B2\u534E": 5887775694856355219 + "\u78A7\u7389\u73E0": -7044517509926551643 + "\u78A7\u7A7A\u9879\u94FE": 1400735744172935926 + "\u78A7\u82D4\u592A\u6E56\u77F3": -4437712223798628290 + "\u78A7\u843D\u5251": -1939924086485180450 + "\u78A7\u8840\u676F": 9179991107873835078 + "\u78A7\u8840\u7CBE": -3689942456653121046 + "\u78C1\u5200\u950B\u94F8\u6A21": -4336423433779283629 + "\u78C1\u5251\u5203\u94F8\u6A21": 9089030411004529528 + "\u78C1\u5668\u788E\u7247": -153201665490078104 + "\u78C1\u5B50\u6BCD\u65A7\u94F8\u6A21": -6029081341869274477 + "\u78C1\u5B50\u6BCD\u9524\u94F8\u6A21": -5455900754743808053 + "\u78C1\u6307\u73AF\u94F8\u6A21": 1576669153168601066 + "\u78C1\u65A7\u5203\u94F8\u6A21": 7520178779530011080 + "\u78C1\u91D1\u521A\u6775\u94F8\u6A21": 3546605777249941112 + "\u78C1\u9524\u5934\u94F8\u6A21": 7192422731138005765 + "\u78C1\u9E33\u9E2F\u5200\u94F8\u6A21": 7571211061133955000 + "\u78C1\u9E33\u9E2F\u5251\u94F8\u6A21": -4947648230894559264 + "\u78D0\u7532\u4E4B\u77F3": 9179680168625524583 + "\u78D0\u7532\u5B9D\u7389": 4544644366332783991 + "\u78D0\u77F3\u5DE8\u9524": -156190083092451076 + "\u78D0\u9690\u5C71\u95E8": -1267168890984327932 + "\u78E8\u5200\u77F3\u5C5E\u6027\u589E\u5F3A1\u7EA7": -3062231780044521807 + "\u78E8\u5200\u77F3\u5C5E\u6027\u589E\u5F3A2\u7EA7": -5921607745580653172 + "\u78E8\u5200\u77F3\u5C5E\u6027\u589E\u5F3A3\u7EA7": -3060492332506068438 + "\u78E8\u5200\u77F3\u6CD5\u672F\u653B\u51FB1\u7EA7": 6501538307942095360 + "\u78E8\u5200\u77F3\u6CD5\u672F\u653B\u51FB2\u7EA7": 7585486458131438658 + "\u78E8\u5200\u77F3\u6CD5\u672F\u653B\u51FB3\u7EA7": -2248329394908239153 + "\u78E8\u5200\u77F3\u7269\u7406\u653B\u51FB1\u7EA7": 5329245414222684964 + "\u78E8\u5200\u77F3\u7269\u7406\u653B\u51FB2\u7EA7": -2665959219673372305 + "\u78E8\u5200\u77F3\u7269\u7406\u653B\u51FB3\u7EA7": -8349972055672804992 + "\u78E8\u5200\u77F3\u7279\u6B8A\u5C5E\u60271\u7EA7": -6419752781503425691 + "\u78E8\u5200\u77F3\u7279\u6B8A\u5C5E\u60272\u7EA7": -8783629018086052656 + "\u78E8\u5200\u77F3\u7279\u6B8A\u5C5E\u60273\u7EA7": 9011293525122713498 + "\u78E8\u5200\u77F3\u751F\u547D\u589E\u5F3A1\u7EA7": -3007886391079665063 + "\u78E8\u5200\u77F3\u751F\u547D\u589E\u5F3A2\u7EA7": -4001799816698054208 + "\u78E8\u5200\u77F3\u751F\u547D\u589E\u5F3A3\u7EA7": 4878266016617717815 + "\u78E8\u77F3\u7C89": -356641769003202851 + "\u793C\u5FB7\u4E4B\u5FBD": -7005685837647462049 + "\u793C\u5FB7\u4E4B\u7AE0": 3101543184279238979 + "\u7948\u613F\u9999": 8033225354865117738 + "\u7956\u9F99\u4F69": 2190322806284031229 + "\u7956\u9F99\u5341\u5B57\u52CB\u7AE0": -7596623018017061953 + "\u7956\u9F99\u536B\u58EB\u52CB\u7AE0": -7212286553567423441 + "\u7956\u9F99\u537F\u4E91\u52CB\u7AE0": -6979995955803884702 + "\u7956\u9F99\u57CE\u7CBE\u5143": 9059819149407197578 + "\u7956\u9F99\u5B9D\u9F0E\u52CB\u7AE0": 2994218559555457851 + "\u7956\u9F99\u666F\u661F\u52CB\u7AE0": -7640737239759785847 + "\u7956\u9F99\u79D8\u85CF": -2075151549914232071 + "\u795D\u4F60\u751F\u65E5\u5FEB\u4E50": -5447154561871954239 + "\u795D\u798F\u77F3": 918491564980136335 + "\u795D\u878D\u4E4B\u77F3": -734452967985267801 + "\u795D\u878D\u9B42\u5B88": 5165566764941040815 + "\u795E\u4ED9\u9C7C": -7782149249378087548 + "\u795E\u4F51": 3586956843468762673 + "\u795E\u4F51\u9879\u94FE": 7776232167194727675 + "\u795E\u50CF": 5738541975082962998 + "\u795E\u5149\u9879\u94FE": -2320034128664630512 + "\u795E\u519C\u62A4\u4F51\u4E39": -817073504693117136 + "\u795E\u519C\u7425\u73C0\u773C": -7394935852366494441 + "\u795E\u519C\u767E\u8349\u4E38": -1616606702957140456 + "\u795E\u519C\u9F0E": 3874370510859145746 + "\u795E\u519C\u9F0E_2": 5813057003089314246 + "\u795E\u519C\u9F0E_3": -8730537025417566992 + "\u795E\u529B\u4E38": -5301867073036182024 + "\u795E\u5668\u4E4B\u9B42": -7530328860122484164 + "\u795E\u5723\u706B\u79CD": -887472420244149630 + "\u795E\u5A01\u6218\u7532": 5761835562386640934 + "\u795E\u5A01\u817F\u7532": 6849719889869615403 + "\u795E\u5A01\u8896\u7532": 5584743983351778975 + "\u795E\u5A01\u957F\u5200": 1108758908785826071 + "\u795E\u5A01\u9774": -4996433673018258922 + "\u795E\u62A4\u9879\u94FE": 1072313413101020837 + "\u795E\u660E\u9879\u94FE": -7704980567118153211 + "\u795E\u6708\u4E4B\u5FBD\xB7\u62A4": 2866064193015934183 + "\u795E\u6708\u5934\u914D\u4EF6": 6457523474645967341 + "\u795E\u6708\u6212\u5B50\u914D\u4EF6": 623432278678017204 + "\u795E\u6708\u9879\u94FE\u914D\u4EF6": 3575623024413754918 + "\u795E\u6B66\u9547\u5929\u5F13": -689198776133272357 + "\u795E\u7334\u609F\u7A7A": 933038092852482464 + "\u795E\u73BA\u7075\u706F": -2733817582386785494 + "\u795E\u76EE\u679C": -1459781226977334008 + "\u795E\u76EE\u6C34": 519442547373463631 + "\u795E\u79C0\u9879\u94FE": -3305644168116229249 + "\u795E\u79D8\u5377\u8F74": -3486939387661531759 + "\u795E\u79D8\u56FE\u817E": -6806365339807111519 + "\u795E\u79D8\u6676\u4F53": 2846851248050538104 + "\u795E\u79D8\u670D\u9970": 3785547383924764324 + "\u795E\u79D8\u7684\u4E66\u7C4D": 6762560311954260332 + "\u795E\u79D8\u7684\u4EE4\u724C": 2295949115216194845 + "\u795E\u79D8\u7B79\u7801\u7BB1": -7483720993945037362 + "\u795E\u79D8\u7B79\u7801\u7BB1\u5B5032": -481498911468124467 + "\u795E\u79D8\u82B1\u74E3": -1697069470650666645 + "\u795E\u8574\u62AB\u98CE": -9002345620399616247 + "\u795E\u8C0F\u9879\u94FE": 1503332850858142812 + "\u795E\u8F85\u62A4\u8EAB\u7B26": 2956517624899108751 + "\u795E\u8F85\u9B54\u529B\u7B26": -8643672637974486503 + "\u795E\u955C": -8589229948824486699 + "\u795E\u97F5": -271494503028090932 + "\u795E\u97F5\u4E4B\u4E1D": -1492415168538503939 + "\u795E\u97F5\u4E4B\u7231": -7382898009283323282 + "\u795E\u97F5\u4E4B\u7EB1": -2590729310874263161 + "\u795E\u97F5\u4E4B\u821E": -6027326246558761846 + "\u795E\u97F5\u4E4B\u9732": 2825416165732028832 + "\u795E\u9A6C\u523B\u5370": 8211486723844800743 + "\u7965\u4E50\u79C0\u5B9E": 8692110198855744803 + "\u7965\u4E91": 8056002006085163914 + "\u796D\u7940\u4F7F\u5F92\u9AD8\u7EA7": -9162033584301095324 + "\u7981\u5FCC\u4E4B\u6D77": -5767392617176964855 + "\u7984": -3207825743363651128 + "\u7985\u5B9A\u9879\u94FE": 7234067559078479723 + "\u7985\u5FC3\u4E91\u96F7\u5C4F": -5632606281866442468 + "\u7985\u610F\u5723\u7075": -6140006632387332937 + "\u798F": -1790258172504068517 + "\u798F\u4E34\u95E8": 3541580841206010454 + "\u798F\u6CFD\u7EF5\u957F": -5716032678090319130 + "\u798F\u725B": 154421083476484761 + "\u798F\u7984\u4E39\u6838": 8515227827463413457 + "\u798F\u7984\u5B9D\u9274": -7699188853835228254 + "\u79BB\u4E4B\u8868\u5FBD": 2104100925071465267 + "\u79BB\u4E4B\u9B42": -6057224345927808996 + "\u79BB\u522B\u97AD": -6239621630306108295 + "\u79BD\u517D\u56DE\u8840\u4E39": -8921406485944834968 + "\u79C0\u624D\u8170\u4F69": -2471524061259549275 + "\u79CB": 2660137903669047614 + "\u79CB\u5200\u9C7C\u80E7\u5200": 1779877484962265779 + "\u79CB\u5C71\u6E05\u8FDC\u56FE": -5722765373921413001 + "\u79CB\u5C71\u95EE\u9053\u56FE": 7358027835821946713 + "\u79CB\u666F\u5C71\u6C34\u56FE": -5078491077961304963 + "\u79D8\u5236\u4E5D\u9F99\u6563": 4325629228523824655 + "\u79D8\u5236\u6D3B\u8840\u6563": -1641767208371285035 + "\u79D8\u5236\u8FD8\u7075\u6C34": 6221861505473160865 + "\u79D8\u5B9D\u5377\u8F74": 8437194343761153471 + "\u79D8\u5B9D\u85CF\u56FE\u6B8B\u7247": -4137341215993008367 + "\u79D8\u5B9D\u98DE\u5251": 5586618679964220536 + "\u79D8\u6CD5\u5C65": -5161234958444706066 + "\u79D8\u6CD5\u62A4\u8155": 362107257450106289 + "\u79D8\u6CD5\u888D": -5176376116576112159 + "\u79D8\u6CD5\u88E4": 7230850487202140107 + "\u79D8\u94F6\u5F39": -1349286632287737862 + "\u79D8\u94F6\u77E2": -6482789538077353415 + "\u79D8\u94F6\u80F8\u7532": -2189337254069478053 + "\u79D8\u94F6\u817F\u7532": -1858841041123624822 + "\u79D8\u94F6\u8896\u7532": -618358886258902965 + "\u79D8\u94F6\u952D": -2119577297054442437 + "\u79D8\u94F6\u9774": -4574964495609521612 + "\u79D8\u94F6\u9774\u523A": -2055517080100103849 + "\u79E6\u7687": 965190558116322194 + "\u79EF\u7FBD\u57CE\u7CBE\u5143": -226546912664726720 + "\u79EF\u8840\u7EA2\u7389\u5760": -7119144524465232462 + "\u7A7A\u5E7D\u9879\u94FE": -832144997756062056 + "\u7A7A\u660E\u4F69": -158156732515429560 + "\u7A7A\u7075\u65A7": -8747555631135238852 + "\u7A7A\u7075\u9879\u94FE": -9052401141277560205 + "\u7A7A\u73BB\u7483\u74F6": -7907323965168419035 + "\u7A7F\u4E91\u4EE4": 9172284579707153711 + "\u7A7F\u4E91\u5F13": -4546562335515052215 + "\u7A7F\u5C71\u7532": -6218988243847048453 + "\u7A88\u9E1F": -8304600199765182388 + "\u7AA6\u5C14\u6566\u8138\u8C31": 1799892094714113227 + "\u7ADE\u9009_a\u7EC4_100w\u7EA7\u522B_\u5151\u5956\u9053\u5177": 3992040607875157936 + "\u7ADE\u9009_a\u7EC4_10w\u7EA7\u522B_\u5151\u5956\u9053\u5177": -533185369787762251 + "\u7ADE\u9009_a\u7EC4_20w\u7EA7\u522B_\u5151\u5956\u9053\u5177": -4392040833817931469 + "\u7ADE\u9009_a\u7EC4_50w\u7EA7\u522B_\u5151\u5956\u9053\u5177": 3401540760326160882 + "\u7ADE\u9009_a\u7EC4_\u7ADE\u9009\u6743\u9053\u5177\uFF08\u7269\u54C1a\uFF09": -2030755827739163009 + "\u7ADE\u9009_a\u7EC4_\u7ADE\u9009\u6743\u9053\u5177\uFF08\u7269\u54C1a\uFF09\u526F\u672C": 2517099083536124439 + "\u7ADE\u9009_a\u7EC4_\u7ADE\u9009\u6743\u9053\u5177\uFF08\u7269\u54C1b\uFF09\u526F\u672C": 4527282667515301083 + "\u7ADE\u9009_b\u7EC4_100w\u7EA7\u522B_\u5151\u5956\u9053\u5177": -7139004567903556187 + "\u7ADE\u9009_b\u7EC4_10w\u7EA7\u522B_\u5151\u5956\u9053\u5177": -5447347651596028284 + "\u7ADE\u9009_b\u7EC4_20w\u7EA7\u522B_\u5151\u5956\u9053\u5177": -2213467841189544259 + "\u7ADE\u9009_b\u7EC4_50w\u7EA7\u522B_\u5151\u5956\u9053\u5177": -9204653093078598708 + "\u7ADE\u9009_b\u7EC4_\u7ADE\u9009\u6743\u9053\u5177\uFF08\u7269\u54C1b\uFF09": -1687699851203106634 + "\u7AE0\u9C7C\u7684\u89E6\u624B": -7398463435748935422 + "\u7AE0\u9C7C\u9F99\u602A\u5750\u9A91": -3789492534882150118 + "\u7AE5\u5B50\u89C2\u6F6E\u9910\u76D8": -7733194346252787709 + "\u7AEF\u5348\u7ADE\u6E21\u9910\u76D8": 546321293029843968 + "\u7AF9\u5200": -7926735461841465263 + "\u7AF9\u873B\u8713": 2103331672315210090 + "\u7AF9\u96D5\u9999\u7B52": -5938092711765669676 + "\u7B11\u9189\u4E66\u6000\u523B\u74F7": -1443541548499841321 + "\u7B14": -3872526539696225118 + "\u7B1B\u5B50\u5355\u624B\u77ED": -481863380289770397 + "\u7B26\u54921": 6037440244456548029 + "\u7B26\u54922": -8029637367015533149 + "\u7B26\u54923": -7857108018350250862 + "\u7B26\u6587\u8170\u997012": 4908222202060147771 + "\u7B26\u6587\u8170\u997013": -7990999566514949778 + "\u7B26\u6756": -1917510405406861878 + "\u7B2C01\u79CD\u6837\u5F0F": 6293060422336635515 + "\u7B2C02\u79CD\u6837\u5F0F": 1388146294897841913 + "\u7B2C03\u79CD\u6837\u5F0F": 6469029694597055176 + "\u7B2C04\u79CD\u6837\u5F0F": -6877242047290160716 + "\u7B2C05\u79CD\u6837\u5F0F": 6848096335760619062 + "\u7B2C06\u79CD\u6837\u5F0F": -1994802752518941739 + "\u7B2C07\u79CD\u6837\u5F0F": 7117773514500611954 + "\u7B2C08\u79CD\u6837\u5F0F": 6323957287295093363 + "\u7B2C09\u79CD\u6837\u5F0F": 3948950674200854307 + "\u7B2C10\u79CD\u6837\u5F0F": 6110979106682394143 + "\u7B2C11\u79CD\u6837\u5F0F": -1371613856672839708 + "\u7B2C12\u79CD\u6837\u5F0F": -4661887708960892909 + "\u7B56\u68A6\u4ED9\u673A": -337758427688732242 + "\u7B56\u68A6\u4ED9\u673Aold": 3414728628819640330 + "\u7B7E\u5230\u5E74\u5EA6\u5956": -7352500469915690512 + "\u7B7E\u5230\u6708\u5EA6\u5956": 3073513677740537938 + "\u7BAD\u888B": -6070880854976057278 + "\u7C2A\u5B50": 2157401001615288404 + "\u7C89\u5F69\u82B1\u76D8": -696420959735588650 + "\u7C89\u7EA2\u5E74\u534E": 7548628465029981391 + "\u7C89\u8537\u534A\u58F6\u82B1\u67B6": -8238963796462467163 + "\u7C89\u8776\u6D77\u68E0\u5986\u5323": 4770946218886437809 + "\u7C97\u5236\u76AE": 4164639021401542120 + "\u7C97\u5E03": 3264690360763026269 + "\u7C97\u5E03\u978B\u5E95": -2724029219380510992 + "\u7C97\u6728\u6599": -7971635096231405094 + "\u7C97\u7CD9\u7684\u9A6C\u8E44\u94C1": -1465744856107985564 + "\u7C97\u91CD\u9879\u94FE12": -2202839665836624006 + "\u7C97\u91CD\u9879\u94FE13": -7990987218432554106 + "\u7C98\u7A20\u7684\u6DB2\u4F53": 5428970864746454869 + "\u7CAE\u98DF": -290233473352083215 + "\u7CBD\u5B50": -3555004755189416424 + "\u7CBE\u5DE7\u7684\u62A4\u7B26": -3175895942069289934 + "\u7CBE\u6728\u6599": -2563157801858200311 + "\u7CBE\u6B66\u5E74\u88C5\u4E0A\u8863": 8466708803160305084 + "\u7CBE\u6B66\u5E74\u88C5\u62A4\u8155": -8088622520705775725 + "\u7CBE\u6B66\u5E74\u88C5\u88E4\u5B50": -7264154406114515659 + "\u7CBE\u6B66\u5E74\u88C5\u978B": 3471771795703343972 + "\u7CBE\u7075\u72FC": 6555825397798648950 + "\u7CBE\u7075\u793C\u76D2x": -6849190303260361777 + "\u7CBE\u7075\u88D9": -2855076222749680458 + "\u7CBE\u7075\u88D9\u624B\u5957": -4082333671704274961 + "\u7CBE\u7075\u88D9\u978B\u5B50": 8943256144849130964 + "\u7CBE\u70BC\u706B\u79CD": 1322935554002360827 + "\u7CBE\u77F3\u7389\u5668": 1897127933852384498 + "\u7CBE\u7EDD\u7EB5\u76EE\u56FE\u817E": -7215805148942964889 + "\u7CBE\u8089": -8328003521159092299 + "\u7CBE\u81F4\u7684\u6B66\u5668\u7BB1": -2215112838220025703 + "\u7CBE\u91D1\u5F39": 473066783049242386 + "\u7CBE\u91D1\u77E2": -7987286892003427452 + "\u7CBE\u91D1\u952D": 8251968409319623559 + "\u7CBE\u94A2\u5F29\u673A": -8753057995803930645 + "\u7CBE\u94A2\u62A4\u8EAB\u9501": 194506903610566189 + "\u7CBE\u94A2\u68CD\u68D2\u62A4\u624B": 1295001913460037319 + "\u7CBE\u94A2\u77DB\u67C4": 7355630789042673788 + "\u7CBE\u94A2\u77E2": 9163773919076522033 + "\u7CBE\u94A2\u77ED\u5203\u67C4": -4412883850352299087 + "\u7CBE\u94A2\u80A1\u7532\u5408\u9875": -8445989878714034952 + "\u7CBE\u94A2\u80A9\u7532\u5408\u9875": 5900755052157747686 + "\u7CBE\u94A2\u8155\u7532\u5408\u9875": 5395341547363161981 + "\u7CBE\u94A2\u836F\u5BA4": 2121613223731472842 + "\u7CBE\u94A2\u8E1D\u7532\u5408\u9875": 7697220085345476189 + "\u7CBE\u94A2\u957F\u5200\u5200\u683C": -8876443174891783041 + "\u7CBE\u94A2\u957F\u6746\u63A5\u69AB": -8625068812985808274 + "\u7CBE\u94A2\u9762\u7F69\u5408\u9875": -7076497464838885177 + "\u7CBE\u94C1\u9774\u523A": 2781134393030321042 + "\u7CBE\u9970\u4EFB\u52A1\u5F00\u542F\u9053\u5177": -7781074813225329514 + "\u7CBE\u9970\u914D\u65B9\u5305\u88F9": -7275419470072464346 + "\u7CBE\u9970\u914D\u65B9\u5305\u88F92": -1149564956870079124 + "\u7CBE\u9970\u914D\u65B9\u5305\u88F93": 9141069185010458360 + "\u7CBE\u9B44\u571F": 7147647837938641275 + "\u7CBE\u9B44\u6728": -5052908577130386746 + "\u7CBE\u9B44\u6C34": -1463993046875203414 + "\u7CBE\u9B44\u706B": -7731285514642955790 + "\u7CBE\u9B44\u91D1": -83901334318304342 + "\u7CD5\u70B91": 5840422840752348084 + "\u7CD5\u70B92": -2370890571063932972 + "\u7CD5\u70B93": 6167735955942426173 + "\u7CD5\u70B94": -1149559039800332223 + "\u7CD6\u679C": -8124773118557219387 + "\u7CD6\u679C\u624B\u6756": -4734456274067100986 + "\u7CD6\u74DC": 6603625732566961735 + "\u7CEF\u7C73": 6018008140011390955 + "\u7D20\u7EE2\u6298\u7EB9\u5782\u706F": -8138476503963107699 + "\u7D20\u9762\u7D2B\u6A80\u7B14\u7B52": 1284751285781711821 + "\u7D22\u9B42\u51A0": 6423536798108873156 + "\u7D2B\u4E01\u9999": 2341136107947222803 + "\u7D2B\u4E01\u9999\u67D3\u6599": 7993095030723297253 + "\u7D2B\u4E39\u53C2": -8169532537173757536 + "\u7D2B\u5FAE\u5760\u5B50": -1483074263708110543 + "\u7D2B\u6A80\u8760\u7EB9\u592A\u5E08\u6905": 8518029111010956530 + "\u7D2B\u6A80\u8760\u7EB9\u592A\u5E08\u6905\u7EC4\u5408": 3972219058927329495 + "\u7D2B\u6A80\u8760\u7EB9\u77EE\u684C": 8321516836166437609 + "\u7D2B\u6C34\u6676\u5760\u5B50": -4473808303982892365 + "\u7D2B\u7075\u96C0": -1330267412547928420 + "\u7D2B\u7389": -7877966799294001273 + "\u7D2B\u73E0\u6C81\u9999\u679C\u7BEE": 8444731927227310571 + "\u7D2B\u7409\u7483": 8392593427041767897 + "\u7D2B\u7535\u8F9F\u90AA": -8874474151128943722 + "\u7D2B\u7EF6\u5C65": -7856877851279787051 + "\u7D2B\u7EF6\u62A4\u8155": -9011938776154062236 + "\u7D2B\u7EF6\u888D": -8835529009486822512 + "\u7D2B\u7EF6\u88E4": 7091196869682343236 + "\u7D2B\u7F57\u5170\u67D3\u6599": 2009030670889862293 + "\u7D2B\u8272\u60C5\u6000": -8324680793384629166 + "\u7D2B\u8272\u67D3\u8272\u5242": 2527688280391212710 + "\u7D2B\u8272\u68C9\u7EBF": 2863634583749969554 + "\u7D2B\u8272\u7684\u77F3\u5934": -5253426909759395802 + "\u7D2B\u841D\u9879\u94FE": 96106186940021771 + "\u7D2B\u85E4\u5C0F\u6BB5": -633361138624552215 + "\u7D2B\u85E4\u624B\u638C\u6A21\u677F": -3724768702780373527 + "\u7D2B\u85E4\u6756\u67C4": 801444279092186317 + "\u7D2B\u85E4\u8282\u6263": -5037094173955162565 + "\u7D2B\u8D1D\u58F3": -2983695923477249006 + "\u7D2B\u91D1\u4F69": -6270603032509922524 + "\u7D2B\u91D1\u5175\u7FFC": -9192697723987743299 + "\u7D2B\u91D1\u5B88\u795E\u7B26": 2739325342623513336 + "\u7D2B\u91D1\u62A4\u8EAB\u7B26": -3856974522560363117 + "\u7D2B\u91D1\u6C99": -4486589279618841506 + "\u7D2B\u91D1\u80F8\u7532": 1365881905690445363 + "\u7D2B\u91D1\u817F\u7532": 1560434457946000958 + "\u7D2B\u91D1\u846B\u82A6": 8248300459913862509 + "\u7D2B\u91D1\u8896\u7532": -3622176317355144849 + "\u7D2B\u91D1\u94A5\u5319": -8397900670839166892 + "\u7D2B\u91D1\u9774": -8146908817018998774 + "\u7D2B\u94BB": 3923092159694557094 + "\u7D2B\u94C3\u8349": -1909063092429328963 + "\u7D2B\u94DC\u9774\u523A": -8339645218744377502 + "\u7D2B\u9633\u69CA": 4299864716853853288 + "\u7D2B\u971E\u8170\u9970": 3080374176452739845 + "\u7E41\u6728\u4E4B\u529B": 8245434032522910459 + "\u7E41\u6728\u4E4B\u610F": -1878802134421283465 + "\u7E41\u82B1\u4F3C\u9526": 2920939897428512365 + "\u7E41\u82B1\u4F3C\u95261": 211971244889700183 + "\u7E41\u82B1\u4F3C\u9526\u82B1\u53F0": -5153946722988089157 + "\u7E41\u8363\u660C\u76DB": -6360643958002099948 + "\u7EA2\u5149\u9524": 2157687189721239944 + "\u7EA2\u53CC\u559C": 9217544063346121022 + "\u7EA2\u5B9D\u77F3\u6212\u6307\u5927": -6552024267823462479 + "\u7EA2\u5B9D\u77F3\u6212\u6307\u5C0F": 9031353076779709304 + "\u7EA2\u5B9D\u77F3\u9879\u94FE\uFF08\u5973\uFF09": -8622901466747493701 + "\u7EA2\u5C18\u6C10\u60C6\u9999\u7089": -1837703680184470553 + "\u7EA2\u6591\u5929\u725B": -3006287735333673052 + "\u7EA2\u6728\u4E91\u7EB9\u6276\u624B\u6905": 7538844848730459438 + "\u7EA2\u6728\u74DC\u53F6\u7EB9\u77EE\u58A9": 6502404593709448412 + "\u7EA2\u6728\u7B11\u4F5B\u8336\u684C": 523199363357971845 + "\u7EA2\u67A3": -3862234122864356595 + "\u7EA2\u683C\u5C14\u6728\u5C4B": -8132582218531321441 + "\u7EA2\u6C34\u6676\u5760\u5B50": 656555329584890405 + "\u7EA2\u706F\u7B3C\u559C\u8FCE\u6625\u8282": -1854016018651076440 + "\u7EA2\u706F\u7B3C\u606D\u8D3A\u65B0\u79A7": 2184491725144338465 + "\u7EA2\u7075\u7247": -8946729847210830799 + "\u7EA2\u73AB\u7470\u725B\u4ED4\u7537\u4E0A\u8863": 6777199788610054789 + "\u7EA2\u73AB\u7470\u725B\u4ED4\u7537\u5934\u53D1": -812666939751114574 + "\u7EA2\u73AB\u7470\u725B\u4ED4\u7537\u88E4\u5B50": 1885805630046510102 + "\u7EA2\u73AB\u7470\u725B\u4ED4\u7537\u978B\u5B50": 4303926081262633146 + "\u7EA2\u73CA\u745A\u4F5B\u73E0": -297822925394135544 + "\u7EA2\u767D\u56DB\u6F29\u6DA1": -2892459455599059051 + "\u7EA2\u7802\u5CA9\u4F5B\u50CF": -3630861133491854563 + "\u7EA2\u78A7\u71B9\u91D1\u6212": -321068808451387682 + "\u7EA2\u7EA2\u706F\u7B3C\u6392\u6392\u6302": -6935806347924271470 + "\u7EA2\u7EB1\u9526\u7EE3\u7ACB\u67DC": 8874319136238764387 + "\u7EA2\u7EBF": -1867881229136002423 + "\u7EA2\u8272\u4E09\u89D2\u94A2\u7434": -4098194034421996347 + "\u7EA2\u8272\u4FE1\u4EF6": 4868439172073500340 + "\u7EA2\u8272\u5723\u5668\u6B8B\u7247": -2854595253115234636 + "\u7EA2\u8272\u5C0F\u70DF\u82B1": 4618965747871803229 + "\u7EA2\u8272\u5FC3\u5F62\u5B9D\u77F3": -971740681353080825 + "\u7EA2\u8272\u677E\u9F20": 3205742294960550351 + "\u7EA2\u8272\u67D3\u8272\u5242": -1694111453588992294 + "\u7EA2\u8272\u6C34\u6676\u7403": 4063209625792983416 + "\u7EA2\u8272\u6C34\u6676\u77F3": -4225919908315863507 + "\u7EA2\u8272\u6D46\u8349": 7790146008681902709 + "\u7EA2\u8272\u72FC\u7259": 902061542372593527 + "\u7EA2\u8272\u836F\u7C89": 8953344428735044874 + "\u7EA2\u8272\u9E45\u6BDB\u7B14\u4E60\u7B3A": 7993954671647005996 + "\u7EA2\u82F9\u679C": 5391314065587961877 + "\u7EA2\u83B2\u6212": -5115866453529113519 + "\u7EA2\u843C\u6885": -6691532612650330233 + "\u7EA2\u8537\u7D2B\u8587\u95E8": -7402359564790756801 + "\u7EA2\u8611\u83C7": 6320736526459211124 + "\u7EA2\u8611\u83C72": 9074531333535881184 + "\u7EA2\u8774\u8776": -1075433903528311768 + "\u7EA2\u8896\u5200": 3802540221413319059 + "\u7EA2\u8C46": -8196074879373929471 + "\u7EA2\u8C461": -2936982514198462091 + "\u7EA2\u94BB": -959587091867523802 + "\u7EA2\u9876\u5343\u811A\u697C": -5268049654861214675 + "\u7EA2\u9AD8\u5934\u938F\u91D1": -684136250862476097 + "\u7EA2\u9C7C\u5375": 5232704822014503930 + "\u7EA4\u7EC6\u9879\u94FE12": 2864660621455354018 + "\u7EA4\u7EC6\u9879\u94FE13": 383384805972266973 + "\u7EAA\u5FF5\u5E01": 122328163835318717 + "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u5973\u4E0A\u8863": -2110854415220290613 + "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u5973\u5934\u53D1": -7246184853413563377 + "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u5973\u88E4\u5B50": -5561811698852555920 + "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u5973\u978B\u5B50": -7525243196207853010 + "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u7537\u4E0A\u8863": 8160720480795928507 + "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u7537\u5934\u53D1": -6023442764670478081 + "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u7537\u88E4\u5B50": 5912005564617604657 + "\u7EAA\u5FF5\u7248\u4ED9\u65F6\u88C5\u7537\u978B\u5B50": 4957679243536198087 + "\u7EAA\u5FF5\u7248\u53D8\u8272\u65F6\u88C5\u5973\u8863\u670D": -3944590838621848688 + "\u7EAA\u5FF5\u7248\u53D8\u8272\u65F6\u88C5\u5973\u88E4\u5B50": -701789744563051036 + "\u7EAA\u5FF5\u7248\u53D8\u8272\u65F6\u88C5\u5973\u978B\u5B50": 4359491163136170276 + "\u7EAA\u5FF5\u7248\u53D8\u8272\u65F6\u88C5\u7537\u8863\u670D": 3578645386074137015 + "\u7EAA\u5FF5\u7248\u53D8\u8272\u65F6\u88C5\u7537\u88E4\u5B50": 9014213515720591334 + "\u7EAA\u5FF5\u7248\u53D8\u8272\u65F6\u88C5\u7537\u978B\u5B50": -1101995256608842075 + "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u5973\u4E0A\u8863": 4278368014357950097 + "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u5973\u4E0B\u8EAB": -5887476910128557055 + "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u5973\u5934\u53D1": -5393800179444850858 + "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u5973\u978B\u5B50": 2346472031150743470 + "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u7537\u4E0A\u8863": -1939585008700540076 + "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u7537\u4E0B\u8EAB\u672C": -7034954868674897246 + "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u7537\u5934\u53D1": 623866693636777022 + "\u7EAA\u5FF5\u7248\u9B54\u65F6\u88C5\u7537\u978B\u5B50": -8514195422366217782 + "\u7EAF\u51C0\u7684\u9CC4\u9C7C\u4E4B\u6CEA": -3022820187163844296 + "\u7EAF\u51C0\u8349\u836F": 4445291026218349067 + "\u7EAF\u6D01\u4E4B\u4E1D": -2649970054963754609 + "\u7EAF\u6D01\u4E4B\u7231": -5857875491723554947 + "\u7EAF\u6D01\u4E4B\u7EB1": -2165410576338118827 + "\u7EAF\u6D01\u4E4B\u7FFC": 6010097920145653306 + "\u7EAF\u6D01\u4E4B\u821E": 3883710964907002397 + "\u7EAF\u6D01\u4E4B\u9732": -3891418379482446998 + "\u7EAF\u767D\u67D3\u8272\u5361": 1175164163807713773 + "\u7EAF\u91D1\u9152\u676F": 942383687190742996 + "\u7EAF\u9ED1\u4E9A\u9EBB\u6C99\u53D1": -7513723948100366217 + "\u7EAF\u9ED1\u4E9A\u9EBB\u6C99\u53D1\u7EC4\u5408": -5228108879045259728 + "\u7EAF\u9ED1\u67D3\u8272\u5361": -7431385785381120861 + "\u7EB5\u6A2A\u4EE4": 3343223027682862255 + "\u7EB8": 4670031100573655819 + "\u7EB8\u6247": -4593642178716097903 + "\u7EB8\u71D5": -1318231625573487995 + "\u7EB8\u77ED\u60C5\u957F": -5289580112054685112 + "\u7EB8\u8424": -8319526940930647801 + "\u7EB8\u864E\u5B9D\u76D2": 1299956088536709359 + "\u7EB8\u8776": -8785046324500597360 + "\u7EB8\u9E22": -5159051217034284652 + "\u7EB9\u8EAB\u88C5\u5973\u4E0A\u8863": 4890358535336406222 + "\u7EB9\u8EAB\u88C5\u5973\u5934\u53D1": 1319473065354379928 + "\u7EB9\u8EAB\u88C5\u5973\u624B\u5957": -8644719005266579793 + "\u7EB9\u8EAB\u88C5\u5973\u88E4\u5B50": -4175307143131093313 + "\u7EB9\u8EAB\u88C5\u5973\u978B\u5B50": -4263731873493534478 + "\u7EBA\u7EC7\u5382": 4558416332402994618 + "\u7EBF\u8F74": -7918682756288050169 + "\u7EC3\u529F\u623F": -9138389138574685193 + "\u7EC6\u5200100\u7EA7": -4057107794871637206 + "\u7EC6\u520016\u54C1": 7413895044818217702 + "\u7EC6\u5200\u51C6\u9876\u7EA7": 7410683175783342203 + "\u7EC6\u5200\u521D\u59CB": 8620074503064994280 + "\u7EC6\u5200\u52BF\u529B": -1772274483938681398 + "\u7EC6\u5200\u65B016\u54C1": 1750422784345597804 + "\u7EC6\u5200\u65B0\u4E5D\u519B": 1228670075059091326 + "\u7EC6\u5200\u65B0\u516B\u519B": -6600933961791291229 + "\u7EC6\u5200\u795E\u6708": 7108345212555715834 + "\u7EC6\u5200\u8FC7\u6E211": 7329710476622463014 + "\u7EC6\u5200\u8FC7\u6E212": -8549969763125386404 + "\u7EC6\u5200\u8FC7\u6E213": -8468678563708620027 + "\u7EC6\u5200\u8FC7\u6E214": -3020263825005382564 + "\u7EC6\u5200\u8FC7\u6E215": 2165936178705124461 + "\u7EC6\u5200\u8FC7\u6E216": -3998785668069484917 + "\u7EC6\u5200\u8FC7\u6E217": 2191986263891076168 + "\u7EC6\u5200\u8FC7\u6E218": 3686439225628342387 + "\u7EC6\u5200\u9EC4\u660F": -9123694983303309246 + "\u7EC7\u5973\u4E1D": 8112512226029000630 + "\u7EC8\u6781\u6280\u80FD\u4E66": -7332215089004281730 + "\u7EC8\u6781\u6280\u80FD\u4E66\u6B8B\u9875": -2185668407760063851 + "\u7ECF\u5178\u7248": 8433549907249448656 + "\u7ED3\u4E39\u77F3": 2446322302856045421 + "\u7ED3\u4E49\u5B88\u62A4\u5377\u8F74": 5047186558804425893 + "\u7ED3\u4E49\u795E\u884C\u5377\u8F74": 6224095233551846195 + "\u7ED3\u4E49\u79FB\u5C71\u5377\u8F74": -8141659648560372173 + "\u7ED3\u4E49\u8BC6\u6D77\u5377\u8F74": -8066504654226748693 + "\u7ED3\u4E49\u8BF8\u4E16\u754C\u5377\u8F74": 1090461876671729183 + "\u7ED3\u4E49\u8FC5\u6377\u5377\u8F74": -3054602856133988996 + "\u7ED3\u5408\u4E4B\u77F3": -1721108358861431327 + "\u7ED3\u5A5A\u767E\u5E74\u597D\u5408": 6668769679207517516 + "\u7ED3\u5A5A\u7EA2\u5305": -3463790427469433323 + "\u7ED3\u7F18\u4F1E": -494262803306851436 + "\u7ED9\u534E\u5149\u4F1A\u8054\u7EDC\u5458\u7684\u4FE1": 8966036319259224119 + "\u7ED9\u6697\u9690\u4F1A\u8054\u7EDC\u5458\u7684\u4FE1": 8121158273245575931 + "\u7ED9\u8F89\u591C\u519B\u4F1A\u8054\u7EDC\u5458\u7684\u4FE1": 551680150339022388 + "\u7EDA\u70C2\u82B1\u6735\u9ED1\u7EB1\u88D9\u5934\u53D1": 1298827672695865626 + "\u7EDA\u70C2\u82B1\u6735\u9ED1\u7EB1\u88D9\u62A4\u8155": 7427292048084456883 + "\u7EDA\u70C2\u82B1\u6735\u9ED1\u7EB1\u88D9\u8863\u670D": -3578722549011764195 + "\u7EDA\u70C2\u82B1\u6735\u9ED1\u7EB1\u88D9\u978B\u5B50": -274640827250861426 + "\u7EDB\u73E0\u8349": -4464976974089829425 + "\u7EDB\u923A": -6610283389303728405 + "\u7EDD\u5723\u4E39": 7479676004509359994 + "\u7EDD\u5929\u6212": -5105572765931069367 + "\u7EDD\u5929\u9F99\u7259\u67AA": 2533080880491497370 + "\u7EDD\u60C5\u5200": 5243308928844484545 + "\u7EDD\u60C5\u65A9": -2524830279566313044 + "\u7EDF\u5FA1\u4E4B\u5FC3": 2000505458773553088 + "\u7EE2\u4E1D": 6670454181331425700 + "\u7EE3\u7403\u6CD5\u7403": -824128843942511624 + "\u7EE3\u7EEE\u56DB\u9762\u4EAD": -3551271331473588945 + "\u7EE3\u82B1\u978B": 8291689911052871887 + "\u7EEF\u7EA2\u5E7B\u5F71": 383182697125739241 + "\u7EEF\u7EA2\u6C34\u6676\u9152\u5177": -733069164041319382 + "\u7EF0\u7EA6\u62AB\u98CE": 4767073491623321172 + "\u7EF4\u591A\u5229\u4E9A\u7684\u79D8\u5BC6\u5973\u88C5\u4E0A\u8863": 4718715653387916626 + "\u7EF4\u591A\u5229\u4E9A\u7684\u79D8\u5BC6\u5973\u88C5\u5934\u53D1": -2066787607457228017 + "\u7EF4\u591A\u5229\u4E9A\u7684\u79D8\u5BC6\u5973\u88C5\u88D9\u5B50": -2014669548257240391 + "\u7EF4\u591A\u5229\u4E9A\u7684\u79D8\u5BC6\u5973\u88C5\u978B\u5B50": 5127544909881830321 + "\u7EF4\u7EB3\u65AF\u73AB\u7470\u82B1\u4EAD": -6900270866282159059 + "\u7EF7\u5E26\u7537\u88C5\u7537\u4E0A\u8EAB": -8433511671626867769 + "\u7EF7\u5E26\u7537\u88C5\u7537\u5934\u53D1": -2020876654229037822 + "\u7EF7\u5E26\u7537\u88C5\u7537\u624B\u5957": -7137240632174117329 + "\u7EF7\u5E26\u7537\u88C5\u7537\u88E4\u5B50": -3424503706111483766 + "\u7EF7\u5E26\u7537\u88C5\u7537\u978B\u5B50": 323424386748141101 + "\u7EFD\u7EA2\u83B2\u82B1\u706F": -2010090235971069004 + "\u7EFF\u677E\u77F3\u5760\u5B50": 8508159886495245138 + "\u7EFF\u72EE\u5B50": -849794002336219926 + "\u7EFF\u7389\u77F3\u4F69": -247923545457090484 + "\u7EFF\u773C\u77F3\u67D3\u6599": -4079457896831442461 + "\u7EFF\u78F7": 5712357614799158034 + "\u7EFF\u7EEE\u7126\u6850\u7434": 5434728887538637594 + "\u7EFF\u8272\u5723\u5668\u6B8B\u7247": 3874247634152524673 + "\u7EFF\u8272\u5C0F\u661F\u661F": -3129338413850289392 + "\u7EFF\u8272\u5C0F\u70DF\u82B1": 3828782131509886691 + "\u7EFF\u8272\u67D3\u8272\u5242": 7044889578533289195 + "\u7EFF\u8272\u68C9\u7EBF": -4140971905383033955 + "\u7EFF\u8272\u836F\u7C89": -3485620375180024122 + "\u7EFF\u8336\u68D2\u68D2\u7CD6": -638124246863284397 + "\u7EFF\u841D\u6728\u6805\u680F": 1978202550547612665 + "\u7EFF\u843C\u53F6": -2499321798294658513 + "\u7EFF\u843C\u6885": -948288304101819962 + "\u7EFF\u9C7C\u5375": -8969336880594184259 + "\u7F09\u53E4\u7B97\u7ECF": -5513558227230881259 + "\u7F1A\u5730\u4E4B\u854A": 2569833017810844626 + "\u7F1A\u9B42\u5C65": 9062081380396836401 + "\u7F20\u7EF5\u8F6F\u97AD": 8477029317388338700 + "\u7F24\u7EB7\u70DF\u82B1": 6842513121532610741 + "\u7F54\u6781\u5200": -652620399608192452 + "\u7F57\u5239\u4E4B\u77F3": -5457215541689127654 + "\u7F57\u5239\u5983\u7684\u773C\u73E0": 5917111597210610141 + "\u7F57\u5589\u8F6E": -8427499826132799564 + "\u7F57\u7538\u9ED1\u73CD\u73E0": 4186522046863589024 + "\u7F57\u76D8": -8999503128768556701 + "\u7F57\u7EB1\u5973\u88C5\u793C\u5305": 5228079797246311728 + "\u7F57\u9A6C\u5F0F\u5BAB\u5EF7\u5C55\u793A\u67DC": 5085172931557948970 + "\u7F57\u9A6C\u5F0F\u80E1\u6843\u7ACB\u67DC": -7665039142086043304 + "\u7F57\u9A6C\u98CE\u80E1\u6843\u4E66\u684C": -8790938571463721016 + "\u7F61\u98CE\u5FBD\u7AE01": 6443749027695695060 + "\u7F61\u98CE\u5FBD\u7AE02": 7628509435250084347 + "\u7F61\u98CE\u5FBD\u7AE0\u7070": 3654365783257844914 + "\u7F61\u98CE\u5FBD\u7AE0\u84DD": -2688397237743617927 + "\u7F61\u98CE\u5FBD\u7AE0\u91D1": -8400799469644329726 + "\u7F6A\u6076\u4E4B\u7FFC": 4326427510620884492 + "\u7F8A\u4EBA\u7684\u4FE1\u7269": -9207457201232236661 + "\u7F8A\u5E74\u6446\u644A\u5973": 6287776432541784033 + "\u7F8A\u5E74\u6446\u644A\u7537": -3957660038792298637 + "\u7F8A\u65CF\u5FBD\u8BB0": 7456390031373644825 + "\u7F8A\u76AE\u5730\u56FE": -7393164578058984679 + "\u7F8A\u76AE\u7B26\u7EB8": -126301611714348702 + "\u7F8E": -7574804834558333033 + "\u7F8E\u4EBA\u8549": 5691306551295136087 + "\u7F8E\u4EBA\u9C7C": -8027449906167297211 + "\u7F8E\u5973\u770B\u8FD9\u91CC": 1474919970269176827 + "\u7FA1\u5883\u795E\u4E39\u5E7B\u5929": 642194609404567836 + "\u7FA4\u661F\u7480\u74A8\u5361": -6101761794150885206 + "\u7FA4\u9E70\u5CED\u58C1": 3892489076467100991 + "\u7FBD\u4E4B\u5B88\u62A4(\u795E\u9E70\u795D\u798F)": -1348153720245034869 + "\u7FBD\u5609\u4E0B\u94E0": -2067486731853771692 + "\u7FBD\u5609\u6218\u94E0": -1669865575032371165 + "\u7FBD\u5609\u8155\u7532": -5978280835160402955 + "\u7FBD\u5609\u978B": -5279133831724328107 + "\u7FBD\u65CF13a\u7FBD\u7075\u804C\u4E1A\u88C5\u4E0A\u8863": 7007550281914561779 + "\u7FBD\u65CF13a\u7FBD\u7075\u804C\u4E1A\u88C5\u62A4\u8155": 348172305647035600 + "\u7FBD\u65CF13a\u7FBD\u7075\u804C\u4E1A\u88C5\u88E4\u5B50": 7867243124974944880 + "\u7FBD\u65CF13a\u7FBD\u7075\u804C\u4E1A\u88C5\u978B\u5B50": 6244905349386549271 + "\u7FBD\u65CF13a\u7FBD\u8292\u804C\u4E1A\u88C5\u4E0A\u8863": 1141018528195457402 + "\u7FBD\u65CF13a\u7FBD\u8292\u804C\u4E1A\u88C5\u62A4\u8155": -9213724618795216172 + "\u7FBD\u65CF13a\u7FBD\u8292\u804C\u4E1A\u88C5\u88E4\u5B50": -5381300015377040380 + "\u7FBD\u65CF13a\u7FBD\u8292\u804C\u4E1A\u88C5\u978B\u5B50": 5300220537336407411 + "\u7FBD\u65CF13b\u7FBD\u7075\u804C\u4E1A\u88C5\u4E0A\u8863": -7054745210184887791 + "\u7FBD\u65CF13b\u7FBD\u7075\u804C\u4E1A\u88C5\u62A4\u624B": 2372475695863389719 + "\u7FBD\u65CF13b\u7FBD\u7075\u804C\u4E1A\u88C5\u88E4\u5B50": 23868159153972112 + "\u7FBD\u65CF13b\u7FBD\u7075\u804C\u4E1A\u88C5\u978B\u5B50": -6086418360523119580 + "\u7FBD\u65CF13b\u7FBD\u8292\u804C\u4E1A\u88C5\u4E0A\u8863": 7025110231246996163 + "\u7FBD\u65CF13b\u7FBD\u8292\u804C\u4E1A\u88C5\u62A4\u624B": -7551179559838581509 + "\u7FBD\u65CF13b\u7FBD\u8292\u804C\u4E1A\u88C5\u88E4\u5B50": 1523857929107105432 + "\u7FBD\u65CF13b\u7FBD\u8292\u804C\u4E1A\u88C5\u978B\u5B50": 330672762080287669 + "\u7FBD\u65CF\u5723\u9B54": -5206760904154682196 + "\u7FBD\u65CF\u67AB\u8272\u7FBD\u6BDB": 7920627814093634439 + "\u7FBD\u65CF\u7075\u7FD4\u7FBD\u7FFC": -5403881042077481253 + "\u7FBD\u65CF\u707F\u8776\u7C89": 2504436593372547549 + "\u7FBD\u65CF\u70BD\u5929\u4F7F\u7FC5\u8180": -2132223296147474451 + "\u7FBD\u65CF\u767D\u7FBD\u7FC5\u8180": 4624761487669696208 + "\u7FBD\u65CF\u7D2B\u8000\u7FBD\u7FC5": -150080414195497411 + "\u7FBD\u65CF\u7EA2\u673A\u68B0\u7FC5\u8180": 724715057396435179 + "\u7FBD\u65CF\u7FBD\u7075\u804C\u4E1A\u88C5\u4E0A\u8863": 6081128965329902153 + "\u7FBD\u65CF\u7FBD\u7075\u804C\u4E1A\u88C5\u62A4\u8155": -6419104061644218987 + "\u7FBD\u65CF\u7FBD\u7075\u804C\u4E1A\u88C5\u88E4\u5B50": -6987764092218183864 + "\u7FBD\u65CF\u7FBD\u7075\u804C\u4E1A\u88C5\u978B\u5B50": 4633989167640050852 + "\u7FBD\u65CF\u7FBD\u8292\u804C\u4E1A\u88C5\u4E0A\u8863": 1908636461011147419 + "\u7FBD\u65CF\u7FBD\u8292\u804C\u4E1A\u88C5\u62A4\u8155": 7797313550321711825 + "\u7FBD\u65CF\u7FBD\u8292\u804C\u4E1A\u88C5\u88E4\u5B50": 8153848549103026432 + "\u7FBD\u65CF\u7FBD\u8292\u804C\u4E1A\u88C5\u978B\u5B50": 5960251451474347905 + "\u7FBD\u65CF\u84DD\u5B99": -5988782229800139007 + "\u7FBD\u65CF\u90E8\u843D\u4E4B\u5149": 8862269943514465866 + "\u7FBD\u65CF\u98DE\u884C\u5668": 3532988096280989878 + "\u7FBD\u65CF\u98DE\u884C\u5668\u8180\u5B50": -3570700287698337640 + "\u7FBD\u65CF\u9ED1\u9B54\u7130": 1661275209723406507 + "\u7FBD\u6BDB\u5370\u5EA6\u7537\u88C5\u4E0A\u8863": 2628421993924562618 + "\u7FBD\u6BDB\u5370\u5EA6\u7537\u88C5\u5934\u53D1": 4664746076636072282 + "\u7FBD\u6BDB\u5370\u5EA6\u7537\u88C5\u88E4\u5B50": 2441263742769565840 + "\u7FBD\u6BDB\u5370\u5EA6\u7537\u88C5\u978B\u5B50": 7915307923249187991 + "\u7FBD\u7075\u5927\u5E08": 3379210225121171325 + "\u7FBD\u7075\u6280\u80FD\u4E66": -5177836199875197692 + "\u7FBD\u7075\u661F\u76D8": -8912422657438034796 + "\u7FBD\u7075\u7248\u7C89\u5973\u88C5\u4E0A\u8863": -8014069313880167746 + "\u7FBD\u795E\u4E4B\u7FFC": 734784179743413100 + "\u7FBD\u8292\u5927\u5E08": -1191363802904613688 + "\u7FBD\u8292\u6212\uFF08\u9633\uFF09": 4450481297673721491 + "\u7FBD\u8292\u6212\uFF08\u9634\uFF09": -8849523973171142926 + "\u7FBD\u8292\u6218\u7532": 1153312858052539487 + "\u7FBD\u8292\u6280\u80FD\u4E66": 6901776368440309895 + "\u7FBD\u8292\u62A4\u624B": -7723757393027647699 + "\u7FBD\u8292\u62A4\u817F": -4228701930378995441 + "\u7FBD\u8292\u661F\u76D8": -5420020268269798723 + "\u7FBD\u8292\u7248\u9EC4\u7537\u88C5\u4E0A\u8863": -6024860052247492791 + "\u7FBD\u8292\u888B": 5439615428088795018 + "\u7FBD\u8292\u978B": 590532406552299958 + "\u7FBD\u8292\u9879\u94FE": 5084624128189031380 + "\u7FBD\u88D9\u88C5\u5973\u4E0A\u8863": -2393631539994178311 + "\u7FBD\u88D9\u88C5\u5973\u62A4\u8155": -4974267522705770742 + "\u7FBD\u88D9\u88C5\u5973\u88D9\u5B50": -2993836091939270015 + "\u7FBD\u88D9\u88C5\u5973\u978B\u5B50": 3379297293449936049 + "\u7FBD\u9B42\u4E4B\u5F13": -2550672398728591746 + "\u7FBD\u9CDE\u51A0": 4923466569192846798 + "\u7FC5\u70751": 5775696008796562950 + "\u7FC5\u70752": 6787604603877504164 + "\u7FC5\u70753": -6392850007268936215 + "\u7FC5\u70754": -4950990235639087655 + "\u7FC5\u70755": 6249534323750001058 + "\u7FC5\u70756": -6357138980590863023 + "\u7FC5\u8180\u8D64\u9704": -1311510944366961589 + "\u7FCE\u96C0\u620F\u6625\u523B\u74F7": 6910529780536865557 + "\u7FD4\u4E91\u4EE4\u724C": -4351414141831395200 + "\u7FD4\u7A7A\u4E4B\u4E1D": -7255155541837979730 + "\u7FD4\u7A7A\u4E4B\u7231": 6061568458118874716 + "\u7FD4\u7A7A\u4E4B\u7EB1": 1379729683759695377 + "\u7FD4\u7A7A\u4E4B\u7FFC": 7797800826253039483 + "\u7FD4\u7A7A\u4E4B\u821E": -3480980790263900775 + "\u7FD4\u7A7A\u4E4B\u9732": 5713757757997832626 + "\u7FE0\u6D9B\u60CA\u95E8": -8968250285436943313 + "\u7FE0\u7389": -768025168561649701 + "\u7FE0\u7389\u6DA6\u73E0\u9879\u94FE": 1867941480390642538 + "\u7FE0\u743C\u58F6": -7414732247690562226 + "\u7FE0\u7AF9\u6D41\u6C34": -3042419329851098885 + "\u7FE0\u7EFF\u4E4B\u77F3": -2589346308225424085 + "\u7FE0\u85D3\u82B1\u77F3\u7EB2": 6692919178774267464 + "\u7FE0\u9752\u83B2\u82B1\u7B14\u6D17": 9099101797841775572 + "\u7FE1\u7FE0\u4E4B\u53F6": 7919128306053384906 + "\u7FE1\u7FE0\u4EBA\u50CF": -1903710937536005772 + "\u7FE1\u7FE0\u6212": -1144075781718524557 + "\u7FE1\u7FE0\u624B\u956F": -8046429084318722885 + "\u7FE1\u7FE0\u767D\u83DC": -2579033880311567863 + "\u7FE1\u7FE0\u8272\u67D3\u6599": -3544991487184740805 + "\u7FE1\u7FE0\u94FE": 8409968349253683413 + "\u8000\u4E16\u91CD\u751F": 1206701308831481692 + "\u8000\u5149\u9879\u94FE": -7038183084132988780 + "\u8000\u661F\u9879\u94FE": 3644862209678899371 + "\u8000\u6708\u9879\u94FE": -2291729130809216782 + "\u8000\u708E\u4E4B\u77DB": 2557038204197623085 + "\u8000\u7A7A\u9879\u94FE": -5061041137280672138 + "\u8000\u8F89\u9879\u94FE": 7371471250949247956 + "\u8000\u9633\u53E4\u5B9D": -5158831629788842431 + "\u8001\u864E": 1094997553752833046 + "\u8001\u864E\u7684\u773C\u775B": 5423311828876139489 + "\u8001\u9A6C\u7684\u5C38\u9AA8": -3866153911180135215 + "\u8001\u9F20\u7231\u5927\u7C73": -7530840451144789155 + "\u8010\u529B\u4E4B\u8BC1": -7224124068676286417 + "\u8010\u529B\u94F8\u6750": 2750523084418424779 + "\u8017\u661F\u5361": 8455507049081136977 + "\u805A\u4ED9\u7B26": 5943296273148883390 + "\u805A\u5143\u795E\u77F3": 5248736661668770510 + "\u805A\u5B9D\u76C6": -6999312738678892289 + "\u805A\u7075\u5F29": -6026112705519332320 + "\u805A\u795E\u7B26": 90152587252550783 + "\u805A\u9B42\u62AB\u98CE": 535604926627134379 + "\u8089\u76FE\u9879\u94FE": -3646754006135402525 + "\u8089\u829D": -457780796145481100 + "\u80A5\u4FEE\u7F57": 7779925675840100998 + "\u80DC\u5229": -8470072619183641451 + "\u80DC\u5229\u6212\u6307": -8110166393066663240 + "\u80E1\u6768": -4580524824562526625 + "\u80E1\u6843\u5178\u96C5\u6B27\u5F0F\u5E8A": -5830748024218794588 + "\u80E1\u7434": 2844013798668330055 + "\u80E1\u841D\u535C": -2848489993169657178 + "\u80E7\u65CF\u8FD1\u6218100\u4E0A\u8863": -6112623529855691942 + "\u80E7\u65CF\u8FD1\u6218100\u62A4\u8155": 3235339563540667721 + "\u80E7\u65CF\u8FD1\u6218100\u88E4\u5B50": -2427598327383594761 + "\u80E7\u65CF\u8FD1\u6218100\u978B\u5B50": -1946358927007780139 + "\u80E7\u65CF\u8FD1\u6218\u51C6\u9876\u7EA7\u4E0A\u8863": -2307204565825607425 + "\u80E7\u65CF\u8FD1\u6218\u51C6\u9876\u7EA7\u62A4\u8155": -3898204448014054198 + "\u80E7\u65CF\u8FD1\u6218\u51C6\u9876\u7EA7\u88E4\u5B50": 488915719112243515 + "\u80E7\u65CF\u8FD1\u6218\u51C6\u9876\u7EA7\u978B\u5B50": -2342599659769382360 + "\u80E7\u65CF\u8FD1\u6218\u65B0\u4E5D\u519B\u4E0A\u8863": 6195327458953646580 + "\u80E7\u65CF\u8FD1\u6218\u65B0\u4E5D\u519B\u62A4\u8155": -3622973465307045303 + "\u80E7\u65CF\u8FD1\u6218\u65B0\u4E5D\u519B\u88E4\u5B50": -5138117119225936046 + "\u80E7\u65CF\u8FD1\u6218\u65B0\u4E5D\u519B\u978B\u5B50": -8810128766439785960 + "\u80E7\u65CF\u8FD1\u6218\u65B0\u624B\u88C5\u4E0A\u8863": -8488340225737409886 + "\u80E7\u65CF\u8FD1\u6218\u65B0\u624B\u88C5\u62A4\u8155": 5476546220330524114 + "\u80E7\u65CF\u8FD1\u6218\u65B0\u624B\u88C5\u88E4\u5B50": 6771795614764503191 + "\u80E7\u65CF\u8FD1\u6218\u65B0\u624B\u88C5\u978B\u5B50": -1014298681204776079 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E211\u4E0A\u8863": 5847094010776431769 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E211\u62A4\u8155": 5938540050273735356 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E211\u88E4\u5B50": 4499323867114385673 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E211\u978B\u5B50": -4373010500357505736 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E212\u4E0A\u8863": 9074536673142410326 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E212\u62A4\u8155": 3926488137739316776 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E212\u88E4\u5B50": -169991695904823390 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E212\u978B\u5B50": 5806663533848164589 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E213\u4E0A\u8863": 4218503068898450434 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E213\u62A4\u8155": -4554381969986633756 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E213\u88E4\u5B50": -3113365583115139529 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E213\u978B\u5B50": -7758165170352652574 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E214\u4E0A\u8863": 4451364964400535563 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E214\u62A4\u8155": -2520604344337590609 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E214\u88E4\u5B50": -8055934571154297308 + "\u80E7\u65CF\u8FD1\u6218\u8FC7\u6E214\u978B\u5B50": -4199593164065895257 + "\u80E7\u65CF\u8FDC\u7A0B100\u7EA7\u4E0A\u8863": -5035728001912051325 + "\u80E7\u65CF\u8FDC\u7A0B100\u7EA7\u62A4\u8155": 6680230044300582060 + "\u80E7\u65CF\u8FDC\u7A0B100\u7EA7\u88E4\u5B50": 341114317321901587 + "\u80E7\u65CF\u8FDC\u7A0B100\u7EA7\u978B\u5B50": 4183882884936833436 + "\u80E7\u65CF\u8FDC\u7A0B\u51C6\u9876\u7EA7\u4E0A\u8863": -6040686963256234798 + "\u80E7\u65CF\u8FDC\u7A0B\u51C6\u9876\u7EA7\u62A4\u8155": 4800094656670852845 + "\u80E7\u65CF\u8FDC\u7A0B\u51C6\u9876\u7EA7\u88E4\u5B50": -2514509546523575934 + "\u80E7\u65CF\u8FDC\u7A0B\u51C6\u9876\u7EA7\u978B\u5B50": -8166565211857253950 + "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u4E5D\u519B\u4E0A\u8863": 1653282063708248909 + "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u4E5D\u519B\u62A4\u8155": -3884358967826937766 + "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u4E5D\u519B\u88E4\u5B50": 2226861906283810228 + "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u4E5D\u519B\u978B\u5B50": 1526850932797418378 + "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u624B\u88C5\u4E0A\u8863": -5854235991864042986 + "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u624B\u88C5\u62A4\u8155": -8283686825200753506 + "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u624B\u88C5\u88E4\u5B50": 3426763779065637660 + "\u80E7\u65CF\u8FDC\u7A0B\u65B0\u624B\u88C5\u978B\u5B50": -3131822555409743413 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E211\u4E0A\u8863": -9115237410126719640 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E211\u62A4\u8155": 7883037412073066154 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E211\u88E4\u5B50": 3223245399277736234 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E211\u978B\u5B50": -7341228336294398616 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E212\u4E0A\u8863": -3686705062677510710 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E212\u62A4\u8155": 7788692559145036527 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E212\u88E4\u5B50": 3083128890023631710 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E212\u978B\u5B50": -3846000541270439728 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E213\u4E0A\u8863": -6293530241194868392 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E213\u62A4\u8155": -676977473424412368 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E213\u88E4\u5B50": -2359298448218991480 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E213\u978B\u5B50": -1254452910115653331 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E214\u4E0A\u8863": 7822336527303030050 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E214\u62A4\u8155": 4453436060699431114 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E214\u88E4\u5B50": -478091573029777090 + "\u80E7\u65CF\u8FDC\u7A0B\u8FC7\u6E214\u978B\u5B50": 8616708060236826326 + "\u80E7\u65CF\u91D1\u5C5E\u8F6E": 6630879828629696868 + "\u80E7\u65CF\u98DE\u884C\u5668": 3710875665032882401 + "\u80E7\u65CF\u98DE\u884C\u56681": 4110506330028364203 + "\u80E7\u65CF\u98DE\u884C\u566811": 6299458064389697348 + "\u80E7\u65CF\u98DE\u884C\u566812": 1563967376907821051 + "\u80E7\u65CF\u98DE\u884C\u56682": 8979778055125424222 + "\u80E7\u65CF\u98DE\u884C\u56683": 1261657577933688301 + "\u80E7\u65CF\u98DE\u884C\u56684": 2996565170179549780 + "\u80E7\u65CF\u98DE\u884C\u56685": -8920044129366462387 + "\u80E7\u65CF\u98DE\u884C\u56686": 3126470392429778179 + "\u80E7\u65CF\u98DE\u884C\u56687": -7142363158265483175 + "\u80E7\u65CF\u98DE\u884C\u56688": 7078610291867955445 + "\u80FD\u8A00\u8349": -1507441730050460194 + "\u80FD\u91CF\u6C34\u6676": 4877228919727602010 + "\u80FD\u91CF\u7ED3\u6676\u4F53\u51B0": -4228471687060973097 + "\u8102\u80AA": -477357050332774299 + "\u8138\u8C31\u62F3\u5957": 4622690845245687996 + "\u814A\u516B\u7CA5": 4530497765759473480 + "\u8150\u5316\u9E1F\u86CB": 3638691956340096168 + "\u817A\u4F53": 6329099162799002875 + "\u817E\u4E91\u4EE4\u724C": 2866393071550814045 + "\u817E\u86DF\u4E4B\u77DB": -4749959527710415822 + "\u81EA\u7136\u788E\u7247": 1763418299896115809 + "\u81EA\u7136\u7CBE\u534E": 6882451146991195402 + "\u81F3\xB7\u8BF8\u795E\u4E4B\u4F51": -5311419122184137326 + "\u81F3\u5C0A\u6B66\u5723": 6146986665356859302 + "\u81F3\u5C0A\u76D4": -5585273323403397969 + "\u81F3\u5C0A\u7F29\u5730\u94C3": -2231401102245385188 + "\u81F4\u547D\u6BD2\u6DB2": 7221570126993599181 + "\u81F4\u547D\u7684\u7834\u7EFD": -8274119237445329478 + "\u81F4\u547D\u7684\u7834\u7EFD1": 9159669901484233082 + "\u820D\u5229\u5B50": -7396447981746731796 + "\u821C\u65E5\u8170\u9970": 1132270669750685644 + "\u826E\u4E4B\u8868\u5FBD": -2646631244852897683 + "\u826E\u4E4B\u9B42": -6623601083025364489 + "\u8273\u4E3D\u5973\u88C5\u4E0A\u8863": -3470023595474172120 + "\u8273\u4E3D\u5973\u88C5\u5934\u53D1": 4933850178605515344 + "\u8273\u4E3D\u5973\u88C5\u62A4\u8155": 9097448676939355842 + "\u8273\u4E3D\u5973\u88C5\u978B\u5B50": 5283702039067024747 + "\u827A\u4F0E\u9AA8": -5981133616519545595 + "\u8282\u65E5\u6302\u706F": -8228565425035575977 + "\u8282\u8282\u5BCC\u8D35": 8670218190127002748 + "\u828A\u828A\u4E2D\u534E\u7ED3": 2878103580929772428 + "\u8292\u679C\u8272\u67D3\u6599": -8092037411378511565 + "\u8299\u82D3": -5920457895937085848 + "\u8299\u84C9\u523A": 124966955929531095 + "\u8299\u84C9\u5E76\u8482\u5782\u706F": 1982422175083082953 + "\u829D\u4EBA": 3421987500919890906 + "\u829D\u9A6C": -7886979771415315757 + "\u82A6\u82C7": -5692452105134566845 + "\u82A6\u82C7\u79CB\u9526\u53CC\u8033\u58F6": 3805278578304501297 + "\u82AD\u8549\u6247\u53CC\u624B\u957F": 5500047092609983258 + "\u82B1": -527548873728009373 + "\u82B1\u4E4B\u6BD4\u57FA\u5C3C\u4E0A\u8863": -6998839316361536689 + "\u82B1\u4E4B\u6BD4\u57FA\u5C3C\u4E0B\u8863": 9126802513108240971 + "\u82B1\u4E4B\u6BD4\u57FA\u5C3C\u978B": 19127009816987410 + "\u82B1\u5349\u5929\u9E45\u6446\u4EF6": 3267554281400106540 + "\u82B1\u53CC\u624B\u957F2": 472120370657420109 + "\u82B1\u56ED\u957F\u6728\u6905": -3964292462229865654 + "\u82B1\u597D\u6708\u5706": -3835785289148792693 + "\u82B1\u597D\u6708\u57061": 7186449507594051210 + "\u82B1\u5F00\u5BCC\u8D35": 1376383372357695571 + "\u82B1\u6735\u5315\u9996": -6369841786635004663 + "\u82B1\u6735\u5F29": -4431135517396956381 + "\u82B1\u675F\u6D6E\u96D5\u4E09\u4EBA\u6C99\u53D1": 5893738558502686888 + "\u82B1\u675F\u6D6E\u96D5\u53CC\u4EBA\u6C99\u53D1": -3871396141356039063 + "\u82B1\u675F\u6D6E\u96D5\u5927\u53CC\u4EBA\u6C99\u53D1": -5255743083301966781 + "\u82B1\u675F\u6D6E\u96D5\u76AE\u6C99\u53D1": -9000007403879491139 + "\u82B1\u6837\u5E74\u534E": -4123515457745212484 + "\u82B1\u74E3": 8265311680025784859 + "\u82B1\u751F": -8294370016700238387 + "\u82B1\u77E5\u5973\u88C5\u4E0A\u8863": 4259695406084407908 + "\u82B1\u77E5\u5973\u88C5\u5934\u53D1": -3016965771254072458 + "\u82B1\u77E5\u5973\u88C5\u88D9\u5B50": -2321141670709238786 + "\u82B1\u77E5\u5973\u88C5\u978B\u5B50": 7798703804813427749 + "\u82B1\u7EB9\u5C0F\u793C\u670D\u4E0A\u8863": -5423199258694918939 + "\u82B1\u7EB9\u5C0F\u793C\u670D\u88E4": 2262896449635107875 + "\u82B1\u7EB9\u5C0F\u793C\u670D\u978B": 6393650048418222152 + "\u82B1\u82DE\u75AF\u5973": -3826433562198236230 + "\u82B1\u857E\u5E74\u88C5\u8863\u670D": 2209836958354532529 + "\u82B1\u857E\u5E74\u88C5\u978B": -2194916104815344152 + "\u82B1\u866B\u817A\u4F53": 3610592485162099366 + "\u82B1\u8776\u7EA2\u9526\u69BB": -2365217357232656442 + "\u82B1\u8FB9\u523A\u5BA2\u7537\u65F6\u88C5\u4E0A\u8863": -3752821176204879969 + "\u82B1\u8FB9\u523A\u5BA2\u7537\u65F6\u88C5\u5934\u53D1": 8635081273776444790 + "\u82B1\u8FB9\u523A\u5BA2\u7537\u65F6\u88C5\u624B\u5957": -824928756394848813 + "\u82B1\u8FB9\u523A\u5BA2\u7537\u65F6\u88C5\u88E4\u5B50": -6233106445473636270 + "\u82B1\u8FB9\u523A\u5BA2\u7537\u65F6\u88C5\u978B\u5B50": 6899959452198160572 + "\u82B1\u95F4\u8361": 5533736701319293578 + "\u82B3\u534E\u76C8\u5BA4\u523B\u74F7": 1004463887307713384 + "\u82B3\u8273\u5F69\u7EE2\u7ACB\u706F": -5061742074472324225 + "\u82B7\u60AC\u5703": 6779992023160442132 + "\u82CD\u56ED\u7FE0\u8349": 6533003603858992275 + "\u82CD\u7FBD\u5929\u73E0": -7649583758387271817 + "\u82CD\u832B\u4E4B\u77F3": 4222639767085973314 + "\u82CD\u832B\u6756": 6198190131832865929 + "\u82CD\u8747\u62CD": -5138525040357292555 + "\u82CD\u9E70\u56FE\u817E": -4488908070799957415 + "\u82CF\u683C\u5170\u9177\u88C5\u5973\u4E0A\u8863": 4266537661580731903 + "\u82CF\u683C\u5170\u9177\u88C5\u88D9\u5B50": -6110774594862432206 + "\u82CF\u683C\u5170\u9177\u88C5\u978B": -3159924703861515976 + "\u82E6\u6D77": 734716313021193308 + "\u82E6\u6D77\u65E0\u6DAF\u80F6": 8020950953253500360 + "\u82F1\u4F26\u8857\u5934\u7537\u88C5\u4E0A\u8863": -146386980656925679 + "\u82F1\u4F26\u8857\u5934\u7537\u88C5\u5934\u53D1": 6797984153853693263 + "\u82F1\u4F26\u8857\u5934\u7537\u88C5\u88E4\u5B50": 1514436364056081843 + "\u82F1\u4F26\u8857\u5934\u7537\u88C5\u978B\u5B50": 5275364590025700719 + "\u82F1\u534E\u8170\u9970": 3036163439870825037 + "\u82F1\u96C4\u4E4B\u8840": -3605484077397853031 + "\u82F1\u96C4\u8170\u9970": -417060901023591858 + "\u82F9\u679C\u6811": 2311741689586191776 + "\u82F9\u679C\u82AC\u8FBE": 2446581406220069296 + "\u831C\u74E6\u6708\u7259\u95E8": 4697038764384939498 + "\u8336\u58F6": -4056359310631523002 + "\u8346\u68D8\u523A": 5629806129724153774 + "\u8346\u68D8\u523A\u7403": -720442044279990662 + "\u8346\u68D8\u68D2": 92424825832250817 + "\u8349\u539F\u5C0F\u82B11": 7056489111824077703 + "\u8349\u539F\u5C0F\u82B12": -7775342329940108093 + "\u8349\u539F\u5C0F\u82B13": 8569873287194101247 + "\u8349\u539F\u5C0F\u82B14": 5388884828599372137 + "\u8349\u539F\u5C0F\u82B15": 5846429745358354610 + "\u8349\u82AF\u8272\u67D3\u6599": 6914443847109651604 + "\u8349\u836F\u7C89": -6483571493171469086 + "\u8349\u8393\u7EA2\u68D2\u68D2\u7CD6": -6441706624919354393 + "\u8363\u8349": -4726197661424937017 + "\u8367\u5149\u4E4B\u7FFC": 6898363411928790501 + "\u836F\u5E08\u5927\u5E08\u4E4B\u5323\u5C0F": 1929695697390068328 + "\u836F\u5E08\u7CBE\u901A": -5555522954706279513 + "\u836F\u623F": 803799219552894847 + "\u836F\u738B\u624B\u672D": -2127123582742310712 + "\u8377\u53F6\u8FB9\u7537\u88C5\u5934\u53D1": -4477175174773975463 + "\u8377\u53F6\u8FB9\u7537\u88C5\u8863\u670D": -4370136835238448984 + "\u8377\u53F6\u8FB9\u7537\u88C5\u88E4\u5B50": 3310939685847794197 + "\u8377\u53F6\u8FB9\u7537\u88C5\u978B\u5B50": 2101177851529701275 + "\u8377\u82B1": -7593574777152275839 + "\u8377\u82B1\u62F3\u5957": -8200440676862971877 + "\u8377\u9999\u6EE1\u590F": 5749801968349733816 + "\u837C\u863C\u82B1\u4E8B": -4905179219901277196 + "\u83B2\u5B50": -1395009414346270743 + "\u83B2\u5F2F\u6298\u6247\u697C": 2551155551613784166 + "\u83B2\u82B1": 8856590729263250040 + "\u83B2\u82B1\u706F": 1626127551852990506 + "\u83B2\u82B1\u706F\u70DF\u82B1": 6436340973970775445 + "\u83B2\u82B1\u706F\u70DF\u82B1\u7B80\u5355": 6721424318666434472 + "\u83B2\u84C9": -2102190766604481489 + "\u83B2\u84EC": -4165582445175062718 + "\u83BA\u83BA\u71D5\u71D5": -201851367770733 + "\u83CA\u82B1": -7690906978667131893 + "\u83D6\u84B2\u7AF9\u53F6": 2346759428462913250 + "\u83E1\u6619\u8D50\u8BED\u77F3": -2365292995696499353 + "\u83E9\u63D0\u4ED9\u7956": -1287442049212030651 + "\u83E9\u63D0\u5B9D\u6756": 3897743621600222342 + "\u83E9\u63D0\u6728": -7762817789451123041 + "\u840C\u59B9\u88C5\u4E0A\u8863": -6401510403623291168 + "\u840C\u59B9\u88C5\u4E0B\u8863": -705492598077798684 + "\u840C\u59B9\u88C5\u5934\u53D1": -7200441445584379400 + "\u840C\u59B9\u88C5\u62A4\u8155": 469287420922454653 + "\u840C\u59B9\u88C5\u978B\u5B50": 265947522328912085 + "\u840C\u5C0F\u59B9": 2039231434766526707 + "\u841D\u5170\u94C1\u827A\u95E8": -5545757151528963446 + "\u841D\u8389\u88C5\u5934\u53D132": -422256813354928849 + "\u841D\u8389\u88C5\u8863\u670D32": -1257744032379032732 + "\u841D\u8389\u88C5\u978B\u5B5032": -334719789109233300 + "\u8424\u706B\u866B\u56CA": 6993047793397746728 + "\u843D\u51E4\u5F29": 5248449732717840995 + "\u843D\u661F": 7025065939108558854 + "\u8461\u8404\u5587\u53ED": 6441454035567529552 + "\u84DD\u4E00": -2990451886193464046 + "\u84DD\u4E8C": -7231207916023259085 + "\u84DD\u5B9D\u6C34\u6676\u9152\u5177": 4928034651318785088 + "\u84DD\u5B9D\u77F3": -8105165052627920546 + "\u84DD\u5B9D\u77F3\u6212\u6307\u5927": -4818754722276058258 + "\u84DD\u5B9D\u77F3\u6212\u6307\u5C0F": -3890434960724863227 + "\u84DD\u5B9D\u77F3\u88C5": -4315865237317467080 + "\u84DD\u5F71\u4E2D\u7EA7": -2093525619228108538 + "\u84DD\u5F71\u521D\u7EA7": -8115802546976475913 + "\u84DD\u5F71\u9AD8\u7EA7": 7687360479163792581 + "\u84DD\u7389": 4237072276428247727 + "\u84DD\u7CBE\u7075": -6283562710585613187 + "\u84DD\u7EFF\u4E00": 3222038733457260601 + "\u84DD\u7EFF\u4E8C": -2327929365384311947 + "\u84DD\u8272\u5723\u5668\u6B8B\u7247": 2619172715545720085 + "\u84DD\u8272\u5927\u773C\u775B": 8963934090873542030 + "\u84DD\u8272\u5996\u59EC": 9221921622097981888 + "\u84DD\u8272\u5C0F\u661F\u661F": 2360165648149837483 + "\u84DD\u8272\u601D\u5FF5": 6800450827309094434 + "\u84DD\u8272\u604B\u60C5": -2086350706206292579 + "\u84DD\u8272\u661F\u7403": 5889547316486088835 + "\u84DD\u8272\u67D3\u8272\u5242": 5964021542634452876 + "\u84DD\u8272\u6C34\u6676\u77F3": 3372381927338805769 + "\u84DD\u8272\u6D46\u8349": -60580014518036905 + "\u84DD\u8272\u8001\u9E70": 3994227074055096983 + "\u84DD\u8393\u68D2\u68D2\u7CD6\u7247": -3520233359451134196 + "\u84DD\u8611\u83C7": 325545149237822524 + "\u84DD\u8611\u83C72": 2640343872105526880 + "\u84DD\u8C79\u5B50": -8206624327602552078 + "\u84DD\u94BB": -6456369006131272263 + "\u8513\u8D8A\u8393\u7269\u8BED": -2154404631400683015 + "\u851A\u84DD\u87E0\u8FD0\u78A7\u73BA": 290448154975431304 + "\u851A\u84DD\u9065\u6781\u78A7\u73BA": -8612675900475489439 + "\u853D\u65E5\u9E22\u5361\u72471": -8786519551724988383 + "\u853D\u65E5\u9E22\u5361\u72472": -5862245550801501279 + "\u853D\u65E5\u9E22\u5361\u72473": -6772011871995884956 + "\u853D\u65E5\u9E22\u5361\u72474": 779529261774151077 + "\u853D\u65E5\u9E22\u5361\u72475": -7285982881106868612 + "\u853D\u65E5\u9E22\u5361\u72476": -4926870328576011687 + "\u853D\u65E5\u9E22\u5361\u72477": 3537857891719422786 + "\u853D\u65E5\u9E22\u5361\u72478": 5711840909977921675 + "\u854A\u5149\u6D6E\u9999\u6811": 3721040384048510383 + "\u8584\u8377\u8272\u67D3\u6599": -7515122683272558269 + "\u858F\u7C73": 372024304236823375 + "\u85B0\u8863\u8349": 2660149679917228983 + "\u85CF\u5B9D\u56FE": 887295516685734209 + "\u85CF\u5B9D\u56FE1\u7EA7": -7198074135473053802 + "\u85CF\u5B9D\u56FE2\u7EA7": 8672434030976537536 + "\u85CF\u5B9D\u56FE3\u7EA7": -1230672017977371683 + "\u85CF\u5B9D\u56FE4\u7EA7": -8163365687228535178 + "\u85CF\u5B9D\u56FE5\u7EA7": -3194731761830111435 + "\u85CF\u5B9D\u56FE6\u7EA7": -4170132198430984258 + "\u85CF\u5B9D\u56FE7\u7EA7": -2995483034886927171 + "\u85CF\u5B9D\u56FE8\u7EA7": 5479770894465133774 + "\u85CF\u5F71\u62AB\u98CE": -4385295650331502717 + "\u85CF\u661F\u5251": -236694930400255947 + "\u85CF\u70DF\u58A8": -2227162549751940182 + "\u85CF\u7A7A\u5947\u5377": -8930872235612189258 + "\u85CF\u950B\u5251": -8655988345320571293 + "\u85D5\u8377\u8272\u67D3\u6599": 6798072609833372858 + "\u85D5\u8377\u8272\u67D3\u8272\u5361": -1498504505371700089 + "\u85E4\u6756": -8969562768466079464 + "\u85E4\u8513\u96D5\u9542\u5C4F\u98CE": -8516995132907676752 + "\u85E4\u97AD": 4579353935316173073 + "\u85E4\u9EC4": -3099380281035560876 + "\u85FF\u9999": 464780351933525630 + "\u8638\u91D1\u65A7": 5774104764669692366 + "\u864E\u5578\u9774": 288507546755235685 + "\u864E\u5934\u76D4": 8906972636155415001 + "\u864E\u5934\u7EA2\u5305": -7220759076430691292 + "\u864E\u5A01\u51FD": 2016690901246100054 + "\u864E\u5E74\u5145\u5B9E\u7EA2\u5305": 5304284081408078125 + "\u864E\u5E74\u539A\u91CD\u7EA2\u5305": 4156269503209926004 + "\u864E\u5E74\u6625\u8282\u5927\u7EA2\u5305": -5699207154634277317 + "\u864E\u5E74\u6625\u8282\u677E": 5882009203794777615 + "\u864E\u5E74\u6625\u8282\u6885": -5540747673584558005 + "\u864E\u5E74\u6625\u8282\u7AF9": 2498083352746650748 + "\u864E\u5E74\u6625\u8282\u8BF7\u5E16": 5379957316095804467 + "\u864E\u5E74\u6625\u8282\u9999": 5757620547049471718 + "\u864E\u5E74\u7565\u9F13\u7684\u7EA2\u5305": -8331053922297752310 + "\u864E\u5E74\u9576\u91D1\u7EA2\u5305": -3573804628557321419 + "\u864E\u6591\u7B26": 927216887183809161 + "\u864E\u7259\u7A81": 5104669143711402935 + "\u864E\u73E0\u553E\u6DB2": -5559074242140899063 + "\u864E\u76AE\u5E3D\u6A90": 4570468422617053377 + "\u864E\u76AE\u62A4\u5FC3\u955C\u7EC4\u4EF6": -1646200235691331646 + "\u864E\u76AE\u62A4\u8155\u7EC4\u4EF6": -1268087052209064851 + "\u864E\u76AE\u62A4\u819D\u7EC4\u4EF6": -852223286877099991 + "\u864E\u76AE\u62A4\u8E1D\u7EC4\u4EF6": -5245246168631590538 + "\u864E\u76AE\u98D8\u5E26\u7EC4\u4EF6": -5589774565265431347 + "\u864E\u7B26": 8495858138709317842 + "\u864E\u8033\u8349": 4295682271019141861 + "\u864E\u864E\u751F\u98CE": -3298437619699108086 + "\u864E\u98CE\u8170\u4F69": -5860492811779883146 + "\u864E\u9B44": 6260908824838435109 + "\u865A\u5047\u5B9D\u85CF": 7872216371386809321 + "\u865A\u65E0\u5B9D\u73E0": -6006490239456449074 + "\u865A\u65E0\u6E38\u795E": -1783523894827256525 + "\u865A\u7A7A\u85CF\u83E9\u8428": 7980748392848609016 + "\u865A\u7A7A\u85CF\u83E9\u8428\u788E\u7247": -640571130687991347 + "\u866B\u5375": -8090189621611929198 + "\u866B\u76AE": 8531994032220643131 + "\u866C\u9F99\u9752\u77F3\u5370": 7981239734733120037 + "\u8679\u4E4B\u5375": 5786335543457593536 + "\u867E\u58F3": 8553908016204334292 + "\u8680\u8840\u5DE8\u9524": -2224384465743759237 + "\u8682\u8681\u5375": 6519621735695888158 + "\u8682\u8681\u9762\u5177": -9103738727456993649 + "\u868A\u9999": 8771964312188605803 + "\u868C\u73E0": -5587901794098399408 + "\u868C\u7CBE\u73CD\u73E0": -1459564389321774222 + "\u8695\u4E1D": -180443766256554358 + "\u8695\u4E1D\u5F13\u5F26": -88531153815058340 + "\u8695\u4E1D\u7EDE\u4E1D": 8255378800418337993 + "\u8695\u4E1D\u8FDE\u63A5\u73AF": 8457161339207949807 + "\u86A9\u5C24\u6218\u7532": -8155333126465028944 + "\u86A9\u5C24\u817F\u7532": 7883807654004540231 + "\u86A9\u5C24\u8896\u7532": 5995492365148726771 + "\u86A9\u5C24\u9774": -9220073398241912026 + "\u86B0\u8712": 2684697760551499748 + "\u86C7\u542B\u8349": -367175409212266535 + "\u86C7\u5E74\u5927\u5409": -3154783818784176558 + "\u86C7\u7130\u7BAD": -1370106958250374744 + "\u86C7\u738B\u6756": -140766017247254836 + "\u86C7\u77DB": -8006585225134771516 + "\u86C7\u8089": -4333184357899624172 + "\u86C7\u80C6": -1080559225018970603 + "\u86C7\u94FE\u8170\u5E26\u7537\u88C5\u4E0A\u8863": 2969019569454275529 + "\u86C7\u94FE\u8170\u5E26\u7537\u88C5\u5934\u53D1": 1784620688790855799 + "\u86C7\u94FE\u8170\u5E26\u7537\u88C5\u62A4\u8155": -7563926169358519878 + "\u86C7\u94FE\u8170\u5E26\u7537\u88C5\u88E4\u5B50": -5682568453695951888 + "\u86C7\u94FE\u8170\u5E26\u7537\u88C5\u978B\u5B50": -6042181844291728930 + "\u86CA\u60D1\u5973\u88C5\u4E0A\u8863": -2446857327805221047 + "\u86CA\u60D1\u5973\u88C5\u62A4\u8155": 7873165227787656084 + "\u86CA\u60D1\u5973\u88C5\u88E4\u5B50": 3533266777148817258 + "\u86CA\u60D1\u5973\u88C5\u978B\u5B50": -1112460933570862935 + "\u86CA\u60D1\u7537\u88C5\u4E0A\u8863": 5042774722236291291 + "\u86CA\u60D1\u7537\u88C5\u88E4\u5B50": -7997578109596729026 + "\u86CA\u60D1\u7537\u88C5\u978B\u5B50": -8639523083329396638 + "\u86CB\u7CD5\u5E3D\u5B50": 7934035513611367800 + "\u86CB\u7CD5\u6CD5\u7403": -7287224909051105466 + "\u86CB\u9EC4": -353113310749452130 + "\u86DB\u4E1D": 855824624596661299 + "\u86DF\u7389": 3690701879154437842 + "\u86E4\u87C6\u6797\u6811": -5257924976282792749 + "\u86EE\u65CF\u7684\u722A": 2583203026371722923 + "\u86EE\u65CF\u7684\u89D2": 362782918636000904 + "\u86EE\u86EE\u7684\u7FBD\u6BDB": 2808561851533769833 + "\u8702\u871C": 2733077834267165229 + "\u8702\u871C\u7CBE": 5046396400767162451 + "\u8708\u86A3": 6496838041505324210 + "\u8708\u86A3\u6BD2\u6DB2": 1128980342777632293 + "\u8708\u86A3\u97AD": 506186892270239514 + "\u8718\u86DB\u6BD2\u6DB2": -7436994800155239605 + "\u8718\u86DB\u6BD2\u9488": 3334514413841766621 + "\u8718\u86DB\u7F51\u7EB9\u5973\u88C5\u5934\u53D1": -5155592137188621139 + "\u8718\u86DB\u7F51\u7EB9\u5973\u88C5\u624B\u8155": -7936445115943955936 + "\u8718\u86DB\u7F51\u7EB9\u5973\u88C5\u8863\u670D": -6501790636201772616 + "\u8718\u86DB\u7F51\u7EB9\u5973\u88C5\u88E4\u5B50": 5651921271730601173 + "\u8718\u86DB\u7F51\u7EB9\u5973\u88C5\u978B\u5B50": 6456655036141337342 + "\u871C\u6C41": 1482226464185494939 + "\u871C\u6C41\u767E\u5408\u7CBD": -3452729025270926348 + "\u8721\u70DB": -6215353195219495534 + "\u873B\u8713": -6260678517479910057 + "\u873B\u8713\u523A\u7389": 7911178949064496465 + "\u873B\u8713\u590D\u773C": 8477744497579825381 + "\u873B\u8713\u7FC5\u8180": -723805757590792756 + "\u8749\u7FFC\u5315\u9996": -1475185175477539176 + "\u8749\u7FFC\u7EB1": -5971048908309815453 + "\u874E\u5B50\u58F3": 5812319199520924763 + "\u874E\u5B50\u5C3E\u9489": 1854729049687914491 + "\u874E\u5C3E": 8473013769907113736 + "\u874E\u5C3E\u97AD": 3300754684212638996 + "\u874E\u738B\u9CDE\u7532\u7247": 1106834366021678052 + "\u8774\u8776\u5170\u7CBE": 4538095113401932587 + "\u8774\u8776\u5A5A\u7EB1\u5973\u5934\u53D1": -6657902728068811856 + "\u8774\u8776\u5A5A\u7EB1\u5973\u624B\u5957": -6044078823724962423 + "\u8774\u8776\u5A5A\u7EB1\u5973\u8863\u670D": 2212110490244672276 + "\u8774\u8776\u5A5A\u7EB1\u5973\u978B\u5B50": -4275883481383908067 + "\u8774\u8776\u7ED3\u5587\u53ED": 1019943515355135992 + "\u8774\u8776\u7ED3\u5957\u88C5\u5973\u4E0A\u8863": 8157367594575337026 + "\u8774\u8776\u7ED3\u5957\u88C5\u5973\u5934\u53D1": -935754310871615228 + "\u8774\u8776\u7ED3\u5957\u88C5\u5973\u978B\u5B50": 576094014021238802 + "\u8774\u8776\u7ED3\u6DD1\u5973\u65F6\u88C5\u5934\u53D1": 7741824845731391135 + "\u8774\u8776\u7ED3\u6DD1\u5973\u65F6\u88C5\u62A4\u8155": 3998501621989041182 + "\u8774\u8776\u7ED3\u6DD1\u5973\u65F6\u88C5\u8863\u670D": 5520575418514540455 + "\u8774\u8776\u7ED3\u6DD1\u5973\u65F6\u88C5\u978B\u5B50": 8722268278031656091 + "\u8774\u8776\u7FC5\u8180\u5973\u4E0A\u8863": -6984173436639941057 + "\u8774\u8776\u7FC5\u8180\u5973\u5934\u53D1": -451083578495497479 + "\u8774\u8776\u7FC5\u8180\u5973\u62A4\u624B": -1545066849353700750 + "\u8774\u8776\u7FC5\u8180\u5973\u88E4\u5B50": 23297700211273627 + "\u8774\u8776\u7FC5\u8180\u5973\u978B\u5B50": 6511743178227312465 + "\u8774\u8776\u7FFC2": -2051641019831629721 + "\u8774\u8776\u7FFC3": 120424763618184247 + "\u8774\u8776\u7FFC4": -1792921091726263035 + "\u8774\u8776\u86F9": 837354230065951669 + "\u8774\u8776\u88D9\u4E0A\u8863": -6211125289147542157 + "\u8774\u8776\u88D9\u88D9\u5B50": 4230520475250679642 + "\u8774\u8776\u88D9\u978B\u5B50": 3752672100813248807 + "\u8776\u620F\u6BBF\u6625\u67DC": -6318366335008005052 + "\u878D\u7075\u4E4B\u9F0E": -6765520076041753887 + "\u878D\u96EA\u73CD\u85CF": -8830437613180522113 + "\u87AD\u864E\u78A7\u7389\u73BA": -903356035077654343 + "\u87B3\u8782\u7684\u5DE8\u722A": -3517506548660949640 + "\u87BA\u65CB\u6728": -8857123558979908111 + "\u87D2\u9AA8\u97AD": 2773753479188896074 + "\u87E0\u6843\u679C": -8118242623860476317 + "\u87E0\u9F99\u4E09\u8DB3\u781A": -3399064520582566560 + "\u87E0\u9F99\u96D5\u82B1\u7B14\u67B6": 8380423841988593720 + "\u87F9\u722A": 7567972349734680034 + "\u87F9\u8089": 4084678415478539450 + "\u8840\u51E4\u51F0": -634667246096101627 + "\u8840\u5F71\u9879\u94FE": 3309339158014637588 + "\u8840\u6676\u77F3": -3329955917299231759 + "\u8840\u6676\u864E\u7B26": 4207570334147999669 + "\u8840\u6740\u5203": -5244542528912230843 + "\u8840\u6CB3\u9B54\u5200": 574466383188568187 + "\u8840\u70BC\u5996\u8702\u5361\u72471": 4487517514205472993 + "\u8840\u70BC\u5996\u8702\u5361\u72472": -613427528612197719 + "\u8840\u70BC\u5996\u8702\u5361\u72473": -80264979490590642 + "\u8840\u70BC\u5996\u8702\u5361\u72474": -3543809549700864113 + "\u8840\u70BC\u5996\u8702\u5361\u72475": 5211557946080746489 + "\u8840\u70BC\u5996\u8702\u5361\u72476": -2349014526793476353 + "\u8840\u70BC\u5996\u8702\u5361\u72477": 4927300761530556043 + "\u8840\u70BC\u5996\u8702\u5361\u72478": -5490216493721398168 + "\u8840\u715E\u65A7": 8921634358935362285 + "\u8840\u72FC\u52C7\u58EB": 8337053955067922047 + "\u8840\u72FC\u722A": 4730575892778460078 + "\u8840\u7483\u6B8B\u7247": 8175499067296791720 + "\u8840\u77F3\u6B8B\u7247\u5C71": -2986233555086494898 + "\u8840\u77F3\u6B8B\u7247\u5C71\u6D41\u901A": -8865842702501583549 + "\u8840\u77F3\u6B8B\u7247\u6D77": -3351036531890973848 + "\u8840\u77F3\u6B8B\u7247\u6D77\u6D41\u901A": 3175663207550288096 + "\u8840\u7EA2\u9AA8": -5934385167523870329 + "\u8840\u8E44\u72FC": -6056542217300384115 + "\u8840\u96E8\u957F\u77DB": 2022583682494898146 + "\u8840\u96FE\u4E4B\u4E1D": 6205326816051544482 + "\u8840\u96FE\u4E4B\u7231": 996229877940772075 + "\u8840\u96FE\u4E4B\u7EB1": -6115725949173930907 + "\u8840\u96FE\u4E4B\u7FFC": 7811584857851391759 + "\u8840\u96FE\u4E4B\u821E": -8659832151827054617 + "\u8840\u96FE\u4E4B\u9732": 1029575053296341657 + "\u8840\u9E6B\u4E4B\u5FC3": -2008717561740637108 + "\u884C\u5343\u91CC\u8BC1\u660E": 408839529907859612 + "\u884C\u767E\u91CC\u8BC1\u660E": 2282269685501476937 + "\u8854\u73AF\u4E4B\u77F3": 6718351247554739417 + "\u8854\u73AF\u4E4B\u77F3\u5305\u88F9": -6133544172780910960 + "\u8857\u5934\u6D41\u884C\u5BC6\u7801\u7537\u88C5-\u5934\u53D132": 7951611620328728967 + "\u8857\u5934\u6D41\u884C\u5BC6\u7801\u7537\u88C5-\u8863\u670D32": -2509022913250296155 + "\u8857\u5934\u6D41\u884C\u5BC6\u7801\u7537\u88C5-\u88E4\u5B5032": 8963598790343453324 + "\u8857\u5934\u6D41\u884C\u5BC6\u7801\u7537\u88C5-\u978B32": 3713934020944437698 + "\u8863\u670D\u5185\u886C": -1103164720264560864 + "\u8863\u895F": 4376302342089508213 + "\u8865\u5929\u80F6": 8325817447662991705 + "\u8865\u7B7E\u4EE4": 1108243828192761480 + "\u8882\u96EA\u72D0\u5143\u9B42": 4579832469641982833 + "\u8896\u5251": -4752662168953825297 + "\u8896\u7BAD": -3495226989638556462 + "\u88AB\u52AB\u7684\u836F\u54C1": -6839712276042417415 + "\u88AB\u56F0\u7684\u68A6\u9B47": 1854219701932389847 + "\u88AB\u56F0\u7684\u866B\u5B50": -6532324226788415494 + "\u88AB\u611F\u67D3\u7684\u722A\u5B50": 5063510713500827701 + "\u88AB\u63A0\u53BB\u7684\u8D27\u7269": 4614215632874675002 + "\u88AB\u89E3\u8BFB\u7684\u5377\u8F74": -7757987918591939756 + "\u88AB\u89E3\u8BFB\u7684\u5377\u8F74\u53D8\u8272": -5426686210984448978 + "\u88AD\u5F71\u56DE\u793C": -6314355618185973040 + "\u88AD\u5F71\u7269\u8D44": -5343168120197507568 + "\u88C1\u7F1D\u5927\u5E08\u4E4B\u5323\u5C0F": 7134420228546808875 + "\u88C1\u7F1D\u7CBE\u901A": -4503931057677442158 + "\u88C2\u5203\u7B26": -8704237913768137134 + "\u88C2\u5730\u957F\u65A7": 1694953070564955280 + "\u88C2\u5929\u4E4B\u65A7": -369579608797604493 + "\u88C2\u5CA9\u62F3\u5957": -2464114401492669472 + "\u88C5\u6709\u6BD2\u836F\u7684\u73BB\u7483\u74F6": -4328671195451294226 + "\u88C5\u6709\u8702\u871C\u7684\u73BB\u7483\u74F6": 6715635160033258912 + "\u88C5\u6709\u9B54\u836F\u7684\u73BB\u7483\u74F6": -5164428983099382822 + "\u88C5\u6EE1\u9152\u7684\u9152\u676F": 4247720698632039308 + "\u88C5\u847A\u4EFB\u52A1\u5F00\u542F\u9053\u5177": -5089424869934863447 + "\u88C5\u847A\u914D\u65B9\u5305\u88F9": 7204424926068116797 + "\u88C5\u847A\u914D\u65B9\u5305\u88F92": -8720118409821348179 + "\u88C5\u847A\u914D\u65B9\u5305\u88F93": -918131984629896823 + "\u88F9\u94DC\u7F20\u4E1D\u5782\u706F": 4108985344930652963 + "\u897F\u5F0F\u4E2D\u7EA7\u4E3B\u5C4B": -6857192148592260722 + "\u897F\u5F0F\u4F4E\u7EA7\u4E3B\u5C4B": 9005156010897352876 + "\u897F\u5F0F\u5927\u95E8\u8C6A\u534E": 6106766744194101257 + "\u897F\u5F0F\u5A5A\u793C\u5973\u58EB\u793C\u76D2": 7779606275659688377 + "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u5973\u5934\u53D1": 9199030454990800769 + "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u5973\u624B\u5957": -5619055186096126862 + "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u5973\u88D9\u5B50": 7135635556109955488 + "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u5973\u978B\u5B50": 1529512101060994706 + "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u7537\u4E0A\u8863": -8030732251473584922 + "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u7537\u5934\u53D1": 6661121705425759848 + "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u7537\u624B\u5957": -774926151721060998 + "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u7537\u88E4\u5B50": -5278745934807231978 + "\u897F\u5F0F\u5A5A\u793C\u670D\u7EAA\u5FF5\u7537\u978B\u5B50": 7378262497155297953 + "\u897F\u5F0F\u5A5A\u793C\u7537\u58EB\u793C\u76D2": 4037861252953394145 + "\u897F\u5F0F\u9AD8\u7EA7\u4E3B\u5C4B": 2815240832986870834 + "\u897F\u6597\u5361": -8836781498563458006 + "\u897F\u65B9\u55B7\u6CC91": -3993353953778811019 + "\u897F\u65B9\u55B7\u6CC92": -7304485897406032850 + "\u897F\u65B9\u55B7\u6CC93": -7122232788290049371 + "\u897F\u670D\u7537\u88C5\u4E0A\u8863": -6726059441037216568 + "\u897F\u670D\u7537\u88C5\u88E4\u5B50": 1789891284733647848 + "\u897F\u670D\u7537\u88C5\u978B\u5B50": -7478493403040409935 + "\u897F\u90E8\u725B\u4ED4\u7537\u4E0A\u8863": 2582775269608930518 + "\u897F\u90E8\u725B\u4ED4\u7537\u5934\u53D1": -4022708334207364026 + "\u897F\u90E8\u725B\u4ED4\u7537\u624B\u5957": -8358430940259822259 + "\u897F\u90E8\u725B\u4ED4\u7537\u88E4\u5B50": -3272915383132757565 + "\u897F\u90E8\u725B\u4ED4\u7537\u978B\u5B50": -8773746567766939980 + "\u8986\u971C\u4E4B\u5FBD\xB7\u62A4": -1792642623159537785 + "\u89C2\u4E16\u97F3\u83E9\u8428": 4202265069868590323 + "\u89C2\u4E16\u97F3\u83E9\u8428\u788E\u7247\u526F\u672C": 6268627866132009549 + "\u89C2\u56A3\u4E4B\u53701": 8233135948025566381 + "\u89C2\u56A3\u4E4B\u53702": -55611346820199224 + "\u89C2\u56A3\u4E4B\u5370\u7070": 4266808162490934847 + "\u89C2\u56A3\u4E4B\u5370\u84DD": 1701595676710002589 + "\u89C2\u56A3\u4E4B\u5370\u91D1": -3592785874959937610 + "\u89C2\u6F6E\u4E0B\u94E0": 1134778056328837346 + "\u89C2\u6F9C\u5251": -5551863710852817813 + "\u89C2\u97F3\u5750\u50CF": 6795874058232476794 + "\u89C9\u9192\u62AB\u98CE1": -3281353518218812313 + "\u89C9\u9192\u62AB\u98CE2": -4288988788002382726 + "\u89D2\u8272\u6539\u540D": -1212601357451738482 + "\u89E3\u6BD2\u9732": 6836015196289027606 + "\u89E3\u725B\u5200": 7853721551968136617 + "\u89E6\u89D2": -350310461121999713 + "\u8A93\u8840\u6756": 6014302437131991102 + "\u8BB8\u613F\u6811": 3096094075589238388 + "\u8BB8\u613F\u6811_2": 8160039645153988708 + "\u8BB8\u613F\u724C": -3320607287409913222 + "\u8BB8\u613F\u7B7E": 252933949100871797 + "\u8BC1": -891603478503879395 + "\u8BD5\u70BC\u4E4B\u77F3": 671555786882843487 + "\u8BDA\u5FC3\u724C": 3704988410130386739 + "\u8BDA\u610F\u56DE\u9988\u793C\u5305": 4875565869192074807 + "\u8BDA\u610F\u724C": -3838516474409764667 + "\u8BDB\u4ED9\u5251": 7109486703608901002 + "\u8BDB\u795E\u5251": 972252370336180673 + "\u8BE1\u5F02\u6CD5\u6756": 5910887478110656665 + "\u8BF1\u4EBA\u7684\u5143\u5B9D": 5136251324797022085 + "\u8BF8\u5929\u4E50\u884C": -1570723661188568076 + "\u8BF8\u845B\u5F29": 3055930993719281901 + "\u8C46\u6C99": 6320473046508573411 + "\u8C61\u68CB\u6307\u5F52": 4067874616489294626 + "\u8C61\u7259\u516D\u65B9\u7B14\u7B52": -4812881725568542895 + "\u8C61\u7259\u5C0F\u6BB5": 9035161359180012717 + "\u8C61\u7259\u5D4C\u91D1\u7AD6\u7434\u949F": -5325491068313344160 + "\u8C61\u7259\u6212": 8088177056542821819 + "\u8C61\u7259\u624B\u638C\u6A21\u677F": -3897074363385018298 + "\u8C61\u7259\u6756\u67C4": 6136806691891383195 + "\u8C61\u7259\u8282\u6263": -1352665803681068844 + "\u8C79\u5B50\u6210\u5E74": 8518142368020003691 + "\u8C79\u5B50\u7684\u5C3E\u5DF4": -3112127831561139267 + "\u8C79\u7EB9\u76AE\u8863\u5973\u4E0A\u886332": -5615348219703525770 + "\u8C79\u7EB9\u76AE\u8863\u5973\u5934\u53D132": -5601200958891230964 + "\u8C79\u7EB9\u76AE\u8863\u5973\u624B\u595732": -7214770832661155302 + "\u8C79\u7EB9\u76AE\u8863\u5973\u88E4\u5B5032": -9205372105898735571 + "\u8C79\u7EB9\u76AE\u8863\u5973\u978B\u5B5032": 5924675140643207699 + "\u8C79\u7EB9\u76AE\u8863\u7537\u4E0A\u886332": -3580711705615019046 + "\u8C79\u7EB9\u76AE\u8863\u7537\u5934\u53D132": -7732211542007468760 + "\u8C79\u7EB9\u76AE\u8863\u7537\u624B\u595732": 1672951567477975595 + "\u8C79\u7EB9\u76AE\u8863\u7537\u88E4\u5B5032": 3820962862689381853 + "\u8C79\u7EB9\u76AE\u8863\u7537\u978B\u5B5032": 5014101584824680548 + "\u8C82\u76AE": 1852310121404123436 + "\u8D1D\u53F6\u9C9B\u4EBA\u5143\u9B42": -8039297948554731405 + "\u8D1D\u58F3": -5036254256336865457 + "\u8D1D\u58F3\u9762\u5177": -2816858279928035833 + "\u8D1D\u5E01": 3641606061594238699 + "\u8D22\u5B9D\u5929\u73E0": -604636765992885723 + "\u8D24\u8005\u4E4B\u6212": -4737906022136735489 + "\u8D24\u8005\u4E4B\u8BED": 4662897805106509566 + "\u8D27\u7269": 5345520937328098508 + "\u8D27\u90CE\u7684\u5DE5\u5177\u7BB1": 1647471524381433743 + "\u8D2A\u72FC\u9557": 3609298271996926049 + "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C": -5944690682455418474 + "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u6B63\u7EA2": 2608489624564116656 + "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u767D": -5136088827682170896 + "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u7C89": -3831627798656253933 + "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u7D2B": 72552134517191522 + "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u7EA2": -4982083927541810361 + "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u7EFF": -41107949248037428 + "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u84DD": -346999483060053636 + "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u9752": -9194673164060466894 + "\u8D2D\u7F6E\u4EFB\u52A1\u7269\u54C1\u5355\u672C\u9ED1": -2724661903930718021 + "\u8D2F\u5F81\u62F3\u5957": -2863110153469474231 + "\u8D2F\u8033\u9524": -8096549848970964365 + "\u8D2F\u8292\u957F\u65A7": 8271837432750525702 + "\u8D2F\u9B42\u96D5\u6587": 3774977836506070492 + "\u8D35\u4EBA\u5361": -5287858001064641292 + "\u8D35\u592B\u4EBA\u5973\u4E0A\u8863": 5255190279413852078 + "\u8D35\u592B\u4EBA\u5973\u5934\u53D1": -776773921218537088 + "\u8D35\u592B\u4EBA\u5973\u624B\u5957": 7578106006116684849 + "\u8D35\u592B\u4EBA\u5973\u88E4\u5B50": -59098386184967378 + "\u8D35\u592B\u4EBA\u5973\u978B\u5B50": -6340101703799342884 + "\u8D35\u65CF\u60C5\u4FA3\u88C5\u5973\u8155": -4151732063055974675 + "\u8D35\u65CF\u60C5\u4FA3\u88C5\u5973\u88D9": -6322928760991042683 + "\u8D35\u65CF\u60C5\u4FA3\u88C5\u5973\u9774": 4523089794230053635 + "\u8D35\u65CF\u60C5\u4FA3\u88C5\u7537\u8155": -5968244042533616602 + "\u8D35\u65CF\u60C5\u4FA3\u88C5\u7537\u88C5": -2669929962588222009 + "\u8D35\u65CF\u60C5\u4FA3\u88C5\u7537\u88E4": 6649863456092487180 + "\u8D35\u65CF\u60C5\u4FA3\u88C5\u7537\u978B": -8466971018127450034 + "\u8D3A\u5361-1": 7703588327862373313 + "\u8D3A\u5361-10": -2445825784818257057 + "\u8D3A\u5361-2": -4666450779489074764 + "\u8D3A\u5361-3": 4389578471440152075 + "\u8D3A\u5361-4": -1236373705517050829 + "\u8D3A\u5361-5": 6328768330307106318 + "\u8D3A\u5361-6": 333371776635202827 + "\u8D3A\u5361-7": 1716656996080551497 + "\u8D3A\u5361-9": 7166854701494059173 + "\u8D3A\u5C81\u9F20": -2564149398043873920 + "\u8D4C\u7403": 9128058880320802369 + "\u8D4E\u7F6A\u96D5\u50CF\u6838\u5FC3": -5877488349516977067 + "\u8D64\u5934\u5343\u8DB3\u866B\u866B\u5375": 4075306523718104900 + "\u8D64\u7075\u77F3": 5112443175492357040 + "\u8D64\u708E\u9886\u4E3B\u5361\u72471": 1085301404327355204 + "\u8D64\u708E\u9886\u4E3B\u5361\u72472": 7432455713479299758 + "\u8D64\u708E\u9886\u4E3B\u5361\u72473": -395526078244567521 + "\u8D64\u708E\u9886\u4E3B\u5361\u72474": 5957294748260819544 + "\u8D64\u708E\u9886\u4E3B\u5361\u72475": 3775635479693078061 + "\u8D64\u708E\u9886\u4E3B\u5361\u72476": -3840987639100717712 + "\u8D64\u708E\u9886\u4E3B\u5361\u72477": 1937252473421360108 + "\u8D64\u708E\u9886\u4E3B\u5361\u72478": 6011685558191127769 + "\u8D64\u70BC\u97AD": -2218316330930591802 + "\u8D64\u70BC\u98CE\u9AB8\u7684\u4E2D\u67A2\u6C34\u6676": -6738850622022926201 + "\u8D64\u70BC\u98CE\u9AB8\u7684\u6C34\u6676\u788E\u7247": 4537148618267262382 + "\u8D64\u7130\u4E4B\u529B": 7465980986305482547 + "\u8D64\u7130\u4E4B\u610F": 3976947844620634383 + "\u8D64\u7130\u6218\u65A7": 3657489807716900721 + "\u8D64\u7130\u94DC\u6A3D\u8DEF\u706F": -1861106715133888501 + "\u8D64\u7389": 2017383665498404205 + "\u8D64\u7389\u4E4B\u77F3": -8931040759855560001 + "\u8D64\u76EE\u6212": 1484524009340741879 + "\u8D64\u773C\u4E4B\u77F3": 5958832002985000740 + "\u8D64\u7EC3\u86C7": 8337226890692220414 + "\u8D64\u865A\u5934\u9970": 1831879166173515209 + "\u8D64\u865A\u5C65": -2650185994537531754 + "\u8D64\u865A\u6212\uFF08\u9633\uFF09": 5693453358963893215 + "\u8D64\u865A\u6212\uFF08\u9634\uFF09": 6152611178728964295 + "\u8D64\u865A\u62A4\u624B": -6467245795984375940 + "\u8D64\u865A\u62A4\u7B26": 5883268137664927766 + "\u8D64\u865A\u888D": -1051079113244318289 + "\u8D64\u865A\u88E4": -3666985515026840467 + "\u8D64\u8840\u77F3\u5760\u5B50": 2959812265131081679 + "\u8D70\u517D\u8840\u6DB2": -3040982709729590505 + "\u8D77": 2044154047119167522 + "\u8D85\u77ED\u767D\u7EB1\u5C0F\u9E1F\u88C5\u4E0A\u8863": -9002820307646534631 + "\u8D85\u77ED\u767D\u7EB1\u5C0F\u9E1F\u88C5\u978B\u5B50": -7083655202801852429 + "\u8D85\u7EA7\u4E5D\u9633\u4E39": -8091942926442873920 + "\u8D85\u7EA7\u5168\u52E4\u5956": 607981005525939451 + "\u8D85\u7EA7\u795E\u6C14\u4E38": -2723795761586242301 + "\u8D85\u7EA7\u91D1\u521B\u836F": 8424692688188554029 + "\u8DB3\u7403": -4509556012558634756 + "\u8DB3\u7403\u5B9D\u8D1D": 2779424721587717902 + "\u8DE8\u670D\u5587\u53ED": 9186156242930277054 + "\u8DEF\u6807": -6180447489750334503 + "\u8DF3\u8DC3\u7684\u52A8\u4F5C1": -4389654744206905586 + "\u8DF3\u8DC3\u7684\u52A8\u4F5C2": -5767379510205897874 + "\u8E0F\u96EA\u718A": 8409345335448072372 + "\u8EAB\u4EFD\u8BC1\u660E": -6072738977134373097 + "\u8F69\u7A97\u5982\u610F\u95E8": 5933208020458081750 + "\u8F69\u8F95\u6218\u7532": -3269246253667491403 + "\u8F69\u8F95\u7389\u73BA": 6980155591200684371 + "\u8F69\u8F95\u76D4": 8324896376260319807 + "\u8F69\u8F95\u817F\u7532": 4479403867066897622 + "\u8F69\u8F95\u8896\u7532": 1308797502713092232 + "\u8F69\u8F95\u9774": -7261649500006700876 + "\u8F6C\u4E16\u4E4B\u7B26": -5050334765172394369 + "\u8F6C\u4E91\u5343\u5CF0\u697C": -3720643173490750137 + "\u8F6C\u52A8\u7684\u9B54\u65B9\u9F7F\u8F6E": -5673300013123298449 + "\u8F6C\u8FD0\u73B2\u73D1": 2660708499646921253 + "\u8F6E\u56DE\u68AD": 4070061972224577808 + "\u8F6E\u6905": -567621948599578944 + "\u8F6E\u8F6C\u4E4B\u77F3\u5DE8\u86CB": 5305898651704719281 + "\u8F6F\u6BDB\u76AE": -4496929734492500406 + "\u8F6F\u732C\u523A\u7403\u7684\u523A": -771237140620822688 + "\u8F6F\u76AE\u4E0B\u94E0": 6737068259861173343 + "\u8F6F\u76AE\u6218\u94E0": -1953867270247415444 + "\u8F6F\u76AE\u8155\u7532": 2410394001519863070 + "\u8F6F\u76AE\u978B": -1192940029728231225 + "\u8F6F\u7B4B": 908049231057647251 + "\u8F70\u9706\u5F02\u4E16\u74A7\u6CD5\u7CFB": -8553646164712387726 + "\u8F70\u9706\u5F02\u4E16\u74A7\u7269\u7406": -8561708635399998707 + "\u8F7B\u5DE7\u4E4B\u4E1D": -2308268867706206784 + "\u8F7B\u5DE7\u4E4B\u7231": -5261688311247976614 + "\u8F7B\u5DE7\u4E4B\u7EB1": 1397126921934485135 + "\u8F7B\u5DE7\u4E4B\u7FFC": -6207854002274394729 + "\u8F7B\u5DE7\u4E4B\u821E": 6622245185577480639 + "\u8F7B\u5DE7\u4E4B\u9732": 5963823220404537719 + "\u8F7B\u7075\u4E4B\u4E1D": -2053318867167078213 + "\u8F7B\u7075\u4E4B\u7231": -353426135271477382 + "\u8F7B\u7075\u4E4B\u7EB1": -377965889507528039 + "\u8F7B\u7075\u4E4B\u7FFC": -2399795673655346158 + "\u8F7B\u7075\u4E4B\u821E": -2150305339437509868 + "\u8F7B\u7075\u4E4B\u9732": 4990306875660519381 + "\u8F7B\u70DF\u7075\u73E0": 5770249928922016760 + "\u8F7B\u76C8\u4E4B\u4E1D": 3208853094374923860 + "\u8F7B\u76C8\u4E4B\u7231": -7811935964585931976 + "\u8F7B\u76C8\u4E4B\u7EB1": -8984006846985678812 + "\u8F7B\u76C8\u4E4B\u7FFC": 3148647862898765276 + "\u8F7B\u76C8\u4E4B\u821E": -903099894067254968 + "\u8F7B\u76C8\u4E4B\u9732": -9090326474464787030 + "\u8F7B\u7EB1\u5973\u4E0A\u8863": 5933532452336702034 + "\u8F7B\u7EB1\u5973\u5934\u53D1": -4638921215273876539 + "\u8F7B\u7EB1\u5973\u88E4\u5B50": -516068298314599238 + "\u8F7B\u7EB1\u5973\u978B\u5B50": -4109089138300636613 + "\u8F7B\u7FBD\u857E\u4E1D\u5973\u88C5\u4E0A\u8863": 3712082900108722835 + "\u8F7B\u7FBD\u857E\u4E1D\u5973\u88C5\u5934\u53D1": -8427286026611440821 + "\u8F7B\u7FBD\u857E\u4E1D\u5973\u88C5\u88E4\u5B50": 3993882409939493041 + "\u8F7B\u7FBD\u857E\u4E1D\u5973\u88C5\u978B\u5B50": 6474943314898129546 + "\u8F7D": 8303103865295308066 + "\u8F89\u591C\u519B\u4E4B\u5370": 5487836178175055254 + "\u8F89\u591C\u519B\u5148\u950B\u4EE4\u724C": 1578325926096500033 + "\u8F89\u591C\u519B\u52C7\u8005\u4EE4\u724C": 9013988892540090773 + "\u8F89\u591C\u519B\u5FBD\u8BB0": 8574729526082857046 + "\u8F89\u591C\u519B\u7EDF\u9886\u4EE4\u724C": -145819738218970288 + "\u8F89\u714C\u4E4B\u4E1D": 8637596307613715266 + "\u8F89\u714C\u4E4B\u7231": -2235446317787084362 + "\u8F89\u714C\u4E4B\u7EB1": 5501970362327202138 + "\u8F89\u714C\u4E4B\u7FFC": -3421362260657700121 + "\u8F89\u714C\u4E4B\u821E": -2327195747416500454 + "\u8F89\u714C\u4E4B\u9732": 8366948581138844199 + "\u8F89\u714C\u5370\u8BB0": -4691698431246742343 + "\u8F89\u77F3": 1381525432018488655 + "\u8F9B": 1071211739840803219 + "\u8F9F\u5C18\u89D2": -8664860644658753261 + "\u8F9F\u5CB3\u4E4B\u77F3": -783893304297177176 + "\u8F9F\u5FC3\u4E4B\u7389": -8537830622088094013 + "\u8F9F\u7280\u9879\u94FE": 6637870763535555172 + "\u8F9F\u90AA\u5E61\u6756": -515219425264011553 + "\u8F9F\u90AA\u76D4": -9218528953688317540 + "\u8FB0": -82316530293210833 + "\u8FCE\u5BA2\u677E": 6361983149731862918 + "\u8FCE\u98CE\u62DB\u5C55\u7684\u7D2B\u65D7": 334001009831171129 + "\u8FCE\u98CE\u62DB\u5C55\u7684\u7EA2\u65D7": -2965533727782411270 + "\u8FCE\u98CE\u62DB\u5C55\u7684\u84DD\u65D7": 6710325966864969372 + "\u8FD0\u52A8\u5065\u5C06\u62AB\u98CE": -4806784069362716519 + "\u8FD4\u58A3\u51A0": 8453091278136257197 + "\u8FD4\u8001\u8FD8\u7AE5\u4E39": -4556309201077758988 + "\u8FD4\u9B42\u8349": 5402329441376245039 + "\u8FD8\u9B42\u7CBE\u534E": 7976440392550877655 + "\u8FDB\u5316\u86CB": 7350218344889300090 + "\u8FDC\u53E4\u56FE\u817E": 8338339076817291980 + "\u8FDC\u53E4\u9A6F\u9E7F\u7684\u8840": -7724186080785066843 + "\u8FDC\u884C\u4E4B\u9774": 2451215439897818029 + "\u8FDE\u4E91\u5F29": 3718917907318415995 + "\u8FDE\u51FB\u5F29": -6906822902927338077 + "\u8FDE\u6A2A\u5251": 5542832706171661062 + "\u8FDE\u73AF\u4E0B\u94E0": -7011899667794242324 + "\u8FDE\u73AF\u6218\u94E0": -3693492016385949991 + "\u8FDE\u73AF\u8155\u7532": 1962462847331017201 + "\u8FDE\u73AF\u978B": 4368786281043878602 + "\u8FE6\u84DD\u4E4B\u77F31": 1806609823329199149 + "\u8FE6\u84DD\u4E4B\u77F32": -5149833211083035507 + "\u8FE6\u84DD\u4E4B\u77F3\u7070": 1582019176670550175 + "\u8FE6\u84DD\u4E4B\u77F3\u84DD": -3020196203993044158 + "\u8FE6\u84DD\u4E4B\u77F3\u91D1": 8132430507994366912 + "\u8FEA\u8D5B\u5965\u9ED1\u9F99": 7052355875545818601 + "\u8FF7\u5F69\u88C5\u7537\u4E0A\u8863": 4354284303874641097 + "\u8FF7\u5F69\u88C5\u7537\u624B\u5957": 8436330233058141763 + "\u8FF7\u5F69\u88C5\u7537\u88E4": -443187045183839562 + "\u8FF7\u5F69\u88C5\u7537\u978B": 6892539073975910474 + "\u8FF7\u8776\u68A6\u8FF4\u523B\u5370": -4152434473392355980 + "\u8FFD\u4E91\u5954\u9A6C": -7137964675117632115 + "\u8FFD\u6708\u8FDE\u5F29": 779286893071383011 + "\u8FFD\u98CE\u8C79": -3024120665479271620 + "\u9006\u4ED9\u679C": -1311632371785992066 + "\u9006\u5929\u6212": 761640315945480809 + "\u9006\u8F6C\u5B9D\u73E0": -8793786316626562931 + "\u9006\u9CDE\u65A7": -8510884125527383199 + "\u900D\u9065\u4E0B\u94E0": 3982254977225964100 + "\u900D\u9065\u6218\u94E0": 3437369787656677009 + "\u900D\u9065\u6E38\u4EE4\u724C": -7145264277083321510 + "\u900D\u9065\u7075\u7389": 7896411934337543854 + "\u900D\u9065\u8155\u7532": -7915606775353328407 + "\u900D\u9065\u978B": -4331479178033144203 + "\u900F\u540D\u9F99\u5973\u88C5\u8863\u670D": 1245563619130890619 + "\u900F\u660E\u9F99\u5973\u88C5\u5934\u53D1": 7608278279297419856 + "\u900F\u660E\u9F99\u5973\u88C5\u978B\u5B50": -7580945236746618887 + "\u9010\u5149\u4E4B\u5F13": 4313044893762948361 + "\u9010\u5149\u5F02\u5316\u9CD7": -2871706611541846119 + "\u9010\u5149\u5F29": -6734743194159529812 + "\u901A\u4ECA\u51A0": 4196836172864663514 + "\u901A\u5E7D\u6756": -613947798350173637 + "\u901A\u5E7D\u9B54\u864E": 125918074511103138 + "\u901A\u5E7D\u9B54\u864E\u5B9D\u5B9D": -4986888722389809940 + "\u901A\u7075\u4F7F\u8005\u4EE4": -1746287524743752948 + "\u901A\u7384\u4ED9\u864E": -2988341438793587085 + "\u901A\u7384\u4ED9\u864E\u5B9D\u5B9D": -8450665318544664123 + "\u901A\u7528\u6280\u80FD\u4E66": 8604589248768590959 + "\u901A\u7528\u6D3B\u52A8\u95E8\u7968": -2456350144590315130 + "\u901A\u7528\u6D3B\u52A8\u95E8\u79682": 5671088386731270222 + "\u901A\u7528\u6D3B\u52A8\u95E8\u79683": -7919978433616540465 + "\u901A\u7528\u6D3B\u52A8\u95E8\u79684": -2473674823275773138 + "\u901A\u7528\u6D3B\u52A8\u95E8\u79685": -2312267999950481820 + "\u901A\u7528\u914D\u65B9\u5305\u88F9": -4895792432683319043 + "\u901A\u7ECF\u8349": -7397035088611502585 + "\u901F\u5C04\u5F29": 2440586780988687801 + "\u901F\u5EA6\u4E4B\u8BC1": -3992013626487383770 + "\u9022": -8879093672370187083 + "\u9053\u7075\u7B26": -9140633075642833879 + "\u9057\u4E66": 7677927560194938344 + "\u9057\u5931\u7684\u5305\u88F9": 8421264668066772198 + "\u9057\u5931\u7684\u8D27\u7269": 4775439627205717479 + "\u9057\u5931\u7684\u9996\u9970": 6716098453987861452 + "\u9057\u8BAD\u523B\u6587": -6081243147964066224 + "\u9057\u8FF9\u5FBD\u7AE0\u788E\u7247": -6123697403851787495 + "\u906E\u5929\u5E61\u6756": 5430708996265384105 + "\u9080\u4ED9\u5760\u5B50": 7922798928905433648 + "\u9080\u6708\u5760\u5B50": 7158095936949822575 + "\u9080\u795E\u5760\u5B50": 7600020471661277614 + "\u9080\u971E\u5760\u5B50": -4599456205212947619 + "\u90AA\u9B42\u4E4B\u5370": -285308665322909742 + "\u90AA\u9B42\u4EE4": 2255890119953580570 + "\u90AA\u9B42\u7075\u9F9B": -8158487815499181424 + "\u90C1\u91D1": 5390634096852633279 + "\u90C1\u91D1\u9999": -8216848309863828056 + "\u90C1\u91D1\u99991": 7940555608079561856 + "\u90CE\u60C5\u59BE\u610F": 1407451664675272521 + "\u90E1\u4E3B\u88D9": 5358771798036244435 + "\u90E1\u4E3B\u8902": 7982656231069410147 + "\u90E1\u4E3B\u978B": -5728885892303663676 + "\u9149": -100992183098914128 + "\u9152\u676F": 5326850667563402136 + "\u9177\u5BA2\u725B\u4ED4\u7537\u88C5-\u5934\u53D132": -1152941341052872162 + "\u9177\u5BA2\u725B\u4ED4\u7537\u88C5-\u62A4\u815532": 7431967109139720761 + "\u9177\u5BA2\u725B\u4ED4\u7537\u88C5-\u8863\u670D32": -1719451942178203899 + "\u9177\u5BA2\u725B\u4ED4\u7537\u88C5-\u88E4\u5B5032": 9160239619308573280 + "\u9177\u5BA2\u725B\u4ED4\u7537\u88C5-\u978B32": -8581259024840491082 + "\u9177\u76AE\u8863\u6DF1\u8272\u7537\u624B\u5957": 470129144112639778 + "\u9177\u76AE\u8863\u6DF1\u8272\u7537\u88C5": 4958410391805556191 + "\u9177\u76AE\u8863\u6DF1\u8272\u7537\u88E4": 470035493321518812 + "\u9177\u76AE\u8863\u6DF1\u8272\u7537\u978B": 8324493022006276636 + "\u9177\u7EDA\u821E\u53F0\u88C5\u7537\u4E0A\u8863": -868150537386556818 + "\u9177\u7EDA\u821E\u53F0\u88C5\u7537\u8155": 8830024100476738642 + "\u9177\u7EDA\u821E\u53F0\u88C5\u7537\u88E4\u5B50": 8177479836279419718 + "\u9177\u7EDA\u821E\u53F0\u88C5\u7537\u978B": -2779328290798595629 + "\u9189\u4ED9\u9732": -7865732960056389136 + "\u9189\u7389\u76CF": -6778815981392803393 + "\u9189\u9752\u7334\u5143\u9B42": 6179301783784340396 + "\u918D\u9190\u9999": -285714729640679193 + "\u91C7\u77F3\u573A": 446304538039297573 + "\u91C7\u77FF\u573A": 7974837590515454106 + "\u91CD\u8981\u4FE1\u7269": 6711336791100872744 + "\u91CE\u517D\u7684\u6BDB": 5367582699034853142 + "\u91CE\u5916\u5F00\u4ED3\u5E93\u77F3": 3673841312101671413 + "\u91CE\u5916\u5F00\u5546\u5E97\u77F3": -4475079443392376849 + "\u91CE\u5916\u5F00\u90AE\u7BB1\u77F3": -6679546346225248526 + "\u91CE\u5C71\u53C2": -310250334367790442 + "\u91CE\u6027\u6F06\u76AE\u88C5\u4E0A\u8863": 4844740042584391677 + "\u91CE\u6027\u6F06\u76AE\u88C5\u5934\u53D1": -4372610847826434336 + "\u91CE\u6027\u6F06\u76AE\u88C5\u88E4\u5B50": 3998815964413476606 + "\u91CE\u6027\u6F06\u76AE\u88C5\u978B\u5B50": -6979068377355702075 + "\u91CE\u679C": -5879337586759327295 + "\u91CE\u732C\u7CBE\u7684\u523A": 9056564251463458394 + "\u91CE\u8DA3\u56FE\u846B\u82A6": 7068914304017508425 + "\u91D1zippo": -1586040194737591632 + "\u91D1\u4E39": -8649155961775982902 + "\u91D1\u4E4B\u7CBE\u534E": 6224788676046370520 + "\u91D1\u4E4B\u82F1": -2153926401801090481 + "\u91D1\u4E4C\u4E4B\u77F3": 4941522032845146762 + "\u91D1\u5143\u5B9D\u82B1\u706F": -1208561241384761874 + "\u91D1\u5143\u7D20\u7CBE\u534E": 9128213499055193466 + "\u91D1\u5149\u72EE\u5B50": 5427809935555925242 + "\u91D1\u5149\u7535\u6BCD": -3585015039906874464 + "\u91D1\u5149\u95EA\u95EA\u7684\u9CA4\u9C7C": 8133622351559246722 + "\u91D1\u521A\u4E4B\u77F3": -5915023044622186328 + "\u91D1\u521A\u5929\u97F3": 1007023391167338174 + "\u91D1\u521A\u624B\u83E9\u8428": -1137497537283626389 + "\u91D1\u521A\u624B\u83E9\u8428\u788E\u7247": 3460828508944216579 + "\u91D1\u521A\u62A4\u7B26": 4960887234664475149 + "\u91D1\u521A\u6485": 45610879726531326 + "\u91D1\u521A\u6728": 3001403178823897345 + "\u91D1\u521A\u6775": 6095422257807228138 + "\u91D1\u521A\u77F3\u94FE\u5B50": 8378765484874587541 + "\u91D1\u521A\u7802": 1723265186007873242 + "\u91D1\u521A\u83E9\u63D0\u5FF5": 8270617372116122281 + "\u91D1\u521B\u836F": -2810246525854735588 + "\u91D1\u53F6\u5B50": -6594435218537286193 + "\u91D1\u5C5E\u7FFC": 8095610771841519265 + "\u91D1\u5C5E\u82B1\u6735": -3240931645464449144 + "\u91D1\u5E01": 2558107281606265757 + "\u91D1\u5E01\u888B\u5B50": -1021644954515513655 + "\u91D1\u6761": 2996403341600464005 + "\u91D1\u6BDB\u72AC": 8454564510039523883 + "\u91D1\u6BDB\u72EE\u738B": -6856723152752016469 + "\u91D1\u6C64\u6218\u7532": 9052051276666172284 + "\u91D1\u6C64\u76D4": -1577715712984484922 + "\u91D1\u6C64\u817F\u7532": 4650945169933692742 + "\u91D1\u6C64\u8896\u7532": -5835189372316198619 + "\u91D1\u6C64\u9774": -1572544983032597420 + "\u91D1\u6D9B\u5E7F\u4EAE\u95E8": 8242740038920062020 + "\u91D1\u6D9B\u7EA2\u5899": -4937129822994171579 + "\u91D1\u6D9B\u7EA2\u6A90\u67F1": -6553168037472310683 + "\u91D1\u6F9C\u5B88\u62A4\u5377\u8F74": -7015008338880167943 + "\u91D1\u6F9C\u795E\u884C\u5377\u8F74": 266976825714358055 + "\u91D1\u6F9C\u79FB\u5C71\u5377\u8F74": -1902705998142264199 + "\u91D1\u6F9C\u8BC6\u6D77\u5377\u8F74": 9199285406269394878 + "\u91D1\u6F9C\u8FC5\u6377\u5377\u8F74": 2222706508466196824 + "\u91D1\u724C\u4E00\u7B49\u4F2F\u7235": -6880867213685994997 + "\u91D1\u724C\u4E00\u7B49\u4FAF\u7235": -8465517448707543682 + "\u91D1\u724C\u4E00\u7B49\u516C\u7235": -7988549958058645986 + "\u91D1\u724C\u4E00\u7B49\u5B50\u7235": 5116082700231017828 + "\u91D1\u724C\u4E00\u7B49\u7537\u7235": 3126434821463779820 + "\u91D1\u724C\u4E09\u7B49\u4F2F\u7235": -8556794402488613576 + "\u91D1\u724C\u4E09\u7B49\u4FAF\u7235": -7704167683235066936 + "\u91D1\u724C\u4E09\u7B49\u516C\u7235": -4569481091131530084 + "\u91D1\u724C\u4E09\u7B49\u5B50\u7235": 6083224931137180114 + "\u91D1\u724C\u4E09\u7B49\u7537\u7235": 4989204720073868470 + "\u91D1\u724C\u4E8C\u7B49\u4F2F\u7235": 1429385848981758959 + "\u91D1\u724C\u4E8C\u7B49\u4FAF\u7235": 3278447550200776016 + "\u91D1\u724C\u4E8C\u7B49\u516C\u7235": -497388488194214449 + "\u91D1\u724C\u4E8C\u7B49\u5B50\u7235": 1678632796966570728 + "\u91D1\u724C\u4E8C\u7B49\u7537\u7235": -6984784194825277518 + "\u91D1\u732A": 35312182075310795 + "\u91D1\u7532\u5929\u795E": 4906251608686691510 + "\u91D1\u775B\u73E0": 7347107461953931717 + "\u91D1\u7816": 8767319803368601854 + "\u91D1\u78A7\u6749\u6728\u821F": 3670380993040725915 + "\u91D1\u7B94": 2151413657662497121 + "\u91D1\u7EBF\u828D": 4449910317989803993 + "\u91D1\u7EBF\u9576\u8FB9\u957F\u9760\u57AB": -1184921655682014044 + "\u91D1\u7ED8\u9F99\u7EB9\u5BAB\u7EB8": 2594891201092385296 + "\u91D1\u7FC5\u8702": -9220066557892656355 + "\u91D1\u8272\u94DC\u7403": 972254366225102949 + "\u91D1\u8299\u84C9\u7F8A\u7ED2\u9760\u57AB": 2579583524960083469 + "\u91D1\u82B1\u5760\u6D6E\u706F": 7421876305433619309 + "\u91D1\u8475\u94F6\u4E1D\u74F6": 1666056332717481694 + "\u91D1\u864E\u4EE4\u724C": 2314563637969941301 + "\u91D1\u864E\u5323": -146997275913829324 + "\u91D1\u86C7\u7EB3\u798F": -4229317813184064547 + "\u91D1\u86C7\u80C6": -4203782893220183828 + "\u91D1\u86CB": 5303785665293297277 + "\u91D1\u8C79": -8308453353776438338 + "\u91D1\u8D28\u4EE4\u724C": 1583199454244262544 + "\u91D1\u8D28\u53D1\u7968": 3838398149031961489 + "\u91D1\u8D28\u5956\u7AE0": 695207202750726340 + "\u91D1\u8D28\u6210\u5C31\u5FBD\u7AE0\xB7\u4ED9\u5E7B\u5929": 5396569885802163054 + "\u91D1\u8D28\u8FD4\u5238": 7707530179979317071 + "\u91D1\u8D28\u9996\u9970\u76D2": -2127234415710970129 + "\u91D1\u8D28\u9AD8\u7EA7\u4EE4\u724C": 4914601403168402850 + "\u91D1\u8FB9\u6728\u76D2": -5647491948011101185 + "\u91D1\u949F\u7F69": 7986053018513929903 + "\u91D1\u94F6\u82B1": 3365308504796624340 + "\u91D1\u94F6\u94DC\u94C1\u6212\u630712": -2265053749582922757 + "\u91D1\u94F6\u94DC\u94C1\u6212\u630713": -7691965549993408386 + "\u91D1\u952D": 8389743610945718902 + "\u91D1\u96F7\u4E4B\u529B": -290972945444689182 + "\u91D1\u96F7\u4E4B\u610F": -2236115718057482214 + "\u91D1\u96FE\u67AD\u5C06": 2571843964191857779 + "\u91D1\u9879\u5708": 5557034076158478919 + "\u91D1\u9B44\u4E4B\u77F3": 3596270180237971399 + "\u91D1\u9C7C": -1276637907834780160 + "\u91D1\u9C7C1": -7912484503830428159 + "\u91D1\u9C7C2\u5C0F": 1360795068090770335 + "\u91D1\u9C7Camd": 3368985981468055604 + "\u91D1\u9C7C\u88C5\u5973\u4E0A\u8863": -7750445932807877259 + "\u91D1\u9C7C\u88C5\u5973\u5934\u53D1": -4799990260714071844 + "\u91D1\u9C7C\u88C5\u5973\u88E4\u5B50": -5997231127917563337 + "\u91D1\u9C7C\u88C5\u5973\u978B\u5B50": 7067100699565990701 + "\u91D1\u9CDE": -2009968493380668499 + "\u91D1\u9EC4\u8272\u7684\u80E1\u987B": 8142273345196027920 + "\u938F\u91D1\u8299\u84C9\u5F69\u86CB": 2168258989634790278 + "\u938F\u91D1\u94DC\u53F6\u897F\u6D0B\u949F": 410502293981680341 + "\u93CA\u99A8\u77F3\u4E7E": 6650710382321792367 + "\u93CA\u99A8\u77F3\u4E98\u4E45": -8712351544173712115 + "\u93CA\u99A8\u77F3\u5151": -2573199411473772601 + "\u93CA\u99A8\u77F3\u574E": -5329239248895139022 + "\u93CA\u99A8\u77F3\u5764": -3660047140203210048 + "\u93CA\u99A8\u77F3\u5DFD": -139230580166474154 + "\u93CA\u99A8\u77F3\u65E0\u5E38": -1838270519313163620 + "\u93CA\u99A8\u77F3\u79BB": 6280294327670222041 + "\u93CA\u99A8\u77F3\u826E": -3881690613209672325 + "\u93CA\u99A8\u77F3\u9707": 3567239941704403514 + "\u9488\u5C3E\u6C99\u9525\u7684\u5375": 1007032033564399680 + "\u9489\u8019": 2100237760233608393 + "\u9497\u5315\u9996": -162765917397588585 + "\u949D\u722A": -115460323067660654 + "\u94A2\u5200": -222712901621563165 + "\u94A2\u722A": 3664430755693146261 + "\u94A5\u73E0": -4164169380818072405 + "\u94B1\u5806": -7602644777483273797 + "\u94B1\u5E84\u901A\u79681": -3980814844162703889 + "\u94B1\u5E84\u901A\u79682": 3026464557374989034 + "\u94B1\u5E84\u901A\u79683": -6731457153524520487 + "\u94B1\u5E84\u901A\u79684": 9109110328254898434 + "\u94B1\u5E84\u901A\u79685": -3104588198003448770 + "\u94BA\u5200": -7231931859622214696 + "\u94BB\u6746\u866B": -4584180207927190105 + "\u94BB\u6746\u866B2": -7219781628429971059 + "\u94BB\u77F3\u5973\u738B\u88C5\u4E0A\u8863": 1399578024418090873 + "\u94BB\u77F3\u5973\u738B\u88C5\u4E0B\u8863": 7171624762421351173 + "\u94BB\u77F3\u5973\u738B\u88C5\u5934\u53D1": 2820628064802490251 + "\u94BB\u77F3\u5973\u738B\u88C5\u978B\u5B50": -2065645341697414843 + "\u94BB\u77F3\u5973\u840C\u88C5\u4E0A\u8863": 4505352400891939850 + "\u94BB\u77F3\u5973\u840C\u88C5\u4E0B\u8863": -420552012301526244 + "\u94BB\u77F3\u5973\u840C\u88C5\u5934\u53D1": 8736595870719405923 + "\u94BB\u77F3\u5973\u840C\u88C5\u978B\u5B50": 6008402848728531085 + "\u94BB\u77F3\u5FBD\u8BB0": -7843334708683984534 + "\u94BB\u77F3\u6212": 1783977052223753944 + "\u94BB\u77F3\u62FC\u56FE": 494107978269079456 + "\u94BB\u77F3\u94C2\u91D1\u6212\u6307\uFF08\u5973\uFF09": 6593713457876742110 + "\u94BB\u77F3\u94C2\u91D1\u6212\u6307\uFF08\u7537\uFF09": -1681504395520027673 + "\u94BB\u79C6\u866B": 6880628209718487173 + "\u94C1\u4E1D\u7F51": -7850243616630982143 + "\u94C1\u5320\u5927\u5E08\u4E4B\u5323\u5C0F": 2676829784160118492 + "\u94C1\u5320\u7CBE\u901A": 1004307159035364724 + "\u94C1\u62F3\u5957": -3598778728421873601 + "\u94C1\u6761": 4675198386551736357 + "\u94C1\u6876": 501907458219987507 + "\u94C1\u724C\u4E00\u7B49\u4F2F\u7235": 4553925684422942905 + "\u94C1\u724C\u4E00\u7B49\u4FAF\u7235": -7749753526657462760 + "\u94C1\u724C\u4E00\u7B49\u516C\u7235": 3128371437405551933 + "\u94C1\u724C\u4E00\u7B49\u5B50\u7235": -3184772599548240093 + "\u94C1\u724C\u4E00\u7B49\u7537\u7235": -7150100871940033413 + "\u94C1\u724C\u4E09\u7B49\u4F2F\u7235": -7231489307318686088 + "\u94C1\u724C\u4E09\u7B49\u4FAF\u7235": 8662121948244900124 + "\u94C1\u724C\u4E09\u7B49\u516C\u7235": -1136528579552358833 + "\u94C1\u724C\u4E09\u7B49\u5B50\u7235": 7634116774107594437 + "\u94C1\u724C\u4E09\u7B49\u7537\u7235": 6805510053803134131 + "\u94C1\u724C\u4E8C\u7B49\u4F2F\u7235": -7303272945870924765 + "\u94C1\u724C\u4E8C\u7B49\u4FAF\u7235": -7720457242536194681 + "\u94C1\u724C\u4E8C\u7B49\u516C\u7235": -7064858783060503393 + "\u94C1\u724C\u4E8C\u7B49\u5B50\u7235": -3740491098050316251 + "\u94C1\u724C\u4E8C\u7B49\u7537\u7235": 1677759502895304744 + "\u94C1\u7599\u7629": 7606011356990990871 + "\u94C1\u77E2": 7348717356558173594 + "\u94C1\u77FF": -1318505791707687004 + "\u94C1\u7802\u5F39": -3874030980160340420 + "\u94C1\u80CE\u5F13": -8948143533963821739 + "\u94C1\u810A\u52512012": 6906843685775364656 + "\u94C1\u864E\u5323": 7613297699523332430 + "\u94C1\u8D28\u4EE4\u724C": -7879600270683670943 + "\u94C1\u8D28\u53D1\u7968": -3432024600879165074 + "\u94C1\u8D28\u82B1\u7BEE\u5DE5\u827A\u949F": -4543311303669742723 + "\u94C1\u8D28\u8FD4\u5238": 5862523790814726129 + "\u94C1\u8D28\u9AD8\u7EA7\u4EE4\u724C": 5768847999805263966 + "\u94C1\u94F3": 84706442944328181 + "\u94C1\u9524": 7352422183288513921 + "\u94C1\u9539": 5046832760775206421 + "\u94C1\u9774\u523A": -1469510804582978129 + "\u94C2\u91D1\u5FBD\u8BB0": -1647411831129506951 + "\u94C3\u513F\u624B\u956F": -839325251840415057 + "\u94C3\u5170": 6407735854617181709 + "\u94C3\u51701": 5136391926895356609 + "\u94C3\u94DB\u513F": -8310902418183339342 + "\u94C5\u9730\u5F39": -2040922386108368641 + "\u94DC\u5E01": -2828723743470133 + "\u94DC\u62F3\u5957": -5550765953734283931 + "\u94DC\u724C\u4E00\u7B49\u4F2F\u7235": -158275055010776577 + "\u94DC\u724C\u4E00\u7B49\u4FAF\u7235": -7178358553622767274 + "\u94DC\u724C\u4E00\u7B49\u516C\u7235": 310819187707260124 + "\u94DC\u724C\u4E00\u7B49\u5B50\u7235": -3703134471298645070 + "\u94DC\u724C\u4E00\u7B49\u7537\u7235": 4649802462888377929 + "\u94DC\u724C\u4E09\u7B49\u4F2F\u7235": -7181681267116789352 + "\u94DC\u724C\u4E09\u7B49\u4FAF\u7235": 5574179035181725976 + "\u94DC\u724C\u4E09\u7B49\u516C\u7235": -934486809638453728 + "\u94DC\u724C\u4E09\u7B49\u5B50\u7235": 1456924381067221745 + "\u94DC\u724C\u4E09\u7B49\u7537\u7235": 1487206815816057157 + "\u94DC\u724C\u4E8C\u7B49\u4F2F\u7235": -648794906480996079 + "\u94DC\u724C\u4E8C\u7B49\u4FAF\u7235": 4413220929934873813 + "\u94DC\u724C\u4E8C\u7B49\u516C\u7235": 644429928770284196 + "\u94DC\u724C\u4E8C\u7B49\u5B50\u7235": -5908832259690171361 + "\u94DC\u724C\u4E8C\u7B49\u7537\u7235": 4175876535083230524 + "\u94DC\u76D4": 3420047749801538442 + "\u94DC\u864E\u5323": -365724477699524695 + "\u94DC\u8D28\u4EE4\u724C": -8910436961831405439 + "\u94DC\u8D28\u53D1\u7968": 1090156907792089575 + "\u94DC\u8D28\u5956\u7AE0": 8596093456806895995 + "\u94DC\u8D28\u6210\u5C31\u5FBD\u7AE0\xB7\u4ED9\u5E7B\u5929": -1064793673435032148 + "\u94DC\u8D28\u767E\u7075\u7B3C": 3760713354068772984 + "\u94DC\u8D28\u8FD4\u5238": -7366156460817607716 + "\u94DC\u8D28\u9AD8\u7EA7\u4EE4\u724C": -5344781427711234382 + "\u94DC\u938F\u91D1\u4F5B": -1075583894400797341 + "\u94DC\u94B1": -6025874500183936843 + "\u94DC\u94BA": -5111656408660193113 + "\u94DC\u94C3\u4E03\u5B9D\u9F0E\u7089": -6094814417579112605 + "\u94DC\u9547\u7EB82012": -7690964566118202602 + "\u94DC\u9774\u523A": 6014983224601255461 + "\u94DC\u9879\u5708": 6557307903069956578 + "\u94F6\u4E1D\u8C61\u7259\u7B14": 2781919247500227436 + "\u94F6\u5236\u8033\u73AF": 8725564051677298923 + "\u94F6\u5E01": -7787719221746185522 + "\u94F6\u674F\u8272\u67D3\u6599": 1938817296934007534 + "\u94F6\u724C\u4E00\u7B49\u4F2F\u7235": 2314254078977105728 + "\u94F6\u724C\u4E00\u7B49\u4FAF\u7235": 1692331997925425045 + "\u94F6\u724C\u4E00\u7B49\u516C\u7235": -1291043667052296457 + "\u94F6\u724C\u4E00\u7B49\u5B50\u7235": 2972701650112668149 + "\u94F6\u724C\u4E00\u7B49\u7537\u7235": -949298101433149187 + "\u94F6\u724C\u4E09\u7B49\u4F2F\u7235": -8842794101490350198 + "\u94F6\u724C\u4E09\u7B49\u4FAF\u7235": 3706622610551121543 + "\u94F6\u724C\u4E09\u7B49\u516C\u7235": -2899878933947440668 + "\u94F6\u724C\u4E09\u7B49\u5B50\u7235": 1929751926656224876 + "\u94F6\u724C\u4E09\u7B49\u7537\u7235": -6775248984723715010 + "\u94F6\u724C\u4E8C\u7B49\u4F2F\u7235": -8200073012157874506 + "\u94F6\u724C\u4E8C\u7B49\u4FAF\u7235": -1990853527325208578 + "\u94F6\u724C\u4E8C\u7B49\u516C\u7235": -4632777362348315586 + "\u94F6\u724C\u4E8C\u7B49\u5B50\u7235": -8659944101737853190 + "\u94F6\u724C\u4E8C\u7B49\u7537\u7235": -1899418577271197726 + "\u94F6\u7261\u4E39\u7F8A\u7ED2\u9760\u57AB": 6774200120078376293 + "\u94F6\u72D0\u5C3E": -1849938913189767780 + "\u94F6\u7FFC\u4E4B\u5F13": 2547794376437224935 + "\u94F6\u7FFC\u72D0": -4112912360922225688 + "\u94F6\u8272\u4E4B\u604B\u957F\u88D9": 5233410398637619961 + "\u94F6\u8272\u4E4B\u604B\u978B\u5B50": 8317884488197124701 + "\u94F6\u864E\u5323": -4497104721739486647 + "\u94F6\u88C5\u7537\u4E0A\u8863": 2278224976412679148 + "\u94F6\u88C5\u7537\u5934\u53D1": -5414204010268756988 + "\u94F6\u88C5\u7537\u624B\u5957": -193044193594282026 + "\u94F6\u88C5\u7537\u88E4\u5B50": 6615309496861540692 + "\u94F6\u88C5\u7537\u978B\u5B50": -5106872700163733650 + "\u94F6\u8D28\u4EE4\u724C": -8783914976560923718 + "\u94F6\u8D28\u53D1\u7968": -5440963699734934989 + "\u94F6\u8D28\u5956\u7AE0": -8504111203080522443 + "\u94F6\u8D28\u6210\u5C31\u5FBD\u7AE0\xB7\u4ED9\u5E7B\u5929": 8118685488852789612 + "\u94F6\u8D28\u8FD4\u5238": -7860998786674843835 + "\u94F6\u8D28\u9AD8\u7EA7\u4EE4\u724C": 7470109936480534399 + "\u94F6\u94A9": 1691081047144136601 + "\u94F6\u9774\u523A": -7718969097106598647 + "\u94F6\u9879\u5708": -45202783408635074 + "\u94F8\u94C1\u5F29\u673A": 8847062246854089776 + "\u94F8\u94C1\u5F3A\u529B\u673A\u7C27": 2669490815423101861 + "\u94F8\u94C1\u5FBD\u8BB0": -5909450240670695587 + "\u94F8\u94C1\u62A4\u8EAB\u9501": -671272402441377183 + "\u94F8\u94C1\u68CD\u68D2\u62A4\u624B": 3906543522798413242 + "\u94F8\u94C1\u77DB\u67C4": -2627140467436952006 + "\u94F8\u94C1\u77ED\u5203\u67C4": 3635341661844149193 + "\u94F8\u94C1\u80A1\u7532\u5408\u9875": 4677443263683421436 + "\u94F8\u94C1\u80A9\u7532\u5408\u9875": -5304550493552776587 + "\u94F8\u94C1\u8155\u7532\u5408\u9875": -8951193700171244273 + "\u94F8\u94C1\u836F\u5BA4": 69766195127724626 + "\u94F8\u94C1\u88F9\u8FB9\u7BB1": 155614663273574817 + "\u94F8\u94C1\u8E1D\u7532\u5408\u9875": -9161561941151589700 + "\u94F8\u94C1\u957F\u5200\u5200\u683C": -5620613324514079496 + "\u94F8\u94C1\u957F\u6746\u63A5\u69AB": -2607726708255722803 + "\u94F8\u94C1\u9762\u7F69\u5408\u9875": 7311676409566414546 + "\u94F8\u9B42\u949B\u6676": 1587928054735171350 + "\u9501\u5B50\u80F8\u7532": 3740269832253417479 + "\u9501\u5B50\u817F\u7532": -5543863920169881195 + "\u9501\u5B50\u8896\u7532": 662810243716480627 + "\u9501\u5B50\u9774": -7497179621940404070 + "\u950B\u5229\u7684\u722A\u5B50": 473643089298219749 + "\u9510\u5229\u4E4B\u77F3": 5366309102097767508 + "\u951F\u94FB\u4E4B\u52031": -241514015471297273 + "\u951F\u94FB\u4E4B\u52032": 3231950532494255266 + "\u951F\u94FB\u4E4B\u5203\u7070": 3897122750476677770 + "\u951F\u94FB\u4E4B\u5203\u84DD": -696296942488105303 + "\u951F\u94FB\u4E4B\u5203\u91D1": 5564107312397823165 + "\u9521\u864E\u5323": 8939984680088392477 + "\u9521\u9152\u58F6": 593836268709414198 + "\u9526\u4E0A\u6DFB\u82B1": -5704368316312432203 + "\u9526\u56CA": -8564507005705604925 + "\u9526\u56CA\u5999\u8BA1": -895011199716927864 + "\u9526\u7EE3\u7261\u4E39\u74F7\u676F": -1395311170652992032 + "\u9526\u7EE3\u7FA4\u82B3\u679C\u7BEE": 8840927734042052085 + "\u9526\u7EE3\u96D5\u82B1\u95E8": -3573180652034126074 + "\u9526\u7F0E\u62A4\u8155\u7EE3\u9762": 1623138109406150865 + "\u9526\u7F0E\u6CD5\u672F\u978B\u5E95": -5963615621819711513 + "\u9526\u7F0E\u6CD5\u888D\u8863\u895F": 3526806970810639586 + "\u9526\u7F0E\u6CD5\u88E4\u4E0B\u6446": -4304361046945860901 + "\u9526\u7F0E\u7075\u529B\u5E61\u7EE6": -7016260044378598761 + "\u9526\u7F0E\u9999\u56CA": -8664320132070416333 + "\u9526\u953B\u62A4\u8155\u7EE3\u9762": -4661265798855140900 + "\u9526\u96C0\u938F\u94F6\u6446\u4EF6": 1324778786192122951 + "\u9542\u82B1\u73BB\u7483\u9152\u5177": -4848692119719101089 + "\u9547\u5143\u9524": 7771095056229174469 + "\u9547\u538B\u4E4B\u529B": 8358948011585593006 + "\u9547\u6D77\u8170\u9970": -2944625041711293741 + "\u9547\u9B3C\u7075\u7B26": -5157765340918272728 + "\u9547\u9B42\u77ED\u6756": 1699138376421422858 + "\u954C\u523B\u94ED\u6587": -3740653787338987467 + "\u954F\u91D1\u9524": -287385227340047475 + "\u9550\u5B50": -4456428568815035551 + "\u9556\u888B": -45821892313866756 + "\u955C\u4E4B\u6CC9\u6C34": -4027337116121214421 + "\u9570\u5200100\u7EA7": -6913197956735927104 + "\u9570\u520016\u54C1": -6165457226610949903 + "\u9570\u5200\u51C6\u9876\u7EA7": -2123920521489241041 + "\u9570\u5200\u521D\u59CB": -8004774215978840937 + "\u9570\u5200\u52BF\u529B": 3094320262922126541 + "\u9570\u5200\u65B016\u54C1": 8989419379168137932 + "\u9570\u5200\u65B0\u4E5D\u519B": 5685195000869002278 + "\u9570\u5200\u65B0\u516B\u519B": 3659386124511588399 + "\u9570\u5200\u795E\u6708": 7956858460462150976 + "\u9570\u5200\u8FC7\u6E211": 1505650703393828534 + "\u9570\u5200\u8FC7\u6E212": -6304362488884294049 + "\u9570\u5200\u8FC7\u6E213": 7935895942685245915 + "\u9570\u5200\u8FC7\u6E214": 177936902597005970 + "\u9570\u5200\u8FC7\u6E215": -2516306866927049514 + "\u9570\u5200\u8FC7\u6E216": -1032702988390298783 + "\u9570\u5200\u8FC7\u6E217": 4986891017196165752 + "\u9570\u5200\u8FC7\u6E218": -6497839971036323586 + "\u9570\u5200\u9EC4\u660F": 8860862784689755465 + "\u9576\u78A7\u79C0\u7AF9": -8146063847186756729 + "\u9576\u8FB9\u4E0B\u94E0": -5616918041685168071 + "\u957F\u51FB\u5200": 8076482594062669275 + "\u957F\u5200\u7F8A": -6484252824189246649 + "\u957F\u53F6\u7247": 2968503542583845922 + "\u957F\u5F13": 127489047648785094 + "\u957F\u5F81\u76AE\u5E26\u6263": 2046785266078300353 + "\u957F\u65D7\u888D": 8610979197219099199 + "\u957F\u706B\u67AA": -3162508458108165474 + "\u957F\u751F\u5305": -7244049687639785619 + "\u957F\u751F\u79D8\u5238": 3080459101878913397 + "\u957F\u751F\u8BC0": 8005554694994330717 + "\u957F\u76F8\u53AE\u5B88": -4698629821434862974 + "\u957F\u76F8\u5B88": 8859667798827934909 + "\u957F\u7A7A\u4E4B\u4E1D": -8068617147744245645 + "\u957F\u7A7A\u4E4B\u7231": -5325516998800001764 + "\u957F\u7A7A\u4E4B\u7EB1": 8903051663739926129 + "\u957F\u7A7A\u4E4B\u7FFC": 822966386580951583 + "\u957F\u7A7A\u4E4B\u821E": -2452506993314645993 + "\u957F\u7A7A\u4E4B\u9732": -1890171051065080740 + "\u957F\u81C2\u86EE": 4770460241914837283 + "\u957F\u8857\u9189\u6708\u574A": -6171116332574538291 + "\u957F\u97AD": -4333932515799489614 + "\u95EA\u5149\u4E4B\u5251": -7942911657321165227 + "\u95EA\u5149\u788E\u7247": -7960483133311543334 + "\u95EA\u534E\u65A7": 743028172295955073 + "\u95EA\u7535\u9CD0": -6626137049779787001 + "\u95EA\u7A7A\u4E4B\u77DB": -7135258060814996008 + "\u95EA\u94BB\u793C\u670D\u7537\u4E0A\u8863": -5491180300489096353 + "\u95EA\u94BB\u793C\u670D\u7537\u624B\u5957": 3567463036382273192 + "\u95EA\u94BB\u793C\u670D\u7537\u88E4\u5B50": 2612046376661378644 + "\u95EA\u94BB\u793C\u670D\u7537\u978B\u5B50": -7044162021071539284 + "\u95ED\u6708\u7F9E\u82B1": 5985933755971243843 + "\u95F7\u5C16\u72EE\u5B50\u5934": 6288501062680079154 + "\u95FB\u81A6": -7950906600707232505 + "\u960E\u738B\u4EE4": 2809822946286139982 + "\u960E\u9B54\u76D4": 8077247963476064406 + "\u9614\u5FC3\u6797\u6728": -4087528149400005612 + "\u9616\u5BB6\u56E2\u5706": -9043853769087464996 + "\u961F\u4F0D\u96C6\u7ED3\u4EE4": -124121233280579688 + "\u9633\u5149\u74F6": -234018619356335996 + "\u9634\u5DEE\u9633\u9519\u5361": 5634406650402636966 + "\u9634\u9523": 8474002509193375425 + "\u9634\u9633\u5251": -7766391966257596326 + "\u9634\u9633\u593A\u9B44\u8F6E": -8100125002654406276 + "\u9634\u9633\u7B26": -3179074636886604594 + "\u9634\u973E\u4E4B\u4E1D": 1724338064628725418 + "\u9634\u973E\u4E4B\u7231": 7101026620010506063 + "\u9634\u973E\u4E4B\u7EB1": 1167671391013319512 + "\u9634\u973E\u4E4B\u7FFC": -5617647785963300569 + "\u9634\u973E\u4E4B\u821E": 7542685084397265362 + "\u9634\u973E\u4E4B\u9732": 1551005586925199893 + "\u9634\u9B54\u4EE4": -4299499127398503006 + "\u9635\u96E8\u5200": -8351851525141945954 + "\u963F\u62C9\u4E01\u98DE\u6BEF": -4569016562626059214 + "\u963F\u661F\u7684\u5305\u88F9": -6514591570253062538 + "\u9646\u5316\u7684\u6D77\u9F9F\u8910\u8272": -3207759718678917909 + "\u9646\u751F\u673A\u5668\u8783\u87F9": 1486330012793506160 + "\u9648\u65E7\u7684\u4EE4\u724C": -1097370026004746155 + "\u964D\u4E16\u4E4B\u51A0": 4381880068312462584 + "\u964D\u7130\u9B54\u5B97": 2051958925185172507 + "\u964D\u9B54\u6775": -3111039064980549259 + "\u9664\u76D6\u969C\u83E9\u8428": 7350127662717088969 + "\u9664\u76D6\u969C\u83E9\u8428\u788E\u7247": -7167810045648373655 + "\u9668\u661F\u5251": 3957695246046293339 + "\u9668\u94C1\u6B8B\u7247\u5C71": -1827858998590462948 + "\u9668\u94C1\u6B8B\u7247\u5C71\u6D41\u901A": -6074380013985615460 + "\u9668\u94C1\u6B8B\u7247\u6D77": 2817134388060208017 + "\u9668\u94C1\u6B8B\u7247\u6D77\u6D41\u901A": -6958617963983520029 + "\u9676\u5200\u950B\u94F8\u6A21": -7767167221009255261 + "\u9676\u5251\u5203\u94F8\u6A21": 4628660696179230001 + "\u9676\u5668": -6904593241230978460 + "\u9676\u5B50\u6BCD\u65A7\u94F8\u6A21": 3405478879657729327 + "\u9676\u5B50\u6BCD\u9524\u94F8\u6A21": 7036517836723875514 + "\u9676\u6307\u73AF\u94F8\u6A21": -3656238316553220366 + "\u9676\u65A7\u5203\u94F8\u6A21": -8451730955265213631 + "\u9676\u91D1\u521A\u6775\u94F8\u6A21": 5457061568222664423 + "\u9676\u9524\u5934\u94F8\u6A21": -8692831443906107615 + "\u9676\u9E33\u9E2F\u5200\u94F8\u6A21": 8835205530600558934 + "\u9676\u9E33\u9E2F\u5251\u94F8\u6A21": -8408067681317295192 + "\u9677\u9631": 3814691424959881519 + "\u968F\u4E16\u4ED9\u59D1\u5361": -1607651160997627754 + "\u968F\u5019\u9057\u73E0": 7107518736092534179 + "\u968F\u673A\u67D3\u8272\u5242": -2321201701612996738 + "\u968F\u8EAB\u80CC\u5305": 1185040714521245586 + "\u9690\u58EB\u4E4B\u955C": 6712122331138766436 + "\u9690\u8272\u8349": -3341424865079444555 + "\u9694\u6C34\u5200": 6208862467137510831 + "\u96C0\u753B\u5F13": 4789527128134154045 + "\u96C0\u77F3": 2743412567641531051 + "\u96C0\u821E\u7FC5": 8240228023223923817 + "\u96C4\u9E70\u4E4B\u7FFC": 7273957064402029595 + "\u96C4\u9EC4": 3815357755998396169 + "\u96C5\u5B9D\u7F20\u679D\u7B14\u7B52": -3043852307953823900 + "\u96C5\u73B2\u7684\u7075\u9B42": -7155401308912061617 + "\u96CF\u9E70\u5C0F\u8349": -8175011316056574682 + "\u96D51": 8567622846393133631 + "\u96D52": 6058871548647569496 + "\u96D53": -5465973645513826898 + "\u96D54": -695584377266846193 + "\u96D5\u50CF\u4E4B\u5FC3": -1289565265493262707 + "\u96D5\u7FCE\u7BAD": 4097060573642430312 + "\u96D5\u82B1\u56F4\u9F99\u5C4B": 7570242298837664341 + "\u96D5\u82B1\u70B9\u988F\u7B3C": -4297491932823961370 + "\u96D5\u82B1\u73BB\u7483\u94C1\u5EA7\u949F": 8296202011061863531 + "\u96D5\u82B1\u9A6C\u7532\u7537\u88C5\u4E0A\u8863": 9025438801080263571 + "\u96D5\u82B1\u9A6C\u7532\u7537\u88C5\u5934\u53D1": -4617590985590853182 + "\u96D5\u82B1\u9A6C\u7532\u7537\u88C5\u88E4\u5B50": -630926747178204612 + "\u96D5\u82B1\u9A6C\u7532\u7537\u88C5\u978B\u5B50": 7407314420872745088 + "\u96E8\u4F1E": -7990289970414354062 + "\u96E8\u82B1\u77F3\u5760\u5B50": 8820511786059257736 + "\u96EA\u4E4B\u5370": -1990484668831933835 + "\u96EA\u4E4B\u7075\u4E0A\u534A": 2925903318043631987 + "\u96EA\u4E4B\u7075\u4E0B\u534A": -7002266452090672213 + "\u96EA\u4EBA\u5750\u9A91": -5531472747190247850 + "\u96EA\u5154\u5B9D\u5B9D": -4108824405665653816 + "\u96EA\u540E\u5C71\u884C\u56FE": -1342278606241348090 + "\u96EA\u5973": 5767406666624812437 + "\u96EA\u5A03\u5A03": -2913925632198307442 + "\u96EA\u6218\u58EB": -4101375067555909828 + "\u96EA\u6D6A\u5760\u5B50": 1444868549859761194 + "\u96EA\u7403": -7165465492244068320 + "\u96EA\u78A7": 6466859611005674533 + "\u96EA\u7FBD\u6BDB": 33499069850624953 + "\u96EA\u821E\u938F\u6676": 8497941371323176323 + "\u96EA\u86EE\u795E\u5B98\u5854\u5854": 836201571305608481 + "\u96EA\u9E92\u9E9F": -4614417575908885870 + "\u96F6": 3919138890837643459 + "\u96F7\u5149\u523A": 6528349198045174770 + "\u96F7\u5203\u7B26": -3762972925812842110 + "\u96F7\u5996\u4E4B\u89D2": -6342652446047945138 + "\u96F7\u7259\u72471": 890048805483591949 + "\u96F7\u7259\u72472": 6169172077508526883 + "\u96F7\u7259\u72473": -476157613370370445 + "\u96F7\u7259\u72474": 119602372895072628 + "\u96F7\u7259\u72475": 2519283506006513602 + "\u96F7\u7259\u72476": 1638533303887387684 + "\u96F7\u7259\u72477": -1656806489317728597 + "\u96F7\u7259\u72478": 9136599190372346688 + "\u96F7\u7535\u7F8A\u9A91\u5BA0": 923891042279268164 + "\u96F7\u9706\u9707": -2624835164937176639 + "\u96F7\u97F3\u68CD": -5953073635436510182 + "\u9707\u4E4B\u8868\u5FBD": -6965964907549347012 + "\u9707\u4E4B\u9B42": 3367624187656056698 + "\u9707\u5730\u5F39": 3688522019975413588 + "\u9707\u6012\u5E7B\u5F71": 2171186417853978046 + "\u9732\u4E38": 3255697246473780826 + "\u9732\u534E\u8170\u9970": 3483728463499164490 + "\u9732\u6E10\u6E05\u8377\u5782\u706F": -8916309034243845118 + "\u9738\u4E1A": 2978988447181526594 + "\u9738\u6D77\u4E4B\u7389": -6632479894731289385 + "\u9738\u6D77\u4E4B\u9774": -2931057894264084847 + "\u9738\u6D77\u6212\uFF08\u9633\uFF09": 337132019684807306 + "\u9738\u6D77\u6212\uFF08\u9634\uFF09": -6531063584978623612 + "\u9738\u6D77\u62A4\u624B": -2088810507607432119 + "\u9738\u6D77\u62A4\u817F": -5545902399912172182 + "\u9738\u6D77\u7384\u7532": 8184163792731299328 + "\u9738\u6D77\u9879\u94FE": 667376725955408913 + "\u9739\u96F3\u517D\u7684\u7360\u7259": -405235069032330472 + "\u9739\u96F3\u5F39": 4088841227991615133 + "\u9752\u5149\u4E2D\u7EA7": -8715835455878946194 + "\u9752\u5149\u521D\u7EA7": 1237362187691603025 + "\u9752\u5149\u9AD8\u7EA7": -2739970939090624738 + "\u9752\u5A25\u4F69": 5673671551706262245 + "\u9752\u5F71\u9879\u94FE": 4928320519449910334 + "\u9752\u679D\u8FCE\u5BA2": 3476690540061146672 + "\u9752\u6C34\u9F99\u517D\u5361\u72471": 2141404869511133903 + "\u9752\u6C34\u9F99\u517D\u5361\u72472": -8823833892251450732 + "\u9752\u6C34\u9F99\u517D\u5361\u72473": 5855348388751560395 + "\u9752\u6C34\u9F99\u517D\u5361\u72474": -6830510468027013862 + "\u9752\u6C34\u9F99\u517D\u5361\u72475": 5403487127221744966 + "\u9752\u6C34\u9F99\u517D\u5361\u72476": -8159224149863090874 + "\u9752\u6C34\u9F99\u517D\u5361\u72477": 8170796518818978624 + "\u9752\u6C34\u9F99\u517D\u5361\u72478": -1987565422036260617 + "\u9752\u7389": -6983235687929606662 + "\u9752\u7389\u4E4B\u77F3": -7479172407128102793 + "\u9752\u7476\u9732\u9CDE\u9B44": -2530100675731411782 + "\u9752\u74F7\u6C34\u6CE8": 4147028754243993716 + "\u9752\u767D\u7389\u9547\u7EB8": 2520170650500971021 + "\u9752\u77F3\u6697\u7EB9\u684C\u6905": 627664026998226337 + "\u9752\u7F57\u8F6F\u97AD": -508097649636773246 + "\u9752\u7FE0\u7389\u4F69": 7890167676598335876 + "\u9752\u8272\u67D3\u8272\u5242": -3506211328502666185 + "\u9752\u82B1\u70DF\u96E8\u523B\u74F7": -1900082798928830001 + "\u9752\u82B1\u73B2\u73D1\u7559\u9999\u58F6": 6214217329761612367 + "\u9752\u82B1\u74F7\u5973\u88C5\u4E0A\u8863": 1331827086833023787 + "\u9752\u82B1\u74F7\u5973\u88C5\u5934\u53D1": -6970995005422600101 + "\u9752\u82B1\u74F7\u5973\u88C5\u978B\u5B50": 4374246745920150925 + "\u9752\u82B1\u7B14\u7B52": 8578473303126195764 + "\u9752\u82B1\u7F20\u679D\u74F6": -2804888660796677852 + "\u9752\u8349": 1203359673331042640 + "\u9752\u83B2\u8272\u67D3\u6599": -1116361610899971289 + "\u9752\u85E4\u7ED5\u6897": -1010994668729106267 + "\u9752\u86A8": -5823697672384841897 + "\u9752\u86A8\u76AE": 8044947242144387432 + "\u9752\u86D9\u4E0B\u96E8\u5973\u88C5\u4E0A\u8863": 8344221794379980389 + "\u9752\u86D9\u4E0B\u96E8\u5973\u88C5\u4E0B\u8863": 6001495734977481949 + "\u9752\u86D9\u4E0B\u96E8\u5973\u88C5\u5934\u53D1": 962892182756062617 + "\u9752\u86D9\u4E0B\u96E8\u5973\u88C5\u978B\u5B50": 5286239442225826707 + "\u9752\u91C9\u83B2\u82B1\u7897": -2092754651033881330 + "\u9752\u91C9\u846B\u82A6\u7B14\u6D17": -2956690223207353302 + "\u9752\u91D1\u4F69": 5004207906985296515 + "\u9752\u91D1\u96F7\u77F3\u56FE\u817E": 4490259096845507358 + "\u9752\u94DC\u5251": -7129626227979520916 + "\u9752\u94DC\u5B88\u795E\u7B26": -5813019534777454948 + "\u9752\u94DC\u5B88\u8EAB\u7B26": 6281775660583679911 + "\u9752\u94DC\u5F29\u673A": -4060278665602468009 + "\u9752\u94DC\u5F3A\u529B\u673A\u7C27": -6142867552944912741 + "\u9752\u94DC\u5FBD\u8BB0": -3820025557889552425 + "\u9752\u94DC\u62A4\u8EAB\u7B26": 7876029589862818140 + "\u9752\u94DC\u62A4\u8EAB\u9501": 2572685910503013253 + "\u9752\u94DC\u68CD\u68D2\u62A4\u624B": -6156524438339578663 + "\u9752\u94DC\u72B6\xB7\u4ED9\u5E7B\u5929": -2641899538487582100 + "\u9752\u94DC\u77DB\u67C4": -7776217300152830715 + "\u9752\u94DC\u77ED\u5203\u67C4": 7105780755928024884 + "\u9752\u94DC\u80A1\u7532\u5408\u9875": 2394326597065637834 + "\u9752\u94DC\u80A9\u7532\u5408\u9875": -5355692108628203398 + "\u9752\u94DC\u8155\u7532\u5408\u9875": -9173768221433818469 + "\u9752\u94DC\u836F\u5BA4": 7374676201350121282 + "\u9752\u94DC\u864E\u7B26": -4860553489206606734 + "\u9752\u94DC\u8E1D\u7532\u5408\u9875": -4853780633244509748 + "\u9752\u94DC\u957F\u5200\u5200\u683C": 2867384476488037777 + "\u9752\u94DC\u957F\u6746\u63A5\u69AB": -6782927159692482043 + "\u9752\u94DC\u9762\u7F69\u5408\u9875": -8021029772281128093 + "\u9752\u950B\u5251": -570293337990900714 + "\u9752\u9E1F\u4E4B\u7FBD": 3073321033075845554 + "\u9752\u9E1F\u4E4B\u98CE": -3757520035150317873 + "\u9752\u9E64\u9876\u793C\u70DB\u53F0": -3089931600749457942 + "\u9752\u9F99\u4E4B\u5217": -7630647275634469955 + "\u9752\u9F99\u4E4B\u5730": 1158785098628140635 + "\u9752\u9F99\u4E4B\u5929": 5797968137895439301 + "\u9752\u9F99\u4E4B\u5B87": -8180911316646908106 + "\u9752\u9F99\u4E4B\u5B99": 8101335139231067161 + "\u9752\u9F99\u4E4B\u5BBF": 7913945777256128472 + "\u9752\u9F99\u4E4B\u5F20": -4810738384049510449 + "\u9752\u9F99\u4E4B\u65E5": -4313058457401373313 + "\u9752\u9F99\u4E4B\u6603": -6824025292038416365 + "\u9752\u9F99\u4E4B\u6708": 3696810686668802569 + "\u9752\u9F99\u4E4B\u6D2A": -3486392817582716798 + "\u9752\u9F99\u4E4B\u76C8": 2722729880010058549 + "\u9752\u9F99\u4E4B\u8352": -5272116367330795722 + "\u9752\u9F99\u4E4B\u8FB0": -5066520325931646225 + "\u9752\u9F99\u4E4B\u9EC4": -438000882066592063 + "\u9752\u9F99\u78D0\u73BA": -5717891220175276055 + "\u9759\u5CB3\u4E4B\u77F3": -7613114920896703982 + "\u9759\u5FC3\u6C34": 732576060363330461 + "\u9759\u5FC3\u77F3": 132919385294655491 + "\u9759\u6CC9\u5251": -6916308455277560289 + "\u9759\u9B42\u706F": 8654310334720789474 + "\u975B\u84DD\u8272\u67D3\u6599": -2347266932057608892 + "\u975B\u9752\u661F\u6CB3\u9547\u7EB8": 5045289264169447 + "\u975B\u9752\u8272\u67D3\u6599": -6434309320652797449 + "\u975E\u4E3B\u6D41\u5A5A\u793C\u5973\u88C5\u4E0A\u8863": 6397869187809029476 + "\u975E\u4E3B\u6D41\u5A5A\u793C\u5973\u88C5\u5934\u53D1": -2586996925053507438 + "\u975E\u4E3B\u6D41\u5A5A\u793C\u5973\u88C5\u624B\u5957": 4912897925882770671 + "\u975E\u4E3B\u6D41\u5A5A\u793C\u5973\u88C5\u88E4\u5B50": -1430800982971851871 + "\u975E\u4E3B\u6D41\u5A5A\u793C\u5973\u88C5\u978B\u5B50": -6012207459775109961 + "\u975E\u4E3B\u6D41\u5A5A\u793C\u7537\u88C5\u4E0A\u8863": -5344194658642631244 + "\u975E\u4E3B\u6D41\u5A5A\u793C\u7537\u88C5\u5934\u53D1": 3125627024253729917 + "\u975E\u4E3B\u6D41\u5A5A\u793C\u7537\u88C5\u624B\u5957": 7236123992403385086 + "\u975E\u4E3B\u6D41\u5A5A\u793C\u7537\u88C5\u88E4\u5B50": 5027177762143094727 + "\u975E\u4E3B\u6D41\u5A5A\u793C\u7537\u88C5\u978B\u5B50": 3933592837100395741 + "\u975E\u5E38\u5B8C\u7F8E\u5305\u5C0F": -7174834678619131316 + "\u975E\u955C": 3451911579895596572 + "\u9762\u7C89": 2416381417730518927 + "\u978B\u5B50": 8517208513696954706 + "\u97AD\u5B50": 2715322651579340399 + "\u97AD\u70AE": -5755594323592421319 + "\u97E6\u9640\u6775": -941756998340922534 + "\u97E7\u4E4B\u4E1D": 2679836067557373890 + "\u97EC\u5149\u62AB\u98CE": -8255025826599483576 + "\u9876": 7012028495227779118 + "\u9876\u706F": 5098136262930633363 + "\u9876\u9488": -7439812527948796588 + "\u987B\u9640": 2058381852472389725 + "\u9882\u5531\u4E4B\u8BED": 7786837583010862427 + "\u9885\u9AA8": -8508288062514819322 + "\u9886\u5E26\u4F11\u95F2\u88C5\u4E0A\u8863": -4422209315832086986 + "\u9886\u5E26\u4F11\u95F2\u88C5\u88E4\u5B50": 5344973528372387912 + "\u9886\u5E26\u4F11\u95F2\u88C5\u978B": 2337438012697257429 + "\u98CE": 6688839808634069375 + "\u98CE\u4E4B\u5973\u795E\u7684\u795D\u798F": -1229194037313978060 + "\u98CE\u4E4B\u7CBE\u7075": 1100662530988561034 + "\u98CE\u4E4B\u7CBE\u9B44": 4472886577114516403 + "\u98CE\u4FE1\u5B50": 5506542812404529536 + "\u98CE\u60C5\u6708\u610F": 6558605881171382594 + "\u98CE\u6696\u9152\u65D7\u697C": 2582227437370821410 + "\u98CE\u706B\u8F6E1": 7708059004344320072 + "\u98CE\u706B\u8F6E2": 1455198222731804531 + "\u98CE\u706B\u8F6E3": -3729682675096854436 + "\u98CE\u706B\u8F6E4": -8831253354932304639 + "\u98CE\u706B\u8F6E5": -7722631574242605181 + "\u98CE\u7B5D": 7866826782737760418 + "\u98CE\u7B5D\u7EEF\u68A6": 5669037443628020770 + "\u98CE\u9A9A\u51EF\u6492\u7537\u88C5\u4E0A\u8863": -6467175635751155315 + "\u98CE\u9A9A\u51EF\u6492\u7537\u88C5\u62A4\u8155": 3665161414824653873 + "\u98CE\u9A9A\u51EF\u6492\u7537\u88C5\u88E4\u5B50": -5661633368178250844 + "\u98CE\u9A9A\u51EF\u6492\u7537\u88C5\u978B\u5B50": 7431310795789524022 + "\u98D8\u6E3A\u4E4B\u5F13": -3997738812882244675 + "\u98D8\u6E3A\u4ED9\u4E39": 1562368651968715784 + "\u98DE\u517D\u627F\u5F71": 6044376215371659736 + "\u98DE\u5200": 8586487774301190980 + "\u98DE\u52511": 5609000049140409564 + "\u98DE\u525110": -7449748496071487226 + "\u98DE\u525111": -5886557400485944598 + "\u98DE\u525113": 4118056411381131868 + "\u98DE\u525114": 6908872925044361384 + "\u98DE\u525115": -1248668224328317136 + "\u98DE\u52512": -4981129423022687433 + "\u98DE\u52513": 365352045085039176 + "\u98DE\u52514": -6109153213047671597 + "\u98DE\u52515": 1877976741904054356 + "\u98DE\u52516": 8573773872094592471 + "\u98DE\u52517": 820285083875729669 + "\u98DE\u52518": 2766432134647909391 + "\u98DE\u52519": 4407261589399285552 + "\u98DE\u5251\u6280\u80FD\u4E66": 5809131943975223106 + "\u98DE\u5251\u65B0\u4FEE\u9752\u94DC\u5E95\u5B50": 4592074458858151626 + "\u98DE\u5251\u7BB1": 3421792488497511381 + "\u98DE\u5251\u9F99\u6E0A": 7616375917654735413 + "\u98DE\u5347\u4E4B\u7FFC": 5724349524917850406 + "\u98DE\u5723": 7735825492122682289 + "\u98DE\u5723\u5251": 5216645841443410906 + "\u98DE\u5929\u4E0A\u8863": 2738828748656130626 + "\u98DE\u5929\u72C2\u9CA8": -466152928173533236 + "\u98DE\u5929\u732A": 4619312374270746533 + "\u98DE\u5929\u795E\u8C5A": -8193372950883563174 + "\u98DE\u5929\u864E\u5996": 1272387441733722157 + "\u98DE\u5929\u8708\u86A3": -6824761721534629816 + "\u98DE\u5929\u88D9": -9159249328487809836 + "\u98DE\u5929\u978B": 2531778440464723893 + "\u98DE\u65A7": -5164918229346513499 + "\u98DE\u6C99\u602A\u5361\u72471": -1932315303038474951 + "\u98DE\u6C99\u602A\u5361\u72472": 3294987195435054400 + "\u98DE\u6C99\u602A\u5361\u72473": 4045462213507512656 + "\u98DE\u6C99\u602A\u5361\u72474": 6790272777389824518 + "\u98DE\u6C99\u602A\u5361\u72475": -4662536095171249849 + "\u98DE\u6C99\u602A\u5361\u72476": -3056118495316185573 + "\u98DE\u6C99\u602A\u5361\u72477": -5418128109932770803 + "\u98DE\u6C99\u602A\u5361\u72478": 4910696300497313430 + "\u98DE\u72D0\u4E4B\u7FBD": -2707020881664513081 + "\u98DE\u7BAD\u6280\u80FD\u4E66": 3114187573734463562 + "\u98DE\u7FBD\u4E4B\u7FFC": -8483668134680672961 + "\u98DE\u7FD4\u4E4B\u7FBD": -8266202310499615231 + "\u98DE\u7FD4\u9CA8\u7684\u7259\u9F7F": 72524980844164101 + "\u98DE\u864E\u517D\u6076\u7075": 2308267746874802035 + "\u98DE\u864E\u517D\u9057\u9AB8": 3312579558763764393 + "\u98DE\u86C7\u4E4B\u7FFC": -475180553174127509 + "\u98DE\u884C\u566809": -8279299030039245736 + "\u98DE\u884C\u5668\u52A0\u901F\u5668": 1805657727438817575 + "\u98DE\u884C\u5668\u5996\u517D\u767D\u51E4\u51F0": 7661837425772130820 + "\u98DE\u884C\u5668\u8D34\u9F99\u6E0A\u627F\u5F71": -5593680387540434723 + "\u98DE\u9556": -7699093334506444598 + "\u98DE\u9CD0": 7096359602425793506 + "\u98DE\u9CD01": -8870373265219955644 + "\u98DE\u9CD02": 4821913150629169251 + "\u98DE\u9CD03": 3141013230135783050 + "\u98DE\u9E1F\u8840\u6DB2": 2062853244829638356 + "\u98DE\u9E70\u91D1\u4EE4": -5702753034167104524 + "\u98DE\u9E70\u91D1\u94A5": -3072010603446081903 + "\u98DE\u9E70\u94A5\u5319\u94F8\u4EF6": 1828590073176924541 + "\u98DE\u9F99\u5750\u9A91": -2520659235877938153 + "\u98DF\u4EBA\u82B1\u79CD\u5B50": 6605328520372375748 + "\u98E8\u8D5E\u79CB\u5B9E\u679C\u7BEE": 3856737965363582822 + "\u9910\u5385": -1966022487779665194 + "\u9955\u992E\u7EB9\u846B\u82A6": 6615945168366440769 + "\u9971\u6EE1\u7684\u79CD\u5B50": -3004182056560533773 + "\u9977\u94F6": 6637928455929975707 + "\u997F\u72FC": -2965707870462899923 + "\u9996\u4E4C": 132748477660094308 + "\u9996\u7EA7\u96D5\u50CF": -1486139109874692025 + "\u9996\u9886\u5934\u9885": -525129661855320404 + "\u9996\u9886\u5C38\u4F53": 5510839247505992786 + "\u9996\u9970\u76D2": 6398057532397053266 + "\u9999\u4E38\u7C89": 3890013155409012554 + "\u9999\u56CA\u8170\u997012": 1787775724125808534 + "\u9999\u56CA\u8170\u997013": 6882717675371052932 + "\u9999\u6728\u96D5\u6247": -6589697288989828598 + "\u9999\u67CF\u6C90\u6D74\u6876": 7869606367362261320 + "\u9999\u69DF\u73AB\u7470": -6667561048699407312 + "\u9999\u69DF\u73AB\u7470\u74DC\u68F1\u7F50": -5531920297765819738 + "\u9999\u7CBE\u7EF3": -7946979134464979687 + "\u9999\u80A0\u5355\u624B\u77ED": 4428785206061906946 + "\u9999\u80A0\u9570\u5200": -7430147331162894113 + "\u9999\u8349\u68D2\u68D2\u7CD6": -6012634744200265521 + "\u9999\u8549": -4635640593207380709 + "\u9A6C\u4E0A\u6709\u798F": -3649258075730573444 + "\u9A6C\u724C": 4477535892896972446 + "\u9A6C\u8E44\u83B2": 4300096546195037077 + "\u9A6D\u517D\u4EE4": -8321456947658550268 + "\u9A6D\u517D\u4EE42": -6484746957817202574 + "\u9A6D\u517D\u4EE43": 5436198601474703306 + "\u9A6D\u9B54\u5E61\u6756": 6410128706119365341 + "\u9A71\u866B\u836F": -4313603227876929199 + "\u9A71\u90AA\u6C34\u6676": 2633432398571100313 + "\u9A71\u9B3C\u7C89": 3227383208969225185 + "\u9A71\u9B54\u7BAD": -6673755092902136849 + "\u9A71\u9F99\u6756": 7993453596453230892 + "\u9A7C\u7ED2\u8272\u67D3\u6599": 1255751112982031027 + "\u9A86\u9A7C": -9167861617246840000 + "\u9A90\u9AA5\u4E0B\u94E0": 8914168605016860770 + "\u9A90\u9AA5\u6218\u94E0": -4673131687101440228 + "\u9A90\u9AA5\u8155\u7532": 7020098861560658721 + "\u9A90\u9AA5\u978B": 352800616342061438 + "\u9A91\u5BA0\u9A6C\u767D": 1085609132299936189 + "\u9A91\u5BA0\u9A6C\u7EA2": 182640489969869182 + "\u9A91\u5BA0\u9A6C\u7EFF": 5785550259722088886 + "\u9A91\u5BA0\u9A6C\u9ED1": -7161815750179080873 + "\u9A91\u9F99": 6231238641199662873 + "\u9AA8\u6756": 597206985817878248 + "\u9AA8\u7070": 385585765550158794 + "\u9AA8\u77E2": -98239520950611940 + "\u9AA8\u9F7F\u9879\u94FE": -1267256924063769639 + "\u9AB0\u5B50\u5151\u6362\u5238": 6002416884739340772 + "\u9AB7\u9AC5": 8569893932126254557 + "\u9AD8\u539F\u65CB\u9F9F\u8089": -4559762370650900186 + "\u9AD8\u70AD\u94A2": 1187794721113097081 + "\u9AD8\u7EA7": -3668185766893715420 + "\u9AD8\u7EA7\u539A\u78F7\u7B26": -1390584474091481763 + "\u9AD8\u7EA7\u5408\u91D1\u94A2": 4271271336636342905 + "\u9AD8\u7EA7\u5468\u5929\u6B8B\u9875": 3837010774572950866 + "\u9AD8\u7EA7\u5934\u76D4\u56FE\u6807": -5879021968266034943 + "\u9AD8\u7EA7\u5E7B\u5929\u6B8B\u9875": -4977650576829055203 + "\u9AD8\u7EA7\u5F13": 3878647466906331161 + "\u9AD8\u7EA7\u5F3A\u5316\u76AE\u9769": -6026742230426337224 + "\u9AD8\u7EA7\u5FA1\u795E\u5F55": -5627494032362022644 + "\u9AD8\u7EA7\u6613\u5BB9\u5377\u8F74": -3750408244818148517 + "\u9AD8\u7EA7\u6728\u6599": 5774916839044832318 + "\u9AD8\u7EA7\u6DEC\u706B\u5242": -7759718347853123521 + "\u9AD8\u7EA7\u706B\u4E91\u7B26": 1604620908252507108 + "\u9AD8\u7EA7\u7126\u70AD": 2167456095634031545 + "\u9AD8\u7EA7\u72FC\u517D": -3502050342859282315 + "\u9AD8\u7EA7\u7384\u5929\u6B8B\u9875": -286278891181136630 + "\u9AD8\u7EA7\u7EA7\u5168\u80FD\u6D17\u70B9\u5238": 3219866994929158200 + "\u9AD8\u7EA7\u80FD\u529B\u6D17\u70B9\u5238": 5699038039041425127 + "\u9AD8\u7EA7\u84DD\u5F71\u7B26": 85885553871663250 + "\u9AD8\u7EA7\u9752\u5149\u7B26": -3192300389349633920 + "\u9AD8\u811A\u73BB\u7483\u7A7A\u9152\u676F": -5273421354544678899 + "\u9B3C\u51A5\u4E0B\u94E0": 3224023967198685556 + "\u9B3C\u51A5\u6212\u6307": 1476132245860503796 + "\u9B3C\u51A5\u79D8\u6CD5\u88E4": -8787061609163569711 + "\u9B3C\u51A5\u7B26\u6587\u4F69": 689215112775796803 + "\u9B3C\u51A5\u91CD\u7532": 4311843835787638290 + "\u9B3C\u51A5\u91CD\u76D4": 1821908066921797894 + "\u9B3C\u51A5\u9879\u94FE": 898124922909770188 + "\u9B3C\u5239\u8FFD\u9B42\u94F3": -2809155478932224404 + "\u9B3C\u5578\u6218\u65A7": 868564737407708718 + "\u9B3C\u5934\u5200": -7117753817397856850 + "\u9B3C\u5E06\u6212": -2566950823512383667 + "\u9B3C\u5E06\u8170\u4F69": 1247693752306031695 + "\u9B3C\u5E06\u8F7B\u5E3D": 3229946271178271335 + "\u9B3C\u5E06\u8F7B\u8155": 1341842677011533621 + "\u9B3C\u5E06\u91CD\u7532": -6641002171135040475 + "\u9B3C\u5E06\u91CD\u8155": 8392498343489251616 + "\u9B3C\u5E06\u9879\u94FE": -1763967195931774072 + "\u9B3C\u6012\u957F\u5200": 2077557060148857566 + "\u9B3C\u6276\u62A4\u8EAB\u7B26": 1427018618209842778 + "\u9B3C\u6276\u9B54\u529B\u7B26": -6739704312328461671 + "\u9B3C\u65A7\u5FBD\u8BB0": 3436166775554897771 + "\u9B3C\u706B": 5190713717786938395 + "\u9B3C\u753B\u7B26": 5593845066979504246 + "\u9B3C\u8138\u9762\u5177": 6157807698196711738 + "\u9B3C\u95E8\u5341\u4E09\u9488": -2469600917163295846 + "\u9B3C\u9634\u706B\u67AA": -6741500783211720230 + "\u9B3C\u96C4\u62F3\u5957": 9148796642998964446 + "\u9B3C\u96C4\u6775": -576886209076272610 + "\u9B42\u529B\u9B54\u76D2": 4429512241287218072 + "\u9B42\u5370\u4E4B\u77F3": 3207301878962934687 + "\u9B42\u5370\u4E4B\u77F3\u5305\u88F9": -6832436787852958409 + "\u9B42\u5370\u4E4B\u77F3\u5DE8\u86CB": -676420716932627670 + "\u9B42\u7275\u68A6\u8426": -1628380974558357588 + "\u9B42\u9B44\u4E4B\u706B": -328364999146075998 + "\u9B45": -2272207450601714049 + "\u9B45\u4E4B\u6C34\u6676": -2297380514315293566 + "\u9B45\u529B\u516C\u4E3B\u88C5\u4E0A\u8863": -491070103775321920 + "\u9B45\u529B\u516C\u4E3B\u88C5\u4E0B\u8863": 8878509836954143807 + "\u9B45\u529B\u516C\u4E3B\u88C5\u5934\u9970": 5950829484169619918 + "\u9B45\u529B\u516C\u4E3B\u88C5\u62A4\u8155": -4241869800687372980 + "\u9B45\u529B\u516C\u4E3B\u88C5\u978B\u5B50": 5774019986776360263 + "\u9B45\u5F71": 3089994706210134406 + "\u9B45\u5F71\u62F3\u5957": -9038677613222695659 + "\u9B45\u5F71\u6362\u8272\u6A59\u8272": -5846975890781696247 + "\u9B45\u707516\u54C1\u6756": -3187726402147934854 + "\u9B45\u7075\u4E03\u8D24\u6756": -7436553388082507584 + "\u9B45\u7075\u4E13\u6709\u67561": -3149901401813166421 + "\u9B45\u7075\u4E13\u6709\u67562": 7979535126390615432 + "\u9B45\u7075\u4E13\u6709\u67564": -6377220556190397502 + "\u9B45\u7075\u4E13\u7528\u670D\u88C501\u4E0A\u8863": 1159487351638291286 + "\u9B45\u7075\u4E13\u7528\u670D\u88C501\u624B\u5957": -2296396893957467026 + "\u9B45\u7075\u4E13\u7528\u670D\u88C501\u88E4\u5B50": -2816110611033462291 + "\u9B45\u7075\u4E13\u7528\u670D\u88C501\u978B\u5B50": 5643623116602457752 + "\u9B45\u7075\u4E13\u7528\u670D\u88C502\u4E0A\u8863": -1518785759937399737 + "\u9B45\u7075\u4E13\u7528\u670D\u88C502\u624B\u5957": -6672181770835010777 + "\u9B45\u7075\u4E13\u7528\u670D\u88C502\u88E4\u5B50": -5013671683339006474 + "\u9B45\u7075\u4E13\u7528\u670D\u88C502\u978B\u5B50": 6619090500659330285 + "\u9B45\u7075\u4E13\u7528\u670D\u88C503\u4E0A\u8863": 2507827301747287494 + "\u9B45\u7075\u4E13\u7528\u670D\u88C503\u624B\u5957": 7402196980179571915 + "\u9B45\u7075\u4E13\u7528\u670D\u88C503\u88E4\u5B50": -4898836810022426363 + "\u9B45\u7075\u4E13\u7528\u670D\u88C503\u978B\u5B50": 2917043056890698884 + "\u9B45\u7075\u4E13\u7528\u670D\u88C504\u4E0A\u8863": 7683284039052420749 + "\u9B45\u7075\u4E13\u7528\u670D\u88C504\u624B\u5957": -8162997130924185115 + "\u9B45\u7075\u4E13\u7528\u670D\u88C504\u88E4\u5B50": 8709356522418321996 + "\u9B45\u7075\u4E13\u7528\u670D\u88C504\u978B\u5B50": 4760719333909445781 + "\u9B45\u7075\u4E13\u7528\u670D\u88C505\u4E0A\u8863": -9010276804779950509 + "\u9B45\u7075\u4E13\u7528\u670D\u88C505\u624B\u5957": -5133713224753722230 + "\u9B45\u7075\u4E13\u7528\u670D\u88C505\u88E4\u5B50": 52035803282269769 + "\u9B45\u7075\u4E13\u7528\u670D\u88C505\u978B\u5B50": 675939692714445113 + "\u9B45\u7075\u4E13\u7528\u67563": 8569121043266031275 + "\u9B45\u7075\u4ED9\u6280\u80FD\u4E66": -3016640031213912559 + "\u9B45\u7075\u516B\u519B\u6756": 4527786300587559970 + "\u9B45\u7075\u5927\u5E08": -7803237990122169046 + "\u9B45\u7075\u6280\u80FD\u4E66": 4732575636550326188 + "\u9B45\u7075\u65B0\u624B\u6756": 1159289970809464655 + "\u9B45\u7075\u661F\u76D8": 5473556857438036620 + "\u9B45\u7075\u8170\u724C": -5879548260995172023 + "\u9B45\u7075\u94ED\u724C": -122860324191396303 + "\u9B45\u7075\u9B54\u6280\u80FD\u4E66": 966111020494917184 + "\u9B54\u5929\u6212": -4337311201550575076 + "\u9B54\u65B9vip\u8D35\u5BBE\u5361": 6764846330036437043 + "\u9B54\u65B9\u4E50\u900F\u5E01": 3317540454574566253 + "\u9B54\u65B9\u4E50\u900F\u9080\u8BF7\u51FD": 7764637582785768150 + "\u9B54\u65B9\u8463\u4E8B\u4F1A\u5BC6\u4FE1": 7644683009707853460 + "\u9B54\u65B9\u8463\u4E8B\u59D4\u6258\u4E66": -6452525766194901836 + "\u9B54\u65F6\u88C5\u5305\u88F9": 6998489054651551908 + "\u9B54\u68B0\u8760\u7684\u6BD2\u7259": 5716651059702732847 + "\u9B54\u6CD5\u58F6": -4839748057268360281 + "\u9B54\u6CD5\u5FC3": -8414036103899655232 + "\u9B54\u6CD5\u6676\u77F3": -1187517171209245142 + "\u9B54\u6CD5\u8D35\u65CF\u5973\u5DEB-\u8863\u670D32": 5767698955030510 + "\u9B54\u6CD5\u8D35\u65CF\u5973\u5DEB-\u978B32": -1717089932271193025 + "\u9B54\u6CD5\u8D35\u65CF\u5973\u5DEB\u62A4\u815532": -2955006241412540372 + "\u9B54\u6CD5\u8D35\u65CF\u7537\u5DEB-\u4E0A\u886332": -6414558686374088533 + "\u9B54\u6CD5\u8D35\u65CF\u7537\u5DEB-\u88E4\u5B5032": -5424272872630055781 + "\u9B54\u6CD5\u8D35\u65CF\u7537\u5DEB-\u978B32": 7944573710667862460 + "\u9B54\u715E\u62A4\u817F": -4786472419746397621 + "\u9B54\u715E\u6CD5\u888D": -7933026031348657392 + "\u9B54\u715E\u76D4": 7375108430034618496 + "\u9B54\u715E\u79D8\u6CD5\u6212": -2950674439458222013 + "\u9B54\u715E\u8170\u4F69": 2015506786613282156 + "\u9B54\u715E\u8F7B\u7532": -4213110838458626659 + "\u9B54\u715E\u9879\u94FE": -5017568778622605926 + "\u9B54\u715E\u9B3C\u529B\u6212": -3942900253181064054 + "\u9B54\u7259\u9879\u94FE": -351377625919070541 + "\u9B54\u7532\u7384\u6B66\u5361\u72471": -5637174603053832070 + "\u9B54\u7532\u7384\u6B66\u5361\u72472": -6741180676156162755 + "\u9B54\u7532\u7384\u6B66\u5361\u72473": -6047004216579896286 + "\u9B54\u7532\u7384\u6B66\u5361\u72474": 118279195302692101 + "\u9B54\u7532\u7384\u6B66\u5361\u72475": 3085646918970328364 + "\u9B54\u7532\u7384\u6B66\u5361\u72476": -5839746545321789726 + "\u9B54\u7532\u7384\u6B66\u5361\u72477": -3287691569510619604 + "\u9B54\u7532\u7384\u6B66\u5361\u72478": 1785423710479170361 + "\u9B54\u754C\u6218\u5200": 3757102310442459072 + "\u9B54\u754C\u6CD5\u5251": -4400251482943363627 + "\u9B54\u795E\u7CBE\u9B44": -7823512676700677215 + "\u9B54\u795E\u86A9\u5C24": 5386462482370642405 + "\u9B54\u79CD": 1413185518581762506 + "\u9B54\u7F50": 8984857195166906491 + "\u9B54\u9B42\u7075\u9F9B": -1374425577194556422 + "\u9B54\u9B42\u79D8\u7B08": 7324052539142145091 + "\u9C7C": 4682896917340522556 + "\u9C7C2": -2245425809870695394 + "\u9C7C\u4EBA\u7684\u5934": 1397057992779398349 + "\u9C7C\u7FC5": 7517989775329677997 + "\u9C7C\u9AA8": -7464860442780459812 + "\u9C7C\u9AA8\u7AD6\u7434": -4232555222003951082 + "\u9C7C\u9CCD": -6535646076030895962 + "\u9C9C\u6A59\u8272\u67D3\u6599": -8953948262548100268 + "\u9C9C\u8089": -8623192785840292067 + "\u9C9C\u82B1": -6736127860691529501 + "\u9CA8\u76AE\u5E3D\u6A90": -5759976549406648466 + "\u9CA8\u76AE\u62A4\u5FC3\u955C\u7EC4\u4EF6": -281446718057329474 + "\u9CA8\u76AE\u62A4\u8155\u7EC4\u4EF6": 3905573022169094578 + "\u9CA8\u76AE\u62A4\u819D\u7EC4\u4EF6": 778553973246669724 + "\u9CA8\u76AE\u62A4\u8E1D\u7EC4\u4EF6": 8808256773510250123 + "\u9CA8\u76AE\u98D8\u5E26\u7EC4\u4EF6": -8067165136156197296 + "\u9CB2\u9E4F": -9136028477539578731 + "\u9CB2\u9E4F\u4E0B\u94E0": 6546023521796794308 + "\u9CB2\u9E4F\u4E4B\u6E38": -3230016054778565090 + "\u9CB2\u9E4F\u4E4B\u9CDE": -4716976205481772604 + "\u9CB2\u9E4F\u6218\u94E0": -1717086491251560018 + "\u9CB2\u9E4F\u7D2B\u7FBD": -7707963394593634221 + "\u9CB2\u9E4F\u8155\u7532": 3259730615483455720 + "\u9CB2\u9E4F\u978B": -7053316608625952803 + "\u9CB8\u6D9B\u901A\u7075\u5E08\u9CB8\u54C8\u5C14": 1967709991467218030 + "\u9CB8\u76AE\u5E3D\u6A90": -1885323013369814691 + "\u9CB8\u76AE\u62A4\u5FC3\u955C\u7EC4\u4EF6": 1350563711596129981 + "\u9CB8\u76AE\u62A4\u8155\u7EC4\u4EF6": -3773637242005476544 + "\u9CB8\u76AE\u62A4\u819D\u7EC4\u4EF6": 5661387876301116542 + "\u9CB8\u76AE\u62A4\u8E1D\u7EC4\u4EF6": -4377493535823766431 + "\u9CB8\u76AE\u98D8\u5E26\u7EC4\u4EF6": 1156720742702819431 + "\u9CB8\u80F6\u5F13\u5F26": 8643296257706533658 + "\u9CB8\u80F6\u7EDE\u4E1D": 4637420472908917516 + "\u9CB8\u80F6\u8FDE\u63A5\u73AF": -7733091780486831270 + "\u9CB8\u9522\u4E4B\u773C": -6995955927037583994 + "\u9CC4\u9C7C\u7684\u773C\u6CEA": -455652619307370134 + "\u9CC4\u9C7C\u76AE": -7580160664259278487 + "\u9CC4\u9C7C\u8840": -2144024400190804781 + "\u9CD0\u7CBE1": -2339216888643751173 + "\u9CD0\u7CBE2": -6990419739400089387 + "\u9CD0\u7CBE3": 8732992752627847940 + "\u9CD0\u7CBE4": -5093203475139279791 + "\u9CD0\u7CBE5": -1531422397746701148 + "\u9CD0\u7CBE6": -4816738712650462275 + "\u9CDE\u7247": 685703324600559673 + "\u9CDE\u7532\u5C71\u732B": 7192459892030505997 + "\u9E1F\u7A9D": -5604322934892300500 + "\u9E1F\u7A9D2": -3911741367189160738 + "\u9E21\u817F": 3333181711565414896 + "\u9E21\u86CB\u4ED4": 1720317589516514158 + "\u9E22\u5C3E": -2834225084498381514 + "\u9E23\u9E3E\u8170\u9970": -2015278837086124481 + "\u9E23\u9E3F\u957F\u5200": -4386872463866186265 + "\u9E2D\u5B50": -7286006716582772653 + "\u9E33\u8776\u821E": 481368299562250472 + "\u9E33\u9E2F\u5251": 549545581081541414 + "\u9E33\u9E2F\u8170\u4F69\uFF08\u7537\uFF09": 2558592083765985748 + "\u9E3D\u5B50\u5750\u9A91": -8051619146963620342 + "\u9E3F\u8499\u79D8\u6284": 5824510378686210952 + "\u9E45\u9EC4\u8272\u67D3\u6599": 3611011887143519450 + "\u9E64\u5750\u9A91": 7756061167065945466 + "\u9E66\u9E49": 7762155304481556813 + "\u9E70\u51FB\u4E4B\u5F13": 2581018237077381392 + "\u9E7F\u76AE\u4E0B\u94E0": -5874424695297602199 + "\u9E7F\u76AE\u6218\u94E0": 5246782734447076872 + "\u9E7F\u76AE\u8155\u7532": -6535319243157444476 + "\u9E7F\u76AE\u978B": 3849079948545257932 + "\u9E7F\u8338": -249046179833238282 + "\u9E8B\u9E7F": 4188135470953424461 + "\u9E92\u9E9F\u4E4B\u5FD7": -1036666050662444531 + "\u9E92\u9E9F\u4E4B\u89D2": 782689268412605719 + "\u9E92\u9E9F\u58A8": -2494427439958894768 + "\u9E92\u9E9F\u7EFF": -216211741030299109 + "\u9E92\u9E9F\u9752\u94DC\u5370": -4220785877270142350 + "\u9E9D\u7075\u73E0": 5637271478829045197 + "\u9E9F\u5609\u8170\u9970": -4832901725485548078 + "\u9E9F\u7532\u7B26": -4111015703400876772 + "\u9EA6\u82BD\u9EC4\u67D3\u6599": 7205688560913422658 + "\u9EC4\u6A59\u68D2\u68D2\u7CD6": 3678559175211745906 + "\u9EC4\u6A80\u63CF\u91D1\u96C6\u9526\u683C": -3168925417934411861 + "\u9EC4\u6A80\u675F\u8170\u592A\u5E08\u6905": 7190573081584128575 + "\u9EC4\u6A80\u675F\u8170\u94A9\u4E91\u684C": -6737638908514590193 + "\u9EC4\u6A80\u675F\u8349\u7EB9\u5708\u6905\u7EC4\u5408": 7494339640713856548 + "\u9EC4\u6A80\u7D20\u9762\u516B\u4ED9\u684C": -6101235916377538445 + "\u9EC4\u6C34\u6676\u5760\u5B50": 3037916258679950480 + "\u9EC4\u6C89\u4E4B\u77F3": -7796424068665193091 + "\u9EC4\u6CB9": -3254252671577174327 + "\u9EC4\u6CC9\u4E4B\u6C34": 5451674749012171665 + "\u9EC4\u6CC9\u5200": -4704033886191136889 + "\u9EC4\u7389": -2704350640652021869 + "\u9EC4\u7389\u4E4B\u77F3": -974376722395848142 + "\u9EC4\u8272\u5C0F\u70DF\u82B1": -67211463649399667 + "\u9EC4\u8272\u67D3\u8272\u5242": 1773580626220746720 + "\u9EC4\u8272\u6D46\u8349": -4286876033549300217 + "\u9EC4\u8272\u7684\u7425\u73C0\u7389": 7621561794229782550 + "\u9EC4\u82B1\u68A8\u900F\u96D5\u65B9\u51F3": 4416647341308125749 + "\u9EC4\u82F9\u679C": -3175988485753643368 + "\u9EC4\u8C46": 3571860014294591642 + "\u9EC4\u91D1\u4E94\u89D2\u661F": -161793881581575884 + "\u9EC4\u91D1\u5315\u9996\u8865\u51451": -3696656269047318261 + "\u9EC4\u91D1\u5315\u9996\u8865\u51452": -1559875335692868024 + "\u9EC4\u91D1\u5315\u9996\u8865\u51453": 8622710484825014294 + "\u9EC4\u91D1\u5315\u9996\u8865\u51454": 7365953687529257782 + "\u9EC4\u91D1\u5315\u9996\u8865\u51455": 109653106949650032 + "\u9EC4\u91D1\u5315\u9996\u8865\u51456": -8461091116194183279 + "\u9EC4\u91D1\u53CC\u525113": -7486654309293174688 + "\u9EC4\u91D1\u53CC\u65A713": 1508942118675899493 + "\u9EC4\u91D1\u5B88\u795E\u7B26": 471833623505605071 + "\u9EC4\u91D1\u5B88\u8EAB\u7B26": -9127209982699689304 + "\u9EC4\u91D1\u5E03\u978B\u9774\u5B5012": -1616445678013884144 + "\u9EC4\u91D1\u5E03\u978B\u9774\u5B5013": -6572987048135037123 + "\u9EC4\u91D1\u5F1312": -3575819997464405082 + "\u9EC4\u91D1\u5F2913": -9160967061329948801 + "\u9EC4\u91D1\u5FBD\u8BB0": 7301946752257915990 + "\u9EC4\u91D1\u62A4\u8EAB\u7B26": -4994020600885092354 + "\u9EC4\u91D1\u62A4\u8EAB\u9501": 6573372074086685948 + "\u9EC4\u91D1\u68CD\u68D2\u62A4\u624B": 3937592568861282854 + "\u9EC4\u91D1\u6CD5\u525113": 2793779343721001208 + "\u9EC4\u91D1\u6CD5\u5B9D\u8865\u51451": -6401413023848170553 + "\u9EC4\u91D1\u6CD5\u5B9D\u8865\u51452": 6534482898819000780 + "\u9EC4\u91D1\u6CD5\u5B9D\u8865\u51453": 7892882892406710150 + "\u9EC4\u91D1\u6CD5\u5B9D\u8865\u51454": 7050488368402698791 + "\u9EC4\u91D1\u6CD5\u5B9D\u8865\u51455": 2960820759745410974 + "\u9EC4\u91D1\u6CD5\u5B9D\u8865\u51456": 891554255324849550 + "\u9EC4\u91D1\u6CD5\u888D\u4E0A\u886312": -6120844287722392623 + "\u9EC4\u91D1\u6CD5\u888D\u4E0A\u886313": -7232734993566706236 + "\u9EC4\u91D1\u6CD5\u888D\u817F\u88E4\u5B5012": 2762333790718506919 + "\u9EC4\u91D1\u6CD5\u888D\u817F\u88E4\u5B5013": -6883228470532447645 + "\u9EC4\u91D1\u72B6\xB7\u4ED9\u5E7B\u5929": 1820456312695109404 + "\u9EC4\u91D1\u77DB\u67C4": 7907875263527072603 + "\u9EC4\u91D1\u77ED\u5203\u67C4": -5460364224508455101 + "\u9EC4\u91D1\u77ED\u675612": -6097689366923065096 + "\u9EC4\u91D1\u793C\u5305": 8856906267775519261 + "\u9EC4\u91D1\u80A1\u7532\u5408\u9875": -1429066495870608000 + "\u9EC4\u91D1\u80A9\u7532\u5408\u9875": 3966966615377489332 + "\u9EC4\u91D1\u8155\u7532\u5408\u9875": -8044792403209218414 + "\u9EC4\u91D1\u864E\u7B26": 5644620896641199642 + "\u9EC4\u91D1\u8E1D\u7532\u5408\u9875": 9208529129076999979 + "\u9EC4\u91D1\u8F7B\u578B\u62A4\u815512": 2451437418368368318 + "\u9EC4\u91D1\u8F7B\u578B\u62A4\u815513": -6099680150076214623 + "\u9EC4\u91D1\u8F7B\u5E3D\u5934\u76D412": 3399238458356580881 + "\u9EC4\u91D1\u8F7B\u5E3D\u5934\u76D413": 3700112629920196968 + "\u9EC4\u91D1\u8F7B\u7532\u4E0A\u886312": 8479597626802087998 + "\u9EC4\u91D1\u8F7B\u7532\u4E0A\u886313": -8294523418228733938 + "\u9EC4\u91D1\u8F7B\u7532\u62A4\u8155\u62A4\u815512": -4222108626447056625 + "\u9EC4\u91D1\u8F7B\u7532\u62A4\u8155\u62A4\u815513": -6947630010625695135 + "\u9EC4\u91D1\u8F7B\u7532\u817F\u88E4\u5B5012": -7229690842724662492 + "\u9EC4\u91D1\u8F7B\u7532\u817F\u88E4\u5B5013": 5330214586426819599 + "\u9EC4\u91D1\u8F7B\u9774\u9774\u5B5012": -2032382178069542997 + "\u9EC4\u91D1\u8F7B\u9774\u9774\u5B5013": -2096890759624006195 + "\u9EC4\u91D1\u901A\u7528\u62AB\u98CE12": -5316645883731458951 + "\u9EC4\u91D1\u901A\u7528\u62AB\u98CE13": 981048132328144213 + "\u9EC4\u91D1\u91CD\u578B\u62A4\u815512": 7410989495287459470 + "\u9EC4\u91D1\u91CD\u578B\u62A4\u815513": 7883108096882537765 + "\u9EC4\u91D1\u91CD\u593412": -5503916385117660956 + "\u9EC4\u91D1\u91CD\u7532\u4E0A\u886312": 3998402329117747006 + "\u9EC4\u91D1\u91CD\u7532\u4E0A\u886313": 3731814978632983904 + "\u9EC4\u91D1\u91CD\u7532\u817F\u88E4\u5B5012": 6030421310350289248 + "\u9EC4\u91D1\u91CD\u7532\u817F\u88E4\u5B5013": -846989529997660117 + "\u9EC4\u91D1\u91CD\u76D4\u5934\u76D412": -1496069551342098457 + "\u9EC4\u91D1\u91CD\u76D4\u5934\u76D413": 2824320878268830495 + "\u9EC4\u91D1\u91CD\u9774\u9774\u5B5012": -8553186576333852009 + "\u9EC4\u91D1\u91CD\u9774\u9774\u5B5013": -5822633102406304912 + "\u9EC4\u91D1\u957F\u5200\u5200\u683C": -2712560851877982871 + "\u9EC4\u91D1\u957F\u65A712": 2114403033863182455 + "\u9EC4\u91D1\u957F\u6746\u63A5\u69AB": 7139862841356292094 + "\u9EC4\u91D1\u96D5\u5851": 6567090159436203724 + "\u9EC4\u91D1\u9762\u5177": 8653205622775350814 + "\u9EC4\u91D1\u9762\u7F69\u5408\u9875": 2495690789975501324 + "\u9EC4\u91D1\u9E64\u5634\u9504": 4596454235619606305 + "\u9EC4\u94BB": -8111939960808139542 + "\u9EC4\u94DC\u6D6E\u96D5\u7B14\u7B52": -6116679193687331808 + "\u9EC4\u9C7C\u5375": -4345854285051044279 + "\u9ED1\u4E94\u661F\u793C\u670D\u5973\u5934\u53D1": -5555681218796875564 + "\u9ED1\u4E94\u661F\u793C\u670D\u5973\u624B\u5957": 3740053548676366781 + "\u9ED1\u4E94\u661F\u793C\u670D\u5973\u88D9\u5B50": 6604149704029326171 + "\u9ED1\u4E94\u661F\u793C\u670D\u5973\u978B\u5B50": 7893892378100956825 + "\u9ED1\u5DE2\u5E03\u5C65": -4212558051561867136 + "\u9ED1\u5DE2\u6212\u6307": 7700967245973080947 + "\u9ED1\u5DE2\u62A4\u817F": 1249703809780771203 + "\u9ED1\u5DE2\u8170\u4F69": 4131360394530707779 + "\u9ED1\u5DE2\u8F7B\u94E0": 1962809176217402259 + "\u9ED1\u5DE2\u964D\u9B54\u65A7": 4784977802346021040 + "\u9ED1\u5DE2\u9879\u94FE": -627364862649166119 + "\u9ED1\u5DE7\u514B\u529B\u68D2\u68D2\u7CD6": 7048175895154929547 + "\u9ED1\u5E02": -8817985676301939554 + "\u9ED1\u6697\u4E4B\u8840": 3007246632690015924 + "\u9ED1\u6697\u5F98\u5F8A\u8005": -3957499734540771497 + "\u9ED1\u6697\u65A5\u5019": 7201545261400015915 + "\u9ED1\u6697\u6C34\u6676": -7470831066066695615 + "\u9ED1\u66DC\u864E\u7B26": -8991690404660282711 + "\u9ED1\u6746\u94F1\u91D1\u7B14\u4E60\u7B3A": -4626741778303596972 + "\u9ED1\u6C34\u6676\u5760\u5B50": 1403432462236468807 + "\u9ED1\u6D1E\u5251": -4730244472670228517 + "\u9ED1\u70AB\u5C0F\u793C\u670D\u7537\u88C5\u4E0A\u8863": -9032128175390272215 + "\u9ED1\u70AB\u5C0F\u793C\u670D\u7537\u88C5\u5934\u53D1": 4741848571213830215 + "\u9ED1\u70AB\u5C0F\u793C\u670D\u7537\u88C5\u88E4\u5B50": -7431658384667137292 + "\u9ED1\u70AB\u5C0F\u793C\u670D\u7537\u88C5\u978B\u5B50": 3852241405544747219 + "\u9ED1\u7389": 3151157960087588282 + "\u9ED1\u7389\u4E4B\u77F3": -2771614586467470593 + "\u9ED1\u7389\u4F69": -1901267184191061533 + "\u9ED1\u7532\u866B32": -3403678134347574777 + "\u9ED1\u7EA2\u7FBD\u7FFC": -6461609662388760018 + "\u9ED1\u8000\u77F3\u94FE\u5B50": 4754880988008582214 + "\u9ED1\u8272\u5BA0\u7269\u86CB": 1860474517862407787 + "\u9ED1\u8272\u67D3\u6599": -3953658440182985382 + "\u9ED1\u8272\u67D3\u8272\u5242": 4776549481751820013 + "\u9ED1\u8272\u72FC\u7259": -2084795205408392841 + "\u9ED1\u8272\u77FF\u77F3": 3140821490410340362 + "\u9ED1\u8272\u7981\u836F\u7537\u4E0A\u8863": 6913924571587891538 + "\u9ED1\u8272\u7981\u836F\u7537\u5934\u53D1": -7928748630402536788 + "\u9ED1\u8272\u7981\u836F\u7537\u88E4\u5B50": 3574076253521300251 + "\u9ED1\u8272\u7981\u836F\u7537\u978B\u5B50": 7961623144000411259 + "\u9ED1\u8C79": -6437279559205883052 + "\u9ED1\u94BB": 1150812365888334708 + "\u9ED8\u97F3\u9E3E\u9E1F\u5143\u9B42": -2832147709762985898 + "\u9EDB\u74E6\u6708\u7259\u95E8": 825906173787374324 + "\u9F20\u5C3E\u8349": -4170254644859410045 + "\u9F20\u9F7F": 6784788672805392469 + "\u9F50\u5929\u6212": -2481089120048564967 + "\u9F50\u7709\u68CD": 1283192207181036727 + "\u9F50\u7709\u8F8A": 2207321190762125321 + "\u9F7F\u86EE\u4EBA": -6184761503028884366 + "\u9F7F\u8F6E\u96F6\u4EF6": -3021191393680267807 + "\u9F99\u51E4\u864E\u9996\u749C": -1355435142460135584 + "\u9F99\u5377\u65A7": -303130085042268100 + "\u9F99\u5750\u9A91": 8799521064568840787 + "\u9F99\u5934\u68D2\u53CC\u624B\u77ED": 6450693734778170068 + "\u9F99\u5973\u4E4B\u8840": 8366569658976619653 + "\u9F99\u5973\u4E4B\u9CDE": 3924426926837242825 + "\u9F99\u5BAB\u795E\u4ED9\u9C7C": -6456108764491421256 + "\u9F99\u5E74\u6446\u644A": -3249855424350600265 + "\u9F99\u5E74\u6625\u8282\u5750\u9A91": 6755471664253092890 + "\u9F99\u5F69\u53CC\u9524": 9183209465556060512 + "\u9F99\u606F": -5895978188586131878 + "\u9F99\u6756": 5526748548705552430 + "\u9F99\u6D8E": -5591850488792501880 + "\u9F99\u708E\u4E4B\u77F3": 7148319345809264879 + "\u9F99\u73B0\u4E4B\u5F13": -4029479950233549778 + "\u9F99\u76AE\u5E3D\u6A90": 2101894388209499658 + "\u9F99\u76AE\u62A4\u5FC3\u955C\u7EC4\u4EF6": 8711559295156273677 + "\u9F99\u76AE\u62A4\u8155\u7EC4\u4EF6": -7244847448880009397 + "\u9F99\u76AE\u62A4\u819D\u7EC4\u4EF6": 5893195184763453070 + "\u9F99\u76AE\u62A4\u8E1D\u7EC4\u4EF6": 3796000319064688381 + "\u9F99\u76AE\u98D8\u5E26\u7EC4\u4EF6": 6306615579100979031 + "\u9F99\u773C\u5760\u5B50": 7995280444205408308 + "\u9F99\u795E\u5B9D\u85CF": 1217082921472168637 + "\u9F99\u795E\u7684\u53F9\u606F": -3838349059504799350 + "\u9F99\u7965\u6212": 8422985486263063772 + "\u9F99\u7B4B\u5F13\u5F26": -4536272317535710719 + "\u9F99\u7B4B\u7EDE\u4E1D": 7317922755342296182 + "\u9F99\u7B4B\u8FDE\u63A5\u73AF": -2394550922557015648 + "\u9F99\u7CAA\u4FBF": -418034959128970130 + "\u9F99\u80C6\u7D2B": -3664694094822532554 + "\u9F99\u817E\u6218\u76D4": -2746680073436545653 + "\u9F99\u864E\u76D4": -1076562956684147831 + "\u9F99\u86ED": -8765884514149461195 + "\u9F99\u987B\u62A4\u8155\u7EE3\u9762": -5882914067074908504 + "\u9F99\u987B\u6CD5\u672F\u978B\u5E95": -2028693497503184095 + "\u9F99\u987B\u6CD5\u888D\u8863\u895F": -8402329218641239000 + "\u9F99\u987B\u6CD5\u88E4\u4E0B\u6446": 1154164176161238736 + "\u9F99\u987B\u7075\u529B\u5E61\u7EE6": -3104109133548081935 + "\u9F99\u987B\u7BAD": -4024427743157447145 + "\u9F99\u987B\u9999\u56CA": -3514737484000494115 + "\u9F99\u9A6C\u8E0F\u7075\u829D": 5086280542366761421 + "\u9F99\u9A6D\u4E5D\u5929\u7684\u89D2": -7385307811948449696 + "\u9F99\u9A6D\u4E5D\u5929\u7684\u9CDE\u7247": 7218188846294343867 + "\u9F99\u9AA8\u516C\u7235\u5361\u72471": 9107402612464191555 + "\u9F99\u9AA8\u516C\u7235\u5361\u72472": 2322691088799439151 + "\u9F99\u9AA8\u516C\u7235\u5361\u72473": -5576803757691712347 + "\u9F99\u9AA8\u516C\u7235\u5361\u72474": -863515696731194149 + "\u9F99\u9AA8\u516C\u7235\u5361\u72475": -8338803172769756421 + "\u9F99\u9AA8\u516C\u7235\u5361\u72476": 8018631016745199426 + "\u9F99\u9AA8\u516C\u7235\u5361\u72477": -7677917355407604227 + "\u9F99\u9AA8\u516C\u7235\u5361\u72478": 2315888323480758946 + "\u9F99\u9AA8\u5C0F\u6BB5": 5627034629859688880 + "\u9F99\u9AA8\u624B\u638C\u6A21\u677F": -6976299100870279801 + "\u9F99\u9AA8\u6756\u67C4": 1525647415078550939 + "\u9F99\u9AA8\u7A81": -2336065771238852271 + "\u9F99\u9AA8\u8282\u6263": 1745784494280250635 + "\u9F99\u9CDE\u6CD5\u888D": 9128076824999358866 + "\u9F99\u9CDE\u9879\u94FE": -540465674346731830 + "\u9F99\u9E6B\u4E4B\u7FFC": -1035135835023540162 + "\u9F99\u9E6B\u76AE": 352195731696824920 + "\u9F9F\u7075\u5C65": -4936380844854844852 + "\u9F9F\u7075\u62A4\u8155": -1918168938708035867 + "\u9F9F\u7075\u888D": -4954576742688061515 + "\u9F9F\u7075\u88E4": 2628378024701438128 + "\u9F9F\u86C7\u4E0B\u94E0": 6960359093697871085 + "\u9F9F\u86C7\u6218\u94E0": -5972766022372059752 + "\u9F9F\u86C7\u8155\u7532": 1584013671311716110 + "\u9F9F\u86C7\u978B": -3192493140122837824 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory.meta b/Assets/PerfectWorld/Resources/UI/Inventory.meta new file mode 100644 index 0000000000..fd7d8230ae --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 351a5b59958523541a30e49855d20b6c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/B脿y b谩n.png b/Assets/PerfectWorld/Resources/UI/Inventory/B脿y b谩n.png new file mode 100644 index 0000000000..cd056c0f75 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/B脿y b谩n.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/B脿y b谩n.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/B脿y b谩n.png.meta new file mode 100644 index 0000000000..d4013e2d61 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/B脿y b谩n.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2010a6c5eb8d9364ea753980bfea59ef +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/M岷穋 th峄.png b/Assets/PerfectWorld/Resources/UI/Inventory/M岷穋 th峄.png new file mode 100644 index 0000000000..db84fb8a1c Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/M岷穋 th峄.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/M岷穋 th峄.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/M岷穋 th峄.png.meta new file mode 100644 index 0000000000..e124cd3da9 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/M岷穋 th峄.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: de771947766ff79448c1bb3df2ca5bb1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/PW tui do.png b/Assets/PerfectWorld/Resources/UI/Inventory/PW tui do.png new file mode 100644 index 0000000000..3b67d76f93 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/PW tui do.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/PW tui do.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/PW tui do.png.meta new file mode 100644 index 0000000000..5a2af92215 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/PW tui do.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b391db9b31856634d9b752a62c1bae4b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/S峄璦 nhanh.png b/Assets/PerfectWorld/Resources/UI/Inventory/S峄璦 nhanh.png new file mode 100644 index 0000000000..dbb202abbe Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/S峄璦 nhanh.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/S峄璦 nhanh.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/S峄璦 nhanh.png.meta new file mode 100644 index 0000000000..226ea94055 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/S峄璦 nhanh.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fec46b7ea216317409e6c5bf6bcea6cb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/ao-tt.png b/Assets/PerfectWorld/Resources/UI/Inventory/ao-tt.png new file mode 100644 index 0000000000..8ce33cade8 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/ao-tt.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/ao-tt.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/ao-tt.png.meta new file mode 100644 index 0000000000..ad09d0d58e --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/ao-tt.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 0c7171154f8994d42a0e102885012bca +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/aogiap.png b/Assets/PerfectWorld/Resources/UI/Inventory/aogiap.png new file mode 100644 index 0000000000..f400041cb7 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/aogiap.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/aogiap.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/aogiap.png.meta new file mode 100644 index 0000000000..ff6d9c3fd0 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/aogiap.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3194812197e80cb42b63f9cf3a186de2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/bangten.png b/Assets/PerfectWorld/Resources/UI/Inventory/bangten.png new file mode 100644 index 0000000000..a2f0898926 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/bangten.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/bangten.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/bangten.png.meta new file mode 100644 index 0000000000..ad02f523b9 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/bangten.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f0ff2954d1e468044a51a9abca1f3695 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/cam nang.png b/Assets/PerfectWorld/Resources/UI/Inventory/cam nang.png new file mode 100644 index 0000000000..95ef977ed7 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/cam nang.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/cam nang.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/cam nang.png.meta new file mode 100644 index 0000000000..68fac6bbae --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/cam nang.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 9aa4c42b39dea7f48b1a864293c45051 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/chan vu khac an.png b/Assets/PerfectWorld/Resources/UI/Inventory/chan vu khac an.png new file mode 100644 index 0000000000..25aebe728c Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/chan vu khac an.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/chan vu khac an.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/chan vu khac an.png.meta new file mode 100644 index 0000000000..cc2fa270e5 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/chan vu khac an.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ce815ac6001272841ae29c25e38baa19 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/check.png b/Assets/PerfectWorld/Resources/UI/Inventory/check.png new file mode 100644 index 0000000000..4565620ac9 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/check.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/check.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/check.png.meta new file mode 100644 index 0000000000..6b115bee85 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/check.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 593afcf115bf1a3458d6e6113fefad2a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/checkbox.png b/Assets/PerfectWorld/Resources/UI/Inventory/checkbox.png new file mode 100644 index 0000000000..e4fc7bc448 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/checkbox.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/checkbox.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/checkbox.png.meta new file mode 100644 index 0000000000..afbc47965e --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/checkbox.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 44ea9a481a85669438a9d59205aaf8a0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/chienlinh.png b/Assets/PerfectWorld/Resources/UI/Inventory/chienlinh.png new file mode 100644 index 0000000000..225b7b3b5a Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/chienlinh.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/chienlinh.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/chienlinh.png.meta new file mode 100644 index 0000000000..9c3be048b6 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/chienlinh.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b624642cd12c5d147942932cd8d298e9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/chung nhan ban.png b/Assets/PerfectWorld/Resources/UI/Inventory/chung nhan ban.png new file mode 100644 index 0000000000..3d56c15c90 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/chung nhan ban.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/chung nhan ban.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/chung nhan ban.png.meta new file mode 100644 index 0000000000..a0914e5b87 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/chung nhan ban.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f70a003647b8d884497f2a6f4b1d8306 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/dan duoc.png b/Assets/PerfectWorld/Resources/UI/Inventory/dan duoc.png new file mode 100644 index 0000000000..0a13120672 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/dan duoc.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/dan duoc.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/dan duoc.png.meta new file mode 100644 index 0000000000..fca7de3b71 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/dan duoc.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f3866fa00f0af6e479c022a7bd7e71b2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/gach.png b/Assets/PerfectWorld/Resources/UI/Inventory/gach.png new file mode 100644 index 0000000000..c0bf02659f Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/gach.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/gach.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/gach.png.meta new file mode 100644 index 0000000000..3cd77d5871 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/gach.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fd2e66e18a9b02c4d8eb99e32943cd45 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/giay.png b/Assets/PerfectWorld/Resources/UI/Inventory/giay.png new file mode 100644 index 0000000000..e3710fb786 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/giay.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/giay.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/giay.png.meta new file mode 100644 index 0000000000..03a5f9a5a7 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/giay.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5cb604aeb99ef784bb20ac6b921de0b6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/giaytt.png b/Assets/PerfectWorld/Resources/UI/Inventory/giaytt.png new file mode 100644 index 0000000000..95f3894825 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/giaytt.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/giaytt.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/giaytt.png.meta new file mode 100644 index 0000000000..8320837914 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/giaytt.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d2cf1760a49ccb745af8182eb2faca8d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/ho oan.png b/Assets/PerfectWorld/Resources/UI/Inventory/ho oan.png new file mode 100644 index 0000000000..a9810f313e Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/ho oan.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/ho oan.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/ho oan.png.meta new file mode 100644 index 0000000000..20ed85f4e2 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/ho oan.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 15a065221ea3cce4b90965d1155a2dde +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/k2.png b/Assets/PerfectWorld/Resources/UI/Inventory/k2.png new file mode 100644 index 0000000000..9da71c2d4a Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/k2.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/k2.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/k2.png.meta new file mode 100644 index 0000000000..87c73f4af9 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/k2.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: cefe0860fb4d56243923c81298c4f531 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/k3.png b/Assets/PerfectWorld/Resources/UI/Inventory/k3.png new file mode 100644 index 0000000000..9bcc3e9fef Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/k3.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/k3.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/k3.png.meta new file mode 100644 index 0000000000..19ecbeb088 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/k3.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 76f221d3f4723d84396a3a34a7c832e6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 7, y: 4, z: 6, w: 5} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 1537655665 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/khung item.png b/Assets/PerfectWorld/Resources/UI/Inventory/khung item.png new file mode 100644 index 0000000000..bef71c25bc Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/khung item.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/khung item.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/khung item.png.meta new file mode 100644 index 0000000000..625efb951f --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/khung item.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a5366f3bce011c046902e39b6bd3a077 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/khung nd tuido.png b/Assets/PerfectWorld/Resources/UI/Inventory/khung nd tuido.png new file mode 100644 index 0000000000..6b2f5e1511 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/khung nd tuido.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/khung nd tuido.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/khung nd tuido.png.meta new file mode 100644 index 0000000000..6d16d6c08c --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/khung nd tuido.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 822fe9fa40c11b54da776559acd1a2fa +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/khung showitem.png b/Assets/PerfectWorld/Resources/UI/Inventory/khung showitem.png new file mode 100644 index 0000000000..1f716ff7f2 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/khung showitem.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/khung showitem.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/khung showitem.png.meta new file mode 100644 index 0000000000..fb18251eef --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/khung showitem.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 31724268aed254d4c9a0523e647a6c71 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 43, y: 44, z: 49, w: 39} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 1537655665 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/lenh bai the luc.png b/Assets/PerfectWorld/Resources/UI/Inventory/lenh bai the luc.png new file mode 100644 index 0000000000..6b9ee9877e Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/lenh bai the luc.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/lenh bai the luc.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/lenh bai the luc.png.meta new file mode 100644 index 0000000000..5f69404641 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/lenh bai the luc.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d45bb0a2c8000374f834d8a19da27ccc +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/lien.png b/Assets/PerfectWorld/Resources/UI/Inventory/lien.png new file mode 100644 index 0000000000..c000873ae6 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/lien.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/lien.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/lien.png.meta new file mode 100644 index 0000000000..0b914264bc --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/lien.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 9183a6dc206a5e4469f386f82dd2c80e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/linhmach.png b/Assets/PerfectWorld/Resources/UI/Inventory/linhmach.png new file mode 100644 index 0000000000..dd95a4bf40 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/linhmach.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/linhmach.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/linhmach.png.meta new file mode 100644 index 0000000000..fdc9c5085d --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/linhmach.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d18e8f46b87c7bd44b5eff4c9fd6ef84 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/loa.png b/Assets/PerfectWorld/Resources/UI/Inventory/loa.png new file mode 100644 index 0000000000..bc3ec14818 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/loa.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/loa.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/loa.png.meta new file mode 100644 index 0000000000..5ed36681fa --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/loa.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e6bca195f06c68648a0b642e11be8cf1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/nganluong.png b/Assets/PerfectWorld/Resources/UI/Inventory/nganluong.png new file mode 100644 index 0000000000..1ab4a18510 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/nganluong.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/nganluong.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/nganluong.png.meta new file mode 100644 index 0000000000..cd18ce2cf4 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/nganluong.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: acb875b203dad934ba6728afc54a0457 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/ngoc boi.png b/Assets/PerfectWorld/Resources/UI/Inventory/ngoc boi.png new file mode 100644 index 0000000000..a3a476dda0 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/ngoc boi.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/ngoc boi.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/ngoc boi.png.meta new file mode 100644 index 0000000000..e4035d7674 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/ngoc boi.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 94ac76d76c0dd2641bf4caf3f9890e7a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/nhan1.png b/Assets/PerfectWorld/Resources/UI/Inventory/nhan1.png new file mode 100644 index 0000000000..d036d2a3d8 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/nhan1.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/nhan1.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/nhan1.png.meta new file mode 100644 index 0000000000..8cbdbba0dc --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/nhan1.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 112d71c958f44f94189f89574045da65 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/nhan2.png b/Assets/PerfectWorld/Resources/UI/Inventory/nhan2.png new file mode 100644 index 0000000000..098399bd53 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/nhan2.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/nhan2.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/nhan2.png.meta new file mode 100644 index 0000000000..50ad73d5db --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/nhan2.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 399f8b4b0e9b17845a8aa2c12882f8fc +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/non-tt.png b/Assets/PerfectWorld/Resources/UI/Inventory/non-tt.png new file mode 100644 index 0000000000..06bbbfb2cc Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/non-tt.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/non-tt.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/non-tt.png.meta new file mode 100644 index 0000000000..d8c58792bc --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/non-tt.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 16d775d1b06ccc24eb6227b8d7f57b44 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/non.png b/Assets/PerfectWorld/Resources/UI/Inventory/non.png new file mode 100644 index 0000000000..902ad6303b Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/non.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/non.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/non.png.meta new file mode 100644 index 0000000000..5c89b5eabc --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/non.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fa3d41df1ab5d624d8bc451fe21fe75b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/phi hanh.png b/Assets/PerfectWorld/Resources/UI/Inventory/phi hanh.png new file mode 100644 index 0000000000..61c416eec5 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/phi hanh.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/phi hanh.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/phi hanh.png.meta new file mode 100644 index 0000000000..c58b7feb2f --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/phi hanh.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 03d42eaf32b52d443a0cb2d35af6dcb6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/phi phong.png b/Assets/PerfectWorld/Resources/UI/Inventory/phi phong.png new file mode 100644 index 0000000000..48fa5ae1e6 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/phi phong.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/phi phong.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/phi phong.png.meta new file mode 100644 index 0000000000..b9936a49a8 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/phi phong.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d6bd22e33e3ca2b4797f6b8db2fcd3a4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/phu mana.png b/Assets/PerfectWorld/Resources/UI/Inventory/phu mana.png new file mode 100644 index 0000000000..0ff8bc1778 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/phu mana.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/phu mana.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/phu mana.png.meta new file mode 100644 index 0000000000..56c1bb9022 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/phu mana.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7f7c9378872fbd44cbfbae5ee1bca610 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/phu mau.png b/Assets/PerfectWorld/Resources/UI/Inventory/phu mau.png new file mode 100644 index 0000000000..f7c6723a79 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/phu mau.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/phu mau.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/phu mau.png.meta new file mode 100644 index 0000000000..a453e1c306 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/phu mau.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3900030bf39af4e4886945456768d4fc +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/pw show item.png b/Assets/PerfectWorld/Resources/UI/Inventory/pw show item.png new file mode 100644 index 0000000000..ee12a3361b Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/pw show item.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/pw show item.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/pw show item.png.meta new file mode 100644 index 0000000000..89a88abc59 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/pw show item.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3600b4b1f33958a4a88b5b935f985ec1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/quan-tt.png b/Assets/PerfectWorld/Resources/UI/Inventory/quan-tt.png new file mode 100644 index 0000000000..5f9c2184ef Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/quan-tt.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/quan-tt.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/quan-tt.png.meta new file mode 100644 index 0000000000..3f04bccabb --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/quan-tt.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 86b54c859cc34f74da1e2a01c6e2b79f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/quan.png b/Assets/PerfectWorld/Resources/UI/Inventory/quan.png new file mode 100644 index 0000000000..a60dfb1dfe Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/quan.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/quan.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/quan.png.meta new file mode 100644 index 0000000000..84ad6deb59 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/quan.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f7eaf7ec367eb994cac72b3d33d58d5d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/sapxep.png b/Assets/PerfectWorld/Resources/UI/Inventory/sapxep.png new file mode 100644 index 0000000000..6b38d44895 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/sapxep.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/sapxep.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/sapxep.png.meta new file mode 100644 index 0000000000..a8ba200715 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/sapxep.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f0b5383dce7129b4eaec8900b6857d51 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/tab1.png b/Assets/PerfectWorld/Resources/UI/Inventory/tab1.png new file mode 100644 index 0000000000..a2137501a7 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/tab1.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/tab1.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/tab1.png.meta new file mode 100644 index 0000000000..6b95cb8e3f --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/tab1.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 0e7885e3cd0cb72479e3e3361eed95ed +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/tab2.png b/Assets/PerfectWorld/Resources/UI/Inventory/tab2.png new file mode 100644 index 0000000000..90c6f36383 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/tab2.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/tab2.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/tab2.png.meta new file mode 100644 index 0000000000..9e2b4b88e2 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/tab2.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6fbed4f6068334f4a889a113a8ec5928 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/tay-tt.png b/Assets/PerfectWorld/Resources/UI/Inventory/tay-tt.png new file mode 100644 index 0000000000..c4e6eb14f2 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/tay-tt.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/tay-tt.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/tay-tt.png.meta new file mode 100644 index 0000000000..c37dc5b6a8 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/tay-tt.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c11afcc423ffcf1469441dda50c41498 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/thien thu.png b/Assets/PerfectWorld/Resources/UI/Inventory/thien thu.png new file mode 100644 index 0000000000..6667186b7d Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/thien thu.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/thien thu.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/thien thu.png.meta new file mode 100644 index 0000000000..baf3672e09 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/thien thu.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2ba6a2d3fabf42f44b5deb5507105af9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/tinh b脿n.png b/Assets/PerfectWorld/Resources/UI/Inventory/tinh b脿n.png new file mode 100644 index 0000000000..3d33013be8 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/tinh b脿n.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/tinh b脿n.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/tinh b脿n.png.meta new file mode 100644 index 0000000000..1aa316f81d --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/tinh b脿n.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a93efe7e5fb5bde409584784d9a1782b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/tinh linh.png b/Assets/PerfectWorld/Resources/UI/Inventory/tinh linh.png new file mode 100644 index 0000000000..845a847869 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/tinh linh.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/tinh linh.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/tinh linh.png.meta new file mode 100644 index 0000000000..66e41576ad --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/tinh linh.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5e9e393d62302c44eaf0897330149937 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/tuido.png b/Assets/PerfectWorld/Resources/UI/Inventory/tuido.png new file mode 100644 index 0000000000..041a07a2ff Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/tuido.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/tuido.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/tuido.png.meta new file mode 100644 index 0000000000..ed480784ea --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/tuido.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1e03d643c2165c341a098afee0efe003 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/uu hoa phu.png b/Assets/PerfectWorld/Resources/UI/Inventory/uu hoa phu.png new file mode 100644 index 0000000000..ab056b3d1d Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/uu hoa phu.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/uu hoa phu.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/uu hoa phu.png.meta new file mode 100644 index 0000000000..270b05d1ba --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/uu hoa phu.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 66f1b5ce99a55254f8be0ffaf4c21f73 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/vukhi -tt.png b/Assets/PerfectWorld/Resources/UI/Inventory/vukhi -tt.png new file mode 100644 index 0000000000..18dcbbf1e5 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/vukhi -tt.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/vukhi -tt.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/vukhi -tt.png.meta new file mode 100644 index 0000000000..95848fea86 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/vukhi -tt.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5138c660cf656de42bf2ac9480076d77 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/vukhi.png b/Assets/PerfectWorld/Resources/UI/Inventory/vukhi.png new file mode 100644 index 0000000000..b6089c6b88 Binary files /dev/null and b/Assets/PerfectWorld/Resources/UI/Inventory/vukhi.png differ diff --git a/Assets/PerfectWorld/Resources/UI/Inventory/vukhi.png.meta b/Assets/PerfectWorld/Resources/UI/Inventory/vukhi.png.meta new file mode 100644 index 0000000000..d803d251c4 --- /dev/null +++ b/Assets/PerfectWorld/Resources/UI/Inventory/vukhi.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 96eb279ecf066574d823ea34bd319d17 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PerfectWorld/Scripts/Common/DataProcess/elementdataman.cs b/Assets/PerfectWorld/Scripts/Common/DataProcess/elementdataman.cs index 99bcf42bda..a229caaf54 100644 --- a/Assets/PerfectWorld/Scripts/Common/DataProcess/elementdataman.cs +++ b/Assets/PerfectWorld/Scripts/Common/DataProcess/elementdataman.cs @@ -29,6 +29,18 @@ namespace ModelRenderer.Scripts.GameData public Dictionary config_index_id_map = new Dictionary(); public Dictionary config_id_data_map = new Dictionary(); + public Dictionary talk_id_data_type_map = new Dictionary(); + public Dictionary talk_index_id_map = new Dictionary(); + public Dictionary talk_id_data_map = new Dictionary(); + + public Dictionary face_id_data_type_map = new Dictionary(); + public Dictionary face_index_id_map = new Dictionary(); + public Dictionary face_id_data_map = new Dictionary(); + + public Dictionary recipe_id_data_type_map = new Dictionary(); + public Dictionary recipe_index_id_map = new Dictionary(); + public Dictionary recipe_id_data_map = new Dictionary(); + public EQUIPMENT_ADDON[] equipment_addon_array = new EQUIPMENT_ADDON[0]; public WEAPON_MAJOR_TYPE[] weapon_major_type_array = new WEAPON_MAJOR_TYPE[0]; public WEAPON_SUB_TYPE[] weapon_sub_type_array = new WEAPON_SUB_TYPE[0]; @@ -470,83 +482,83 @@ namespace ModelRenderer.Scripts.GameData // upgrade_production_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // acc_storage_blacklist_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // face_hair_texture_map_array = AAssit.ReadArrayFromBinary(file, ref dwRead); - + // // multi_exp_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // inc_skill_ability_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // god_evil_convert_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // wedding_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // wedding_bookcard_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); - + // // wedding_invitecard_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // sharpener_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // face_thirdeye_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // faction_fortress_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // faction_building_sub_type_array = AAssit.ReadArrayFromBinary(file, ref dwRead); - + // // faction_building_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // faction_material_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // congregate_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); - + // // engrave_major_type_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // engrave_sub_type_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // engrave_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // npc_engrave_service_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // npc_randprop_service_array = AAssit.ReadArrayFromBinary(file, ref dwRead); - + // // randprop_type_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // randprop_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // wiki_taboo_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // force_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // force_token_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); - + // // npc_force_service_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // player_death_drop_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // dynskillequip_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // consume_points_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // online_awards_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); - + // // country_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // gm_activity_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // fashion_weapon_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // pet_evolve_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // pet_evolved_skill_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); - + // // money_convertible_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // stone_change_recipe_type_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // stone_change_recipe_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // meridian_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // pet_evolved_skill_rand_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); - + // // autotask_display_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // touch_shop_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // title_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // complex_title_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // monster_spirit_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); - + // // player_spirit_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // player_reincarnation_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // history_stage_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // history_advance_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // autoteam_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); - + // // player_realm_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // chariot_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // chariot_war_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // poker_levelexp_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // poker_suite_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); - + // // poker_dice_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // poker_sub_type_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // poker_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // token_shop_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // shop_token_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); - + // // gt_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // rand_shop_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // profit_time_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // faction_pvp_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // universal_token_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); - + // // task_list_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // task_dice_by_weight_config_array = AAssit.ReadArrayFromBinary(file, ref dwRead); // fashion_suite_essence_array = AAssit.ReadArrayFromBinary(file, ref dwRead); @@ -591,19 +603,736 @@ namespace ModelRenderer.Scripts.GameData add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); } - /*foreach (var item in unionscroll_essence_array) + // Armor Types + foreach (var item in armor_major_type_array) { - add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_UNIONSCROLL_ESSENCE); + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_ARMOR_MAJOR_TYPE); add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); - }*/ + } + + foreach (var item in armor_sub_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_ARMOR_SUB_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + foreach (var item in armor_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_ARMOR_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Decoration Types + foreach (var item in decoration_major_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_DECORATION_MAJOR_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in decoration_sub_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_DECORATION_SUB_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + foreach (var item in decoration_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_DECORATION_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + // Medicine Types + foreach (var item in medicine_major_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_MEDICINE_MAJOR_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in medicine_sub_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_MEDICINE_SUB_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in medicine_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_MEDICINE_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Material Types + foreach (var item in material_major_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_MATERIAL_MAJOR_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in material_sub_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_MATERIAL_SUB_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in material_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_MATERIAL_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Rune Types + foreach (var item in damagerune_sub_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_DAMAGERUNE_SUB_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in damagerune_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_DAMAGERUNE_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in armorrune_sub_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_ARMORRUNE_SUB_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in armorrune_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_ARMORRUNE_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Skill Tome Types + foreach (var item in skilltome_sub_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_SKILLTOME_SUB_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in skilltome_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_SKILLTOME_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Special Items + foreach (var item in flysword_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_FLYSWORD_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in wingmanwing_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_WINGMANWING_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in townscroll_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_TOWNSCROLL_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // foreach (var item in unionscroll_essence_array) + // { + // add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_UNIONSCROLL_ESSENCE); + // add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + // } + + foreach (var item in revivescroll_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_REVIVESCROLL_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in element_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_ELEMENT_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in taskmatter_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_TASKMATTER_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in tossmatter_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_TOSSMATTER_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Projectile Types + foreach (var item in projectile_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_PROJECTILE_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in projectile_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_PROJECTILE_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Quiver Types + foreach (var item in quiver_sub_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_QUIVER_SUB_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in quiver_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_QUIVER_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Stone Types + foreach (var item in stone_sub_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_STONE_SUB_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in stone_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_STONE_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Monster Types + foreach (var item in monster_addon_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_MONSTER_ADDON); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in monster_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_MONSTER_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in monster_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_MONSTER_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // NPC Service Types + foreach (var item in npc_talk_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_TALK_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_sell_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_SELL_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_buy_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_BUY_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_repair_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_REPAIR_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_install_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_INSTALL_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_uninstall_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_UNINSTALL_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_task_in_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_TASK_IN_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_task_out_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_TASK_OUT_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_task_matter_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_TASK_MATTER_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_skill_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_SKILL_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_heal_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_HEAL_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_transmit_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_TRANSMIT_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // foreach (var item in npc_transport_service_array) + // { + // add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_TRANSPORT_SERVICE); + // add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + // } + + foreach (var item in npc_proxy_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_PROXY_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_storage_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_STORAGE_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_make_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_MAKE_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_decompose_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_DECOMPOSE_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_identify_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_IDENTIFY_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_war_towerbuild_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_WAR_TOWERBUILD_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_resetprop_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_RESETPROP_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_petname_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_PETNAME_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_petlearnskill_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_PETLEARNSKILL_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_petforgetskill_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_PETFORGETSKILL_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_equipbind_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_EQUIPBIND_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_equipdestroy_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_EQUIPDESTROY_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in npc_equipundestroy_service_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_NPC_EQUIPUNDESTROY_SERVICE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Config Types + foreach (var item in enemy_faction_config_array) + { + add_id_index(ID_SPACE.ID_SPACE_CONFIG, item.id, DATA_TYPE.DT_ENEMY_FACTION_CONFIG); + add_id_data(ID_SPACE.ID_SPACE_CONFIG, item.id, item); + } + + foreach (var item in character_class_config_array) + { + add_id_index(ID_SPACE.ID_SPACE_CONFIG, item.id, DATA_TYPE.DT_CHARRACTER_CLASS_CONFIG); + add_id_data(ID_SPACE.ID_SPACE_CONFIG, item.id, item); + } + + foreach (var item in param_adjust_config_array) + { + add_id_index(ID_SPACE.ID_SPACE_CONFIG, item.id, DATA_TYPE.DT_PARAM_ADJUST_CONFIG); + add_id_data(ID_SPACE.ID_SPACE_CONFIG, item.id, item); + } foreach (var item in player_action_info_config_array) { add_id_index(ID_SPACE.ID_SPACE_CONFIG, item.id, DATA_TYPE.DT_PLAYER_ACTION_INFO_CONFIG); add_id_data(ID_SPACE.ID_SPACE_CONFIG, item.id, item); } + + foreach (var item in player_levelexp_config_array) + { + add_id_index(ID_SPACE.ID_SPACE_CONFIG, item.id, DATA_TYPE.DT_PLAYER_LEVELEXP_CONFIG); + add_id_data(ID_SPACE.ID_SPACE_CONFIG, item.id, item); + } + + foreach (var item in player_secondlevel_config_array) + { + add_id_index(ID_SPACE.ID_SPACE_CONFIG, item.id, DATA_TYPE.DT_PLAYER_SECONDLEVEL_CONFIG); + add_id_data(ID_SPACE.ID_SPACE_CONFIG, item.id, item); + } + + // Additional Essence Types + foreach (var item in taskdice_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_TASKDICE_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in tasknormalmatter_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_TASKNORMALMATTER_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in mine_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_MINE_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in mine_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_MINE_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Fashion Types + foreach (var item in fashion_major_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_FASHION_MAJOR_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in fashion_sub_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_FASHION_SUB_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in fashion_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_FASHION_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Face Ticket Types + foreach (var item in faceticket_major_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_FACETICKET_MAJOR_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in faceticket_sub_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_FACETICKET_SUB_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in faceticket_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_FACETICKET_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Face Pill Types + foreach (var item in facepill_major_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_FACEPILL_MAJOR_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in facepill_sub_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_FACEPILL_SUB_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in facepill_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_FACEPILL_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Suite and Generator Types + foreach (var item in suite_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_SUITE_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in gm_generator_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_GM_GENERATOR_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in gm_generator_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_GM_GENERATOR_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Pet Types + foreach (var item in pet_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_PET_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in pet_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_PET_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in pet_egg_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_PET_EGG_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in pet_food_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_PET_FOOD_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in pet_faceticket_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_PET_FACETICKET_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Special Items + foreach (var item in fireworks_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_FIREWORKS_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in war_tankcallin_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_WAR_TANKCALLIN_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in skillmatter_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_SKILLMATTER_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in refine_ticket_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_REFINE_TICKET_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in destroying_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_DESTROYING_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in bible_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_BIBLE_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in speaker_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_SPEAKER_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in autohp_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_AUTOHP_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in automp_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_AUTOMP_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in double_exp_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_DOUBLE_EXP_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in transmitscroll_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_TRANSMITSCROLL_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in dye_ticket_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_DYE_TICKET_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Goblin Types + foreach (var item in goblin_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_GOBLIN_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in goblin_equip_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_GOBLIN_EQUIP_TYPE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in goblin_equip_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_GOBLIN_EQUIP_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in goblin_exppill_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_GOBLIN_EXPPILL_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + foreach (var item in sell_certificate_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_ESSENCE, item.id, DATA_TYPE.DT_SELL_CERTIFICATE_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_ESSENCE, item.id, item); + } + + // Talk Process + foreach (var item in talk_proc_array) + { + add_id_index(ID_SPACE.ID_SPACE_TALK, item.id_talk, DATA_TYPE.DT_TALK_PROC); + add_id_data(ID_SPACE.ID_SPACE_TALK, item.id_talk, item); + } + + // Face Types + foreach (var item in face_texture_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_FACE, item.id, DATA_TYPE.DT_FACE_TEXTURE_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_FACE, item.id, item); + } + + foreach (var item in face_shape_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_FACE, item.id, DATA_TYPE.DT_FACE_SHAPE_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_FACE, item.id, item); + } + + // foreach (var item in face_emotion_type_array) + // { + // add_id_index(ID_SPACE.ID_SPACE_FACE, item.id, DATA_TYPE.DT_FACE_EMOTION_TYPE); + // add_id_data(ID_SPACE.ID_SPACE_FACE, item.id, item); + // } + + foreach (var item in face_expression_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_FACE, item.id, DATA_TYPE.DT_FACE_EXPRESSION_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_FACE, item.id, item); + } + + foreach (var item in face_hair_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_FACE, item.id, DATA_TYPE.DT_FACE_HAIR_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_FACE, item.id, item); + } + + foreach (var item in face_moustache_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_FACE, item.id, DATA_TYPE.DT_FACE_MOUSTACHE_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_FACE, item.id, item); + } + + foreach (var item in colorpicker_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_FACE, item.id, DATA_TYPE.DT_COLORPICKER_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_FACE, item.id, item); + } + + foreach (var item in customizedata_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_FACE, item.id, DATA_TYPE.DT_CUSTOMIZEDATA_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_FACE, item.id, item); + } + + foreach (var item in face_faling_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_FACE, item.id, DATA_TYPE.DT_FACE_FALING_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_FACE, item.id, item); + } + + // Recipe Types + foreach (var item in recipe_major_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_RECIPE, item.id, DATA_TYPE.DT_RECIPE_MAJOR_TYPE); + add_id_data(ID_SPACE.ID_SPACE_RECIPE, item.id, item); + } + + foreach (var item in recipe_sub_type_array) + { + add_id_index(ID_SPACE.ID_SPACE_RECIPE, item.id, DATA_TYPE.DT_RECIPE_SUB_TYPE); + add_id_data(ID_SPACE.ID_SPACE_RECIPE, item.id, item); + } + + foreach (var item in recipe_essence_array) + { + add_id_index(ID_SPACE.ID_SPACE_RECIPE, item.id, DATA_TYPE.DT_RECIPE_ESSENCE); + add_id_data(ID_SPACE.ID_SPACE_RECIPE, item.id, item); + } } public void SaveDataToTextFile() @@ -682,6 +1411,18 @@ namespace ModelRenderer.Scripts.GameData config_id_data_type_map[id] = type; break; + case ID_SPACE.ID_SPACE_TALK: + talk_id_data_type_map[id] = type; + break; + + case ID_SPACE.ID_SPACE_FACE: + face_id_data_type_map[id] = type; + break; + + case ID_SPACE.ID_SPACE_RECIPE: + recipe_id_data_type_map[id] = type; + break; + default: break; } @@ -700,6 +1441,18 @@ namespace ModelRenderer.Scripts.GameData id = config_index_id_map[index]; dataType = config_id_data_type_map[id]; break; + case ID_SPACE.ID_SPACE_TALK: + id = talk_index_id_map[index]; + dataType = talk_id_data_type_map[id]; + break; + case ID_SPACE.ID_SPACE_FACE: + id = face_index_id_map[index]; + dataType = face_id_data_type_map[id]; + break; + case ID_SPACE.ID_SPACE_RECIPE: + id = recipe_index_id_map[index]; + dataType = recipe_id_data_type_map[id]; + break; default: break; @@ -721,6 +1474,21 @@ namespace ModelRenderer.Scripts.GameData config_index_id_map[config_index_id_map.Count] = id; break; + case ID_SPACE.ID_SPACE_TALK: + talk_id_data_map[id] = data; + talk_index_id_map[talk_index_id_map.Count] = id; + break; + + case ID_SPACE.ID_SPACE_FACE: + face_id_data_map[id] = data; + face_index_id_map[face_index_id_map.Count] = id; + break; + + case ID_SPACE.ID_SPACE_RECIPE: + recipe_id_data_map[id] = data; + recipe_index_id_map[recipe_index_id_map.Count] = id; + break; + default: break; } @@ -734,21 +1502,18 @@ namespace ModelRenderer.Scripts.GameData case ID_SPACE.ID_SPACE_ESSENCE: return essence_id_data_type_map.Count; - // case ID_SPACE.ID_SPACE_ADDON: - // return addon_id_data_type_map.Count; - - // case ID_SPACE.ID_SPACE_TALK: - // return talk_id_index_map.Count; - - // case ID_SPACE.ID_SPACE_FACE: - // return face_id_index_map.Count; - - // case ID_SPACE.ID_SPACE_RECIPE: - // return recipe_id_index_map.Count; - case ID_SPACE.ID_SPACE_CONFIG: return config_id_data_type_map.Count; + case ID_SPACE.ID_SPACE_TALK: + return talk_id_data_type_map.Count; + + case ID_SPACE.ID_SPACE_FACE: + return face_id_data_type_map.Count; + + case ID_SPACE.ID_SPACE_RECIPE: + return recipe_id_data_type_map.Count; + default: return 0; } @@ -766,11 +1531,33 @@ namespace ModelRenderer.Scripts.GameData break; case ID_SPACE.ID_SPACE_CONFIG: - if (config_id_data_type_map.TryGetValue(id, out DATA_TYPE configType)) - { - return configType; - } + if (config_id_data_type_map.TryGetValue(id, out DATA_TYPE configType)) + { + return configType; + } break; + + case ID_SPACE.ID_SPACE_TALK: + if (talk_id_data_type_map.TryGetValue(id, out DATA_TYPE talkType)) + { + return talkType; + } + break; + + case ID_SPACE.ID_SPACE_FACE: + if (face_id_data_type_map.TryGetValue(id, out DATA_TYPE faceType)) + { + return faceType; + } + break; + + case ID_SPACE.ID_SPACE_RECIPE: + if (recipe_id_data_type_map.TryGetValue(id, out DATA_TYPE recipeType)) + { + return recipeType; + } + break; + default: break; } @@ -783,21 +1570,41 @@ namespace ModelRenderer.Scripts.GameData switch (idspace) { case ID_SPACE.ID_SPACE_ESSENCE: - if (essence_id_data_map.TryGetValue(id, out data)) - { - dataType = essence_id_data_type_map[id]; - return data; - } - break; - + if (essence_id_data_map.TryGetValue(id, out data)) + { + dataType = essence_id_data_type_map[id]; + return data; + } + break; case ID_SPACE.ID_SPACE_CONFIG: - if (config_id_data_map.TryGetValue(id, out data)) - { - dataType = config_id_data_type_map[id]; - return data; - } - break; + if (config_id_data_map.TryGetValue(id, out data)) + { + dataType = config_id_data_type_map[id]; + return data; + } + break; + + case ID_SPACE.ID_SPACE_TALK: + if (talk_id_data_map.TryGetValue(id, out data)) + { + return data; + } + break; + + case ID_SPACE.ID_SPACE_FACE: + if (face_id_data_map.TryGetValue(id, out data)) + { + return data; + } + break; + + case ID_SPACE.ID_SPACE_RECIPE: + if (recipe_id_data_map.TryGetValue(id, out data)) + { + return data; + } + break; default: return null; diff --git a/Assets/PerfectWorld/Scripts/Managers/EC_Inventory.cs b/Assets/PerfectWorld/Scripts/Managers/EC_Inventory.cs index 1597f99bbb..4f8844f226 100644 --- a/Assets/PerfectWorld/Scripts/Managers/EC_Inventory.cs +++ b/Assets/PerfectWorld/Scripts/Managers/EC_Inventory.cs @@ -11,6 +11,11 @@ namespace PerfectWorld.Scripts.Managers private static readonly Dictionary> _itemsByPackage = new Dictionary>(); private const int MaxContentHexToLog = 64; + // Package constants to mirror legacy C++ names + public const byte PACK_INVENTORY = 0; + public const byte PACK_EQUIPMENT = 1; + public const byte PACK_TASKINVENTORY = 2; + private static string GetPackageName(byte pkg) { switch (pkg) @@ -31,8 +36,244 @@ namespace PerfectWorld.Scripts.Managers return hex; } + public static InventoryItemData GetItem(int iSlot, bool bRemove) + { + // Backward-compatible overload defaulting to inventory package + return GetItem(PACK_INVENTORY, iSlot, bRemove); + } + public static InventoryItemData GetItem(byte byPackage, int slot, bool remove) + { + if (!_itemsByPackage.TryGetValue(byPackage, out var slots) || slot < 0) + return null; + if (!slots.TryGetValue(slot, out var item)) + return null; + if (remove) + slots.Remove(slot); + return item; + } + private static Dictionary EnsureSlots(byte byPackage) + { + if (!_itemsByPackage.TryGetValue(byPackage, out var slots) || slots == null) + { + slots = new Dictionary(); + _itemsByPackage[byPackage] = slots; + } + return slots; + } + + public static void Resize(byte byPackage, int newSize) + { + _packSizeByPackage[byPackage] = Math.Max(0, newSize); + EnsureSlots(byPackage); + } + + public static InventoryItemData PutItem(byte byPackage, int slot, InventoryItemData item) + { + var slots = EnsureSlots(byPackage); + if (slot < 0) return null; + slots.TryGetValue(slot, out var oldItem); + slots[slot] = item; + return oldItem; + } + + public static void SetItem(byte byPackage, int slot, InventoryItemData item) + { + var slots = EnsureSlots(byPackage); + if (slot < 0) return; + slots[slot] = item; + } + + public static void ExchangeItem(byte byPackage, int slot1, int slot2) + { + if (slot1 == slot2) return; + var slots = EnsureSlots(byPackage); + slots.TryGetValue(slot1, out var i1); + slots.TryGetValue(slot2, out var i2); + if (i1 != null) slots[slot2] = i1; else slots.Remove(slot2); + if (i2 != null) slots[slot1] = i2; else slots.Remove(slot1); + } + + public static bool RemoveItem(byte byPackage, int slot, int amount) + { + var slots = EnsureSlots(byPackage); + if (!slots.TryGetValue(slot, out var item) || item == null) + return true; + int newCount = Math.Max(0, item.Count - Math.Max(0, amount)); + item.Count = newCount; + if (newCount <= 0) + slots.Remove(slot); + else + slots[slot] = item; + return true; + } + + public static void RemoveAllItems(byte byPackage) + { + var slots = EnsureSlots(byPackage); + slots.Clear(); + } + + public static int SearchEmpty(byte byPackage) + { + int size = _packSizeByPackage.TryGetValue(byPackage, out var s) ? s : 0; + var slots = EnsureSlots(byPackage); + for (int i = 0; i < size; i++) + if (!slots.ContainsKey(i)) return i; + return -1; + } + + public static int GetEmptySlotNum(byte byPackage) + { + int size = _packSizeByPackage.TryGetValue(byPackage, out var s) ? s : 0; + int occupied = EnsureSlots(byPackage).Count; + int empty = Math.Max(0, size - occupied); + return empty; + } + + public static int FindItem(byte byPackage, int templateId, int baseIdx = 0) + { + var slots = EnsureSlots(byPackage); + int size = _packSizeByPackage.TryGetValue(byPackage, out var s) ? s : 0; + if (baseIdx < 0) baseIdx = 0; + for (int i = baseIdx; i < size; i++) + { + if (slots.TryGetValue(i, out var it) && it != null && it.TemplateId == templateId) + return i; + } + return -1; + } + + public static int GetItemTotalNum(byte byPackage, int templateId) + { + int total = 0; + foreach (var kv in EnsureSlots(byPackage)) + { + var it = kv.Value; + if (it != null && it.TemplateId == templateId) + total += Math.Max(0, it.Count); + } + return total; + } + + public static int GetItemCanPileCount(byte byPackage, int templateId) + { + int ret = 0; + foreach (var kv in EnsureSlots(byPackage)) + { + var it = kv.Value; + if (it != null && it.TemplateId == templateId) + { + int pileLimit = Math.Max(1, EC_IvtrItem.GetPileLimit(templateId)); + ret += Math.Max(0, pileLimit - Math.Max(0, it.Count)); + } + } + return ret; + } + + public static int CanAddItem(byte byPackage, int templateId, int amount, bool tryPile) + { + int firstEmpty = -1; + int pileLimit = Math.Max(1, EC_IvtrItem.GetPileLimit(templateId)); + int size = _packSizeByPackage.TryGetValue(byPackage, out var s) ? s : 0; + var slots = EnsureSlots(byPackage); + for (int i = 0; i < size; i++) + { + if (!slots.TryGetValue(i, out var it) || it == null) + { + if (!tryPile) return i; + if (firstEmpty < 0) firstEmpty = i; + } + else if (it.TemplateId == templateId && it.Count + amount <= pileLimit) + { + return i; + } + } + return firstEmpty; + } + + public static bool MergeItem(byte byPackage, int templateId, int expireDate, int amount, out int lastSlot, out int slotAmount) + { + lastSlot = -1; + slotAmount = 0; + var slots = EnsureSlots(byPackage); + int pileLimit = Math.Max(1, EC_IvtrItem.GetPileLimit(templateId)); + int firstEmpty = -1; + int size = _packSizeByPackage.TryGetValue(byPackage, out var s) ? s : 0; + for (int i = 0; i < size && amount > 0; i++) + { + slots.TryGetValue(i, out var slotItem); + if (slotItem == null) + { + if (firstEmpty < 0) firstEmpty = i; + continue; + } + if (slotItem.TemplateId != templateId) continue; + int canAdd = Math.Max(0, pileLimit - Math.Max(0, slotItem.Count)); + if (canAdd <= 0) continue; + int add = Math.Min(canAdd, amount); + slotItem.Count += add; + amount -= add; + lastSlot = i; + slotAmount = slotItem.Count; + } + if (amount <= 0) return true; + if (firstEmpty < 0) return false; + var newItem = new InventoryItemData + { + Package = byPackage, + Slot = firstEmpty, + TemplateId = templateId, + ExpireDate = expireDate, + State = 0, + Count = amount, + Crc = 0, + Content = null + }; + slots[firstEmpty] = newItem; + lastSlot = firstEmpty; + slotAmount = amount; + return true; + } + + public static bool MoveItem(byte byPackage, int src, int dest, int amount) + { + if (src == dest) return false; + if (amount <= 0) return false; + int size = _packSizeByPackage.TryGetValue(byPackage, out var s) ? s : 0; + if (src < 0 || src >= size || dest < 0 || dest >= size) return false; + var slots = EnsureSlots(byPackage); + if (!slots.TryGetValue(src, out var srcItem) || srcItem == null) return false; + slots.TryGetValue(dest, out var dstItem); + if (dstItem == null) + { + var clone = new InventoryItemData + { + Package = byPackage, + Slot = dest, + TemplateId = srcItem.TemplateId, + ExpireDate = srcItem.ExpireDate, + State = srcItem.State, + Count = amount, + Crc = srcItem.Crc, + Content = srcItem.Content != null ? (byte[])srcItem.Content.Clone() : null + }; + slots[dest] = clone; + } + else + { + if (dstItem.TemplateId != srcItem.TemplateId) return false; + int pileLimit = Math.Max(1, EC_IvtrItem.GetPileLimit(dstItem.TemplateId)); + int canAdd = Math.Max(0, pileLimit - Math.Max(0, dstItem.Count)); + int add = Math.Min(canAdd, amount); + if (add <= 0) return false; + dstItem.Count += add; + amount = add; + } + RemoveItem(byPackage, src, amount); + return true; + } public static void UpdatePack(byte byPackage, int ivtrSize, IEnumerable items) { _packSizeByPackage[byPackage] = ivtrSize; @@ -56,6 +297,25 @@ namespace PerfectWorld.Scripts.Managers LogPackInternal(byPackage, ivtrSize, slots); } + public static bool ResetWithDetailData(byte byPackage, int ivtrSize, byte[] data) + { + // Uses EC_IvtrItem.TryParseInventoryDetail format + if (data == null) + { + Resize(byPackage, ivtrSize); + RemoveAllItems(byPackage); + return true; + } + if (!EC_IvtrItem.TryParseInventoryDetail(data, out var pkg, out var size, out var items)) + return false; + // Prefer header values when valid + byte finalPkg = byPackage; + if (pkg == byPackage) finalPkg = pkg; + int finalSize = ivtrSize > 0 ? ivtrSize : size; + UpdatePack(finalPkg, finalSize, items); + return true; + } + private static void LogPackInternal(byte byPackage, int ivtrSize, IReadOnlyDictionary slots) { diff --git a/Assets/PerfectWorld/Scripts/Managers/EC_InventoryUI.cs b/Assets/PerfectWorld/Scripts/Managers/EC_InventoryUI.cs index 78b2ced562..adc2a2b417 100644 --- a/Assets/PerfectWorld/Scripts/Managers/EC_InventoryUI.cs +++ b/Assets/PerfectWorld/Scripts/Managers/EC_InventoryUI.cs @@ -1,238 +1,421 @@ +using System; using System.Collections.Generic; -using System.Linq; using UnityEngine; using UnityEngine.UI; +using System.Reflection; +using BrewMonster.Network; +using BrewMonster; +using ModelRenderer.Scripts.GameData; namespace PerfectWorld.Scripts.Managers { public class EC_InventoryUI : MonoBehaviour { - [Header("UI References")] - [SerializeField] private GridLayoutGroup gridLayoutGroup; - [SerializeField] private GameObject inventoryButtonPrefab; - [SerializeField] private Transform inventoryContainer; - + [Header("Pack Buttons (assign in Inspector)")] + [SerializeField] private List