diff --git a/BoneAnimatedModel.cpp b/BoneAnimatedModel.cpp index d6769e3..a8863d0 100644 --- a/BoneAnimatedModel.cpp +++ b/BoneAnimatedModel.cpp @@ -251,7 +251,7 @@ namespace ZL } std::getline(f, tempLine);//=== Vertex Weights === - std::vector> localVerticesBoneWeight; + std::vector> localVerticesBoneWeight; localVerticesBoneWeight.resize(numberVertices); for (int i = 0; i < numberVertices; i++) @@ -268,9 +268,9 @@ namespace ZL throw std::runtime_error("No number found in the input string."); } - if (boneCount > 3) + if (boneCount > MAX_BONE_COUNT) { - throw std::runtime_error("more than 3 bones"); + throw std::runtime_error("more than 5 bones"); } float sumWeights = 0; @@ -464,6 +464,7 @@ namespace ZL //std::vector skinningMatrixForEachBone; skinningMatrixForEachBone.resize(currentBones.size()); + for (int i = 0; i < currentBones.size(); i++) { currentBones[i].boneStartWorld.v[0] = oneFrameBones[i].boneStartWorld.v[0] + t * (nextFrameBones[i].boneStartWorld.v[0] - oneFrameBones[i].boneStartWorld.v[0]); @@ -472,8 +473,10 @@ namespace ZL Vector4f q1 = MatrixToQuat(oneFrameBones[i].boneMatrixWorld); Vector4f q2 = MatrixToQuat(nextFrameBones[i].boneMatrixWorld); + Vector4f q1_norm = q1.normalized(); + Vector4f q2_norm = q2.normalized(); - Vector4f result = slerp(q1, q2, t); + Vector4f result = slerp(q1_norm, q2_norm, t); currentBones[i].boneMatrixWorld = QuatToMatrix(result); @@ -486,7 +489,20 @@ namespace ZL skinningMatrixForEachBone[i] = MultMatrixMatrix(currentBoneMatrixWorld4, inverstedStartBoneMatrixWorld4); } + + + /* + for (int i = 0; i < currentBones.size(); i++) + { + currentBones[i].boneStartWorld = oneFrameBones[i].boneStartWorld; + currentBones[i].boneMatrixWorld = oneFrameBones[i].boneMatrixWorld; + Matrix4f currentBoneMatrixWorld4 = MakeMatrix4x4(currentBones[i].boneMatrixWorld, currentBones[i].boneStartWorld); + Matrix4f startBoneMatrixWorld4 = MakeMatrix4x4(animations[0].keyFrames[0].bones[i].boneMatrixWorld, animations[0].keyFrames[0].bones[i].boneStartWorld); + Matrix4f inverstedStartBoneMatrixWorld4 = InverseMatrix(startBoneMatrixWorld4); + skinningMatrixForEachBone[i] = MultMatrixMatrix(currentBoneMatrixWorld4, inverstedStartBoneMatrixWorld4); + } + */ for (int i = 0; i < mesh.PositionData.size(); i++) { Vector4f originalPos = { @@ -495,17 +511,30 @@ namespace ZL startMesh.PositionData[i].v[2], 1.0}; Vector4f finalPos = Vector4f{0.f, 0.f, 0.f, 0.f}; + + bool vMoved = false; //Vector3f finalPos = Vector3f{ 0.f, 0.f, 0.f }; - for (int j = 0; j < 3; j++) + for (int j = 0; j < MAX_BONE_COUNT; j++) { if (verticesBoneWeight[i][j].weight != 0) { + vMoved = true; //finalPos = finalPos + MultVectorMatrix(originalPos, skinningMatrixForEachBone[verticesBoneWeight[i][j].boneIndex]) * verticesBoneWeight[i][j].weight; finalPos = finalPos + MultMatrixVector(skinningMatrixForEachBone[verticesBoneWeight[i][j].boneIndex], originalPos) * verticesBoneWeight[i][j].weight; } } + if (abs(finalPos.v[0] - originalPos.v[0]) > 1 || abs(finalPos.v[1] - originalPos.v[1]) > 1 || abs(finalPos.v[2] - originalPos.v[2]) > 1) + { + std::cout << "Hello!" << std::endl; + } + + if (!vMoved) + { + std::cout << "Hello!" << std::endl; + } + mesh.PositionData[i].v[0] = finalPos.v[0]; mesh.PositionData[i].v[1] = finalPos.v[1]; mesh.PositionData[i].v[2] = finalPos.v[2]; diff --git a/BoneAnimatedModel.h b/BoneAnimatedModel.h index d97734c..15eaa6c 100644 --- a/BoneAnimatedModel.h +++ b/BoneAnimatedModel.h @@ -6,6 +6,7 @@ namespace ZL { + constexpr int MAX_BONE_COUNT = 6; struct Bone { Vector3f boneStartWorld; @@ -39,7 +40,9 @@ namespace ZL { VertexDataStruct mesh; VertexDataStruct startMesh; - std::vector> verticesBoneWeight; + std::vector> verticesBoneWeight; + + Matrix4f armatureMatrix; std::vector startBones; std::vector currentBones; diff --git a/Math.cpp b/Math.cpp index 8d5ad9e..c492597 100755 --- a/Math.cpp +++ b/Math.cpp @@ -247,68 +247,42 @@ namespace ZL { Vector4f MatrixToQuat(const Matrix3f& m) { Vector4f r; - float f; + float trace = m.m[0] + m.m[4] + m.m[8]; - - if (m.m[0] >= m.m[4] && m.m[0] >= m.m[8]) + if (trace > 0) { - f = sqrtf(1.0 + m.m[0] - m.m[4] - m.m[8]); - if (f != 0) - { - r.v[3] = (m.m[5] - m.m[7]) / (f + f); - r.v[0] = f / 2; - r.v[1] = (m.m[3] + m.m[1]) / (f + f); - r.v[2] = (m.m[6] + m.m[2]) / (f + f); - } - else - { - r.v[3] = 1; - r.v[2] = 0; - r.v[1] = 0; - r.v[0] = 0; - } + float s = 0.5f / sqrtf(trace + 1.0f); + r.v[3] = 0.25f / s; + r.v[0] = (m.m[5] - m.m[7]) * s; + r.v[1] = (m.m[6] - m.m[2]) * s; + r.v[2] = (m.m[1] - m.m[3]) * s; + } + else if (m.m[0] > m.m[4] && m.m[0] > m.m[8]) + { + float s = 2.0f * sqrtf(1.0f + m.m[0] - m.m[4] - m.m[8]); + r.v[3] = (m.m[5] - m.m[7]) / s; + r.v[0] = 0.25f * s; + r.v[1] = (m.m[1] + m.m[3]) / s; + r.v[2] = (m.m[6] + m.m[2]) / s; + } + else if (m.m[4] > m.m[8]) + { + float s = 2.0f * sqrtf(1.0f + m.m[4] - m.m[0] - m.m[8]); + r.v[3] = (m.m[6] - m.m[2]) / s; + r.v[0] = (m.m[1] + m.m[3]) / s; + r.v[1] = 0.25f * s; + r.v[2] = (m.m[5] + m.m[7]) / s; + } + else + { + float s = 2.0f * sqrtf(1.0f + m.m[8] - m.m[0] - m.m[4]); + r.v[3] = (m.m[1] - m.m[3]) / s; + r.v[0] = (m.m[6] + m.m[2]) / s; + r.v[1] = (m.m[5] + m.m[7]) / s; + r.v[2] = 0.25f * s; } - if (m.m[4] >= m.m[0] && m.m[4] >= m.m[8]) - { - f = sqrtf(1 + m.m[4] - m.m[0] - m.m[8]); - if (f != 0) - { - r.v[3] = (m.m[6] - m.m[2]) / (f + f); - r.v[1] = f / 2; - r.v[0] = (m.m[1] + m.m[3]) / (f + f); - r.v[2] = (m.m[7] + m.m[5]) / (f + f); - } - else - { - r.v[3] = 1; - r.v[2] = 0; - r.v[1] = 0; - r.v[0] = 0; - } - } - - if (m.m[8] >= m.m[4] && m.m[8] >= m.m[0]) - { - f = sqrtf(1 + m.m[8] - m.m[2]); - if (f != 0) - { - r.v[3] = (m.m[1] - m.m[3]) / (f + f); - r.v[2] = f / 2; - r.v[1] = (m.m[5] + m.m[7]) / (f + f); - r.v[0] = (m.m[6] + m.m[2]) / (f + f); - } - else - { - r.v[3] = 1; - r.v[2] = 0; - r.v[1] = 0; - r.v[0] = 0; - } - } - - return r; - + return r.normalized(); } Vector4f QuatFromRotateAroundX(float angle) @@ -681,65 +655,51 @@ namespace ZL { return r; } - Vector4f slerp(const Vector4f& q1, const Vector4f& q2, double t) + Vector4f slerp(const Vector4f& q1, const Vector4f& q2, float t) { - // ��������� ������� ���� ����� ������������� - double cosTheta = q1.dot(q2); + const float epsilon = 1e-6f; - // ���� cosTheta < 0, ������ ���� ������� �����������, ����� ������� ���������� ���� - Vector4f q2Adjusted = q2; - if (cosTheta < 0.0) { - //q2Adjusted = { -q2.w, -q2.x, -q2.y, -q2.z }; - q2Adjusted.v[0] = -q2.v[0]; - q2Adjusted.v[1] = -q2.v[1]; - q2Adjusted.v[2] = -q2.v[2]; - q2Adjusted.v[3] = -q2.v[3]; + // Нормализация входных кватернионов + Vector4f q1_norm = q1.normalized(); + Vector4f q2_norm = q2.normalized(); + + float cosTheta = q1_norm.dot(q2_norm); + + // Если q1 и q2 близки к противоположным направлениям, корректируем q2 + Vector4f q2_adjusted = q2_norm; + if (cosTheta < 0.0f) { + q2_adjusted.v[0] = -q2_adjusted.v[0]; + q2_adjusted.v[1] = -q2_adjusted.v[1]; + q2_adjusted.v[2] = -q2_adjusted.v[2]; + q2_adjusted.v[3] = -q2_adjusted.v[3]; cosTheta = -cosTheta; } - // ���� ����������� ������, ���������� �������� ������������ - const double epsilon = 1e-6; - if (cosTheta > 1.0 - epsilon) { - + // Если кватернионы близки, используем линейную интерполяцию + if (cosTheta > 1.0f - epsilon) { Vector4f result; - result.v[0] = q1.v[0] + t * (q2Adjusted.v[0] - q1.v[0]); - result.v[1] = q1.v[1] + t * (q2Adjusted.v[1] - q1.v[1]); - result.v[2] = q1.v[2] + t * (q2Adjusted.v[2] - q1.v[2]); - result.v[3] = q1.v[3] + t * (q2Adjusted.v[3] - q1.v[3]); - - /*Quaternion result = { - q1.w + t * (q2Adjusted.w - q1.w), - q1.x + t * (q2Adjusted.x - q1.x), - q1.y + t * (q2Adjusted.y - q1.y), - q1.z + t * (q2Adjusted.z - q1.z) - };*/ + result.v[0] = q1_norm.v[0] + t * (q2_adjusted.v[0] - q1_norm.v[0]); + result.v[1] = q1_norm.v[1] + t * (q2_adjusted.v[1] - q1_norm.v[1]); + result.v[2] = q1_norm.v[2] + t * (q2_adjusted.v[2] - q1_norm.v[2]); + result.v[3] = q1_norm.v[3] + t * (q2_adjusted.v[3] - q1_norm.v[3]); + return result.normalized(); } - // ��������� ���� theta - double theta = std::acos(cosTheta); - double sinTheta = std::sin(theta); + // Иначе используем сферическую интерполяцию + float theta = std::acos(cosTheta); + float sinTheta = std::sin(theta); - // ��������� ������������ ��� ������������ - double coeff1 = std::sin((1.0 - t) * theta) / sinTheta; - double coeff2 = std::sin(t * theta) / sinTheta; + float coeff1 = std::sin((1.0f - t) * theta) / sinTheta; + float coeff2 = std::sin(t * theta) / sinTheta; - // ������������� - /* - Quaternion result = { - coeff1 * q1.w + coeff2 * q2Adjusted.w, - coeff1 * q1.x + coeff2 * q2Adjusted.x, - coeff1 * q1.y + coeff2 * q2Adjusted.y, - coeff1 * q1.z + coeff2 * q2Adjusted.z - };*/ Vector4f result; - result.v[0] = coeff1 * q1.v[0] + coeff2 * q2Adjusted.v[0]; - result.v[1] = coeff1 * q1.v[1] + coeff2 * q2Adjusted.v[1]; - result.v[2] = coeff1 * q1.v[2] + coeff2 * q2Adjusted.v[2]; - result.v[3] = coeff1 * q1.v[3] + coeff2 * q2Adjusted.v[3]; - + result.v[0] = coeff1 * q1_norm.v[0] + coeff2 * q2_adjusted.v[0]; + result.v[1] = coeff1 * q1_norm.v[1] + coeff2 * q2_adjusted.v[1]; + result.v[2] = coeff1 * q1_norm.v[2] + coeff2 * q2_adjusted.v[2]; + result.v[3] = coeff1 * q1_norm.v[3] + coeff2 * q2_adjusted.v[3]; return result.normalized(); } diff --git a/Math.h b/Math.h index 329ee9d..bba9774 100755 --- a/Math.h +++ b/Math.h @@ -100,7 +100,7 @@ namespace ZL { Vector4f MultVectorMatrix(Vector4f v, Matrix4f mt); Vector4f MultMatrixVector(Matrix4f mt, Vector4f v); - Vector4f slerp(const Vector4f& q1, const Vector4f& q2, double t); + Vector4f slerp(const Vector4f& q1, const Vector4f& q2, float t); Matrix3f InverseMatrix(const Matrix3f& m); Matrix4f InverseMatrix(const Matrix4f& m); Matrix3f MultMatrixMatrix(const Matrix3f& m1, const Matrix3f& m2); diff --git a/main.cpp b/main.cpp index cbfa8f4..bf98cdb 100755 --- a/main.cpp +++ b/main.cpp @@ -144,6 +144,34 @@ namespace ZL glViewport(0, 0, Env::width, Env::height); + renderer.shaderManager.PushShader(colorShaderName); + renderer.RenderUniform1i(textureUniformName, 0); + renderer.EnableVertexAttribArray(vPositionName); + + renderer.PushPerspectiveProjectionMatrix(1.0 / 1.5, static_cast(Env::width) / static_cast(Env::height), 50, 10000); + renderer.PushMatrix(); + + renderer.LoadIdentity(); + + renderer.TranslateMatrix({ 0,0, -100 * Env::zoom }); + + float t = 0.3; + + renderer.RotateMatrix(QuatFromRotateAroundX(t * M_PI / 2.0)); + + GameObjects::bxMutable.AssignFrom(GameObjects::bx.mesh); + GameObjects::bxMutable.RefreshVBO(); + renderer.DrawVertexRenderStruct(GameObjects::bxMutable); + + + renderer.PopMatrix(); + renderer.PopProjectionMatrix(); + + renderer.DisableVertexAttribArray(vPositionName); + + renderer.shaderManager.PopShader(); +#if 0 + renderer.shaderManager.PushShader(defaultShaderName); renderer.RenderUniform1i(textureUniformName, 0); @@ -217,6 +245,7 @@ namespace ZL renderer.shaderManager.PopShader(); +#endif CheckGlError(); } @@ -318,7 +347,8 @@ namespace ZL renderer.shaderManager.AddShaderFromFiles("defaultColor", "./defaultColor.vertex", "./defaultColor.fragment"); std::cout << "Hello test 2x" << std::endl; - GameObjects::bx.LoadFromFile("mesh_armature_and_animation_data.txt"); + //GameObjects::bx.LoadFromFile("mesh_armature_and_animation_data.txt"); + GameObjects::bx.LoadFromFile("via004.txt"); std::cout << "Hello test 3" << std::endl; @@ -337,6 +367,7 @@ namespace ZL GameObjects::testObjMeshMutable.data = GameObjects::testObjMesh; GameObjects::testObjMeshMutable.RefreshVBO(); + /* GameObjects::textMesh = LoadFromTextFile("./mesh001.txt"); GameObjects::coneMesh = LoadFromTextFile("./cone001.txt"); @@ -347,7 +378,7 @@ namespace ZL GameObjects::textMeshMutable.RefreshVBO(); GameObjects::coneMeshMutable.AssignFrom(GameObjects::coneMesh); GameObjects::coneMeshMutable.RefreshVBO(); - + */ ActiveObject ao1; @@ -425,7 +456,7 @@ namespace ZL static int x = 0; GameObjects::bx.Interpolate(x); - x = x + 2; + x = x + 3; } if (event.type == SDL_MOUSEWHEEL) { diff --git a/via004.txt b/via004.txt new file mode 100644 index 0000000..e612e43 --- /dev/null +++ b/via004.txt @@ -0,0 +1,17393 @@ +=== Armature Matrix === + + + + +=== Armature Bones: 3 +Bone: Bone + HEAD_LOCAL: + TAIL_LOCAL: + Length: 4.032267597310272 + + + + Parent: None + Children: ['Bone.001', 'Bone.002'] +Bone: Bone.001 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 4.806300542240752 + + + + Parent: Bone + Children: [] +Bone: Bone.002 + HEAD_LOCAL: + TAIL_LOCAL: + Length: 4.441302752064764 + + + + Parent: Bone + Children: [] +===Vertices: 2296 +Vertex 0: +Vertex 1: +Vertex 2: +Vertex 3: +Vertex 4: +Vertex 5: +Vertex 6: +Vertex 7: +Vertex 8: +Vertex 9: +Vertex 10: +Vertex 11: +Vertex 12: +Vertex 13: +Vertex 14: +Vertex 15: +Vertex 16: +Vertex 17: +Vertex 18: +Vertex 19: +Vertex 20: +Vertex 21: +Vertex 22: +Vertex 23: +Vertex 24: +Vertex 25: +Vertex 26: +Vertex 27: +Vertex 28: +Vertex 29: +Vertex 30: +Vertex 31: +Vertex 32: +Vertex 33: +Vertex 34: +Vertex 35: +Vertex 36: +Vertex 37: +Vertex 38: +Vertex 39: +Vertex 40: +Vertex 41: +Vertex 42: +Vertex 43: +Vertex 44: +Vertex 45: +Vertex 46: +Vertex 47: +Vertex 48: +Vertex 49: +Vertex 50: +Vertex 51: +Vertex 52: +Vertex 53: +Vertex 54: +Vertex 55: +Vertex 56: +Vertex 57: +Vertex 58: +Vertex 59: +Vertex 60: +Vertex 61: +Vertex 62: +Vertex 63: +Vertex 64: +Vertex 65: +Vertex 66: +Vertex 67: +Vertex 68: +Vertex 69: +Vertex 70: +Vertex 71: +Vertex 72: +Vertex 73: +Vertex 74: +Vertex 75: +Vertex 76: +Vertex 77: +Vertex 78: +Vertex 79: +Vertex 80: +Vertex 81: +Vertex 82: +Vertex 83: +Vertex 84: +Vertex 85: +Vertex 86: +Vertex 87: +Vertex 88: +Vertex 89: +Vertex 90: +Vertex 91: +Vertex 92: +Vertex 93: +Vertex 94: +Vertex 95: +Vertex 96: +Vertex 97: +Vertex 98: +Vertex 99: +Vertex 100: +Vertex 101: +Vertex 102: +Vertex 103: +Vertex 104: +Vertex 105: +Vertex 106: +Vertex 107: +Vertex 108: +Vertex 109: +Vertex 110: +Vertex 111: +Vertex 112: +Vertex 113: +Vertex 114: +Vertex 115: +Vertex 116: +Vertex 117: +Vertex 118: +Vertex 119: +Vertex 120: +Vertex 121: +Vertex 122: +Vertex 123: +Vertex 124: +Vertex 125: +Vertex 126: +Vertex 127: +Vertex 128: +Vertex 129: +Vertex 130: +Vertex 131: +Vertex 132: +Vertex 133: +Vertex 134: +Vertex 135: +Vertex 136: +Vertex 137: +Vertex 138: +Vertex 139: +Vertex 140: +Vertex 141: +Vertex 142: +Vertex 143: +Vertex 144: +Vertex 145: +Vertex 146: +Vertex 147: +Vertex 148: +Vertex 149: +Vertex 150: +Vertex 151: +Vertex 152: +Vertex 153: +Vertex 154: +Vertex 155: +Vertex 156: +Vertex 157: +Vertex 158: +Vertex 159: +Vertex 160: +Vertex 161: +Vertex 162: +Vertex 163: +Vertex 164: +Vertex 165: +Vertex 166: +Vertex 167: +Vertex 168: +Vertex 169: +Vertex 170: +Vertex 171: +Vertex 172: +Vertex 173: +Vertex 174: +Vertex 175: +Vertex 176: +Vertex 177: +Vertex 178: +Vertex 179: +Vertex 180: +Vertex 181: +Vertex 182: +Vertex 183: +Vertex 184: +Vertex 185: +Vertex 186: +Vertex 187: +Vertex 188: +Vertex 189: +Vertex 190: +Vertex 191: +Vertex 192: +Vertex 193: +Vertex 194: +Vertex 195: +Vertex 196: +Vertex 197: +Vertex 198: +Vertex 199: +Vertex 200: +Vertex 201: +Vertex 202: +Vertex 203: +Vertex 204: +Vertex 205: +Vertex 206: +Vertex 207: +Vertex 208: +Vertex 209: +Vertex 210: +Vertex 211: +Vertex 212: +Vertex 213: +Vertex 214: +Vertex 215: +Vertex 216: +Vertex 217: +Vertex 218: +Vertex 219: +Vertex 220: +Vertex 221: +Vertex 222: +Vertex 223: +Vertex 224: +Vertex 225: +Vertex 226: +Vertex 227: +Vertex 228: +Vertex 229: +Vertex 230: +Vertex 231: +Vertex 232: +Vertex 233: +Vertex 234: +Vertex 235: +Vertex 236: +Vertex 237: +Vertex 238: +Vertex 239: +Vertex 240: +Vertex 241: +Vertex 242: +Vertex 243: +Vertex 244: +Vertex 245: +Vertex 246: +Vertex 247: +Vertex 248: +Vertex 249: +Vertex 250: +Vertex 251: +Vertex 252: +Vertex 253: +Vertex 254: +Vertex 255: +Vertex 256: +Vertex 257: +Vertex 258: +Vertex 259: +Vertex 260: +Vertex 261: +Vertex 262: +Vertex 263: +Vertex 264: +Vertex 265: +Vertex 266: +Vertex 267: +Vertex 268: +Vertex 269: +Vertex 270: +Vertex 271: +Vertex 272: +Vertex 273: +Vertex 274: +Vertex 275: +Vertex 276: +Vertex 277: +Vertex 278: +Vertex 279: +Vertex 280: +Vertex 281: +Vertex 282: +Vertex 283: +Vertex 284: +Vertex 285: +Vertex 286: +Vertex 287: +Vertex 288: +Vertex 289: +Vertex 290: +Vertex 291: +Vertex 292: +Vertex 293: +Vertex 294: +Vertex 295: +Vertex 296: +Vertex 297: +Vertex 298: +Vertex 299: +Vertex 300: +Vertex 301: +Vertex 302: +Vertex 303: +Vertex 304: +Vertex 305: +Vertex 306: +Vertex 307: +Vertex 308: +Vertex 309: +Vertex 310: +Vertex 311: +Vertex 312: +Vertex 313: +Vertex 314: +Vertex 315: +Vertex 316: +Vertex 317: +Vertex 318: +Vertex 319: +Vertex 320: +Vertex 321: +Vertex 322: +Vertex 323: +Vertex 324: +Vertex 325: +Vertex 326: +Vertex 327: +Vertex 328: +Vertex 329: +Vertex 330: +Vertex 331: +Vertex 332: +Vertex 333: +Vertex 334: +Vertex 335: +Vertex 336: +Vertex 337: +Vertex 338: +Vertex 339: +Vertex 340: +Vertex 341: +Vertex 342: +Vertex 343: +Vertex 344: +Vertex 345: +Vertex 346: +Vertex 347: +Vertex 348: +Vertex 349: +Vertex 350: +Vertex 351: +Vertex 352: +Vertex 353: +Vertex 354: +Vertex 355: +Vertex 356: +Vertex 357: +Vertex 358: +Vertex 359: +Vertex 360: +Vertex 361: +Vertex 362: +Vertex 363: +Vertex 364: +Vertex 365: +Vertex 366: +Vertex 367: +Vertex 368: +Vertex 369: +Vertex 370: +Vertex 371: +Vertex 372: +Vertex 373: +Vertex 374: +Vertex 375: +Vertex 376: +Vertex 377: +Vertex 378: +Vertex 379: +Vertex 380: +Vertex 381: +Vertex 382: +Vertex 383: +Vertex 384: +Vertex 385: +Vertex 386: +Vertex 387: +Vertex 388: +Vertex 389: +Vertex 390: +Vertex 391: +Vertex 392: +Vertex 393: +Vertex 394: +Vertex 395: +Vertex 396: +Vertex 397: +Vertex 398: +Vertex 399: +Vertex 400: +Vertex 401: +Vertex 402: +Vertex 403: +Vertex 404: +Vertex 405: +Vertex 406: +Vertex 407: +Vertex 408: +Vertex 409: +Vertex 410: +Vertex 411: +Vertex 412: +Vertex 413: +Vertex 414: +Vertex 415: +Vertex 416: +Vertex 417: +Vertex 418: +Vertex 419: +Vertex 420: +Vertex 421: +Vertex 422: +Vertex 423: +Vertex 424: +Vertex 425: +Vertex 426: +Vertex 427: +Vertex 428: +Vertex 429: +Vertex 430: +Vertex 431: +Vertex 432: +Vertex 433: +Vertex 434: +Vertex 435: +Vertex 436: +Vertex 437: +Vertex 438: +Vertex 439: +Vertex 440: +Vertex 441: +Vertex 442: +Vertex 443: +Vertex 444: +Vertex 445: +Vertex 446: +Vertex 447: +Vertex 448: +Vertex 449: +Vertex 450: +Vertex 451: +Vertex 452: +Vertex 453: +Vertex 454: +Vertex 455: +Vertex 456: +Vertex 457: +Vertex 458: +Vertex 459: +Vertex 460: +Vertex 461: +Vertex 462: +Vertex 463: +Vertex 464: +Vertex 465: +Vertex 466: +Vertex 467: +Vertex 468: +Vertex 469: +Vertex 470: +Vertex 471: +Vertex 472: +Vertex 473: +Vertex 474: +Vertex 475: +Vertex 476: +Vertex 477: +Vertex 478: +Vertex 479: +Vertex 480: +Vertex 481: +Vertex 482: +Vertex 483: +Vertex 484: +Vertex 485: +Vertex 486: +Vertex 487: +Vertex 488: +Vertex 489: +Vertex 490: +Vertex 491: +Vertex 492: +Vertex 493: +Vertex 494: +Vertex 495: +Vertex 496: +Vertex 497: +Vertex 498: +Vertex 499: +Vertex 500: +Vertex 501: +Vertex 502: +Vertex 503: +Vertex 504: +Vertex 505: +Vertex 506: +Vertex 507: +Vertex 508: +Vertex 509: +Vertex 510: +Vertex 511: +Vertex 512: +Vertex 513: +Vertex 514: +Vertex 515: +Vertex 516: +Vertex 517: +Vertex 518: +Vertex 519: +Vertex 520: +Vertex 521: +Vertex 522: +Vertex 523: +Vertex 524: +Vertex 525: +Vertex 526: +Vertex 527: +Vertex 528: +Vertex 529: +Vertex 530: +Vertex 531: +Vertex 532: +Vertex 533: +Vertex 534: +Vertex 535: +Vertex 536: +Vertex 537: +Vertex 538: +Vertex 539: +Vertex 540: +Vertex 541: +Vertex 542: +Vertex 543: +Vertex 544: +Vertex 545: +Vertex 546: +Vertex 547: +Vertex 548: +Vertex 549: +Vertex 550: +Vertex 551: +Vertex 552: +Vertex 553: +Vertex 554: +Vertex 555: +Vertex 556: +Vertex 557: +Vertex 558: +Vertex 559: +Vertex 560: +Vertex 561: +Vertex 562: +Vertex 563: +Vertex 564: +Vertex 565: +Vertex 566: +Vertex 567: +Vertex 568: +Vertex 569: +Vertex 570: +Vertex 571: +Vertex 572: +Vertex 573: +Vertex 574: +Vertex 575: +Vertex 576: +Vertex 577: +Vertex 578: +Vertex 579: +Vertex 580: +Vertex 581: +Vertex 582: +Vertex 583: +Vertex 584: +Vertex 585: +Vertex 586: +Vertex 587: +Vertex 588: +Vertex 589: +Vertex 590: +Vertex 591: +Vertex 592: +Vertex 593: +Vertex 594: +Vertex 595: +Vertex 596: +Vertex 597: +Vertex 598: +Vertex 599: +Vertex 600: +Vertex 601: +Vertex 602: +Vertex 603: +Vertex 604: +Vertex 605: +Vertex 606: +Vertex 607: +Vertex 608: +Vertex 609: +Vertex 610: +Vertex 611: +Vertex 612: +Vertex 613: +Vertex 614: +Vertex 615: +Vertex 616: +Vertex 617: +Vertex 618: +Vertex 619: +Vertex 620: +Vertex 621: +Vertex 622: +Vertex 623: +Vertex 624: +Vertex 625: +Vertex 626: +Vertex 627: +Vertex 628: +Vertex 629: +Vertex 630: +Vertex 631: +Vertex 632: +Vertex 633: +Vertex 634: +Vertex 635: +Vertex 636: +Vertex 637: +Vertex 638: +Vertex 639: +Vertex 640: +Vertex 641: +Vertex 642: +Vertex 643: +Vertex 644: +Vertex 645: +Vertex 646: +Vertex 647: +Vertex 648: +Vertex 649: +Vertex 650: +Vertex 651: +Vertex 652: +Vertex 653: +Vertex 654: +Vertex 655: +Vertex 656: +Vertex 657: +Vertex 658: +Vertex 659: +Vertex 660: +Vertex 661: +Vertex 662: +Vertex 663: +Vertex 664: +Vertex 665: +Vertex 666: +Vertex 667: +Vertex 668: +Vertex 669: +Vertex 670: +Vertex 671: +Vertex 672: +Vertex 673: +Vertex 674: +Vertex 675: +Vertex 676: +Vertex 677: +Vertex 678: +Vertex 679: +Vertex 680: +Vertex 681: +Vertex 682: +Vertex 683: +Vertex 684: +Vertex 685: +Vertex 686: +Vertex 687: +Vertex 688: +Vertex 689: +Vertex 690: +Vertex 691: +Vertex 692: +Vertex 693: +Vertex 694: +Vertex 695: +Vertex 696: +Vertex 697: +Vertex 698: +Vertex 699: +Vertex 700: +Vertex 701: +Vertex 702: +Vertex 703: +Vertex 704: +Vertex 705: +Vertex 706: +Vertex 707: +Vertex 708: +Vertex 709: +Vertex 710: +Vertex 711: +Vertex 712: +Vertex 713: +Vertex 714: +Vertex 715: +Vertex 716: +Vertex 717: +Vertex 718: +Vertex 719: +Vertex 720: +Vertex 721: +Vertex 722: +Vertex 723: +Vertex 724: +Vertex 725: +Vertex 726: +Vertex 727: +Vertex 728: +Vertex 729: +Vertex 730: +Vertex 731: +Vertex 732: +Vertex 733: +Vertex 734: +Vertex 735: +Vertex 736: +Vertex 737: +Vertex 738: +Vertex 739: +Vertex 740: +Vertex 741: +Vertex 742: +Vertex 743: +Vertex 744: +Vertex 745: +Vertex 746: +Vertex 747: +Vertex 748: +Vertex 749: +Vertex 750: +Vertex 751: +Vertex 752: +Vertex 753: +Vertex 754: +Vertex 755: +Vertex 756: +Vertex 757: +Vertex 758: +Vertex 759: +Vertex 760: +Vertex 761: +Vertex 762: +Vertex 763: +Vertex 764: +Vertex 765: +Vertex 766: +Vertex 767: +Vertex 768: +Vertex 769: +Vertex 770: +Vertex 771: +Vertex 772: +Vertex 773: +Vertex 774: +Vertex 775: +Vertex 776: +Vertex 777: +Vertex 778: +Vertex 779: +Vertex 780: +Vertex 781: +Vertex 782: +Vertex 783: +Vertex 784: +Vertex 785: +Vertex 786: +Vertex 787: +Vertex 788: +Vertex 789: +Vertex 790: +Vertex 791: +Vertex 792: +Vertex 793: +Vertex 794: +Vertex 795: +Vertex 796: +Vertex 797: +Vertex 798: +Vertex 799: +Vertex 800: +Vertex 801: +Vertex 802: +Vertex 803: +Vertex 804: +Vertex 805: +Vertex 806: +Vertex 807: +Vertex 808: +Vertex 809: +Vertex 810: +Vertex 811: +Vertex 812: +Vertex 813: +Vertex 814: +Vertex 815: +Vertex 816: +Vertex 817: +Vertex 818: +Vertex 819: +Vertex 820: +Vertex 821: +Vertex 822: +Vertex 823: +Vertex 824: +Vertex 825: +Vertex 826: +Vertex 827: +Vertex 828: +Vertex 829: +Vertex 830: +Vertex 831: +Vertex 832: +Vertex 833: +Vertex 834: +Vertex 835: +Vertex 836: +Vertex 837: +Vertex 838: +Vertex 839: +Vertex 840: +Vertex 841: +Vertex 842: +Vertex 843: +Vertex 844: +Vertex 845: +Vertex 846: +Vertex 847: +Vertex 848: +Vertex 849: +Vertex 850: +Vertex 851: +Vertex 852: +Vertex 853: +Vertex 854: +Vertex 855: +Vertex 856: +Vertex 857: +Vertex 858: +Vertex 859: +Vertex 860: +Vertex 861: +Vertex 862: +Vertex 863: +Vertex 864: +Vertex 865: +Vertex 866: +Vertex 867: +Vertex 868: +Vertex 869: +Vertex 870: +Vertex 871: +Vertex 872: +Vertex 873: +Vertex 874: +Vertex 875: +Vertex 876: +Vertex 877: +Vertex 878: +Vertex 879: +Vertex 880: +Vertex 881: +Vertex 882: +Vertex 883: +Vertex 884: +Vertex 885: +Vertex 886: +Vertex 887: +Vertex 888: +Vertex 889: +Vertex 890: +Vertex 891: +Vertex 892: +Vertex 893: +Vertex 894: +Vertex 895: +Vertex 896: +Vertex 897: +Vertex 898: +Vertex 899: +Vertex 900: +Vertex 901: +Vertex 902: +Vertex 903: +Vertex 904: +Vertex 905: +Vertex 906: +Vertex 907: +Vertex 908: +Vertex 909: +Vertex 910: +Vertex 911: +Vertex 912: +Vertex 913: +Vertex 914: +Vertex 915: +Vertex 916: +Vertex 917: +Vertex 918: +Vertex 919: +Vertex 920: +Vertex 921: +Vertex 922: +Vertex 923: +Vertex 924: +Vertex 925: +Vertex 926: +Vertex 927: +Vertex 928: +Vertex 929: +Vertex 930: +Vertex 931: +Vertex 932: +Vertex 933: +Vertex 934: +Vertex 935: +Vertex 936: +Vertex 937: +Vertex 938: +Vertex 939: +Vertex 940: +Vertex 941: +Vertex 942: +Vertex 943: +Vertex 944: +Vertex 945: +Vertex 946: +Vertex 947: +Vertex 948: +Vertex 949: +Vertex 950: +Vertex 951: +Vertex 952: +Vertex 953: +Vertex 954: +Vertex 955: +Vertex 956: +Vertex 957: +Vertex 958: +Vertex 959: +Vertex 960: +Vertex 961: +Vertex 962: +Vertex 963: +Vertex 964: +Vertex 965: +Vertex 966: +Vertex 967: +Vertex 968: +Vertex 969: +Vertex 970: +Vertex 971: +Vertex 972: +Vertex 973: +Vertex 974: +Vertex 975: +Vertex 976: +Vertex 977: +Vertex 978: +Vertex 979: +Vertex 980: +Vertex 981: +Vertex 982: +Vertex 983: +Vertex 984: +Vertex 985: +Vertex 986: +Vertex 987: +Vertex 988: +Vertex 989: +Vertex 990: +Vertex 991: +Vertex 992: +Vertex 993: +Vertex 994: +Vertex 995: +Vertex 996: +Vertex 997: +Vertex 998: +Vertex 999: +Vertex 1000: +Vertex 1001: +Vertex 1002: +Vertex 1003: +Vertex 1004: +Vertex 1005: +Vertex 1006: +Vertex 1007: +Vertex 1008: +Vertex 1009: +Vertex 1010: +Vertex 1011: +Vertex 1012: +Vertex 1013: +Vertex 1014: +Vertex 1015: +Vertex 1016: +Vertex 1017: +Vertex 1018: +Vertex 1019: +Vertex 1020: +Vertex 1021: +Vertex 1022: +Vertex 1023: +Vertex 1024: +Vertex 1025: +Vertex 1026: +Vertex 1027: +Vertex 1028: +Vertex 1029: +Vertex 1030: +Vertex 1031: +Vertex 1032: +Vertex 1033: +Vertex 1034: +Vertex 1035: +Vertex 1036: +Vertex 1037: +Vertex 1038: +Vertex 1039: +Vertex 1040: +Vertex 1041: +Vertex 1042: +Vertex 1043: +Vertex 1044: +Vertex 1045: +Vertex 1046: +Vertex 1047: +Vertex 1048: +Vertex 1049: +Vertex 1050: +Vertex 1051: +Vertex 1052: +Vertex 1053: +Vertex 1054: +Vertex 1055: +Vertex 1056: +Vertex 1057: +Vertex 1058: +Vertex 1059: +Vertex 1060: +Vertex 1061: +Vertex 1062: +Vertex 1063: +Vertex 1064: +Vertex 1065: +Vertex 1066: +Vertex 1067: +Vertex 1068: +Vertex 1069: +Vertex 1070: +Vertex 1071: +Vertex 1072: +Vertex 1073: +Vertex 1074: +Vertex 1075: +Vertex 1076: +Vertex 1077: +Vertex 1078: +Vertex 1079: +Vertex 1080: +Vertex 1081: +Vertex 1082: +Vertex 1083: +Vertex 1084: +Vertex 1085: +Vertex 1086: +Vertex 1087: +Vertex 1088: +Vertex 1089: +Vertex 1090: +Vertex 1091: +Vertex 1092: +Vertex 1093: +Vertex 1094: +Vertex 1095: +Vertex 1096: +Vertex 1097: +Vertex 1098: +Vertex 1099: +Vertex 1100: +Vertex 1101: +Vertex 1102: +Vertex 1103: +Vertex 1104: +Vertex 1105: +Vertex 1106: +Vertex 1107: +Vertex 1108: +Vertex 1109: +Vertex 1110: +Vertex 1111: +Vertex 1112: +Vertex 1113: +Vertex 1114: +Vertex 1115: +Vertex 1116: +Vertex 1117: +Vertex 1118: +Vertex 1119: +Vertex 1120: +Vertex 1121: +Vertex 1122: +Vertex 1123: +Vertex 1124: +Vertex 1125: +Vertex 1126: +Vertex 1127: +Vertex 1128: +Vertex 1129: +Vertex 1130: +Vertex 1131: +Vertex 1132: +Vertex 1133: +Vertex 1134: +Vertex 1135: +Vertex 1136: +Vertex 1137: +Vertex 1138: +Vertex 1139: +Vertex 1140: +Vertex 1141: +Vertex 1142: +Vertex 1143: +Vertex 1144: +Vertex 1145: +Vertex 1146: +Vertex 1147: +Vertex 1148: +Vertex 1149: +Vertex 1150: +Vertex 1151: +Vertex 1152: +Vertex 1153: +Vertex 1154: +Vertex 1155: +Vertex 1156: +Vertex 1157: +Vertex 1158: +Vertex 1159: +Vertex 1160: +Vertex 1161: +Vertex 1162: +Vertex 1163: +Vertex 1164: +Vertex 1165: +Vertex 1166: +Vertex 1167: +Vertex 1168: +Vertex 1169: +Vertex 1170: +Vertex 1171: +Vertex 1172: +Vertex 1173: +Vertex 1174: +Vertex 1175: +Vertex 1176: +Vertex 1177: +Vertex 1178: +Vertex 1179: +Vertex 1180: +Vertex 1181: +Vertex 1182: +Vertex 1183: +Vertex 1184: +Vertex 1185: +Vertex 1186: +Vertex 1187: +Vertex 1188: +Vertex 1189: +Vertex 1190: +Vertex 1191: +Vertex 1192: +Vertex 1193: +Vertex 1194: +Vertex 1195: +Vertex 1196: +Vertex 1197: +Vertex 1198: +Vertex 1199: +Vertex 1200: +Vertex 1201: +Vertex 1202: +Vertex 1203: +Vertex 1204: +Vertex 1205: +Vertex 1206: +Vertex 1207: +Vertex 1208: +Vertex 1209: +Vertex 1210: +Vertex 1211: +Vertex 1212: +Vertex 1213: +Vertex 1214: +Vertex 1215: +Vertex 1216: +Vertex 1217: +Vertex 1218: +Vertex 1219: +Vertex 1220: +Vertex 1221: +Vertex 1222: +Vertex 1223: +Vertex 1224: +Vertex 1225: +Vertex 1226: +Vertex 1227: +Vertex 1228: +Vertex 1229: +Vertex 1230: +Vertex 1231: +Vertex 1232: +Vertex 1233: +Vertex 1234: +Vertex 1235: +Vertex 1236: +Vertex 1237: +Vertex 1238: +Vertex 1239: +Vertex 1240: +Vertex 1241: +Vertex 1242: +Vertex 1243: +Vertex 1244: +Vertex 1245: +Vertex 1246: +Vertex 1247: +Vertex 1248: +Vertex 1249: +Vertex 1250: +Vertex 1251: +Vertex 1252: +Vertex 1253: +Vertex 1254: +Vertex 1255: +Vertex 1256: +Vertex 1257: +Vertex 1258: +Vertex 1259: +Vertex 1260: +Vertex 1261: +Vertex 1262: +Vertex 1263: +Vertex 1264: +Vertex 1265: +Vertex 1266: +Vertex 1267: +Vertex 1268: +Vertex 1269: +Vertex 1270: +Vertex 1271: +Vertex 1272: +Vertex 1273: +Vertex 1274: +Vertex 1275: +Vertex 1276: +Vertex 1277: +Vertex 1278: +Vertex 1279: +Vertex 1280: +Vertex 1281: +Vertex 1282: +Vertex 1283: +Vertex 1284: +Vertex 1285: +Vertex 1286: +Vertex 1287: +Vertex 1288: +Vertex 1289: +Vertex 1290: +Vertex 1291: +Vertex 1292: +Vertex 1293: +Vertex 1294: +Vertex 1295: +Vertex 1296: +Vertex 1297: +Vertex 1298: +Vertex 1299: +Vertex 1300: +Vertex 1301: +Vertex 1302: +Vertex 1303: +Vertex 1304: +Vertex 1305: +Vertex 1306: +Vertex 1307: +Vertex 1308: +Vertex 1309: +Vertex 1310: +Vertex 1311: +Vertex 1312: +Vertex 1313: +Vertex 1314: +Vertex 1315: +Vertex 1316: +Vertex 1317: +Vertex 1318: +Vertex 1319: +Vertex 1320: +Vertex 1321: +Vertex 1322: +Vertex 1323: +Vertex 1324: +Vertex 1325: +Vertex 1326: +Vertex 1327: +Vertex 1328: +Vertex 1329: +Vertex 1330: +Vertex 1331: +Vertex 1332: +Vertex 1333: +Vertex 1334: +Vertex 1335: +Vertex 1336: +Vertex 1337: +Vertex 1338: +Vertex 1339: +Vertex 1340: +Vertex 1341: +Vertex 1342: +Vertex 1343: +Vertex 1344: +Vertex 1345: +Vertex 1346: +Vertex 1347: +Vertex 1348: +Vertex 1349: +Vertex 1350: +Vertex 1351: +Vertex 1352: +Vertex 1353: +Vertex 1354: +Vertex 1355: +Vertex 1356: +Vertex 1357: +Vertex 1358: +Vertex 1359: +Vertex 1360: +Vertex 1361: +Vertex 1362: +Vertex 1363: +Vertex 1364: +Vertex 1365: +Vertex 1366: +Vertex 1367: +Vertex 1368: +Vertex 1369: +Vertex 1370: +Vertex 1371: +Vertex 1372: +Vertex 1373: +Vertex 1374: +Vertex 1375: +Vertex 1376: +Vertex 1377: +Vertex 1378: +Vertex 1379: +Vertex 1380: +Vertex 1381: +Vertex 1382: +Vertex 1383: +Vertex 1384: +Vertex 1385: +Vertex 1386: +Vertex 1387: +Vertex 1388: +Vertex 1389: +Vertex 1390: +Vertex 1391: +Vertex 1392: +Vertex 1393: +Vertex 1394: +Vertex 1395: +Vertex 1396: +Vertex 1397: +Vertex 1398: +Vertex 1399: +Vertex 1400: +Vertex 1401: +Vertex 1402: +Vertex 1403: +Vertex 1404: +Vertex 1405: +Vertex 1406: +Vertex 1407: +Vertex 1408: +Vertex 1409: +Vertex 1410: +Vertex 1411: +Vertex 1412: +Vertex 1413: +Vertex 1414: +Vertex 1415: +Vertex 1416: +Vertex 1417: +Vertex 1418: +Vertex 1419: +Vertex 1420: +Vertex 1421: +Vertex 1422: +Vertex 1423: +Vertex 1424: +Vertex 1425: +Vertex 1426: +Vertex 1427: +Vertex 1428: +Vertex 1429: +Vertex 1430: +Vertex 1431: +Vertex 1432: +Vertex 1433: +Vertex 1434: +Vertex 1435: +Vertex 1436: +Vertex 1437: +Vertex 1438: +Vertex 1439: +Vertex 1440: +Vertex 1441: +Vertex 1442: +Vertex 1443: +Vertex 1444: +Vertex 1445: +Vertex 1446: +Vertex 1447: +Vertex 1448: +Vertex 1449: +Vertex 1450: +Vertex 1451: +Vertex 1452: +Vertex 1453: +Vertex 1454: +Vertex 1455: +Vertex 1456: +Vertex 1457: +Vertex 1458: +Vertex 1459: +Vertex 1460: +Vertex 1461: +Vertex 1462: +Vertex 1463: +Vertex 1464: +Vertex 1465: +Vertex 1466: +Vertex 1467: +Vertex 1468: +Vertex 1469: +Vertex 1470: +Vertex 1471: +Vertex 1472: +Vertex 1473: +Vertex 1474: +Vertex 1475: +Vertex 1476: +Vertex 1477: +Vertex 1478: +Vertex 1479: +Vertex 1480: +Vertex 1481: +Vertex 1482: +Vertex 1483: +Vertex 1484: +Vertex 1485: +Vertex 1486: +Vertex 1487: +Vertex 1488: +Vertex 1489: +Vertex 1490: +Vertex 1491: +Vertex 1492: +Vertex 1493: +Vertex 1494: +Vertex 1495: +Vertex 1496: +Vertex 1497: +Vertex 1498: +Vertex 1499: +Vertex 1500: +Vertex 1501: +Vertex 1502: +Vertex 1503: +Vertex 1504: +Vertex 1505: +Vertex 1506: +Vertex 1507: +Vertex 1508: +Vertex 1509: +Vertex 1510: +Vertex 1511: +Vertex 1512: +Vertex 1513: +Vertex 1514: +Vertex 1515: +Vertex 1516: +Vertex 1517: +Vertex 1518: +Vertex 1519: +Vertex 1520: +Vertex 1521: +Vertex 1522: +Vertex 1523: +Vertex 1524: +Vertex 1525: +Vertex 1526: +Vertex 1527: +Vertex 1528: +Vertex 1529: +Vertex 1530: +Vertex 1531: +Vertex 1532: +Vertex 1533: +Vertex 1534: +Vertex 1535: +Vertex 1536: +Vertex 1537: +Vertex 1538: +Vertex 1539: +Vertex 1540: +Vertex 1541: +Vertex 1542: +Vertex 1543: +Vertex 1544: +Vertex 1545: +Vertex 1546: +Vertex 1547: +Vertex 1548: +Vertex 1549: +Vertex 1550: +Vertex 1551: +Vertex 1552: +Vertex 1553: +Vertex 1554: +Vertex 1555: +Vertex 1556: +Vertex 1557: +Vertex 1558: +Vertex 1559: +Vertex 1560: +Vertex 1561: +Vertex 1562: +Vertex 1563: +Vertex 1564: +Vertex 1565: +Vertex 1566: +Vertex 1567: +Vertex 1568: +Vertex 1569: +Vertex 1570: +Vertex 1571: +Vertex 1572: +Vertex 1573: +Vertex 1574: +Vertex 1575: +Vertex 1576: +Vertex 1577: +Vertex 1578: +Vertex 1579: +Vertex 1580: +Vertex 1581: +Vertex 1582: +Vertex 1583: +Vertex 1584: +Vertex 1585: +Vertex 1586: +Vertex 1587: +Vertex 1588: +Vertex 1589: +Vertex 1590: +Vertex 1591: +Vertex 1592: +Vertex 1593: +Vertex 1594: +Vertex 1595: +Vertex 1596: +Vertex 1597: +Vertex 1598: +Vertex 1599: +Vertex 1600: +Vertex 1601: +Vertex 1602: +Vertex 1603: +Vertex 1604: +Vertex 1605: +Vertex 1606: +Vertex 1607: +Vertex 1608: +Vertex 1609: +Vertex 1610: +Vertex 1611: +Vertex 1612: +Vertex 1613: +Vertex 1614: +Vertex 1615: +Vertex 1616: +Vertex 1617: +Vertex 1618: +Vertex 1619: +Vertex 1620: +Vertex 1621: +Vertex 1622: +Vertex 1623: +Vertex 1624: +Vertex 1625: +Vertex 1626: +Vertex 1627: +Vertex 1628: +Vertex 1629: +Vertex 1630: +Vertex 1631: +Vertex 1632: +Vertex 1633: +Vertex 1634: +Vertex 1635: +Vertex 1636: +Vertex 1637: +Vertex 1638: +Vertex 1639: +Vertex 1640: +Vertex 1641: +Vertex 1642: +Vertex 1643: +Vertex 1644: +Vertex 1645: +Vertex 1646: +Vertex 1647: +Vertex 1648: +Vertex 1649: +Vertex 1650: +Vertex 1651: +Vertex 1652: +Vertex 1653: +Vertex 1654: +Vertex 1655: +Vertex 1656: +Vertex 1657: +Vertex 1658: +Vertex 1659: +Vertex 1660: +Vertex 1661: +Vertex 1662: +Vertex 1663: +Vertex 1664: +Vertex 1665: +Vertex 1666: +Vertex 1667: +Vertex 1668: +Vertex 1669: +Vertex 1670: +Vertex 1671: +Vertex 1672: +Vertex 1673: +Vertex 1674: +Vertex 1675: +Vertex 1676: +Vertex 1677: +Vertex 1678: +Vertex 1679: +Vertex 1680: +Vertex 1681: +Vertex 1682: +Vertex 1683: +Vertex 1684: +Vertex 1685: +Vertex 1686: +Vertex 1687: +Vertex 1688: +Vertex 1689: +Vertex 1690: +Vertex 1691: +Vertex 1692: +Vertex 1693: +Vertex 1694: +Vertex 1695: +Vertex 1696: +Vertex 1697: +Vertex 1698: +Vertex 1699: +Vertex 1700: +Vertex 1701: +Vertex 1702: +Vertex 1703: +Vertex 1704: +Vertex 1705: +Vertex 1706: +Vertex 1707: +Vertex 1708: +Vertex 1709: +Vertex 1710: +Vertex 1711: +Vertex 1712: +Vertex 1713: +Vertex 1714: +Vertex 1715: +Vertex 1716: +Vertex 1717: +Vertex 1718: +Vertex 1719: +Vertex 1720: +Vertex 1721: +Vertex 1722: +Vertex 1723: +Vertex 1724: +Vertex 1725: +Vertex 1726: +Vertex 1727: +Vertex 1728: +Vertex 1729: +Vertex 1730: +Vertex 1731: +Vertex 1732: +Vertex 1733: +Vertex 1734: +Vertex 1735: +Vertex 1736: +Vertex 1737: +Vertex 1738: +Vertex 1739: +Vertex 1740: +Vertex 1741: +Vertex 1742: +Vertex 1743: +Vertex 1744: +Vertex 1745: +Vertex 1746: +Vertex 1747: +Vertex 1748: +Vertex 1749: +Vertex 1750: +Vertex 1751: +Vertex 1752: +Vertex 1753: +Vertex 1754: +Vertex 1755: +Vertex 1756: +Vertex 1757: +Vertex 1758: +Vertex 1759: +Vertex 1760: +Vertex 1761: +Vertex 1762: +Vertex 1763: +Vertex 1764: +Vertex 1765: +Vertex 1766: +Vertex 1767: +Vertex 1768: +Vertex 1769: +Vertex 1770: +Vertex 1771: +Vertex 1772: +Vertex 1773: +Vertex 1774: +Vertex 1775: +Vertex 1776: +Vertex 1777: +Vertex 1778: +Vertex 1779: +Vertex 1780: +Vertex 1781: +Vertex 1782: +Vertex 1783: +Vertex 1784: +Vertex 1785: +Vertex 1786: +Vertex 1787: +Vertex 1788: +Vertex 1789: +Vertex 1790: +Vertex 1791: +Vertex 1792: +Vertex 1793: +Vertex 1794: +Vertex 1795: +Vertex 1796: +Vertex 1797: +Vertex 1798: +Vertex 1799: +Vertex 1800: +Vertex 1801: +Vertex 1802: +Vertex 1803: +Vertex 1804: +Vertex 1805: +Vertex 1806: +Vertex 1807: +Vertex 1808: +Vertex 1809: +Vertex 1810: +Vertex 1811: +Vertex 1812: +Vertex 1813: +Vertex 1814: +Vertex 1815: +Vertex 1816: +Vertex 1817: +Vertex 1818: +Vertex 1819: +Vertex 1820: +Vertex 1821: +Vertex 1822: +Vertex 1823: +Vertex 1824: +Vertex 1825: +Vertex 1826: +Vertex 1827: +Vertex 1828: +Vertex 1829: +Vertex 1830: +Vertex 1831: +Vertex 1832: +Vertex 1833: +Vertex 1834: +Vertex 1835: +Vertex 1836: +Vertex 1837: +Vertex 1838: +Vertex 1839: +Vertex 1840: +Vertex 1841: +Vertex 1842: +Vertex 1843: +Vertex 1844: +Vertex 1845: +Vertex 1846: +Vertex 1847: +Vertex 1848: +Vertex 1849: +Vertex 1850: +Vertex 1851: +Vertex 1852: +Vertex 1853: +Vertex 1854: +Vertex 1855: +Vertex 1856: +Vertex 1857: +Vertex 1858: +Vertex 1859: +Vertex 1860: +Vertex 1861: +Vertex 1862: +Vertex 1863: +Vertex 1864: +Vertex 1865: +Vertex 1866: +Vertex 1867: +Vertex 1868: +Vertex 1869: +Vertex 1870: +Vertex 1871: +Vertex 1872: +Vertex 1873: +Vertex 1874: +Vertex 1875: +Vertex 1876: +Vertex 1877: +Vertex 1878: +Vertex 1879: +Vertex 1880: +Vertex 1881: +Vertex 1882: +Vertex 1883: +Vertex 1884: +Vertex 1885: +Vertex 1886: +Vertex 1887: +Vertex 1888: +Vertex 1889: +Vertex 1890: +Vertex 1891: +Vertex 1892: +Vertex 1893: +Vertex 1894: +Vertex 1895: +Vertex 1896: +Vertex 1897: +Vertex 1898: +Vertex 1899: +Vertex 1900: +Vertex 1901: +Vertex 1902: +Vertex 1903: +Vertex 1904: +Vertex 1905: +Vertex 1906: +Vertex 1907: +Vertex 1908: +Vertex 1909: +Vertex 1910: +Vertex 1911: +Vertex 1912: +Vertex 1913: +Vertex 1914: +Vertex 1915: +Vertex 1916: +Vertex 1917: +Vertex 1918: +Vertex 1919: +Vertex 1920: +Vertex 1921: +Vertex 1922: +Vertex 1923: +Vertex 1924: +Vertex 1925: +Vertex 1926: +Vertex 1927: +Vertex 1928: +Vertex 1929: +Vertex 1930: +Vertex 1931: +Vertex 1932: +Vertex 1933: +Vertex 1934: +Vertex 1935: +Vertex 1936: +Vertex 1937: +Vertex 1938: +Vertex 1939: +Vertex 1940: +Vertex 1941: +Vertex 1942: +Vertex 1943: +Vertex 1944: +Vertex 1945: +Vertex 1946: +Vertex 1947: +Vertex 1948: +Vertex 1949: +Vertex 1950: +Vertex 1951: +Vertex 1952: +Vertex 1953: +Vertex 1954: +Vertex 1955: +Vertex 1956: +Vertex 1957: +Vertex 1958: +Vertex 1959: +Vertex 1960: +Vertex 1961: +Vertex 1962: +Vertex 1963: +Vertex 1964: +Vertex 1965: +Vertex 1966: +Vertex 1967: +Vertex 1968: +Vertex 1969: +Vertex 1970: +Vertex 1971: +Vertex 1972: +Vertex 1973: +Vertex 1974: +Vertex 1975: +Vertex 1976: +Vertex 1977: +Vertex 1978: +Vertex 1979: +Vertex 1980: +Vertex 1981: +Vertex 1982: +Vertex 1983: +Vertex 1984: +Vertex 1985: +Vertex 1986: +Vertex 1987: +Vertex 1988: +Vertex 1989: +Vertex 1990: +Vertex 1991: +Vertex 1992: +Vertex 1993: +Vertex 1994: +Vertex 1995: +Vertex 1996: +Vertex 1997: +Vertex 1998: +Vertex 1999: +Vertex 2000: +Vertex 2001: +Vertex 2002: +Vertex 2003: +Vertex 2004: +Vertex 2005: +Vertex 2006: +Vertex 2007: +Vertex 2008: +Vertex 2009: +Vertex 2010: +Vertex 2011: +Vertex 2012: +Vertex 2013: +Vertex 2014: +Vertex 2015: +Vertex 2016: +Vertex 2017: +Vertex 2018: +Vertex 2019: +Vertex 2020: +Vertex 2021: +Vertex 2022: +Vertex 2023: +Vertex 2024: +Vertex 2025: +Vertex 2026: +Vertex 2027: +Vertex 2028: +Vertex 2029: +Vertex 2030: +Vertex 2031: +Vertex 2032: +Vertex 2033: +Vertex 2034: +Vertex 2035: +Vertex 2036: +Vertex 2037: +Vertex 2038: +Vertex 2039: +Vertex 2040: +Vertex 2041: +Vertex 2042: +Vertex 2043: +Vertex 2044: +Vertex 2045: +Vertex 2046: +Vertex 2047: +Vertex 2048: +Vertex 2049: +Vertex 2050: +Vertex 2051: +Vertex 2052: +Vertex 2053: +Vertex 2054: +Vertex 2055: +Vertex 2056: +Vertex 2057: +Vertex 2058: +Vertex 2059: +Vertex 2060: +Vertex 2061: +Vertex 2062: +Vertex 2063: +Vertex 2064: +Vertex 2065: +Vertex 2066: +Vertex 2067: +Vertex 2068: +Vertex 2069: +Vertex 2070: +Vertex 2071: +Vertex 2072: +Vertex 2073: +Vertex 2074: +Vertex 2075: +Vertex 2076: +Vertex 2077: +Vertex 2078: +Vertex 2079: +Vertex 2080: +Vertex 2081: +Vertex 2082: +Vertex 2083: +Vertex 2084: +Vertex 2085: +Vertex 2086: +Vertex 2087: +Vertex 2088: +Vertex 2089: +Vertex 2090: +Vertex 2091: +Vertex 2092: +Vertex 2093: +Vertex 2094: +Vertex 2095: +Vertex 2096: +Vertex 2097: +Vertex 2098: +Vertex 2099: +Vertex 2100: +Vertex 2101: +Vertex 2102: +Vertex 2103: +Vertex 2104: +Vertex 2105: +Vertex 2106: +Vertex 2107: +Vertex 2108: +Vertex 2109: +Vertex 2110: +Vertex 2111: +Vertex 2112: +Vertex 2113: +Vertex 2114: +Vertex 2115: +Vertex 2116: +Vertex 2117: +Vertex 2118: +Vertex 2119: +Vertex 2120: +Vertex 2121: +Vertex 2122: +Vertex 2123: +Vertex 2124: +Vertex 2125: +Vertex 2126: +Vertex 2127: +Vertex 2128: +Vertex 2129: +Vertex 2130: +Vertex 2131: +Vertex 2132: +Vertex 2133: +Vertex 2134: +Vertex 2135: +Vertex 2136: +Vertex 2137: +Vertex 2138: +Vertex 2139: +Vertex 2140: +Vertex 2141: +Vertex 2142: +Vertex 2143: +Vertex 2144: +Vertex 2145: +Vertex 2146: +Vertex 2147: +Vertex 2148: +Vertex 2149: +Vertex 2150: +Vertex 2151: +Vertex 2152: +Vertex 2153: +Vertex 2154: +Vertex 2155: +Vertex 2156: +Vertex 2157: +Vertex 2158: +Vertex 2159: +Vertex 2160: +Vertex 2161: +Vertex 2162: +Vertex 2163: +Vertex 2164: +Vertex 2165: +Vertex 2166: +Vertex 2167: +Vertex 2168: +Vertex 2169: +Vertex 2170: +Vertex 2171: +Vertex 2172: +Vertex 2173: +Vertex 2174: +Vertex 2175: +Vertex 2176: +Vertex 2177: +Vertex 2178: +Vertex 2179: +Vertex 2180: +Vertex 2181: +Vertex 2182: +Vertex 2183: +Vertex 2184: +Vertex 2185: +Vertex 2186: +Vertex 2187: +Vertex 2188: +Vertex 2189: +Vertex 2190: +Vertex 2191: +Vertex 2192: +Vertex 2193: +Vertex 2194: +Vertex 2195: +Vertex 2196: +Vertex 2197: +Vertex 2198: +Vertex 2199: +Vertex 2200: +Vertex 2201: +Vertex 2202: +Vertex 2203: +Vertex 2204: +Vertex 2205: +Vertex 2206: +Vertex 2207: +Vertex 2208: +Vertex 2209: +Vertex 2210: +Vertex 2211: +Vertex 2212: +Vertex 2213: +Vertex 2214: +Vertex 2215: +Vertex 2216: +Vertex 2217: +Vertex 2218: +Vertex 2219: +Vertex 2220: +Vertex 2221: +Vertex 2222: +Vertex 2223: +Vertex 2224: +Vertex 2225: +Vertex 2226: +Vertex 2227: +Vertex 2228: +Vertex 2229: +Vertex 2230: +Vertex 2231: +Vertex 2232: +Vertex 2233: +Vertex 2234: +Vertex 2235: +Vertex 2236: +Vertex 2237: +Vertex 2238: +Vertex 2239: +Vertex 2240: +Vertex 2241: +Vertex 2242: +Vertex 2243: +Vertex 2244: +Vertex 2245: +Vertex 2246: +Vertex 2247: +Vertex 2248: +Vertex 2249: +Vertex 2250: +Vertex 2251: +Vertex 2252: +Vertex 2253: +Vertex 2254: +Vertex 2255: +Vertex 2256: +Vertex 2257: +Vertex 2258: +Vertex 2259: +Vertex 2260: +Vertex 2261: +Vertex 2262: +Vertex 2263: +Vertex 2264: +Vertex 2265: +Vertex 2266: +Vertex 2267: +Vertex 2268: +Vertex 2269: +Vertex 2270: +Vertex 2271: +Vertex 2272: +Vertex 2273: +Vertex 2274: +Vertex 2275: +Vertex 2276: +Vertex 2277: +Vertex 2278: +Vertex 2279: +Vertex 2280: +Vertex 2281: +Vertex 2282: +Vertex 2283: +Vertex 2284: +Vertex 2285: +Vertex 2286: +Vertex 2287: +Vertex 2288: +Vertex 2289: +Vertex 2290: +Vertex 2291: +Vertex 2292: +Vertex 2293: +Vertex 2294: +Vertex 2295: +===Triangles: 4480 +Triangle: [15, 13, 18] +Triangle: [16, 18, 19] +Triangle: [17, 19, 20] +Triangle: [5, 20, 21] +Triangle: [4, 21, 22] +Triangle: [3, 22, 23] +Triangle: [3, 24, 2] +Triangle: [2, 25, 1] +Triangle: [6, 1, 25] +Triangle: [7, 25, 26] +Triangle: [26, 24, 27] +Triangle: [28, 24, 23] +Triangle: [29, 23, 22] +Triangle: [30, 22, 21] +Triangle: [30, 20, 31] +Triangle: [32, 20, 19] +Triangle: [32, 18, 33] +Triangle: [33, 13, 12] +Triangle: [34, 12, 11] +Triangle: [33, 35, 32] +Triangle: [31, 35, 36] +Triangle: [31, 37, 30] +Triangle: [29, 37, 38] +Triangle: [28, 38, 39] +Triangle: [27, 39, 40] +Triangle: [26, 40, 41] +Triangle: [8, 26, 41] +Triangle: [8, 42, 9] +Triangle: [9, 43, 10] +Triangle: [43, 11, 10] +Triangle: [34, 45, 35] +Triangle: [35, 46, 36] +Triangle: [37, 46, 47] +Triangle: [38, 47, 48] +Triangle: [38, 49, 39] +Triangle: [39, 50, 40] +Triangle: [40, 51, 41] +Triangle: [42, 51, 52] +Triangle: [43, 52, 53] +Triangle: [44, 43, 53] +Triangle: [49, 55, 50] +Triangle: [50, 56, 51] +Triangle: [51, 57, 52] +Triangle: [52, 58, 53] +Triangle: [53, 59, 44] +Triangle: [44, 60, 45] +Triangle: [45, 61, 46] +Triangle: [46, 62, 47] +Triangle: [47, 63, 48] +Triangle: [54, 48, 63] +Triangle: [13, 69, 72] +Triangle: [70, 72, 69] +Triangle: [71, 73, 70] +Triangle: [68, 74, 71] +Triangle: [67, 75, 68] +Triangle: [66, 76, 67] +Triangle: [78, 66, 65] +Triangle: [79, 65, 64] +Triangle: [6, 64, 0] +Triangle: [7, 79, 6] +Triangle: [78, 80, 81] +Triangle: [82, 78, 81] +Triangle: [83, 77, 82] +Triangle: [84, 76, 83] +Triangle: [74, 84, 85] +Triangle: [86, 74, 85] +Triangle: [72, 86, 87] +Triangle: [87, 13, 72] +Triangle: [88, 12, 87] +Triangle: [89, 87, 86] +Triangle: [85, 89, 86] +Triangle: [91, 85, 84] +Triangle: [83, 91, 84] +Triangle: [82, 92, 83] +Triangle: [81, 93, 82] +Triangle: [80, 94, 81] +Triangle: [8, 80, 7] +Triangle: [96, 8, 9] +Triangle: [97, 9, 10] +Triangle: [11, 97, 10] +Triangle: [99, 88, 89] +Triangle: [100, 89, 90] +Triangle: [91, 100, 90] +Triangle: [92, 101, 91] +Triangle: [103, 92, 93] +Triangle: [104, 93, 94] +Triangle: [105, 94, 95] +Triangle: [96, 105, 95] +Triangle: [97, 106, 96] +Triangle: [98, 97, 88] +Triangle: [109, 103, 104] +Triangle: [110, 104, 105] +Triangle: [111, 105, 106] +Triangle: [112, 106, 107] +Triangle: [113, 107, 98] +Triangle: [114, 98, 99] +Triangle: [115, 99, 100] +Triangle: [116, 100, 101] +Triangle: [117, 101, 102] +Triangle: [108, 102, 103] +Triangle: [118, 138, 126] +Triangle: [119, 138, 127] +Triangle: [138, 121, 129] +Triangle: [138, 120, 126] +Triangle: [120, 139, 130] +Triangle: [121, 139, 129] +Triangle: [139, 125, 132] +Triangle: [139, 124, 130] +Triangle: [124, 140, 133] +Triangle: [125, 140, 132] +Triangle: [140, 123, 135] +Triangle: [140, 122, 133] +Triangle: [122, 141, 136] +Triangle: [123, 141, 135] +Triangle: [141, 119, 127] +Triangle: [141, 118, 136] +Triangle: [120, 142, 126] +Triangle: [124, 142, 130] +Triangle: [142, 122, 136] +Triangle: [142, 118, 126] +Triangle: [125, 143, 134] +Triangle: [121, 143, 131] +Triangle: [143, 119, 137] +Triangle: [143, 123, 134] +Triangle: [144, 164, 153] +Triangle: [164, 145, 153] +Triangle: [164, 147, 154] +Triangle: [146, 164, 152] +Triangle: [146, 165, 155] +Triangle: [165, 147, 155] +Triangle: [165, 151, 157] +Triangle: [150, 165, 156] +Triangle: [150, 166, 158] +Triangle: [166, 151, 158] +Triangle: [166, 149, 160] +Triangle: [148, 166, 159] +Triangle: [148, 167, 161] +Triangle: [167, 149, 161] +Triangle: [167, 145, 163] +Triangle: [144, 167, 162] +Triangle: [146, 168, 156] +Triangle: [168, 150, 156] +Triangle: [168, 148, 159] +Triangle: [144, 168, 152] +Triangle: [151, 169, 157] +Triangle: [169, 147, 157] +Triangle: [169, 145, 154] +Triangle: [149, 169, 160] +Triangle: [173, 170, 172] +Triangle: [174, 171, 175] +Triangle: [173, 177, 171] +Triangle: [175, 177, 178] +Triangle: [176, 180, 177] +Triangle: [177, 181, 178] +Triangle: [179, 183, 180] +Triangle: [183, 184, 185] +Triangle: [185, 186, 187] +Triangle: [180, 188, 181] +Triangle: [189, 183, 185] +Triangle: [189, 187, 190] +Triangle: [194, 172, 170] +Triangle: [192, 194, 195] +Triangle: [193, 195, 196] +Triangle: [197, 170, 174] +Triangle: [195, 197, 196] +Triangle: [199, 193, 196] +Triangle: [199, 200, 201] +Triangle: [202, 196, 197] +Triangle: [203, 197, 174] +Triangle: [203, 175, 204] +Triangle: [204, 178, 205] +Triangle: [205, 181, 206] +Triangle: [206, 188, 207] +Triangle: [207, 189, 208] +Triangle: [208, 190, 209] +Triangle: [198, 213, 214] +Triangle: [213, 201, 212] +Triangle: [210, 201, 215] +Triangle: [211, 210, 215] +Triangle: [213, 211, 216] +Triangle: [213, 217, 214] +Triangle: [218, 201, 200] +Triangle: [219, 218, 220] +Triangle: [215, 221, 211] +Triangle: [211, 222, 216] +Triangle: [216, 223, 217] +Triangle: [224, 200, 202] +Triangle: [225, 202, 203] +Triangle: [220, 224, 226] +Triangle: [226, 225, 227] +Triangle: [225, 204, 228] +Triangle: [228, 205, 229] +Triangle: [230, 205, 206] +Triangle: [230, 207, 231] +Triangle: [232, 207, 208] +Triangle: [232, 209, 233] +Triangle: [227, 228, 234] +Triangle: [235, 228, 229] +Triangle: [236, 229, 230] +Triangle: [237, 230, 231] +Triangle: [238, 222, 239] +Triangle: [240, 222, 221] +Triangle: [240, 219, 241] +Triangle: [241, 220, 242] +Triangle: [242, 226, 243] +Triangle: [243, 227, 244] +Triangle: [244, 234, 245] +Triangle: [246, 234, 235] +Triangle: [246, 236, 247] +Triangle: [247, 237, 248] +Triangle: [237, 250, 248] +Triangle: [232, 237, 231] +Triangle: [249, 233, 251] +Triangle: [252, 239, 256] +Triangle: [253, 256, 257] +Triangle: [254, 257, 258] +Triangle: [255, 258, 259] +Triangle: [256, 240, 260] +Triangle: [257, 260, 261] +Triangle: [260, 241, 262] +Triangle: [262, 242, 263] +Triangle: [263, 243, 264] +Triangle: [264, 244, 265] +Triangle: [265, 245, 266] +Triangle: [267, 245, 246] +Triangle: [268, 246, 247] +Triangle: [269, 247, 248] +Triangle: [249, 270, 250] +Triangle: [270, 248, 250] +Triangle: [268, 272, 267] +Triangle: [272, 273, 274] +Triangle: [272, 275, 267] +Triangle: [266, 275, 276] +Triangle: [266, 277, 265] +Triangle: [265, 278, 264] +Triangle: [264, 279, 263] +Triangle: [263, 280, 262] +Triangle: [261, 262, 280] +Triangle: [258, 261, 281] +Triangle: [282, 268, 269] +Triangle: [187, 283, 284] +Triangle: [190, 284, 285] +Triangle: [209, 285, 286] +Triangle: [233, 286, 287] +Triangle: [251, 287, 288] +Triangle: [270, 288, 289] +Triangle: [270, 290, 269] +Triangle: [269, 291, 282] +Triangle: [293, 290, 289] +Triangle: [294, 289, 288] +Triangle: [296, 288, 287] +Triangle: [294, 295, 297] +Triangle: [298, 287, 286] +Triangle: [298, 285, 299] +Triangle: [299, 284, 300] +Triangle: [300, 283, 301] +Triangle: [300, 302, 303] +Triangle: [299, 303, 304] +Triangle: [298, 304, 305] +Triangle: [296, 305, 295] +Triangle: [295, 306, 297] +Triangle: [307, 305, 304] +Triangle: [308, 304, 303] +Triangle: [309, 303, 302] +Triangle: [308, 310, 311] +Triangle: [307, 311, 312] +Triangle: [306, 312, 313] +Triangle: [297, 313, 314] +Triangle: [294, 314, 315] +Triangle: [293, 315, 316] +Triangle: [311, 317, 318] +Triangle: [312, 318, 319] +Triangle: [313, 319, 320] +Triangle: [314, 320, 321] +Triangle: [315, 321, 322] +Triangle: [316, 322, 323] +Triangle: [292, 316, 323] +Triangle: [282, 324, 271] +Triangle: [291, 292, 325] +Triangle: [324, 325, 326] +Triangle: [273, 324, 326] +Triangle: [325, 323, 327] +Triangle: [326, 327, 328] +Triangle: [326, 330, 273] +Triangle: [329, 328, 425] +Triangle: [329, 332, 330] +Triangle: [333, 331, 334] +Triangle: [330, 336, 273] +Triangle: [335, 273, 336] +Triangle: [274, 338, 275] +Triangle: [275, 339, 276] +Triangle: [337, 332, 340] +Triangle: [341, 332, 333] +Triangle: [342, 335, 336] +Triangle: [338, 343, 339] +Triangle: [342, 337, 340] +Triangle: [342, 341, 343] +Triangle: [276, 344, 277] +Triangle: [345, 339, 343] +Triangle: [346, 343, 341] +Triangle: [346, 333, 347] +Triangle: [345, 347, 344] +Triangle: [344, 348, 277] +Triangle: [349, 333, 334] +Triangle: [278, 348, 350] +Triangle: [348, 349, 351] +Triangle: [350, 351, 352] +Triangle: [281, 280, 353] +Triangle: [353, 279, 354] +Triangle: [354, 278, 350] +Triangle: [355, 350, 352] +Triangle: [353, 355, 356] +Triangle: [353, 357, 281] +Triangle: [259, 281, 357] +Triangle: [358, 259, 362] +Triangle: [362, 357, 363] +Triangle: [363, 356, 364] +Triangle: [364, 365, 366] +Triangle: [366, 367, 368] +Triangle: [368, 369, 370] +Triangle: [370, 371, 372] +Triangle: [372, 373, 374] +Triangle: [374, 375, 376] +Triangle: [376, 377, 378] +Triangle: [378, 379, 380] +Triangle: [359, 362, 381] +Triangle: [382, 362, 363] +Triangle: [382, 364, 383] +Triangle: [383, 366, 384] +Triangle: [384, 368, 385] +Triangle: [385, 370, 386] +Triangle: [386, 372, 387] +Triangle: [387, 374, 388] +Triangle: [388, 376, 389] +Triangle: [389, 378, 390] +Triangle: [390, 380, 391] +Triangle: [365, 355, 352] +Triangle: [367, 352, 392] +Triangle: [369, 392, 393] +Triangle: [369, 394, 371] +Triangle: [371, 395, 373] +Triangle: [375, 395, 396] +Triangle: [375, 397, 377] +Triangle: [379, 397, 398] +Triangle: [392, 351, 399] +Triangle: [400, 351, 349] +Triangle: [393, 399, 401] +Triangle: [393, 402, 394] +Triangle: [394, 403, 395] +Triangle: [396, 403, 404] +Triangle: [396, 405, 397] +Triangle: [398, 405, 406] +Triangle: [401, 400, 407] +Triangle: [402, 407, 408] +Triangle: [403, 408, 409] +Triangle: [404, 409, 410] +Triangle: [405, 410, 411] +Triangle: [406, 411, 412] +Triangle: [407, 349, 334] +Triangle: [407, 413, 408] +Triangle: [408, 414, 409] +Triangle: [409, 415, 410] +Triangle: [411, 415, 416] +Triangle: [412, 416, 417] +Triangle: [419, 417, 416] +Triangle: [419, 415, 420] +Triangle: [420, 414, 421] +Triangle: [421, 413, 423] +Triangle: [424, 420, 421] +Triangle: [331, 425, 426] +Triangle: [427, 334, 331] +Triangle: [427, 426, 428] +Triangle: [430, 428, 426] +Triangle: [430, 425, 328] +Triangle: [431, 327, 432] +Triangle: [430, 431, 433] +Triangle: [429, 433, 434] +Triangle: [435, 327, 323] +Triangle: [435, 322, 436] +Triangle: [437, 322, 321] +Triangle: [438, 321, 320] +Triangle: [439, 320, 319] +Triangle: [440, 319, 318] +Triangle: [441, 318, 317] +Triangle: [444, 434, 433] +Triangle: [442, 445, 443] +Triangle: [422, 445, 446] +Triangle: [422, 419, 420] +Triangle: [419, 447, 418] +Triangle: [448, 446, 445] +Triangle: [448, 449, 450] +Triangle: [449, 444, 458] +Triangle: [459, 450, 449] +Triangle: [459, 458, 460] +Triangle: [461, 444, 433] +Triangle: [462, 433, 431] +Triangle: [460, 461, 462] +Triangle: [452, 459, 463] +Triangle: [463, 460, 464] +Triangle: [464, 462, 465] +Triangle: [465, 431, 432] +Triangle: [453, 463, 466] +Triangle: [466, 464, 467] +Triangle: [467, 465, 468] +Triangle: [468, 432, 435] +Triangle: [469, 435, 436] +Triangle: [468, 470, 467] +Triangle: [467, 471, 466] +Triangle: [454, 466, 471] +Triangle: [455, 471, 472] +Triangle: [456, 472, 473] +Triangle: [457, 478, 474] +Triangle: [440, 457, 474] +Triangle: [437, 475, 476] +Triangle: [436, 476, 469] +Triangle: [469, 477, 470] +Triangle: [472, 470, 477] +Triangle: [479, 476, 475] +Triangle: [473, 477, 479] +Triangle: [474, 479, 480] +Triangle: [439, 474, 480] +Triangle: [438, 480, 475] +Triangle: [475, 480, 479] +Triangle: [481, 434, 482] +Triangle: [428, 481, 483] +Triangle: [427, 483, 484] +Triangle: [443, 424, 485] +Triangle: [442, 485, 486] +Triangle: [482, 442, 486] +Triangle: [423, 427, 484] +Triangle: [487, 481, 488] +Triangle: [488, 482, 489] +Triangle: [489, 486, 490] +Triangle: [491, 486, 485] +Triangle: [492, 485, 424] +Triangle: [493, 424, 421] +Triangle: [494, 421, 423] +Triangle: [495, 423, 484] +Triangle: [484, 487, 495] +Triangle: [495, 496, 497] +Triangle: [498, 487, 488] +Triangle: [498, 489, 499] +Triangle: [499, 490, 500] +Triangle: [500, 491, 501] +Triangle: [501, 492, 502] +Triangle: [503, 492, 493] +Triangle: [504, 493, 494] +Triangle: [494, 497, 504] +Triangle: [498, 505, 508] +Triangle: [496, 508, 509] +Triangle: [497, 509, 510] +Triangle: [497, 511, 504] +Triangle: [504, 512, 503] +Triangle: [503, 513, 502] +Triangle: [502, 514, 501] +Triangle: [501, 515, 500] +Triangle: [505, 500, 515] +Triangle: [506, 515, 516] +Triangle: [516, 514, 517] +Triangle: [517, 513, 518] +Triangle: [518, 512, 519] +Triangle: [519, 511, 520] +Triangle: [521, 511, 510] +Triangle: [522, 510, 509] +Triangle: [523, 509, 508] +Triangle: [508, 506, 523] +Triangle: [524, 506, 507] +Triangle: [522, 524, 525] +Triangle: [521, 525, 526] +Triangle: [521, 527, 520] +Triangle: [520, 528, 519] +Triangle: [519, 529, 518] +Triangle: [518, 530, 517] +Triangle: [517, 531, 516] +Triangle: [507, 516, 531] +Triangle: [532, 530, 533] +Triangle: [533, 529, 534] +Triangle: [535, 529, 528] +Triangle: [535, 527, 536] +Triangle: [536, 526, 537] +Triangle: [538, 526, 525] +Triangle: [539, 525, 524] +Triangle: [539, 507, 540] +Triangle: [507, 532, 540] +Triangle: [541, 532, 533] +Triangle: [540, 542, 539] +Triangle: [538, 542, 537] +Triangle: [537, 543, 536] +Triangle: [543, 541, 544] +Triangle: [544, 533, 534] +Triangle: [535, 543, 544] +Triangle: [535, 544, 534] +Triangle: [360, 381, 545] +Triangle: [361, 545, 546] +Triangle: [547, 381, 382] +Triangle: [548, 382, 383] +Triangle: [548, 384, 549] +Triangle: [549, 385, 550] +Triangle: [550, 386, 551] +Triangle: [551, 387, 552] +Triangle: [552, 388, 553] +Triangle: [553, 389, 554] +Triangle: [554, 390, 555] +Triangle: [555, 391, 556] +Triangle: [545, 557, 546] +Triangle: [557, 548, 558] +Triangle: [558, 549, 559] +Triangle: [559, 550, 560] +Triangle: [560, 551, 561] +Triangle: [562, 551, 552] +Triangle: [563, 552, 553] +Triangle: [563, 554, 564] +Triangle: [564, 555, 565] +Triangle: [565, 556, 566] +Triangle: [568, 361, 546] +Triangle: [569, 546, 557] +Triangle: [569, 558, 570] +Triangle: [571, 558, 559] +Triangle: [571, 560, 572] +Triangle: [573, 560, 561] +Triangle: [573, 562, 574] +Triangle: [575, 562, 563] +Triangle: [576, 563, 564] +Triangle: [577, 564, 565] +Triangle: [578, 565, 566] +Triangle: [577, 579, 580] +Triangle: [576, 580, 581] +Triangle: [573, 595, 572] +Triangle: [582, 574, 603] +Triangle: [603, 602, 604] +Triangle: [604, 601, 605] +Triangle: [605, 600, 606] +Triangle: [607, 600, 599] +Triangle: [608, 599, 598] +Triangle: [609, 598, 597] +Triangle: [610, 597, 596] +Triangle: [595, 596, 572] +Triangle: [611, 582, 583] +Triangle: [611, 584, 612] +Triangle: [613, 584, 585] +Triangle: [614, 585, 586] +Triangle: [614, 587, 615] +Triangle: [615, 588, 616] +Triangle: [616, 589, 617] +Triangle: [617, 590, 618] +Triangle: [618, 591, 619] +Triangle: [620, 591, 592] +Triangle: [621, 592, 593] +Triangle: [621, 594, 622] +Triangle: [610, 611, 623] +Triangle: [609, 623, 624] +Triangle: [608, 624, 625] +Triangle: [607, 625, 626] +Triangle: [606, 626, 627] +Triangle: [606, 628, 605] +Triangle: [583, 603, 629] +Triangle: [584, 629, 630] +Triangle: [585, 630, 631] +Triangle: [586, 631, 632] +Triangle: [586, 633, 587] +Triangle: [587, 634, 588] +Triangle: [588, 635, 589] +Triangle: [590, 635, 636] +Triangle: [590, 637, 591] +Triangle: [591, 638, 592] +Triangle: [593, 638, 639] +Triangle: [593, 640, 594] +Triangle: [629, 604, 641] +Triangle: [630, 641, 642] +Triangle: [631, 642, 643] +Triangle: [632, 643, 644] +Triangle: [633, 644, 645] +Triangle: [634, 645, 646] +Triangle: [635, 646, 647] +Triangle: [636, 647, 648] +Triangle: [637, 648, 649] +Triangle: [638, 649, 650] +Triangle: [639, 650, 651] +Triangle: [640, 651, 828] +Triangle: [641, 605, 628] +Triangle: [642, 628, 652] +Triangle: [643, 652, 653] +Triangle: [644, 653, 654] +Triangle: [644, 655, 645] +Triangle: [646, 655, 656] +Triangle: [647, 656, 657] +Triangle: [648, 657, 658] +Triangle: [649, 658, 659] +Triangle: [650, 659, 660] +Triangle: [650, 661, 651] +Triangle: [652, 627, 662] +Triangle: [653, 662, 663] +Triangle: [654, 663, 664] +Triangle: [655, 664, 665] +Triangle: [656, 665, 666] +Triangle: [657, 666, 667] +Triangle: [658, 667, 668] +Triangle: [658, 669, 659] +Triangle: [659, 670, 660] +Triangle: [660, 671, 661] +Triangle: [828, 661, 671] +Triangle: [662, 626, 673] +Triangle: [662, 674, 663] +Triangle: [663, 675, 664] +Triangle: [664, 676, 665] +Triangle: [666, 676, 677] +Triangle: [667, 677, 678] +Triangle: [668, 678, 679] +Triangle: [668, 680, 669] +Triangle: [669, 681, 670] +Triangle: [670, 682, 671] +Triangle: [672, 682, 683] +Triangle: [684, 626, 625] +Triangle: [673, 685, 674] +Triangle: [674, 686, 675] +Triangle: [675, 687, 676] +Triangle: [676, 688, 677] +Triangle: [678, 688, 689] +Triangle: [679, 689, 690] +Triangle: [679, 691, 680] +Triangle: [680, 692, 681] +Triangle: [682, 692, 693] +Triangle: [683, 693, 694] +Triangle: [695, 625, 624] +Triangle: [696, 624, 623] +Triangle: [623, 612, 696] +Triangle: [697, 612, 613] +Triangle: [695, 697, 698] +Triangle: [684, 698, 685] +Triangle: [699, 613, 614] +Triangle: [698, 699, 700] +Triangle: [685, 700, 686] +Triangle: [701, 614, 615] +Triangle: [700, 701, 702] +Triangle: [686, 702, 687] +Triangle: [703, 615, 616] +Triangle: [701, 704, 702] +Triangle: [687, 704, 688] +Triangle: [703, 617, 705] +Triangle: [704, 705, 706] +Triangle: [688, 706, 689] +Triangle: [705, 618, 707] +Triangle: [705, 708, 706] +Triangle: [689, 708, 690] +Triangle: [707, 619, 709] +Triangle: [708, 709, 710] +Triangle: [690, 710, 691] +Triangle: [691, 711, 692] +Triangle: [712, 710, 709] +Triangle: [712, 619, 620] +Triangle: [712, 621, 713] +Triangle: [711, 713, 714] +Triangle: [692, 714, 693] +Triangle: [693, 715, 694] +Triangle: [716, 714, 713] +Triangle: [713, 622, 716] +Triangle: [570, 572, 596] +Triangle: [570, 717, 569] +Triangle: [568, 717, 718] +Triangle: [568, 719, 567] +Triangle: [717, 597, 720] +Triangle: [717, 721, 718] +Triangle: [718, 722, 719] +Triangle: [720, 723, 724] +Triangle: [721, 724, 725] +Triangle: [722, 725, 726] +Triangle: [728, 726, 725] +Triangle: [729, 725, 724] +Triangle: [729, 723, 730] +Triangle: [723, 598, 731] +Triangle: [731, 599, 732] +Triangle: [733, 599, 600] +Triangle: [730, 731, 734] +Triangle: [734, 732, 735] +Triangle: [736, 732, 733] +Triangle: [738, 727, 728] +Triangle: [739, 728, 729] +Triangle: [739, 730, 740] +Triangle: [740, 734, 741] +Triangle: [741, 735, 742] +Triangle: [743, 735, 736] +Triangle: [744, 738, 745] +Triangle: [745, 739, 746] +Triangle: [746, 740, 747] +Triangle: [747, 741, 748] +Triangle: [748, 742, 749] +Triangle: [750, 742, 743] +Triangle: [576, 751, 575] +Triangle: [602, 575, 751] +Triangle: [602, 752, 601] +Triangle: [753, 600, 601] +Triangle: [753, 752, 754] +Triangle: [733, 754, 736] +Triangle: [736, 755, 743] +Triangle: [743, 756, 750] +Triangle: [757, 745, 758] +Triangle: [758, 746, 759] +Triangle: [759, 747, 760] +Triangle: [760, 748, 761] +Triangle: [761, 749, 762] +Triangle: [763, 749, 750] +Triangle: [764, 750, 756] +Triangle: [765, 751, 581] +Triangle: [766, 581, 580] +Triangle: [766, 579, 767] +Triangle: [752, 768, 754] +Triangle: [768, 766, 767] +Triangle: [768, 769, 770] +Triangle: [754, 770, 755] +Triangle: [755, 771, 756] +Triangle: [771, 769, 772] +Triangle: [756, 773, 764] +Triangle: [774, 771, 772] +Triangle: [622, 775, 779] +Triangle: [779, 776, 780] +Triangle: [780, 777, 781] +Triangle: [782, 777, 778] +Triangle: [775, 640, 783] +Triangle: [775, 784, 776] +Triangle: [776, 785, 777] +Triangle: [777, 786, 778] +Triangle: [778, 788, 782] +Triangle: [787, 786, 789] +Triangle: [781, 788, 790] +Triangle: [781, 791, 780] +Triangle: [780, 792, 779] +Triangle: [716, 779, 793] +Triangle: [793, 792, 794] +Triangle: [715, 793, 795] +Triangle: [795, 794, 796] +Triangle: [694, 795, 797] +Triangle: [797, 796, 798] +Triangle: [794, 801, 803] +Triangle: [794, 804, 796] +Triangle: [798, 804, 805] +Triangle: [800, 805, 806] +Triangle: [800, 807, 825] +Triangle: [801, 825, 807] +Triangle: [808, 801, 802] +Triangle: [803, 809, 804] +Triangle: [805, 809, 810] +Triangle: [806, 810, 811] +Triangle: [806, 812, 807] +Triangle: [802, 807, 812] +Triangle: [815, 809, 808] +Triangle: [815, 802, 816] +Triangle: [812, 816, 802] +Triangle: [815, 813, 814] +Triangle: [809, 817, 810] +Triangle: [810, 818, 811] +Triangle: [812, 818, 813] +Triangle: [813, 817, 814] +Triangle: [783, 828, 819] +Triangle: [783, 820, 784] +Triangle: [785, 820, 821] +Triangle: [786, 821, 789] +Triangle: [820, 822, 823] +Triangle: [821, 823, 824] +Triangle: [789, 824, 787] +Triangle: [788, 824, 790] +Triangle: [791, 824, 823] +Triangle: [799, 823, 822] +Triangle: [799, 792, 791] +Triangle: [825, 826, 800] +Triangle: [798, 826, 797] +Triangle: [826, 822, 827] +Triangle: [828, 672, 819] +Triangle: [819, 827, 822] +Triangle: [827, 683, 826] +Triangle: [826, 694, 797] +Triangle: [829, 758, 830] +Triangle: [830, 759, 831] +Triangle: [831, 760, 832] +Triangle: [833, 760, 761] +Triangle: [833, 762, 834] +Triangle: [774, 844, 773] +Triangle: [773, 845, 764] +Triangle: [764, 846, 763] +Triangle: [834, 763, 846] +Triangle: [847, 843, 842] +Triangle: [845, 847, 848] +Triangle: [846, 848, 849] +Triangle: [846, 850, 834] +Triangle: [834, 851, 833] +Triangle: [832, 851, 852] +Triangle: [832, 853, 831] +Triangle: [831, 854, 830] +Triangle: [835, 830, 854] +Triangle: [836, 854, 855] +Triangle: [855, 853, 856] +Triangle: [856, 852, 857] +Triangle: [858, 852, 851] +Triangle: [858, 850, 859] +Triangle: [859, 849, 860] +Triangle: [861, 849, 848] +Triangle: [861, 847, 862] +Triangle: [862, 842, 841] +Triangle: [863, 841, 840] +Triangle: [861, 863, 864] +Triangle: [860, 864, 865] +Triangle: [859, 865, 866] +Triangle: [858, 866, 867] +Triangle: [857, 867, 868] +Triangle: [857, 869, 856] +Triangle: [856, 870, 855] +Triangle: [837, 855, 870] +Triangle: [837, 871, 838] +Triangle: [838, 872, 839] +Triangle: [872, 840, 839] +Triangle: [864, 873, 874] +Triangle: [864, 875, 865] +Triangle: [866, 875, 876] +Triangle: [867, 876, 877] +Triangle: [867, 878, 868] +Triangle: [868, 879, 869] +Triangle: [869, 880, 870] +Triangle: [871, 880, 881] +Triangle: [872, 881, 882] +Triangle: [873, 872, 882] +Triangle: [878, 884, 879] +Triangle: [879, 885, 880] +Triangle: [881, 885, 886] +Triangle: [882, 886, 887] +Triangle: [882, 888, 873] +Triangle: [873, 889, 874] +Triangle: [874, 890, 875] +Triangle: [876, 890, 891] +Triangle: [877, 891, 892] +Triangle: [883, 877, 892] +Triangle: [891, 893, 896] +Triangle: [892, 896, 897] +Triangle: [892, 898, 883] +Triangle: [883, 899, 884] +Triangle: [884, 900, 885] +Triangle: [886, 900, 901] +Triangle: [887, 901, 902] +Triangle: [887, 903, 888] +Triangle: [888, 904, 889] +Triangle: [893, 889, 904] +Triangle: [896, 894, 905] +Triangle: [897, 905, 906] +Triangle: [897, 907, 898] +Triangle: [898, 908, 899] +Triangle: [900, 908, 909] +Triangle: [901, 909, 910] +Triangle: [902, 910, 911] +Triangle: [902, 912, 903] +Triangle: [903, 913, 904] +Triangle: [894, 904, 913] +Triangle: [914, 894, 895] +Triangle: [905, 915, 906] +Triangle: [906, 916, 907] +Triangle: [907, 917, 908] +Triangle: [909, 917, 918] +Triangle: [910, 918, 919] +Triangle: [911, 919, 920] +Triangle: [911, 921, 912] +Triangle: [912, 922, 913] +Triangle: [895, 913, 922] +Triangle: [914, 923, 924] +Triangle: [915, 924, 925] +Triangle: [915, 926, 916] +Triangle: [916, 927, 917] +Triangle: [917, 928, 918] +Triangle: [919, 928, 929] +Triangle: [920, 929, 930] +Triangle: [920, 931, 921] +Triangle: [921, 932, 922] +Triangle: [923, 922, 932] +Triangle: [923, 934, 933] +Triangle: [924, 933, 935] +Triangle: [925, 935, 936] +Triangle: [926, 936, 937] +Triangle: [926, 938, 927] +Triangle: [927, 939, 928] +Triangle: [928, 940, 929] +Triangle: [929, 941, 930] +Triangle: [930, 942, 931] +Triangle: [934, 931, 942] +Triangle: [933, 943, 944] +Triangle: [935, 944, 945] +Triangle: [943, 942, 946] +Triangle: [946, 941, 947] +Triangle: [948, 941, 940] +Triangle: [949, 940, 939] +Triangle: [950, 939, 938] +Triangle: [950, 937, 951] +Triangle: [952, 937, 936] +Triangle: [936, 945, 952] +Triangle: [952, 954, 951] +Triangle: [951, 955, 950] +Triangle: [949, 955, 956] +Triangle: [949, 957, 948] +Triangle: [947, 957, 958] +Triangle: [947, 959, 946] +Triangle: [946, 960, 943] +Triangle: [944, 960, 961] +Triangle: [945, 961, 962] +Triangle: [952, 962, 953] +Triangle: [965, 955, 954] +Triangle: [965, 953, 966] +Triangle: [967, 953, 962] +Triangle: [968, 962, 961] +Triangle: [968, 960, 969] +Triangle: [970, 960, 959] +Triangle: [970, 958, 971] +Triangle: [971, 957, 972] +Triangle: [972, 956, 973] +Triangle: [973, 955, 963] +Triangle: [973, 964, 976] +Triangle: [973, 977, 972] +Triangle: [972, 978, 971] +Triangle: [971, 979, 970] +Triangle: [969, 979, 980] +Triangle: [969, 981, 968] +Triangle: [968, 982, 967] +Triangle: [967, 983, 966] +Triangle: [965, 983, 984] +Triangle: [963, 984, 964] +Triangle: [964, 985, 974] +Triangle: [974, 986, 975] +Triangle: [987, 964, 974] +Triangle: [988, 974, 975] +Triangle: [988, 990, 987] +Triangle: [987, 991, 976] +Triangle: [976, 992, 977] +Triangle: [978, 992, 993] +Triangle: [978, 994, 979] +Triangle: [980, 994, 995] +Triangle: [980, 996, 981] +Triangle: [981, 997, 982] +Triangle: [982, 998, 983] +Triangle: [984, 998, 999] +Triangle: [985, 999, 1000] +Triangle: [986, 1000, 1001] +Triangle: [975, 1001, 1002] +Triangle: [988, 1002, 989] +Triangle: [995, 1004, 996] +Triangle: [997, 1004, 1005] +Triangle: [998, 1005, 1006] +Triangle: [1006, 1004, 1007] +Triangle: [999, 1006, 1008] +Triangle: [1000, 1008, 1009] +Triangle: [1008, 1007, 1010] +Triangle: [1009, 1010, 1011] +Triangle: [1007, 1003, 1012] +Triangle: [1003, 994, 993] +Triangle: [1012, 993, 992] +Triangle: [1010, 1012, 1013] +Triangle: [1013, 992, 991] +Triangle: [1011, 1013, 1014] +Triangle: [1014, 991, 990] +Triangle: [1001, 1009, 1015] +Triangle: [1002, 1015, 1016] +Triangle: [1002, 1017, 989] +Triangle: [1015, 1011, 1018] +Triangle: [1016, 1018, 1017] +Triangle: [1018, 1014, 1017] +Triangle: [1017, 990, 989] +Triangle: [1019, 173, 172] +Triangle: [1021, 1020, 1019] +Triangle: [1023, 173, 1020] +Triangle: [1022, 1023, 1020] +Triangle: [1025, 176, 1023] +Triangle: [1026, 1023, 1024] +Triangle: [1027, 179, 1025] +Triangle: [1027, 184, 182] +Triangle: [1028, 186, 184] +Triangle: [1030, 1025, 1026] +Triangle: [1031, 1027, 1030] +Triangle: [1029, 1031, 1032] +Triangle: [1033, 172, 191] +Triangle: [192, 1033, 191] +Triangle: [193, 1034, 192] +Triangle: [1036, 1019, 1033] +Triangle: [1036, 1034, 1035] +Triangle: [1037, 193, 198] +Triangle: [1037, 1038, 1035] +Triangle: [1040, 1035, 1038] +Triangle: [1041, 1036, 1040] +Triangle: [1022, 1041, 1042] +Triangle: [1024, 1042, 1043] +Triangle: [1026, 1043, 1044] +Triangle: [1030, 1044, 1045] +Triangle: [1031, 1045, 1046] +Triangle: [1032, 1046, 1047] +Triangle: [198, 1051, 1037] +Triangle: [1039, 1051, 1050] +Triangle: [1048, 1039, 1050] +Triangle: [1048, 1049, 1052] +Triangle: [1051, 1049, 1050] +Triangle: [217, 1051, 214] +Triangle: [1054, 1039, 1052] +Triangle: [1054, 1055, 1056] +Triangle: [1057, 1052, 1049] +Triangle: [1058, 1049, 1053] +Triangle: [223, 1053, 217] +Triangle: [1059, 1038, 1054] +Triangle: [1060, 1040, 1059] +Triangle: [1056, 1059, 1054] +Triangle: [1060, 1061, 1062] +Triangle: [1042, 1060, 1063] +Triangle: [1043, 1063, 1064] +Triangle: [1065, 1043, 1064] +Triangle: [1045, 1065, 1066] +Triangle: [1067, 1045, 1066] +Triangle: [1047, 1067, 1068] +Triangle: [1062, 1063, 1060] +Triangle: [1070, 1063, 1069] +Triangle: [1071, 1064, 1070] +Triangle: [1072, 1065, 1071] +Triangle: [1058, 238, 1073] +Triangle: [1074, 1058, 1073] +Triangle: [1055, 1074, 1075] +Triangle: [1056, 1075, 1076] +Triangle: [1061, 1076, 1077] +Triangle: [1062, 1077, 1078] +Triangle: [1069, 1078, 1079] +Triangle: [1080, 1069, 1079] +Triangle: [1071, 1080, 1081] +Triangle: [1072, 1081, 1082] +Triangle: [1084, 1072, 1082] +Triangle: [1067, 1072, 1083] +Triangle: [1068, 1083, 1085] +Triangle: [1073, 252, 1086] +Triangle: [253, 1086, 252] +Triangle: [254, 1087, 253] +Triangle: [255, 1088, 254] +Triangle: [1074, 1086, 1090] +Triangle: [1087, 1090, 1086] +Triangle: [1075, 1090, 1092] +Triangle: [1076, 1092, 1093] +Triangle: [1077, 1093, 1094] +Triangle: [1078, 1094, 1095] +Triangle: [1079, 1095, 1096] +Triangle: [1097, 1079, 1096] +Triangle: [1098, 1080, 1097] +Triangle: [1099, 1081, 1098] +Triangle: [1100, 1083, 1084] +Triangle: [1082, 1100, 1084] +Triangle: [1102, 1098, 1097] +Triangle: [1102, 1103, 1101] +Triangle: [1105, 1102, 1097] +Triangle: [1096, 1105, 1097] +Triangle: [1107, 1096, 1095] +Triangle: [1108, 1095, 1094] +Triangle: [1109, 1094, 1093] +Triangle: [1110, 1093, 1092] +Triangle: [1091, 1092, 1090] +Triangle: [1088, 1091, 1087] +Triangle: [1112, 1098, 1101] +Triangle: [1029, 283, 186] +Triangle: [1032, 1113, 1029] +Triangle: [1047, 1114, 1032] +Triangle: [1068, 1115, 1047] +Triangle: [1085, 1116, 1068] +Triangle: [1100, 1117, 1085] +Triangle: [1119, 1100, 1099] +Triangle: [1120, 1099, 1112] +Triangle: [1122, 1119, 1121] +Triangle: [1123, 1118, 1122] +Triangle: [1125, 1117, 1124] +Triangle: [1123, 1124, 1117] +Triangle: [1127, 1116, 1125] +Triangle: [1114, 1127, 1128] +Triangle: [1113, 1128, 1129] +Triangle: [283, 1129, 301] +Triangle: [1129, 302, 301] +Triangle: [1128, 1130, 1129] +Triangle: [1127, 1131, 1128] +Triangle: [1132, 1125, 1124] +Triangle: [1133, 1124, 1126] +Triangle: [1134, 1132, 1133] +Triangle: [1135, 1131, 1134] +Triangle: [309, 1130, 1135] +Triangle: [1135, 310, 309] +Triangle: [1134, 1136, 1135] +Triangle: [1133, 1137, 1134] +Triangle: [1126, 1138, 1133] +Triangle: [1123, 1139, 1126] +Triangle: [1122, 1140, 1123] +Triangle: [1136, 317, 310] +Triangle: [1137, 1142, 1136] +Triangle: [1138, 1143, 1137] +Triangle: [1139, 1144, 1138] +Triangle: [1140, 1145, 1139] +Triangle: [1141, 1146, 1140] +Triangle: [1121, 1141, 1122] +Triangle: [1148, 1112, 1101] +Triangle: [1120, 1121, 1119] +Triangle: [1148, 1149, 1120] +Triangle: [1103, 1148, 1101] +Triangle: [1147, 1149, 1151] +Triangle: [1150, 1151, 1149] +Triangle: [1154, 1150, 1103] +Triangle: [1152, 1153, 1237] +Triangle: [1156, 1153, 1154] +Triangle: [1155, 1157, 1158] +Triangle: [1154, 1160, 1161] +Triangle: [1159, 1103, 1104] +Triangle: [1162, 1104, 1105] +Triangle: [1163, 1105, 1106] +Triangle: [1156, 1161, 1164] +Triangle: [1165, 1156, 1164] +Triangle: [1159, 1166, 1160] +Triangle: [1167, 1162, 1163] +Triangle: [1166, 1161, 1160] +Triangle: [1165, 1166, 1167] +Triangle: [1168, 1106, 1107] +Triangle: [1169, 1163, 1168] +Triangle: [1170, 1167, 1169] +Triangle: [1157, 1170, 1171] +Triangle: [1169, 1171, 1170] +Triangle: [1172, 1168, 1107] +Triangle: [1173, 1157, 1171] +Triangle: [1108, 1172, 1107] +Triangle: [1172, 1173, 1171] +Triangle: [1174, 1175, 1172] +Triangle: [1110, 1111, 1177] +Triangle: [1109, 1177, 1178] +Triangle: [1178, 1108, 1109] +Triangle: [1179, 1174, 1178] +Triangle: [1177, 1179, 1178] +Triangle: [1181, 1177, 1111] +Triangle: [1089, 1111, 1088] +Triangle: [1089, 358, 1182] +Triangle: [1181, 1182, 1183] +Triangle: [1180, 1183, 1184] +Triangle: [1184, 1185, 1180] +Triangle: [1186, 1187, 1185] +Triangle: [1188, 1189, 1187] +Triangle: [1191, 1190, 1192] +Triangle: [1192, 1193, 1191] +Triangle: [1194, 1195, 1193] +Triangle: [1196, 1197, 1195] +Triangle: [1198, 379, 1197] +Triangle: [359, 1182, 358] +Triangle: [1200, 1182, 1199] +Triangle: [1184, 1200, 1201] +Triangle: [1186, 1201, 1202] +Triangle: [1188, 1202, 1203] +Triangle: [1190, 1203, 1204] +Triangle: [1192, 1204, 1205] +Triangle: [1194, 1205, 1206] +Triangle: [1196, 1206, 1207] +Triangle: [1198, 1207, 1208] +Triangle: [380, 1208, 391] +Triangle: [1185, 1179, 1180] +Triangle: [1187, 1176, 1185] +Triangle: [1189, 1209, 1187] +Triangle: [1211, 1189, 1191] +Triangle: [1212, 1191, 1193] +Triangle: [1195, 1212, 1193] +Triangle: [1214, 1195, 1197] +Triangle: [379, 1214, 1197] +Triangle: [1175, 1209, 1215] +Triangle: [1216, 1175, 1215] +Triangle: [1210, 1215, 1209] +Triangle: [1218, 1210, 1211] +Triangle: [1219, 1211, 1212] +Triangle: [1213, 1219, 1212] +Triangle: [1221, 1213, 1214] +Triangle: [398, 1221, 1214] +Triangle: [1216, 1217, 1222] +Triangle: [1218, 1222, 1217] +Triangle: [1219, 1223, 1218] +Triangle: [1220, 1224, 1219] +Triangle: [1221, 1225, 1220] +Triangle: [406, 1226, 1221] +Triangle: [1222, 1173, 1216] +Triangle: [1227, 1222, 1223] +Triangle: [1228, 1223, 1224] +Triangle: [1229, 1224, 1225] +Triangle: [1226, 1229, 1225] +Triangle: [412, 1230, 1226] +Triangle: [1231, 417, 418] +Triangle: [1229, 1231, 1232] +Triangle: [1228, 1232, 1233] +Triangle: [1227, 1233, 1235] +Triangle: [1236, 1232, 1234] +Triangle: [1155, 1237, 1156] +Triangle: [1239, 1158, 1227] +Triangle: [1238, 1239, 1240] +Triangle: [1242, 1240, 1241] +Triangle: [1242, 1237, 1238] +Triangle: [1151, 1243, 1244] +Triangle: [1242, 1243, 1152] +Triangle: [1241, 1245, 1242] +Triangle: [1247, 1151, 1244] +Triangle: [1146, 1247, 1248] +Triangle: [1249, 1146, 1248] +Triangle: [1250, 1145, 1249] +Triangle: [1251, 1144, 1250] +Triangle: [1252, 1143, 1251] +Triangle: [441, 1142, 1252] +Triangle: [1255, 1246, 1253] +Triangle: [1256, 1253, 1254] +Triangle: [1234, 1256, 1254] +Triangle: [1231, 1234, 1232] +Triangle: [447, 1231, 418] +Triangle: [448, 1257, 447] +Triangle: [448, 1258, 1256] +Triangle: [1255, 1258, 1259] +Triangle: [1260, 450, 451] +Triangle: [1259, 1260, 1261] +Triangle: [1262, 1255, 1259] +Triangle: [1263, 1245, 1262] +Triangle: [1261, 1262, 1259] +Triangle: [452, 1260, 451] +Triangle: [1261, 1264, 1265] +Triangle: [1263, 1265, 1266] +Triangle: [1266, 1243, 1263] +Triangle: [453, 1264, 452] +Triangle: [1265, 1267, 1268] +Triangle: [1266, 1268, 1269] +Triangle: [1269, 1244, 1266] +Triangle: [1270, 1247, 1269] +Triangle: [1271, 1269, 1268] +Triangle: [1272, 1268, 1267] +Triangle: [454, 1267, 453] +Triangle: [455, 1272, 454] +Triangle: [456, 1273, 455] +Triangle: [457, 1279, 456] +Triangle: [1252, 457, 441] +Triangle: [1249, 1276, 1250] +Triangle: [1277, 1248, 1270] +Triangle: [1278, 1270, 1271] +Triangle: [1273, 1271, 1272] +Triangle: [1280, 1277, 1278] +Triangle: [1274, 1278, 1273] +Triangle: [1275, 1280, 1279] +Triangle: [1251, 1275, 1252] +Triangle: [1281, 1250, 1276] +Triangle: [1276, 1280, 1281] +Triangle: [1246, 1282, 1283] +Triangle: [1240, 1282, 1241] +Triangle: [1239, 1284, 1240] +Triangle: [1236, 1254, 1286] +Triangle: [1253, 1286, 1254] +Triangle: [1283, 1253, 1246] +Triangle: [1235, 1239, 1227] +Triangle: [1282, 1288, 1289] +Triangle: [1283, 1289, 1290] +Triangle: [1287, 1290, 1291] +Triangle: [1292, 1287, 1291] +Triangle: [1293, 1286, 1292] +Triangle: [1294, 1236, 1293] +Triangle: [1295, 1233, 1294] +Triangle: [1296, 1235, 1295] +Triangle: [1288, 1285, 1296] +Triangle: [1296, 1297, 1288] +Triangle: [1299, 1288, 1297] +Triangle: [1290, 1299, 1300] +Triangle: [1291, 1300, 1301] +Triangle: [1292, 1301, 1302] +Triangle: [1293, 1302, 1303] +Triangle: [1304, 1293, 1303] +Triangle: [1305, 1294, 1304] +Triangle: [1298, 1295, 1305] +Triangle: [1299, 1306, 1300] +Triangle: [1297, 1309, 1299] +Triangle: [1298, 1310, 1297] +Triangle: [1312, 1298, 1305] +Triangle: [1313, 1305, 1304] +Triangle: [1314, 1304, 1303] +Triangle: [1315, 1303, 1302] +Triangle: [1316, 1302, 1301] +Triangle: [1306, 1301, 1300] +Triangle: [1307, 1316, 1306] +Triangle: [1315, 1317, 1318] +Triangle: [1314, 1318, 1319] +Triangle: [1313, 1319, 1320] +Triangle: [1312, 1320, 1321] +Triangle: [1322, 1312, 1321] +Triangle: [1323, 1311, 1322] +Triangle: [1324, 1310, 1323] +Triangle: [1307, 1309, 1324] +Triangle: [1325, 1307, 1324] +Triangle: [1323, 1325, 1324] +Triangle: [1322, 1326, 1323] +Triangle: [1328, 1322, 1321] +Triangle: [1329, 1321, 1320] +Triangle: [1330, 1320, 1319] +Triangle: [1331, 1319, 1318] +Triangle: [1332, 1318, 1317] +Triangle: [1308, 1317, 1307] +Triangle: [1331, 1333, 1334] +Triangle: [1330, 1334, 1335] +Triangle: [1336, 1330, 1335] +Triangle: [1328, 1336, 1337] +Triangle: [1327, 1337, 1338] +Triangle: [1339, 1327, 1338] +Triangle: [1340, 1326, 1339] +Triangle: [1308, 1340, 1341] +Triangle: [1333, 1308, 1341] +Triangle: [1342, 1333, 1341] +Triangle: [1343, 1341, 1340] +Triangle: [1343, 1339, 1338] +Triangle: [1344, 1338, 1337] +Triangle: [1342, 1344, 1345] +Triangle: [1345, 1334, 1342] +Triangle: [1336, 1344, 1337] +Triangle: [1336, 1335, 1345] +Triangle: [360, 1199, 359] +Triangle: [361, 1346, 360] +Triangle: [1348, 1199, 1346] +Triangle: [1349, 1200, 1348] +Triangle: [1202, 1349, 1350] +Triangle: [1203, 1350, 1351] +Triangle: [1204, 1351, 1352] +Triangle: [1205, 1352, 1353] +Triangle: [1206, 1353, 1354] +Triangle: [1207, 1354, 1355] +Triangle: [1208, 1355, 1356] +Triangle: [391, 1356, 556] +Triangle: [1357, 1346, 1347] +Triangle: [1349, 1357, 1358] +Triangle: [1350, 1358, 1359] +Triangle: [1351, 1359, 1360] +Triangle: [1352, 1360, 1361] +Triangle: [1362, 1352, 1361] +Triangle: [1363, 1353, 1362] +Triangle: [1355, 1363, 1364] +Triangle: [1356, 1364, 1365] +Triangle: [556, 1365, 566] +Triangle: [1366, 361, 567] +Triangle: [1367, 1347, 1366] +Triangle: [1358, 1367, 1368] +Triangle: [1369, 1358, 1368] +Triangle: [1360, 1369, 1370] +Triangle: [1371, 1360, 1370] +Triangle: [1362, 1371, 1372] +Triangle: [1373, 1362, 1372] +Triangle: [1374, 1363, 1373] +Triangle: [1375, 1364, 1374] +Triangle: [578, 1365, 1375] +Triangle: [1375, 579, 578] +Triangle: [1374, 1376, 1375] +Triangle: [1391, 1371, 1370] +Triangle: [1372, 1378, 1399] +Triangle: [1398, 1399, 1400] +Triangle: [1397, 1400, 1401] +Triangle: [1396, 1401, 1402] +Triangle: [1403, 1396, 1402] +Triangle: [1404, 1395, 1403] +Triangle: [1405, 1394, 1404] +Triangle: [1406, 1393, 1405] +Triangle: [1391, 1392, 1406] +Triangle: [1407, 1378, 1391] +Triangle: [1380, 1407, 1408] +Triangle: [1409, 1380, 1408] +Triangle: [1410, 1381, 1409] +Triangle: [1383, 1410, 1411] +Triangle: [1384, 1411, 1412] +Triangle: [1385, 1412, 1413] +Triangle: [1386, 1413, 1414] +Triangle: [1387, 1414, 1415] +Triangle: [1416, 1387, 1415] +Triangle: [1417, 1388, 1416] +Triangle: [1390, 1417, 1418] +Triangle: [1406, 1407, 1391] +Triangle: [1405, 1419, 1406] +Triangle: [1404, 1420, 1405] +Triangle: [1403, 1421, 1404] +Triangle: [1402, 1422, 1403] +Triangle: [1424, 1402, 1401] +Triangle: [1379, 1399, 1378] +Triangle: [1380, 1425, 1379] +Triangle: [1381, 1426, 1380] +Triangle: [1382, 1427, 1381] +Triangle: [1429, 1382, 1383] +Triangle: [1430, 1383, 1384] +Triangle: [1431, 1384, 1385] +Triangle: [1386, 1431, 1385] +Triangle: [1433, 1386, 1387] +Triangle: [1434, 1387, 1388] +Triangle: [1389, 1434, 1388] +Triangle: [1436, 1389, 1390] +Triangle: [1400, 1425, 1437] +Triangle: [1426, 1437, 1425] +Triangle: [1427, 1438, 1426] +Triangle: [1428, 1439, 1427] +Triangle: [1429, 1440, 1428] +Triangle: [1430, 1441, 1429] +Triangle: [1431, 1442, 1430] +Triangle: [1432, 1443, 1431] +Triangle: [1433, 1444, 1432] +Triangle: [1434, 1445, 1433] +Triangle: [1435, 1446, 1434] +Triangle: [1436, 1447, 1435] +Triangle: [1437, 1401, 1400] +Triangle: [1438, 1424, 1437] +Triangle: [1439, 1448, 1438] +Triangle: [1440, 1449, 1439] +Triangle: [1451, 1440, 1441] +Triangle: [1442, 1451, 1441] +Triangle: [1443, 1452, 1442] +Triangle: [1444, 1453, 1443] +Triangle: [1445, 1454, 1444] +Triangle: [1446, 1455, 1445] +Triangle: [1457, 1446, 1447] +Triangle: [1423, 1448, 1458] +Triangle: [1449, 1458, 1448] +Triangle: [1450, 1459, 1449] +Triangle: [1451, 1460, 1450] +Triangle: [1452, 1461, 1451] +Triangle: [1453, 1462, 1452] +Triangle: [1454, 1463, 1453] +Triangle: [1465, 1454, 1455] +Triangle: [1466, 1455, 1456] +Triangle: [1467, 1456, 1457] +Triangle: [1613, 1457, 1447] +Triangle: [1422, 1458, 1469] +Triangle: [1470, 1458, 1459] +Triangle: [1471, 1459, 1460] +Triangle: [1472, 1460, 1461] +Triangle: [1462, 1472, 1461] +Triangle: [1463, 1473, 1462] +Triangle: [1464, 1474, 1463] +Triangle: [1476, 1464, 1465] +Triangle: [1477, 1465, 1466] +Triangle: [1478, 1466, 1467] +Triangle: [1468, 1478, 1467] +Triangle: [1480, 1422, 1469] +Triangle: [1481, 1469, 1470] +Triangle: [1482, 1470, 1471] +Triangle: [1483, 1471, 1472] +Triangle: [1484, 1472, 1473] +Triangle: [1474, 1484, 1473] +Triangle: [1475, 1485, 1474] +Triangle: [1487, 1475, 1476] +Triangle: [1488, 1476, 1477] +Triangle: [1478, 1488, 1477] +Triangle: [1479, 1489, 1478] +Triangle: [1491, 1421, 1480] +Triangle: [1492, 1420, 1491] +Triangle: [1408, 1419, 1492] +Triangle: [1493, 1408, 1492] +Triangle: [1491, 1493, 1492] +Triangle: [1494, 1480, 1481] +Triangle: [1495, 1409, 1493] +Triangle: [1494, 1495, 1493] +Triangle: [1496, 1481, 1482] +Triangle: [1497, 1410, 1495] +Triangle: [1496, 1497, 1495] +Triangle: [1498, 1482, 1483] +Triangle: [1499, 1411, 1497] +Triangle: [1500, 1497, 1498] +Triangle: [1500, 1483, 1484] +Triangle: [1413, 1499, 1501] +Triangle: [1500, 1501, 1499] +Triangle: [1502, 1484, 1485] +Triangle: [1414, 1501, 1503] +Triangle: [1504, 1501, 1502] +Triangle: [1504, 1485, 1486] +Triangle: [1415, 1503, 1505] +Triangle: [1504, 1505, 1503] +Triangle: [1506, 1486, 1487] +Triangle: [1507, 1487, 1488] +Triangle: [1508, 1506, 1507] +Triangle: [1508, 1415, 1505] +Triangle: [1417, 1508, 1509] +Triangle: [1507, 1509, 1508] +Triangle: [1510, 1488, 1489] +Triangle: [1511, 1489, 1490] +Triangle: [1512, 1510, 1511] +Triangle: [1418, 1509, 1512] +Triangle: [1368, 1370, 1369] +Triangle: [1513, 1368, 1367] +Triangle: [1366, 1513, 1367] +Triangle: [719, 1366, 567] +Triangle: [1393, 1513, 1515] +Triangle: [1516, 1513, 1514] +Triangle: [722, 1514, 719] +Triangle: [1515, 1517, 1393] +Triangle: [1516, 1518, 1515] +Triangle: [722, 1519, 1516] +Triangle: [1520, 726, 727] +Triangle: [1521, 1519, 1520] +Triangle: [1517, 1521, 1522] +Triangle: [1394, 1517, 1523] +Triangle: [1395, 1523, 1524] +Triangle: [1525, 1395, 1524] +Triangle: [1522, 1523, 1517] +Triangle: [1524, 1526, 1527] +Triangle: [1528, 1524, 1527] +Triangle: [1529, 727, 737] +Triangle: [1530, 1520, 1529] +Triangle: [1522, 1530, 1531] +Triangle: [1526, 1531, 1532] +Triangle: [1527, 1532, 1533] +Triangle: [1534, 1527, 1533] +Triangle: [1529, 744, 1535] +Triangle: [1530, 1535, 1536] +Triangle: [1531, 1536, 1537] +Triangle: [1532, 1537, 1538] +Triangle: [1533, 1538, 1539] +Triangle: [1540, 1533, 1539] +Triangle: [1541, 1374, 1373] +Triangle: [1398, 1373, 1372] +Triangle: [1542, 1398, 1397] +Triangle: [1396, 1543, 1397] +Triangle: [1542, 1543, 1544] +Triangle: [1544, 1525, 1528] +Triangle: [1545, 1528, 1534] +Triangle: [1546, 1534, 1540] +Triangle: [1535, 757, 1547] +Triangle: [1536, 1547, 1548] +Triangle: [1537, 1548, 1549] +Triangle: [1538, 1549, 1550] +Triangle: [1539, 1550, 1551] +Triangle: [1552, 1539, 1551] +Triangle: [1553, 1540, 1552] +Triangle: [1554, 1541, 1542] +Triangle: [1555, 1377, 1554] +Triangle: [579, 1555, 767] +Triangle: [1556, 1542, 1544] +Triangle: [1556, 1555, 1554] +Triangle: [1556, 769, 767] +Triangle: [1557, 1544, 1545] +Triangle: [1558, 1545, 1546] +Triangle: [769, 1558, 772] +Triangle: [1559, 1546, 1553] +Triangle: [774, 1558, 1559] +Triangle: [1418, 1560, 1390] +Triangle: [1561, 1564, 1565] +Triangle: [1562, 1565, 1566] +Triangle: [1567, 1562, 1566] +Triangle: [1436, 1560, 1568] +Triangle: [1569, 1560, 1561] +Triangle: [1570, 1561, 1562] +Triangle: [1571, 1562, 1563] +Triangle: [1573, 1563, 1567] +Triangle: [1571, 1572, 1574] +Triangle: [1566, 1573, 1567] +Triangle: [1576, 1566, 1565] +Triangle: [1577, 1565, 1564] +Triangle: [1512, 1564, 1418] +Triangle: [1577, 1578, 1579] +Triangle: [1511, 1578, 1512] +Triangle: [1579, 1580, 1581] +Triangle: [1490, 1580, 1511] +Triangle: [1581, 1582, 1583] +Triangle: [1579, 1586, 1577] +Triangle: [1589, 1579, 1581] +Triangle: [1583, 1589, 1581] +Triangle: [1585, 1590, 1583] +Triangle: [1592, 1585, 1610] +Triangle: [1586, 1610, 1577] +Triangle: [1593, 1586, 1588] +Triangle: [1594, 1588, 1589] +Triangle: [1590, 1594, 1589] +Triangle: [1591, 1595, 1590] +Triangle: [1597, 1591, 1592] +Triangle: [1587, 1592, 1586] +Triangle: [1600, 1594, 1599] +Triangle: [1600, 1587, 1593] +Triangle: [1601, 1597, 1587] +Triangle: [1598, 1600, 1599] +Triangle: [1602, 1594, 1595] +Triangle: [1603, 1595, 1596] +Triangle: [1603, 1597, 1598] +Triangle: [1598, 1602, 1603] +Triangle: [1613, 1568, 1604] +Triangle: [1605, 1568, 1569] +Triangle: [1570, 1605, 1569] +Triangle: [1606, 1571, 1574] +Triangle: [1605, 1607, 1604] +Triangle: [1606, 1608, 1605] +Triangle: [1609, 1574, 1572] +Triangle: [1609, 1573, 1575] +Triangle: [1576, 1609, 1575] +Triangle: [1584, 1608, 1576] +Triangle: [1577, 1584, 1576] +Triangle: [1611, 1610, 1585] +Triangle: [1611, 1583, 1582] +Triangle: [1607, 1611, 1612] +Triangle: [1468, 1613, 1604] +Triangle: [1604, 1612, 1468] +Triangle: [1479, 1612, 1611] +Triangle: [1611, 1490, 1479] +Triangle: [1547, 829, 1614] +Triangle: [1548, 1614, 1615] +Triangle: [1549, 1615, 1616] +Triangle: [1617, 1549, 1616] +Triangle: [1551, 1617, 1618] +Triangle: [1619, 774, 1559] +Triangle: [1620, 1559, 1553] +Triangle: [1621, 1553, 1552] +Triangle: [1618, 1552, 1551] +Triangle: [1622, 843, 1619] +Triangle: [1620, 1622, 1619] +Triangle: [1621, 1623, 1620] +Triangle: [1625, 1621, 1618] +Triangle: [1626, 1618, 1617] +Triangle: [1616, 1626, 1617] +Triangle: [1628, 1616, 1615] +Triangle: [1629, 1615, 1614] +Triangle: [835, 1614, 829] +Triangle: [836, 1629, 835] +Triangle: [1628, 1630, 1631] +Triangle: [1627, 1631, 1632] +Triangle: [1633, 1627, 1632] +Triangle: [1625, 1633, 1634] +Triangle: [1624, 1634, 1635] +Triangle: [1636, 1624, 1635] +Triangle: [1622, 1636, 1637] +Triangle: [1637, 842, 1622] +Triangle: [1638, 841, 1637] +Triangle: [1636, 1638, 1637] +Triangle: [1635, 1639, 1636] +Triangle: [1634, 1640, 1635] +Triangle: [1633, 1641, 1634] +Triangle: [1632, 1642, 1633] +Triangle: [1644, 1632, 1631] +Triangle: [1645, 1631, 1630] +Triangle: [837, 1630, 836] +Triangle: [1646, 837, 838] +Triangle: [1647, 838, 839] +Triangle: [840, 1647, 839] +Triangle: [1639, 1648, 1638] +Triangle: [1650, 1639, 1640] +Triangle: [1641, 1650, 1640] +Triangle: [1642, 1651, 1641] +Triangle: [1653, 1642, 1643] +Triangle: [1654, 1643, 1644] +Triangle: [1655, 1644, 1645] +Triangle: [1646, 1655, 1645] +Triangle: [1647, 1656, 1646] +Triangle: [1648, 1647, 1638] +Triangle: [1659, 1653, 1654] +Triangle: [1660, 1654, 1655] +Triangle: [1656, 1660, 1655] +Triangle: [1657, 1661, 1656] +Triangle: [1663, 1657, 1648] +Triangle: [1664, 1648, 1649] +Triangle: [1665, 1649, 1650] +Triangle: [1651, 1665, 1650] +Triangle: [1652, 1666, 1651] +Triangle: [1658, 1652, 1653] +Triangle: [1666, 1668, 1665] +Triangle: [1667, 1671, 1666] +Triangle: [1673, 1667, 1658] +Triangle: [1674, 1658, 1659] +Triangle: [1675, 1659, 1660] +Triangle: [1661, 1675, 1660] +Triangle: [1662, 1676, 1661] +Triangle: [1678, 1662, 1663] +Triangle: [1679, 1663, 1664] +Triangle: [1668, 1664, 1665] +Triangle: [1669, 1671, 1680] +Triangle: [1672, 1680, 1671] +Triangle: [1682, 1672, 1673] +Triangle: [1683, 1673, 1674] +Triangle: [1675, 1683, 1674] +Triangle: [1676, 1684, 1675] +Triangle: [1677, 1685, 1676] +Triangle: [1687, 1677, 1678] +Triangle: [1688, 1678, 1679] +Triangle: [1669, 1679, 1668] +Triangle: [1689, 1669, 1680] +Triangle: [1690, 1680, 1681] +Triangle: [1691, 1681, 1682] +Triangle: [1692, 1682, 1683] +Triangle: [1684, 1692, 1683] +Triangle: [1685, 1693, 1684] +Triangle: [1686, 1694, 1685] +Triangle: [1696, 1686, 1687] +Triangle: [1697, 1687, 1688] +Triangle: [1670, 1688, 1669] +Triangle: [1689, 1698, 1670] +Triangle: [1690, 1699, 1689] +Triangle: [1701, 1690, 1691] +Triangle: [1702, 1691, 1692] +Triangle: [1703, 1692, 1693] +Triangle: [1694, 1703, 1693] +Triangle: [1695, 1704, 1694] +Triangle: [1706, 1695, 1696] +Triangle: [1707, 1696, 1697] +Triangle: [1698, 1697, 1670] +Triangle: [1698, 1709, 1707] +Triangle: [1699, 1708, 1698] +Triangle: [1700, 1710, 1699] +Triangle: [1701, 1711, 1700] +Triangle: [1713, 1701, 1702] +Triangle: [1714, 1702, 1703] +Triangle: [1715, 1703, 1704] +Triangle: [1716, 1704, 1705] +Triangle: [1717, 1705, 1706] +Triangle: [1709, 1706, 1707] +Triangle: [1708, 1718, 1709] +Triangle: [1710, 1719, 1708] +Triangle: [1717, 1718, 1721] +Triangle: [1716, 1721, 1722] +Triangle: [1723, 1716, 1722] +Triangle: [1724, 1715, 1723] +Triangle: [1725, 1714, 1724] +Triangle: [1712, 1725, 1726] +Triangle: [1727, 1712, 1726] +Triangle: [1720, 1711, 1727] +Triangle: [1729, 1727, 1726] +Triangle: [1730, 1726, 1725] +Triangle: [1724, 1730, 1725] +Triangle: [1732, 1724, 1723] +Triangle: [1722, 1732, 1723] +Triangle: [1734, 1722, 1721] +Triangle: [1735, 1721, 1718] +Triangle: [1719, 1735, 1718] +Triangle: [1720, 1736, 1719] +Triangle: [1737, 1727, 1728] +Triangle: [1740, 1730, 1738] +Triangle: [1728, 1740, 1741] +Triangle: [1742, 1728, 1741] +Triangle: [1743, 1737, 1742] +Triangle: [1735, 1743, 1744] +Triangle: [1745, 1735, 1744] +Triangle: [1733, 1745, 1746] +Triangle: [1732, 1746, 1747] +Triangle: [1731, 1747, 1748] +Triangle: [1748, 1730, 1731] +Triangle: [1739, 1748, 1751] +Triangle: [1752, 1748, 1747] +Triangle: [1753, 1747, 1746] +Triangle: [1754, 1746, 1745] +Triangle: [1744, 1754, 1745] +Triangle: [1756, 1744, 1743] +Triangle: [1757, 1743, 1742] +Triangle: [1758, 1742, 1741] +Triangle: [1740, 1758, 1741] +Triangle: [1759, 1738, 1739] +Triangle: [1760, 1739, 1749] +Triangle: [1761, 1749, 1750] +Triangle: [1762, 1739, 1751] +Triangle: [1763, 1749, 1762] +Triangle: [1765, 1763, 1762] +Triangle: [1766, 1762, 1751] +Triangle: [1767, 1751, 1752] +Triangle: [1753, 1767, 1752] +Triangle: [1769, 1753, 1754] +Triangle: [1755, 1769, 1754] +Triangle: [1771, 1755, 1756] +Triangle: [1772, 1756, 1757] +Triangle: [1773, 1757, 1758] +Triangle: [1759, 1773, 1758] +Triangle: [1760, 1774, 1759] +Triangle: [1761, 1775, 1760] +Triangle: [1750, 1776, 1761] +Triangle: [1777, 1763, 1764] +Triangle: [1779, 1770, 1771] +Triangle: [1772, 1779, 1771] +Triangle: [1773, 1780, 1772] +Triangle: [1779, 1781, 1782] +Triangle: [1774, 1781, 1773] +Triangle: [1775, 1783, 1774] +Triangle: [1782, 1783, 1785] +Triangle: [1784, 1785, 1783] +Triangle: [1778, 1782, 1787] +Triangle: [1778, 1769, 1770] +Triangle: [1787, 1768, 1778] +Triangle: [1785, 1787, 1782] +Triangle: [1788, 1767, 1787] +Triangle: [1786, 1788, 1785] +Triangle: [1789, 1766, 1788] +Triangle: [1776, 1784, 1775] +Triangle: [1777, 1790, 1776] +Triangle: [1792, 1777, 1764] +Triangle: [1786, 1790, 1793] +Triangle: [1793, 1791, 1792] +Triangle: [1789, 1793, 1792] +Triangle: [1765, 1792, 1764] +Triangle: [1806, 1795, 1807] +Triangle: [1807, 1796, 1808] +Triangle: [1808, 1797, 1809] +Triangle: [1810, 1797, 1798] +Triangle: [1811, 1798, 1799] +Triangle: [1812, 1799, 1800] +Triangle: [1812, 1801, 1813] +Triangle: [1814, 1801, 1802] +Triangle: [1814, 1803, 1815] +Triangle: [1816, 1803, 1804] +Triangle: [1816, 1805, 1817] +Triangle: [1817, 1819, 1816] +Triangle: [1815, 1819, 1820] +Triangle: [1812, 1832, 1811] +Triangle: [1821, 1813, 1840] +Triangle: [1840, 1839, 1841] +Triangle: [1841, 1838, 1842] +Triangle: [1843, 2044, 1837] +Triangle: [1844, 1837, 1836] +Triangle: [1845, 1836, 1835] +Triangle: [1845, 1834, 1846] +Triangle: [1846, 1833, 1847] +Triangle: [1832, 1833, 1811] +Triangle: [1848, 1821, 1822] +Triangle: [1849, 1822, 1823] +Triangle: [1850, 1823, 1824] +Triangle: [1851, 1824, 1825] +Triangle: [1851, 1826, 1852] +Triangle: [1852, 1827, 1853] +Triangle: [1853, 1828, 1854] +Triangle: [1854, 1829, 1855] +Triangle: [1855, 1830, 1856] +Triangle: [1856, 1831, 1857] +Triangle: [1847, 1848, 1858] +Triangle: [1847, 1859, 1846] +Triangle: [1845, 1859, 1860] +Triangle: [1844, 1860, 1861] +Triangle: [1844, 1862, 1843] +Triangle: [2039, 1863, 1842] +Triangle: [1822, 1840, 1864] +Triangle: [1823, 1864, 1865] +Triangle: [1824, 1865, 1866] +Triangle: [1825, 1866, 1867] +Triangle: [1826, 1867, 1868] +Triangle: [1826, 1869, 1827] +Triangle: [1827, 1870, 1828] +Triangle: [1829, 1870, 1871] +Triangle: [1830, 1871, 1872] +Triangle: [1830, 1873, 1831] +Triangle: [1864, 1841, 1874] +Triangle: [1865, 1874, 1875] +Triangle: [1866, 1875, 1876] +Triangle: [1867, 1876, 1877] +Triangle: [1868, 1877, 1878] +Triangle: [1869, 1878, 1879] +Triangle: [1870, 1879, 1880] +Triangle: [1871, 1880, 1881] +Triangle: [1872, 1881, 1882] +Triangle: [1873, 1882, 1883] +Triangle: [1874, 1842, 1863] +Triangle: [1875, 1863, 1884] +Triangle: [1876, 1884, 1885] +Triangle: [1877, 1885, 1886] +Triangle: [1878, 1886, 1887] +Triangle: [1879, 1887, 1888] +Triangle: [1880, 1888, 1889] +Triangle: [1881, 1889, 1890] +Triangle: [1882, 1890, 1891] +Triangle: [1883, 1891, 1892] +Triangle: [2037, 1862, 1893] +Triangle: [1885, 2037, 2040] +Triangle: [1885, 2045, 1886] +Triangle: [1886, 2046, 1887] +Triangle: [1888, 2046, 2050] +Triangle: [1889, 2050, 2053] +Triangle: [1890, 2053, 2047] +Triangle: [1891, 2047, 2038] +Triangle: [1891, 2041, 1892] +Triangle: [1902, 1862, 1861] +Triangle: [1893, 1903, 1894] +Triangle: [1894, 1904, 1895] +Triangle: [1895, 1905, 1896] +Triangle: [1896, 1906, 1897] +Triangle: [1898, 1906, 1907] +Triangle: [1899, 1907, 1908] +Triangle: [1899, 1909, 1900] +Triangle: [1901, 1909, 1910] +Triangle: [1911, 1861, 1860] +Triangle: [1902, 1912, 1903] +Triangle: [1903, 1913, 1904] +Triangle: [1904, 1914, 1905] +Triangle: [1905, 1915, 1906] +Triangle: [1906, 1916, 1907] +Triangle: [1908, 1916, 1917] +Triangle: [1908, 1918, 1909] +Triangle: [1910, 1918, 1919] +Triangle: [1920, 1860, 1859] +Triangle: [1921, 1859, 1858] +Triangle: [1921, 1848, 1849] +Triangle: [1922, 1849, 1850] +Triangle: [1920, 1922, 1923] +Triangle: [1911, 1923, 1912] +Triangle: [1924, 1850, 1851] +Triangle: [1923, 1924, 1925] +Triangle: [1912, 1925, 1913] +Triangle: [1926, 1851, 1852] +Triangle: [1925, 1926, 1927] +Triangle: [1913, 1927, 1914] +Triangle: [1926, 1853, 1928] +Triangle: [1927, 1928, 1929] +Triangle: [1914, 1929, 1915] +Triangle: [1928, 1854, 1930] +Triangle: [1929, 1930, 1931] +Triangle: [1915, 1931, 1916] +Triangle: [1930, 1855, 1932] +Triangle: [1931, 1932, 1933] +Triangle: [1917, 1931, 1933] +Triangle: [1932, 1856, 1934] +Triangle: [1933, 1934, 1935] +Triangle: [1918, 1933, 1935] +Triangle: [1919, 1935, 1936] +Triangle: [1937, 1935, 1934] +Triangle: [1934, 1857, 1937] +Triangle: [1809, 1811, 1833] +Triangle: [1808, 1833, 1938] +Triangle: [1808, 1939, 1807] +Triangle: [1806, 1939, 1940] +Triangle: [1941, 1833, 1834] +Triangle: [1938, 1942, 1939] +Triangle: [1940, 1942, 1943] +Triangle: [1834, 1945, 1941] +Triangle: [1941, 1946, 1942] +Triangle: [1943, 1946, 1947] +Triangle: [1948, 1946, 1949] +Triangle: [1950, 1946, 1945] +Triangle: [1950, 1944, 1951] +Triangle: [1944, 1835, 1952] +Triangle: [1952, 1836, 1953] +Triangle: [1953, 1837, 1954] +Triangle: [1951, 1952, 1955] +Triangle: [1955, 1953, 1956] +Triangle: [1956, 1954, 1957] +Triangle: [1958, 1949, 1959] +Triangle: [1960, 1949, 1950] +Triangle: [1960, 1951, 1961] +Triangle: [1961, 1955, 1962] +Triangle: [1962, 1956, 1963] +Triangle: [1963, 1957, 1964] +Triangle: [1966, 1958, 1959] +Triangle: [1967, 1959, 1960] +Triangle: [1967, 1961, 1968] +Triangle: [1968, 1962, 1969] +Triangle: [1969, 1963, 1970] +Triangle: [1970, 1964, 1971] +Triangle: [1815, 1972, 1814] +Triangle: [1839, 1814, 1972] +Triangle: [1839, 1973, 1838] +Triangle: [1974, 2044, 1838] +Triangle: [1974, 1973, 1975] +Triangle: [1954, 2048, 1957] +Triangle: [1964, 2048, 2049] +Triangle: [1964, 2052, 1971] +Triangle: [1978, 1966, 1979] +Triangle: [1980, 1966, 1967] +Triangle: [1980, 1968, 1981] +Triangle: [1981, 1969, 1982] +Triangle: [1983, 1969, 1970] +Triangle: [1984, 1970, 1971] +Triangle: [1985, 2052, 1977] +Triangle: [1986, 1972, 1820] +Triangle: [1987, 1820, 1819] +Triangle: [1987, 1818, 1988] +Triangle: [1973, 1989, 1975] +Triangle: [1989, 1987, 1988] +Triangle: [1989, 1990, 1991] +Triangle: [1975, 1991, 1976] +Triangle: [1976, 1992, 1977] +Triangle: [1993, 1991, 1990] +Triangle: [1977, 1994, 1985] +Triangle: [1995, 1992, 1993] +Triangle: [1996, 1979, 1997] +Triangle: [1997, 1980, 1998] +Triangle: [1999, 1980, 1981] +Triangle: [1999, 1982, 2000] +Triangle: [2000, 1983, 2001] +Triangle: [1995, 2009, 1994] +Triangle: [1985, 2009, 2010] +Triangle: [2055, 2011, 1984] +Triangle: [2001, 1984, 2011] +Triangle: [2012, 2008, 2007] +Triangle: [2009, 2013, 2010] +Triangle: [2011, 2036, 2014] +Triangle: [2001, 2014, 2015] +Triangle: [2001, 2016, 2000] +Triangle: [1999, 2016, 2017] +Triangle: [1998, 2017, 2018] +Triangle: [1997, 2018, 2019] +Triangle: [2002, 1997, 2019] +Triangle: [2002, 2020, 2003] +Triangle: [2021, 2019, 2018] +Triangle: [2022, 2018, 2017] +Triangle: [2022, 2016, 2023] +Triangle: [2023, 2015, 2024] +Triangle: [2024, 2014, 2025] +Triangle: [2026, 2036, 2013] +Triangle: [2027, 2013, 2012] +Triangle: [2012, 2006, 2027] +Triangle: [2027, 2005, 2028] +Triangle: [2026, 2028, 2029] +Triangle: [2025, 2051, 2030] +Triangle: [2024, 2030, 2031] +Triangle: [2023, 2031, 2032] +Triangle: [2022, 2032, 2033] +Triangle: [2021, 2033, 2034] +Triangle: [2020, 2034, 2035] +Triangle: [2003, 2035, 2004] +Triangle: [2047, 1900, 2038] +Triangle: [2043, 1843, 1862] +Triangle: [2047, 1898, 1899] +Triangle: [2056, 2014, 2036] +Triangle: [2052, 1984, 1971] +Triangle: [2038, 1901, 2041] +Triangle: [2054, 1985, 2010] +Triangle: [2056, 2029, 2051] +Triangle: [2054, 2013, 2036] +Triangle: [2053, 1897, 1898] +Triangle: [2042, 1837, 2044] +Triangle: [2042, 1975, 2048] +Triangle: [2048, 1976, 2049] +Triangle: [2043, 1884, 1863] +Triangle: [2049, 1977, 2052] +Triangle: [2037, 1894, 2040] +Triangle: [2040, 1895, 2045] +Triangle: [2044, 1842, 1838] +Triangle: [2045, 1896, 2046] +Triangle: [2046, 1897, 2050] +Triangle: [2057, 1806, 2067] +Triangle: [2058, 2067, 2068] +Triangle: [2059, 2068, 2069] +Triangle: [2070, 2059, 2069] +Triangle: [2071, 2060, 2070] +Triangle: [2072, 2061, 2071] +Triangle: [2063, 2072, 2073] +Triangle: [2074, 2063, 2073] +Triangle: [2065, 2074, 2075] +Triangle: [2076, 2065, 2075] +Triangle: [1805, 2076, 1817] +Triangle: [2077, 1817, 2076] +Triangle: [2075, 2077, 2076] +Triangle: [2090, 2072, 2071] +Triangle: [2073, 2079, 2098] +Triangle: [2097, 2098, 2099] +Triangle: [2096, 2099, 2100] +Triangle: [2101, 2283, 2278] +Triangle: [2102, 2095, 2101] +Triangle: [2103, 2094, 2102] +Triangle: [2092, 2103, 2104] +Triangle: [2091, 2104, 2105] +Triangle: [2090, 2091, 2105] +Triangle: [2106, 2079, 2090] +Triangle: [2107, 2080, 2106] +Triangle: [2108, 2081, 2107] +Triangle: [2109, 2082, 2108] +Triangle: [2084, 2109, 2110] +Triangle: [2085, 2110, 2111] +Triangle: [2086, 2111, 2112] +Triangle: [2087, 2112, 2113] +Triangle: [2088, 2113, 2114] +Triangle: [2089, 2114, 2115] +Triangle: [2105, 2106, 2090] +Triangle: [2117, 2105, 2104] +Triangle: [2103, 2117, 2104] +Triangle: [2102, 2118, 2103] +Triangle: [2120, 2102, 2101] +Triangle: [2121, 2278, 2100] +Triangle: [2080, 2098, 2079] +Triangle: [2081, 2122, 2080] +Triangle: [2082, 2123, 2081] +Triangle: [2083, 2124, 2082] +Triangle: [2084, 2125, 2083] +Triangle: [2127, 2084, 2085] +Triangle: [2128, 2085, 2086] +Triangle: [2087, 2128, 2086] +Triangle: [2088, 2129, 2087] +Triangle: [2131, 2088, 2089] +Triangle: [2099, 2122, 2132] +Triangle: [2123, 2132, 2122] +Triangle: [2124, 2133, 2123] +Triangle: [2125, 2134, 2124] +Triangle: [2126, 2135, 2125] +Triangle: [2127, 2136, 2126] +Triangle: [2128, 2137, 2127] +Triangle: [2129, 2138, 2128] +Triangle: [2130, 2139, 2129] +Triangle: [2131, 2140, 2130] +Triangle: [2132, 2100, 2099] +Triangle: [2133, 2121, 2132] +Triangle: [2134, 2142, 2133] +Triangle: [2135, 2143, 2134] +Triangle: [2136, 2144, 2135] +Triangle: [2137, 2145, 2136] +Triangle: [2138, 2146, 2137] +Triangle: [2139, 2147, 2138] +Triangle: [2140, 2148, 2139] +Triangle: [2141, 2149, 2140] +Triangle: [2120, 2276, 2151] +Triangle: [2143, 2276, 2142] +Triangle: [2284, 2143, 2144] +Triangle: [2285, 2144, 2145] +Triangle: [2146, 2285, 2145] +Triangle: [2147, 2289, 2146] +Triangle: [2148, 2292, 2147] +Triangle: [2149, 2286, 2148] +Triangle: [2280, 2149, 2150] +Triangle: [2160, 2120, 2151] +Triangle: [2161, 2151, 2152] +Triangle: [2162, 2152, 2153] +Triangle: [2163, 2153, 2154] +Triangle: [2164, 2154, 2155] +Triangle: [2156, 2164, 2155] +Triangle: [2157, 2165, 2156] +Triangle: [2167, 2157, 2158] +Triangle: [2159, 2167, 2158] +Triangle: [2169, 2119, 2160] +Triangle: [2170, 2160, 2161] +Triangle: [2171, 2161, 2162] +Triangle: [2172, 2162, 2163] +Triangle: [2173, 2163, 2164] +Triangle: [2174, 2164, 2165] +Triangle: [2166, 2174, 2165] +Triangle: [2176, 2166, 2167] +Triangle: [2168, 2176, 2167] +Triangle: [2178, 2118, 2169] +Triangle: [2179, 2117, 2178] +Triangle: [2179, 2106, 2116] +Triangle: [2180, 2107, 2179] +Triangle: [2178, 2180, 2179] +Triangle: [2181, 2169, 2170] +Triangle: [2182, 2108, 2180] +Triangle: [2181, 2182, 2180] +Triangle: [2183, 2170, 2171] +Triangle: [2184, 2109, 2182] +Triangle: [2183, 2184, 2182] +Triangle: [2185, 2171, 2172] +Triangle: [2111, 2184, 2186] +Triangle: [2185, 2186, 2184] +Triangle: [2187, 2172, 2173] +Triangle: [2112, 2186, 2188] +Triangle: [2187, 2188, 2186] +Triangle: [2189, 2173, 2174] +Triangle: [2113, 2188, 2190] +Triangle: [2189, 2190, 2188] +Triangle: [2175, 2189, 2174] +Triangle: [2114, 2190, 2192] +Triangle: [2191, 2192, 2190] +Triangle: [2176, 2191, 2175] +Triangle: [2177, 2193, 2176] +Triangle: [2195, 2193, 2194] +Triangle: [2115, 2192, 2195] +Triangle: [2069, 2071, 2070] +Triangle: [2068, 2091, 2069] +Triangle: [2197, 2068, 2067] +Triangle: [1806, 2197, 2067] +Triangle: [2198, 2091, 2196] +Triangle: [2199, 2196, 2197] +Triangle: [1940, 2199, 2197] +Triangle: [2201, 2092, 2198] +Triangle: [2202, 2198, 2199] +Triangle: [1943, 2202, 2199] +Triangle: [2202, 1948, 2203] +Triangle: [2204, 2202, 2203] +Triangle: [2200, 2204, 2205] +Triangle: [2093, 2200, 2206] +Triangle: [2094, 2206, 2207] +Triangle: [2095, 2207, 2208] +Triangle: [2205, 2206, 2200] +Triangle: [2207, 2209, 2210] +Triangle: [2208, 2210, 2211] +Triangle: [2203, 1958, 2212] +Triangle: [2213, 2203, 2212] +Triangle: [2205, 2213, 2214] +Triangle: [2209, 2214, 2215] +Triangle: [2210, 2215, 2216] +Triangle: [2211, 2216, 2217] +Triangle: [2218, 1958, 1965] +Triangle: [2219, 2212, 2218] +Triangle: [2214, 2219, 2220] +Triangle: [2215, 2220, 2221] +Triangle: [2216, 2221, 2222] +Triangle: [2217, 2222, 2223] +Triangle: [2224, 2075, 2074] +Triangle: [2097, 2074, 2073] +Triangle: [2225, 2097, 2096] +Triangle: [2283, 2226, 2096] +Triangle: [2225, 2226, 2227] +Triangle: [2287, 2208, 2211] +Triangle: [2217, 2287, 2211] +Triangle: [2291, 2217, 2223] +Triangle: [2218, 1978, 2230] +Triangle: [2231, 2218, 2230] +Triangle: [2220, 2231, 2232] +Triangle: [2221, 2232, 2233] +Triangle: [2234, 2221, 2233] +Triangle: [2235, 2222, 2234] +Triangle: [2236, 2291, 2294] +Triangle: [2237, 2224, 2225] +Triangle: [2238, 2078, 2237] +Triangle: [1818, 2238, 1988] +Triangle: [2239, 2225, 2227] +Triangle: [2239, 2238, 2237] +Triangle: [2239, 1990, 1988] +Triangle: [2240, 2227, 2228] +Triangle: [2241, 2228, 2229] +Triangle: [1993, 2240, 2241] +Triangle: [2242, 2229, 2236] +Triangle: [1995, 2241, 2242] +Triangle: [2230, 1996, 2243] +Triangle: [2231, 2243, 2244] +Triangle: [2245, 2231, 2244] +Triangle: [2233, 2245, 2246] +Triangle: [2234, 2246, 2247] +Triangle: [2248, 1995, 2242] +Triangle: [2236, 2248, 2242] +Triangle: [2250, 2294, 2235] +Triangle: [2247, 2235, 2234] +Triangle: [2251, 2008, 2248] +Triangle: [2252, 2248, 2249] +Triangle: [2250, 2275, 2293] +Triangle: [2247, 2253, 2250] +Triangle: [2255, 2247, 2246] +Triangle: [2245, 2255, 2246] +Triangle: [2244, 2256, 2245] +Triangle: [2243, 2257, 2244] +Triangle: [2002, 2243, 1996] +Triangle: [2259, 2002, 2003] +Triangle: [2260, 2258, 2259] +Triangle: [2261, 2257, 2260] +Triangle: [2255, 2261, 2262] +Triangle: [2254, 2262, 2263] +Triangle: [2253, 2263, 2264] +Triangle: [2265, 2275, 2295] +Triangle: [2266, 2252, 2265] +Triangle: [2006, 2251, 2266] +Triangle: [2005, 2266, 2267] +Triangle: [2265, 2267, 2266] +Triangle: [2264, 2290, 2295] +Triangle: [2263, 2269, 2264] +Triangle: [2262, 2270, 2263] +Triangle: [2261, 2271, 2262] +Triangle: [2260, 2272, 2261] +Triangle: [2259, 2273, 2260] +Triangle: [2274, 2003, 2004] +Triangle: [2158, 2286, 2277] +Triangle: [2282, 2101, 2278] +Triangle: [2286, 2156, 2292] +Triangle: [2253, 2295, 2275] +Triangle: [2291, 2235, 2294] +Triangle: [2159, 2277, 2280] +Triangle: [2293, 2236, 2294] +Triangle: [2268, 2295, 2290] +Triangle: [2252, 2293, 2275] +Triangle: [2292, 2155, 2289] +Triangle: [2095, 2281, 2283] +Triangle: [2227, 2281, 2287] +Triangle: [2228, 2287, 2288] +Triangle: [2282, 2142, 2276] +Triangle: [2229, 2288, 2291] +Triangle: [2152, 2276, 2279] +Triangle: [2153, 2279, 2284] +Triangle: [2283, 2100, 2278] +Triangle: [2154, 2284, 2285] +Triangle: [2155, 2285, 2289] +Triangle: [15, 14, 13] +Triangle: [16, 15, 18] +Triangle: [17, 16, 19] +Triangle: [5, 17, 20] +Triangle: [4, 5, 21] +Triangle: [3, 4, 22] +Triangle: [3, 23, 24] +Triangle: [2, 24, 25] +Triangle: [6, 0, 1] +Triangle: [7, 6, 25] +Triangle: [26, 25, 24] +Triangle: [28, 27, 24] +Triangle: [29, 28, 23] +Triangle: [30, 29, 22] +Triangle: [30, 21, 20] +Triangle: [32, 31, 20] +Triangle: [32, 19, 18] +Triangle: [33, 18, 13] +Triangle: [34, 33, 12] +Triangle: [33, 34, 35] +Triangle: [31, 32, 35] +Triangle: [31, 36, 37] +Triangle: [29, 30, 37] +Triangle: [28, 29, 38] +Triangle: [27, 28, 39] +Triangle: [26, 27, 40] +Triangle: [8, 7, 26] +Triangle: [8, 41, 42] +Triangle: [9, 42, 43] +Triangle: [43, 34, 11] +Triangle: [34, 44, 45] +Triangle: [35, 45, 46] +Triangle: [37, 36, 46] +Triangle: [38, 37, 47] +Triangle: [38, 48, 49] +Triangle: [39, 49, 50] +Triangle: [40, 50, 51] +Triangle: [42, 41, 51] +Triangle: [43, 42, 52] +Triangle: [44, 34, 43] +Triangle: [49, 54, 55] +Triangle: [50, 55, 56] +Triangle: [51, 56, 57] +Triangle: [52, 57, 58] +Triangle: [53, 58, 59] +Triangle: [44, 59, 60] +Triangle: [45, 60, 61] +Triangle: [46, 61, 62] +Triangle: [47, 62, 63] +Triangle: [54, 49, 48] +Triangle: [13, 14, 69] +Triangle: [70, 73, 72] +Triangle: [71, 74, 73] +Triangle: [68, 75, 74] +Triangle: [67, 76, 75] +Triangle: [66, 77, 76] +Triangle: [78, 77, 66] +Triangle: [79, 78, 65] +Triangle: [6, 79, 64] +Triangle: [7, 80, 79] +Triangle: [78, 79, 80] +Triangle: [82, 77, 78] +Triangle: [83, 76, 77] +Triangle: [84, 75, 76] +Triangle: [74, 75, 84] +Triangle: [86, 73, 74] +Triangle: [72, 73, 86] +Triangle: [87, 12, 13] +Triangle: [88, 11, 12] +Triangle: [89, 88, 87] +Triangle: [85, 90, 89] +Triangle: [91, 90, 85] +Triangle: [83, 92, 91] +Triangle: [82, 93, 92] +Triangle: [81, 94, 93] +Triangle: [80, 95, 94] +Triangle: [8, 95, 80] +Triangle: [96, 95, 8] +Triangle: [97, 96, 9] +Triangle: [11, 88, 97] +Triangle: [99, 98, 88] +Triangle: [100, 99, 89] +Triangle: [91, 101, 100] +Triangle: [92, 102, 101] +Triangle: [103, 102, 92] +Triangle: [104, 103, 93] +Triangle: [105, 104, 94] +Triangle: [96, 106, 105] +Triangle: [97, 107, 106] +Triangle: [98, 107, 97] +Triangle: [109, 108, 103] +Triangle: [110, 109, 104] +Triangle: [111, 110, 105] +Triangle: [112, 111, 106] +Triangle: [113, 112, 107] +Triangle: [114, 113, 98] +Triangle: [115, 114, 99] +Triangle: [116, 115, 100] +Triangle: [117, 116, 101] +Triangle: [108, 117, 102] +Triangle: [118, 127, 138] +Triangle: [119, 128, 138] +Triangle: [138, 128, 121] +Triangle: [138, 129, 120] +Triangle: [120, 129, 139] +Triangle: [121, 131, 139] +Triangle: [139, 131, 125] +Triangle: [139, 132, 124] +Triangle: [124, 132, 140] +Triangle: [125, 134, 140] +Triangle: [140, 134, 123] +Triangle: [140, 135, 122] +Triangle: [122, 135, 141] +Triangle: [123, 137, 141] +Triangle: [141, 137, 119] +Triangle: [141, 127, 118] +Triangle: [120, 130, 142] +Triangle: [124, 133, 142] +Triangle: [142, 133, 122] +Triangle: [142, 136, 118] +Triangle: [125, 131, 143] +Triangle: [121, 128, 143] +Triangle: [143, 128, 119] +Triangle: [143, 137, 123] +Triangle: [144, 152, 164] +Triangle: [164, 154, 145] +Triangle: [164, 155, 147] +Triangle: [146, 155, 164] +Triangle: [146, 156, 165] +Triangle: [165, 157, 147] +Triangle: [165, 158, 151] +Triangle: [150, 158, 165] +Triangle: [150, 159, 166] +Triangle: [166, 160, 151] +Triangle: [166, 161, 149] +Triangle: [148, 161, 166] +Triangle: [148, 162, 167] +Triangle: [167, 163, 149] +Triangle: [167, 153, 145] +Triangle: [144, 153, 167] +Triangle: [146, 152, 168] +Triangle: [168, 159, 150] +Triangle: [168, 162, 148] +Triangle: [144, 162, 168] +Triangle: [151, 160, 169] +Triangle: [169, 154, 147] +Triangle: [169, 163, 145] +Triangle: [149, 163, 169] +Triangle: [173, 171, 170] +Triangle: [174, 170, 171] +Triangle: [173, 176, 177] +Triangle: [175, 171, 177] +Triangle: [176, 179, 180] +Triangle: [177, 180, 181] +Triangle: [179, 182, 183] +Triangle: [183, 182, 184] +Triangle: [185, 184, 186] +Triangle: [180, 183, 188] +Triangle: [189, 188, 183] +Triangle: [189, 185, 187] +Triangle: [194, 191, 172] +Triangle: [192, 191, 194] +Triangle: [193, 192, 195] +Triangle: [197, 194, 170] +Triangle: [195, 194, 197] +Triangle: [199, 198, 193] +Triangle: [199, 196, 200] +Triangle: [202, 200, 196] +Triangle: [203, 202, 197] +Triangle: [203, 174, 175] +Triangle: [204, 175, 178] +Triangle: [205, 178, 181] +Triangle: [206, 181, 188] +Triangle: [207, 188, 189] +Triangle: [208, 189, 190] +Triangle: [198, 199, 213] +Triangle: [213, 199, 201] +Triangle: [210, 212, 201] +Triangle: [211, 212, 210] +Triangle: [213, 212, 211] +Triangle: [213, 216, 217] +Triangle: [218, 215, 201] +Triangle: [219, 215, 218] +Triangle: [215, 219, 221] +Triangle: [211, 221, 222] +Triangle: [216, 222, 223] +Triangle: [224, 218, 200] +Triangle: [225, 224, 202] +Triangle: [220, 218, 224] +Triangle: [226, 224, 225] +Triangle: [225, 203, 204] +Triangle: [228, 204, 205] +Triangle: [230, 229, 205] +Triangle: [230, 206, 207] +Triangle: [232, 231, 207] +Triangle: [232, 208, 209] +Triangle: [227, 225, 228] +Triangle: [235, 234, 228] +Triangle: [236, 235, 229] +Triangle: [237, 236, 230] +Triangle: [238, 223, 222] +Triangle: [240, 239, 222] +Triangle: [240, 221, 219] +Triangle: [241, 219, 220] +Triangle: [242, 220, 226] +Triangle: [243, 226, 227] +Triangle: [244, 227, 234] +Triangle: [246, 245, 234] +Triangle: [246, 235, 236] +Triangle: [247, 236, 237] +Triangle: [237, 249, 250] +Triangle: [232, 249, 237] +Triangle: [249, 232, 233] +Triangle: [252, 238, 239] +Triangle: [253, 252, 256] +Triangle: [254, 253, 257] +Triangle: [255, 254, 258] +Triangle: [256, 239, 240] +Triangle: [257, 256, 260] +Triangle: [260, 240, 241] +Triangle: [262, 241, 242] +Triangle: [263, 242, 243] +Triangle: [264, 243, 244] +Triangle: [265, 244, 245] +Triangle: [267, 266, 245] +Triangle: [268, 267, 246] +Triangle: [269, 268, 247] +Triangle: [249, 251, 270] +Triangle: [270, 269, 248] +Triangle: [268, 271, 272] +Triangle: [272, 271, 273] +Triangle: [272, 274, 275] +Triangle: [266, 267, 275] +Triangle: [266, 276, 277] +Triangle: [265, 277, 278] +Triangle: [264, 278, 279] +Triangle: [263, 279, 280] +Triangle: [261, 260, 262] +Triangle: [258, 257, 261] +Triangle: [282, 271, 268] +Triangle: [187, 186, 283] +Triangle: [190, 187, 284] +Triangle: [209, 190, 285] +Triangle: [233, 209, 286] +Triangle: [251, 233, 287] +Triangle: [270, 251, 288] +Triangle: [270, 289, 290] +Triangle: [269, 290, 291] +Triangle: [293, 292, 290] +Triangle: [294, 293, 289] +Triangle: [296, 295, 288] +Triangle: [294, 288, 295] +Triangle: [298, 296, 287] +Triangle: [298, 286, 285] +Triangle: [299, 285, 284] +Triangle: [300, 284, 283] +Triangle: [300, 301, 302] +Triangle: [299, 300, 303] +Triangle: [298, 299, 304] +Triangle: [296, 298, 305] +Triangle: [295, 305, 306] +Triangle: [307, 306, 305] +Triangle: [308, 307, 304] +Triangle: [309, 308, 303] +Triangle: [308, 309, 310] +Triangle: [307, 308, 311] +Triangle: [306, 307, 312] +Triangle: [297, 306, 313] +Triangle: [294, 297, 314] +Triangle: [293, 294, 315] +Triangle: [311, 310, 317] +Triangle: [312, 311, 318] +Triangle: [313, 312, 319] +Triangle: [314, 313, 320] +Triangle: [315, 314, 321] +Triangle: [316, 315, 322] +Triangle: [292, 293, 316] +Triangle: [282, 291, 324] +Triangle: [291, 290, 292] +Triangle: [324, 291, 325] +Triangle: [273, 271, 324] +Triangle: [325, 292, 323] +Triangle: [326, 325, 327] +Triangle: [326, 329, 330] +Triangle: [329, 326, 328] +Triangle: [329, 425, 332] +Triangle: [333, 332, 331] +Triangle: [330, 337, 336] +Triangle: [335, 274, 273] +Triangle: [274, 335, 338] +Triangle: [275, 338, 339] +Triangle: [337, 330, 332] +Triangle: [341, 340, 332] +Triangle: [342, 338, 335] +Triangle: [338, 342, 343] +Triangle: [342, 336, 337] +Triangle: [342, 340, 341] +Triangle: [276, 339, 344] +Triangle: [345, 344, 339] +Triangle: [346, 345, 343] +Triangle: [346, 341, 333] +Triangle: [345, 346, 347] +Triangle: [344, 347, 348] +Triangle: [349, 347, 333] +Triangle: [278, 277, 348] +Triangle: [348, 347, 349] +Triangle: [350, 348, 351] +Triangle: [281, 261, 280] +Triangle: [353, 280, 279] +Triangle: [354, 279, 278] +Triangle: [355, 354, 350] +Triangle: [353, 354, 355] +Triangle: [353, 356, 357] +Triangle: [259, 258, 281] +Triangle: [358, 255, 259] +Triangle: [362, 259, 357] +Triangle: [363, 357, 356] +Triangle: [364, 356, 365] +Triangle: [366, 365, 367] +Triangle: [368, 367, 369] +Triangle: [370, 369, 371] +Triangle: [372, 371, 373] +Triangle: [374, 373, 375] +Triangle: [376, 375, 377] +Triangle: [378, 377, 379] +Triangle: [359, 358, 362] +Triangle: [382, 381, 362] +Triangle: [382, 363, 364] +Triangle: [383, 364, 366] +Triangle: [384, 366, 368] +Triangle: [385, 368, 370] +Triangle: [386, 370, 372] +Triangle: [387, 372, 374] +Triangle: [388, 374, 376] +Triangle: [389, 376, 378] +Triangle: [390, 378, 380] +Triangle: [365, 356, 355] +Triangle: [367, 365, 352] +Triangle: [369, 367, 392] +Triangle: [369, 393, 394] +Triangle: [371, 394, 395] +Triangle: [375, 373, 395] +Triangle: [375, 396, 397] +Triangle: [379, 377, 397] +Triangle: [392, 352, 351] +Triangle: [400, 399, 351] +Triangle: [393, 392, 399] +Triangle: [393, 401, 402] +Triangle: [394, 402, 403] +Triangle: [396, 395, 403] +Triangle: [396, 404, 405] +Triangle: [398, 397, 405] +Triangle: [401, 399, 400] +Triangle: [402, 401, 407] +Triangle: [403, 402, 408] +Triangle: [404, 403, 409] +Triangle: [405, 404, 410] +Triangle: [406, 405, 411] +Triangle: [407, 400, 349] +Triangle: [407, 334, 413] +Triangle: [408, 413, 414] +Triangle: [409, 414, 415] +Triangle: [411, 410, 415] +Triangle: [412, 411, 416] +Triangle: [419, 418, 417] +Triangle: [419, 416, 415] +Triangle: [420, 415, 414] +Triangle: [421, 414, 413] +Triangle: [424, 422, 420] +Triangle: [331, 332, 425] +Triangle: [427, 413, 334] +Triangle: [427, 331, 426] +Triangle: [430, 429, 428] +Triangle: [430, 426, 425] +Triangle: [431, 328, 327] +Triangle: [430, 328, 431] +Triangle: [429, 430, 433] +Triangle: [435, 432, 327] +Triangle: [435, 323, 322] +Triangle: [437, 436, 322] +Triangle: [438, 437, 321] +Triangle: [439, 438, 320] +Triangle: [440, 439, 319] +Triangle: [441, 440, 318] +Triangle: [444, 442, 434] +Triangle: [442, 444, 445] +Triangle: [422, 443, 445] +Triangle: [422, 446, 419] +Triangle: [419, 446, 447] +Triangle: [448, 447, 446] +Triangle: [448, 445, 449] +Triangle: [449, 445, 444] +Triangle: [459, 451, 450] +Triangle: [459, 449, 458] +Triangle: [461, 458, 444] +Triangle: [462, 461, 433] +Triangle: [460, 458, 461] +Triangle: [452, 451, 459] +Triangle: [463, 459, 460] +Triangle: [464, 460, 462] +Triangle: [465, 462, 431] +Triangle: [453, 452, 463] +Triangle: [466, 463, 464] +Triangle: [467, 464, 465] +Triangle: [468, 465, 432] +Triangle: [469, 468, 435] +Triangle: [468, 469, 470] +Triangle: [467, 470, 471] +Triangle: [454, 453, 466] +Triangle: [455, 454, 471] +Triangle: [456, 455, 472] +Triangle: [457, 456, 478] +Triangle: [440, 441, 457] +Triangle: [437, 438, 475] +Triangle: [436, 437, 476] +Triangle: [469, 476, 477] +Triangle: [472, 471, 470] +Triangle: [479, 477, 476] +Triangle: [473, 472, 477] +Triangle: [474, 478, 479] +Triangle: [439, 440, 474] +Triangle: [438, 439, 480] +Triangle: [481, 429, 434] +Triangle: [428, 429, 481] +Triangle: [427, 428, 483] +Triangle: [443, 422, 424] +Triangle: [442, 443, 485] +Triangle: [482, 434, 442] +Triangle: [423, 413, 427] +Triangle: [487, 483, 481] +Triangle: [488, 481, 482] +Triangle: [489, 482, 486] +Triangle: [491, 490, 486] +Triangle: [492, 491, 485] +Triangle: [493, 492, 424] +Triangle: [494, 493, 421] +Triangle: [495, 494, 423] +Triangle: [484, 483, 487] +Triangle: [495, 487, 496] +Triangle: [498, 496, 487] +Triangle: [498, 488, 489] +Triangle: [499, 489, 490] +Triangle: [500, 490, 491] +Triangle: [501, 491, 492] +Triangle: [503, 502, 492] +Triangle: [504, 503, 493] +Triangle: [494, 495, 497] +Triangle: [498, 499, 505] +Triangle: [496, 498, 508] +Triangle: [497, 496, 509] +Triangle: [497, 510, 511] +Triangle: [504, 511, 512] +Triangle: [503, 512, 513] +Triangle: [502, 513, 514] +Triangle: [501, 514, 515] +Triangle: [505, 499, 500] +Triangle: [506, 505, 515] +Triangle: [516, 515, 514] +Triangle: [517, 514, 513] +Triangle: [518, 513, 512] +Triangle: [519, 512, 511] +Triangle: [521, 520, 511] +Triangle: [522, 521, 510] +Triangle: [523, 522, 509] +Triangle: [508, 505, 506] +Triangle: [524, 523, 506] +Triangle: [522, 523, 524] +Triangle: [521, 522, 525] +Triangle: [521, 526, 527] +Triangle: [520, 527, 528] +Triangle: [519, 528, 529] +Triangle: [518, 529, 530] +Triangle: [517, 530, 531] +Triangle: [507, 506, 516] +Triangle: [532, 531, 530] +Triangle: [533, 530, 529] +Triangle: [535, 534, 529] +Triangle: [535, 528, 527] +Triangle: [536, 527, 526] +Triangle: [538, 537, 526] +Triangle: [539, 538, 525] +Triangle: [539, 524, 507] +Triangle: [507, 531, 532] +Triangle: [541, 540, 532] +Triangle: [540, 541, 542] +Triangle: [538, 539, 542] +Triangle: [537, 542, 543] +Triangle: [543, 542, 541] +Triangle: [544, 541, 533] +Triangle: [535, 536, 543] +Triangle: [360, 359, 381] +Triangle: [361, 360, 545] +Triangle: [547, 545, 381] +Triangle: [548, 547, 382] +Triangle: [548, 383, 384] +Triangle: [549, 384, 385] +Triangle: [550, 385, 386] +Triangle: [551, 386, 387] +Triangle: [552, 387, 388] +Triangle: [553, 388, 389] +Triangle: [554, 389, 390] +Triangle: [555, 390, 391] +Triangle: [545, 547, 557] +Triangle: [557, 547, 548] +Triangle: [558, 548, 549] +Triangle: [559, 549, 550] +Triangle: [560, 550, 551] +Triangle: [562, 561, 551] +Triangle: [563, 562, 552] +Triangle: [563, 553, 554] +Triangle: [564, 554, 555] +Triangle: [565, 555, 556] +Triangle: [568, 567, 361] +Triangle: [569, 568, 546] +Triangle: [569, 557, 558] +Triangle: [571, 570, 558] +Triangle: [571, 559, 560] +Triangle: [573, 572, 560] +Triangle: [573, 561, 562] +Triangle: [575, 574, 562] +Triangle: [576, 575, 563] +Triangle: [577, 576, 564] +Triangle: [578, 577, 565] +Triangle: [577, 578, 579] +Triangle: [576, 577, 580] +Triangle: [573, 582, 595] +Triangle: [582, 573, 574] +Triangle: [603, 574, 602] +Triangle: [604, 602, 601] +Triangle: [605, 601, 600] +Triangle: [607, 606, 600] +Triangle: [608, 607, 599] +Triangle: [609, 608, 598] +Triangle: [610, 609, 597] +Triangle: [595, 610, 596] +Triangle: [611, 595, 582] +Triangle: [611, 583, 584] +Triangle: [613, 612, 584] +Triangle: [614, 613, 585] +Triangle: [614, 586, 587] +Triangle: [615, 587, 588] +Triangle: [616, 588, 589] +Triangle: [617, 589, 590] +Triangle: [618, 590, 591] +Triangle: [620, 619, 591] +Triangle: [621, 620, 592] +Triangle: [621, 593, 594] +Triangle: [610, 595, 611] +Triangle: [609, 610, 623] +Triangle: [608, 609, 624] +Triangle: [607, 608, 625] +Triangle: [606, 607, 626] +Triangle: [606, 627, 628] +Triangle: [583, 582, 603] +Triangle: [584, 583, 629] +Triangle: [585, 584, 630] +Triangle: [586, 585, 631] +Triangle: [586, 632, 633] +Triangle: [587, 633, 634] +Triangle: [588, 634, 635] +Triangle: [590, 589, 635] +Triangle: [590, 636, 637] +Triangle: [591, 637, 638] +Triangle: [593, 592, 638] +Triangle: [593, 639, 640] +Triangle: [629, 603, 604] +Triangle: [630, 629, 641] +Triangle: [631, 630, 642] +Triangle: [632, 631, 643] +Triangle: [633, 632, 644] +Triangle: [634, 633, 645] +Triangle: [635, 634, 646] +Triangle: [636, 635, 647] +Triangle: [637, 636, 648] +Triangle: [638, 637, 649] +Triangle: [639, 638, 650] +Triangle: [640, 639, 651] +Triangle: [641, 604, 605] +Triangle: [642, 641, 628] +Triangle: [643, 642, 652] +Triangle: [644, 643, 653] +Triangle: [644, 654, 655] +Triangle: [646, 645, 655] +Triangle: [647, 646, 656] +Triangle: [648, 647, 657] +Triangle: [649, 648, 658] +Triangle: [650, 649, 659] +Triangle: [650, 660, 661] +Triangle: [652, 628, 627] +Triangle: [653, 652, 662] +Triangle: [654, 653, 663] +Triangle: [655, 654, 664] +Triangle: [656, 655, 665] +Triangle: [657, 656, 666] +Triangle: [658, 657, 667] +Triangle: [658, 668, 669] +Triangle: [659, 669, 670] +Triangle: [660, 670, 671] +Triangle: [828, 651, 661] +Triangle: [662, 627, 626] +Triangle: [662, 673, 674] +Triangle: [663, 674, 675] +Triangle: [664, 675, 676] +Triangle: [666, 665, 676] +Triangle: [667, 666, 677] +Triangle: [668, 667, 678] +Triangle: [668, 679, 680] +Triangle: [669, 680, 681] +Triangle: [670, 681, 682] +Triangle: [672, 671, 682] +Triangle: [684, 673, 626] +Triangle: [673, 684, 685] +Triangle: [674, 685, 686] +Triangle: [675, 686, 687] +Triangle: [676, 687, 688] +Triangle: [678, 677, 688] +Triangle: [679, 678, 689] +Triangle: [679, 690, 691] +Triangle: [680, 691, 692] +Triangle: [682, 681, 692] +Triangle: [683, 682, 693] +Triangle: [695, 684, 625] +Triangle: [696, 695, 624] +Triangle: [623, 611, 612] +Triangle: [697, 696, 612] +Triangle: [695, 696, 697] +Triangle: [684, 695, 698] +Triangle: [699, 697, 613] +Triangle: [698, 697, 699] +Triangle: [685, 698, 700] +Triangle: [701, 699, 614] +Triangle: [700, 699, 701] +Triangle: [686, 700, 702] +Triangle: [703, 701, 615] +Triangle: [701, 703, 704] +Triangle: [687, 702, 704] +Triangle: [703, 616, 617] +Triangle: [704, 703, 705] +Triangle: [688, 704, 706] +Triangle: [705, 617, 618] +Triangle: [705, 707, 708] +Triangle: [689, 706, 708] +Triangle: [707, 618, 619] +Triangle: [708, 707, 709] +Triangle: [690, 708, 710] +Triangle: [691, 710, 711] +Triangle: [712, 711, 710] +Triangle: [712, 709, 619] +Triangle: [712, 620, 621] +Triangle: [711, 712, 713] +Triangle: [692, 711, 714] +Triangle: [693, 714, 715] +Triangle: [716, 715, 714] +Triangle: [713, 621, 622] +Triangle: [570, 571, 572] +Triangle: [570, 596, 717] +Triangle: [568, 569, 717] +Triangle: [568, 718, 719] +Triangle: [717, 596, 597] +Triangle: [717, 720, 721] +Triangle: [718, 721, 722] +Triangle: [720, 597, 723] +Triangle: [721, 720, 724] +Triangle: [722, 721, 725] +Triangle: [728, 727, 726] +Triangle: [729, 728, 725] +Triangle: [729, 724, 723] +Triangle: [723, 597, 598] +Triangle: [731, 598, 599] +Triangle: [733, 732, 599] +Triangle: [730, 723, 731] +Triangle: [734, 731, 732] +Triangle: [736, 735, 732] +Triangle: [738, 737, 727] +Triangle: [739, 738, 728] +Triangle: [739, 729, 730] +Triangle: [740, 730, 734] +Triangle: [741, 734, 735] +Triangle: [743, 742, 735] +Triangle: [744, 737, 738] +Triangle: [745, 738, 739] +Triangle: [746, 739, 740] +Triangle: [747, 740, 741] +Triangle: [748, 741, 742] +Triangle: [750, 749, 742] +Triangle: [576, 581, 751] +Triangle: [602, 574, 575] +Triangle: [602, 751, 752] +Triangle: [753, 733, 600] +Triangle: [753, 601, 752] +Triangle: [733, 753, 754] +Triangle: [736, 754, 755] +Triangle: [743, 755, 756] +Triangle: [757, 744, 745] +Triangle: [758, 745, 746] +Triangle: [759, 746, 747] +Triangle: [760, 747, 748] +Triangle: [761, 748, 749] +Triangle: [763, 762, 749] +Triangle: [764, 763, 750] +Triangle: [765, 752, 751] +Triangle: [766, 765, 581] +Triangle: [766, 580, 579] +Triangle: [752, 765, 768] +Triangle: [768, 765, 766] +Triangle: [768, 767, 769] +Triangle: [754, 768, 770] +Triangle: [755, 770, 771] +Triangle: [771, 770, 769] +Triangle: [756, 771, 773] +Triangle: [774, 773, 771] +Triangle: [622, 594, 775] +Triangle: [779, 775, 776] +Triangle: [780, 776, 777] +Triangle: [782, 781, 777] +Triangle: [775, 594, 640] +Triangle: [775, 783, 784] +Triangle: [776, 784, 785] +Triangle: [777, 785, 786] +Triangle: [778, 787, 788] +Triangle: [787, 778, 786] +Triangle: [781, 782, 788] +Triangle: [781, 790, 791] +Triangle: [780, 791, 792] +Triangle: [716, 622, 779] +Triangle: [793, 779, 792] +Triangle: [715, 716, 793] +Triangle: [795, 793, 794] +Triangle: [694, 715, 795] +Triangle: [797, 795, 796] +Triangle: [794, 792, 801] +Triangle: [794, 803, 804] +Triangle: [798, 796, 804] +Triangle: [800, 798, 805] +Triangle: [800, 806, 807] +Triangle: [801, 792, 825] +Triangle: [808, 803, 801] +Triangle: [803, 808, 809] +Triangle: [805, 804, 809] +Triangle: [806, 805, 810] +Triangle: [806, 811, 812] +Triangle: [802, 801, 807] +Triangle: [815, 814, 809] +Triangle: [815, 808, 802] +Triangle: [812, 813, 816] +Triangle: [815, 816, 813] +Triangle: [809, 814, 817] +Triangle: [810, 817, 818] +Triangle: [812, 811, 818] +Triangle: [813, 818, 817] +Triangle: [783, 640, 828] +Triangle: [783, 819, 820] +Triangle: [785, 784, 820] +Triangle: [786, 785, 821] +Triangle: [820, 819, 822] +Triangle: [821, 820, 823] +Triangle: [789, 821, 824] +Triangle: [788, 787, 824] +Triangle: [791, 790, 824] +Triangle: [799, 791, 823] +Triangle: [799, 825, 792] +Triangle: [825, 799, 826] +Triangle: [798, 800, 826] +Triangle: [826, 799, 822] +Triangle: [828, 671, 672] +Triangle: [819, 672, 827] +Triangle: [827, 672, 683] +Triangle: [826, 683, 694] +Triangle: [829, 757, 758] +Triangle: [830, 758, 759] +Triangle: [831, 759, 760] +Triangle: [833, 832, 760] +Triangle: [833, 761, 762] +Triangle: [774, 843, 844] +Triangle: [773, 844, 845] +Triangle: [764, 845, 846] +Triangle: [834, 762, 763] +Triangle: [847, 844, 843] +Triangle: [845, 844, 847] +Triangle: [846, 845, 848] +Triangle: [846, 849, 850] +Triangle: [834, 850, 851] +Triangle: [832, 833, 851] +Triangle: [832, 852, 853] +Triangle: [831, 853, 854] +Triangle: [835, 829, 830] +Triangle: [836, 835, 854] +Triangle: [855, 854, 853] +Triangle: [856, 853, 852] +Triangle: [858, 857, 852] +Triangle: [858, 851, 850] +Triangle: [859, 850, 849] +Triangle: [861, 860, 849] +Triangle: [861, 848, 847] +Triangle: [862, 847, 842] +Triangle: [863, 862, 841] +Triangle: [861, 862, 863] +Triangle: [860, 861, 864] +Triangle: [859, 860, 865] +Triangle: [858, 859, 866] +Triangle: [857, 858, 867] +Triangle: [857, 868, 869] +Triangle: [856, 869, 870] +Triangle: [837, 836, 855] +Triangle: [837, 870, 871] +Triangle: [838, 871, 872] +Triangle: [872, 863, 840] +Triangle: [864, 863, 873] +Triangle: [864, 874, 875] +Triangle: [866, 865, 875] +Triangle: [867, 866, 876] +Triangle: [867, 877, 878] +Triangle: [868, 878, 879] +Triangle: [869, 879, 880] +Triangle: [871, 870, 880] +Triangle: [872, 871, 881] +Triangle: [873, 863, 872] +Triangle: [878, 883, 884] +Triangle: [879, 884, 885] +Triangle: [881, 880, 885] +Triangle: [882, 881, 886] +Triangle: [882, 887, 888] +Triangle: [873, 888, 889] +Triangle: [874, 889, 890] +Triangle: [876, 875, 890] +Triangle: [877, 876, 891] +Triangle: [883, 878, 877] +Triangle: [891, 890, 893] +Triangle: [892, 891, 896] +Triangle: [892, 897, 898] +Triangle: [883, 898, 899] +Triangle: [884, 899, 900] +Triangle: [886, 885, 900] +Triangle: [887, 886, 901] +Triangle: [887, 902, 903] +Triangle: [888, 903, 904] +Triangle: [893, 890, 889] +Triangle: [896, 893, 894] +Triangle: [897, 896, 905] +Triangle: [897, 906, 907] +Triangle: [898, 907, 908] +Triangle: [900, 899, 908] +Triangle: [901, 900, 909] +Triangle: [902, 901, 910] +Triangle: [902, 911, 912] +Triangle: [903, 912, 913] +Triangle: [894, 893, 904] +Triangle: [914, 905, 894] +Triangle: [905, 914, 915] +Triangle: [906, 915, 916] +Triangle: [907, 916, 917] +Triangle: [909, 908, 917] +Triangle: [910, 909, 918] +Triangle: [911, 910, 919] +Triangle: [911, 920, 921] +Triangle: [912, 921, 922] +Triangle: [895, 894, 913] +Triangle: [914, 895, 923] +Triangle: [915, 914, 924] +Triangle: [915, 925, 926] +Triangle: [916, 926, 927] +Triangle: [917, 927, 928] +Triangle: [919, 918, 928] +Triangle: [920, 919, 929] +Triangle: [920, 930, 931] +Triangle: [921, 931, 932] +Triangle: [923, 895, 922] +Triangle: [923, 932, 934] +Triangle: [924, 923, 933] +Triangle: [925, 924, 935] +Triangle: [926, 925, 936] +Triangle: [926, 937, 938] +Triangle: [927, 938, 939] +Triangle: [928, 939, 940] +Triangle: [929, 940, 941] +Triangle: [930, 941, 942] +Triangle: [934, 932, 931] +Triangle: [933, 934, 943] +Triangle: [935, 933, 944] +Triangle: [943, 934, 942] +Triangle: [946, 942, 941] +Triangle: [948, 947, 941] +Triangle: [949, 948, 940] +Triangle: [950, 949, 939] +Triangle: [950, 938, 937] +Triangle: [952, 951, 937] +Triangle: [936, 935, 945] +Triangle: [952, 953, 954] +Triangle: [951, 954, 955] +Triangle: [949, 950, 955] +Triangle: [949, 956, 957] +Triangle: [947, 948, 957] +Triangle: [947, 958, 959] +Triangle: [946, 959, 960] +Triangle: [944, 943, 960] +Triangle: [945, 944, 961] +Triangle: [952, 945, 962] +Triangle: [965, 963, 955] +Triangle: [965, 954, 953] +Triangle: [967, 966, 953] +Triangle: [968, 967, 962] +Triangle: [968, 961, 960] +Triangle: [970, 969, 960] +Triangle: [970, 959, 958] +Triangle: [971, 958, 957] +Triangle: [972, 957, 956] +Triangle: [973, 956, 955] +Triangle: [973, 963, 964] +Triangle: [973, 976, 977] +Triangle: [972, 977, 978] +Triangle: [971, 978, 979] +Triangle: [969, 970, 979] +Triangle: [969, 980, 981] +Triangle: [968, 981, 982] +Triangle: [967, 982, 983] +Triangle: [965, 966, 983] +Triangle: [963, 965, 984] +Triangle: [964, 984, 985] +Triangle: [974, 985, 986] +Triangle: [987, 976, 964] +Triangle: [988, 987, 974] +Triangle: [988, 989, 990] +Triangle: [987, 990, 991] +Triangle: [976, 991, 992] +Triangle: [978, 977, 992] +Triangle: [978, 993, 994] +Triangle: [980, 979, 994] +Triangle: [980, 995, 996] +Triangle: [981, 996, 997] +Triangle: [982, 997, 998] +Triangle: [984, 983, 998] +Triangle: [985, 984, 999] +Triangle: [986, 985, 1000] +Triangle: [975, 986, 1001] +Triangle: [988, 975, 1002] +Triangle: [995, 1003, 1004] +Triangle: [997, 996, 1004] +Triangle: [998, 997, 1005] +Triangle: [1006, 1005, 1004] +Triangle: [999, 998, 1006] +Triangle: [1000, 999, 1008] +Triangle: [1008, 1006, 1007] +Triangle: [1009, 1008, 1010] +Triangle: [1007, 1004, 1003] +Triangle: [1003, 995, 994] +Triangle: [1012, 1003, 993] +Triangle: [1010, 1007, 1012] +Triangle: [1013, 1012, 992] +Triangle: [1011, 1010, 1013] +Triangle: [1014, 1013, 991] +Triangle: [1001, 1000, 1009] +Triangle: [1002, 1001, 1015] +Triangle: [1002, 1016, 1017] +Triangle: [1015, 1009, 1011] +Triangle: [1016, 1015, 1018] +Triangle: [1018, 1011, 1014] +Triangle: [1017, 1014, 990] +Triangle: [1019, 1020, 173] +Triangle: [1021, 1022, 1020] +Triangle: [1023, 176, 173] +Triangle: [1022, 1024, 1023] +Triangle: [1025, 179, 176] +Triangle: [1026, 1025, 1023] +Triangle: [1027, 182, 179] +Triangle: [1027, 1028, 184] +Triangle: [1028, 1029, 186] +Triangle: [1030, 1027, 1025] +Triangle: [1031, 1028, 1027] +Triangle: [1029, 1028, 1031] +Triangle: [1033, 1019, 172] +Triangle: [192, 1034, 1033] +Triangle: [193, 1035, 1034] +Triangle: [1036, 1021, 1019] +Triangle: [1036, 1033, 1034] +Triangle: [1037, 1035, 193] +Triangle: [1037, 1039, 1038] +Triangle: [1040, 1036, 1035] +Triangle: [1041, 1021, 1036] +Triangle: [1022, 1021, 1041] +Triangle: [1024, 1022, 1042] +Triangle: [1026, 1024, 1043] +Triangle: [1030, 1026, 1044] +Triangle: [1031, 1030, 1045] +Triangle: [1032, 1031, 1046] +Triangle: [198, 214, 1051] +Triangle: [1039, 1037, 1051] +Triangle: [1048, 1052, 1039] +Triangle: [1048, 1050, 1049] +Triangle: [1051, 1053, 1049] +Triangle: [217, 1053, 1051] +Triangle: [1054, 1038, 1039] +Triangle: [1054, 1052, 1055] +Triangle: [1057, 1055, 1052] +Triangle: [1058, 1057, 1049] +Triangle: [223, 1058, 1053] +Triangle: [1059, 1040, 1038] +Triangle: [1060, 1041, 1040] +Triangle: [1056, 1061, 1059] +Triangle: [1060, 1059, 1061] +Triangle: [1042, 1041, 1060] +Triangle: [1043, 1042, 1063] +Triangle: [1065, 1044, 1043] +Triangle: [1045, 1044, 1065] +Triangle: [1067, 1046, 1045] +Triangle: [1047, 1046, 1067] +Triangle: [1062, 1069, 1063] +Triangle: [1070, 1064, 1063] +Triangle: [1071, 1065, 1064] +Triangle: [1072, 1066, 1065] +Triangle: [1058, 223, 238] +Triangle: [1074, 1057, 1058] +Triangle: [1055, 1057, 1074] +Triangle: [1056, 1055, 1075] +Triangle: [1061, 1056, 1076] +Triangle: [1062, 1061, 1077] +Triangle: [1069, 1062, 1078] +Triangle: [1080, 1070, 1069] +Triangle: [1071, 1070, 1080] +Triangle: [1072, 1071, 1081] +Triangle: [1084, 1083, 1072] +Triangle: [1067, 1066, 1072] +Triangle: [1068, 1067, 1083] +Triangle: [1073, 238, 252] +Triangle: [253, 1087, 1086] +Triangle: [254, 1088, 1087] +Triangle: [255, 1089, 1088] +Triangle: [1074, 1073, 1086] +Triangle: [1087, 1091, 1090] +Triangle: [1075, 1074, 1090] +Triangle: [1076, 1075, 1092] +Triangle: [1077, 1076, 1093] +Triangle: [1078, 1077, 1094] +Triangle: [1079, 1078, 1095] +Triangle: [1097, 1080, 1079] +Triangle: [1098, 1081, 1080] +Triangle: [1099, 1082, 1081] +Triangle: [1100, 1085, 1083] +Triangle: [1082, 1099, 1100] +Triangle: [1102, 1101, 1098] +Triangle: [1102, 1104, 1103] +Triangle: [1105, 1104, 1102] +Triangle: [1096, 1106, 1105] +Triangle: [1107, 1106, 1096] +Triangle: [1108, 1107, 1095] +Triangle: [1109, 1108, 1094] +Triangle: [1110, 1109, 1093] +Triangle: [1091, 1110, 1092] +Triangle: [1088, 1111, 1091] +Triangle: [1112, 1099, 1098] +Triangle: [1029, 1113, 283] +Triangle: [1032, 1114, 1113] +Triangle: [1047, 1115, 1114] +Triangle: [1068, 1116, 1115] +Triangle: [1085, 1117, 1116] +Triangle: [1100, 1118, 1117] +Triangle: [1119, 1118, 1100] +Triangle: [1120, 1119, 1099] +Triangle: [1122, 1118, 1119] +Triangle: [1123, 1117, 1118] +Triangle: [1125, 1116, 1117] +Triangle: [1123, 1126, 1124] +Triangle: [1127, 1115, 1116] +Triangle: [1114, 1115, 1127] +Triangle: [1113, 1114, 1128] +Triangle: [283, 1113, 1129] +Triangle: [1129, 1130, 302] +Triangle: [1128, 1131, 1130] +Triangle: [1127, 1132, 1131] +Triangle: [1132, 1127, 1125] +Triangle: [1133, 1132, 1124] +Triangle: [1134, 1131, 1132] +Triangle: [1135, 1130, 1131] +Triangle: [309, 302, 1130] +Triangle: [1135, 1136, 310] +Triangle: [1134, 1137, 1136] +Triangle: [1133, 1138, 1137] +Triangle: [1126, 1139, 1138] +Triangle: [1123, 1140, 1139] +Triangle: [1122, 1141, 1140] +Triangle: [1136, 1142, 317] +Triangle: [1137, 1143, 1142] +Triangle: [1138, 1144, 1143] +Triangle: [1139, 1145, 1144] +Triangle: [1140, 1146, 1145] +Triangle: [1141, 1147, 1146] +Triangle: [1121, 1147, 1141] +Triangle: [1148, 1120, 1112] +Triangle: [1120, 1149, 1121] +Triangle: [1148, 1150, 1149] +Triangle: [1103, 1150, 1148] +Triangle: [1147, 1121, 1149] +Triangle: [1150, 1152, 1151] +Triangle: [1154, 1153, 1150] +Triangle: [1152, 1150, 1153] +Triangle: [1156, 1237, 1153] +Triangle: [1155, 1156, 1157] +Triangle: [1154, 1103, 1160] +Triangle: [1159, 1160, 1103] +Triangle: [1162, 1159, 1104] +Triangle: [1163, 1162, 1105] +Triangle: [1156, 1154, 1161] +Triangle: [1165, 1157, 1156] +Triangle: [1159, 1162, 1166] +Triangle: [1167, 1166, 1162] +Triangle: [1166, 1164, 1161] +Triangle: [1165, 1164, 1166] +Triangle: [1168, 1163, 1106] +Triangle: [1169, 1167, 1163] +Triangle: [1170, 1165, 1167] +Triangle: [1157, 1165, 1170] +Triangle: [1169, 1168, 1171] +Triangle: [1172, 1171, 1168] +Triangle: [1173, 1158, 1157] +Triangle: [1108, 1174, 1172] +Triangle: [1172, 1175, 1173] +Triangle: [1174, 1176, 1175] +Triangle: [1110, 1091, 1111] +Triangle: [1109, 1110, 1177] +Triangle: [1178, 1174, 1108] +Triangle: [1179, 1176, 1174] +Triangle: [1177, 1180, 1179] +Triangle: [1181, 1180, 1177] +Triangle: [1089, 1181, 1111] +Triangle: [1089, 255, 358] +Triangle: [1181, 1089, 1182] +Triangle: [1180, 1181, 1183] +Triangle: [1184, 1186, 1185] +Triangle: [1186, 1188, 1187] +Triangle: [1188, 1190, 1189] +Triangle: [1191, 1189, 1190] +Triangle: [1192, 1194, 1193] +Triangle: [1194, 1196, 1195] +Triangle: [1196, 1198, 1197] +Triangle: [1198, 380, 379] +Triangle: [359, 1199, 1182] +Triangle: [1200, 1183, 1182] +Triangle: [1184, 1183, 1200] +Triangle: [1186, 1184, 1201] +Triangle: [1188, 1186, 1202] +Triangle: [1190, 1188, 1203] +Triangle: [1192, 1190, 1204] +Triangle: [1194, 1192, 1205] +Triangle: [1196, 1194, 1206] +Triangle: [1198, 1196, 1207] +Triangle: [380, 1198, 1208] +Triangle: [1185, 1176, 1179] +Triangle: [1187, 1209, 1176] +Triangle: [1189, 1210, 1209] +Triangle: [1211, 1210, 1189] +Triangle: [1212, 1211, 1191] +Triangle: [1195, 1213, 1212] +Triangle: [1214, 1213, 1195] +Triangle: [379, 398, 1214] +Triangle: [1175, 1176, 1209] +Triangle: [1216, 1173, 1175] +Triangle: [1210, 1217, 1215] +Triangle: [1218, 1217, 1210] +Triangle: [1219, 1218, 1211] +Triangle: [1213, 1220, 1219] +Triangle: [1221, 1220, 1213] +Triangle: [398, 406, 1221] +Triangle: [1216, 1215, 1217] +Triangle: [1218, 1223, 1222] +Triangle: [1219, 1224, 1223] +Triangle: [1220, 1225, 1224] +Triangle: [1221, 1226, 1225] +Triangle: [406, 412, 1226] +Triangle: [1222, 1158, 1173] +Triangle: [1227, 1158, 1222] +Triangle: [1228, 1227, 1223] +Triangle: [1229, 1228, 1224] +Triangle: [1226, 1230, 1229] +Triangle: [412, 417, 1230] +Triangle: [1231, 1230, 417] +Triangle: [1229, 1230, 1231] +Triangle: [1228, 1229, 1232] +Triangle: [1227, 1228, 1233] +Triangle: [1236, 1233, 1232] +Triangle: [1155, 1238, 1237] +Triangle: [1239, 1155, 1158] +Triangle: [1238, 1155, 1239] +Triangle: [1242, 1238, 1240] +Triangle: [1242, 1152, 1237] +Triangle: [1151, 1152, 1243] +Triangle: [1242, 1245, 1243] +Triangle: [1241, 1246, 1245] +Triangle: [1247, 1147, 1151] +Triangle: [1146, 1147, 1247] +Triangle: [1249, 1145, 1146] +Triangle: [1250, 1144, 1145] +Triangle: [1251, 1143, 1144] +Triangle: [1252, 1142, 1143] +Triangle: [441, 317, 1142] +Triangle: [1255, 1245, 1246] +Triangle: [1256, 1255, 1253] +Triangle: [1234, 1257, 1256] +Triangle: [1231, 1257, 1234] +Triangle: [447, 1257, 1231] +Triangle: [448, 1256, 1257] +Triangle: [448, 450, 1258] +Triangle: [1255, 1256, 1258] +Triangle: [1260, 1258, 450] +Triangle: [1259, 1258, 1260] +Triangle: [1262, 1245, 1255] +Triangle: [1263, 1243, 1245] +Triangle: [1261, 1263, 1262] +Triangle: [452, 1264, 1260] +Triangle: [1261, 1260, 1264] +Triangle: [1263, 1261, 1265] +Triangle: [1266, 1244, 1243] +Triangle: [453, 1267, 1264] +Triangle: [1265, 1264, 1267] +Triangle: [1266, 1265, 1268] +Triangle: [1269, 1247, 1244] +Triangle: [1270, 1248, 1247] +Triangle: [1271, 1270, 1269] +Triangle: [1272, 1271, 1268] +Triangle: [454, 1272, 1267] +Triangle: [455, 1273, 1272] +Triangle: [456, 1274, 1273] +Triangle: [457, 1275, 1279] +Triangle: [1252, 1275, 457] +Triangle: [1249, 1277, 1276] +Triangle: [1277, 1249, 1248] +Triangle: [1278, 1277, 1270] +Triangle: [1273, 1278, 1271] +Triangle: [1280, 1276, 1277] +Triangle: [1274, 1280, 1278] +Triangle: [1275, 1281, 1280] +Triangle: [1251, 1281, 1275] +Triangle: [1281, 1251, 1250] +Triangle: [1246, 1241, 1282] +Triangle: [1240, 1284, 1282] +Triangle: [1239, 1285, 1284] +Triangle: [1236, 1234, 1254] +Triangle: [1253, 1287, 1286] +Triangle: [1283, 1287, 1253] +Triangle: [1235, 1285, 1239] +Triangle: [1282, 1284, 1288] +Triangle: [1283, 1282, 1289] +Triangle: [1287, 1283, 1290] +Triangle: [1292, 1286, 1287] +Triangle: [1293, 1236, 1286] +Triangle: [1294, 1233, 1236] +Triangle: [1295, 1235, 1233] +Triangle: [1296, 1285, 1235] +Triangle: [1288, 1284, 1285] +Triangle: [1296, 1298, 1297] +Triangle: [1299, 1289, 1288] +Triangle: [1290, 1289, 1299] +Triangle: [1291, 1290, 1300] +Triangle: [1292, 1291, 1301] +Triangle: [1293, 1292, 1302] +Triangle: [1304, 1294, 1293] +Triangle: [1305, 1295, 1294] +Triangle: [1298, 1296, 1295] +Triangle: [1299, 1309, 1306] +Triangle: [1297, 1310, 1309] +Triangle: [1298, 1311, 1310] +Triangle: [1312, 1311, 1298] +Triangle: [1313, 1312, 1305] +Triangle: [1314, 1313, 1304] +Triangle: [1315, 1314, 1303] +Triangle: [1316, 1315, 1302] +Triangle: [1306, 1316, 1301] +Triangle: [1307, 1317, 1316] +Triangle: [1315, 1316, 1317] +Triangle: [1314, 1315, 1318] +Triangle: [1313, 1314, 1319] +Triangle: [1312, 1313, 1320] +Triangle: [1322, 1311, 1312] +Triangle: [1323, 1310, 1311] +Triangle: [1324, 1309, 1310] +Triangle: [1307, 1306, 1309] +Triangle: [1325, 1308, 1307] +Triangle: [1323, 1326, 1325] +Triangle: [1322, 1327, 1326] +Triangle: [1328, 1327, 1322] +Triangle: [1329, 1328, 1321] +Triangle: [1330, 1329, 1320] +Triangle: [1331, 1330, 1319] +Triangle: [1332, 1331, 1318] +Triangle: [1308, 1332, 1317] +Triangle: [1331, 1332, 1333] +Triangle: [1330, 1331, 1334] +Triangle: [1336, 1329, 1330] +Triangle: [1328, 1329, 1336] +Triangle: [1327, 1328, 1337] +Triangle: [1339, 1326, 1327] +Triangle: [1340, 1325, 1326] +Triangle: [1308, 1325, 1340] +Triangle: [1333, 1332, 1308] +Triangle: [1342, 1334, 1333] +Triangle: [1343, 1342, 1341] +Triangle: [1343, 1340, 1339] +Triangle: [1344, 1343, 1338] +Triangle: [1342, 1343, 1344] +Triangle: [1345, 1335, 1334] +Triangle: [1336, 1345, 1344] +Triangle: [360, 1346, 1199] +Triangle: [361, 1347, 1346] +Triangle: [1348, 1200, 1199] +Triangle: [1349, 1201, 1200] +Triangle: [1202, 1201, 1349] +Triangle: [1203, 1202, 1350] +Triangle: [1204, 1203, 1351] +Triangle: [1205, 1204, 1352] +Triangle: [1206, 1205, 1353] +Triangle: [1207, 1206, 1354] +Triangle: [1208, 1207, 1355] +Triangle: [391, 1208, 1356] +Triangle: [1357, 1348, 1346] +Triangle: [1349, 1348, 1357] +Triangle: [1350, 1349, 1358] +Triangle: [1351, 1350, 1359] +Triangle: [1352, 1351, 1360] +Triangle: [1362, 1353, 1352] +Triangle: [1363, 1354, 1353] +Triangle: [1355, 1354, 1363] +Triangle: [1356, 1355, 1364] +Triangle: [556, 1356, 1365] +Triangle: [1366, 1347, 361] +Triangle: [1367, 1357, 1347] +Triangle: [1358, 1357, 1367] +Triangle: [1369, 1359, 1358] +Triangle: [1360, 1359, 1369] +Triangle: [1371, 1361, 1360] +Triangle: [1362, 1361, 1371] +Triangle: [1373, 1363, 1362] +Triangle: [1374, 1364, 1363] +Triangle: [1375, 1365, 1364] +Triangle: [578, 566, 1365] +Triangle: [1375, 1376, 579] +Triangle: [1374, 1377, 1376] +Triangle: [1391, 1378, 1371] +Triangle: [1372, 1371, 1378] +Triangle: [1398, 1372, 1399] +Triangle: [1397, 1398, 1400] +Triangle: [1396, 1397, 1401] +Triangle: [1403, 1395, 1396] +Triangle: [1404, 1394, 1395] +Triangle: [1405, 1393, 1394] +Triangle: [1406, 1392, 1393] +Triangle: [1391, 1370, 1392] +Triangle: [1407, 1379, 1378] +Triangle: [1380, 1379, 1407] +Triangle: [1409, 1381, 1380] +Triangle: [1410, 1382, 1381] +Triangle: [1383, 1382, 1410] +Triangle: [1384, 1383, 1411] +Triangle: [1385, 1384, 1412] +Triangle: [1386, 1385, 1413] +Triangle: [1387, 1386, 1414] +Triangle: [1416, 1388, 1387] +Triangle: [1417, 1389, 1388] +Triangle: [1390, 1389, 1417] +Triangle: [1406, 1419, 1407] +Triangle: [1405, 1420, 1419] +Triangle: [1404, 1421, 1420] +Triangle: [1403, 1422, 1421] +Triangle: [1402, 1423, 1422] +Triangle: [1424, 1423, 1402] +Triangle: [1379, 1425, 1399] +Triangle: [1380, 1426, 1425] +Triangle: [1381, 1427, 1426] +Triangle: [1382, 1428, 1427] +Triangle: [1429, 1428, 1382] +Triangle: [1430, 1429, 1383] +Triangle: [1431, 1430, 1384] +Triangle: [1386, 1432, 1431] +Triangle: [1433, 1432, 1386] +Triangle: [1434, 1433, 1387] +Triangle: [1389, 1435, 1434] +Triangle: [1436, 1435, 1389] +Triangle: [1400, 1399, 1425] +Triangle: [1426, 1438, 1437] +Triangle: [1427, 1439, 1438] +Triangle: [1428, 1440, 1439] +Triangle: [1429, 1441, 1440] +Triangle: [1430, 1442, 1441] +Triangle: [1431, 1443, 1442] +Triangle: [1432, 1444, 1443] +Triangle: [1433, 1445, 1444] +Triangle: [1434, 1446, 1445] +Triangle: [1435, 1447, 1446] +Triangle: [1436, 1613, 1447] +Triangle: [1437, 1424, 1401] +Triangle: [1438, 1448, 1424] +Triangle: [1439, 1449, 1448] +Triangle: [1440, 1450, 1449] +Triangle: [1451, 1450, 1440] +Triangle: [1442, 1452, 1451] +Triangle: [1443, 1453, 1452] +Triangle: [1444, 1454, 1453] +Triangle: [1445, 1455, 1454] +Triangle: [1446, 1456, 1455] +Triangle: [1457, 1456, 1446] +Triangle: [1423, 1424, 1448] +Triangle: [1449, 1459, 1458] +Triangle: [1450, 1460, 1459] +Triangle: [1451, 1461, 1460] +Triangle: [1452, 1462, 1461] +Triangle: [1453, 1463, 1462] +Triangle: [1454, 1464, 1463] +Triangle: [1465, 1464, 1454] +Triangle: [1466, 1465, 1455] +Triangle: [1467, 1466, 1456] +Triangle: [1613, 1467, 1457] +Triangle: [1422, 1423, 1458] +Triangle: [1470, 1469, 1458] +Triangle: [1471, 1470, 1459] +Triangle: [1472, 1471, 1460] +Triangle: [1462, 1473, 1472] +Triangle: [1463, 1474, 1473] +Triangle: [1464, 1475, 1474] +Triangle: [1476, 1475, 1464] +Triangle: [1477, 1476, 1465] +Triangle: [1478, 1477, 1466] +Triangle: [1468, 1479, 1478] +Triangle: [1480, 1421, 1422] +Triangle: [1481, 1480, 1469] +Triangle: [1482, 1481, 1470] +Triangle: [1483, 1482, 1471] +Triangle: [1484, 1483, 1472] +Triangle: [1474, 1485, 1484] +Triangle: [1475, 1486, 1485] +Triangle: [1487, 1486, 1475] +Triangle: [1488, 1487, 1476] +Triangle: [1478, 1489, 1488] +Triangle: [1479, 1490, 1489] +Triangle: [1491, 1420, 1421] +Triangle: [1492, 1419, 1420] +Triangle: [1408, 1407, 1419] +Triangle: [1493, 1409, 1408] +Triangle: [1491, 1494, 1493] +Triangle: [1494, 1491, 1480] +Triangle: [1495, 1410, 1409] +Triangle: [1494, 1496, 1495] +Triangle: [1496, 1494, 1481] +Triangle: [1497, 1411, 1410] +Triangle: [1496, 1498, 1497] +Triangle: [1498, 1496, 1482] +Triangle: [1499, 1412, 1411] +Triangle: [1500, 1499, 1497] +Triangle: [1500, 1498, 1483] +Triangle: [1413, 1412, 1499] +Triangle: [1500, 1502, 1501] +Triangle: [1502, 1500, 1484] +Triangle: [1414, 1413, 1501] +Triangle: [1504, 1503, 1501] +Triangle: [1504, 1502, 1485] +Triangle: [1415, 1414, 1503] +Triangle: [1504, 1506, 1505] +Triangle: [1506, 1504, 1486] +Triangle: [1507, 1506, 1487] +Triangle: [1508, 1505, 1506] +Triangle: [1508, 1416, 1415] +Triangle: [1417, 1416, 1508] +Triangle: [1507, 1510, 1509] +Triangle: [1510, 1507, 1488] +Triangle: [1511, 1510, 1489] +Triangle: [1512, 1509, 1510] +Triangle: [1418, 1417, 1509] +Triangle: [1368, 1392, 1370] +Triangle: [1513, 1392, 1368] +Triangle: [1366, 1514, 1513] +Triangle: [719, 1514, 1366] +Triangle: [1393, 1392, 1513] +Triangle: [1516, 1515, 1513] +Triangle: [722, 1516, 1514] +Triangle: [1515, 1518, 1517] +Triangle: [1516, 1519, 1518] +Triangle: [722, 726, 1519] +Triangle: [1520, 1519, 726] +Triangle: [1521, 1518, 1519] +Triangle: [1517, 1518, 1521] +Triangle: [1394, 1393, 1517] +Triangle: [1395, 1394, 1523] +Triangle: [1525, 1396, 1395] +Triangle: [1522, 1526, 1523] +Triangle: [1524, 1523, 1526] +Triangle: [1528, 1525, 1524] +Triangle: [1529, 1520, 727] +Triangle: [1530, 1521, 1520] +Triangle: [1522, 1521, 1530] +Triangle: [1526, 1522, 1531] +Triangle: [1527, 1526, 1532] +Triangle: [1534, 1528, 1527] +Triangle: [1529, 737, 744] +Triangle: [1530, 1529, 1535] +Triangle: [1531, 1530, 1536] +Triangle: [1532, 1531, 1537] +Triangle: [1533, 1532, 1538] +Triangle: [1540, 1534, 1533] +Triangle: [1541, 1377, 1374] +Triangle: [1398, 1541, 1373] +Triangle: [1542, 1541, 1398] +Triangle: [1396, 1525, 1543] +Triangle: [1542, 1397, 1543] +Triangle: [1544, 1543, 1525] +Triangle: [1545, 1544, 1528] +Triangle: [1546, 1545, 1534] +Triangle: [1535, 744, 757] +Triangle: [1536, 1535, 1547] +Triangle: [1537, 1536, 1548] +Triangle: [1538, 1537, 1549] +Triangle: [1539, 1538, 1550] +Triangle: [1552, 1540, 1539] +Triangle: [1553, 1546, 1540] +Triangle: [1554, 1377, 1541] +Triangle: [1555, 1376, 1377] +Triangle: [579, 1376, 1555] +Triangle: [1556, 1554, 1542] +Triangle: [1556, 767, 1555] +Triangle: [1556, 1557, 769] +Triangle: [1557, 1556, 1544] +Triangle: [1558, 1557, 1545] +Triangle: [769, 1557, 1558] +Triangle: [1559, 1558, 1546] +Triangle: [774, 772, 1558] +Triangle: [1418, 1564, 1560] +Triangle: [1561, 1560, 1564] +Triangle: [1562, 1561, 1565] +Triangle: [1567, 1563, 1562] +Triangle: [1436, 1390, 1560] +Triangle: [1569, 1568, 1560] +Triangle: [1570, 1569, 1561] +Triangle: [1571, 1570, 1562] +Triangle: [1573, 1572, 1563] +Triangle: [1571, 1563, 1572] +Triangle: [1566, 1575, 1573] +Triangle: [1576, 1575, 1566] +Triangle: [1577, 1576, 1565] +Triangle: [1512, 1578, 1564] +Triangle: [1577, 1564, 1578] +Triangle: [1511, 1580, 1578] +Triangle: [1579, 1578, 1580] +Triangle: [1490, 1582, 1580] +Triangle: [1581, 1580, 1582] +Triangle: [1579, 1588, 1586] +Triangle: [1589, 1588, 1579] +Triangle: [1583, 1590, 1589] +Triangle: [1585, 1591, 1590] +Triangle: [1592, 1591, 1585] +Triangle: [1586, 1592, 1610] +Triangle: [1593, 1587, 1586] +Triangle: [1594, 1593, 1588] +Triangle: [1590, 1595, 1594] +Triangle: [1591, 1596, 1595] +Triangle: [1597, 1596, 1591] +Triangle: [1587, 1597, 1592] +Triangle: [1600, 1593, 1594] +Triangle: [1600, 1601, 1587] +Triangle: [1601, 1598, 1597] +Triangle: [1598, 1601, 1600] +Triangle: [1602, 1599, 1594] +Triangle: [1603, 1602, 1595] +Triangle: [1603, 1596, 1597] +Triangle: [1598, 1599, 1602] +Triangle: [1613, 1436, 1568] +Triangle: [1605, 1604, 1568] +Triangle: [1570, 1606, 1605] +Triangle: [1606, 1570, 1571] +Triangle: [1605, 1608, 1607] +Triangle: [1606, 1609, 1608] +Triangle: [1609, 1606, 1574] +Triangle: [1609, 1572, 1573] +Triangle: [1576, 1608, 1609] +Triangle: [1584, 1607, 1608] +Triangle: [1577, 1610, 1584] +Triangle: [1611, 1584, 1610] +Triangle: [1611, 1585, 1583] +Triangle: [1607, 1584, 1611] +Triangle: [1468, 1467, 1613] +Triangle: [1604, 1607, 1612] +Triangle: [1479, 1468, 1612] +Triangle: [1611, 1582, 1490] +Triangle: [1547, 757, 829] +Triangle: [1548, 1547, 1614] +Triangle: [1549, 1548, 1615] +Triangle: [1617, 1550, 1549] +Triangle: [1551, 1550, 1617] +Triangle: [1619, 843, 774] +Triangle: [1620, 1619, 1559] +Triangle: [1621, 1620, 1553] +Triangle: [1618, 1621, 1552] +Triangle: [1622, 842, 843] +Triangle: [1620, 1623, 1622] +Triangle: [1621, 1624, 1623] +Triangle: [1625, 1624, 1621] +Triangle: [1626, 1625, 1618] +Triangle: [1616, 1627, 1626] +Triangle: [1628, 1627, 1616] +Triangle: [1629, 1628, 1615] +Triangle: [835, 1629, 1614] +Triangle: [836, 1630, 1629] +Triangle: [1628, 1629, 1630] +Triangle: [1627, 1628, 1631] +Triangle: [1633, 1626, 1627] +Triangle: [1625, 1626, 1633] +Triangle: [1624, 1625, 1634] +Triangle: [1636, 1623, 1624] +Triangle: [1622, 1623, 1636] +Triangle: [1637, 841, 842] +Triangle: [1638, 840, 841] +Triangle: [1636, 1639, 1638] +Triangle: [1635, 1640, 1639] +Triangle: [1634, 1641, 1640] +Triangle: [1633, 1642, 1641] +Triangle: [1632, 1643, 1642] +Triangle: [1644, 1643, 1632] +Triangle: [1645, 1644, 1631] +Triangle: [837, 1645, 1630] +Triangle: [1646, 1645, 837] +Triangle: [1647, 1646, 838] +Triangle: [840, 1638, 1647] +Triangle: [1639, 1649, 1648] +Triangle: [1650, 1649, 1639] +Triangle: [1641, 1651, 1650] +Triangle: [1642, 1652, 1651] +Triangle: [1653, 1652, 1642] +Triangle: [1654, 1653, 1643] +Triangle: [1655, 1654, 1644] +Triangle: [1646, 1656, 1655] +Triangle: [1647, 1657, 1656] +Triangle: [1648, 1657, 1647] +Triangle: [1659, 1658, 1653] +Triangle: [1660, 1659, 1654] +Triangle: [1656, 1661, 1660] +Triangle: [1657, 1662, 1661] +Triangle: [1663, 1662, 1657] +Triangle: [1664, 1663, 1648] +Triangle: [1665, 1664, 1649] +Triangle: [1651, 1666, 1665] +Triangle: [1652, 1667, 1666] +Triangle: [1658, 1667, 1652] +Triangle: [1666, 1671, 1668] +Triangle: [1667, 1672, 1671] +Triangle: [1673, 1672, 1667] +Triangle: [1674, 1673, 1658] +Triangle: [1675, 1674, 1659] +Triangle: [1661, 1676, 1675] +Triangle: [1662, 1677, 1676] +Triangle: [1678, 1677, 1662] +Triangle: [1679, 1678, 1663] +Triangle: [1668, 1679, 1664] +Triangle: [1669, 1668, 1671] +Triangle: [1672, 1681, 1680] +Triangle: [1682, 1681, 1672] +Triangle: [1683, 1682, 1673] +Triangle: [1675, 1684, 1683] +Triangle: [1676, 1685, 1684] +Triangle: [1677, 1686, 1685] +Triangle: [1687, 1686, 1677] +Triangle: [1688, 1687, 1678] +Triangle: [1669, 1688, 1679] +Triangle: [1689, 1670, 1669] +Triangle: [1690, 1689, 1680] +Triangle: [1691, 1690, 1681] +Triangle: [1692, 1691, 1682] +Triangle: [1684, 1693, 1692] +Triangle: [1685, 1694, 1693] +Triangle: [1686, 1695, 1694] +Triangle: [1696, 1695, 1686] +Triangle: [1697, 1696, 1687] +Triangle: [1670, 1697, 1688] +Triangle: [1689, 1699, 1698] +Triangle: [1690, 1700, 1699] +Triangle: [1701, 1700, 1690] +Triangle: [1702, 1701, 1691] +Triangle: [1703, 1702, 1692] +Triangle: [1694, 1704, 1703] +Triangle: [1695, 1705, 1704] +Triangle: [1706, 1705, 1695] +Triangle: [1707, 1706, 1696] +Triangle: [1698, 1707, 1697] +Triangle: [1698, 1708, 1709] +Triangle: [1699, 1710, 1708] +Triangle: [1700, 1711, 1710] +Triangle: [1701, 1712, 1711] +Triangle: [1713, 1712, 1701] +Triangle: [1714, 1713, 1702] +Triangle: [1715, 1714, 1703] +Triangle: [1716, 1715, 1704] +Triangle: [1717, 1716, 1705] +Triangle: [1709, 1717, 1706] +Triangle: [1708, 1719, 1718] +Triangle: [1710, 1720, 1719] +Triangle: [1717, 1709, 1718] +Triangle: [1716, 1717, 1721] +Triangle: [1723, 1715, 1716] +Triangle: [1724, 1714, 1715] +Triangle: [1725, 1713, 1714] +Triangle: [1712, 1713, 1725] +Triangle: [1727, 1711, 1712] +Triangle: [1720, 1710, 1711] +Triangle: [1729, 1728, 1727] +Triangle: [1730, 1729, 1726] +Triangle: [1724, 1731, 1730] +Triangle: [1732, 1731, 1724] +Triangle: [1722, 1733, 1732] +Triangle: [1734, 1733, 1722] +Triangle: [1735, 1734, 1721] +Triangle: [1719, 1736, 1735] +Triangle: [1720, 1737, 1736] +Triangle: [1737, 1720, 1727] +Triangle: [1740, 1729, 1730] +Triangle: [1728, 1729, 1740] +Triangle: [1742, 1737, 1728] +Triangle: [1743, 1736, 1737] +Triangle: [1735, 1736, 1743] +Triangle: [1745, 1734, 1735] +Triangle: [1733, 1734, 1745] +Triangle: [1732, 1733, 1746] +Triangle: [1731, 1732, 1747] +Triangle: [1748, 1738, 1730] +Triangle: [1739, 1738, 1748] +Triangle: [1752, 1751, 1748] +Triangle: [1753, 1752, 1747] +Triangle: [1754, 1753, 1746] +Triangle: [1744, 1755, 1754] +Triangle: [1756, 1755, 1744] +Triangle: [1757, 1756, 1743] +Triangle: [1758, 1757, 1742] +Triangle: [1740, 1759, 1758] +Triangle: [1759, 1740, 1738] +Triangle: [1760, 1759, 1739] +Triangle: [1761, 1760, 1749] +Triangle: [1762, 1749, 1739] +Triangle: [1763, 1750, 1749] +Triangle: [1765, 1764, 1763] +Triangle: [1766, 1765, 1762] +Triangle: [1767, 1766, 1751] +Triangle: [1753, 1768, 1767] +Triangle: [1769, 1768, 1753] +Triangle: [1755, 1770, 1769] +Triangle: [1771, 1770, 1755] +Triangle: [1772, 1771, 1756] +Triangle: [1773, 1772, 1757] +Triangle: [1759, 1774, 1773] +Triangle: [1760, 1775, 1774] +Triangle: [1761, 1776, 1775] +Triangle: [1750, 1777, 1776] +Triangle: [1777, 1750, 1763] +Triangle: [1779, 1778, 1770] +Triangle: [1772, 1780, 1779] +Triangle: [1773, 1781, 1780] +Triangle: [1779, 1780, 1781] +Triangle: [1774, 1783, 1781] +Triangle: [1775, 1784, 1783] +Triangle: [1782, 1781, 1783] +Triangle: [1784, 1786, 1785] +Triangle: [1778, 1779, 1782] +Triangle: [1778, 1768, 1769] +Triangle: [1787, 1767, 1768] +Triangle: [1785, 1788, 1787] +Triangle: [1788, 1766, 1767] +Triangle: [1786, 1789, 1788] +Triangle: [1789, 1765, 1766] +Triangle: [1776, 1790, 1784] +Triangle: [1777, 1791, 1790] +Triangle: [1792, 1791, 1777] +Triangle: [1786, 1784, 1790] +Triangle: [1793, 1790, 1791] +Triangle: [1789, 1786, 1793] +Triangle: [1765, 1789, 1792] +Triangle: [1806, 1794, 1795] +Triangle: [1807, 1795, 1796] +Triangle: [1808, 1796, 1797] +Triangle: [1810, 1809, 1797] +Triangle: [1811, 1810, 1798] +Triangle: [1812, 1811, 1799] +Triangle: [1812, 1800, 1801] +Triangle: [1814, 1813, 1801] +Triangle: [1814, 1802, 1803] +Triangle: [1816, 1815, 1803] +Triangle: [1816, 1804, 1805] +Triangle: [1817, 1818, 1819] +Triangle: [1815, 1816, 1819] +Triangle: [1812, 1821, 1832] +Triangle: [1821, 1812, 1813] +Triangle: [1840, 1813, 1839] +Triangle: [1841, 1839, 1838] +Triangle: [1843, 2039, 2044] +Triangle: [1844, 1843, 1837] +Triangle: [1845, 1844, 1836] +Triangle: [1845, 1835, 1834] +Triangle: [1846, 1834, 1833] +Triangle: [1832, 1847, 1833] +Triangle: [1848, 1832, 1821] +Triangle: [1849, 1848, 1822] +Triangle: [1850, 1849, 1823] +Triangle: [1851, 1850, 1824] +Triangle: [1851, 1825, 1826] +Triangle: [1852, 1826, 1827] +Triangle: [1853, 1827, 1828] +Triangle: [1854, 1828, 1829] +Triangle: [1855, 1829, 1830] +Triangle: [1856, 1830, 1831] +Triangle: [1847, 1832, 1848] +Triangle: [1847, 1858, 1859] +Triangle: [1845, 1846, 1859] +Triangle: [1844, 1845, 1860] +Triangle: [1844, 1861, 1862] +Triangle: [2039, 2043, 1863] +Triangle: [1822, 1821, 1840] +Triangle: [1823, 1822, 1864] +Triangle: [1824, 1823, 1865] +Triangle: [1825, 1824, 1866] +Triangle: [1826, 1825, 1867] +Triangle: [1826, 1868, 1869] +Triangle: [1827, 1869, 1870] +Triangle: [1829, 1828, 1870] +Triangle: [1830, 1829, 1871] +Triangle: [1830, 1872, 1873] +Triangle: [1864, 1840, 1841] +Triangle: [1865, 1864, 1874] +Triangle: [1866, 1865, 1875] +Triangle: [1867, 1866, 1876] +Triangle: [1868, 1867, 1877] +Triangle: [1869, 1868, 1878] +Triangle: [1870, 1869, 1879] +Triangle: [1871, 1870, 1880] +Triangle: [1872, 1871, 1881] +Triangle: [1873, 1872, 1882] +Triangle: [1874, 1841, 1842] +Triangle: [1875, 1874, 1863] +Triangle: [1876, 1875, 1884] +Triangle: [1877, 1876, 1885] +Triangle: [1878, 1877, 1886] +Triangle: [1879, 1878, 1887] +Triangle: [1880, 1879, 1888] +Triangle: [1881, 1880, 1889] +Triangle: [1882, 1881, 1890] +Triangle: [1883, 1882, 1891] +Triangle: [2037, 2043, 1862] +Triangle: [1885, 1884, 2037] +Triangle: [1885, 2040, 2045] +Triangle: [1886, 2045, 2046] +Triangle: [1888, 1887, 2046] +Triangle: [1889, 1888, 2050] +Triangle: [1890, 1889, 2053] +Triangle: [1891, 1890, 2047] +Triangle: [1891, 2038, 2041] +Triangle: [1902, 1893, 1862] +Triangle: [1893, 1902, 1903] +Triangle: [1894, 1903, 1904] +Triangle: [1895, 1904, 1905] +Triangle: [1896, 1905, 1906] +Triangle: [1898, 1897, 1906] +Triangle: [1899, 1898, 1907] +Triangle: [1899, 1908, 1909] +Triangle: [1901, 1900, 1909] +Triangle: [1911, 1902, 1861] +Triangle: [1902, 1911, 1912] +Triangle: [1903, 1912, 1913] +Triangle: [1904, 1913, 1914] +Triangle: [1905, 1914, 1915] +Triangle: [1906, 1915, 1916] +Triangle: [1908, 1907, 1916] +Triangle: [1908, 1917, 1918] +Triangle: [1910, 1909, 1918] +Triangle: [1920, 1911, 1860] +Triangle: [1921, 1920, 1859] +Triangle: [1921, 1858, 1848] +Triangle: [1922, 1921, 1849] +Triangle: [1920, 1921, 1922] +Triangle: [1911, 1920, 1923] +Triangle: [1924, 1922, 1850] +Triangle: [1923, 1922, 1924] +Triangle: [1912, 1923, 1925] +Triangle: [1926, 1924, 1851] +Triangle: [1925, 1924, 1926] +Triangle: [1913, 1925, 1927] +Triangle: [1926, 1852, 1853] +Triangle: [1927, 1926, 1928] +Triangle: [1914, 1927, 1929] +Triangle: [1928, 1853, 1854] +Triangle: [1929, 1928, 1930] +Triangle: [1915, 1929, 1931] +Triangle: [1930, 1854, 1855] +Triangle: [1931, 1930, 1932] +Triangle: [1917, 1916, 1931] +Triangle: [1932, 1855, 1856] +Triangle: [1933, 1932, 1934] +Triangle: [1918, 1917, 1933] +Triangle: [1919, 1918, 1935] +Triangle: [1937, 1936, 1935] +Triangle: [1934, 1856, 1857] +Triangle: [1809, 1810, 1811] +Triangle: [1808, 1809, 1833] +Triangle: [1808, 1938, 1939] +Triangle: [1806, 1807, 1939] +Triangle: [1941, 1938, 1833] +Triangle: [1938, 1941, 1942] +Triangle: [1940, 1939, 1942] +Triangle: [1834, 1944, 1945] +Triangle: [1941, 1945, 1946] +Triangle: [1943, 1942, 1946] +Triangle: [1948, 1947, 1946] +Triangle: [1950, 1949, 1946] +Triangle: [1950, 1945, 1944] +Triangle: [1944, 1834, 1835] +Triangle: [1952, 1835, 1836] +Triangle: [1953, 1836, 1837] +Triangle: [1951, 1944, 1952] +Triangle: [1955, 1952, 1953] +Triangle: [1956, 1953, 1954] +Triangle: [1958, 1948, 1949] +Triangle: [1960, 1959, 1949] +Triangle: [1960, 1950, 1951] +Triangle: [1961, 1951, 1955] +Triangle: [1962, 1955, 1956] +Triangle: [1963, 1956, 1957] +Triangle: [1966, 1965, 1958] +Triangle: [1967, 1966, 1959] +Triangle: [1967, 1960, 1961] +Triangle: [1968, 1961, 1962] +Triangle: [1969, 1962, 1963] +Triangle: [1970, 1963, 1964] +Triangle: [1815, 1820, 1972] +Triangle: [1839, 1813, 1814] +Triangle: [1839, 1972, 1973] +Triangle: [1974, 2042, 2044] +Triangle: [1974, 1838, 1973] +Triangle: [1954, 2042, 2048] +Triangle: [1964, 1957, 2048] +Triangle: [1964, 2049, 2052] +Triangle: [1978, 1965, 1966] +Triangle: [1980, 1979, 1966] +Triangle: [1980, 1967, 1968] +Triangle: [1981, 1968, 1969] +Triangle: [1983, 1982, 1969] +Triangle: [1984, 1983, 1970] +Triangle: [1985, 2055, 2052] +Triangle: [1986, 1973, 1972] +Triangle: [1987, 1986, 1820] +Triangle: [1987, 1819, 1818] +Triangle: [1973, 1986, 1989] +Triangle: [1989, 1986, 1987] +Triangle: [1989, 1988, 1990] +Triangle: [1975, 1989, 1991] +Triangle: [1976, 1991, 1992] +Triangle: [1993, 1992, 1991] +Triangle: [1977, 1992, 1994] +Triangle: [1995, 1994, 1992] +Triangle: [1996, 1978, 1979] +Triangle: [1997, 1979, 1980] +Triangle: [1999, 1998, 1980] +Triangle: [1999, 1981, 1982] +Triangle: [2000, 1982, 1983] +Triangle: [1995, 2008, 2009] +Triangle: [1985, 1994, 2009] +Triangle: [2055, 2054, 2011] +Triangle: [2001, 1983, 1984] +Triangle: [2012, 2009, 2008] +Triangle: [2009, 2012, 2013] +Triangle: [2011, 2054, 2036] +Triangle: [2001, 2011, 2014] +Triangle: [2001, 2015, 2016] +Triangle: [1999, 2000, 2016] +Triangle: [1998, 1999, 2017] +Triangle: [1997, 1998, 2018] +Triangle: [2002, 1996, 1997] +Triangle: [2002, 2019, 2020] +Triangle: [2021, 2020, 2019] +Triangle: [2022, 2021, 2018] +Triangle: [2022, 2017, 2016] +Triangle: [2023, 2016, 2015] +Triangle: [2024, 2015, 2014] +Triangle: [2026, 2056, 2036] +Triangle: [2027, 2026, 2013] +Triangle: [2012, 2007, 2006] +Triangle: [2027, 2006, 2005] +Triangle: [2026, 2027, 2028] +Triangle: [2025, 2056, 2051] +Triangle: [2024, 2025, 2030] +Triangle: [2023, 2024, 2031] +Triangle: [2022, 2023, 2032] +Triangle: [2021, 2022, 2033] +Triangle: [2020, 2021, 2034] +Triangle: [2003, 2020, 2035] +Triangle: [2047, 1899, 1900] +Triangle: [2043, 2039, 1843] +Triangle: [2047, 2053, 1898] +Triangle: [2056, 2025, 2014] +Triangle: [2052, 2055, 1984] +Triangle: [2038, 1900, 1901] +Triangle: [2054, 2055, 1985] +Triangle: [2056, 2026, 2029] +Triangle: [2054, 2010, 2013] +Triangle: [2053, 2050, 1897] +Triangle: [2042, 1954, 1837] +Triangle: [2042, 1974, 1975] +Triangle: [2048, 1975, 1976] +Triangle: [2043, 2037, 1884] +Triangle: [2049, 1976, 1977] +Triangle: [2037, 1893, 1894] +Triangle: [2040, 1894, 1895] +Triangle: [2044, 2039, 1842] +Triangle: [2045, 1895, 1896] +Triangle: [2046, 1896, 1897] +Triangle: [2057, 1794, 1806] +Triangle: [2058, 2057, 2067] +Triangle: [2059, 2058, 2068] +Triangle: [2070, 2060, 2059] +Triangle: [2071, 2061, 2060] +Triangle: [2072, 2062, 2061] +Triangle: [2063, 2062, 2072] +Triangle: [2074, 2064, 2063] +Triangle: [2065, 2064, 2074] +Triangle: [2076, 2066, 2065] +Triangle: [1805, 2066, 2076] +Triangle: [2077, 1818, 1817] +Triangle: [2075, 2078, 2077] +Triangle: [2090, 2079, 2072] +Triangle: [2073, 2072, 2079] +Triangle: [2097, 2073, 2098] +Triangle: [2096, 2097, 2099] +Triangle: [2101, 2095, 2283] +Triangle: [2102, 2094, 2095] +Triangle: [2103, 2093, 2094] +Triangle: [2092, 2093, 2103] +Triangle: [2091, 2092, 2104] +Triangle: [2090, 2071, 2091] +Triangle: [2106, 2080, 2079] +Triangle: [2107, 2081, 2080] +Triangle: [2108, 2082, 2081] +Triangle: [2109, 2083, 2082] +Triangle: [2084, 2083, 2109] +Triangle: [2085, 2084, 2110] +Triangle: [2086, 2085, 2111] +Triangle: [2087, 2086, 2112] +Triangle: [2088, 2087, 2113] +Triangle: [2089, 2088, 2114] +Triangle: [2105, 2116, 2106] +Triangle: [2117, 2116, 2105] +Triangle: [2103, 2118, 2117] +Triangle: [2102, 2119, 2118] +Triangle: [2120, 2119, 2102] +Triangle: [2121, 2282, 2278] +Triangle: [2080, 2122, 2098] +Triangle: [2081, 2123, 2122] +Triangle: [2082, 2124, 2123] +Triangle: [2083, 2125, 2124] +Triangle: [2084, 2126, 2125] +Triangle: [2127, 2126, 2084] +Triangle: [2128, 2127, 2085] +Triangle: [2087, 2129, 2128] +Triangle: [2088, 2130, 2129] +Triangle: [2131, 2130, 2088] +Triangle: [2099, 2098, 2122] +Triangle: [2123, 2133, 2132] +Triangle: [2124, 2134, 2133] +Triangle: [2125, 2135, 2134] +Triangle: [2126, 2136, 2135] +Triangle: [2127, 2137, 2136] +Triangle: [2128, 2138, 2137] +Triangle: [2129, 2139, 2138] +Triangle: [2130, 2140, 2139] +Triangle: [2131, 2141, 2140] +Triangle: [2132, 2121, 2100] +Triangle: [2133, 2142, 2121] +Triangle: [2134, 2143, 2142] +Triangle: [2135, 2144, 2143] +Triangle: [2136, 2145, 2144] +Triangle: [2137, 2146, 2145] +Triangle: [2138, 2147, 2146] +Triangle: [2139, 2148, 2147] +Triangle: [2140, 2149, 2148] +Triangle: [2141, 2150, 2149] +Triangle: [2120, 2282, 2276] +Triangle: [2143, 2279, 2276] +Triangle: [2284, 2279, 2143] +Triangle: [2285, 2284, 2144] +Triangle: [2146, 2289, 2285] +Triangle: [2147, 2292, 2289] +Triangle: [2148, 2286, 2292] +Triangle: [2149, 2277, 2286] +Triangle: [2280, 2277, 2149] +Triangle: [2160, 2119, 2120] +Triangle: [2161, 2160, 2151] +Triangle: [2162, 2161, 2152] +Triangle: [2163, 2162, 2153] +Triangle: [2164, 2163, 2154] +Triangle: [2156, 2165, 2164] +Triangle: [2157, 2166, 2165] +Triangle: [2167, 2166, 2157] +Triangle: [2159, 2168, 2167] +Triangle: [2169, 2118, 2119] +Triangle: [2170, 2169, 2160] +Triangle: [2171, 2170, 2161] +Triangle: [2172, 2171, 2162] +Triangle: [2173, 2172, 2163] +Triangle: [2174, 2173, 2164] +Triangle: [2166, 2175, 2174] +Triangle: [2176, 2175, 2166] +Triangle: [2168, 2177, 2176] +Triangle: [2178, 2117, 2118] +Triangle: [2179, 2116, 2117] +Triangle: [2179, 2107, 2106] +Triangle: [2180, 2108, 2107] +Triangle: [2178, 2181, 2180] +Triangle: [2181, 2178, 2169] +Triangle: [2182, 2109, 2108] +Triangle: [2181, 2183, 2182] +Triangle: [2183, 2181, 2170] +Triangle: [2184, 2110, 2109] +Triangle: [2183, 2185, 2184] +Triangle: [2185, 2183, 2171] +Triangle: [2111, 2110, 2184] +Triangle: [2185, 2187, 2186] +Triangle: [2187, 2185, 2172] +Triangle: [2112, 2111, 2186] +Triangle: [2187, 2189, 2188] +Triangle: [2189, 2187, 2173] +Triangle: [2113, 2112, 2188] +Triangle: [2189, 2191, 2190] +Triangle: [2175, 2191, 2189] +Triangle: [2114, 2113, 2190] +Triangle: [2191, 2193, 2192] +Triangle: [2176, 2193, 2191] +Triangle: [2177, 2194, 2193] +Triangle: [2195, 2192, 2193] +Triangle: [2115, 2114, 2192] +Triangle: [2069, 2091, 2071] +Triangle: [2068, 2196, 2091] +Triangle: [2197, 2196, 2068] +Triangle: [1806, 1940, 2197] +Triangle: [2198, 2092, 2091] +Triangle: [2199, 2198, 2196] +Triangle: [1940, 1943, 2199] +Triangle: [2201, 2200, 2092] +Triangle: [2202, 2201, 2198] +Triangle: [1943, 1947, 2202] +Triangle: [2202, 1947, 1948] +Triangle: [2204, 2201, 2202] +Triangle: [2200, 2201, 2204] +Triangle: [2093, 2092, 2200] +Triangle: [2094, 2093, 2206] +Triangle: [2095, 2094, 2207] +Triangle: [2205, 2209, 2206] +Triangle: [2207, 2206, 2209] +Triangle: [2208, 2207, 2210] +Triangle: [2203, 1948, 1958] +Triangle: [2213, 2204, 2203] +Triangle: [2205, 2204, 2213] +Triangle: [2209, 2205, 2214] +Triangle: [2210, 2209, 2215] +Triangle: [2211, 2210, 2216] +Triangle: [2218, 2212, 1958] +Triangle: [2219, 2213, 2212] +Triangle: [2214, 2213, 2219] +Triangle: [2215, 2214, 2220] +Triangle: [2216, 2215, 2221] +Triangle: [2217, 2216, 2222] +Triangle: [2224, 2078, 2075] +Triangle: [2097, 2224, 2074] +Triangle: [2225, 2224, 2097] +Triangle: [2283, 2281, 2226] +Triangle: [2225, 2096, 2226] +Triangle: [2287, 2281, 2208] +Triangle: [2217, 2288, 2287] +Triangle: [2291, 2288, 2217] +Triangle: [2218, 1965, 1978] +Triangle: [2231, 2219, 2218] +Triangle: [2220, 2219, 2231] +Triangle: [2221, 2220, 2232] +Triangle: [2234, 2222, 2221] +Triangle: [2235, 2223, 2222] +Triangle: [2236, 2229, 2291] +Triangle: [2237, 2078, 2224] +Triangle: [2238, 2077, 2078] +Triangle: [1818, 2077, 2238] +Triangle: [2239, 2237, 2225] +Triangle: [2239, 1988, 2238] +Triangle: [2239, 2240, 1990] +Triangle: [2240, 2239, 2227] +Triangle: [2241, 2240, 2228] +Triangle: [1993, 1990, 2240] +Triangle: [2242, 2241, 2229] +Triangle: [1995, 1993, 2241] +Triangle: [2230, 1978, 1996] +Triangle: [2231, 2230, 2243] +Triangle: [2245, 2232, 2231] +Triangle: [2233, 2232, 2245] +Triangle: [2234, 2233, 2246] +Triangle: [2248, 2008, 1995] +Triangle: [2236, 2249, 2248] +Triangle: [2250, 2293, 2294] +Triangle: [2247, 2250, 2235] +Triangle: [2251, 2007, 2008] +Triangle: [2252, 2251, 2248] +Triangle: [2250, 2253, 2275] +Triangle: [2247, 2254, 2253] +Triangle: [2255, 2254, 2247] +Triangle: [2245, 2256, 2255] +Triangle: [2244, 2257, 2256] +Triangle: [2243, 2258, 2257] +Triangle: [2002, 2258, 2243] +Triangle: [2259, 2258, 2002] +Triangle: [2260, 2257, 2258] +Triangle: [2261, 2256, 2257] +Triangle: [2255, 2256, 2261] +Triangle: [2254, 2255, 2262] +Triangle: [2253, 2254, 2263] +Triangle: [2265, 2252, 2275] +Triangle: [2266, 2251, 2252] +Triangle: [2006, 2007, 2251] +Triangle: [2005, 2006, 2266] +Triangle: [2265, 2268, 2267] +Triangle: [2264, 2269, 2290] +Triangle: [2263, 2270, 2269] +Triangle: [2262, 2271, 2270] +Triangle: [2261, 2272, 2271] +Triangle: [2260, 2273, 2272] +Triangle: [2259, 2274, 2273] +Triangle: [2274, 2259, 2003] +Triangle: [2158, 2157, 2286] +Triangle: [2282, 2120, 2101] +Triangle: [2286, 2157, 2156] +Triangle: [2253, 2264, 2295] +Triangle: [2291, 2223, 2235] +Triangle: [2159, 2158, 2277] +Triangle: [2293, 2249, 2236] +Triangle: [2268, 2265, 2295] +Triangle: [2252, 2249, 2293] +Triangle: [2292, 2156, 2155] +Triangle: [2095, 2208, 2281] +Triangle: [2227, 2226, 2281] +Triangle: [2228, 2227, 2287] +Triangle: [2282, 2121, 2142] +Triangle: [2229, 2228, 2288] +Triangle: [2152, 2151, 2276] +Triangle: [2153, 2152, 2279] +Triangle: [2283, 2096, 2100] +Triangle: [2154, 2153, 2284] +Triangle: [2155, 2154, 2285] +=== Vertex Weights === +Vertex 0: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993494749069214 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999140501022339 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998976588249207 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 8.886320756573696e-06 +Vertex 3: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995018839836121 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0014024199917912483 +Vertex 4: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9966136813163757 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.002796382177621126 +Vertex 5: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9901708364486694 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.000261378416325897 +Vertex 6: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995607137680054 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 7: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996989965438843 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 8: +Vertex groups: 2 + Group: 'Bone', Weight: 0.99933922290802 + Group: 'Bone.002', Weight: 0.0 +Vertex 9: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9898892641067505 + Group: 'Bone.002', Weight: 0.0 +Vertex 10: +Vertex groups: 2 + Group: 'Bone', Weight: 0.8973925709724426 + Group: 'Bone.002', Weight: 0.0 +Vertex 11: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9977955222129822 + Group: 'Bone.002', Weight: 0.0 +Vertex 12: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9994223713874817 + Group: 'Bone.002', Weight: 0.0 +Vertex 13: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9975454211235046 + Group: 'Bone.002', Weight: 0.0 +Vertex 14: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9930512309074402 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 15: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9890105724334717 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 16: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9926339983940125 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 17: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9901430010795593 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 18: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9945638179779053 + Group: 'Bone.002', Weight: 0.0 +Vertex 19: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9989067912101746 + Group: 'Bone.002', Weight: 0.0 +Vertex 20: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995865821838379 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 21: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998484253883362 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 22: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999358057975769 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 23: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998714327812195 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 24: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998821020126343 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 25: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999128580093384 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 26: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997749924659729 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 27: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998809695243835 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 28: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999704957008362 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 29: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999953031539917 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 30: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998546242713928 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 31: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9993270039558411 + Group: 'Bone.002', Weight: 0.0 +Vertex 32: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999361038208008 + Group: 'Bone.002', Weight: 0.0 +Vertex 33: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999458372592926 + Group: 'Bone.002', Weight: 0.0 +Vertex 34: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9875554442405701 + Group: 'Bone.002', Weight: 0.0 +Vertex 35: +Vertex groups: 2 + Group: 'Bone', Weight: 0.992088794708252 + Group: 'Bone.002', Weight: 0.0 +Vertex 36: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9835594892501831 + Group: 'Bone.002', Weight: 0.0 +Vertex 37: +Vertex groups: 2 + Group: 'Bone', Weight: 0.99681556224823 + Group: 'Bone.002', Weight: 0.0 +Vertex 38: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9988539218902588 + Group: 'Bone.002', Weight: 0.0 +Vertex 39: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9997683763504028 + Group: 'Bone.002', Weight: 0.0 +Vertex 40: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999881982803345 + Group: 'Bone.002', Weight: 0.0 +Vertex 41: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999693632125854 + Group: 'Bone.002', Weight: 0.0 +Vertex 42: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9931342005729675 + Group: 'Bone.002', Weight: 0.0 +Vertex 43: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9885873794555664 + Group: 'Bone.002', Weight: 0.0 +Vertex 44: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9938858151435852 + Group: 'Bone.002', Weight: 0.0 +Vertex 45: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9986885786056519 + Group: 'Bone.002', Weight: 0.0 +Vertex 46: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999690055847168 + Group: 'Bone.002', Weight: 0.0 +Vertex 47: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999625086784363 + Group: 'Bone.002', Weight: 0.0 +Vertex 48: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999620318412781 + Group: 'Bone.002', Weight: 0.0 +Vertex 49: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999991655349731 + Group: 'Bone.002', Weight: 0.0 +Vertex 50: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 51: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 52: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999983906745911 + Group: 'Bone.002', Weight: 0.0 +Vertex 53: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9956710934638977 + Group: 'Bone.002', Weight: 0.0 +Vertex 54: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9983327388763428 + Group: 'Bone.002', Weight: 0.0 +Vertex 55: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9998527765274048 + Group: 'Bone.002', Weight: 0.0 +Vertex 56: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999991655349731 + Group: 'Bone.002', Weight: 0.0 +Vertex 57: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9984515905380249 + Group: 'Bone.002', Weight: 0.0 +Vertex 58: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9328348636627197 +Vertex 59: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9878579378128052 +Vertex 60: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9875026345252991 +Vertex 61: +Vertex groups: 1 + Group: 'Bone', Weight: 0.995783805847168 +Vertex 62: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9909143447875977 +Vertex 63: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9988660216331482 + Group: 'Bone.002', Weight: 0.0 +Vertex 64: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9987876415252686 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 65: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9915236234664917 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 66: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9669307470321655 + Group: 'Bone.002', Weight: 0.0 +Vertex 67: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9855842590332031 + Group: 'Bone.001', Weight: 0.00035250975633971393 + Group: 'Bone.002', Weight: 0.0 +Vertex 68: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9987730979919434 + Group: 'Bone.001', Weight: 0.0015351208858191967 + Group: 'Bone.002', Weight: 0.0 +Vertex 69: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9936056137084961 + Group: 'Bone.002', Weight: 0.0 +Vertex 70: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9982860088348389 + Group: 'Bone.002', Weight: 0.0 +Vertex 71: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991427659988403 + Group: 'Bone.001', Weight: 0.000677319651003927 + Group: 'Bone.002', Weight: 0.0 +Vertex 72: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9976086616516113 + Group: 'Bone.002', Weight: 0.0 +Vertex 73: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9991620779037476 + Group: 'Bone.002', Weight: 0.0 +Vertex 74: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9964457750320435 + Group: 'Bone.002', Weight: 0.0 +Vertex 75: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9989970326423645 + Group: 'Bone.002', Weight: 0.0 +Vertex 76: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9959878921508789 + Group: 'Bone.002', Weight: 0.0 +Vertex 77: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9904032349586487 + Group: 'Bone.002', Weight: 0.0 +Vertex 78: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9973605275154114 + Group: 'Bone.002', Weight: 0.0 +Vertex 79: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995262622833252 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 80: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9998663663864136 + Group: 'Bone.002', Weight: 0.0 +Vertex 81: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9996852278709412 + Group: 'Bone.002', Weight: 0.0 +Vertex 82: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9967193007469177 + Group: 'Bone.002', Weight: 0.0 +Vertex 83: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9950937032699585 + Group: 'Bone.002', Weight: 0.0 +Vertex 84: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9927351474761963 + Group: 'Bone.002', Weight: 0.0 +Vertex 85: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9921258687973022 + Group: 'Bone.002', Weight: 0.0 +Vertex 86: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9994399547576904 + Group: 'Bone.002', Weight: 0.0 +Vertex 87: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9996784925460815 + Group: 'Bone.002', Weight: 0.0 +Vertex 88: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9996234178543091 + Group: 'Bone.002', Weight: 0.0 +Vertex 89: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9980675578117371 + Group: 'Bone.002', Weight: 0.0 +Vertex 90: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9964366555213928 + Group: 'Bone.002', Weight: 0.0 +Vertex 91: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9896067976951599 + Group: 'Bone.002', Weight: 0.0 +Vertex 92: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9923672676086426 + Group: 'Bone.002', Weight: 0.0 +Vertex 93: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9985401630401611 + Group: 'Bone.002', Weight: 0.0 +Vertex 94: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999905824661255 + Group: 'Bone.002', Weight: 0.0 +Vertex 95: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9998685121536255 + Group: 'Bone.002', Weight: 0.0 +Vertex 96: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9975008964538574 + Group: 'Bone.002', Weight: 0.0 +Vertex 97: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9875757098197937 + Group: 'Bone.002', Weight: 0.0 +Vertex 98: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999995768070221 + Group: 'Bone.002', Weight: 0.0 +Vertex 99: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999992847442627 +Vertex 100: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9991328716278076 +Vertex 101: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9974058866500854 +Vertex 102: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9998012781143188 +Vertex 103: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999918341636658 + Group: 'Bone.002', Weight: 0.0 +Vertex 104: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999992847442627 + Group: 'Bone.002', Weight: 0.0 +Vertex 105: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999931454658508 + Group: 'Bone.002', Weight: 0.0 +Vertex 106: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999552369117737 + Group: 'Bone.002', Weight: 0.0 +Vertex 107: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999707937240601 + Group: 'Bone.002', Weight: 0.0 +Vertex 108: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9778648614883423 +Vertex 109: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999997615814209 +Vertex 110: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999837875366211 +Vertex 111: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999995768070221 +Vertex 112: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999997615814209 +Vertex 113: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9989330768585205 +Vertex 114: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999974250793457 +Vertex 115: +Vertex groups: 1 + Group: 'Bone', Weight: 0.983939528465271 +Vertex 116: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9860344529151917 +Vertex 117: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9410684704780579 +Vertex 118: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999970197677612 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 119: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999985694885254 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 120: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9984687566757202 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 121: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9665141105651855 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 122: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9964662194252014 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 123: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993263483047485 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 124: +Vertex groups: 3 + Group: 'Bone', Weight: 0.13656632602214813 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 125: +Vertex groups: 3 + Group: 'Bone', Weight: 0.05648178979754448 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 126: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 127: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999981701374054 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 128: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999648928642273 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 129: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9889998435974121 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 130: +Vertex groups: 3 + Group: 'Bone', Weight: 0.5369105935096741 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 131: +Vertex groups: 3 + Group: 'Bone', Weight: 0.02825029566884041 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 132: +Vertex groups: 3 + Group: 'Bone', Weight: 0.10189791768789291 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 133: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9403721690177917 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 134: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9048107862472534 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 135: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9989590048789978 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 136: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999933242797852 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 137: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999996423721313 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 138: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999975860118866 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 139: +Vertex groups: 3 + Group: 'Bone', Weight: 0.17993703484535217 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 140: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9291378855705261 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 141: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999990463256836 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 142: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 143: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9902095794677734 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 144: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999541163444519 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 145: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999479353427887 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 146: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9623599648475647 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 147: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9469801783561707 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 148: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999527335166931 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 149: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9988829493522644 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 150: +Vertex groups: 3 + Group: 'Bone', Weight: 0.45572513341903687 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 151: +Vertex groups: 3 + Group: 'Bone', Weight: 0.3374010920524597 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 152: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997487664222717 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 153: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993814826011658 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 154: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999554753303528 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 155: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9681450128555298 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 156: +Vertex groups: 3 + Group: 'Bone', Weight: 0.7415648102760315 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 157: +Vertex groups: 3 + Group: 'Bone', Weight: 0.09939457476139069 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 158: +Vertex groups: 3 + Group: 'Bone', Weight: 0.4395977854728699 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 159: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9534762501716614 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 160: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9416903257369995 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 161: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992632865905762 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 162: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999810457229614 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 163: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9982290267944336 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 164: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999953508377075 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 165: +Vertex groups: 3 + Group: 'Bone', Weight: 0.196673184633255 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 166: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9694257974624634 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 167: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991483688354492 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 168: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998725056648254 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 169: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9919360280036926 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 170: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999024868011475 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 171: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 172: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999454021453857 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 173: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994763135910034 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 174: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999935626983643 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 175: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999980926513672 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 176: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9988188743591309 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 177: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999263286590576 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 178: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999169707298279 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 179: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994115829467773 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 180: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998322129249573 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 181: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994419813156128 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 182: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9989365339279175 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 183: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996470212936401 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 184: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9976351261138916 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 185: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9974293112754822 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 186: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998065233230591 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 187: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993095397949219 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 188: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9984397888183594 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 189: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992796778678894 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 190: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998985528945923 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 191: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999977350234985 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 192: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999902606010437 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 193: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996678829193115 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 194: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999842643737793 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 195: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999060034751892 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 196: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998624920845032 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 197: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 198: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999924898147583 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 199: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998538494110107 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 200: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998122453689575 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 201: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996516108512878 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 202: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999672174453735 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 203: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999630451202393 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 204: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999743700027466 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 205: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999871253967285 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 206: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999112486839294 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 207: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995536804199219 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 208: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997031092643738 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 209: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999663829803467 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 210: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998994469642639 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 211: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999599456787109 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 212: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998582601547241 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 213: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998067617416382 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 214: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999251365661621 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 215: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999758005142212 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 216: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999265670776367 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 217: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998090863227844 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 218: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999857544898987 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 219: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 220: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 221: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 222: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 223: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999808073043823 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 224: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 225: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 226: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 227: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 228: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999986886978149 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 229: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999832510948181 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 230: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999440312385559 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 231: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999971330165863 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 232: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999904632568359 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 233: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996528625488281 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 234: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 235: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 236: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999981701374054 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 237: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999967813491821 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 238: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999492168426514 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 239: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 240: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999723434448242 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 241: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999860525131226 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00012288331345189363 +Vertex 242: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999949932098389 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0008773925947025418 +Vertex 243: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999974370002747 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0017749837134033442 +Vertex 244: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999686479568481 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0011073192581534386 +Vertex 245: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999893307685852 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00012030086509184912 +Vertex 246: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999996423721313 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 247: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999881386756897 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 248: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 249: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999914169311523 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 250: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999980926513672 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 251: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998274445533752 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 252: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998955726623535 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 253: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995160102844238 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 254: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9873847365379333 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 255: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9967389106750488 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 256: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999668598175049 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 257: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996683597564697 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 258: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991827011108398 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 259: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998806715011597 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00023249034711625427 +Vertex 260: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998887181282043 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00024489988572895527 +Vertex 261: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999951958656311 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00018559017917141318 +Vertex 262: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.003564464394003153 +Vertex 263: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999992847442627 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.008755754679441452 +Vertex 264: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.01322602853178978 +Vertex 265: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999707341194153 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.011140457354485989 +Vertex 266: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999918341636658 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.004931670613586903 +Vertex 267: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999417662620544 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 268: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995821714401245 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 269: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996018409729004 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 270: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997426271438599 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 271: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997210502624512 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 272: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999420046806335 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 273: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999402761459351 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 274: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999992251396179 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0001728601346258074 +Vertex 275: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999850988388062 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0017232410609722137 +Vertex 276: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999993443489075 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.013790298253297806 +Vertex 277: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999996423721313 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.03080158494412899 +Vertex 278: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999898672103882 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.03221651166677475 +Vertex 279: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999999463558197 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.02222486399114132 +Vertex 280: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999995827674866 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.01338772103190422 +Vertex 281: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998940825462341 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00033574062399566174 +Vertex 282: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999103546142578 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 283: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996775388717651 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 284: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9978793859481812 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 285: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9982677102088928 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 286: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998517036437988 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 287: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999926686286926 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 288: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995614290237427 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 289: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 290: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9990357160568237 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 291: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999667406082153 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 292: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999365210533142 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 293: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9966245293617249 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 294: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 295: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9972779154777527 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 296: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999096691608429 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 297: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995604753494263 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 298: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998631477355957 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 299: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 300: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994884729385376 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 301: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997768998146057 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 302: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999933242797852 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 303: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999949038028717 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 304: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 305: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993661642074585 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 306: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993976950645447 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 307: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996969103813171 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 308: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999788403511047 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 309: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999991059303284 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 310: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999975562095642 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 311: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999758005142212 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 312: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999546408653259 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 313: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999533295631409 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 314: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992302060127258 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 315: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9859316349029541 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 316: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9967353940010071 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 317: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999993443489075 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 318: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 319: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998969435691833 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 320: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9961526989936829 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 321: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9576131701469421 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 322: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9331770539283752 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 323: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997254610061646 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 324: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998437762260437 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 325: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996889233589172 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 326: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999440312385559 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 327: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999301433563232 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 328: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993872046470642 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 329: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998568296432495 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 330: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999865293502808 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 331: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999583959579468 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.009316429495811462 +Vertex 332: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996576309204102 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0019012560369446874 +Vertex 333: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9978016018867493 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.010786124505102634 +Vertex 334: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999179840087891 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 3.956871296395548e-05 +Vertex 335: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996876120567322 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00485511589795351 +Vertex 336: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997678399085999 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.001953128259629011 +Vertex 337: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9988194108009338 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 2.6683435862651095e-05 +Vertex 338: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999431371688843 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.01502913236618042 +Vertex 339: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999787211418152 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0424349345266819 +Vertex 340: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9953295588493347 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0052465652115643024 +Vertex 341: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9941897392272949 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.026648182421922684 +Vertex 342: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9984111785888672 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.022367872297763824 +Vertex 343: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993993043899536 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.05675549805164337 +Vertex 344: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.033230170607566833 +Vertex 345: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998005032539368 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.07206934690475464 +Vertex 346: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9903466701507568 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 347: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996842741966248 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 348: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999753832817078 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0011597329284995794 +Vertex 349: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998535513877869 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0003178885963279754 +Vertex 350: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998673796653748 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0024882936850190163 +Vertex 351: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999505281448364 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 352: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999838471412659 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 353: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999290704727173 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.001022307318635285 +Vertex 354: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998811483383179 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0018548439256846905 +Vertex 355: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999688267707825 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 7.987501157913357e-05 +Vertex 356: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999973177909851 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 9.685372788226232e-06 +Vertex 357: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999895095825195 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0013542429078370333 +Vertex 358: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999580979347229 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 359: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999956488609314 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 360: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999731183052063 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 361: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999715089797974 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00018320504750590771 +Vertex 362: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999955892562866 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00036996265407651663 +Vertex 363: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999943375587463 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.001464280765503645 +Vertex 364: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.002655570162460208 +Vertex 365: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999948740005493 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.003069458529353142 +Vertex 366: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999825358390808 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0042037987150251865 +Vertex 367: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999796748161316 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.014732735231518745 +Vertex 368: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999914169311523 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.022533919662237167 +Vertex 369: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999996423721313 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.01812240667641163 +Vertex 370: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.027901984751224518 +Vertex 371: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.013408998027443886 +Vertex 372: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.020903348922729492 +Vertex 373: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0073663173243403435 +Vertex 374: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999995827674866 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.012793264351785183 +Vertex 375: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0029728375375270844 +Vertex 376: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.006054474972188473 +Vertex 377: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00046238512732088566 +Vertex 378: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0015202256618067622 +Vertex 379: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999994039535522 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 380: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 5.712005804525688e-05 +Vertex 381: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999987781047821 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0006712661706842482 +Vertex 382: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999856948852539 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0023292347323149443 +Vertex 383: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999889135360718 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0045168157666921616 +Vertex 384: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998970627784729 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.020642874762415886 +Vertex 385: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999949336051941 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.03634805604815483 +Vertex 386: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.043511394411325455 +Vertex 387: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.03290313109755516 +Vertex 388: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999995827674866 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.021295180544257164 +Vertex 389: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999994039535522 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.011249031871557236 +Vertex 390: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999998927116394 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0032442151568830013 +Vertex 391: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00040295158396475017 +Vertex 392: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999971389770508 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 393: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.012826342135667801 +Vertex 394: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.008795028552412987 +Vertex 395: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.004040618427097797 +Vertex 396: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999996423721313 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0011178128188475966 +Vertex 397: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999987483024597 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 5.6040640629362315e-05 +Vertex 398: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999934434890747 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 399: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999821186065674 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 8.559704292565584e-05 +Vertex 400: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997069835662842 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00023194386449176818 +Vertex 401: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999855756759644 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 4.3204407120356336e-05 +Vertex 402: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999998152256012 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.009194676764309406 +Vertex 403: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999990463256836 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.002688489854335785 +Vertex 404: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999979734420776 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0004408805980347097 +Vertex 405: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999971985816956 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 406: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999988079071045 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 407: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999113082885742 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 8.977699326351285e-05 +Vertex 408: +Vertex groups: 3 + Group: 'Bone', Weight: 0.99998539686203 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.009795838966965675 +Vertex 409: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999988675117493 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0018158280290663242 +Vertex 410: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999995231628418 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 8.89782386366278e-05 +Vertex 411: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999992251396179 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 412: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 413: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999975562095642 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 414: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 415: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 416: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 417: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999994039535522 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 418: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 419: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 420: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 421: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999963045120239 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 422: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 423: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996612071990967 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 424: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0014376906910911202 +Vertex 425: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992333650588989 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 426: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996216297149658 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0002626751665957272 +Vertex 427: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999779462814331 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 1.223145955009386e-05 +Vertex 428: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998263120651245 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0014928141608834267 +Vertex 429: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999979734420776 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 5.2120492910034955e-05 +Vertex 430: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997223615646362 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 431: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 432: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998758435249329 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 433: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999967217445374 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 434: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 435: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999269247055054 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 436: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992846250534058 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 437: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999302864074707 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 438: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992881417274475 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 439: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999857544898987 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 440: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996179938316345 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 441: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999426007270813 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 442: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 443: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 444: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999999463558197 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 445: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 446: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 447: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 448: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999990463256836 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 449: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 450: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997850656509399 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 451: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9963912963867188 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 452: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9969407320022583 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 453: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996772408485413 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 454: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999489963054657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 455: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999850869178772 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 456: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998323321342468 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 457: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997162818908691 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 458: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999995768070221 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 459: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999987781047821 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 460: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999637603759766 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 461: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999898672103882 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 462: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998701810836792 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 463: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9966903328895569 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 464: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999565482139587 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 465: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997943639755249 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 466: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9863417148590088 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 467: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999287128448486 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 468: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999342560768127 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 469: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999975562095642 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 470: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999957799911499 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 471: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9973278045654297 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 472: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999788761138916 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 473: +Vertex groups: 3 + Group: 'Bone', Weight: 0.998971164226532 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 474: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9973424673080444 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 475: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996464848518372 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 476: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999956488609314 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 477: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999793171882629 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 478: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9989707469940186 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 479: +Vertex groups: 3 + Group: 'Bone', Weight: 0.998487651348114 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 480: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9982736110687256 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 481: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999936819076538 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00266234390437603 +Vertex 482: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.000817081134300679 +Vertex 483: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9984895586967468 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.009174998849630356 +Vertex 484: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9987809062004089 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0003584224032238126 +Vertex 485: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0005300515913404524 +Vertex 486: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0005466095171868801 +Vertex 487: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996894598007202 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.08230508118867874 +Vertex 488: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.025097681209445 +Vertex 489: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00916995294392109 +Vertex 490: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999995231628418 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.002244403585791588 +Vertex 491: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0016704959562048316 +Vertex 492: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.005134686827659607 +Vertex 493: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999572038650513 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 494: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999820590019226 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0007210864569060504 +Vertex 495: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997081160545349 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.009440776892006397 +Vertex 496: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999977350234985 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.013041676953434944 +Vertex 497: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998884797096252 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0586375817656517 +Vertex 498: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999995231628418 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.16845200955867767 +Vertex 499: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998761415481567 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0674382895231247 +Vertex 500: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999986290931702 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.01874304749071598 +Vertex 501: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00881212204694748 +Vertex 502: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.016609465703368187 +Vertex 503: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999803304672241 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 504: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992480874061584 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.009340077638626099 +Vertex 505: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9990990161895752 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.15984342992305756 +Vertex 506: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9913684129714966 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.39569875597953796 +Vertex 507: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9985595941543579 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.5897568464279175 +Vertex 508: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998142719268799 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.32958635687828064 +Vertex 509: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998965859413147 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.02520555816590786 +Vertex 510: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999096393585205 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.09321025758981705 +Vertex 511: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9966505765914917 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.015619201585650444 +Vertex 512: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999982714653015 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 513: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.04570813477039337 +Vertex 514: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.032474540174007416 +Vertex 515: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999741911888123 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.04921639710664749 +Vertex 516: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997791051864624 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.18468230962753296 +Vertex 517: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999958276748657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.12445764243602753 +Vertex 518: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.09782565385103226 +Vertex 519: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997019767761 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 520: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9810036420822144 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.01875966042280197 +Vertex 521: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996950030326843 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.14653974771499634 +Vertex 522: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9986147880554199 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.7572050094604492 +Vertex 523: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9989152550697327 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.5894435048103333 +Vertex 524: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9972444772720337 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.7847380042076111 +Vertex 525: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9983991980552673 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.056952740997076035 +Vertex 526: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9963884353637695 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.1793602705001831 +Vertex 527: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9833149909973145 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.02236171066761017 +Vertex 528: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999984502792358 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 529: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999998927116394 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.22461535036563873 +Vertex 530: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999988675117493 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.31905144453048706 +Vertex 531: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998499155044556 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.4052160978317261 +Vertex 532: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999033808708191 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.5619263648986816 +Vertex 533: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999529719352722 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.4102277159690857 +Vertex 534: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999724626541138 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.31565916538238525 +Vertex 535: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9973145127296448 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 536: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9789534211158752 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.055653512477874756 +Vertex 537: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9767932891845703 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.15693551301956177 +Vertex 538: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9986164569854736 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.07978400588035583 +Vertex 539: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996263384819031 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.8735532164573669 +Vertex 540: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991037845611572 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.7643727660179138 +Vertex 541: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999334454536438 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.6930586099624634 +Vertex 542: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9974350929260254 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.039098892360925674 +Vertex 543: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9889463186264038 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.03422299027442932 +Vertex 544: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997444152832031 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 545: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999950647354126 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.001285220729187131 +Vertex 546: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999111890792847 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.003792918985709548 +Vertex 547: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999592304229736 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0039772046729922295 +Vertex 548: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999943733215332 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.007242455147206783 +Vertex 549: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997580051422119 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.03211253881454468 +Vertex 550: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999939203262329 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.055691223591566086 +Vertex 551: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0652494877576828 +Vertex 552: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.04945043474435806 +Vertex 553: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999997615814209 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.029558971524238586 +Vertex 554: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999975562095642 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.015599019825458527 +Vertex 555: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999993622303009 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0049021197482943535 +Vertex 556: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999991059303284 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0007436602609232068 +Vertex 557: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999887228012085 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.008465276099741459 +Vertex 558: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997564554214478 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.02937522530555725 +Vertex 559: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997672438621521 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.06844642013311386 +Vertex 560: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999961256980896 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.1150512844324112 +Vertex 561: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999995231628418 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.15114974975585938 +Vertex 562: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999988079071045 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.10964338481426239 +Vertex 563: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999885559082031 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.05222625285387039 +Vertex 564: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999935030937195 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.023472700268030167 +Vertex 565: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999986290931702 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.006554079242050648 +Vertex 566: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999971389770508 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0011952179484069347 +Vertex 567: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999394416809082 + Group: 'Bone.001', Weight: 2.795727959892247e-05 + Group: 'Bone.002', Weight: 0.0018906767945736647 +Vertex 568: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999517798423767 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.015594683587551117 +Vertex 569: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996131062507629 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.04462820664048195 +Vertex 570: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997227787971497 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.083021380007267 +Vertex 571: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999503493309021 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.13299164175987244 +Vertex 572: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999898076057434 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.2984304428100586 +Vertex 573: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999998152256012 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.3601067066192627 +Vertex 574: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999850392341614 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.42261338233947754 +Vertex 575: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999872446060181 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.1363813579082489 +Vertex 576: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999991059303284 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.03926926851272583 +Vertex 577: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999998927116394 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.008790645748376846 +Vertex 578: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999973773956299 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0013572005555033684 +Vertex 579: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999911189079285 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0016123964451253414 +Vertex 580: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999918341636658 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.01107463613152504 +Vertex 581: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999884366989136 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.05126358941197395 +Vertex 582: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.923469066619873 + Group: 'Bone', Weight: 0.9999927282333374 + Group: 'Bone.001', Weight: 0.0 +Vertex 583: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9980578422546387 + Group: 'Bone', Weight: 0.9999947547912598 + Group: 'Bone.001', Weight: 0.0 +Vertex 584: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.999395489692688 + Group: 'Bone', Weight: 0.9999976754188538 + Group: 'Bone.001', Weight: 0.0 +Vertex 585: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9999045133590698 + Group: 'Bone', Weight: 0.9998378157615662 + Group: 'Bone.001', Weight: 0.0 +Vertex 586: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9997257590293884 + Group: 'Bone', Weight: 0.9998906850814819 + Group: 'Bone.001', Weight: 0.0 +Vertex 587: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9999312162399292 + Group: 'Bone', Weight: 0.9999390244483948 +Vertex 588: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9998325109481812 + Group: 'Bone', Weight: 0.9998281002044678 +Vertex 589: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9993796944618225 + Group: 'Bone', Weight: 0.9999966025352478 +Vertex 590: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9997034072875977 + Group: 'Bone', Weight: 0.9999988675117493 +Vertex 591: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9986349940299988 + Group: 'Bone', Weight: 0.9998547434806824 +Vertex 592: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9963699579238892 + Group: 'Bone', Weight: 0.9994606971740723 +Vertex 593: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9946269392967224 + Group: 'Bone', Weight: 0.9987334609031677 +Vertex 594: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9907718300819397 + Group: 'Bone', Weight: 0.9961543083190918 +Vertex 595: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.8759185075759888 + Group: 'Bone', Weight: 0.9999833703041077 + Group: 'Bone.001', Weight: 0.0 +Vertex 596: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999237656593323 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.25310438871383667 +Vertex 597: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999449253082275 + Group: 'Bone.002', Weight: 0.5988920331001282 + Group: 'Bone.001', Weight: 0.0 +Vertex 598: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999544620513916 + Group: 'Bone.002', Weight: 0.8347110152244568 + Group: 'Bone.001', Weight: 0.0 +Vertex 599: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9942851066589355 + Group: 'Bone.002', Weight: 0.7956002950668335 + Group: 'Bone.001', Weight: 0.0 +Vertex 600: +Vertex groups: 3 + Group: 'Bone', Weight: 0.994565486907959 + Group: 'Bone.002', Weight: 0.8303196430206299 + Group: 'Bone.001', Weight: 0.0 +Vertex 601: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996248483657837 + Group: 'Bone.002', Weight: 0.8023561239242554 + Group: 'Bone.001', Weight: 0.0 +Vertex 602: +Vertex groups: 3 + Group: 'Bone', Weight: 0.99998939037323 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.598012387752533 +Vertex 603: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9146872758865356 + Group: 'Bone', Weight: 0.9993077516555786 + Group: 'Bone.001', Weight: 0.0 +Vertex 604: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9429665803909302 + Group: 'Bone', Weight: 0.9992150068283081 + Group: 'Bone.001', Weight: 0.0 +Vertex 605: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9676110148429871 + Group: 'Bone', Weight: 0.9979714751243591 + Group: 'Bone.001', Weight: 0.0 +Vertex 606: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.930732786655426 + Group: 'Bone', Weight: 0.9928622245788574 + Group: 'Bone.001', Weight: 0.0 +Vertex 607: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.8814728856086731 + Group: 'Bone', Weight: 0.9846072793006897 + Group: 'Bone.001', Weight: 0.0 +Vertex 608: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9169280529022217 + Group: 'Bone', Weight: 0.9993974566459656 + Group: 'Bone.001', Weight: 0.0 +Vertex 609: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.7909039258956909 + Group: 'Bone', Weight: 0.9997313022613525 + Group: 'Bone.001', Weight: 0.0 +Vertex 610: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.6711060404777527 + Group: 'Bone', Weight: 0.9999934434890747 + Group: 'Bone.001', Weight: 0.0 +Vertex 611: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9966622591018677 + Group: 'Bone', Weight: 0.9999962449073792 + Group: 'Bone.001', Weight: 0.0 +Vertex 612: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9995862245559692 + Group: 'Bone', Weight: 0.9998652338981628 + Group: 'Bone.001', Weight: 0.0 +Vertex 613: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9999734163284302 + Group: 'Bone', Weight: 0.999609649181366 + Group: 'Bone.001', Weight: 0.0 +Vertex 614: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9995982050895691 + Group: 'Bone', Weight: 0.9999089241027832 + Group: 'Bone.001', Weight: 0.0 +Vertex 615: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9999423027038574 + Group: 'Bone', Weight: 0.9999753832817078 + Group: 'Bone.001', Weight: 0.0 +Vertex 616: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9999156594276428 + Group: 'Bone', Weight: 0.9997916221618652 +Vertex 617: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9996527433395386 + Group: 'Bone', Weight: 0.9999973177909851 +Vertex 618: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9990848302841187 + Group: 'Bone', Weight: 0.9999872446060181 +Vertex 619: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9990772604942322 + Group: 'Bone', Weight: 0.999234139919281 +Vertex 620: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9986538290977478 + Group: 'Bone', Weight: 0.9981839060783386 +Vertex 621: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9982002973556519 + Group: 'Bone', Weight: 0.9960882067680359 +Vertex 622: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9977119565010071 + Group: 'Bone', Weight: 0.9902539253234863 +Vertex 623: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9818002581596375 + Group: 'Bone', Weight: 0.9999557733535767 + Group: 'Bone.001', Weight: 0.0 +Vertex 624: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9893187880516052 + Group: 'Bone', Weight: 0.9995526075363159 + Group: 'Bone.001', Weight: 0.0 +Vertex 625: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9884119629859924 + Group: 'Bone', Weight: 0.9989886283874512 + Group: 'Bone.001', Weight: 0.0 +Vertex 626: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9183441400527954 + Group: 'Bone', Weight: 0.9858736991882324 + Group: 'Bone.001', Weight: 0.0 +Vertex 627: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9599908590316772 + Group: 'Bone', Weight: 0.9524491429328918 + Group: 'Bone.001', Weight: 0.0 +Vertex 628: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9971223473548889 + Group: 'Bone', Weight: 0.99833083152771 + Group: 'Bone.001', Weight: 0.0 +Vertex 629: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.999099612236023 + Group: 'Bone', Weight: 0.9970372915267944 + Group: 'Bone.001', Weight: 0.0 +Vertex 630: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9966017007827759 + Group: 'Bone', Weight: 0.9995534420013428 + Group: 'Bone.001', Weight: 0.0 +Vertex 631: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.999291181564331 + Group: 'Bone', Weight: 0.9954209327697754 + Group: 'Bone.001', Weight: 0.0 +Vertex 632: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.999759316444397 + Group: 'Bone', Weight: 0.9976599216461182 + Group: 'Bone.001', Weight: 0.0 +Vertex 633: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9999500513076782 + Group: 'Bone', Weight: 0.996829092502594 + Group: 'Bone.001', Weight: 0.0 +Vertex 634: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9996972680091858 + Group: 'Bone', Weight: 0.9946499466896057 +Vertex 635: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9999724626541138 + Group: 'Bone', Weight: 0.999992311000824 +Vertex 636: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9999887943267822 + Group: 'Bone', Weight: 0.9999752044677734 +Vertex 637: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.999692976474762 + Group: 'Bone', Weight: 0.9999979734420776 +Vertex 638: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9985702633857727 + Group: 'Bone', Weight: 0.999973475933075 +Vertex 639: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9973607659339905 + Group: 'Bone', Weight: 0.9999752044677734 +Vertex 640: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.994629442691803 + Group: 'Bone', Weight: 0.9999907612800598 +Vertex 641: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9995477199554443 + Group: 'Bone', Weight: 0.9961274266242981 + Group: 'Bone.001', Weight: 0.0 +Vertex 642: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9977265000343323 + Group: 'Bone', Weight: 0.9992119669914246 + Group: 'Bone.001', Weight: 0.0 +Vertex 643: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9986304640769958 + Group: 'Bone', Weight: 0.9989516735076904 + Group: 'Bone.001', Weight: 0.0 +Vertex 644: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9996674656867981 + Group: 'Bone', Weight: 0.9995225667953491 + Group: 'Bone.001', Weight: 0.0 +Vertex 645: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9998922944068909 + Group: 'Bone', Weight: 0.9991153478622437 + Group: 'Bone.001', Weight: 0.0 +Vertex 646: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9992789626121521 + Group: 'Bone', Weight: 0.9989103078842163 +Vertex 647: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9999879598617554 + Group: 'Bone', Weight: 0.9993593692779541 +Vertex 648: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9999925494194031 + Group: 'Bone', Weight: 0.9998734593391418 +Vertex 649: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9999391436576843 + Group: 'Bone', Weight: 0.9999916553497314 +Vertex 650: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9993279576301575 + Group: 'Bone', Weight: 0.9998896718025208 +Vertex 651: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9983905553817749 + Group: 'Bone', Weight: 0.9999186992645264 +Vertex 652: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9754817485809326 + Group: 'Bone', Weight: 0.997921884059906 + Group: 'Bone.001', Weight: 0.0 +Vertex 653: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9768460988998413 + Group: 'Bone', Weight: 0.9978486895561218 + Group: 'Bone.001', Weight: 0.0 +Vertex 654: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9758068323135376 + Group: 'Bone', Weight: 0.9986057877540588 + Group: 'Bone.001', Weight: 0.0 +Vertex 655: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9823458790779114 + Group: 'Bone', Weight: 0.998256266117096 + Group: 'Bone.001', Weight: 0.0 +Vertex 656: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9785882234573364 + Group: 'Bone', Weight: 0.9987844228744507 +Vertex 657: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9905589818954468 + Group: 'Bone', Weight: 0.9995749592781067 +Vertex 658: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9929848909378052 + Group: 'Bone', Weight: 0.9994262456893921 +Vertex 659: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9987969994544983 + Group: 'Bone', Weight: 0.9998974204063416 +Vertex 660: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9946125149726868 + Group: 'Bone', Weight: 0.9994920492172241 +Vertex 661: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9922517538070679 + Group: 'Bone', Weight: 0.9997602701187134 +Vertex 662: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.901542067527771 + Group: 'Bone', Weight: 0.8408640027046204 + Group: 'Bone.001', Weight: 0.0 +Vertex 663: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.8814685940742493 + Group: 'Bone', Weight: 0.8202143907546997 + Group: 'Bone.001', Weight: 0.0 +Vertex 664: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.8796067237854004 + Group: 'Bone', Weight: 0.8449786901473999 + Group: 'Bone.001', Weight: 0.0 +Vertex 665: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.8903717398643494 + Group: 'Bone', Weight: 0.8649781346321106 + Group: 'Bone.001', Weight: 0.0 +Vertex 666: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9028704166412354 + Group: 'Bone', Weight: 0.8968266844749451 +Vertex 667: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9431918859481812 + Group: 'Bone', Weight: 0.9724026918411255 +Vertex 668: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9599204659461975 + Group: 'Bone', Weight: 0.9838087558746338 +Vertex 669: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9928718209266663 + Group: 'Bone', Weight: 0.995404064655304 +Vertex 670: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9891787767410278 + Group: 'Bone', Weight: 0.9832557439804077 +Vertex 671: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9860968589782715 + Group: 'Bone', Weight: 0.9988484978675842 +Vertex 672: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.979873776435852 + Group: 'Bone', Weight: 0.99366295337677 +Vertex 673: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.8985537886619568 + Group: 'Bone', Weight: 0.9516888856887817 + Group: 'Bone.001', Weight: 0.0 +Vertex 674: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.8712033629417419 + Group: 'Bone', Weight: 0.8425947427749634 + Group: 'Bone.001', Weight: 0.0 +Vertex 675: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.8620827198028564 + Group: 'Bone', Weight: 0.7697464823722839 + Group: 'Bone.001', Weight: 0.0 +Vertex 676: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.831993579864502 + Group: 'Bone', Weight: 0.7558072805404663 + Group: 'Bone.001', Weight: 0.0 +Vertex 677: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.8510757088661194 + Group: 'Bone', Weight: 0.783178448677063 + Group: 'Bone.001', Weight: 0.0 +Vertex 678: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9048309326171875 + Group: 'Bone', Weight: 0.7370744347572327 +Vertex 679: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9154532551765442 + Group: 'Bone', Weight: 0.8775427341461182 +Vertex 680: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9333289861679077 + Group: 'Bone', Weight: 0.9129071831703186 +Vertex 681: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9521539211273193 + Group: 'Bone', Weight: 0.8895713686943054 +Vertex 682: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9624306559562683 + Group: 'Bone', Weight: 0.9081023931503296 +Vertex 683: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.973168134689331 + Group: 'Bone', Weight: 0.9491047859191895 +Vertex 684: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9981743693351746 + Group: 'Bone', Weight: 0.9829258918762207 + Group: 'Bone.001', Weight: 0.0 +Vertex 685: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9899376630783081 + Group: 'Bone', Weight: 0.9819826483726501 + Group: 'Bone.001', Weight: 0.0 +Vertex 686: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9887811541557312 + Group: 'Bone', Weight: 0.9817973375320435 + Group: 'Bone.001', Weight: 0.0 +Vertex 687: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9860764145851135 + Group: 'Bone', Weight: 0.9688435792922974 + Group: 'Bone.001', Weight: 0.0 +Vertex 688: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9287066459655762 + Group: 'Bone', Weight: 0.9865943789482117 + Group: 'Bone.001', Weight: 0.0 +Vertex 689: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9063692092895508 + Group: 'Bone', Weight: 0.983535885810852 +Vertex 690: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9327207803726196 + Group: 'Bone', Weight: 0.9726294875144958 +Vertex 691: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9601430892944336 + Group: 'Bone', Weight: 0.9901481866836548 +Vertex 692: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.975913405418396 + Group: 'Bone', Weight: 0.9963647723197937 +Vertex 693: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9825366735458374 + Group: 'Bone', Weight: 0.9979172348976135 +Vertex 694: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9938434958457947 + Group: 'Bone', Weight: 0.9995325803756714 +Vertex 695: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9994486570358276 + Group: 'Bone', Weight: 0.9985846281051636 + Group: 'Bone.001', Weight: 0.0 +Vertex 696: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9995219111442566 + Group: 'Bone', Weight: 0.999632716178894 + Group: 'Bone.001', Weight: 0.0 +Vertex 697: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9992939233779907 + Group: 'Bone', Weight: 0.9997493028640747 + Group: 'Bone.001', Weight: 0.0 +Vertex 698: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9982247352600098 + Group: 'Bone', Weight: 0.9996792078018188 + Group: 'Bone.001', Weight: 0.0 +Vertex 699: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9929965734481812 + Group: 'Bone', Weight: 0.9999219179153442 + Group: 'Bone.001', Weight: 0.0 +Vertex 700: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9948813319206238 + Group: 'Bone', Weight: 0.9992424845695496 + Group: 'Bone.001', Weight: 0.0 +Vertex 701: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9975477457046509 + Group: 'Bone', Weight: 0.9999530911445618 + Group: 'Bone.001', Weight: 0.0 +Vertex 702: +Vertex groups: 3 + Group: 'Bone.002', Weight: 0.9966479539871216 + Group: 'Bone', Weight: 0.9873231053352356 + Group: 'Bone.001', Weight: 0.0 +Vertex 703: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9977725744247437 + Group: 'Bone', Weight: 0.9999002814292908 +Vertex 704: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.991780698299408 + Group: 'Bone', Weight: 0.9954706430435181 +Vertex 705: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9979382753372192 + Group: 'Bone', Weight: 0.9999674558639526 +Vertex 706: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.996033787727356 + Group: 'Bone', Weight: 0.9919121265411377 +Vertex 707: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9888468980789185 + Group: 'Bone', Weight: 0.9999160170555115 +Vertex 708: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9932327270507812 + Group: 'Bone', Weight: 0.9911994934082031 +Vertex 709: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9901022911071777 + Group: 'Bone', Weight: 0.9983452558517456 +Vertex 710: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9959675669670105 + Group: 'Bone', Weight: 0.9553627371788025 +Vertex 711: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9973169565200806 + Group: 'Bone', Weight: 0.9465808272361755 +Vertex 712: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9916553497314453 + Group: 'Bone', Weight: 0.9962525367736816 +Vertex 713: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9929556846618652 + Group: 'Bone', Weight: 0.9935692548751831 +Vertex 714: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9973981380462646 + Group: 'Bone', Weight: 0.9379026293754578 +Vertex 715: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9991281628608704 + Group: 'Bone', Weight: 0.9499312043190002 +Vertex 716: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9948171377182007 + Group: 'Bone', Weight: 0.9869480133056641 +Vertex 717: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999564290046692 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.1497507393360138 +Vertex 718: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999881386756897 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.04725243151187897 +Vertex 719: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999993085861206 + Group: 'Bone.001', Weight: 8.933640492614359e-05 + Group: 'Bone.002', Weight: 0.006333204451948404 +Vertex 720: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999996423721313 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.3082031011581421 +Vertex 721: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999330043792725 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.08564800769090652 +Vertex 722: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999906063079834 + Group: 'Bone.001', Weight: 9.467185009270906e-05 + Group: 'Bone.002', Weight: 0.01316281408071518 +Vertex 723: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999259114265442 + Group: 'Bone.002', Weight: 0.7649521231651306 + Group: 'Bone.001', Weight: 0.0 +Vertex 724: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999955296516418 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.39776909351348877 +Vertex 725: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999861121177673 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.12454669177532196 +Vertex 726: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999046325683594 + Group: 'Bone.001', Weight: 1.026466088660527e-05 + Group: 'Bone.002', Weight: 0.020050957798957825 +Vertex 727: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9982905983924866 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0201918575912714 +Vertex 728: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992139339447021 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.12190490961074829 +Vertex 729: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994516968727112 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.4175105094909668 +Vertex 730: +Vertex groups: 3 + Group: 'Bone', Weight: 0.998890221118927 + Group: 'Bone.002', Weight: 0.7759019136428833 + Group: 'Bone.001', Weight: 0.0 +Vertex 731: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9983842372894287 + Group: 'Bone.002', Weight: 0.8342798948287964 + Group: 'Bone.001', Weight: 0.0 +Vertex 732: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9927424192428589 + Group: 'Bone.002', Weight: 0.8769819140434265 + Group: 'Bone.001', Weight: 0.0 +Vertex 733: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9950547814369202 + Group: 'Bone.002', Weight: 0.7368948459625244 + Group: 'Bone.001', Weight: 0.0 +Vertex 734: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9955756664276123 + Group: 'Bone.002', Weight: 0.8385193347930908 + Group: 'Bone.001', Weight: 0.0 +Vertex 735: +Vertex groups: 3 + Group: 'Bone', Weight: 0.993298351764679 + Group: 'Bone.002', Weight: 0.8379689455032349 + Group: 'Bone.001', Weight: 0.0 +Vertex 736: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9904836416244507 + Group: 'Bone.002', Weight: 0.5917633175849915 + Group: 'Bone.001', Weight: 0.0 +Vertex 737: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9926464557647705 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.011683269403874874 +Vertex 738: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9981962442398071 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.08608585596084595 +Vertex 739: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9986191987991333 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.3140798807144165 +Vertex 740: +Vertex groups: 3 + Group: 'Bone', Weight: 0.997402548789978 + Group: 'Bone.002', Weight: 0.6309459209442139 + Group: 'Bone.001', Weight: 0.0 +Vertex 741: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9947559833526611 + Group: 'Bone.002', Weight: 0.7024577260017395 + Group: 'Bone.001', Weight: 0.0 +Vertex 742: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9945875406265259 + Group: 'Bone.002', Weight: 0.6598004698753357 + Group: 'Bone.001', Weight: 0.0 +Vertex 743: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9823240041732788 + Group: 'Bone.002', Weight: 0.3358905017375946 + Group: 'Bone.001', Weight: 0.0 +Vertex 744: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9947345852851868 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0029216445982456207 +Vertex 745: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9986491203308105 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.04213593155145645 +Vertex 746: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991783499717712 + Group: 'Bone.002', Weight: 0.170243501663208 + Group: 'Bone.001', Weight: 0.0 +Vertex 747: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9978029131889343 + Group: 'Bone.002', Weight: 0.38559770584106445 + Group: 'Bone.001', Weight: 0.0 +Vertex 748: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9934074878692627 + Group: 'Bone.002', Weight: 0.43576931953430176 + Group: 'Bone.001', Weight: 0.0 +Vertex 749: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9927197694778442 + Group: 'Bone.002', Weight: 0.36468571424484253 + Group: 'Bone.001', Weight: 0.0 +Vertex 750: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9898863434791565 + Group: 'Bone.002', Weight: 0.12332004308700562 + Group: 'Bone.001', Weight: 0.0 +Vertex 751: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999895095825195 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.1739703118801117 +Vertex 752: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999236464500427 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.31168049573898315 +Vertex 753: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994992017745972 + Group: 'Bone.002', Weight: 0.6578315496444702 + Group: 'Bone.001', Weight: 0.0 +Vertex 754: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998558163642883 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.3402913212776184 +Vertex 755: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991281032562256 + Group: 'Bone.002', Weight: 0.23831818997859955 + Group: 'Bone.001', Weight: 0.0 +Vertex 756: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9976746439933777 + Group: 'Bone.002', Weight: 0.05005349591374397 + Group: 'Bone.001', Weight: 0.0 +Vertex 757: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993566870689392 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 758: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997756481170654 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.004404372535645962 +Vertex 759: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997110962867737 + Group: 'Bone.002', Weight: 0.03569106012582779 + Group: 'Bone.001', Weight: 0.0 +Vertex 760: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991164803504944 + Group: 'Bone.002', Weight: 0.10064825415611267 + Group: 'Bone.001', Weight: 0.0 +Vertex 761: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9971724152565002 + Group: 'Bone.002', Weight: 0.11181771755218506 + Group: 'Bone.001', Weight: 0.0 +Vertex 762: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9948607087135315 + Group: 'Bone.002', Weight: 0.0794815719127655 + Group: 'Bone.001', Weight: 0.0 +Vertex 763: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9951550960540771 + Group: 'Bone.002', Weight: 0.009465034119784832 + Group: 'Bone.001', Weight: 0.0 +Vertex 764: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9982595443725586 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0017522216076031327 +Vertex 765: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999970555305481 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.07418815046548843 +Vertex 766: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999935626983643 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.014804010279476643 +Vertex 767: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999951124191284 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.002008989918977022 +Vertex 768: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998978972434998 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.07736806571483612 +Vertex 769: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999281167984009 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0021338132210075855 +Vertex 770: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996896982192993 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.06672654300928116 +Vertex 771: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9988108277320862 + Group: 'Bone.002', Weight: 0.010414824821054935 + Group: 'Bone.001', Weight: 0.0 +Vertex 772: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992695450782776 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 773: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9989023804664612 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 774: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993821978569031 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 775: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9723092913627625 + Group: 'Bone', Weight: 0.9934614896774292 +Vertex 776: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9837288856506348 + Group: 'Bone', Weight: 0.9987549185752869 +Vertex 777: +Vertex groups: 2 + Group: 'Bone.002', Weight: 1.0 + Group: 'Bone', Weight: 0.9994329214096069 +Vertex 778: +Vertex groups: 2 + Group: 'Bone.002', Weight: 1.000000238418579 + Group: 'Bone', Weight: 0.9810086488723755 +Vertex 779: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9973642826080322 + Group: 'Bone', Weight: 0.9841403961181641 +Vertex 780: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.999448835849762 + Group: 'Bone', Weight: 0.9991854429244995 +Vertex 781: +Vertex groups: 2 + Group: 'Bone.002', Weight: 1.0 + Group: 'Bone', Weight: 0.99958336353302 +Vertex 782: +Vertex groups: 2 + Group: 'Bone.002', Weight: 1.0 + Group: 'Bone', Weight: 0.9858097434043884 +Vertex 783: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9777987599372864 + Group: 'Bone', Weight: 0.999986469745636 +Vertex 784: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9728248715400696 + Group: 'Bone', Weight: 0.9999914765357971 +Vertex 785: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9954147934913635 + Group: 'Bone', Weight: 0.9999988675117493 +Vertex 786: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9998913407325745 + Group: 'Bone', Weight: 0.9999986290931702 +Vertex 787: +Vertex groups: 2 + Group: 'Bone.002', Weight: 1.000000238418579 + Group: 'Bone', Weight: 0.9912772178649902 +Vertex 788: +Vertex groups: 2 + Group: 'Bone.002', Weight: 1.0 + Group: 'Bone', Weight: 0.9999092817306519 +Vertex 789: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9998847842216492 + Group: 'Bone', Weight: 0.999997079372406 +Vertex 790: +Vertex groups: 2 + Group: 'Bone.002', Weight: 1.0 + Group: 'Bone', Weight: 0.99759840965271 +Vertex 791: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9999122023582458 + Group: 'Bone', Weight: 0.9956228733062744 +Vertex 792: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9996305704116821 + Group: 'Bone', Weight: 0.9924596548080444 +Vertex 793: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9979488849639893 + Group: 'Bone', Weight: 0.9774491786956787 +Vertex 794: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9997336268424988 + Group: 'Bone', Weight: 0.9926109313964844 +Vertex 795: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9997143149375916 + Group: 'Bone', Weight: 0.9555279016494751 +Vertex 796: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9997518062591553 + Group: 'Bone', Weight: 0.9895250797271729 +Vertex 797: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9981691241264343 + Group: 'Bone', Weight: 0.9999735355377197 +Vertex 798: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.998760461807251 + Group: 'Bone', Weight: 0.9999858140945435 +Vertex 799: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9989573359489441 + Group: 'Bone', Weight: 0.9999547004699707 +Vertex 800: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9544483423233032 + Group: 'Bone', Weight: 0.999239981174469 +Vertex 801: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9927539229393005 + Group: 'Bone', Weight: 0.998943567276001 +Vertex 802: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9946842789649963 + Group: 'Bone', Weight: 0.9849550724029541 +Vertex 803: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9999775290489197 + Group: 'Bone', Weight: 0.9990578889846802 +Vertex 804: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9999657869338989 + Group: 'Bone', Weight: 0.9990001916885376 +Vertex 805: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9998128414154053 + Group: 'Bone', Weight: 0.9999866485595703 +Vertex 806: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9766346216201782 + Group: 'Bone', Weight: 0.9927542209625244 +Vertex 807: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9797604084014893 + Group: 'Bone', Weight: 0.9917773008346558 +Vertex 808: +Vertex groups: 2 + Group: 'Bone.002', Weight: 1.0 + Group: 'Bone', Weight: 0.9998372197151184 +Vertex 809: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9999995827674866 + Group: 'Bone', Weight: 1.0 +Vertex 810: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9999973773956299 + Group: 'Bone', Weight: 0.9999983310699463 +Vertex 811: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9871970415115356 + Group: 'Bone', Weight: 0.9609414935112 +Vertex 812: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9885782599449158 + Group: 'Bone', Weight: 0.9656912088394165 +Vertex 813: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9952448010444641 + Group: 'Bone', Weight: 0.9338346123695374 +Vertex 814: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9999998807907104 + Group: 'Bone', Weight: 0.9991775751113892 +Vertex 815: +Vertex groups: 2 + Group: 'Bone.002', Weight: 1.0 + Group: 'Bone', Weight: 0.9992429614067078 +Vertex 816: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9969768524169922 + Group: 'Bone', Weight: 0.9571751952171326 +Vertex 817: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9999997615814209 + Group: 'Bone', Weight: 0.9999146461486816 +Vertex 818: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9939866065979004 + Group: 'Bone', Weight: 0.9018319249153137 +Vertex 819: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9648475646972656 + Group: 'Bone', Weight: 0.9999962449073792 +Vertex 820: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9698792099952698 + Group: 'Bone', Weight: 0.9999998807907104 +Vertex 821: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9955655932426453 + Group: 'Bone', Weight: 0.9999967813491821 +Vertex 822: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9754363894462585 + Group: 'Bone', Weight: 0.998410701751709 +Vertex 823: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9865885972976685 + Group: 'Bone', Weight: 0.9909824728965759 +Vertex 824: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9989475011825562 + Group: 'Bone', Weight: 0.9932569861412048 +Vertex 825: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9691634774208069 + Group: 'Bone', Weight: 0.9967003464698792 +Vertex 826: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9880331754684448 + Group: 'Bone', Weight: 0.9998246431350708 +Vertex 827: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9185092449188232 + Group: 'Bone', Weight: 0.9891437292098999 +Vertex 828: +Vertex groups: 2 + Group: 'Bone.002', Weight: 0.9955356121063232 + Group: 'Bone', Weight: 0.9999997615814209 +Vertex 829: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999857544898987 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 830: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999994695186615 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 831: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999911785125732 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 832: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999809265136719 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0007868270040489733 +Vertex 833: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999036192893982 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0018051138613373041 +Vertex 834: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997469782829285 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0003360750270076096 +Vertex 835: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999953508377075 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 836: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999997079372406 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 837: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999978542327881 + Group: 'Bone.002', Weight: 0.0 +Vertex 838: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999977946281433 + Group: 'Bone.002', Weight: 0.0 +Vertex 839: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999980330467224 + Group: 'Bone.002', Weight: 0.0 +Vertex 840: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999994039535522 + Group: 'Bone.002', Weight: 0.0 +Vertex 841: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999998927116394 + Group: 'Bone.002', Weight: 0.0 +Vertex 842: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999934434890747 + Group: 'Bone.002', Weight: 0.0 +Vertex 843: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999123811721802 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 844: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998764395713806 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 845: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998643398284912 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 846: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997662901878357 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 847: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999845623970032 + Group: 'Bone.002', Weight: 0.0 +Vertex 848: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999916553497314 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 849: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999958276748657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 850: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999995768070221 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 851: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999970197677612 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 852: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999983310699463 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 853: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999974966049194 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 854: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999974370002747 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 855: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999953508377075 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 856: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999971389770508 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 857: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999992251396179 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 858: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999980926513672 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 859: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999982118606567 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 860: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999960660934448 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 861: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999992251396179 + Group: 'Bone.002', Weight: 0.0 +Vertex 862: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999985694885254 + Group: 'Bone.002', Weight: 0.0 +Vertex 863: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999937415122986 + Group: 'Bone.002', Weight: 0.0 +Vertex 864: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999877214431763 + Group: 'Bone.002', Weight: 0.0 +Vertex 865: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999603033065796 + Group: 'Bone.002', Weight: 0.0 +Vertex 866: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999940395355225 + Group: 'Bone.002', Weight: 0.0 +Vertex 867: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999962449073792 + Group: 'Bone.002', Weight: 0.0 +Vertex 868: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999998927116394 + Group: 'Bone.002', Weight: 0.0 +Vertex 869: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999996423721313 + Group: 'Bone.002', Weight: 0.0 +Vertex 870: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999995827674866 + Group: 'Bone.002', Weight: 0.0 +Vertex 871: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999979138374329 + Group: 'Bone.002', Weight: 0.0 +Vertex 872: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999973177909851 + Group: 'Bone.002', Weight: 0.0 +Vertex 873: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999961256980896 + Group: 'Bone.002', Weight: 0.0 +Vertex 874: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999994039535522 + Group: 'Bone.002', Weight: 0.0 +Vertex 875: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.002', Weight: 0.0 +Vertex 876: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 877: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 878: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 879: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 880: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 881: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.002', Weight: 0.0 +Vertex 882: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999948143959045 + Group: 'Bone.002', Weight: 0.0 +Vertex 883: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999996423721313 + Group: 'Bone.002', Weight: 0.0 +Vertex 884: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 885: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 886: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999914169311523 + Group: 'Bone.002', Weight: 0.0 +Vertex 887: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999727010726929 +Vertex 888: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999880194664001 +Vertex 889: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999971389770508 +Vertex 890: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999994039535522 +Vertex 891: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 892: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.002', Weight: 0.0 +Vertex 893: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999933242797852 +Vertex 894: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999521970748901 +Vertex 895: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9998311996459961 +Vertex 896: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999999403953552 +Vertex 897: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999997615814209 +Vertex 898: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999995231628418 +Vertex 899: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999999403953552 +Vertex 900: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 901: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999197125434875 +Vertex 902: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9998865127563477 +Vertex 903: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999944806098938 +Vertex 904: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999819993972778 +Vertex 905: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999999463558197 +Vertex 906: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999998807907104 +Vertex 907: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999998211860657 +Vertex 908: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 909: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 910: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9997185468673706 +Vertex 911: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9997320175170898 +Vertex 912: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9998316764831543 +Vertex 913: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9998993873596191 +Vertex 914: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9998061656951904 +Vertex 915: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999998807907104 +Vertex 916: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 917: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 918: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 919: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9998114705085754 +Vertex 920: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9997419118881226 +Vertex 921: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999675989151001 +Vertex 922: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9997658729553223 +Vertex 923: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9996109008789062 +Vertex 924: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999659061431885 +Vertex 925: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 926: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 927: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 928: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 929: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 930: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9998722076416016 +Vertex 931: +Vertex groups: 1 + Group: 'Bone', Weight: 0.99961256980896 +Vertex 932: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9996099472045898 +Vertex 933: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999568521976471 +Vertex 934: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995675086975098 +Vertex 935: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 936: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 937: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 938: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 939: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 940: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 941: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9997483491897583 +Vertex 942: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995947480201721 +Vertex 943: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995681047439575 +Vertex 944: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999568521976471 +Vertex 945: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 946: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995679259300232 +Vertex 947: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995684623718262 +Vertex 948: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 949: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 950: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 951: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 952: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 953: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 954: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 955: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 956: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 957: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995681643486023 +Vertex 958: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995681047439575 +Vertex 959: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995681047439575 +Vertex 960: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995681047439575 +Vertex 961: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995682835578918 +Vertex 962: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 963: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 964: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 965: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 966: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 967: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995682835578918 +Vertex 968: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995682239532471 +Vertex 969: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995682239532471 +Vertex 970: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995682239532471 +Vertex 971: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995682835578918 +Vertex 972: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995683431625366 +Vertex 973: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 974: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 975: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 976: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995684623718262 +Vertex 977: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995684623718262 +Vertex 978: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995684027671814 +Vertex 979: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995683431625366 +Vertex 980: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995683431625366 +Vertex 981: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995683431625366 +Vertex 982: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995684027671814 +Vertex 983: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 984: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 985: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 986: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 987: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995685815811157 +Vertex 988: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 989: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 990: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995685815811157 +Vertex 991: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999568521976471 +Vertex 992: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999568521976471 +Vertex 993: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995684623718262 +Vertex 994: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995684623718262 +Vertex 995: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995684623718262 +Vertex 996: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995684623718262 +Vertex 997: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995684623718262 +Vertex 998: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 999: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1000: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1001: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1002: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1003: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995684623718262 +Vertex 1004: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995684623718262 +Vertex 1005: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995684623718262 +Vertex 1006: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1007: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1008: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1009: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1010: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1011: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1012: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999568521976471 +Vertex 1013: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999568521976471 +Vertex 1014: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995685815811157 +Vertex 1015: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1016: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1017: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1018: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1019: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9975693225860596 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1020: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995577931404114 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1021: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9979099035263062 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1022: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999656081199646 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1023: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998958706855774 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1024: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1025: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994099140167236 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1026: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998665452003479 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1027: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9985196590423584 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1028: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9962402582168579 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1029: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9990958571434021 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1030: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998827576637268 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1031: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991180896759033 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1032: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999924898147583 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1033: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9986181855201721 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1034: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9979994297027588 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1035: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9986324310302734 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1036: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9960317015647888 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1037: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1038: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9987533688545227 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1039: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997040629386902 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1040: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9984092116355896 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1041: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1042: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998859763145447 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1043: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992259740829468 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1044: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992055892944336 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1045: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9989604949951172 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1046: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992812871932983 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1047: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995219707489014 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1048: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992753267288208 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1049: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998407959938049 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1050: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996231198310852 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1051: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999452829360962 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1052: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994291067123413 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1053: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998183250427246 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1054: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9979478120803833 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1055: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999263286590576 + Group: 'Bone.001', Weight: 9.02524043340236e-05 + Group: 'Bone.002', Weight: 0.0 +Vertex 1056: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992961883544922 + Group: 'Bone.001', Weight: 0.00024225177185144275 + Group: 'Bone.002', Weight: 0.0 +Vertex 1057: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999717473983765 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1058: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999988079071045 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1059: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9979329109191895 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1060: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998112320899963 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1061: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992423057556152 + Group: 'Bone.001', Weight: 0.0004054339078720659 + Group: 'Bone.002', Weight: 0.0 +Vertex 1062: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997427463531494 + Group: 'Bone.001', Weight: 0.00034925033105537295 + Group: 'Bone.002', Weight: 0.0 +Vertex 1063: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996581077575684 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1064: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998963475227356 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1065: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995636940002441 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1066: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999365210533142 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1067: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1068: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999914765357971 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1069: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999818801879883 + Group: 'Bone.001', Weight: 0.00010270130587741733 + Group: 'Bone.002', Weight: 0.0 +Vertex 1070: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999908804893494 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1071: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999999463558197 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1072: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999954104423523 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1073: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999808669090271 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1074: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999738335609436 + Group: 'Bone.001', Weight: 0.0001991837634705007 + Group: 'Bone.002', Weight: 0.0 +Vertex 1075: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999904036521912 + Group: 'Bone.001', Weight: 0.0020091147162020206 + Group: 'Bone.002', Weight: 0.0 +Vertex 1076: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996709823608398 + Group: 'Bone.001', Weight: 0.004161413758993149 + Group: 'Bone.002', Weight: 0.0 +Vertex 1077: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999949932098389 + Group: 'Bone.001', Weight: 0.005962698254734278 + Group: 'Bone.002', Weight: 0.0 +Vertex 1078: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999937415122986 + Group: 'Bone.001', Weight: 0.005327930673956871 + Group: 'Bone.002', Weight: 0.0 +Vertex 1079: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.0031787995249032974 + Group: 'Bone.002', Weight: 0.0 +Vertex 1080: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999988675117493 + Group: 'Bone.001', Weight: 0.00018677990010473877 + Group: 'Bone.002', Weight: 0.0 +Vertex 1081: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999990463256836 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1082: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999915957450867 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1083: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999889731407166 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1084: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999980330467224 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1085: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999991655349731 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1086: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9990514516830444 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1087: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9985617995262146 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1088: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9990150332450867 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1089: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999991238117218 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1090: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998325109481812 + Group: 'Bone.001', Weight: 0.0016760228900238872 + Group: 'Bone.002', Weight: 0.0 +Vertex 1091: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998083710670471 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1092: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999152421951294 + Group: 'Bone.001', Weight: 0.006307572592049837 + Group: 'Bone.002', Weight: 0.0 +Vertex 1093: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999265670776367 + Group: 'Bone.001', Weight: 0.011444145813584328 + Group: 'Bone.002', Weight: 0.0 +Vertex 1094: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999980330467224 + Group: 'Bone.001', Weight: 0.015709444880485535 + Group: 'Bone.002', Weight: 0.0 +Vertex 1095: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999986290931702 + Group: 'Bone.001', Weight: 0.015623744577169418 + Group: 'Bone.002', Weight: 0.0 +Vertex 1096: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.011328108608722687 + Group: 'Bone.002', Weight: 0.0 +Vertex 1097: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.001584252342581749 + Group: 'Bone.002', Weight: 0.0 +Vertex 1098: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 7.883393845986575e-05 + Group: 'Bone.002', Weight: 0.0 +Vertex 1099: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999989867210388 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1100: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999947547912598 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1101: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999867081642151 + Group: 'Bone.001', Weight: 0.0010843026684597135 + Group: 'Bone.002', Weight: 0.0 +Vertex 1102: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999985694885254 + Group: 'Bone.001', Weight: 0.0020866449922323227 + Group: 'Bone.002', Weight: 0.0 +Vertex 1103: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999863505363464 + Group: 'Bone.001', Weight: 0.003429217729717493 + Group: 'Bone.002', Weight: 0.0 +Vertex 1104: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999992251396179 + Group: 'Bone.001', Weight: 0.005204841028898954 + Group: 'Bone.002', Weight: 0.0 +Vertex 1105: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.008143546991050243 + Group: 'Bone.002', Weight: 0.0 +Vertex 1106: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.018843866884708405 + Group: 'Bone.002', Weight: 0.0 +Vertex 1107: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.025469006970524788 + Group: 'Bone.002', Weight: 0.0 +Vertex 1108: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999996423721313 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1109: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999969005584717 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1110: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999874830245972 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1111: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999476075172424 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1112: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999995231628418 + Group: 'Bone.001', Weight: 8.55465914355591e-05 + Group: 'Bone.002', Weight: 0.0 +Vertex 1113: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999113142490387 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1114: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999718070030212 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1115: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998019933700562 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1116: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999147653579712 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1117: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999993443489075 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1118: +Vertex groups: 3 + Group: 'Bone', Weight: 0.998663067817688 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1119: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9989999532699585 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1120: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999481737613678 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1121: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9880771636962891 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1122: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9759722948074341 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1123: +Vertex groups: 3 + Group: 'Bone', Weight: 0.988934338092804 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1124: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999001622200012 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1125: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998809099197388 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1126: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9930937886238098 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1127: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993095993995667 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1128: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991374611854553 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1129: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995837807655334 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1130: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997760057449341 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1131: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999832510948181 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1132: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999918341636658 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1133: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999460577964783 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1134: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999727010726929 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1135: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999983906745911 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1136: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1137: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999803304672241 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1138: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9979948401451111 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1139: +Vertex groups: 3 + Group: 'Bone', Weight: 0.981663703918457 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1140: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9534091949462891 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1141: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9645131826400757 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1142: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999787211418152 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.019276022911071777 +Vertex 1143: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997843503952026 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.060590192675590515 +Vertex 1144: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999753475189209 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1145: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9987654685974121 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1146: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9959813952445984 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1147: +Vertex groups: 3 + Group: 'Bone', Weight: 0.991712212562561 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1148: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996049404144287 + Group: 'Bone.001', Weight: 0.00051615055417642 + Group: 'Bone.002', Weight: 0.0 +Vertex 1149: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9968918561935425 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1150: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996674060821533 + Group: 'Bone.001', Weight: 0.0012421145802363753 + Group: 'Bone.002', Weight: 0.0 +Vertex 1151: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999805212020874 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1152: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999975860118866 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1153: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999061226844788 + Group: 'Bone.001', Weight: 0.0010190973989665508 + Group: 'Bone.002', Weight: 0.0 +Vertex 1154: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999525547027588 + Group: 'Bone.001', Weight: 0.005339194554835558 + Group: 'Bone.002', Weight: 0.0 +Vertex 1155: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999656677246094 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1156: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9986093044281006 + Group: 'Bone.001', Weight: 0.002296695951372385 + Group: 'Bone.002', Weight: 0.0 +Vertex 1157: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999130964279175 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1158: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999920129776001 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1159: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.01995464414358139 + Group: 'Bone.002', Weight: 0.0 +Vertex 1160: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999939799308777 + Group: 'Bone.001', Weight: 0.020015180110931396 + Group: 'Bone.002', Weight: 0.0 +Vertex 1161: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999845027923584 + Group: 'Bone.001', Weight: 0.003486641915515065 + Group: 'Bone.002', Weight: 0.0 +Vertex 1162: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.02817416563630104 + Group: 'Bone.002', Weight: 0.0 +Vertex 1163: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.042815595865249634 + Group: 'Bone.002', Weight: 0.0 +Vertex 1164: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9972561597824097 + Group: 'Bone.001', Weight: 0.010119431652128696 + Group: 'Bone.002', Weight: 0.0 +Vertex 1165: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995453357696533 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1166: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999987483024597 + Group: 'Bone.001', Weight: 0.04214727133512497 + Group: 'Bone.002', Weight: 0.0 +Vertex 1167: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999998927116394 + Group: 'Bone.001', Weight: 0.05478031933307648 + Group: 'Bone.002', Weight: 0.0 +Vertex 1168: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.02925954945385456 + Group: 'Bone.002', Weight: 0.0 +Vertex 1169: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999995231628418 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1170: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999279975891113 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1171: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1172: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999991059303284 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1173: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1174: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1175: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1176: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1177: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999983906745911 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1178: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999990463256836 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1179: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1180: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999992251396179 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1181: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999991774559021 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1182: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999598264694214 + Group: 'Bone.001', Weight: 0.0001822965277824551 + Group: 'Bone.002', Weight: 0.0 +Vertex 1183: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999977171421051 + Group: 'Bone.001', Weight: 0.0006354118813760579 + Group: 'Bone.002', Weight: 0.0 +Vertex 1184: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999969005584717 + Group: 'Bone.001', Weight: 0.001044614240527153 + Group: 'Bone.002', Weight: 0.0 +Vertex 1185: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997019767761 + Group: 'Bone.001', Weight: 0.0011964982841163874 + Group: 'Bone.002', Weight: 0.0 +Vertex 1186: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999966621398926 + Group: 'Bone.001', Weight: 0.0014996121171861887 + Group: 'Bone.002', Weight: 0.0 +Vertex 1187: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.000962734455242753 + Group: 'Bone.002', Weight: 0.0 +Vertex 1188: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999982118606567 + Group: 'Bone.001', Weight: 0.0014600161230191588 + Group: 'Bone.002', Weight: 0.0 +Vertex 1189: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1190: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.0007485605892725289 + Group: 'Bone.002', Weight: 0.0 +Vertex 1191: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1192: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1193: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1194: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1195: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1196: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1197: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1198: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1199: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999862909317017 + Group: 'Bone.001', Weight: 0.00029635627288371325 + Group: 'Bone.002', Weight: 0.0 +Vertex 1200: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999634623527527 + Group: 'Bone.001', Weight: 0.0009228747221641243 + Group: 'Bone.002', Weight: 0.0 +Vertex 1201: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999962568283081 + Group: 'Bone.001', Weight: 0.0016506698448210955 + Group: 'Bone.002', Weight: 0.0 +Vertex 1202: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999558925628662 + Group: 'Bone.001', Weight: 0.002558746375143528 + Group: 'Bone.002', Weight: 0.0 +Vertex 1203: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999977350234985 + Group: 'Bone.001', Weight: 0.002503001829609275 + Group: 'Bone.002', Weight: 0.0 +Vertex 1204: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0014632628299295902 + Group: 'Bone.002', Weight: 0.0 +Vertex 1205: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1206: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1207: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997019767761 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1208: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997019767761 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1209: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1210: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1211: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1212: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1213: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1214: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999996423721313 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1215: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1216: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1217: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1218: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1219: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1220: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1221: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1222: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1223: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1224: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1225: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1226: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1227: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999970197677612 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1228: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999998927116394 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1229: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1230: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999995827674866 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1231: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1232: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1233: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9906799793243408 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1234: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1235: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9679883718490601 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1236: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999948740005493 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1237: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999984085559845 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1238: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999982118606567 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1239: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999749064445496 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1240: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999932050704956 + Group: 'Bone.001', Weight: 0.0001431780110578984 + Group: 'Bone.002', Weight: 0.0 +Vertex 1241: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997019767761 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1242: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1243: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999833106994629 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1244: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999376535415649 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1245: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999994039535522 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1246: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1247: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998579621315002 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1248: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9980593919754028 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1249: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9984525442123413 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1250: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994308948516846 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1251: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994142055511475 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1252: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997446537017822 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.05470770597457886 +Vertex 1253: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1254: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1255: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999904632568359 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1256: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999985694885254 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1257: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1258: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998054504394531 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1259: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996711015701294 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1260: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9931454658508301 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1261: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9934849739074707 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1262: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994649887084961 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1263: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9956032037734985 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1264: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9908348917961121 + Group: 'Bone.001', Weight: 0.004053875803947449 + Group: 'Bone.002', Weight: 0.0 +Vertex 1265: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9775219559669495 + Group: 'Bone.001', Weight: 0.018894363194704056 + Group: 'Bone.002', Weight: 0.0 +Vertex 1266: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9910882711410522 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1267: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993250370025635 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1268: +Vertex groups: 3 + Group: 'Bone', Weight: 0.993199348449707 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1269: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9970826506614685 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1270: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9940013885498047 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1271: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9987190961837769 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1272: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1273: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999314546585083 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1274: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995891451835632 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1275: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997807145118713 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1276: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9944789409637451 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1277: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9934650659561157 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1278: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994597434997559 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1279: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995900988578796 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1280: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9978851675987244 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1281: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9984123110771179 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1282: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 1.57998401846271e-05 + Group: 'Bone.002', Weight: 0.0 +Vertex 1283: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1284: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999976754188538 + Group: 'Bone.001', Weight: 0.0010308044729754329 + Group: 'Bone.002', Weight: 0.0 +Vertex 1285: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993226528167725 + Group: 'Bone.001', Weight: 0.0023107973393052816 + Group: 'Bone.002', Weight: 0.0 +Vertex 1286: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999912977218628 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1287: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1288: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.016664139926433563 + Group: 'Bone.002', Weight: 0.0 +Vertex 1289: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.002178139053285122 + Group: 'Bone.002', Weight: 0.0 +Vertex 1290: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1291: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999985098838806 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1292: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999860525131226 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1293: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999964833259583 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1294: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9973392486572266 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1295: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9947616457939148 + Group: 'Bone.001', Weight: 0.000963423284702003 + Group: 'Bone.002', Weight: 0.0 +Vertex 1296: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997749924659729 + Group: 'Bone.001', Weight: 0.010434663854539394 + Group: 'Bone.002', Weight: 0.0 +Vertex 1297: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.03410020470619202 + Group: 'Bone.002', Weight: 0.0 +Vertex 1298: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.034433312714099884 + Group: 'Bone.002', Weight: 0.0 +Vertex 1299: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.029167689383029938 + Group: 'Bone.002', Weight: 0.0 +Vertex 1300: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999987483024597 + Group: 'Bone.001', Weight: 0.0028242687694728374 + Group: 'Bone.002', Weight: 0.0 +Vertex 1301: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999893307685852 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1302: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999986290931702 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1303: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999991655349731 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1304: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9984694123268127 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1305: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999276399612427 + Group: 'Bone.001', Weight: 0.005103888921439648 + Group: 'Bone.002', Weight: 0.0 +Vertex 1306: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999939203262329 + Group: 'Bone.001', Weight: 0.026581263169646263 + Group: 'Bone.002', Weight: 0.0 +Vertex 1307: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999420046806335 + Group: 'Bone.001', Weight: 0.11105813831090927 + Group: 'Bone.002', Weight: 0.0 +Vertex 1308: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999803900718689 + Group: 'Bone.001', Weight: 0.14311525225639343 + Group: 'Bone.002', Weight: 0.0 +Vertex 1309: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.08423826843500137 + Group: 'Bone.002', Weight: 0.0 +Vertex 1310: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999993443489075 + Group: 'Bone.001', Weight: 0.04554247111082077 + Group: 'Bone.002', Weight: 0.0 +Vertex 1311: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999996542930603 + Group: 'Bone.001', Weight: 0.0504329577088356 + Group: 'Bone.002', Weight: 0.0 +Vertex 1312: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991530179977417 + Group: 'Bone.001', Weight: 0.007579599507153034 + Group: 'Bone.002', Weight: 0.0 +Vertex 1313: +Vertex groups: 3 + Group: 'Bone', Weight: 0.995247483253479 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1314: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999995231628418 + Group: 'Bone.001', Weight: 0.0001429205876775086 + Group: 'Bone.002', Weight: 0.0 +Vertex 1315: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999899864196777 + Group: 'Bone.001', Weight: 0.0005104154697619379 + Group: 'Bone.002', Weight: 0.0 +Vertex 1316: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999924898147583 + Group: 'Bone.001', Weight: 0.0031964543741196394 + Group: 'Bone.002', Weight: 0.0 +Vertex 1317: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999570846557617 + Group: 'Bone.001', Weight: 0.03346680477261543 + Group: 'Bone.002', Weight: 0.0 +Vertex 1318: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999744892120361 + Group: 'Bone.001', Weight: 0.009744859300553799 + Group: 'Bone.002', Weight: 0.0 +Vertex 1319: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999989867210388 + Group: 'Bone.001', Weight: 0.002097753109410405 + Group: 'Bone.002', Weight: 0.0 +Vertex 1320: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9910025000572205 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1321: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9975854158401489 + Group: 'Bone.001', Weight: 0.008369965478777885 + Group: 'Bone.002', Weight: 0.0 +Vertex 1322: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999312162399292 + Group: 'Bone.001', Weight: 0.07613816112279892 + Group: 'Bone.002', Weight: 0.0 +Vertex 1323: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999948740005493 + Group: 'Bone.001', Weight: 0.05298875272274017 + Group: 'Bone.002', Weight: 0.0 +Vertex 1324: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999978542327881 + Group: 'Bone.001', Weight: 0.19103476405143738 + Group: 'Bone.002', Weight: 0.0 +Vertex 1325: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999994039535522 + Group: 'Bone.001', Weight: 0.21395815908908844 + Group: 'Bone.002', Weight: 0.0 +Vertex 1326: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.06660668551921844 + Group: 'Bone.002', Weight: 0.0 +Vertex 1327: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9985113143920898 + Group: 'Bone.001', Weight: 0.09629464149475098 + Group: 'Bone.002', Weight: 0.0 +Vertex 1328: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9909380674362183 + Group: 'Bone.001', Weight: 0.010050008073449135 + Group: 'Bone.002', Weight: 0.0 +Vertex 1329: +Vertex groups: 3 + Group: 'Bone', Weight: 0.977986752986908 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1330: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999971389770508 + Group: 'Bone.001', Weight: 0.012616081163287163 + Group: 'Bone.002', Weight: 0.0 +Vertex 1331: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999822378158569 + Group: 'Bone.001', Weight: 0.04180034250020981 + Group: 'Bone.002', Weight: 0.0 +Vertex 1332: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999383091926575 + Group: 'Bone.001', Weight: 0.07980252802371979 + Group: 'Bone.002', Weight: 0.0 +Vertex 1333: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999982714653015 + Group: 'Bone.001', Weight: 0.10104548186063766 + Group: 'Bone.002', Weight: 0.0 +Vertex 1334: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999992847442627 + Group: 'Bone.001', Weight: 0.07102678716182709 + Group: 'Bone.002', Weight: 0.0 +Vertex 1335: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999995231628418 + Group: 'Bone.001', Weight: 0.04066450148820877 + Group: 'Bone.002', Weight: 0.0 +Vertex 1336: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9192671179771423 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1337: +Vertex groups: 3 + Group: 'Bone', Weight: 0.967975378036499 + Group: 'Bone.001', Weight: 0.023555075749754906 + Group: 'Bone.002', Weight: 0.0 +Vertex 1338: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9951410293579102 + Group: 'Bone.001', Weight: 0.08910240232944489 + Group: 'Bone.002', Weight: 0.0 +Vertex 1339: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999997615814209 + Group: 'Bone.001', Weight: 0.07450614869594574 + Group: 'Bone.002', Weight: 0.0 +Vertex 1340: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997019767761 + Group: 'Bone.001', Weight: 0.24746984243392944 + Group: 'Bone.002', Weight: 0.0 +Vertex 1341: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999957084655762 + Group: 'Bone.001', Weight: 0.1808345466852188 + Group: 'Bone.002', Weight: 0.0 +Vertex 1342: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.14325572550296783 + Group: 'Bone.002', Weight: 0.0 +Vertex 1343: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999966621398926 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1344: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999375343322754 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1345: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999927878379822 + Group: 'Bone.001', Weight: 0.09097888320684433 + Group: 'Bone.002', Weight: 0.0 +Vertex 1346: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999868273735046 + Group: 'Bone.001', Weight: 0.0005491106421686709 + Group: 'Bone.002', Weight: 0.0 +Vertex 1347: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999871253967285 + Group: 'Bone.001', Weight: 0.0010564213152974844 + Group: 'Bone.002', Weight: 0.0 +Vertex 1348: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999541640281677 + Group: 'Bone.001', Weight: 0.0015302393585443497 + Group: 'Bone.002', Weight: 0.0 +Vertex 1349: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999501705169678 + Group: 'Bone.001', Weight: 0.0025799069553613663 + Group: 'Bone.002', Weight: 0.0 +Vertex 1350: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999347925186157 + Group: 'Bone.001', Weight: 0.004142026416957378 + Group: 'Bone.002', Weight: 0.0 +Vertex 1351: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999946355819702 + Group: 'Bone.001', Weight: 0.004319351632148027 + Group: 'Bone.002', Weight: 0.0 +Vertex 1352: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0027172414120286703 + Group: 'Bone.002', Weight: 0.0 +Vertex 1353: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997019767761 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1354: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999988675117493 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1355: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999985694885254 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1356: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999985694885254 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1357: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999850988388062 + Group: 'Bone.001', Weight: 0.0031602184753865004 + Group: 'Bone.002', Weight: 0.0 +Vertex 1358: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999703764915466 + Group: 'Bone.001', Weight: 0.006064893677830696 + Group: 'Bone.002', Weight: 0.0 +Vertex 1359: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998210668563843 + Group: 'Bone.001', Weight: 0.00984225608408451 + Group: 'Bone.002', Weight: 0.0 +Vertex 1360: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997043013572693 + Group: 'Bone.001', Weight: 0.011491154320538044 + Group: 'Bone.002', Weight: 0.0 +Vertex 1361: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999949932098389 + Group: 'Bone.001', Weight: 0.00919235497713089 + Group: 'Bone.002', Weight: 0.0 +Vertex 1362: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999991655349731 + Group: 'Bone.001', Weight: 0.0030409060418605804 + Group: 'Bone.002', Weight: 0.0 +Vertex 1363: +Vertex groups: 3 + Group: 'Bone', Weight: 0.99998939037323 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1364: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999893307685852 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1365: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999940395355225 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1366: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999256730079651 + Group: 'Bone.001', Weight: 0.0024625323712825775 + Group: 'Bone.002', Weight: 0.0 +Vertex 1367: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999660849571228 + Group: 'Bone.001', Weight: 0.010920501314103603 + Group: 'Bone.002', Weight: 0.0 +Vertex 1368: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997812509536743 + Group: 'Bone.001', Weight: 0.02039521560072899 + Group: 'Bone.002', Weight: 0.0 +Vertex 1369: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991047978401184 + Group: 'Bone.001', Weight: 0.023376308381557465 + Group: 'Bone.002', Weight: 0.0 +Vertex 1370: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994246363639832 + Group: 'Bone.001', Weight: 0.046889182180166245 + Group: 'Bone.002', Weight: 0.0 +Vertex 1371: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999774694442749 + Group: 'Bone.001', Weight: 0.03497099503874779 + Group: 'Bone.002', Weight: 0.0 +Vertex 1372: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998789429664612 + Group: 'Bone.001', Weight: 0.008234912529587746 + Group: 'Bone.002', Weight: 0.0 +Vertex 1373: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999672174453735 + Group: 'Bone.001', Weight: 0.00020625608158297837 + Group: 'Bone.002', Weight: 0.0 +Vertex 1374: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999874234199524 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1375: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999946355819702 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1376: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999897480010986 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1377: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999884963035583 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1378: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.2871621549129486 + Group: 'Bone', Weight: 0.9999997019767761 + Group: 'Bone.002', Weight: 0.0 +Vertex 1379: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.7888956069946289 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.002', Weight: 0.0 +Vertex 1380: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9958133697509766 + Group: 'Bone', Weight: 0.9999467134475708 + Group: 'Bone.002', Weight: 0.0 +Vertex 1381: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999969601631165 + Group: 'Bone', Weight: 0.9999963045120239 + Group: 'Bone.002', Weight: 0.0 +Vertex 1382: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999998807907104 + Group: 'Bone', Weight: 0.9999959468841553 + Group: 'Bone.002', Weight: 0.0 +Vertex 1383: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999998807907104 + Group: 'Bone', Weight: 0.9999988675117493 + Group: 'Bone.002', Weight: 0.0 +Vertex 1384: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999998807907104 + Group: 'Bone', Weight: 0.9999951124191284 + Group: 'Bone.002', Weight: 0.0 +Vertex 1385: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9990484118461609 + Group: 'Bone.002', Weight: 0.0 +Vertex 1386: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.999921441078186 + Group: 'Bone.002', Weight: 0.0 +Vertex 1387: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9998489022254944 + Group: 'Bone.002', Weight: 0.0 +Vertex 1388: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999495148658752 + Group: 'Bone.002', Weight: 0.0 +Vertex 1389: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.999998927116394 + Group: 'Bone.002', Weight: 0.0 +Vertex 1390: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9997674226760864 + Group: 'Bone.002', Weight: 0.0 +Vertex 1391: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.25578802824020386 + Group: 'Bone', Weight: 0.9999979138374329 + Group: 'Bone.002', Weight: 0.0 +Vertex 1392: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999762177467346 + Group: 'Bone.001', Weight: 0.09920290857553482 + Group: 'Bone.002', Weight: 0.0 +Vertex 1393: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999582171440125 + Group: 'Bone.001', Weight: 0.15802404284477234 + Group: 'Bone.002', Weight: 0.0 +Vertex 1394: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999541163444519 + Group: 'Bone.001', Weight: 0.3045569658279419 + Group: 'Bone.002', Weight: 0.0 +Vertex 1395: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9990289211273193 + Group: 'Bone.001', Weight: 0.218830868601799 + Group: 'Bone.002', Weight: 0.0 +Vertex 1396: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997608661651611 + Group: 'Bone.001', Weight: 0.1775958240032196 + Group: 'Bone.002', Weight: 0.0 +Vertex 1397: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999951720237732 + Group: 'Bone.001', Weight: 0.11655613034963608 + Group: 'Bone.002', Weight: 0.0 +Vertex 1398: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999723434448242 + Group: 'Bone.001', Weight: 0.030938848853111267 + Group: 'Bone.002', Weight: 0.0 +Vertex 1399: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.1582735776901245 + Group: 'Bone', Weight: 0.9998414516448975 + Group: 'Bone.002', Weight: 0.0 +Vertex 1400: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.21169805526733398 + Group: 'Bone', Weight: 0.9999632239341736 + Group: 'Bone.002', Weight: 0.0 +Vertex 1401: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.34285059571266174 + Group: 'Bone', Weight: 0.9999867081642151 + Group: 'Bone.002', Weight: 0.0 +Vertex 1402: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.35912367701530457 + Group: 'Bone', Weight: 0.9991266131401062 + Group: 'Bone.002', Weight: 0.0 +Vertex 1403: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.1680334210395813 + Group: 'Bone', Weight: 0.993033766746521 + Group: 'Bone.002', Weight: 0.0 +Vertex 1404: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.5439057350158691 + Group: 'Bone', Weight: 0.9999096989631653 + Group: 'Bone.002', Weight: 0.0 +Vertex 1405: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.3941230773925781 + Group: 'Bone', Weight: 0.9999983906745911 + Group: 'Bone.002', Weight: 0.0 +Vertex 1406: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.31736600399017334 + Group: 'Bone', Weight: 0.9999975562095642 + Group: 'Bone.002', Weight: 0.0 +Vertex 1407: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.7913145422935486 + Group: 'Bone', Weight: 0.9999992847442627 + Group: 'Bone.002', Weight: 0.0 +Vertex 1408: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9927555918693542 + Group: 'Bone', Weight: 0.9998441934585571 + Group: 'Bone.002', Weight: 0.0 +Vertex 1409: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999934434890747 + Group: 'Bone', Weight: 0.9999945759773254 + Group: 'Bone.002', Weight: 0.0 +Vertex 1410: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999999403953552 + Group: 'Bone', Weight: 0.9999275207519531 + Group: 'Bone.002', Weight: 0.0 +Vertex 1411: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999998807907104 + Group: 'Bone', Weight: 0.9999548196792603 + Group: 'Bone.002', Weight: 0.0 +Vertex 1412: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999995827674866 + Group: 'Bone', Weight: 0.9999462366104126 + Group: 'Bone.002', Weight: 0.0 +Vertex 1413: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9997683763504028 + Group: 'Bone.002', Weight: 0.0 +Vertex 1414: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999439716339111 + Group: 'Bone.002', Weight: 0.0 +Vertex 1415: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999534487724304 + Group: 'Bone.002', Weight: 0.0 +Vertex 1416: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999791383743286 + Group: 'Bone.002', Weight: 0.0 +Vertex 1417: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999682307243347 + Group: 'Bone.002', Weight: 0.0 +Vertex 1418: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9998767375946045 + Group: 'Bone.002', Weight: 0.0 +Vertex 1419: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.8456863760948181 + Group: 'Bone', Weight: 0.9999991059303284 + Group: 'Bone.002', Weight: 0.0 +Vertex 1420: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.8271089196205139 + Group: 'Bone', Weight: 0.9999996423721313 + Group: 'Bone.002', Weight: 0.0 +Vertex 1421: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.8836655616760254 + Group: 'Bone', Weight: 0.9999170899391174 + Group: 'Bone.002', Weight: 0.0 +Vertex 1422: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.45939335227012634 + Group: 'Bone', Weight: 0.825798511505127 + Group: 'Bone.002', Weight: 0.0 +Vertex 1423: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.7743627429008484 + Group: 'Bone', Weight: 0.9969362616539001 + Group: 'Bone.002', Weight: 0.0 +Vertex 1424: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.7879019379615784 + Group: 'Bone', Weight: 0.9996598362922668 + Group: 'Bone.002', Weight: 0.0 +Vertex 1425: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.5929442644119263 + Group: 'Bone', Weight: 0.9998074173927307 + Group: 'Bone.002', Weight: 0.0 +Vertex 1426: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9744634628295898 + Group: 'Bone', Weight: 0.9991997480392456 + Group: 'Bone.002', Weight: 0.0 +Vertex 1427: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.999782919883728 + Group: 'Bone', Weight: 0.9996421337127686 + Group: 'Bone.002', Weight: 0.0 +Vertex 1428: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999520182609558 + Group: 'Bone', Weight: 0.9992556571960449 + Group: 'Bone.002', Weight: 0.0 +Vertex 1429: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999743700027466 + Group: 'Bone', Weight: 0.998279333114624 + Group: 'Bone.002', Weight: 0.0 +Vertex 1430: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999935626983643 + Group: 'Bone', Weight: 0.993941068649292 + Group: 'Bone.002', Weight: 0.0 +Vertex 1431: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9988833665847778 + Group: 'Bone.002', Weight: 0.0 +Vertex 1432: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9969073534011841 + Group: 'Bone.002', Weight: 0.0 +Vertex 1433: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9997870922088623 + Group: 'Bone.002', Weight: 0.0 +Vertex 1434: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999207258224487 + Group: 'Bone.002', Weight: 0.0 +Vertex 1435: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9998636841773987 + Group: 'Bone.002', Weight: 0.0 +Vertex 1436: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999988079071045 + Group: 'Bone.002', Weight: 0.0 +Vertex 1437: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.6527904868125916 + Group: 'Bone', Weight: 0.9999803900718689 + Group: 'Bone.002', Weight: 0.0 +Vertex 1438: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.982818067073822 + Group: 'Bone', Weight: 0.9983854293823242 + Group: 'Bone.002', Weight: 0.0 +Vertex 1439: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.999808669090271 + Group: 'Bone', Weight: 0.9997279644012451 + Group: 'Bone.002', Weight: 0.0 +Vertex 1440: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999499320983887 + Group: 'Bone', Weight: 0.9954242706298828 + Group: 'Bone.002', Weight: 0.0 +Vertex 1441: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999768733978271 + Group: 'Bone', Weight: 0.9990857839584351 + Group: 'Bone.002', Weight: 0.0 +Vertex 1442: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999951124191284 + Group: 'Bone', Weight: 0.9933938384056091 + Group: 'Bone.002', Weight: 0.0 +Vertex 1443: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9429672956466675 + Group: 'Bone.002', Weight: 0.0 +Vertex 1444: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9911613464355469 + Group: 'Bone.002', Weight: 0.0 +Vertex 1445: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9995143413543701 + Group: 'Bone.002', Weight: 0.0 +Vertex 1446: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.999835729598999 + Group: 'Bone.002', Weight: 0.0 +Vertex 1447: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9998988509178162 + Group: 'Bone.002', Weight: 0.0 +Vertex 1448: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9915192127227783 + Group: 'Bone', Weight: 0.9974865317344666 + Group: 'Bone.002', Weight: 0.0 +Vertex 1449: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9998785853385925 + Group: 'Bone', Weight: 0.9967692494392395 + Group: 'Bone.002', Weight: 0.0 +Vertex 1450: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999565482139587 + Group: 'Bone', Weight: 0.9961095452308655 + Group: 'Bone.002', Weight: 0.0 +Vertex 1451: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999827146530151 + Group: 'Bone', Weight: 0.9960507750511169 + Group: 'Bone.002', Weight: 0.0 +Vertex 1452: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999951720237732 + Group: 'Bone', Weight: 0.9938493967056274 + Group: 'Bone.002', Weight: 0.0 +Vertex 1453: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9785784482955933 + Group: 'Bone.002', Weight: 0.0 +Vertex 1454: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9957254528999329 + Group: 'Bone.002', Weight: 0.0 +Vertex 1455: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9997966885566711 + Group: 'Bone.002', Weight: 0.0 +Vertex 1456: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999403357505798 + Group: 'Bone.002', Weight: 0.0 +Vertex 1457: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999739527702332 + Group: 'Bone.002', Weight: 0.0 +Vertex 1458: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9814163446426392 + Group: 'Bone', Weight: 0.9863809943199158 + Group: 'Bone.002', Weight: 0.0 +Vertex 1459: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9992179870605469 + Group: 'Bone', Weight: 0.9828458428382874 + Group: 'Bone.002', Weight: 0.0 +Vertex 1460: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9995973110198975 + Group: 'Bone', Weight: 0.9855307340621948 + Group: 'Bone.002', Weight: 0.0 +Vertex 1461: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9998774528503418 + Group: 'Bone', Weight: 0.9835734963417053 + Group: 'Bone.002', Weight: 0.0 +Vertex 1462: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.99997878074646 + Group: 'Bone', Weight: 0.9757434725761414 + Group: 'Bone.002', Weight: 0.0 +Vertex 1463: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.983368992805481 + Group: 'Bone.002', Weight: 0.0 +Vertex 1464: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9950889945030212 + Group: 'Bone.002', Weight: 0.0 +Vertex 1465: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9996433854103088 + Group: 'Bone.002', Weight: 0.0 +Vertex 1466: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9998989105224609 + Group: 'Bone.002', Weight: 0.0 +Vertex 1467: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999895691871643 + Group: 'Bone.002', Weight: 0.0 +Vertex 1468: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999955296516418 + Group: 'Bone.002', Weight: 0.0 +Vertex 1469: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.8837170600891113 + Group: 'Bone', Weight: 0.9868053197860718 + Group: 'Bone.002', Weight: 0.0 +Vertex 1470: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9924674034118652 + Group: 'Bone', Weight: 0.8066978454589844 + Group: 'Bone.002', Weight: 0.0 +Vertex 1471: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9970695972442627 + Group: 'Bone', Weight: 0.8248016238212585 + Group: 'Bone.002', Weight: 0.0 +Vertex 1472: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.998786985874176 + Group: 'Bone', Weight: 0.8066005706787109 + Group: 'Bone.002', Weight: 0.0 +Vertex 1473: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.999886155128479 + Group: 'Bone', Weight: 0.8883023262023926 + Group: 'Bone.002', Weight: 0.0 +Vertex 1474: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9205944538116455 + Group: 'Bone.002', Weight: 0.0 +Vertex 1475: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9961966276168823 + Group: 'Bone.002', Weight: 0.0 +Vertex 1476: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9981724619865417 + Group: 'Bone.002', Weight: 0.0 +Vertex 1477: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9991634488105774 + Group: 'Bone.002', Weight: 0.0 +Vertex 1478: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.998869001865387 + Group: 'Bone.002', Weight: 0.0 +Vertex 1479: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9973155856132507 + Group: 'Bone.002', Weight: 0.0 +Vertex 1480: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9949281811714172 + Group: 'Bone', Weight: 0.9997028708457947 + Group: 'Bone.002', Weight: 0.0 +Vertex 1481: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999011158943176 + Group: 'Bone', Weight: 0.9969720840454102 + Group: 'Bone.002', Weight: 0.0 +Vertex 1482: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999764561653137 + Group: 'Bone', Weight: 0.9968357682228088 + Group: 'Bone.002', Weight: 0.0 +Vertex 1483: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999918341636658 + Group: 'Bone', Weight: 0.9961901903152466 + Group: 'Bone.002', Weight: 0.0 +Vertex 1484: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999999403953552 + Group: 'Bone', Weight: 0.9928346872329712 + Group: 'Bone.002', Weight: 0.0 +Vertex 1485: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9896664619445801 + Group: 'Bone.002', Weight: 0.0 +Vertex 1486: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9865086674690247 + Group: 'Bone.002', Weight: 0.0 +Vertex 1487: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9846799373626709 + Group: 'Bone.002', Weight: 0.0 +Vertex 1488: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9957149028778076 + Group: 'Bone.002', Weight: 0.0 +Vertex 1489: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9981096982955933 + Group: 'Bone.002', Weight: 0.0 +Vertex 1490: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999019503593445 + Group: 'Bone.002', Weight: 0.0 +Vertex 1491: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9838937520980835 + Group: 'Bone', Weight: 0.9999845027923584 + Group: 'Bone.002', Weight: 0.0 +Vertex 1492: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9954679608345032 + Group: 'Bone', Weight: 0.9999524354934692 + Group: 'Bone.002', Weight: 0.0 +Vertex 1493: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999939203262329 + Group: 'Bone', Weight: 0.9999839663505554 + Group: 'Bone.002', Weight: 0.0 +Vertex 1494: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9995313286781311 + Group: 'Bone', Weight: 0.9999396204948425 + Group: 'Bone.002', Weight: 0.0 +Vertex 1495: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999996423721313 + Group: 'Bone', Weight: 0.9999092817306519 + Group: 'Bone.002', Weight: 0.0 +Vertex 1496: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9998967051506042 + Group: 'Bone', Weight: 0.9998850226402283 + Group: 'Bone.002', Weight: 0.0 +Vertex 1497: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999997615814209 + Group: 'Bone', Weight: 0.9996235966682434 + Group: 'Bone.002', Weight: 0.0 +Vertex 1498: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999386072158813 + Group: 'Bone', Weight: 0.9998049736022949 + Group: 'Bone.002', Weight: 0.0 +Vertex 1499: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999995231628418 + Group: 'Bone', Weight: 0.999828040599823 + Group: 'Bone.002', Weight: 0.0 +Vertex 1500: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.999980628490448 + Group: 'Bone', Weight: 0.9998196959495544 + Group: 'Bone.002', Weight: 0.0 +Vertex 1501: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9998859167098999 + Group: 'Bone.002', Weight: 0.0 +Vertex 1502: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9998704791069031 + Group: 'Bone.002', Weight: 0.0 +Vertex 1503: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999780654907227 + Group: 'Bone.002', Weight: 0.0 +Vertex 1504: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.99996417760849 + Group: 'Bone.002', Weight: 0.0 +Vertex 1505: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.999972939491272 + Group: 'Bone.002', Weight: 0.0 +Vertex 1506: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.999993085861206 + Group: 'Bone.002', Weight: 0.0 +Vertex 1507: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999022483825684 + Group: 'Bone.002', Weight: 0.0 +Vertex 1508: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.999958336353302 + Group: 'Bone.002', Weight: 0.0 +Vertex 1509: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999246001243591 + Group: 'Bone.002', Weight: 0.0 +Vertex 1510: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9998703002929688 + Group: 'Bone.002', Weight: 0.0 +Vertex 1511: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999622702598572 + Group: 'Bone.002', Weight: 0.0 +Vertex 1512: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9996974468231201 + Group: 'Bone.002', Weight: 0.0 +Vertex 1513: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999772310256958 + Group: 'Bone.001', Weight: 0.03593726456165314 + Group: 'Bone.002', Weight: 0.0 +Vertex 1514: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999721646308899 + Group: 'Bone.001', Weight: 0.005805335473269224 + Group: 'Bone.002', Weight: 0.0 +Vertex 1515: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996164441108704 + Group: 'Bone.001', Weight: 0.12812800705432892 + Group: 'Bone.002', Weight: 0.0 +Vertex 1516: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995752573013306 + Group: 'Bone.001', Weight: 0.13972222805023193 + Group: 'Bone.002', Weight: 2.0721639884868637e-05 +Vertex 1517: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991099238395691 + Group: 'Bone.001', Weight: 0.28768104314804077 + Group: 'Bone.002', Weight: 0.0 +Vertex 1518: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999496936798096 + Group: 'Bone.001', Weight: 0.2749688923358917 + Group: 'Bone.002', Weight: 0.0 +Vertex 1519: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999498128890991 + Group: 'Bone.001', Weight: 0.16464178264141083 + Group: 'Bone.002', Weight: 0.0001307218917645514 +Vertex 1520: +Vertex groups: 3 + Group: 'Bone', Weight: 0.998471200466156 + Group: 'Bone.001', Weight: 0.003229505615308881 + Group: 'Bone.002', Weight: 0.00017941954138223082 +Vertex 1521: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9969339966773987 + Group: 'Bone.001', Weight: 0.18643569946289062 + Group: 'Bone.002', Weight: 0.0 +Vertex 1522: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9933045506477356 + Group: 'Bone.001', Weight: 0.2346363216638565 + Group: 'Bone.002', Weight: 0.0 +Vertex 1523: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9959519505500793 + Group: 'Bone.001', Weight: 0.3047398328781128 + Group: 'Bone.002', Weight: 0.0 +Vertex 1524: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9978761076927185 + Group: 'Bone.001', Weight: 0.235627219080925 + Group: 'Bone.002', Weight: 0.0 +Vertex 1525: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998375177383423 + Group: 'Bone.001', Weight: 0.1292761117219925 + Group: 'Bone.002', Weight: 0.0 +Vertex 1526: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9938306212425232 + Group: 'Bone.001', Weight: 0.1828985959291458 + Group: 'Bone.002', Weight: 0.0 +Vertex 1527: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9956048727035522 + Group: 'Bone.001', Weight: 0.19997183978557587 + Group: 'Bone.002', Weight: 0.0 +Vertex 1528: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993513822555542 + Group: 'Bone.001', Weight: 0.09515193849802017 + Group: 'Bone.002', Weight: 0.0 +Vertex 1529: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9914402365684509 + Group: 'Bone.001', Weight: 0.0006263359100557864 + Group: 'Bone.002', Weight: 0.0 +Vertex 1530: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9968082308769226 + Group: 'Bone.001', Weight: 0.07621386647224426 + Group: 'Bone.002', Weight: 0.0 +Vertex 1531: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9923746585845947 + Group: 'Bone.001', Weight: 0.1606762409210205 + Group: 'Bone.002', Weight: 0.0 +Vertex 1532: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9960274696350098 + Group: 'Bone.001', Weight: 0.1254529505968094 + Group: 'Bone.002', Weight: 0.0 +Vertex 1533: +Vertex groups: 3 + Group: 'Bone', Weight: 0.997607946395874 + Group: 'Bone.001', Weight: 0.13171321153640747 + Group: 'Bone.002', Weight: 0.0 +Vertex 1534: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9984967112541199 + Group: 'Bone.001', Weight: 0.06656705588102341 + Group: 'Bone.002', Weight: 0.0 +Vertex 1535: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9957202076911926 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1536: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9979360103607178 + Group: 'Bone.001', Weight: 0.008546385914087296 + Group: 'Bone.002', Weight: 0.0 +Vertex 1537: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9960906505584717 + Group: 'Bone.001', Weight: 0.10256463289260864 + Group: 'Bone.002', Weight: 0.0 +Vertex 1538: +Vertex groups: 3 + Group: 'Bone', Weight: 0.997729480266571 + Group: 'Bone.001', Weight: 0.11393459141254425 + Group: 'Bone.002', Weight: 0.0 +Vertex 1539: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9983965754508972 + Group: 'Bone.001', Weight: 0.08862247318029404 + Group: 'Bone.002', Weight: 0.0 +Vertex 1540: +Vertex groups: 3 + Group: 'Bone', Weight: 0.998957633972168 + Group: 'Bone.001', Weight: 0.03604837879538536 + Group: 'Bone.002', Weight: 0.0 +Vertex 1541: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999943971633911 + Group: 'Bone.001', Weight: 0.002364702057093382 + Group: 'Bone.002', Weight: 0.0 +Vertex 1542: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.018421947956085205 + Group: 'Bone.002', Weight: 0.0 +Vertex 1543: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999992251396179 + Group: 'Bone.001', Weight: 0.08779683709144592 + Group: 'Bone.002', Weight: 0.0 +Vertex 1544: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999859929084778 + Group: 'Bone.001', Weight: 0.028906192630529404 + Group: 'Bone.002', Weight: 0.0 +Vertex 1545: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9990196824073792 + Group: 'Bone.001', Weight: 0.02180379070341587 + Group: 'Bone.002', Weight: 0.0 +Vertex 1546: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997328519821167 + Group: 'Bone.001', Weight: 0.005863445810973644 + Group: 'Bone.002', Weight: 0.0 +Vertex 1547: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999053418636322 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1548: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9986723065376282 + Group: 'Bone.001', Weight: 0.00018862425349652767 + Group: 'Bone.002', Weight: 0.0 +Vertex 1549: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9976354837417603 + Group: 'Bone.001', Weight: 0.02443293109536171 + Group: 'Bone.002', Weight: 0.0 +Vertex 1550: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9983447194099426 + Group: 'Bone.001', Weight: 0.043219827115535736 + Group: 'Bone.002', Weight: 0.0 +Vertex 1551: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992985725402832 + Group: 'Bone.001', Weight: 0.03809143602848053 + Group: 'Bone.002', Weight: 0.0 +Vertex 1552: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995730519294739 + Group: 'Bone.001', Weight: 0.015036361292004585 + Group: 'Bone.002', Weight: 0.0 +Vertex 1553: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998104572296143 + Group: 'Bone.001', Weight: 0.0007231542258523405 + Group: 'Bone.002', Weight: 0.0 +Vertex 1554: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999999463558197 + Group: 'Bone.001', Weight: 0.0007702138391323388 + Group: 'Bone.002', Weight: 0.0 +Vertex 1555: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999939203262329 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1556: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997019767761 + Group: 'Bone.001', Weight: 0.0012758232187479734 + Group: 'Bone.002', Weight: 0.0 +Vertex 1557: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999616742134094 + Group: 'Bone.001', Weight: 0.001230131834745407 + Group: 'Bone.002', Weight: 0.0 +Vertex 1558: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992345571517944 + Group: 'Bone.001', Weight: 6.348342867568135e-05 + Group: 'Bone.002', Weight: 0.0 +Vertex 1559: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999508261680603 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1560: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999967217445374 + Group: 'Bone.002', Weight: 0.0 +Vertex 1561: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9998676776885986 + Group: 'Bone.002', Weight: 0.0 +Vertex 1562: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9981071352958679 + Group: 'Bone.002', Weight: 0.0 +Vertex 1563: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999998807907104 + Group: 'Bone', Weight: 0.999809741973877 + Group: 'Bone.002', Weight: 0.0 +Vertex 1564: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999994039535522 + Group: 'Bone.002', Weight: 0.0 +Vertex 1565: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999998807907104 + Group: 'Bone', Weight: 0.9999521374702454 + Group: 'Bone.002', Weight: 0.0 +Vertex 1566: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999995827674866 + Group: 'Bone', Weight: 0.9993131160736084 + Group: 'Bone.002', Weight: 0.0 +Vertex 1567: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999994039535522 + Group: 'Bone', Weight: 0.9973954558372498 + Group: 'Bone.002', Weight: 0.0 +Vertex 1568: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999324679374695 + Group: 'Bone.002', Weight: 0.0 +Vertex 1569: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9997574090957642 + Group: 'Bone.002', Weight: 0.0 +Vertex 1570: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999999403953552 + Group: 'Bone', Weight: 0.991919219493866 + Group: 'Bone.002', Weight: 0.0 +Vertex 1571: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999999403953552 + Group: 'Bone', Weight: 0.9805107116699219 + Group: 'Bone.002', Weight: 0.0 +Vertex 1572: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999998807907104 + Group: 'Bone', Weight: 0.9999188184738159 + Group: 'Bone.002', Weight: 0.0 +Vertex 1573: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999996423721313 + Group: 'Bone', Weight: 0.9964917898178101 + Group: 'Bone.002', Weight: 0.0 +Vertex 1574: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9322856664657593 + Group: 'Bone.002', Weight: 0.0 +Vertex 1575: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999998807907104 + Group: 'Bone', Weight: 0.9982247948646545 + Group: 'Bone.002', Weight: 0.0 +Vertex 1576: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9996945858001709 + Group: 'Bone.002', Weight: 0.0 +Vertex 1577: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999999403953552 + Group: 'Bone', Weight: 0.9999822378158569 + Group: 'Bone.002', Weight: 0.0 +Vertex 1578: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999518990516663 + Group: 'Bone.002', Weight: 0.0 +Vertex 1579: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9998289942741394 + Group: 'Bone.002', Weight: 0.0 +Vertex 1580: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.999951183795929 + Group: 'Bone.002', Weight: 0.0 +Vertex 1581: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999999403953552 + Group: 'Bone', Weight: 0.9994824528694153 + Group: 'Bone.002', Weight: 0.0 +Vertex 1582: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9994733333587646 + Group: 'Bone.002', Weight: 0.0 +Vertex 1583: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.991194486618042 + Group: 'Bone.002', Weight: 0.0 +Vertex 1584: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9628441333770752 + Group: 'Bone.002', Weight: 0.0 +Vertex 1585: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999737739562988 + Group: 'Bone.002', Weight: 0.0 +Vertex 1586: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.999998152256012 + Group: 'Bone.002', Weight: 0.0 +Vertex 1587: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999737739562988 + Group: 'Bone.002', Weight: 0.0 +Vertex 1588: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9976998567581177 + Group: 'Bone.002', Weight: 0.0 +Vertex 1589: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999998807907104 + Group: 'Bone', Weight: 0.9972066879272461 + Group: 'Bone.002', Weight: 0.0 +Vertex 1590: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9745925068855286 + Group: 'Bone.002', Weight: 0.0 +Vertex 1591: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999231100082397 + Group: 'Bone.002', Weight: 0.0 +Vertex 1592: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9995813965797424 + Group: 'Bone.002', Weight: 0.0 +Vertex 1593: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999998807907104 + Group: 'Bone', Weight: 0.9903022646903992 + Group: 'Bone.002', Weight: 0.0 +Vertex 1594: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999998807907104 + Group: 'Bone', Weight: 0.9852457046508789 + Group: 'Bone.002', Weight: 0.0 +Vertex 1595: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999998807907104 + Group: 'Bone', Weight: 0.905359148979187 + Group: 'Bone.002', Weight: 0.0 +Vertex 1596: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9975067973136902 + Group: 'Bone.002', Weight: 0.0 +Vertex 1597: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9969339966773987 + Group: 'Bone.002', Weight: 0.0 +Vertex 1598: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9972311854362488 + Group: 'Bone.002', Weight: 0.0 +Vertex 1599: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999997615814209 + Group: 'Bone', Weight: 0.965628981590271 + Group: 'Bone.002', Weight: 0.0 +Vertex 1600: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999998807907104 + Group: 'Bone', Weight: 0.9829468727111816 + Group: 'Bone.002', Weight: 0.0 +Vertex 1601: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9981655478477478 + Group: 'Bone.002', Weight: 0.0 +Vertex 1602: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.8787693381309509 + Group: 'Bone.002', Weight: 0.0 +Vertex 1603: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9895866513252258 + Group: 'Bone.002', Weight: 0.0 +Vertex 1604: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999285936355591 + Group: 'Bone.002', Weight: 0.0 +Vertex 1605: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9999194741249084 + Group: 'Bone.002', Weight: 0.0 +Vertex 1606: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9748886823654175 + Group: 'Bone.002', Weight: 0.0 +Vertex 1607: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9968470335006714 + Group: 'Bone.002', Weight: 0.0 +Vertex 1608: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9981172680854797 + Group: 'Bone.002', Weight: 0.0 +Vertex 1609: +Vertex groups: 3 + Group: 'Bone.001', Weight: 0.9999998211860657 + Group: 'Bone', Weight: 0.9727185964584351 + Group: 'Bone.002', Weight: 0.0 +Vertex 1610: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9998517632484436 + Group: 'Bone.002', Weight: 0.0 +Vertex 1611: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9989882707595825 + Group: 'Bone.002', Weight: 0.0 +Vertex 1612: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9988492131233215 + Group: 'Bone.002', Weight: 0.0 +Vertex 1613: +Vertex groups: 3 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone', Weight: 0.9998902082443237 + Group: 'Bone.002', Weight: 0.0 +Vertex 1614: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999946117401123 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1615: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996654391288757 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1616: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9991617202758789 + Group: 'Bone.002', Weight: 0.0 +Vertex 1617: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994996786117554 + Group: 'Bone.001', Weight: 2.3592023353558034e-05 + Group: 'Bone.002', Weight: 0.0 +Vertex 1618: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999343156814575 + Group: 'Bone.001', Weight: 0.0005995931569486856 + Group: 'Bone.002', Weight: 0.0 +Vertex 1619: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999276399612427 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1620: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999679327011108 + Group: 'Bone.002', Weight: 0.0 +Vertex 1621: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999712705612183 + Group: 'Bone.001', Weight: 0.00034658150980249047 + Group: 'Bone.002', Weight: 0.0 +Vertex 1622: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999918937683105 + Group: 'Bone.002', Weight: 0.0 +Vertex 1623: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999991238117218 + Group: 'Bone.002', Weight: 0.0 +Vertex 1624: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999735355377197 + Group: 'Bone.002', Weight: 0.0 +Vertex 1625: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999774694442749 + Group: 'Bone.002', Weight: 0.0 +Vertex 1626: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999138116836548 + Group: 'Bone.002', Weight: 0.0 +Vertex 1627: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999897301197052 + Group: 'Bone.002', Weight: 0.0 +Vertex 1628: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999682903289795 + Group: 'Bone.002', Weight: 0.0 +Vertex 1629: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999911785125732 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1630: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999995231628418 + Group: 'Bone.002', Weight: 0.0 +Vertex 1631: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999922513961792 + Group: 'Bone.002', Weight: 0.0 +Vertex 1632: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999558925628662 + Group: 'Bone.002', Weight: 0.0 +Vertex 1633: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999110698699951 + Group: 'Bone.002', Weight: 0.0 +Vertex 1634: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999464154243469 + Group: 'Bone.002', Weight: 0.0 +Vertex 1635: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999693036079407 + Group: 'Bone.002', Weight: 0.0 +Vertex 1636: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999996542930603 + Group: 'Bone.002', Weight: 0.0 +Vertex 1637: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999998927116394 + Group: 'Bone.002', Weight: 0.0 +Vertex 1638: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999995231628418 + Group: 'Bone.002', Weight: 0.0 +Vertex 1639: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999983310699463 + Group: 'Bone.002', Weight: 0.0 +Vertex 1640: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999901056289673 + Group: 'Bone.002', Weight: 0.0 +Vertex 1641: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999662637710571 + Group: 'Bone.002', Weight: 0.0 +Vertex 1642: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999938428401947 + Group: 'Bone.002', Weight: 0.0 +Vertex 1643: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999948143959045 + Group: 'Bone.002', Weight: 0.0 +Vertex 1644: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999991059303284 + Group: 'Bone.002', Weight: 0.0 +Vertex 1645: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999986290931702 + Group: 'Bone.002', Weight: 0.0 +Vertex 1646: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999964237213135 + Group: 'Bone.002', Weight: 0.0 +Vertex 1647: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.002', Weight: 0.0 +Vertex 1648: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1649: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1650: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999996423721313 +Vertex 1651: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999988079071045 +Vertex 1652: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999996423721313 + Group: 'Bone.002', Weight: 0.0 +Vertex 1653: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1654: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1655: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.002', Weight: 0.0 +Vertex 1656: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.002', Weight: 0.0 +Vertex 1657: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1658: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999833106994629 +Vertex 1659: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1660: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1661: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1662: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1663: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999992251396179 +Vertex 1664: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999996423721313 +Vertex 1665: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999964237213135 +Vertex 1666: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999946355819702 +Vertex 1667: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999950647354126 +Vertex 1668: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999995231628418 +Vertex 1669: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999860525131226 +Vertex 1670: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999597072601318 +Vertex 1671: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999751448631287 +Vertex 1672: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9998345375061035 +Vertex 1673: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999350309371948 +Vertex 1674: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1675: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1676: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1677: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1678: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1679: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1680: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999010562896729 +Vertex 1681: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999686598777771 +Vertex 1682: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9997634887695312 +Vertex 1683: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1684: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1685: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1686: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1687: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1688: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999964237213135 +Vertex 1689: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9997876882553101 +Vertex 1690: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999588131904602 +Vertex 1691: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9996082782745361 +Vertex 1692: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1693: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1694: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1695: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1696: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1697: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999977171421051 +Vertex 1698: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9998124837875366 +Vertex 1699: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9996072053909302 +Vertex 1700: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999555230140686 +Vertex 1701: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1702: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1703: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1704: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1705: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1706: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1707: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9998476505279541 +Vertex 1708: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995779991149902 +Vertex 1709: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999589204788208 +Vertex 1710: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995498061180115 +Vertex 1711: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995503425598145 +Vertex 1712: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1713: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1714: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1715: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1716: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1717: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1718: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995477199554443 +Vertex 1719: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995482563972473 +Vertex 1720: +Vertex groups: 1 + Group: 'Bone', Weight: 0.999548614025116 +Vertex 1721: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1722: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1723: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1724: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1725: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1726: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1727: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995488524436951 +Vertex 1728: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995486736297607 +Vertex 1729: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1730: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1731: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1732: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1733: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1734: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1735: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995484352111816 +Vertex 1736: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995485544204712 +Vertex 1737: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995486736297607 +Vertex 1738: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1739: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1740: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1741: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995487332344055 +Vertex 1742: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995487928390503 +Vertex 1743: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995487928390503 +Vertex 1744: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995487332344055 +Vertex 1745: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1746: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1747: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1748: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1749: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1750: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1751: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1752: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1753: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1754: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1755: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995487928390503 +Vertex 1756: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995488524436951 +Vertex 1757: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995488524436951 +Vertex 1758: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995488524436951 +Vertex 1759: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995488524436951 +Vertex 1760: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995489716529846 +Vertex 1761: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995489716529846 +Vertex 1762: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1763: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1764: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1765: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1766: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1767: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1768: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1769: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1770: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995488524436951 +Vertex 1771: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995488524436951 +Vertex 1772: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995489120483398 +Vertex 1773: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995489120483398 +Vertex 1774: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995489716529846 +Vertex 1775: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995489716529846 +Vertex 1776: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995490312576294 +Vertex 1777: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1778: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1779: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995489716529846 +Vertex 1780: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995489716529846 +Vertex 1781: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995489120483398 +Vertex 1782: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1783: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995489716529846 +Vertex 1784: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9995489716529846 +Vertex 1785: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1786: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1787: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1788: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1789: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1790: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1791: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1792: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1793: +Vertex groups: 1 + Group: 'Bone', Weight: 1.0 +Vertex 1794: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999350309371948 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1795: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.006388305686414242 +Vertex 1796: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999486207962036 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.028431206941604614 +Vertex 1797: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998859167098999 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.06738430261611938 +Vertex 1798: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999990463256836 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.11470979452133179 +Vertex 1799: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.1531396508216858 +Vertex 1800: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.16533130407333374 +Vertex 1801: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.12073557078838348 +Vertex 1802: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999985694885254 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.05207465961575508 +Vertex 1803: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999979734420776 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.02288632094860077 +Vertex 1804: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999973773956299 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00577557785436511 +Vertex 1805: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999996542930603 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0008446313440799713 +Vertex 1806: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 2.3450065782526508e-05 + Group: 'Bone.002', Weight: 0.001541259465739131 +Vertex 1807: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.05716245621442795 +Vertex 1808: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999853253364563 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.11895321309566498 +Vertex 1809: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999977946281433 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.2408420592546463 +Vertex 1810: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999991059303284 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.22028791904449463 +Vertex 1811: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.35801467299461365 +Vertex 1812: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999984502792358 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.38783228397369385 +Vertex 1813: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999986290931702 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.46148478984832764 +Vertex 1814: +Vertex groups: 3 + Group: 'Bone', Weight: 0.99998939037323 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.1441228985786438 +Vertex 1815: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.037597741931676865 +Vertex 1816: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.005898701958358288 +Vertex 1817: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999996423721313 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0007665019365958869 +Vertex 1818: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999962449073792 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0013963821111246943 +Vertex 1819: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999973773956299 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.016782056540250778 +Vertex 1820: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999976754188538 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.07985939830541611 +Vertex 1821: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999983310699463 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.8635217547416687 +Vertex 1822: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999905824661255 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9922237992286682 +Vertex 1823: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999988675117493 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9990045428276062 +Vertex 1824: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999746680259705 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9985162019729614 +Vertex 1825: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999921917915344 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.999886155128479 +Vertex 1826: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999426007270813 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9999994039535522 +Vertex 1827: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9998903870582581 + Group: 'Bone.002', Weight: 0.9995100498199463 +Vertex 1828: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999690651893616 + Group: 'Bone.002', Weight: 0.999954342842102 +Vertex 1829: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9998563528060913 + Group: 'Bone.002', Weight: 0.9999997615814209 +Vertex 1830: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999994039535522 + Group: 'Bone.002', Weight: 0.9999435544013977 +Vertex 1831: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999978244304657 + Group: 'Bone.002', Weight: 0.9989463686943054 +Vertex 1832: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999873042106628 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.8869510889053345 +Vertex 1833: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999615550041199 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.6390320062637329 +Vertex 1834: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999710321426392 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9807427525520325 +Vertex 1835: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999809265136719 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9896461367607117 +Vertex 1836: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9970856308937073 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.8470706939697266 +Vertex 1837: +Vertex groups: 3 + Group: 'Bone', Weight: 0.998330295085907 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.872748076915741 +Vertex 1838: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999718189239502 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.8675403594970703 +Vertex 1839: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999921321868896 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.6777929663658142 +Vertex 1840: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994208812713623 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9262213706970215 +Vertex 1841: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993071556091309 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.955345094203949 +Vertex 1842: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993442296981812 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9810488224029541 +Vertex 1843: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998335242271423 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9178593754768372 +Vertex 1844: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9978224635124207 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.8826297521591187 +Vertex 1845: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9986671209335327 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9983536601066589 +Vertex 1846: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998566508293152 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9891584515571594 +Vertex 1847: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.8978219032287598 +Vertex 1848: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999995827674866 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9959672689437866 +Vertex 1849: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999945759773254 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9995021224021912 +Vertex 1850: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998903870582581 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9998495578765869 +Vertex 1851: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999836266040802 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9997377395629883 +Vertex 1852: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9998652338981628 + Group: 'Bone.002', Weight: 0.999920666217804 +Vertex 1853: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9998589754104614 + Group: 'Bone.002', Weight: 0.9996082186698914 +Vertex 1854: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.002', Weight: 0.9986549615859985 +Vertex 1855: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999999463558197 + Group: 'Bone.002', Weight: 0.9986310601234436 +Vertex 1856: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999783635139465 + Group: 'Bone.002', Weight: 0.9942620992660522 +Vertex 1857: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9997866749763489 + Group: 'Bone.002', Weight: 0.9796388149261475 +Vertex 1858: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9953807592391968 +Vertex 1859: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9995090961456299 +Vertex 1860: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9904025197029114 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9999672770500183 +Vertex 1861: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9974871873855591 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9434787034988403 +Vertex 1862: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996214509010315 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9032666683197021 +Vertex 1863: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998939037322998 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9988918304443359 +Vertex 1864: +Vertex groups: 3 + Group: 'Bone', Weight: 0.994953989982605 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 1.0 +Vertex 1865: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998836517333984 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9975739121437073 +Vertex 1866: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999560713768005 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9998916387557983 +Vertex 1867: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999982118606567 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9999027848243713 +Vertex 1868: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 1.0 +Vertex 1869: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.9995918273925781 +Vertex 1870: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.002', Weight: 0.9999602437019348 +Vertex 1871: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999789595603943 + Group: 'Bone.002', Weight: 0.9999992251396179 +Vertex 1872: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999370574951172 + Group: 'Bone.002', Weight: 0.9999940991401672 +Vertex 1873: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999243021011353 + Group: 'Bone.002', Weight: 0.999689519405365 +Vertex 1874: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9971356391906738 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9984971284866333 +Vertex 1875: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999912977218628 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9979217648506165 +Vertex 1876: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999023675918579 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9995965361595154 +Vertex 1877: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999896883964539 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9995275139808655 +Vertex 1878: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999791383743286 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9994041323661804 +Vertex 1879: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999925494194031 + Group: 'Bone.002', Weight: 0.999554455280304 +Vertex 1880: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999858140945435 + Group: 'Bone.002', Weight: 0.9994914531707764 +Vertex 1881: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999986886978149 + Group: 'Bone.002', Weight: 0.9994130730628967 +Vertex 1882: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9998757839202881 + Group: 'Bone.002', Weight: 0.9982578158378601 +Vertex 1883: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999980092048645 + Group: 'Bone.002', Weight: 0.9951627850532532 +Vertex 1884: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995895028114319 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9912338256835938 +Vertex 1885: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9964426159858704 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9994772672653198 +Vertex 1886: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9961028099060059 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9990239143371582 +Vertex 1887: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9947658181190491 + Group: 'Bone.002', Weight: 0.9958744049072266 +Vertex 1888: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9964970946311951 + Group: 'Bone.002', Weight: 0.9956170320510864 +Vertex 1889: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9989827871322632 + Group: 'Bone.002', Weight: 0.9980619549751282 +Vertex 1890: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999772846698761 + Group: 'Bone.002', Weight: 0.9394766092300415 +Vertex 1891: +Vertex groups: 2 + Group: 'Bone', Weight: 0.99980628490448 + Group: 'Bone.002', Weight: 0.9519494771957397 +Vertex 1892: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999352097511292 + Group: 'Bone.002', Weight: 0.9423755407333374 +Vertex 1893: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999034583568573 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9705207943916321 +Vertex 1894: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9989432692527771 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9492385387420654 +Vertex 1895: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994691014289856 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9780576825141907 +Vertex 1896: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9942631721496582 +Vertex 1897: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999488592147827 + Group: 'Bone.002', Weight: 0.9871340990066528 +Vertex 1898: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999597668647766 + Group: 'Bone.002', Weight: 0.9732769131660461 +Vertex 1899: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999710917472839 + Group: 'Bone.002', Weight: 0.883385419845581 +Vertex 1900: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9998430609703064 + Group: 'Bone.002', Weight: 0.8556455373764038 +Vertex 1901: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.8506857752799988 +Vertex 1902: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9736492037773132 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9878027439117432 +Vertex 1903: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9564108848571777 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9891857504844666 +Vertex 1904: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9865697622299194 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9853704571723938 +Vertex 1905: +Vertex groups: 3 + Group: 'Bone', Weight: 0.995807945728302 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.948879599571228 +Vertex 1906: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9981412887573242 + Group: 'Bone.002', Weight: 0.9508033990859985 +Vertex 1907: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9991415739059448 + Group: 'Bone.002', Weight: 0.9898527264595032 +Vertex 1908: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9977446794509888 + Group: 'Bone.002', Weight: 0.975899875164032 +Vertex 1909: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9964505434036255 + Group: 'Bone.002', Weight: 0.482464075088501 +Vertex 1910: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9835247993469238 + Group: 'Bone.002', Weight: 0.28138861060142517 +Vertex 1911: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9931638836860657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9982728958129883 +Vertex 1912: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9970219731330872 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9973681569099426 +Vertex 1913: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996355772018433 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.998141348361969 +Vertex 1914: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997116923332214 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9862576723098755 +Vertex 1915: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9990319013595581 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9948384761810303 +Vertex 1916: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9989480972290039 + Group: 'Bone.002', Weight: 0.9997825622558594 +Vertex 1917: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9995691180229187 + Group: 'Bone.002', Weight: 1.0 +Vertex 1918: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999958276748657 + Group: 'Bone.002', Weight: 0.9987171292304993 +Vertex 1919: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999767541885376 + Group: 'Bone.002', Weight: 0.9999936819076538 +Vertex 1920: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9989960789680481 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9993686079978943 +Vertex 1921: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997951984405518 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9997145533561707 +Vertex 1922: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999696016311646 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9998003840446472 +Vertex 1923: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9971497058868408 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9997479319572449 +Vertex 1924: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999944269657135 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9995592832565308 +Vertex 1925: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992294907569885 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9992237687110901 +Vertex 1926: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999836683273315 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9993512630462646 +Vertex 1927: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9965908527374268 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9989026784896851 +Vertex 1928: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999939799308777 + Group: 'Bone.002', Weight: 0.9987413883209229 +Vertex 1929: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9990164041519165 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9999307990074158 +Vertex 1930: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9997278451919556 + Group: 'Bone.002', Weight: 0.9995239973068237 +Vertex 1931: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9997473359107971 + Group: 'Bone.002', Weight: 0.9999392032623291 +Vertex 1932: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9984530210494995 + Group: 'Bone.002', Weight: 0.9832709431648254 +Vertex 1933: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9973025321960449 + Group: 'Bone.002', Weight: 0.9998564720153809 +Vertex 1934: +Vertex groups: 2 + Group: 'Bone', Weight: 0.981654167175293 + Group: 'Bone.002', Weight: 0.9833803176879883 +Vertex 1935: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9998974800109863 + Group: 'Bone.002', Weight: 0.9999994039535522 +Vertex 1936: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9933215975761414 + Group: 'Bone.002', Weight: 0.9999900460243225 +Vertex 1937: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9594931602478027 + Group: 'Bone.002', Weight: 0.973747968673706 +Vertex 1938: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.48270899057388306 +Vertex 1939: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999981164932251 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.1428421586751938 +Vertex 1940: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999604225158691 + Group: 'Bone.001', Weight: 3.882353848894127e-05 + Group: 'Bone.002', Weight: 0.006044866517186165 +Vertex 1941: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.7840983867645264 +Vertex 1942: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.20032550394535065 +Vertex 1943: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999983310699463 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.008826814591884613 +Vertex 1944: +Vertex groups: 3 + Group: 'Bone', Weight: 0.997954249382019 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9364219903945923 +Vertex 1945: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991839528083801 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.7845495343208313 +Vertex 1946: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995955228805542 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.1729481816291809 +Vertex 1947: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9985821843147278 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.008482536301016808 +Vertex 1948: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9721083641052246 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.004403725732117891 +Vertex 1949: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994847178459167 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.11690317839384079 +Vertex 1950: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9971081018447876 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.5743065476417542 +Vertex 1951: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998225569725037 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.7972912788391113 +Vertex 1952: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997257590293884 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9322055578231812 +Vertex 1953: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9902332425117493 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.7715239524841309 +Vertex 1954: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9916038513183594 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.7474018335342407 +Vertex 1955: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9936861395835876 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.8207070231437683 +Vertex 1956: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9810677766799927 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.6500089764595032 +Vertex 1957: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9805320501327515 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.5803081393241882 +Vertex 1958: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9435461163520813 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.000817500171251595 +Vertex 1959: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991185069084167 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.06754474341869354 +Vertex 1960: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9988090395927429 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.3325970768928528 +Vertex 1961: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993317127227783 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.6164698004722595 +Vertex 1962: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9790494441986084 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.5580854415893555 +Vertex 1963: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9542343020439148 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.4018968939781189 +Vertex 1964: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9834465384483337 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.40422186255455017 +Vertex 1965: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993368983268738 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1966: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999985694885254 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.009454889222979546 +Vertex 1967: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996398687362671 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.12515676021575928 +Vertex 1968: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9953406453132629 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.33243975043296814 +Vertex 1969: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9838429689407349 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.3127136528491974 +Vertex 1970: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9463962912559509 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.2642097771167755 +Vertex 1971: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9589027166366577 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.2142004370689392 +Vertex 1972: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999969601631165 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.2483789324760437 +Vertex 1973: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999499917030334 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.4396018981933594 +Vertex 1974: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999518394470215 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.818303108215332 +Vertex 1975: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998456239700317 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.5363742113113403 +Vertex 1976: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998132586479187 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.2882364094257355 +Vertex 1977: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9980257749557495 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.08291606605052948 +Vertex 1978: +Vertex groups: 3 + Group: 'Bone', Weight: 0.99983811378479 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1979: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999380111694336 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1980: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998362064361572 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.01253036130219698 +Vertex 1981: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9987548589706421 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.10254649817943573 +Vertex 1982: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9951872229576111 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.17580242455005646 +Vertex 1983: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9580085873603821 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.1920381337404251 +Vertex 1984: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9767125248908997 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.03326036036014557 +Vertex 1985: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9942250847816467 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0023483482655137777 +Vertex 1986: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999942779541016 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.11027032136917114 +Vertex 1987: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.020775144919753075 +Vertex 1988: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0014667098876088858 +Vertex 1989: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999972581863403 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.05296114832162857 +Vertex 1990: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999123811721802 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0009138852474279702 +Vertex 1991: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999016523361206 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.02293454110622406 +Vertex 1992: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.00764142069965601 +Vertex 1993: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999932587146759 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1994: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9871582388877869 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1995: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9903406500816345 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1996: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999974966049194 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1997: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1998: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 1999: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0010979640064761043 +Vertex 2000: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999969005584717 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.008950628340244293 +Vertex 2001: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999440312385559 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.008386447094380856 +Vertex 2002: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999983310699463 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2003: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2004: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999988675117493 + Group: 'Bone.002', Weight: 0.0 +Vertex 2005: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9998522400856018 + Group: 'Bone.002', Weight: 0.0 +Vertex 2006: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999953508377075 + Group: 'Bone.002', Weight: 0.0 +Vertex 2007: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9997332096099854 + Group: 'Bone.002', Weight: 0.0 +Vertex 2008: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9998152852058411 + Group: 'Bone.002', Weight: 0.0 +Vertex 2009: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997802972793579 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2010: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999360203742981 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2011: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9982626438140869 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2012: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999774158000946 + Group: 'Bone.002', Weight: 0.0 +Vertex 2013: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999545812606812 + Group: 'Bone.002', Weight: 0.0 +Vertex 2014: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2015: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2016: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2017: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2018: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2019: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2020: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2021: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2022: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2023: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999984502792358 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2024: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999990463256836 + Group: 'Bone.002', Weight: 0.0 +Vertex 2025: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999308586120605 + Group: 'Bone.002', Weight: 0.0 +Vertex 2026: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9995181560516357 + Group: 'Bone.002', Weight: 0.0 +Vertex 2027: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999992311000824 + Group: 'Bone.002', Weight: 0.0 +Vertex 2028: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9915220737457275 + Group: 'Bone.002', Weight: 0.0 +Vertex 2029: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9610516428947449 + Group: 'Bone.002', Weight: 0.0 +Vertex 2030: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9552987217903137 + Group: 'Bone.002', Weight: 0.0 +Vertex 2031: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9929835200309753 + Group: 'Bone.002', Weight: 0.0 +Vertex 2032: +Vertex groups: 2 + Group: 'Bone', Weight: 0.994714617729187 + Group: 'Bone.002', Weight: 0.0 +Vertex 2033: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999617338180542 + Group: 'Bone.002', Weight: 0.0 +Vertex 2034: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999873042106628 + Group: 'Bone.002', Weight: 0.0 +Vertex 2035: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999987483024597 + Group: 'Bone.002', Weight: 0.0 +Vertex 2036: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999942183494568 + Group: 'Bone.002', Weight: 0.0 +Vertex 2037: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9957363605499268 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9990218877792358 +Vertex 2038: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9997965693473816 + Group: 'Bone.002', Weight: 0.8991889953613281 +Vertex 2039: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9969920516014099 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9980781078338623 +Vertex 2040: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9986426830291748 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.983638346195221 +Vertex 2041: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999697804450989 + Group: 'Bone.002', Weight: 0.8942246437072754 +Vertex 2042: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995520710945129 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9210452437400818 +Vertex 2043: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997803568840027 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9985999464988708 +Vertex 2044: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9982407093048096 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9744695425033569 +Vertex 2045: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9959995746612549 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.9939014315605164 +Vertex 2046: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9976096153259277 + Group: 'Bone.002', Weight: 0.9999527335166931 +Vertex 2047: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9998857378959656 + Group: 'Bone.002', Weight: 0.9298312067985535 +Vertex 2048: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9935047030448914 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.7167848348617554 +Vertex 2049: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.39961034059524536 +Vertex 2050: +Vertex groups: 2 + Group: 'Bone', Weight: 0.99876469373703 + Group: 'Bone.002', Weight: 0.9979563355445862 +Vertex 2051: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9527466297149658 + Group: 'Bone.002', Weight: 0.0 +Vertex 2052: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9862976670265198 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.15286317467689514 +Vertex 2053: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9997183680534363 + Group: 'Bone.002', Weight: 0.9971240162849426 +Vertex 2054: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994362592697144 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2055: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9881789684295654 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.011375398375093937 +Vertex 2056: +Vertex groups: 2 + Group: 'Bone', Weight: 0.999995231628418 + Group: 'Bone.002', Weight: 0.0 +Vertex 2057: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.003341350005939603 + Group: 'Bone.002', Weight: 0.0 +Vertex 2058: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999970197677612 + Group: 'Bone.001', Weight: 0.010965676978230476 + Group: 'Bone.002', Weight: 0.0 +Vertex 2059: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999246597290039 + Group: 'Bone.001', Weight: 0.019022664055228233 + Group: 'Bone.002', Weight: 0.0 +Vertex 2060: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995524883270264 + Group: 'Bone.001', Weight: 0.022377654910087585 + Group: 'Bone.002', Weight: 0.0 +Vertex 2061: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998619556427002 + Group: 'Bone.001', Weight: 0.018987538293004036 + Group: 'Bone.002', Weight: 0.0 +Vertex 2062: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999985694885254 + Group: 'Bone.001', Weight: 0.011072316206991673 + Group: 'Bone.002', Weight: 0.0 +Vertex 2063: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998807907104 + Group: 'Bone.001', Weight: 0.003420317079871893 + Group: 'Bone.002', Weight: 0.0 +Vertex 2064: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999938011169434 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2065: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999920725822449 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2066: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999938607215881 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2067: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999963641166687 + Group: 'Bone.001', Weight: 0.01927763968706131 + Group: 'Bone.002', Weight: 0.0 +Vertex 2068: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999966025352478 + Group: 'Bone.001', Weight: 0.054516058415174484 + Group: 'Bone.002', Weight: 0.0 +Vertex 2069: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999821186065674 + Group: 'Bone.001', Weight: 0.07539614289999008 + Group: 'Bone.002', Weight: 0.0 +Vertex 2070: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998274445533752 + Group: 'Bone.001', Weight: 0.05158095061779022 + Group: 'Bone.002', Weight: 0.0 +Vertex 2071: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998084306716919 + Group: 'Bone.001', Weight: 0.07055553793907166 + Group: 'Bone.002', Weight: 0.0 +Vertex 2072: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999969601631165 + Group: 'Bone.001', Weight: 0.041463546454906464 + Group: 'Bone.002', Weight: 0.0 +Vertex 2073: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999822974205017 + Group: 'Bone.001', Weight: 0.025003299117088318 + Group: 'Bone.002', Weight: 0.0 +Vertex 2074: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999905228614807 + Group: 'Bone.001', Weight: 5.919741670368239e-05 + Group: 'Bone.002', Weight: 0.0 +Vertex 2075: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999861121177673 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2076: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999971985816956 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2077: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999901056289673 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2078: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999998927116394 + Group: 'Bone.001', Weight: 0.00015912926755845547 + Group: 'Bone.002', Weight: 0.0 +Vertex 2079: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.2854161858558655 + Group: 'Bone.002', Weight: 0.0 +Vertex 2080: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999999463558197 + Group: 'Bone.001', Weight: 0.7579523324966431 + Group: 'Bone.002', Weight: 0.0 +Vertex 2081: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997797608375549 + Group: 'Bone.001', Weight: 0.9937339425086975 + Group: 'Bone.002', Weight: 0.0 +Vertex 2082: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999845623970032 + Group: 'Bone.001', Weight: 0.9996036291122437 + Group: 'Bone.002', Weight: 0.0 +Vertex 2083: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999871253967285 + Group: 'Bone.001', Weight: 0.9997179508209229 + Group: 'Bone.002', Weight: 0.0 +Vertex 2084: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999875426292419 + Group: 'Bone.001', Weight: 0.9996925592422485 + Group: 'Bone.002', Weight: 0.0 +Vertex 2085: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999431371688843 + Group: 'Bone.001', Weight: 0.999857485294342 + Group: 'Bone.002', Weight: 0.0 +Vertex 2086: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991025924682617 + Group: 'Bone.001', Weight: 0.999966025352478 + Group: 'Bone.002', Weight: 0.0 +Vertex 2087: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991214275360107 + Group: 'Bone.001', Weight: 0.9997930526733398 + Group: 'Bone.002', Weight: 0.0 +Vertex 2088: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998077154159546 + Group: 'Bone.001', Weight: 0.9999622702598572 + Group: 'Bone.002', Weight: 0.0 +Vertex 2089: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999071359634399 + Group: 'Bone.001', Weight: 0.9999987483024597 + Group: 'Bone.002', Weight: 0.0 +Vertex 2090: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999998927116394 + Group: 'Bone.001', Weight: 0.30100366473197937 + Group: 'Bone.002', Weight: 0.0 +Vertex 2091: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.3006213903427124 + Group: 'Bone.002', Weight: 0.0 +Vertex 2092: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9990911483764648 + Group: 'Bone.001', Weight: 0.440075159072876 + Group: 'Bone.002', Weight: 0.0 +Vertex 2093: +Vertex groups: 3 + Group: 'Bone', Weight: 0.996711254119873 + Group: 'Bone.001', Weight: 0.5634806752204895 + Group: 'Bone.002', Weight: 0.0 +Vertex 2094: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996531009674072 + Group: 'Bone.001', Weight: 0.4852219820022583 + Group: 'Bone.002', Weight: 0.0 +Vertex 2095: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996982216835022 + Group: 'Bone.001', Weight: 0.606384813785553 + Group: 'Bone.002', Weight: 0.0 +Vertex 2096: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.16217131912708282 + Group: 'Bone.002', Weight: 0.0 +Vertex 2097: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999955892562866 + Group: 'Bone.001', Weight: 0.04210275411605835 + Group: 'Bone.002', Weight: 0.0 +Vertex 2098: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999327659606934 + Group: 'Bone.001', Weight: 0.159021258354187 + Group: 'Bone.002', Weight: 0.0 +Vertex 2099: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999872446060181 + Group: 'Bone.001', Weight: 0.23128098249435425 + Group: 'Bone.002', Weight: 0.0 +Vertex 2100: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.001', Weight: 0.41388121247291565 + Group: 'Bone.002', Weight: 0.0 +Vertex 2101: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996919631958008 + Group: 'Bone.001', Weight: 0.7216596603393555 + Group: 'Bone.002', Weight: 0.0 +Vertex 2102: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998840093612671 + Group: 'Bone.001', Weight: 0.3448794484138489 + Group: 'Bone.002', Weight: 0.0 +Vertex 2103: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9949759244918823 + Group: 'Bone.001', Weight: 0.7718182802200317 + Group: 'Bone.002', Weight: 0.0 +Vertex 2104: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999286532402039 + Group: 'Bone.001', Weight: 0.6900630593299866 + Group: 'Bone.002', Weight: 0.0 +Vertex 2105: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.585756778717041 + Group: 'Bone.002', Weight: 0.0 +Vertex 2106: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.001', Weight: 0.7711023092269897 + Group: 'Bone.002', Weight: 0.0 +Vertex 2107: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998936653137207 + Group: 'Bone.001', Weight: 0.9923306107521057 + Group: 'Bone.002', Weight: 0.0 +Vertex 2108: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999937415122986 + Group: 'Bone.001', Weight: 0.9999387264251709 + Group: 'Bone.002', Weight: 0.0 +Vertex 2109: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999953508377075 + Group: 'Bone.001', Weight: 0.9999945759773254 + Group: 'Bone.002', Weight: 0.0 +Vertex 2110: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999988675117493 + Group: 'Bone.001', Weight: 0.9999917149543762 + Group: 'Bone.002', Weight: 0.0 +Vertex 2111: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999849200248718 + Group: 'Bone.001', Weight: 0.9999904036521912 + Group: 'Bone.002', Weight: 0.0 +Vertex 2112: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995381236076355 + Group: 'Bone.001', Weight: 0.9999991059303284 + Group: 'Bone.002', Weight: 0.0 +Vertex 2113: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999038577079773 + Group: 'Bone.001', Weight: 0.9999966025352478 + Group: 'Bone.002', Weight: 0.0 +Vertex 2114: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999967217445374 + Group: 'Bone.001', Weight: 0.9999865889549255 + Group: 'Bone.002', Weight: 0.0 +Vertex 2115: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.9999334812164307 + Group: 'Bone.002', Weight: 0.0 +Vertex 2116: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999968409538269 + Group: 'Bone.001', Weight: 0.844159722328186 + Group: 'Bone.002', Weight: 0.0 +Vertex 2117: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999923706054688 + Group: 'Bone.001', Weight: 0.8680504560470581 + Group: 'Bone.002', Weight: 0.0 +Vertex 2118: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9982203245162964 + Group: 'Bone.001', Weight: 0.9307466745376587 + Group: 'Bone.002', Weight: 0.0 +Vertex 2119: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997774362564087 + Group: 'Bone.001', Weight: 0.5987235307693481 + Group: 'Bone.002', Weight: 0.0 +Vertex 2120: +Vertex groups: 3 + Group: 'Bone', Weight: 0.997544527053833 + Group: 'Bone.001', Weight: 0.9118102788925171 + Group: 'Bone.002', Weight: 0.0 +Vertex 2121: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.7921143770217896 + Group: 'Bone.002', Weight: 0.0 +Vertex 2122: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998477697372437 + Group: 'Bone.001', Weight: 0.5739322900772095 + Group: 'Bone.002', Weight: 0.0 +Vertex 2123: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9986884593963623 + Group: 'Bone.001', Weight: 0.9626483917236328 + Group: 'Bone.002', Weight: 0.0 +Vertex 2124: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998634457588196 + Group: 'Bone.001', Weight: 0.9926766753196716 + Group: 'Bone.002', Weight: 0.0 +Vertex 2125: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996052980422974 + Group: 'Bone.001', Weight: 0.993528425693512 + Group: 'Bone.002', Weight: 0.0 +Vertex 2126: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999867856502533 + Group: 'Bone.001', Weight: 0.9939530491828918 + Group: 'Bone.002', Weight: 0.0 +Vertex 2127: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999787211418152 + Group: 'Bone.001', Weight: 0.9961552619934082 + Group: 'Bone.002', Weight: 0.0 +Vertex 2128: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9820574522018433 + Group: 'Bone.001', Weight: 0.9996297955513 + Group: 'Bone.002', Weight: 0.0 +Vertex 2129: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9970957040786743 + Group: 'Bone.001', Weight: 0.9999997019767761 + Group: 'Bone.002', Weight: 0.0 +Vertex 2130: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999982714653015 + Group: 'Bone.001', Weight: 0.9999963641166687 + Group: 'Bone.002', Weight: 0.0 +Vertex 2131: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999819397926331 + Group: 'Bone.001', Weight: 0.9999973773956299 + Group: 'Bone.002', Weight: 0.0 +Vertex 2132: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999995231628418 + Group: 'Bone.001', Weight: 0.6406509280204773 + Group: 'Bone.002', Weight: 0.0 +Vertex 2133: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995763897895813 + Group: 'Bone.001', Weight: 0.9735881686210632 + Group: 'Bone.002', Weight: 0.0 +Vertex 2134: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994860291481018 + Group: 'Bone.001', Weight: 0.995903730392456 + Group: 'Bone.002', Weight: 0.0 +Vertex 2135: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9990563988685608 + Group: 'Bone.001', Weight: 0.9965735077857971 + Group: 'Bone.002', Weight: 0.0 +Vertex 2136: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993619322776794 + Group: 'Bone.001', Weight: 0.9976811408996582 + Group: 'Bone.002', Weight: 0.0 +Vertex 2137: +Vertex groups: 3 + Group: 'Bone', Weight: 0.998484194278717 + Group: 'Bone.001', Weight: 0.9980592727661133 + Group: 'Bone.002', Weight: 0.0 +Vertex 2138: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9946538209915161 + Group: 'Bone.001', Weight: 0.9997630715370178 + Group: 'Bone.002', Weight: 0.0 +Vertex 2139: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999377131462097 + Group: 'Bone.001', Weight: 0.9999752044677734 + Group: 'Bone.002', Weight: 0.0 +Vertex 2140: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999142289161682 + Group: 'Bone.001', Weight: 0.9999984502792358 + Group: 'Bone.002', Weight: 0.0 +Vertex 2141: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997621774673462 + Group: 'Bone.001', Weight: 0.9999648928642273 + Group: 'Bone.002', Weight: 0.0 +Vertex 2142: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998117089271545 + Group: 'Bone.001', Weight: 0.9920922517776489 + Group: 'Bone.002', Weight: 0.0 +Vertex 2143: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9986745119094849 + Group: 'Bone.001', Weight: 0.9997669458389282 + Group: 'Bone.002', Weight: 0.0 +Vertex 2144: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991241693496704 + Group: 'Bone.001', Weight: 0.9994928240776062 + Group: 'Bone.002', Weight: 0.0 +Vertex 2145: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994217753410339 + Group: 'Bone.001', Weight: 0.9998338222503662 + Group: 'Bone.002', Weight: 0.0 +Vertex 2146: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999014139175415 + Group: 'Bone.001', Weight: 0.9998592138290405 + Group: 'Bone.002', Weight: 0.0 +Vertex 2147: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999933242797852 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2148: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999833345413208 + Group: 'Bone.001', Weight: 0.9999085068702698 + Group: 'Bone.002', Weight: 0.0 +Vertex 2149: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9989607334136963 + Group: 'Bone.001', Weight: 0.9999370574951172 + Group: 'Bone.002', Weight: 0.0 +Vertex 2150: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9987196326255798 + Group: 'Bone.001', Weight: 0.9998618960380554 + Group: 'Bone.002', Weight: 0.0 +Vertex 2151: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9983052611351013 + Group: 'Bone.001', Weight: 0.9909844398498535 + Group: 'Bone.002', Weight: 0.0 +Vertex 2152: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998565316200256 + Group: 'Bone.001', Weight: 0.9995265007019043 + Group: 'Bone.002', Weight: 0.0 +Vertex 2153: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999952495098114 + Group: 'Bone.001', Weight: 0.9998297691345215 + Group: 'Bone.002', Weight: 0.0 +Vertex 2154: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999784529209137 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2155: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999597072601318 + Group: 'Bone.001', Weight: 0.999944806098938 + Group: 'Bone.002', Weight: 0.0 +Vertex 2156: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999528527259827 + Group: 'Bone.001', Weight: 0.9996910691261292 + Group: 'Bone.002', Weight: 0.0 +Vertex 2157: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9983718395233154 + Group: 'Bone.001', Weight: 0.9996083974838257 + Group: 'Bone.002', Weight: 0.0 +Vertex 2158: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9963964223861694 + Group: 'Bone.001', Weight: 0.9994656443595886 + Group: 'Bone.002', Weight: 0.0 +Vertex 2159: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9945066571235657 + Group: 'Bone.001', Weight: 0.9990218281745911 + Group: 'Bone.002', Weight: 0.0 +Vertex 2160: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999087452888489 + Group: 'Bone.001', Weight: 0.8427486419677734 + Group: 'Bone.002', Weight: 0.0 +Vertex 2161: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9922680854797363 + Group: 'Bone.001', Weight: 0.997051477432251 + Group: 'Bone.002', Weight: 0.0 +Vertex 2162: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9863975048065186 + Group: 'Bone.001', Weight: 0.9997111558914185 + Group: 'Bone.002', Weight: 0.0 +Vertex 2163: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9975100755691528 + Group: 'Bone.001', Weight: 0.9999780058860779 + Group: 'Bone.002', Weight: 0.0 +Vertex 2164: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999458193778992 + Group: 'Bone.001', Weight: 0.9999653100967407 + Group: 'Bone.002', Weight: 0.0 +Vertex 2165: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999992847442627 + Group: 'Bone.001', Weight: 0.9996380805969238 + Group: 'Bone.002', Weight: 0.0 +Vertex 2166: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9996964931488037 + Group: 'Bone.001', Weight: 0.9998598098754883 + Group: 'Bone.002', Weight: 0.0 +Vertex 2167: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9935168027877808 + Group: 'Bone.001', Weight: 0.9998158812522888 + Group: 'Bone.002', Weight: 0.0 +Vertex 2168: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9847957491874695 + Group: 'Bone.001', Weight: 0.9996364116668701 + Group: 'Bone.002', Weight: 0.0 +Vertex 2169: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9990943670272827 + Group: 'Bone.001', Weight: 0.9925578832626343 + Group: 'Bone.002', Weight: 0.0 +Vertex 2170: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9979598522186279 + Group: 'Bone.001', Weight: 0.9997857809066772 + Group: 'Bone.002', Weight: 0.0 +Vertex 2171: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998903870582581 + Group: 'Bone.001', Weight: 0.9999979734420776 + Group: 'Bone.002', Weight: 0.0 +Vertex 2172: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999066591262817 + Group: 'Bone.001', Weight: 0.9999904632568359 + Group: 'Bone.002', Weight: 0.0 +Vertex 2173: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9995393753051758 + Group: 'Bone.001', Weight: 0.9999993443489075 + Group: 'Bone.002', Weight: 0.0 +Vertex 2174: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999976396560669 + Group: 'Bone.001', Weight: 0.9998542666435242 + Group: 'Bone.002', Weight: 0.0 +Vertex 2175: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.9999991059303284 + Group: 'Bone.002', Weight: 0.0 +Vertex 2176: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993078708648682 + Group: 'Bone.001', Weight: 0.9981399774551392 + Group: 'Bone.002', Weight: 0.0 +Vertex 2177: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9968772530555725 + Group: 'Bone.001', Weight: 0.9999641180038452 + Group: 'Bone.002', Weight: 0.0 +Vertex 2178: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999526143074036 + Group: 'Bone.001', Weight: 0.9778891205787659 + Group: 'Bone.002', Weight: 0.0 +Vertex 2179: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999992847442627 + Group: 'Bone.001', Weight: 0.9908843040466309 + Group: 'Bone.002', Weight: 0.0 +Vertex 2180: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999991655349731 + Group: 'Bone.001', Weight: 0.9998986721038818 + Group: 'Bone.002', Weight: 0.0 +Vertex 2181: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999064564704895 + Group: 'Bone.001', Weight: 0.9996558427810669 + Group: 'Bone.002', Weight: 0.0 +Vertex 2182: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999874830245972 + Group: 'Bone.001', Weight: 0.9999948740005493 + Group: 'Bone.002', Weight: 0.0 +Vertex 2183: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993073344230652 + Group: 'Bone.001', Weight: 0.9999542236328125 + Group: 'Bone.002', Weight: 0.0 +Vertex 2184: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999237060546875 + Group: 'Bone.001', Weight: 0.9999859929084778 + Group: 'Bone.002', Weight: 0.0 +Vertex 2185: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9989590644836426 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2186: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999993443489075 + Group: 'Bone.001', Weight: 0.9997055530548096 + Group: 'Bone.002', Weight: 0.0 +Vertex 2187: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9972963929176331 + Group: 'Bone.001', Weight: 0.9999755024909973 + Group: 'Bone.002', Weight: 0.0 +Vertex 2188: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999993443489075 + Group: 'Bone.001', Weight: 0.9995681047439575 + Group: 'Bone.002', Weight: 0.0 +Vertex 2189: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9955657720565796 + Group: 'Bone.001', Weight: 0.9997249841690063 + Group: 'Bone.002', Weight: 0.0 +Vertex 2190: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.9999022483825684 + Group: 'Bone.002', Weight: 0.0 +Vertex 2191: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9959593415260315 + Group: 'Bone.001', Weight: 0.9995798468589783 + Group: 'Bone.002', Weight: 0.0 +Vertex 2192: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999768137931824 + Group: 'Bone.001', Weight: 0.9990952014923096 + Group: 'Bone.002', Weight: 0.0 +Vertex 2193: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9966738820075989 + Group: 'Bone.001', Weight: 0.9997656345367432 + Group: 'Bone.002', Weight: 0.0 +Vertex 2194: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9942675232887268 + Group: 'Bone.001', Weight: 0.9928818941116333 + Group: 'Bone.002', Weight: 0.0 +Vertex 2195: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991828203201294 + Group: 'Bone.001', Weight: 0.9956158399581909 + Group: 'Bone.002', Weight: 0.0 +Vertex 2196: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999493360519409 + Group: 'Bone.001', Weight: 0.13742002844810486 + Group: 'Bone.002', Weight: 0.0 +Vertex 2197: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997584819793701 + Group: 'Bone.001', Weight: 0.02597472071647644 + Group: 'Bone.002', Weight: 0.0 +Vertex 2198: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999227523803711 + Group: 'Bone.001', Weight: 0.18124160170555115 + Group: 'Bone.002', Weight: 0.0 +Vertex 2199: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999516606330872 + Group: 'Bone.001', Weight: 0.021748213097453117 + Group: 'Bone.002', Weight: 0.0 +Vertex 2200: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9859439730644226 + Group: 'Bone.001', Weight: 0.2641175389289856 + Group: 'Bone.002', Weight: 0.0 +Vertex 2201: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9904341697692871 + Group: 'Bone.001', Weight: 0.1427268385887146 + Group: 'Bone.002', Weight: 0.0 +Vertex 2202: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9959167242050171 + Group: 'Bone.001', Weight: 0.011248883791267872 + Group: 'Bone.002', Weight: 0.0 +Vertex 2203: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9737730622291565 + Group: 'Bone.001', Weight: 0.004353127907961607 + Group: 'Bone.002', Weight: 0.0 +Vertex 2204: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9990651607513428 + Group: 'Bone.001', Weight: 0.08212124556303024 + Group: 'Bone.002', Weight: 0.0 +Vertex 2205: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9971362948417664 + Group: 'Bone.001', Weight: 0.1802932769060135 + Group: 'Bone.002', Weight: 0.0 +Vertex 2206: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993647336959839 + Group: 'Bone.001', Weight: 0.32810837030410767 + Group: 'Bone.002', Weight: 0.0 +Vertex 2207: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9989087581634521 + Group: 'Bone.001', Weight: 0.55064457654953 + Group: 'Bone.002', Weight: 0.0 +Vertex 2208: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998867511749268 + Group: 'Bone.001', Weight: 0.4948035180568695 + Group: 'Bone.002', Weight: 0.0 +Vertex 2209: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.23373526334762573 + Group: 'Bone.002', Weight: 0.0 +Vertex 2210: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9984497427940369 + Group: 'Bone.001', Weight: 0.4883286952972412 + Group: 'Bone.002', Weight: 0.0 +Vertex 2211: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994221925735474 + Group: 'Bone.001', Weight: 0.34233558177948 + Group: 'Bone.002', Weight: 0.0 +Vertex 2212: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9828358888626099 + Group: 'Bone.001', Weight: 0.0014274957356974483 + Group: 'Bone.002', Weight: 0.0 +Vertex 2213: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999085664749146 + Group: 'Bone.001', Weight: 0.04150191321969032 + Group: 'Bone.002', Weight: 0.0 +Vertex 2214: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9982243776321411 + Group: 'Bone.001', Weight: 0.12556199729442596 + Group: 'Bone.002', Weight: 0.0 +Vertex 2215: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9983826875686646 + Group: 'Bone.001', Weight: 0.212755024433136 + Group: 'Bone.002', Weight: 0.0 +Vertex 2216: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9979583621025085 + Group: 'Bone.001', Weight: 0.36146727204322815 + Group: 'Bone.002', Weight: 0.0 +Vertex 2217: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999373555183411 + Group: 'Bone.001', Weight: 0.1878213882446289 + Group: 'Bone.002', Weight: 0.0 +Vertex 2218: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9983878135681152 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2219: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9970924258232117 + Group: 'Bone.001', Weight: 0.010595886036753654 + Group: 'Bone.002', Weight: 0.0 +Vertex 2220: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9965974688529968 + Group: 'Bone.001', Weight: 0.07151104509830475 + Group: 'Bone.002', Weight: 0.0 +Vertex 2221: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9953060746192932 + Group: 'Bone.001', Weight: 0.1237918883562088 + Group: 'Bone.002', Weight: 0.0 +Vertex 2222: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9994562268257141 + Group: 'Bone.001', Weight: 0.28489750623703003 + Group: 'Bone.002', Weight: 0.0 +Vertex 2223: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999649524688721 + Group: 'Bone.001', Weight: 0.15761661529541016 + Group: 'Bone.002', Weight: 0.0 +Vertex 2224: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999995827674866 + Group: 'Bone.001', Weight: 0.005330381914973259 + Group: 'Bone.002', Weight: 0.0 +Vertex 2225: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.03418674319982529 + Group: 'Bone.002', Weight: 0.0 +Vertex 2226: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.15232345461845398 + Group: 'Bone.002', Weight: 0.0 +Vertex 2227: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999877214431763 + Group: 'Bone.001', Weight: 0.06297309696674347 + Group: 'Bone.002', Weight: 0.0 +Vertex 2228: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993842840194702 + Group: 'Bone.001', Weight: 0.041705865412950516 + Group: 'Bone.002', Weight: 0.0 +Vertex 2229: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998664855957031 + Group: 'Bone.001', Weight: 0.024766424670815468 + Group: 'Bone.002', Weight: 0.0 +Vertex 2230: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999560117721558 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2231: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999980330467224 + Group: 'Bone.001', Weight: 0.0004273664962965995 + Group: 'Bone.002', Weight: 0.0 +Vertex 2232: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999967634677887 + Group: 'Bone.001', Weight: 0.02283748984336853 + Group: 'Bone.002', Weight: 0.0 +Vertex 2233: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9987081289291382 + Group: 'Bone.001', Weight: 0.07037864625453949 + Group: 'Bone.002', Weight: 0.0 +Vertex 2234: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993051290512085 + Group: 'Bone.001', Weight: 0.22406601905822754 + Group: 'Bone.002', Weight: 0.0 +Vertex 2235: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999378323554993 + Group: 'Bone.001', Weight: 0.06989137083292007 + Group: 'Bone.002', Weight: 0.0 +Vertex 2236: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998478889465332 + Group: 'Bone.001', Weight: 0.0054694474674761295 + Group: 'Bone.002', Weight: 0.0 +Vertex 2237: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.002327902242541313 + Group: 'Bone.002', Weight: 0.0 +Vertex 2238: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999988079071045 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2239: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.0005988904740661383 + Group: 'Bone.002', Weight: 0.0 +Vertex 2240: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993699789047241 + Group: 'Bone.001', Weight: 0.00012528996740002185 + Group: 'Bone.002', Weight: 0.0 +Vertex 2241: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998151659965515 + Group: 'Bone.001', Weight: 0.0003656700428109616 + Group: 'Bone.002', Weight: 0.0 +Vertex 2242: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9960757493972778 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2243: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999710917472839 + Group: 'Bone.001', Weight: 0.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2244: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9992545247077942 + Group: 'Bone.002', Weight: 0.0 +Vertex 2245: +Vertex groups: 3 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.001', Weight: 0.00021111516980454326 + Group: 'Bone.002', Weight: 0.0 +Vertex 2246: +Vertex groups: 3 + Group: 'Bone', Weight: 0.998755931854248 + Group: 'Bone.001', Weight: 0.004530647769570351 + Group: 'Bone.002', Weight: 0.0 +Vertex 2247: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999998211860657 + Group: 'Bone.001', Weight: 0.025903021916747093 + Group: 'Bone.002', Weight: 0.0 +Vertex 2248: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9993605613708496 + Group: 'Bone.002', Weight: 0.0 +Vertex 2249: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2250: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999992251396179 + Group: 'Bone.001', Weight: 0.007192761171609163 + Group: 'Bone.002', Weight: 0.0 +Vertex 2251: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9997787475585938 + Group: 'Bone.002', Weight: 0.0 +Vertex 2252: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2253: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9997061491012573 + Group: 'Bone.002', Weight: 0.0 +Vertex 2254: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999793171882629 + Group: 'Bone.001', Weight: 5.297070856613573e-06 + Group: 'Bone.002', Weight: 0.0 +Vertex 2255: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999491572380066 + Group: 'Bone.002', Weight: 0.0 +Vertex 2256: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999999403953552 + Group: 'Bone.002', Weight: 0.0 +Vertex 2257: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999996423721313 + Group: 'Bone.002', Weight: 0.0 +Vertex 2258: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999992251396179 + Group: 'Bone.002', Weight: 0.0 +Vertex 2259: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2260: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2261: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999966621398926 + Group: 'Bone.002', Weight: 0.0 +Vertex 2262: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999974966049194 + Group: 'Bone.002', Weight: 0.0 +Vertex 2263: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999788999557495 + Group: 'Bone.002', Weight: 0.0 +Vertex 2264: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999613165855408 +Vertex 2265: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999593496322632 + Group: 'Bone.002', Weight: 0.0 +Vertex 2266: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999972581863403 + Group: 'Bone.002', Weight: 0.0 +Vertex 2267: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9992762207984924 +Vertex 2268: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9961393475532532 +Vertex 2269: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9951052069664001 +Vertex 2270: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9987990856170654 +Vertex 2271: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9995508193969727 + Group: 'Bone.002', Weight: 0.0 +Vertex 2272: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999827742576599 + Group: 'Bone.002', Weight: 0.0 +Vertex 2273: +Vertex groups: 2 + Group: 'Bone', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2274: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9999997615814209 + Group: 'Bone.002', Weight: 0.0 +Vertex 2275: +Vertex groups: 2 + Group: 'Bone', Weight: 0.9996273517608643 + Group: 'Bone.002', Weight: 0.0 +Vertex 2276: +Vertex groups: 3 + Group: 'Bone', Weight: 0.999836266040802 + Group: 'Bone.001', Weight: 0.994953989982605 + Group: 'Bone.002', Weight: 0.0 +Vertex 2277: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9968991279602051 + Group: 'Bone.001', Weight: 0.9997939467430115 + Group: 'Bone.002', Weight: 0.0 +Vertex 2278: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998888969421387 + Group: 'Bone.001', Weight: 0.6263926029205322 + Group: 'Bone.002', Weight: 0.0 +Vertex 2279: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992777705192566 + Group: 'Bone.001', Weight: 1.0 + Group: 'Bone.002', Weight: 0.0 +Vertex 2280: +Vertex groups: 3 + Group: 'Bone', Weight: 0.996174693107605 + Group: 'Bone.001', Weight: 0.9995505809783936 + Group: 'Bone.002', Weight: 0.0 +Vertex 2281: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998387098312378 + Group: 'Bone.001', Weight: 0.3464115262031555 + Group: 'Bone.002', Weight: 0.0 +Vertex 2282: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998458623886108 + Group: 'Bone.001', Weight: 0.903130292892456 + Group: 'Bone.002', Weight: 0.0 +Vertex 2283: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9997400641441345 + Group: 'Bone.001', Weight: 0.4590800106525421 + Group: 'Bone.002', Weight: 0.0 +Vertex 2284: +Vertex groups: 3 + Group: 'Bone', Weight: 0.99981689453125 + Group: 'Bone.001', Weight: 0.9998441338539124 + Group: 'Bone.002', Weight: 0.0 +Vertex 2285: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9992637038230896 + Group: 'Bone.001', Weight: 0.9999927282333374 + Group: 'Bone.002', Weight: 0.0 +Vertex 2286: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9991693496704102 + Group: 'Bone.001', Weight: 0.9998635649681091 + Group: 'Bone.002', Weight: 0.0 +Vertex 2287: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999988675117493 + Group: 'Bone.001', Weight: 0.19393473863601685 + Group: 'Bone.002', Weight: 0.0 +Vertex 2288: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999793767929077 + Group: 'Bone.001', Weight: 0.10771939158439636 + Group: 'Bone.002', Weight: 0.0 +Vertex 2289: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9993963837623596 + Group: 'Bone.001', Weight: 0.9999783039093018 + Group: 'Bone.002', Weight: 0.0 +Vertex 2290: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9956780672073364 +Vertex 2291: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999369382858276 + Group: 'Bone.001', Weight: 0.07826747000217438 + Group: 'Bone.002', Weight: 0.0 +Vertex 2292: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9998898506164551 + Group: 'Bone.001', Weight: 0.9999973773956299 + Group: 'Bone.002', Weight: 0.0 +Vertex 2293: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999914765357971 + Group: 'Bone.001', Weight: 0.0008452989859506488 + Group: 'Bone.002', Weight: 0.0 +Vertex 2294: +Vertex groups: 3 + Group: 'Bone', Weight: 0.9999696612358093 + Group: 'Bone.001', Weight: 0.02372419834136963 + Group: 'Bone.002', Weight: 0.0 +Vertex 2295: +Vertex groups: 1 + Group: 'Bone', Weight: 0.9999285340309143 +=== Animation Keyframes === +=== Bone Transforms per Keyframe === +Keyframes: 2 +Frame: 0 + Bone: Bone + Location: + Rotation: + Matrix: + + + + + Bone: Bone.001 + Location: + Rotation: + Matrix: + + + + + Bone: Bone.002 + Location: + Rotation: + Matrix: + + + + +Frame: 60 + Bone: Bone + Location: + Rotation: + Matrix: + + + + + Bone: Bone.001 + Location: + Rotation: + Matrix: + + + + + Bone: Bone.002 + Location: + Rotation: + Matrix: + + + +