diff --git a/Extras/Serialize/BulletFileLoader/autogenerated/bullet.h b/Extras/Serialize/BulletFileLoader/autogenerated/bullet.h index 53d29270b..3245cc0a1 100644 --- a/Extras/Serialize/BulletFileLoader/autogenerated/bullet.h +++ b/Extras/Serialize/BulletFileLoader/autogenerated/bullet.h @@ -40,7 +40,7 @@ #include "bullet_btPositionAndRadius.h" #include "bullet_btMultiSphereShapeData.h" #include "bullet_btIntIndexData.h" -#include "bullet_btShortIntIndexData.h" +#include "bullet_btShortIntIndexTripletData.h" #include "bullet_btMeshPartData.h" #include "bullet_btStridingMeshInterfaceData.h" #include "bullet_btTriangleMeshShapeData.h" diff --git a/Extras/Serialize/BulletFileLoader/autogenerated/bullet_Common.h b/Extras/Serialize/BulletFileLoader/autogenerated/bullet_Common.h index e5ddd6467..c46432573 100644 --- a/Extras/Serialize/BulletFileLoader/autogenerated/bullet_Common.h +++ b/Extras/Serialize/BulletFileLoader/autogenerated/bullet_Common.h @@ -47,7 +47,7 @@ namespace Bullet { class btPositionAndRadius; class btMultiSphereShapeData; class btIntIndexData; - class btShortIntIndexData; + class btShortIntIndexTripletData; class btMeshPartData; class btStridingMeshInterfaceData; class btTriangleMeshShapeData; diff --git a/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btBvhSubtreeInfoData.h b/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btBvhSubtreeInfoData.h index 16bef2267..f3ec8a7ad 100644 --- a/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btBvhSubtreeInfoData.h +++ b/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btBvhSubtreeInfoData.h @@ -33,9 +33,7 @@ namespace Bullet { public: int m_rootNodeIndex; int m_subtreeSize; - short int; short m_quantizedAabbMin[3]; - short int; short m_quantizedAabbMax[3]; }; } diff --git a/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btMeshPartData.h b/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btMeshPartData.h index d98de47f5..99ae13814 100644 --- a/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btMeshPartData.h +++ b/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btMeshPartData.h @@ -34,7 +34,7 @@ namespace Bullet { btVector3FloatData *m_vertices3f; btVector3DoubleData *m_vertices3d; btIntIndexData *m_indices32; - btShortIntIndexData *m_indices16; + btShortIntIndexTripletData *m_3indices16; int m_numTriangles; int m_numVertices; }; diff --git a/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btQuantizedBvhNodeData.h b/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btQuantizedBvhNodeData.h index 02f8d0b22..453081b4c 100644 --- a/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btQuantizedBvhNodeData.h +++ b/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btQuantizedBvhNodeData.h @@ -31,11 +31,9 @@ namespace Bullet { class btQuantizedBvhNodeData { public: - int m_escapeIndexOrTriangleIndex; - short int; short m_quantizedAabbMin[3]; - short int; short m_quantizedAabbMax[3]; + int m_escapeIndexOrTriangleIndex; }; } diff --git a/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btShortIntIndexData.h b/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btShortIntIndexTripletData.h similarity index 80% rename from Extras/Serialize/BulletFileLoader/autogenerated/bullet_btShortIntIndexData.h rename to Extras/Serialize/BulletFileLoader/autogenerated/bullet_btShortIntIndexTripletData.h index 3a7ad2447..3a5d3472a 100644 --- a/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btShortIntIndexData.h +++ b/Extras/Serialize/BulletFileLoader/autogenerated/bullet_btShortIntIndexTripletData.h @@ -17,8 +17,8 @@ * 3. This notice may not be removed or altered from any source distribution. */ // Auto generated from makesdna dna.c -#ifndef __BULLET_BTSHORTINTINDEXDATA__H__ -#define __BULLET_BTSHORTINTINDEXDATA__H__ +#ifndef __BULLET_BTSHORTINTINDEXTRIPLETDATA__H__ +#define __BULLET_BTSHORTINTINDEXTRIPLETDATA__H__ // -------------------------------------------------- // @@ -28,13 +28,13 @@ namespace Bullet { // ---------------------------------------------- // - class btShortIntIndexData + class btShortIntIndexTripletData { public: - short int; - short m_value; + short m_values[3]; + char m_pad[2]; }; } -#endif//__BULLET_BTSHORTINTINDEXDATA__H__ +#endif//__BULLET_BTSHORTINTINDEXTRIPLETDATA__H__ diff --git a/Extras/Serialize/BulletFileLoader/bFile.cpp b/Extras/Serialize/BulletFileLoader/bFile.cpp index 79b349557..ba7f26c6e 100644 --- a/Extras/Serialize/BulletFileLoader/bFile.cpp +++ b/Extras/Serialize/BulletFileLoader/bFile.cpp @@ -23,6 +23,8 @@ subject to the following restrictions: #define MAX_ARRAY_LENGTH 512 using namespace bParse; +//this define will force traversal of structures, to check backward (and forward) compatibility +//#define TEST_BACKWARD_FORWARD_COMPATIBILITY int numallocs = 0; @@ -260,7 +262,11 @@ char* bFile::readStruct(char *head, bChunkInd& dataChunk) +#ifdef TEST_BACKWARD_FORWARD_COMPATIBILITY + if (1) +#else if (!mFileDNA->flagEqual(dataChunk.dna_nr)) +#endif { // Ouch! need to rebuild the struct short *oldStruct,*curStruct; @@ -938,7 +944,11 @@ void bFile::resolvePointers(bool verboseDumpAllBlocks) { const bChunkInd& dataChunk = m_chunks.at(i); +#ifdef TEST_BACKWARD_FORWARD_COMPATIBILITY + if (1) +#else if (!mFileDNA || fileDna->flagEqual(dataChunk.dna_nr)) +#endif { //dataChunk.len short int* oldStruct = fileDna->getStruct(dataChunk.dna_nr); diff --git a/Extras/Serialize/BulletWorldImporter/btBulletWorldImporter.cpp b/Extras/Serialize/BulletWorldImporter/btBulletWorldImporter.cpp index 95f25e85c..20d2cf9ba 100644 --- a/Extras/Serialize/BulletWorldImporter/btBulletWorldImporter.cpp +++ b/Extras/Serialize/BulletWorldImporter/btBulletWorldImporter.cpp @@ -106,8 +106,8 @@ btTriangleIndexVertexArray* btBulletWorldImporter::createMeshInterface(btStridin } else { meshPart.m_indexType = PHY_SHORT; - meshPart.m_triangleIndexStride = 3*sizeof(short int); - meshPart.m_triangleIndexBase = (const unsigned char*)meshData.m_meshPartsPtr[i].m_indices16; + meshPart.m_triangleIndexStride = sizeof(btShortIntIndexTripletData); + meshPart.m_triangleIndexBase = (const unsigned char*)meshData.m_meshPartsPtr[i].m_3indices16; } if (meshData.m_meshPartsPtr[i].m_vertices3f) @@ -344,7 +344,7 @@ btCollisionShape* btBulletWorldImporter::convertCollisionShape( btCollisionShap btOptimizedBvh* bvh = 0; - +#if 1 if (trimesh->m_quantizedFloatBvh) { btOptimizedBvh** bvhPtr = m_bvhMap.find(trimesh->m_quantizedFloatBvh); @@ -369,6 +369,7 @@ btCollisionShape* btBulletWorldImporter::convertCollisionShape( btCollisionShap bvh->deSerializeDouble(*trimesh->m_quantizedDoubleBvh); } } +#endif btBvhTriangleMeshShape* trimeshShape = createBvhTriangleMeshShape(meshInterface,bvh); @@ -481,7 +482,10 @@ bool btBulletWorldImporter::loadFileFromMemory( bParse::btBulletFile* bulletFil btCollisionShapeData* shapeData = (btCollisionShapeData*)bulletFile2->m_collisionShapes[i]; btCollisionShape* shape = convertCollisionShape(shapeData); if (shape) + { + // printf("shapeMap.insert(%x,%x)\n",shapeData,shape); shapeMap.insert(shapeData,shape); + } if (shape&& shapeData->m_name) { diff --git a/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.cpp b/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.cpp index 7e0a2021b..4bba169d3 100644 --- a/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.cpp +++ b/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.cpp @@ -1321,7 +1321,8 @@ const char* btQuantizedBvh::serialize(void* dataBuffer, btSerializer* serializer } quantizedData->m_numQuantizedContiguousNodes = m_quantizedContiguousNodes.size(); - quantizedData->m_quantizedContiguousNodesPtr = (btQuantizedBvhNodeData*) (m_quantizedContiguousNodes.size() ? &m_quantizedContiguousNodes[0] : 0); +// printf("quantizedData->m_numQuantizedContiguousNodes=%d\n",quantizedData->m_numQuantizedContiguousNodes); + quantizedData->m_quantizedContiguousNodesPtr =(btQuantizedBvhNodeData*) (m_quantizedContiguousNodes.size() ? &m_quantizedContiguousNodes[0] : 0); if (quantizedData->m_quantizedContiguousNodesPtr) { int sz = sizeof(btQuantizedBvhNodeData); diff --git a/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h b/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h index d06ec71b3..aa30d43a0 100644 --- a/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h +++ b/src/BulletCollision/BroadphaseCollision/btQuantizedBvh.h @@ -502,8 +502,8 @@ struct btBvhSubtreeInfoData { int m_rootNodeIndex; int m_subtreeSize; - unsigned short int m_quantizedAabbMin[3]; - unsigned short int m_quantizedAabbMax[3]; + unsigned short m_quantizedAabbMin[3]; + unsigned short m_quantizedAabbMax[3]; }; struct btOptimizedBvhNodeFloatData @@ -511,9 +511,9 @@ struct btOptimizedBvhNodeFloatData btVector3FloatData m_aabbMinOrg; btVector3FloatData m_aabbMaxOrg; int m_escapeIndex; - int m_subPart; int m_triangleIndex; + char m_pad[4]; }; struct btOptimizedBvhNodeDoubleData @@ -521,17 +521,17 @@ struct btOptimizedBvhNodeDoubleData btVector3DoubleData m_aabbMinOrg; btVector3DoubleData m_aabbMaxOrg; int m_escapeIndex; - int m_subPart; int m_triangleIndex; + char m_pad[4]; }; struct btQuantizedBvhNodeData { + unsigned short m_quantizedAabbMin[3]; + unsigned short m_quantizedAabbMax[3]; int m_escapeIndexOrTriangleIndex; - unsigned short int m_quantizedAabbMin[3]; - unsigned short int m_quantizedAabbMax[3]; }; struct btQuantizedBvhFloatData @@ -545,10 +545,10 @@ struct btQuantizedBvhFloatData int m_numQuantizedContiguousNodes; btOptimizedBvhNodeFloatData *m_contiguousNodesPtr; btQuantizedBvhNodeData *m_quantizedContiguousNodesPtr; - + btBvhSubtreeInfoData *m_subTreeInfoPtr; int m_traversalMode; int m_numSubtreeHeaders; - btBvhSubtreeInfoData *m_subTreeInfoPtr; + }; struct btQuantizedBvhDoubleData diff --git a/src/BulletCollision/CollisionShapes/btStridingMeshInterface.cpp b/src/BulletCollision/CollisionShapes/btStridingMeshInterface.cpp index e84eaf06f..976eaef1a 100644 --- a/src/BulletCollision/CollisionShapes/btStridingMeshInterface.cpp +++ b/src/BulletCollision/CollisionShapes/btStridingMeshInterface.cpp @@ -221,7 +221,7 @@ const char* btStridingMeshInterface::serialize(void* dataBuffer, btSerializer* s memPtr->m_numTriangles = numtriangles;//indices = 3*numtriangles memPtr->m_numVertices = numverts; memPtr->m_indices32 = 0; - memPtr->m_indices16 = 0; + memPtr->m_3indices16 = 0; memPtr->m_vertices3f = 0; memPtr->m_vertices3d = 0; @@ -249,23 +249,21 @@ const char* btStridingMeshInterface::serialize(void* dataBuffer, btSerializer* s } case PHY_SHORT: { - int numindices = numtriangles*3; - if (numindices) + if (numtriangles) { - btChunk* chunk = serializer->allocate(sizeof(btShortIntIndexData),numindices); - btShortIntIndexData* tmpIndices = (btShortIntIndexData*)chunk->m_oldPtr; - memPtr->m_indices16 = tmpIndices; + btChunk* chunk = serializer->allocate(sizeof(btShortIntIndexTripletData),numtriangles); + btShortIntIndexTripletData* tmpIndices = (btShortIntIndexTripletData*)chunk->m_oldPtr; + memPtr->m_3indices16 = tmpIndices; for (gfxindex=0;gfxindexfinalizeChunk(chunk,"btShortIntIndexData",BT_ARRAY_CODE,(void*)chunk->m_oldPtr); + serializer->finalizeChunk(chunk,"btShortIntIndexTripletData",BT_ARRAY_CODE,(void*)chunk->m_oldPtr); } break; - } default: { diff --git a/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h b/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h index d2cc7f711..cbc1a8d5b 100644 --- a/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h +++ b/src/BulletCollision/CollisionShapes/btStridingMeshInterface.h @@ -104,9 +104,12 @@ struct btIntIndexData int m_value; }; -struct btShortIntIndexData + + +struct btShortIntIndexTripletData { - short int m_value; + short m_values[3]; + char m_pad[2]; }; ///do not change those serialization structures, it requires an updated sBulletDNAstr/sBulletDNAstr64 @@ -115,9 +118,10 @@ struct btMeshPartData btVector3FloatData *m_vertices3f; btVector3DoubleData *m_vertices3d; - btIntIndexData *m_indices32; - btShortIntIndexData *m_indices16; - int m_numTriangles;//length of m_indices = 3*m_numTriangles + btIntIndexData *m_indices32; + btShortIntIndexTripletData *m_3indices16; + + int m_numTriangles;//length of m_indices = m_numTriangles int m_numVertices; }; diff --git a/src/LinearMath/btSerializer.cpp b/src/LinearMath/btSerializer.cpp index dc28b6c14..dc3b1258d 100644 --- a/src/LinearMath/btSerializer.cpp +++ b/src/LinearMath/btSerializer.cpp @@ -1,5 +1,5 @@ unsigned char sBulletDNAstr64[]= { -83,68,78,65,78,65,77,69,-81,0,0,0,109,95,115,105,122,101,0,109, +83,68,78,65,78,65,77,69,-80,0,0,0,109,95,115,105,122,101,0,109, 95,99,97,112,97,99,105,116,121,0,42,109,95,100,97,116,97,0,109,95, 99,111,108,108,105,115,105,111,110,83,104,97,112,101,115,0,109,95,99,111, 108,108,105,115,105,111,110,79,98,106,101,99,116,115,0,109,95,99,111,110, @@ -7,285 +7,285 @@ unsigned char sBulletDNAstr64[]= { 116,0,109,95,102,108,111,97,116,115,91,52,93,0,109,95,101,108,91,51, 93,0,109,95,98,97,115,105,115,0,109,95,111,114,105,103,105,110,0,109, 95,114,111,111,116,78,111,100,101,73,110,100,101,120,0,109,95,115,117,98, -116,114,101,101,83,105,122,101,0,105,110,116,0,109,95,113,117,97,110,116, -105,122,101,100,65,97,98,98,77,105,110,91,51,93,0,109,95,113,117,97, -110,116,105,122,101,100,65,97,98,98,77,97,120,91,51,93,0,109,95,97, -97,98,98,77,105,110,79,114,103,0,109,95,97,97,98,98,77,97,120,79, -114,103,0,109,95,101,115,99,97,112,101,73,110,100,101,120,0,109,95,115, -117,98,80,97,114,116,0,109,95,116,114,105,97,110,103,108,101,73,110,100, -101,120,0,109,95,101,115,99,97,112,101,73,110,100,101,120,79,114,84,114, -105,97,110,103,108,101,73,110,100,101,120,0,109,95,98,118,104,65,97,98, -98,77,105,110,0,109,95,98,118,104,65,97,98,98,77,97,120,0,109,95, -98,118,104,81,117,97,110,116,105,122,97,116,105,111,110,0,109,95,99,117, -114,78,111,100,101,73,110,100,101,120,0,109,95,117,115,101,81,117,97,110, -116,105,122,97,116,105,111,110,0,109,95,110,117,109,67,111,110,116,105,103, -117,111,117,115,76,101,97,102,78,111,100,101,115,0,109,95,110,117,109,81, -117,97,110,116,105,122,101,100,67,111,110,116,105,103,117,111,117,115,78,111, -100,101,115,0,42,109,95,99,111,110,116,105,103,117,111,117,115,78,111,100, -101,115,80,116,114,0,42,109,95,113,117,97,110,116,105,122,101,100,67,111, -110,116,105,103,117,111,117,115,78,111,100,101,115,80,116,114,0,109,95,116, -114,97,118,101,114,115,97,108,77,111,100,101,0,109,95,110,117,109,83,117, -98,116,114,101,101,72,101,97,100,101,114,115,0,42,109,95,115,117,98,84, -114,101,101,73,110,102,111,80,116,114,0,42,109,95,110,97,109,101,0,109, -95,115,104,97,112,101,84,121,112,101,0,109,95,112,97,100,100,105,110,103, -91,52,93,0,109,95,99,111,108,108,105,115,105,111,110,83,104,97,112,101, -68,97,116,97,0,109,95,108,111,99,97,108,83,99,97,108,105,110,103,0, -109,95,112,108,97,110,101,78,111,114,109,97,108,0,109,95,112,108,97,110, -101,67,111,110,115,116,97,110,116,0,109,95,112,97,100,91,52,93,0,109, -95,105,109,112,108,105,99,105,116,83,104,97,112,101,68,105,109,101,110,115, -105,111,110,115,0,109,95,99,111,108,108,105,115,105,111,110,77,97,114,103, -105,110,0,109,95,112,97,100,100,105,110,103,0,109,95,112,111,115,0,109, -95,114,97,100,105,117,115,0,109,95,99,111,110,118,101,120,73,110,116,101, -114,110,97,108,83,104,97,112,101,68,97,116,97,0,42,109,95,108,111,99, -97,108,80,111,115,105,116,105,111,110,65,114,114,97,121,80,116,114,0,109, -95,108,111,99,97,108,80,111,115,105,116,105,111,110,65,114,114,97,121,83, -105,122,101,0,109,95,118,97,108,117,101,0,42,109,95,118,101,114,116,105, -99,101,115,51,102,0,42,109,95,118,101,114,116,105,99,101,115,51,100,0, -42,109,95,105,110,100,105,99,101,115,51,50,0,42,109,95,105,110,100,105, -99,101,115,49,54,0,109,95,110,117,109,84,114,105,97,110,103,108,101,115, -0,109,95,110,117,109,86,101,114,116,105,99,101,115,0,42,109,95,109,101, -115,104,80,97,114,116,115,80,116,114,0,109,95,115,99,97,108,105,110,103, -0,109,95,110,117,109,77,101,115,104,80,97,114,116,115,0,109,95,109,101, -115,104,73,110,116,101,114,102,97,99,101,0,42,109,95,113,117,97,110,116, -105,122,101,100,70,108,111,97,116,66,118,104,0,42,109,95,113,117,97,110, -116,105,122,101,100,68,111,117,98,108,101,66,118,104,0,42,109,95,116,114, -105,97,110,103,108,101,73,110,102,111,77,97,112,0,109,95,112,97,100,51, -91,52,93,0,109,95,116,114,97,110,115,102,111,114,109,0,42,109,95,99, -104,105,108,100,83,104,97,112,101,0,109,95,99,104,105,108,100,83,104,97, -112,101,84,121,112,101,0,109,95,99,104,105,108,100,77,97,114,103,105,110, -0,42,109,95,99,104,105,108,100,83,104,97,112,101,80,116,114,0,109,95, -110,117,109,67,104,105,108,100,83,104,97,112,101,115,0,109,95,117,112,65, -120,105,115,0,109,95,102,108,97,103,115,0,109,95,101,100,103,101,86,48, -86,49,65,110,103,108,101,0,109,95,101,100,103,101,86,49,86,50,65,110, -103,108,101,0,109,95,101,100,103,101,86,50,86,48,65,110,103,108,101,0, -42,109,95,104,97,115,104,84,97,98,108,101,80,116,114,0,42,109,95,110, -101,120,116,80,116,114,0,42,109,95,118,97,108,117,101,65,114,114,97,121, -80,116,114,0,42,109,95,107,101,121,65,114,114,97,121,80,116,114,0,109, -95,99,111,110,118,101,120,69,112,115,105,108,111,110,0,109,95,112,108,97, -110,97,114,69,112,115,105,108,111,110,0,109,95,101,113,117,97,108,86,101, -114,116,101,120,84,104,114,101,115,104,111,108,100,0,109,95,101,100,103,101, -68,105,115,116,97,110,99,101,84,104,114,101,115,104,111,108,100,0,109,95, -122,101,114,111,65,114,101,97,84,104,114,101,115,104,111,108,100,0,109,95, -110,101,120,116,83,105,122,101,0,109,95,104,97,115,104,84,97,98,108,101, -83,105,122,101,0,109,95,110,117,109,86,97,108,117,101,115,0,109,95,110, -117,109,75,101,121,115,0,109,95,103,105,109,112,97,99,116,83,117,98,84, -121,112,101,0,42,109,95,117,110,115,99,97,108,101,100,80,111,105,110,116, -115,70,108,111,97,116,80,116,114,0,42,109,95,117,110,115,99,97,108,101, -100,80,111,105,110,116,115,68,111,117,98,108,101,80,116,114,0,109,95,110, -117,109,85,110,115,99,97,108,101,100,80,111,105,110,116,115,0,109,95,112, -97,100,100,105,110,103,51,91,52,93,0,42,109,95,98,114,111,97,100,112, -104,97,115,101,72,97,110,100,108,101,0,42,109,95,99,111,108,108,105,115, -105,111,110,83,104,97,112,101,0,42,109,95,114,111,111,116,67,111,108,108, -105,115,105,111,110,83,104,97,112,101,0,109,95,119,111,114,108,100,84,114, -97,110,115,102,111,114,109,0,109,95,105,110,116,101,114,112,111,108,97,116, -105,111,110,87,111,114,108,100,84,114,97,110,115,102,111,114,109,0,109,95, -105,110,116,101,114,112,111,108,97,116,105,111,110,76,105,110,101,97,114,86, -101,108,111,99,105,116,121,0,109,95,105,110,116,101,114,112,111,108,97,116, -105,111,110,65,110,103,117,108,97,114,86,101,108,111,99,105,116,121,0,109, -95,97,110,105,115,111,116,114,111,112,105,99,70,114,105,99,116,105,111,110, -0,109,95,99,111,110,116,97,99,116,80,114,111,99,101,115,115,105,110,103, -84,104,114,101,115,104,111,108,100,0,109,95,100,101,97,99,116,105,118,97, -116,105,111,110,84,105,109,101,0,109,95,102,114,105,99,116,105,111,110,0, -109,95,114,101,115,116,105,116,117,116,105,111,110,0,109,95,104,105,116,70, -114,97,99,116,105,111,110,0,109,95,99,99,100,83,119,101,112,116,83,112, -104,101,114,101,82,97,100,105,117,115,0,109,95,99,99,100,77,111,116,105, -111,110,84,104,114,101,115,104,111,108,100,0,109,95,104,97,115,65,110,105, -115,111,116,114,111,112,105,99,70,114,105,99,116,105,111,110,0,109,95,99, -111,108,108,105,115,105,111,110,70,108,97,103,115,0,109,95,105,115,108,97, -110,100,84,97,103,49,0,109,95,99,111,109,112,97,110,105,111,110,73,100, -0,109,95,97,99,116,105,118,97,116,105,111,110,83,116,97,116,101,49,0, -109,95,105,110,116,101,114,110,97,108,84,121,112,101,0,109,95,99,104,101, -99,107,67,111,108,108,105,100,101,87,105,116,104,0,109,95,99,111,108,108, -105,115,105,111,110,79,98,106,101,99,116,68,97,116,97,0,109,95,105,110, -118,73,110,101,114,116,105,97,84,101,110,115,111,114,87,111,114,108,100,0, -109,95,108,105,110,101,97,114,86,101,108,111,99,105,116,121,0,109,95,97, -110,103,117,108,97,114,86,101,108,111,99,105,116,121,0,109,95,97,110,103, -117,108,97,114,70,97,99,116,111,114,0,109,95,108,105,110,101,97,114,70, -97,99,116,111,114,0,109,95,103,114,97,118,105,116,121,0,109,95,103,114, -97,118,105,116,121,95,97,99,99,101,108,101,114,97,116,105,111,110,0,109, -95,105,110,118,73,110,101,114,116,105,97,76,111,99,97,108,0,109,95,116, -111,116,97,108,70,111,114,99,101,0,109,95,116,111,116,97,108,84,111,114, -113,117,101,0,109,95,105,110,118,101,114,115,101,77,97,115,115,0,109,95, -108,105,110,101,97,114,68,97,109,112,105,110,103,0,109,95,97,110,103,117, -108,97,114,68,97,109,112,105,110,103,0,109,95,97,100,100,105,116,105,111, -110,97,108,68,97,109,112,105,110,103,70,97,99,116,111,114,0,109,95,97, -100,100,105,116,105,111,110,97,108,76,105,110,101,97,114,68,97,109,112,105, -110,103,84,104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100, -105,116,105,111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110, -103,84,104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100,105, -116,105,111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110,103, -70,97,99,116,111,114,0,109,95,108,105,110,101,97,114,83,108,101,101,112, -105,110,103,84,104,114,101,115,104,111,108,100,0,109,95,97,110,103,117,108, -97,114,83,108,101,101,112,105,110,103,84,104,114,101,115,104,111,108,100,0, -109,95,97,100,100,105,116,105,111,110,97,108,68,97,109,112,105,110,103,0, -109,95,110,117,109,67,111,110,115,116,114,97,105,110,116,82,111,119,115,0, -110,117,98,0,42,109,95,114,98,65,0,42,109,95,114,98,66,0,109,95, -111,98,106,101,99,116,84,121,112,101,0,109,95,117,115,101,114,67,111,110, -115,116,114,97,105,110,116,84,121,112,101,0,109,95,117,115,101,114,67,111, -110,115,116,114,97,105,110,116,73,100,0,109,95,110,101,101,100,115,70,101, -101,100,98,97,99,107,0,109,95,97,112,112,108,105,101,100,73,109,112,117, -108,115,101,0,109,95,100,98,103,68,114,97,119,83,105,122,101,0,109,95, -100,105,115,97,98,108,101,67,111,108,108,105,115,105,111,110,115,66,101,116, -119,101,101,110,76,105,110,107,101,100,66,111,100,105,101,115,0,109,95,112, -97,100,52,91,52,93,0,109,95,116,121,112,101,67,111,110,115,116,114,97, -105,110,116,68,97,116,97,0,109,95,112,105,118,111,116,73,110,65,0,109, -95,112,105,118,111,116,73,110,66,0,109,95,114,98,65,70,114,97,109,101, -0,109,95,114,98,66,70,114,97,109,101,0,109,95,117,115,101,82,101,102, -101,114,101,110,99,101,70,114,97,109,101,65,0,109,95,97,110,103,117,108, -97,114,79,110,108,121,0,109,95,101,110,97,98,108,101,65,110,103,117,108, -97,114,77,111,116,111,114,0,109,95,109,111,116,111,114,84,97,114,103,101, -116,86,101,108,111,99,105,116,121,0,109,95,109,97,120,77,111,116,111,114, -73,109,112,117,108,115,101,0,109,95,108,111,119,101,114,76,105,109,105,116, -0,109,95,117,112,112,101,114,76,105,109,105,116,0,109,95,108,105,109,105, -116,83,111,102,116,110,101,115,115,0,109,95,98,105,97,115,70,97,99,116, -111,114,0,109,95,114,101,108,97,120,97,116,105,111,110,70,97,99,116,111, -114,0,109,95,115,119,105,110,103,83,112,97,110,49,0,109,95,115,119,105, -110,103,83,112,97,110,50,0,109,95,116,119,105,115,116,83,112,97,110,0, -109,95,100,97,109,112,105,110,103,0,109,95,108,105,110,101,97,114,85,112, -112,101,114,76,105,109,105,116,0,109,95,108,105,110,101,97,114,76,111,119, -101,114,76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,85,112,112, -101,114,76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,76,111,119, -101,114,76,105,109,105,116,0,109,95,117,115,101,76,105,110,101,97,114,82, -101,102,101,114,101,110,99,101,70,114,97,109,101,65,0,109,95,117,115,101, -79,102,102,115,101,116,70,111,114,67,111,110,115,116,114,97,105,110,116,70, -114,97,109,101,0,0,0,0,84,89,80,69,57,0,0,0,99,104,97,114, -0,117,99,104,97,114,0,115,104,111,114,116,0,117,115,104,111,114,116,0, -105,110,116,0,108,111,110,103,0,117,108,111,110,103,0,102,108,111,97,116, -0,100,111,117,98,108,101,0,118,111,105,100,0,80,111,105,110,116,101,114, -65,114,114,97,121,0,98,116,80,104,121,115,105,99,115,83,121,115,116,101, -109,0,76,105,115,116,66,97,115,101,0,98,116,86,101,99,116,111,114,51, -70,108,111,97,116,68,97,116,97,0,98,116,86,101,99,116,111,114,51,68, -111,117,98,108,101,68,97,116,97,0,98,116,77,97,116,114,105,120,51,120, -51,70,108,111,97,116,68,97,116,97,0,98,116,77,97,116,114,105,120,51, -120,51,68,111,117,98,108,101,68,97,116,97,0,98,116,84,114,97,110,115, -102,111,114,109,70,108,111,97,116,68,97,116,97,0,98,116,84,114,97,110, -115,102,111,114,109,68,111,117,98,108,101,68,97,116,97,0,98,116,66,118, -104,83,117,98,116,114,101,101,73,110,102,111,68,97,116,97,0,98,116,79, -112,116,105,109,105,122,101,100,66,118,104,78,111,100,101,70,108,111,97,116, -68,97,116,97,0,98,116,79,112,116,105,109,105,122,101,100,66,118,104,78, -111,100,101,68,111,117,98,108,101,68,97,116,97,0,98,116,81,117,97,110, -116,105,122,101,100,66,118,104,78,111,100,101,68,97,116,97,0,98,116,81, -117,97,110,116,105,122,101,100,66,118,104,70,108,111,97,116,68,97,116,97, -0,98,116,81,117,97,110,116,105,122,101,100,66,118,104,68,111,117,98,108, -101,68,97,116,97,0,98,116,67,111,108,108,105,115,105,111,110,83,104,97, -112,101,68,97,116,97,0,98,116,83,116,97,116,105,99,80,108,97,110,101, -83,104,97,112,101,68,97,116,97,0,98,116,67,111,110,118,101,120,73,110, -116,101,114,110,97,108,83,104,97,112,101,68,97,116,97,0,98,116,80,111, -115,105,116,105,111,110,65,110,100,82,97,100,105,117,115,0,98,116,77,117, -108,116,105,83,112,104,101,114,101,83,104,97,112,101,68,97,116,97,0,98, -116,73,110,116,73,110,100,101,120,68,97,116,97,0,98,116,83,104,111,114, -116,73,110,116,73,110,100,101,120,68,97,116,97,0,98,116,77,101,115,104, -80,97,114,116,68,97,116,97,0,98,116,83,116,114,105,100,105,110,103,77, -101,115,104,73,110,116,101,114,102,97,99,101,68,97,116,97,0,98,116,84, -114,105,97,110,103,108,101,77,101,115,104,83,104,97,112,101,68,97,116,97, -0,98,116,84,114,105,97,110,103,108,101,73,110,102,111,77,97,112,68,97, -116,97,0,98,116,67,111,109,112,111,117,110,100,83,104,97,112,101,67,104, -105,108,100,68,97,116,97,0,98,116,67,111,109,112,111,117,110,100,83,104, -97,112,101,68,97,116,97,0,98,116,67,121,108,105,110,100,101,114,83,104, -97,112,101,68,97,116,97,0,98,116,67,97,112,115,117,108,101,83,104,97, -112,101,68,97,116,97,0,98,116,84,114,105,97,110,103,108,101,73,110,102, -111,68,97,116,97,0,98,116,71,73,109,112,97,99,116,77,101,115,104,83, -104,97,112,101,68,97,116,97,0,98,116,67,111,110,118,101,120,72,117,108, -108,83,104,97,112,101,68,97,116,97,0,98,116,67,111,108,108,105,115,105, -111,110,79,98,106,101,99,116,68,111,117,98,108,101,68,97,116,97,0,98, -116,67,111,108,108,105,115,105,111,110,79,98,106,101,99,116,70,108,111,97, -116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100,121,70,108,111, -97,116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100,121,68,111, -117,98,108,101,68,97,116,97,0,98,116,67,111,110,115,116,114,97,105,110, -116,73,110,102,111,49,0,98,116,84,121,112,101,100,67,111,110,115,116,114, -97,105,110,116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100,121, -68,97,116,97,0,98,116,80,111,105,110,116,50,80,111,105,110,116,67,111, -110,115,116,114,97,105,110,116,70,108,111,97,116,68,97,116,97,0,98,116, -80,111,105,110,116,50,80,111,105,110,116,67,111,110,115,116,114,97,105,110, -116,68,111,117,98,108,101,68,97,116,97,0,98,116,72,105,110,103,101,67, -111,110,115,116,114,97,105,110,116,68,111,117,98,108,101,68,97,116,97,0, -98,116,72,105,110,103,101,67,111,110,115,116,114,97,105,110,116,70,108,111, -97,116,68,97,116,97,0,98,116,67,111,110,101,84,119,105,115,116,67,111, -110,115,116,114,97,105,110,116,68,97,116,97,0,98,116,71,101,110,101,114, -105,99,54,68,111,102,67,111,110,115,116,114,97,105,110,116,68,97,116,97, -0,98,116,83,108,105,100,101,114,67,111,110,115,116,114,97,105,110,116,68, -97,116,97,0,84,76,69,78,1,0,1,0,2,0,2,0,4,0,4,0, -4,0,4,0,8,0,0,0,16,0,48,0,16,0,16,0,32,0,48,0, -96,0,64,0,-128,0,24,0,44,0,76,0,20,0,96,0,-112,0,16,0, -56,0,56,0,20,0,72,0,4,0,4,0,40,0,32,0,80,0,72,0, -80,0,32,0,64,0,64,0,16,0,72,0,80,0,-40,1,8,1,-16,1, --88,3,8,0,56,0,0,0,88,0,120,0,96,1,-32,0,-40,0,0,1, --48,0,0,0,83,84,82,67,46,0,0,0,10,0,3,0,4,0,0,0, -4,0,1,0,9,0,2,0,11,0,3,0,10,0,3,0,10,0,4,0, -10,0,5,0,12,0,2,0,9,0,6,0,9,0,7,0,13,0,1,0, -7,0,8,0,14,0,1,0,8,0,8,0,15,0,1,0,13,0,9,0, -16,0,1,0,14,0,9,0,17,0,2,0,15,0,10,0,13,0,11,0, -18,0,2,0,16,0,10,0,14,0,11,0,19,0,6,0,4,0,12,0, -4,0,13,0,2,0,14,0,2,0,15,0,2,0,14,0,2,0,16,0, -20,0,5,0,13,0,17,0,13,0,18,0,4,0,19,0,4,0,20,0, -4,0,21,0,21,0,5,0,14,0,17,0,14,0,18,0,4,0,19,0, -4,0,20,0,4,0,21,0,22,0,5,0,4,0,22,0,2,0,14,0, -2,0,15,0,2,0,14,0,2,0,16,0,23,0,12,0,13,0,23,0, -13,0,24,0,13,0,25,0,4,0,26,0,4,0,27,0,4,0,28,0, -4,0,29,0,20,0,30,0,22,0,31,0,4,0,32,0,4,0,33,0, -19,0,34,0,24,0,12,0,14,0,23,0,14,0,24,0,14,0,25,0, -4,0,26,0,4,0,27,0,4,0,28,0,4,0,29,0,21,0,30,0, -22,0,31,0,4,0,32,0,4,0,33,0,19,0,34,0,25,0,3,0, -0,0,35,0,4,0,36,0,0,0,37,0,26,0,5,0,25,0,38,0, -13,0,39,0,13,0,40,0,7,0,41,0,0,0,42,0,27,0,5,0, -25,0,38,0,13,0,39,0,13,0,43,0,7,0,44,0,4,0,45,0, -28,0,2,0,13,0,46,0,7,0,47,0,29,0,4,0,27,0,48,0, -28,0,49,0,4,0,50,0,0,0,37,0,30,0,1,0,4,0,51,0, -31,0,2,0,2,0,14,0,2,0,51,0,32,0,6,0,13,0,52,0, -14,0,53,0,30,0,54,0,31,0,55,0,4,0,56,0,4,0,57,0, -33,0,4,0,32,0,58,0,13,0,59,0,4,0,60,0,0,0,37,0, -34,0,7,0,25,0,38,0,33,0,61,0,23,0,62,0,24,0,63,0, -35,0,64,0,7,0,44,0,0,0,65,0,36,0,4,0,17,0,66,0, -25,0,67,0,4,0,68,0,7,0,69,0,37,0,4,0,25,0,38,0, -36,0,70,0,4,0,71,0,7,0,44,0,38,0,3,0,27,0,48,0, -4,0,72,0,0,0,37,0,39,0,3,0,27,0,48,0,4,0,72,0, -0,0,37,0,40,0,4,0,4,0,73,0,7,0,74,0,7,0,75,0, -7,0,76,0,35,0,14,0,4,0,77,0,4,0,78,0,40,0,79,0, -4,0,80,0,7,0,81,0,7,0,82,0,7,0,83,0,7,0,84,0, -7,0,85,0,4,0,86,0,4,0,87,0,4,0,88,0,4,0,89,0, -0,0,37,0,41,0,5,0,25,0,38,0,33,0,61,0,13,0,39,0, -7,0,44,0,4,0,90,0,42,0,5,0,27,0,48,0,13,0,91,0, -14,0,92,0,4,0,93,0,0,0,94,0,43,0,24,0,9,0,95,0, -9,0,96,0,25,0,97,0,0,0,35,0,18,0,98,0,18,0,99,0, -14,0,100,0,14,0,101,0,14,0,102,0,8,0,103,0,8,0,104,0, -8,0,105,0,8,0,106,0,8,0,107,0,8,0,108,0,8,0,109,0, -4,0,110,0,4,0,111,0,4,0,112,0,4,0,113,0,4,0,114,0, -4,0,115,0,4,0,116,0,0,0,37,0,44,0,23,0,9,0,95,0, -9,0,96,0,25,0,97,0,0,0,35,0,17,0,98,0,17,0,99,0, -13,0,100,0,13,0,101,0,13,0,102,0,7,0,103,0,7,0,104,0, -7,0,105,0,7,0,106,0,7,0,107,0,7,0,108,0,7,0,109,0, -4,0,110,0,4,0,111,0,4,0,112,0,4,0,113,0,4,0,114,0, -4,0,115,0,4,0,116,0,45,0,21,0,44,0,117,0,15,0,118,0, -13,0,119,0,13,0,120,0,13,0,121,0,13,0,122,0,13,0,123,0, -13,0,124,0,13,0,125,0,13,0,126,0,13,0,127,0,7,0,-128,0, -7,0,-127,0,7,0,-126,0,7,0,-125,0,7,0,-124,0,7,0,-123,0, -7,0,-122,0,7,0,-121,0,7,0,-120,0,4,0,-119,0,46,0,22,0, -43,0,117,0,16,0,118,0,14,0,119,0,14,0,120,0,14,0,121,0, -14,0,122,0,14,0,123,0,14,0,124,0,14,0,125,0,14,0,126,0, -14,0,127,0,8,0,-128,0,8,0,-127,0,8,0,-126,0,8,0,-125,0, -8,0,-124,0,8,0,-123,0,8,0,-122,0,8,0,-121,0,8,0,-120,0, -4,0,-119,0,0,0,37,0,47,0,2,0,4,0,-118,0,4,0,-117,0, -48,0,11,0,49,0,-116,0,49,0,-115,0,0,0,35,0,4,0,-114,0, -4,0,-113,0,4,0,-112,0,4,0,-111,0,7,0,-110,0,7,0,-109,0, -4,0,-108,0,0,0,-107,0,50,0,3,0,48,0,-106,0,13,0,-105,0, -13,0,-104,0,51,0,3,0,48,0,-106,0,14,0,-105,0,14,0,-104,0, -52,0,13,0,48,0,-106,0,18,0,-103,0,18,0,-102,0,4,0,-101,0, -4,0,-100,0,4,0,-99,0,7,0,-98,0,7,0,-97,0,7,0,-96,0, -7,0,-95,0,7,0,-94,0,7,0,-93,0,7,0,-92,0,53,0,13,0, -48,0,-106,0,17,0,-103,0,17,0,-102,0,4,0,-101,0,4,0,-100,0, -4,0,-99,0,7,0,-98,0,7,0,-97,0,7,0,-96,0,7,0,-95,0, -7,0,-94,0,7,0,-93,0,7,0,-92,0,54,0,11,0,48,0,-106,0, -17,0,-103,0,17,0,-102,0,7,0,-91,0,7,0,-90,0,7,0,-89,0, -7,0,-94,0,7,0,-93,0,7,0,-92,0,7,0,-88,0,0,0,42,0, -55,0,9,0,48,0,-106,0,17,0,-103,0,17,0,-102,0,13,0,-87,0, -13,0,-86,0,13,0,-85,0,13,0,-84,0,4,0,-83,0,4,0,-82,0, -56,0,9,0,48,0,-106,0,17,0,-103,0,17,0,-102,0,7,0,-87,0, -7,0,-86,0,7,0,-85,0,7,0,-84,0,4,0,-83,0,4,0,-82,0, -}; +116,114,101,101,83,105,122,101,0,109,95,113,117,97,110,116,105,122,101,100, +65,97,98,98,77,105,110,91,51,93,0,109,95,113,117,97,110,116,105,122, +101,100,65,97,98,98,77,97,120,91,51,93,0,109,95,97,97,98,98,77, +105,110,79,114,103,0,109,95,97,97,98,98,77,97,120,79,114,103,0,109, +95,101,115,99,97,112,101,73,110,100,101,120,0,109,95,115,117,98,80,97, +114,116,0,109,95,116,114,105,97,110,103,108,101,73,110,100,101,120,0,109, +95,112,97,100,91,52,93,0,109,95,101,115,99,97,112,101,73,110,100,101, +120,79,114,84,114,105,97,110,103,108,101,73,110,100,101,120,0,109,95,98, +118,104,65,97,98,98,77,105,110,0,109,95,98,118,104,65,97,98,98,77, +97,120,0,109,95,98,118,104,81,117,97,110,116,105,122,97,116,105,111,110, +0,109,95,99,117,114,78,111,100,101,73,110,100,101,120,0,109,95,117,115, +101,81,117,97,110,116,105,122,97,116,105,111,110,0,109,95,110,117,109,67, +111,110,116,105,103,117,111,117,115,76,101,97,102,78,111,100,101,115,0,109, +95,110,117,109,81,117,97,110,116,105,122,101,100,67,111,110,116,105,103,117, +111,117,115,78,111,100,101,115,0,42,109,95,99,111,110,116,105,103,117,111, +117,115,78,111,100,101,115,80,116,114,0,42,109,95,113,117,97,110,116,105, +122,101,100,67,111,110,116,105,103,117,111,117,115,78,111,100,101,115,80,116, +114,0,42,109,95,115,117,98,84,114,101,101,73,110,102,111,80,116,114,0, +109,95,116,114,97,118,101,114,115,97,108,77,111,100,101,0,109,95,110,117, +109,83,117,98,116,114,101,101,72,101,97,100,101,114,115,0,42,109,95,110, +97,109,101,0,109,95,115,104,97,112,101,84,121,112,101,0,109,95,112,97, +100,100,105,110,103,91,52,93,0,109,95,99,111,108,108,105,115,105,111,110, +83,104,97,112,101,68,97,116,97,0,109,95,108,111,99,97,108,83,99,97, +108,105,110,103,0,109,95,112,108,97,110,101,78,111,114,109,97,108,0,109, +95,112,108,97,110,101,67,111,110,115,116,97,110,116,0,109,95,105,109,112, +108,105,99,105,116,83,104,97,112,101,68,105,109,101,110,115,105,111,110,115, +0,109,95,99,111,108,108,105,115,105,111,110,77,97,114,103,105,110,0,109, +95,112,97,100,100,105,110,103,0,109,95,112,111,115,0,109,95,114,97,100, +105,117,115,0,109,95,99,111,110,118,101,120,73,110,116,101,114,110,97,108, +83,104,97,112,101,68,97,116,97,0,42,109,95,108,111,99,97,108,80,111, +115,105,116,105,111,110,65,114,114,97,121,80,116,114,0,109,95,108,111,99, +97,108,80,111,115,105,116,105,111,110,65,114,114,97,121,83,105,122,101,0, +109,95,118,97,108,117,101,0,109,95,118,97,108,117,101,115,91,51,93,0, +109,95,112,97,100,91,50,93,0,42,109,95,118,101,114,116,105,99,101,115, +51,102,0,42,109,95,118,101,114,116,105,99,101,115,51,100,0,42,109,95, +105,110,100,105,99,101,115,51,50,0,42,109,95,51,105,110,100,105,99,101, +115,49,54,0,109,95,110,117,109,84,114,105,97,110,103,108,101,115,0,109, +95,110,117,109,86,101,114,116,105,99,101,115,0,42,109,95,109,101,115,104, +80,97,114,116,115,80,116,114,0,109,95,115,99,97,108,105,110,103,0,109, +95,110,117,109,77,101,115,104,80,97,114,116,115,0,109,95,109,101,115,104, +73,110,116,101,114,102,97,99,101,0,42,109,95,113,117,97,110,116,105,122, +101,100,70,108,111,97,116,66,118,104,0,42,109,95,113,117,97,110,116,105, +122,101,100,68,111,117,98,108,101,66,118,104,0,42,109,95,116,114,105,97, +110,103,108,101,73,110,102,111,77,97,112,0,109,95,112,97,100,51,91,52, +93,0,109,95,116,114,97,110,115,102,111,114,109,0,42,109,95,99,104,105, +108,100,83,104,97,112,101,0,109,95,99,104,105,108,100,83,104,97,112,101, +84,121,112,101,0,109,95,99,104,105,108,100,77,97,114,103,105,110,0,42, +109,95,99,104,105,108,100,83,104,97,112,101,80,116,114,0,109,95,110,117, +109,67,104,105,108,100,83,104,97,112,101,115,0,109,95,117,112,65,120,105, +115,0,109,95,102,108,97,103,115,0,109,95,101,100,103,101,86,48,86,49, +65,110,103,108,101,0,109,95,101,100,103,101,86,49,86,50,65,110,103,108, +101,0,109,95,101,100,103,101,86,50,86,48,65,110,103,108,101,0,42,109, +95,104,97,115,104,84,97,98,108,101,80,116,114,0,42,109,95,110,101,120, +116,80,116,114,0,42,109,95,118,97,108,117,101,65,114,114,97,121,80,116, +114,0,42,109,95,107,101,121,65,114,114,97,121,80,116,114,0,109,95,99, +111,110,118,101,120,69,112,115,105,108,111,110,0,109,95,112,108,97,110,97, +114,69,112,115,105,108,111,110,0,109,95,101,113,117,97,108,86,101,114,116, +101,120,84,104,114,101,115,104,111,108,100,0,109,95,101,100,103,101,68,105, +115,116,97,110,99,101,84,104,114,101,115,104,111,108,100,0,109,95,122,101, +114,111,65,114,101,97,84,104,114,101,115,104,111,108,100,0,109,95,110,101, +120,116,83,105,122,101,0,109,95,104,97,115,104,84,97,98,108,101,83,105, +122,101,0,109,95,110,117,109,86,97,108,117,101,115,0,109,95,110,117,109, +75,101,121,115,0,109,95,103,105,109,112,97,99,116,83,117,98,84,121,112, +101,0,42,109,95,117,110,115,99,97,108,101,100,80,111,105,110,116,115,70, +108,111,97,116,80,116,114,0,42,109,95,117,110,115,99,97,108,101,100,80, +111,105,110,116,115,68,111,117,98,108,101,80,116,114,0,109,95,110,117,109, +85,110,115,99,97,108,101,100,80,111,105,110,116,115,0,109,95,112,97,100, +100,105,110,103,51,91,52,93,0,42,109,95,98,114,111,97,100,112,104,97, +115,101,72,97,110,100,108,101,0,42,109,95,99,111,108,108,105,115,105,111, +110,83,104,97,112,101,0,42,109,95,114,111,111,116,67,111,108,108,105,115, +105,111,110,83,104,97,112,101,0,109,95,119,111,114,108,100,84,114,97,110, +115,102,111,114,109,0,109,95,105,110,116,101,114,112,111,108,97,116,105,111, +110,87,111,114,108,100,84,114,97,110,115,102,111,114,109,0,109,95,105,110, +116,101,114,112,111,108,97,116,105,111,110,76,105,110,101,97,114,86,101,108, +111,99,105,116,121,0,109,95,105,110,116,101,114,112,111,108,97,116,105,111, +110,65,110,103,117,108,97,114,86,101,108,111,99,105,116,121,0,109,95,97, +110,105,115,111,116,114,111,112,105,99,70,114,105,99,116,105,111,110,0,109, +95,99,111,110,116,97,99,116,80,114,111,99,101,115,115,105,110,103,84,104, +114,101,115,104,111,108,100,0,109,95,100,101,97,99,116,105,118,97,116,105, +111,110,84,105,109,101,0,109,95,102,114,105,99,116,105,111,110,0,109,95, +114,101,115,116,105,116,117,116,105,111,110,0,109,95,104,105,116,70,114,97, +99,116,105,111,110,0,109,95,99,99,100,83,119,101,112,116,83,112,104,101, +114,101,82,97,100,105,117,115,0,109,95,99,99,100,77,111,116,105,111,110, +84,104,114,101,115,104,111,108,100,0,109,95,104,97,115,65,110,105,115,111, +116,114,111,112,105,99,70,114,105,99,116,105,111,110,0,109,95,99,111,108, +108,105,115,105,111,110,70,108,97,103,115,0,109,95,105,115,108,97,110,100, +84,97,103,49,0,109,95,99,111,109,112,97,110,105,111,110,73,100,0,109, +95,97,99,116,105,118,97,116,105,111,110,83,116,97,116,101,49,0,109,95, +105,110,116,101,114,110,97,108,84,121,112,101,0,109,95,99,104,101,99,107, +67,111,108,108,105,100,101,87,105,116,104,0,109,95,99,111,108,108,105,115, +105,111,110,79,98,106,101,99,116,68,97,116,97,0,109,95,105,110,118,73, +110,101,114,116,105,97,84,101,110,115,111,114,87,111,114,108,100,0,109,95, +108,105,110,101,97,114,86,101,108,111,99,105,116,121,0,109,95,97,110,103, +117,108,97,114,86,101,108,111,99,105,116,121,0,109,95,97,110,103,117,108, +97,114,70,97,99,116,111,114,0,109,95,108,105,110,101,97,114,70,97,99, +116,111,114,0,109,95,103,114,97,118,105,116,121,0,109,95,103,114,97,118, +105,116,121,95,97,99,99,101,108,101,114,97,116,105,111,110,0,109,95,105, +110,118,73,110,101,114,116,105,97,76,111,99,97,108,0,109,95,116,111,116, +97,108,70,111,114,99,101,0,109,95,116,111,116,97,108,84,111,114,113,117, +101,0,109,95,105,110,118,101,114,115,101,77,97,115,115,0,109,95,108,105, +110,101,97,114,68,97,109,112,105,110,103,0,109,95,97,110,103,117,108,97, +114,68,97,109,112,105,110,103,0,109,95,97,100,100,105,116,105,111,110,97, +108,68,97,109,112,105,110,103,70,97,99,116,111,114,0,109,95,97,100,100, +105,116,105,111,110,97,108,76,105,110,101,97,114,68,97,109,112,105,110,103, +84,104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100,105,116, +105,111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110,103,84, +104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100,105,116,105, +111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110,103,70,97, +99,116,111,114,0,109,95,108,105,110,101,97,114,83,108,101,101,112,105,110, +103,84,104,114,101,115,104,111,108,100,0,109,95,97,110,103,117,108,97,114, +83,108,101,101,112,105,110,103,84,104,114,101,115,104,111,108,100,0,109,95, +97,100,100,105,116,105,111,110,97,108,68,97,109,112,105,110,103,0,109,95, +110,117,109,67,111,110,115,116,114,97,105,110,116,82,111,119,115,0,110,117, +98,0,42,109,95,114,98,65,0,42,109,95,114,98,66,0,109,95,111,98, +106,101,99,116,84,121,112,101,0,109,95,117,115,101,114,67,111,110,115,116, +114,97,105,110,116,84,121,112,101,0,109,95,117,115,101,114,67,111,110,115, +116,114,97,105,110,116,73,100,0,109,95,110,101,101,100,115,70,101,101,100, +98,97,99,107,0,109,95,97,112,112,108,105,101,100,73,109,112,117,108,115, +101,0,109,95,100,98,103,68,114,97,119,83,105,122,101,0,109,95,100,105, +115,97,98,108,101,67,111,108,108,105,115,105,111,110,115,66,101,116,119,101, +101,110,76,105,110,107,101,100,66,111,100,105,101,115,0,109,95,112,97,100, +52,91,52,93,0,109,95,116,121,112,101,67,111,110,115,116,114,97,105,110, +116,68,97,116,97,0,109,95,112,105,118,111,116,73,110,65,0,109,95,112, +105,118,111,116,73,110,66,0,109,95,114,98,65,70,114,97,109,101,0,109, +95,114,98,66,70,114,97,109,101,0,109,95,117,115,101,82,101,102,101,114, +101,110,99,101,70,114,97,109,101,65,0,109,95,97,110,103,117,108,97,114, +79,110,108,121,0,109,95,101,110,97,98,108,101,65,110,103,117,108,97,114, +77,111,116,111,114,0,109,95,109,111,116,111,114,84,97,114,103,101,116,86, +101,108,111,99,105,116,121,0,109,95,109,97,120,77,111,116,111,114,73,109, +112,117,108,115,101,0,109,95,108,111,119,101,114,76,105,109,105,116,0,109, +95,117,112,112,101,114,76,105,109,105,116,0,109,95,108,105,109,105,116,83, +111,102,116,110,101,115,115,0,109,95,98,105,97,115,70,97,99,116,111,114, +0,109,95,114,101,108,97,120,97,116,105,111,110,70,97,99,116,111,114,0, +109,95,115,119,105,110,103,83,112,97,110,49,0,109,95,115,119,105,110,103, +83,112,97,110,50,0,109,95,116,119,105,115,116,83,112,97,110,0,109,95, +100,97,109,112,105,110,103,0,109,95,108,105,110,101,97,114,85,112,112,101, +114,76,105,109,105,116,0,109,95,108,105,110,101,97,114,76,111,119,101,114, +76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,85,112,112,101,114, +76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,76,111,119,101,114, +76,105,109,105,116,0,109,95,117,115,101,76,105,110,101,97,114,82,101,102, +101,114,101,110,99,101,70,114,97,109,101,65,0,109,95,117,115,101,79,102, +102,115,101,116,70,111,114,67,111,110,115,116,114,97,105,110,116,70,114,97, +109,101,0,0,84,89,80,69,57,0,0,0,99,104,97,114,0,117,99,104, +97,114,0,115,104,111,114,116,0,117,115,104,111,114,116,0,105,110,116,0, +108,111,110,103,0,117,108,111,110,103,0,102,108,111,97,116,0,100,111,117, +98,108,101,0,118,111,105,100,0,80,111,105,110,116,101,114,65,114,114,97, +121,0,98,116,80,104,121,115,105,99,115,83,121,115,116,101,109,0,76,105, +115,116,66,97,115,101,0,98,116,86,101,99,116,111,114,51,70,108,111,97, +116,68,97,116,97,0,98,116,86,101,99,116,111,114,51,68,111,117,98,108, +101,68,97,116,97,0,98,116,77,97,116,114,105,120,51,120,51,70,108,111, +97,116,68,97,116,97,0,98,116,77,97,116,114,105,120,51,120,51,68,111, +117,98,108,101,68,97,116,97,0,98,116,84,114,97,110,115,102,111,114,109, +70,108,111,97,116,68,97,116,97,0,98,116,84,114,97,110,115,102,111,114, +109,68,111,117,98,108,101,68,97,116,97,0,98,116,66,118,104,83,117,98, +116,114,101,101,73,110,102,111,68,97,116,97,0,98,116,79,112,116,105,109, +105,122,101,100,66,118,104,78,111,100,101,70,108,111,97,116,68,97,116,97, +0,98,116,79,112,116,105,109,105,122,101,100,66,118,104,78,111,100,101,68, +111,117,98,108,101,68,97,116,97,0,98,116,81,117,97,110,116,105,122,101, +100,66,118,104,78,111,100,101,68,97,116,97,0,98,116,81,117,97,110,116, +105,122,101,100,66,118,104,70,108,111,97,116,68,97,116,97,0,98,116,81, +117,97,110,116,105,122,101,100,66,118,104,68,111,117,98,108,101,68,97,116, +97,0,98,116,67,111,108,108,105,115,105,111,110,83,104,97,112,101,68,97, +116,97,0,98,116,83,116,97,116,105,99,80,108,97,110,101,83,104,97,112, +101,68,97,116,97,0,98,116,67,111,110,118,101,120,73,110,116,101,114,110, +97,108,83,104,97,112,101,68,97,116,97,0,98,116,80,111,115,105,116,105, +111,110,65,110,100,82,97,100,105,117,115,0,98,116,77,117,108,116,105,83, +112,104,101,114,101,83,104,97,112,101,68,97,116,97,0,98,116,73,110,116, +73,110,100,101,120,68,97,116,97,0,98,116,83,104,111,114,116,73,110,116, +73,110,100,101,120,84,114,105,112,108,101,116,68,97,116,97,0,98,116,77, +101,115,104,80,97,114,116,68,97,116,97,0,98,116,83,116,114,105,100,105, +110,103,77,101,115,104,73,110,116,101,114,102,97,99,101,68,97,116,97,0, +98,116,84,114,105,97,110,103,108,101,77,101,115,104,83,104,97,112,101,68, +97,116,97,0,98,116,84,114,105,97,110,103,108,101,73,110,102,111,77,97, +112,68,97,116,97,0,98,116,67,111,109,112,111,117,110,100,83,104,97,112, +101,67,104,105,108,100,68,97,116,97,0,98,116,67,111,109,112,111,117,110, +100,83,104,97,112,101,68,97,116,97,0,98,116,67,121,108,105,110,100,101, +114,83,104,97,112,101,68,97,116,97,0,98,116,67,97,112,115,117,108,101, +83,104,97,112,101,68,97,116,97,0,98,116,84,114,105,97,110,103,108,101, +73,110,102,111,68,97,116,97,0,98,116,71,73,109,112,97,99,116,77,101, +115,104,83,104,97,112,101,68,97,116,97,0,98,116,67,111,110,118,101,120, +72,117,108,108,83,104,97,112,101,68,97,116,97,0,98,116,67,111,108,108, +105,115,105,111,110,79,98,106,101,99,116,68,111,117,98,108,101,68,97,116, +97,0,98,116,67,111,108,108,105,115,105,111,110,79,98,106,101,99,116,70, +108,111,97,116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100,121, +70,108,111,97,116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100, +121,68,111,117,98,108,101,68,97,116,97,0,98,116,67,111,110,115,116,114, +97,105,110,116,73,110,102,111,49,0,98,116,84,121,112,101,100,67,111,110, +115,116,114,97,105,110,116,68,97,116,97,0,98,116,82,105,103,105,100,66, +111,100,121,68,97,116,97,0,98,116,80,111,105,110,116,50,80,111,105,110, +116,67,111,110,115,116,114,97,105,110,116,70,108,111,97,116,68,97,116,97, +0,98,116,80,111,105,110,116,50,80,111,105,110,116,67,111,110,115,116,114, +97,105,110,116,68,111,117,98,108,101,68,97,116,97,0,98,116,72,105,110, +103,101,67,111,110,115,116,114,97,105,110,116,68,111,117,98,108,101,68,97, +116,97,0,98,116,72,105,110,103,101,67,111,110,115,116,114,97,105,110,116, +70,108,111,97,116,68,97,116,97,0,98,116,67,111,110,101,84,119,105,115, +116,67,111,110,115,116,114,97,105,110,116,68,97,116,97,0,98,116,71,101, +110,101,114,105,99,54,68,111,102,67,111,110,115,116,114,97,105,110,116,68, +97,116,97,0,98,116,83,108,105,100,101,114,67,111,110,115,116,114,97,105, +110,116,68,97,116,97,0,0,84,76,69,78,1,0,1,0,2,0,2,0, +4,0,4,0,4,0,4,0,8,0,0,0,16,0,48,0,16,0,16,0, +32,0,48,0,96,0,64,0,-128,0,20,0,48,0,80,0,16,0,96,0, +-112,0,16,0,56,0,56,0,20,0,72,0,4,0,8,0,40,0,32,0, +80,0,72,0,80,0,32,0,64,0,64,0,16,0,72,0,80,0,-40,1, +8,1,-16,1,-88,3,8,0,56,0,0,0,88,0,120,0,96,1,-32,0, +-40,0,0,1,-48,0,0,0,83,84,82,67,46,0,0,0,10,0,3,0, +4,0,0,0,4,0,1,0,9,0,2,0,11,0,3,0,10,0,3,0, +10,0,4,0,10,0,5,0,12,0,2,0,9,0,6,0,9,0,7,0, +13,0,1,0,7,0,8,0,14,0,1,0,8,0,8,0,15,0,1,0, +13,0,9,0,16,0,1,0,14,0,9,0,17,0,2,0,15,0,10,0, +13,0,11,0,18,0,2,0,16,0,10,0,14,0,11,0,19,0,4,0, +4,0,12,0,4,0,13,0,2,0,14,0,2,0,15,0,20,0,6,0, +13,0,16,0,13,0,17,0,4,0,18,0,4,0,19,0,4,0,20,0, +0,0,21,0,21,0,6,0,14,0,16,0,14,0,17,0,4,0,18,0, +4,0,19,0,4,0,20,0,0,0,21,0,22,0,3,0,2,0,14,0, +2,0,15,0,4,0,22,0,23,0,12,0,13,0,23,0,13,0,24,0, +13,0,25,0,4,0,26,0,4,0,27,0,4,0,28,0,4,0,29,0, +20,0,30,0,22,0,31,0,19,0,32,0,4,0,33,0,4,0,34,0, +24,0,12,0,14,0,23,0,14,0,24,0,14,0,25,0,4,0,26,0, +4,0,27,0,4,0,28,0,4,0,29,0,21,0,30,0,22,0,31,0, +4,0,33,0,4,0,34,0,19,0,32,0,25,0,3,0,0,0,35,0, +4,0,36,0,0,0,37,0,26,0,5,0,25,0,38,0,13,0,39,0, +13,0,40,0,7,0,41,0,0,0,21,0,27,0,5,0,25,0,38,0, +13,0,39,0,13,0,42,0,7,0,43,0,4,0,44,0,28,0,2,0, +13,0,45,0,7,0,46,0,29,0,4,0,27,0,47,0,28,0,48,0, +4,0,49,0,0,0,37,0,30,0,1,0,4,0,50,0,31,0,2,0, +2,0,51,0,0,0,52,0,32,0,6,0,13,0,53,0,14,0,54,0, +30,0,55,0,31,0,56,0,4,0,57,0,4,0,58,0,33,0,4,0, +32,0,59,0,13,0,60,0,4,0,61,0,0,0,37,0,34,0,7,0, +25,0,38,0,33,0,62,0,23,0,63,0,24,0,64,0,35,0,65,0, +7,0,43,0,0,0,66,0,36,0,4,0,17,0,67,0,25,0,68,0, +4,0,69,0,7,0,70,0,37,0,4,0,25,0,38,0,36,0,71,0, +4,0,72,0,7,0,43,0,38,0,3,0,27,0,47,0,4,0,73,0, +0,0,37,0,39,0,3,0,27,0,47,0,4,0,73,0,0,0,37,0, +40,0,4,0,4,0,74,0,7,0,75,0,7,0,76,0,7,0,77,0, +35,0,14,0,4,0,78,0,4,0,79,0,40,0,80,0,4,0,81,0, +7,0,82,0,7,0,83,0,7,0,84,0,7,0,85,0,7,0,86,0, +4,0,87,0,4,0,88,0,4,0,89,0,4,0,90,0,0,0,37,0, +41,0,5,0,25,0,38,0,33,0,62,0,13,0,39,0,7,0,43,0, +4,0,91,0,42,0,5,0,27,0,47,0,13,0,92,0,14,0,93,0, +4,0,94,0,0,0,95,0,43,0,24,0,9,0,96,0,9,0,97,0, +25,0,98,0,0,0,35,0,18,0,99,0,18,0,100,0,14,0,101,0, +14,0,102,0,14,0,103,0,8,0,104,0,8,0,105,0,8,0,106,0, +8,0,107,0,8,0,108,0,8,0,109,0,8,0,110,0,4,0,111,0, +4,0,112,0,4,0,113,0,4,0,114,0,4,0,115,0,4,0,116,0, +4,0,117,0,0,0,37,0,44,0,23,0,9,0,96,0,9,0,97,0, +25,0,98,0,0,0,35,0,17,0,99,0,17,0,100,0,13,0,101,0, +13,0,102,0,13,0,103,0,7,0,104,0,7,0,105,0,7,0,106,0, +7,0,107,0,7,0,108,0,7,0,109,0,7,0,110,0,4,0,111,0, +4,0,112,0,4,0,113,0,4,0,114,0,4,0,115,0,4,0,116,0, +4,0,117,0,45,0,21,0,44,0,118,0,15,0,119,0,13,0,120,0, +13,0,121,0,13,0,122,0,13,0,123,0,13,0,124,0,13,0,125,0, +13,0,126,0,13,0,127,0,13,0,-128,0,7,0,-127,0,7,0,-126,0, +7,0,-125,0,7,0,-124,0,7,0,-123,0,7,0,-122,0,7,0,-121,0, +7,0,-120,0,7,0,-119,0,4,0,-118,0,46,0,22,0,43,0,118,0, +16,0,119,0,14,0,120,0,14,0,121,0,14,0,122,0,14,0,123,0, +14,0,124,0,14,0,125,0,14,0,126,0,14,0,127,0,14,0,-128,0, +8,0,-127,0,8,0,-126,0,8,0,-125,0,8,0,-124,0,8,0,-123,0, +8,0,-122,0,8,0,-121,0,8,0,-120,0,8,0,-119,0,4,0,-118,0, +0,0,37,0,47,0,2,0,4,0,-117,0,4,0,-116,0,48,0,11,0, +49,0,-115,0,49,0,-114,0,0,0,35,0,4,0,-113,0,4,0,-112,0, +4,0,-111,0,4,0,-110,0,7,0,-109,0,7,0,-108,0,4,0,-107,0, +0,0,-106,0,50,0,3,0,48,0,-105,0,13,0,-104,0,13,0,-103,0, +51,0,3,0,48,0,-105,0,14,0,-104,0,14,0,-103,0,52,0,13,0, +48,0,-105,0,18,0,-102,0,18,0,-101,0,4,0,-100,0,4,0,-99,0, +4,0,-98,0,7,0,-97,0,7,0,-96,0,7,0,-95,0,7,0,-94,0, +7,0,-93,0,7,0,-92,0,7,0,-91,0,53,0,13,0,48,0,-105,0, +17,0,-102,0,17,0,-101,0,4,0,-100,0,4,0,-99,0,4,0,-98,0, +7,0,-97,0,7,0,-96,0,7,0,-95,0,7,0,-94,0,7,0,-93,0, +7,0,-92,0,7,0,-91,0,54,0,11,0,48,0,-105,0,17,0,-102,0, +17,0,-101,0,7,0,-90,0,7,0,-89,0,7,0,-88,0,7,0,-93,0, +7,0,-92,0,7,0,-91,0,7,0,-87,0,0,0,21,0,55,0,9,0, +48,0,-105,0,17,0,-102,0,17,0,-101,0,13,0,-86,0,13,0,-85,0, +13,0,-84,0,13,0,-83,0,4,0,-82,0,4,0,-81,0,56,0,9,0, +48,0,-105,0,17,0,-102,0,17,0,-101,0,7,0,-86,0,7,0,-85,0, +7,0,-84,0,7,0,-83,0,4,0,-82,0,4,0,-81,0,}; int sBulletDNAlen64= sizeof(sBulletDNAstr64); unsigned char sBulletDNAstr[]= { -83,68,78,65,78,65,77,69,-81,0,0,0,109,95,115,105,122,101,0,109, +83,68,78,65,78,65,77,69,-80,0,0,0,109,95,115,105,122,101,0,109, 95,99,97,112,97,99,105,116,121,0,42,109,95,100,97,116,97,0,109,95, 99,111,108,108,105,115,105,111,110,83,104,97,112,101,115,0,109,95,99,111, 108,108,105,115,105,111,110,79,98,106,101,99,116,115,0,109,95,99,111,110, @@ -293,279 +293,279 @@ unsigned char sBulletDNAstr[]= { 116,0,109,95,102,108,111,97,116,115,91,52,93,0,109,95,101,108,91,51, 93,0,109,95,98,97,115,105,115,0,109,95,111,114,105,103,105,110,0,109, 95,114,111,111,116,78,111,100,101,73,110,100,101,120,0,109,95,115,117,98, -116,114,101,101,83,105,122,101,0,105,110,116,0,109,95,113,117,97,110,116, -105,122,101,100,65,97,98,98,77,105,110,91,51,93,0,109,95,113,117,97, -110,116,105,122,101,100,65,97,98,98,77,97,120,91,51,93,0,109,95,97, -97,98,98,77,105,110,79,114,103,0,109,95,97,97,98,98,77,97,120,79, -114,103,0,109,95,101,115,99,97,112,101,73,110,100,101,120,0,109,95,115, -117,98,80,97,114,116,0,109,95,116,114,105,97,110,103,108,101,73,110,100, -101,120,0,109,95,101,115,99,97,112,101,73,110,100,101,120,79,114,84,114, -105,97,110,103,108,101,73,110,100,101,120,0,109,95,98,118,104,65,97,98, -98,77,105,110,0,109,95,98,118,104,65,97,98,98,77,97,120,0,109,95, -98,118,104,81,117,97,110,116,105,122,97,116,105,111,110,0,109,95,99,117, -114,78,111,100,101,73,110,100,101,120,0,109,95,117,115,101,81,117,97,110, -116,105,122,97,116,105,111,110,0,109,95,110,117,109,67,111,110,116,105,103, -117,111,117,115,76,101,97,102,78,111,100,101,115,0,109,95,110,117,109,81, -117,97,110,116,105,122,101,100,67,111,110,116,105,103,117,111,117,115,78,111, -100,101,115,0,42,109,95,99,111,110,116,105,103,117,111,117,115,78,111,100, -101,115,80,116,114,0,42,109,95,113,117,97,110,116,105,122,101,100,67,111, -110,116,105,103,117,111,117,115,78,111,100,101,115,80,116,114,0,109,95,116, -114,97,118,101,114,115,97,108,77,111,100,101,0,109,95,110,117,109,83,117, -98,116,114,101,101,72,101,97,100,101,114,115,0,42,109,95,115,117,98,84, -114,101,101,73,110,102,111,80,116,114,0,42,109,95,110,97,109,101,0,109, -95,115,104,97,112,101,84,121,112,101,0,109,95,112,97,100,100,105,110,103, -91,52,93,0,109,95,99,111,108,108,105,115,105,111,110,83,104,97,112,101, -68,97,116,97,0,109,95,108,111,99,97,108,83,99,97,108,105,110,103,0, -109,95,112,108,97,110,101,78,111,114,109,97,108,0,109,95,112,108,97,110, -101,67,111,110,115,116,97,110,116,0,109,95,112,97,100,91,52,93,0,109, -95,105,109,112,108,105,99,105,116,83,104,97,112,101,68,105,109,101,110,115, -105,111,110,115,0,109,95,99,111,108,108,105,115,105,111,110,77,97,114,103, -105,110,0,109,95,112,97,100,100,105,110,103,0,109,95,112,111,115,0,109, -95,114,97,100,105,117,115,0,109,95,99,111,110,118,101,120,73,110,116,101, -114,110,97,108,83,104,97,112,101,68,97,116,97,0,42,109,95,108,111,99, -97,108,80,111,115,105,116,105,111,110,65,114,114,97,121,80,116,114,0,109, -95,108,111,99,97,108,80,111,115,105,116,105,111,110,65,114,114,97,121,83, -105,122,101,0,109,95,118,97,108,117,101,0,42,109,95,118,101,114,116,105, -99,101,115,51,102,0,42,109,95,118,101,114,116,105,99,101,115,51,100,0, -42,109,95,105,110,100,105,99,101,115,51,50,0,42,109,95,105,110,100,105, -99,101,115,49,54,0,109,95,110,117,109,84,114,105,97,110,103,108,101,115, -0,109,95,110,117,109,86,101,114,116,105,99,101,115,0,42,109,95,109,101, -115,104,80,97,114,116,115,80,116,114,0,109,95,115,99,97,108,105,110,103, -0,109,95,110,117,109,77,101,115,104,80,97,114,116,115,0,109,95,109,101, -115,104,73,110,116,101,114,102,97,99,101,0,42,109,95,113,117,97,110,116, -105,122,101,100,70,108,111,97,116,66,118,104,0,42,109,95,113,117,97,110, -116,105,122,101,100,68,111,117,98,108,101,66,118,104,0,42,109,95,116,114, -105,97,110,103,108,101,73,110,102,111,77,97,112,0,109,95,112,97,100,51, -91,52,93,0,109,95,116,114,97,110,115,102,111,114,109,0,42,109,95,99, -104,105,108,100,83,104,97,112,101,0,109,95,99,104,105,108,100,83,104,97, -112,101,84,121,112,101,0,109,95,99,104,105,108,100,77,97,114,103,105,110, -0,42,109,95,99,104,105,108,100,83,104,97,112,101,80,116,114,0,109,95, -110,117,109,67,104,105,108,100,83,104,97,112,101,115,0,109,95,117,112,65, -120,105,115,0,109,95,102,108,97,103,115,0,109,95,101,100,103,101,86,48, -86,49,65,110,103,108,101,0,109,95,101,100,103,101,86,49,86,50,65,110, -103,108,101,0,109,95,101,100,103,101,86,50,86,48,65,110,103,108,101,0, -42,109,95,104,97,115,104,84,97,98,108,101,80,116,114,0,42,109,95,110, -101,120,116,80,116,114,0,42,109,95,118,97,108,117,101,65,114,114,97,121, -80,116,114,0,42,109,95,107,101,121,65,114,114,97,121,80,116,114,0,109, -95,99,111,110,118,101,120,69,112,115,105,108,111,110,0,109,95,112,108,97, -110,97,114,69,112,115,105,108,111,110,0,109,95,101,113,117,97,108,86,101, -114,116,101,120,84,104,114,101,115,104,111,108,100,0,109,95,101,100,103,101, -68,105,115,116,97,110,99,101,84,104,114,101,115,104,111,108,100,0,109,95, -122,101,114,111,65,114,101,97,84,104,114,101,115,104,111,108,100,0,109,95, -110,101,120,116,83,105,122,101,0,109,95,104,97,115,104,84,97,98,108,101, -83,105,122,101,0,109,95,110,117,109,86,97,108,117,101,115,0,109,95,110, -117,109,75,101,121,115,0,109,95,103,105,109,112,97,99,116,83,117,98,84, -121,112,101,0,42,109,95,117,110,115,99,97,108,101,100,80,111,105,110,116, -115,70,108,111,97,116,80,116,114,0,42,109,95,117,110,115,99,97,108,101, -100,80,111,105,110,116,115,68,111,117,98,108,101,80,116,114,0,109,95,110, -117,109,85,110,115,99,97,108,101,100,80,111,105,110,116,115,0,109,95,112, -97,100,100,105,110,103,51,91,52,93,0,42,109,95,98,114,111,97,100,112, -104,97,115,101,72,97,110,100,108,101,0,42,109,95,99,111,108,108,105,115, -105,111,110,83,104,97,112,101,0,42,109,95,114,111,111,116,67,111,108,108, -105,115,105,111,110,83,104,97,112,101,0,109,95,119,111,114,108,100,84,114, -97,110,115,102,111,114,109,0,109,95,105,110,116,101,114,112,111,108,97,116, -105,111,110,87,111,114,108,100,84,114,97,110,115,102,111,114,109,0,109,95, -105,110,116,101,114,112,111,108,97,116,105,111,110,76,105,110,101,97,114,86, -101,108,111,99,105,116,121,0,109,95,105,110,116,101,114,112,111,108,97,116, -105,111,110,65,110,103,117,108,97,114,86,101,108,111,99,105,116,121,0,109, -95,97,110,105,115,111,116,114,111,112,105,99,70,114,105,99,116,105,111,110, -0,109,95,99,111,110,116,97,99,116,80,114,111,99,101,115,115,105,110,103, -84,104,114,101,115,104,111,108,100,0,109,95,100,101,97,99,116,105,118,97, -116,105,111,110,84,105,109,101,0,109,95,102,114,105,99,116,105,111,110,0, -109,95,114,101,115,116,105,116,117,116,105,111,110,0,109,95,104,105,116,70, -114,97,99,116,105,111,110,0,109,95,99,99,100,83,119,101,112,116,83,112, -104,101,114,101,82,97,100,105,117,115,0,109,95,99,99,100,77,111,116,105, -111,110,84,104,114,101,115,104,111,108,100,0,109,95,104,97,115,65,110,105, -115,111,116,114,111,112,105,99,70,114,105,99,116,105,111,110,0,109,95,99, -111,108,108,105,115,105,111,110,70,108,97,103,115,0,109,95,105,115,108,97, -110,100,84,97,103,49,0,109,95,99,111,109,112,97,110,105,111,110,73,100, -0,109,95,97,99,116,105,118,97,116,105,111,110,83,116,97,116,101,49,0, -109,95,105,110,116,101,114,110,97,108,84,121,112,101,0,109,95,99,104,101, -99,107,67,111,108,108,105,100,101,87,105,116,104,0,109,95,99,111,108,108, -105,115,105,111,110,79,98,106,101,99,116,68,97,116,97,0,109,95,105,110, -118,73,110,101,114,116,105,97,84,101,110,115,111,114,87,111,114,108,100,0, -109,95,108,105,110,101,97,114,86,101,108,111,99,105,116,121,0,109,95,97, -110,103,117,108,97,114,86,101,108,111,99,105,116,121,0,109,95,97,110,103, -117,108,97,114,70,97,99,116,111,114,0,109,95,108,105,110,101,97,114,70, -97,99,116,111,114,0,109,95,103,114,97,118,105,116,121,0,109,95,103,114, -97,118,105,116,121,95,97,99,99,101,108,101,114,97,116,105,111,110,0,109, -95,105,110,118,73,110,101,114,116,105,97,76,111,99,97,108,0,109,95,116, -111,116,97,108,70,111,114,99,101,0,109,95,116,111,116,97,108,84,111,114, -113,117,101,0,109,95,105,110,118,101,114,115,101,77,97,115,115,0,109,95, -108,105,110,101,97,114,68,97,109,112,105,110,103,0,109,95,97,110,103,117, -108,97,114,68,97,109,112,105,110,103,0,109,95,97,100,100,105,116,105,111, -110,97,108,68,97,109,112,105,110,103,70,97,99,116,111,114,0,109,95,97, -100,100,105,116,105,111,110,97,108,76,105,110,101,97,114,68,97,109,112,105, -110,103,84,104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100, -105,116,105,111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110, -103,84,104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100,105, -116,105,111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110,103, -70,97,99,116,111,114,0,109,95,108,105,110,101,97,114,83,108,101,101,112, -105,110,103,84,104,114,101,115,104,111,108,100,0,109,95,97,110,103,117,108, -97,114,83,108,101,101,112,105,110,103,84,104,114,101,115,104,111,108,100,0, -109,95,97,100,100,105,116,105,111,110,97,108,68,97,109,112,105,110,103,0, -109,95,110,117,109,67,111,110,115,116,114,97,105,110,116,82,111,119,115,0, -110,117,98,0,42,109,95,114,98,65,0,42,109,95,114,98,66,0,109,95, -111,98,106,101,99,116,84,121,112,101,0,109,95,117,115,101,114,67,111,110, -115,116,114,97,105,110,116,84,121,112,101,0,109,95,117,115,101,114,67,111, -110,115,116,114,97,105,110,116,73,100,0,109,95,110,101,101,100,115,70,101, -101,100,98,97,99,107,0,109,95,97,112,112,108,105,101,100,73,109,112,117, -108,115,101,0,109,95,100,98,103,68,114,97,119,83,105,122,101,0,109,95, -100,105,115,97,98,108,101,67,111,108,108,105,115,105,111,110,115,66,101,116, -119,101,101,110,76,105,110,107,101,100,66,111,100,105,101,115,0,109,95,112, -97,100,52,91,52,93,0,109,95,116,121,112,101,67,111,110,115,116,114,97, -105,110,116,68,97,116,97,0,109,95,112,105,118,111,116,73,110,65,0,109, -95,112,105,118,111,116,73,110,66,0,109,95,114,98,65,70,114,97,109,101, -0,109,95,114,98,66,70,114,97,109,101,0,109,95,117,115,101,82,101,102, -101,114,101,110,99,101,70,114,97,109,101,65,0,109,95,97,110,103,117,108, -97,114,79,110,108,121,0,109,95,101,110,97,98,108,101,65,110,103,117,108, -97,114,77,111,116,111,114,0,109,95,109,111,116,111,114,84,97,114,103,101, -116,86,101,108,111,99,105,116,121,0,109,95,109,97,120,77,111,116,111,114, -73,109,112,117,108,115,101,0,109,95,108,111,119,101,114,76,105,109,105,116, -0,109,95,117,112,112,101,114,76,105,109,105,116,0,109,95,108,105,109,105, -116,83,111,102,116,110,101,115,115,0,109,95,98,105,97,115,70,97,99,116, -111,114,0,109,95,114,101,108,97,120,97,116,105,111,110,70,97,99,116,111, -114,0,109,95,115,119,105,110,103,83,112,97,110,49,0,109,95,115,119,105, -110,103,83,112,97,110,50,0,109,95,116,119,105,115,116,83,112,97,110,0, -109,95,100,97,109,112,105,110,103,0,109,95,108,105,110,101,97,114,85,112, -112,101,114,76,105,109,105,116,0,109,95,108,105,110,101,97,114,76,111,119, -101,114,76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,85,112,112, -101,114,76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,76,111,119, -101,114,76,105,109,105,116,0,109,95,117,115,101,76,105,110,101,97,114,82, -101,102,101,114,101,110,99,101,70,114,97,109,101,65,0,109,95,117,115,101, -79,102,102,115,101,116,70,111,114,67,111,110,115,116,114,97,105,110,116,70, -114,97,109,101,0,0,0,0,84,89,80,69,57,0,0,0,99,104,97,114, -0,117,99,104,97,114,0,115,104,111,114,116,0,117,115,104,111,114,116,0, -105,110,116,0,108,111,110,103,0,117,108,111,110,103,0,102,108,111,97,116, -0,100,111,117,98,108,101,0,118,111,105,100,0,80,111,105,110,116,101,114, -65,114,114,97,121,0,98,116,80,104,121,115,105,99,115,83,121,115,116,101, -109,0,76,105,115,116,66,97,115,101,0,98,116,86,101,99,116,111,114,51, -70,108,111,97,116,68,97,116,97,0,98,116,86,101,99,116,111,114,51,68, -111,117,98,108,101,68,97,116,97,0,98,116,77,97,116,114,105,120,51,120, -51,70,108,111,97,116,68,97,116,97,0,98,116,77,97,116,114,105,120,51, -120,51,68,111,117,98,108,101,68,97,116,97,0,98,116,84,114,97,110,115, -102,111,114,109,70,108,111,97,116,68,97,116,97,0,98,116,84,114,97,110, -115,102,111,114,109,68,111,117,98,108,101,68,97,116,97,0,98,116,66,118, -104,83,117,98,116,114,101,101,73,110,102,111,68,97,116,97,0,98,116,79, -112,116,105,109,105,122,101,100,66,118,104,78,111,100,101,70,108,111,97,116, -68,97,116,97,0,98,116,79,112,116,105,109,105,122,101,100,66,118,104,78, -111,100,101,68,111,117,98,108,101,68,97,116,97,0,98,116,81,117,97,110, -116,105,122,101,100,66,118,104,78,111,100,101,68,97,116,97,0,98,116,81, -117,97,110,116,105,122,101,100,66,118,104,70,108,111,97,116,68,97,116,97, -0,98,116,81,117,97,110,116,105,122,101,100,66,118,104,68,111,117,98,108, -101,68,97,116,97,0,98,116,67,111,108,108,105,115,105,111,110,83,104,97, -112,101,68,97,116,97,0,98,116,83,116,97,116,105,99,80,108,97,110,101, -83,104,97,112,101,68,97,116,97,0,98,116,67,111,110,118,101,120,73,110, -116,101,114,110,97,108,83,104,97,112,101,68,97,116,97,0,98,116,80,111, -115,105,116,105,111,110,65,110,100,82,97,100,105,117,115,0,98,116,77,117, -108,116,105,83,112,104,101,114,101,83,104,97,112,101,68,97,116,97,0,98, -116,73,110,116,73,110,100,101,120,68,97,116,97,0,98,116,83,104,111,114, -116,73,110,116,73,110,100,101,120,68,97,116,97,0,98,116,77,101,115,104, -80,97,114,116,68,97,116,97,0,98,116,83,116,114,105,100,105,110,103,77, -101,115,104,73,110,116,101,114,102,97,99,101,68,97,116,97,0,98,116,84, -114,105,97,110,103,108,101,77,101,115,104,83,104,97,112,101,68,97,116,97, -0,98,116,84,114,105,97,110,103,108,101,73,110,102,111,77,97,112,68,97, -116,97,0,98,116,67,111,109,112,111,117,110,100,83,104,97,112,101,67,104, -105,108,100,68,97,116,97,0,98,116,67,111,109,112,111,117,110,100,83,104, -97,112,101,68,97,116,97,0,98,116,67,121,108,105,110,100,101,114,83,104, -97,112,101,68,97,116,97,0,98,116,67,97,112,115,117,108,101,83,104,97, -112,101,68,97,116,97,0,98,116,84,114,105,97,110,103,108,101,73,110,102, -111,68,97,116,97,0,98,116,71,73,109,112,97,99,116,77,101,115,104,83, -104,97,112,101,68,97,116,97,0,98,116,67,111,110,118,101,120,72,117,108, -108,83,104,97,112,101,68,97,116,97,0,98,116,67,111,108,108,105,115,105, -111,110,79,98,106,101,99,116,68,111,117,98,108,101,68,97,116,97,0,98, -116,67,111,108,108,105,115,105,111,110,79,98,106,101,99,116,70,108,111,97, -116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100,121,70,108,111, -97,116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100,121,68,111, -117,98,108,101,68,97,116,97,0,98,116,67,111,110,115,116,114,97,105,110, -116,73,110,102,111,49,0,98,116,84,121,112,101,100,67,111,110,115,116,114, -97,105,110,116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100,121, -68,97,116,97,0,98,116,80,111,105,110,116,50,80,111,105,110,116,67,111, -110,115,116,114,97,105,110,116,70,108,111,97,116,68,97,116,97,0,98,116, -80,111,105,110,116,50,80,111,105,110,116,67,111,110,115,116,114,97,105,110, -116,68,111,117,98,108,101,68,97,116,97,0,98,116,72,105,110,103,101,67, -111,110,115,116,114,97,105,110,116,68,111,117,98,108,101,68,97,116,97,0, -98,116,72,105,110,103,101,67,111,110,115,116,114,97,105,110,116,70,108,111, -97,116,68,97,116,97,0,98,116,67,111,110,101,84,119,105,115,116,67,111, -110,115,116,114,97,105,110,116,68,97,116,97,0,98,116,71,101,110,101,114, -105,99,54,68,111,102,67,111,110,115,116,114,97,105,110,116,68,97,116,97, -0,98,116,83,108,105,100,101,114,67,111,110,115,116,114,97,105,110,116,68, -97,116,97,0,84,76,69,78,1,0,1,0,2,0,2,0,4,0,4,0, -4,0,4,0,8,0,0,0,12,0,36,0,8,0,16,0,32,0,48,0, -96,0,64,0,-128,0,24,0,44,0,76,0,20,0,84,0,-124,0,12,0, -52,0,52,0,20,0,64,0,4,0,4,0,24,0,28,0,60,0,56,0, -76,0,24,0,60,0,60,0,16,0,64,0,68,0,-56,1,-8,0,-32,1, --104,3,8,0,44,0,0,0,76,0,108,0,84,1,-44,0,-52,0,-12,0, --60,0,0,0,83,84,82,67,46,0,0,0,10,0,3,0,4,0,0,0, -4,0,1,0,9,0,2,0,11,0,3,0,10,0,3,0,10,0,4,0, -10,0,5,0,12,0,2,0,9,0,6,0,9,0,7,0,13,0,1,0, -7,0,8,0,14,0,1,0,8,0,8,0,15,0,1,0,13,0,9,0, -16,0,1,0,14,0,9,0,17,0,2,0,15,0,10,0,13,0,11,0, -18,0,2,0,16,0,10,0,14,0,11,0,19,0,6,0,4,0,12,0, -4,0,13,0,2,0,14,0,2,0,15,0,2,0,14,0,2,0,16,0, -20,0,5,0,13,0,17,0,13,0,18,0,4,0,19,0,4,0,20,0, -4,0,21,0,21,0,5,0,14,0,17,0,14,0,18,0,4,0,19,0, -4,0,20,0,4,0,21,0,22,0,5,0,4,0,22,0,2,0,14,0, -2,0,15,0,2,0,14,0,2,0,16,0,23,0,12,0,13,0,23,0, -13,0,24,0,13,0,25,0,4,0,26,0,4,0,27,0,4,0,28,0, -4,0,29,0,20,0,30,0,22,0,31,0,4,0,32,0,4,0,33,0, -19,0,34,0,24,0,12,0,14,0,23,0,14,0,24,0,14,0,25,0, -4,0,26,0,4,0,27,0,4,0,28,0,4,0,29,0,21,0,30,0, -22,0,31,0,4,0,32,0,4,0,33,0,19,0,34,0,25,0,3,0, -0,0,35,0,4,0,36,0,0,0,37,0,26,0,5,0,25,0,38,0, -13,0,39,0,13,0,40,0,7,0,41,0,0,0,42,0,27,0,5,0, -25,0,38,0,13,0,39,0,13,0,43,0,7,0,44,0,4,0,45,0, -28,0,2,0,13,0,46,0,7,0,47,0,29,0,4,0,27,0,48,0, -28,0,49,0,4,0,50,0,0,0,37,0,30,0,1,0,4,0,51,0, -31,0,2,0,2,0,14,0,2,0,51,0,32,0,6,0,13,0,52,0, -14,0,53,0,30,0,54,0,31,0,55,0,4,0,56,0,4,0,57,0, -33,0,4,0,32,0,58,0,13,0,59,0,4,0,60,0,0,0,37,0, -34,0,7,0,25,0,38,0,33,0,61,0,23,0,62,0,24,0,63,0, -35,0,64,0,7,0,44,0,0,0,65,0,36,0,4,0,17,0,66,0, -25,0,67,0,4,0,68,0,7,0,69,0,37,0,4,0,25,0,38,0, -36,0,70,0,4,0,71,0,7,0,44,0,38,0,3,0,27,0,48,0, -4,0,72,0,0,0,37,0,39,0,3,0,27,0,48,0,4,0,72,0, -0,0,37,0,40,0,4,0,4,0,73,0,7,0,74,0,7,0,75,0, -7,0,76,0,35,0,14,0,4,0,77,0,4,0,78,0,40,0,79,0, -4,0,80,0,7,0,81,0,7,0,82,0,7,0,83,0,7,0,84,0, -7,0,85,0,4,0,86,0,4,0,87,0,4,0,88,0,4,0,89,0, -0,0,37,0,41,0,5,0,25,0,38,0,33,0,61,0,13,0,39,0, -7,0,44,0,4,0,90,0,42,0,5,0,27,0,48,0,13,0,91,0, -14,0,92,0,4,0,93,0,0,0,94,0,43,0,24,0,9,0,95,0, -9,0,96,0,25,0,97,0,0,0,35,0,18,0,98,0,18,0,99,0, -14,0,100,0,14,0,101,0,14,0,102,0,8,0,103,0,8,0,104,0, -8,0,105,0,8,0,106,0,8,0,107,0,8,0,108,0,8,0,109,0, -4,0,110,0,4,0,111,0,4,0,112,0,4,0,113,0,4,0,114,0, -4,0,115,0,4,0,116,0,0,0,37,0,44,0,23,0,9,0,95,0, -9,0,96,0,25,0,97,0,0,0,35,0,17,0,98,0,17,0,99,0, -13,0,100,0,13,0,101,0,13,0,102,0,7,0,103,0,7,0,104,0, -7,0,105,0,7,0,106,0,7,0,107,0,7,0,108,0,7,0,109,0, -4,0,110,0,4,0,111,0,4,0,112,0,4,0,113,0,4,0,114,0, -4,0,115,0,4,0,116,0,45,0,21,0,44,0,117,0,15,0,118,0, -13,0,119,0,13,0,120,0,13,0,121,0,13,0,122,0,13,0,123,0, -13,0,124,0,13,0,125,0,13,0,126,0,13,0,127,0,7,0,-128,0, -7,0,-127,0,7,0,-126,0,7,0,-125,0,7,0,-124,0,7,0,-123,0, -7,0,-122,0,7,0,-121,0,7,0,-120,0,4,0,-119,0,46,0,22,0, -43,0,117,0,16,0,118,0,14,0,119,0,14,0,120,0,14,0,121,0, -14,0,122,0,14,0,123,0,14,0,124,0,14,0,125,0,14,0,126,0, -14,0,127,0,8,0,-128,0,8,0,-127,0,8,0,-126,0,8,0,-125,0, -8,0,-124,0,8,0,-123,0,8,0,-122,0,8,0,-121,0,8,0,-120,0, -4,0,-119,0,0,0,37,0,47,0,2,0,4,0,-118,0,4,0,-117,0, -48,0,11,0,49,0,-116,0,49,0,-115,0,0,0,35,0,4,0,-114,0, -4,0,-113,0,4,0,-112,0,4,0,-111,0,7,0,-110,0,7,0,-109,0, -4,0,-108,0,0,0,-107,0,50,0,3,0,48,0,-106,0,13,0,-105,0, -13,0,-104,0,51,0,3,0,48,0,-106,0,14,0,-105,0,14,0,-104,0, -52,0,13,0,48,0,-106,0,18,0,-103,0,18,0,-102,0,4,0,-101,0, -4,0,-100,0,4,0,-99,0,7,0,-98,0,7,0,-97,0,7,0,-96,0, -7,0,-95,0,7,0,-94,0,7,0,-93,0,7,0,-92,0,53,0,13,0, -48,0,-106,0,17,0,-103,0,17,0,-102,0,4,0,-101,0,4,0,-100,0, -4,0,-99,0,7,0,-98,0,7,0,-97,0,7,0,-96,0,7,0,-95,0, -7,0,-94,0,7,0,-93,0,7,0,-92,0,54,0,11,0,48,0,-106,0, -17,0,-103,0,17,0,-102,0,7,0,-91,0,7,0,-90,0,7,0,-89,0, -7,0,-94,0,7,0,-93,0,7,0,-92,0,7,0,-88,0,0,0,42,0, -55,0,9,0,48,0,-106,0,17,0,-103,0,17,0,-102,0,13,0,-87,0, -13,0,-86,0,13,0,-85,0,13,0,-84,0,4,0,-83,0,4,0,-82,0, -56,0,9,0,48,0,-106,0,17,0,-103,0,17,0,-102,0,7,0,-87,0, -7,0,-86,0,7,0,-85,0,7,0,-84,0,4,0,-83,0,4,0,-82,0, -}; +116,114,101,101,83,105,122,101,0,109,95,113,117,97,110,116,105,122,101,100, +65,97,98,98,77,105,110,91,51,93,0,109,95,113,117,97,110,116,105,122, +101,100,65,97,98,98,77,97,120,91,51,93,0,109,95,97,97,98,98,77, +105,110,79,114,103,0,109,95,97,97,98,98,77,97,120,79,114,103,0,109, +95,101,115,99,97,112,101,73,110,100,101,120,0,109,95,115,117,98,80,97, +114,116,0,109,95,116,114,105,97,110,103,108,101,73,110,100,101,120,0,109, +95,112,97,100,91,52,93,0,109,95,101,115,99,97,112,101,73,110,100,101, +120,79,114,84,114,105,97,110,103,108,101,73,110,100,101,120,0,109,95,98, +118,104,65,97,98,98,77,105,110,0,109,95,98,118,104,65,97,98,98,77, +97,120,0,109,95,98,118,104,81,117,97,110,116,105,122,97,116,105,111,110, +0,109,95,99,117,114,78,111,100,101,73,110,100,101,120,0,109,95,117,115, +101,81,117,97,110,116,105,122,97,116,105,111,110,0,109,95,110,117,109,67, +111,110,116,105,103,117,111,117,115,76,101,97,102,78,111,100,101,115,0,109, +95,110,117,109,81,117,97,110,116,105,122,101,100,67,111,110,116,105,103,117, +111,117,115,78,111,100,101,115,0,42,109,95,99,111,110,116,105,103,117,111, +117,115,78,111,100,101,115,80,116,114,0,42,109,95,113,117,97,110,116,105, +122,101,100,67,111,110,116,105,103,117,111,117,115,78,111,100,101,115,80,116, +114,0,42,109,95,115,117,98,84,114,101,101,73,110,102,111,80,116,114,0, +109,95,116,114,97,118,101,114,115,97,108,77,111,100,101,0,109,95,110,117, +109,83,117,98,116,114,101,101,72,101,97,100,101,114,115,0,42,109,95,110, +97,109,101,0,109,95,115,104,97,112,101,84,121,112,101,0,109,95,112,97, +100,100,105,110,103,91,52,93,0,109,95,99,111,108,108,105,115,105,111,110, +83,104,97,112,101,68,97,116,97,0,109,95,108,111,99,97,108,83,99,97, +108,105,110,103,0,109,95,112,108,97,110,101,78,111,114,109,97,108,0,109, +95,112,108,97,110,101,67,111,110,115,116,97,110,116,0,109,95,105,109,112, +108,105,99,105,116,83,104,97,112,101,68,105,109,101,110,115,105,111,110,115, +0,109,95,99,111,108,108,105,115,105,111,110,77,97,114,103,105,110,0,109, +95,112,97,100,100,105,110,103,0,109,95,112,111,115,0,109,95,114,97,100, +105,117,115,0,109,95,99,111,110,118,101,120,73,110,116,101,114,110,97,108, +83,104,97,112,101,68,97,116,97,0,42,109,95,108,111,99,97,108,80,111, +115,105,116,105,111,110,65,114,114,97,121,80,116,114,0,109,95,108,111,99, +97,108,80,111,115,105,116,105,111,110,65,114,114,97,121,83,105,122,101,0, +109,95,118,97,108,117,101,0,109,95,118,97,108,117,101,115,91,51,93,0, +109,95,112,97,100,91,50,93,0,42,109,95,118,101,114,116,105,99,101,115, +51,102,0,42,109,95,118,101,114,116,105,99,101,115,51,100,0,42,109,95, +105,110,100,105,99,101,115,51,50,0,42,109,95,51,105,110,100,105,99,101, +115,49,54,0,109,95,110,117,109,84,114,105,97,110,103,108,101,115,0,109, +95,110,117,109,86,101,114,116,105,99,101,115,0,42,109,95,109,101,115,104, +80,97,114,116,115,80,116,114,0,109,95,115,99,97,108,105,110,103,0,109, +95,110,117,109,77,101,115,104,80,97,114,116,115,0,109,95,109,101,115,104, +73,110,116,101,114,102,97,99,101,0,42,109,95,113,117,97,110,116,105,122, +101,100,70,108,111,97,116,66,118,104,0,42,109,95,113,117,97,110,116,105, +122,101,100,68,111,117,98,108,101,66,118,104,0,42,109,95,116,114,105,97, +110,103,108,101,73,110,102,111,77,97,112,0,109,95,112,97,100,51,91,52, +93,0,109,95,116,114,97,110,115,102,111,114,109,0,42,109,95,99,104,105, +108,100,83,104,97,112,101,0,109,95,99,104,105,108,100,83,104,97,112,101, +84,121,112,101,0,109,95,99,104,105,108,100,77,97,114,103,105,110,0,42, +109,95,99,104,105,108,100,83,104,97,112,101,80,116,114,0,109,95,110,117, +109,67,104,105,108,100,83,104,97,112,101,115,0,109,95,117,112,65,120,105, +115,0,109,95,102,108,97,103,115,0,109,95,101,100,103,101,86,48,86,49, +65,110,103,108,101,0,109,95,101,100,103,101,86,49,86,50,65,110,103,108, +101,0,109,95,101,100,103,101,86,50,86,48,65,110,103,108,101,0,42,109, +95,104,97,115,104,84,97,98,108,101,80,116,114,0,42,109,95,110,101,120, +116,80,116,114,0,42,109,95,118,97,108,117,101,65,114,114,97,121,80,116, +114,0,42,109,95,107,101,121,65,114,114,97,121,80,116,114,0,109,95,99, +111,110,118,101,120,69,112,115,105,108,111,110,0,109,95,112,108,97,110,97, +114,69,112,115,105,108,111,110,0,109,95,101,113,117,97,108,86,101,114,116, +101,120,84,104,114,101,115,104,111,108,100,0,109,95,101,100,103,101,68,105, +115,116,97,110,99,101,84,104,114,101,115,104,111,108,100,0,109,95,122,101, +114,111,65,114,101,97,84,104,114,101,115,104,111,108,100,0,109,95,110,101, +120,116,83,105,122,101,0,109,95,104,97,115,104,84,97,98,108,101,83,105, +122,101,0,109,95,110,117,109,86,97,108,117,101,115,0,109,95,110,117,109, +75,101,121,115,0,109,95,103,105,109,112,97,99,116,83,117,98,84,121,112, +101,0,42,109,95,117,110,115,99,97,108,101,100,80,111,105,110,116,115,70, +108,111,97,116,80,116,114,0,42,109,95,117,110,115,99,97,108,101,100,80, +111,105,110,116,115,68,111,117,98,108,101,80,116,114,0,109,95,110,117,109, +85,110,115,99,97,108,101,100,80,111,105,110,116,115,0,109,95,112,97,100, +100,105,110,103,51,91,52,93,0,42,109,95,98,114,111,97,100,112,104,97, +115,101,72,97,110,100,108,101,0,42,109,95,99,111,108,108,105,115,105,111, +110,83,104,97,112,101,0,42,109,95,114,111,111,116,67,111,108,108,105,115, +105,111,110,83,104,97,112,101,0,109,95,119,111,114,108,100,84,114,97,110, +115,102,111,114,109,0,109,95,105,110,116,101,114,112,111,108,97,116,105,111, +110,87,111,114,108,100,84,114,97,110,115,102,111,114,109,0,109,95,105,110, +116,101,114,112,111,108,97,116,105,111,110,76,105,110,101,97,114,86,101,108, +111,99,105,116,121,0,109,95,105,110,116,101,114,112,111,108,97,116,105,111, +110,65,110,103,117,108,97,114,86,101,108,111,99,105,116,121,0,109,95,97, +110,105,115,111,116,114,111,112,105,99,70,114,105,99,116,105,111,110,0,109, +95,99,111,110,116,97,99,116,80,114,111,99,101,115,115,105,110,103,84,104, +114,101,115,104,111,108,100,0,109,95,100,101,97,99,116,105,118,97,116,105, +111,110,84,105,109,101,0,109,95,102,114,105,99,116,105,111,110,0,109,95, +114,101,115,116,105,116,117,116,105,111,110,0,109,95,104,105,116,70,114,97, +99,116,105,111,110,0,109,95,99,99,100,83,119,101,112,116,83,112,104,101, +114,101,82,97,100,105,117,115,0,109,95,99,99,100,77,111,116,105,111,110, +84,104,114,101,115,104,111,108,100,0,109,95,104,97,115,65,110,105,115,111, +116,114,111,112,105,99,70,114,105,99,116,105,111,110,0,109,95,99,111,108, +108,105,115,105,111,110,70,108,97,103,115,0,109,95,105,115,108,97,110,100, +84,97,103,49,0,109,95,99,111,109,112,97,110,105,111,110,73,100,0,109, +95,97,99,116,105,118,97,116,105,111,110,83,116,97,116,101,49,0,109,95, +105,110,116,101,114,110,97,108,84,121,112,101,0,109,95,99,104,101,99,107, +67,111,108,108,105,100,101,87,105,116,104,0,109,95,99,111,108,108,105,115, +105,111,110,79,98,106,101,99,116,68,97,116,97,0,109,95,105,110,118,73, +110,101,114,116,105,97,84,101,110,115,111,114,87,111,114,108,100,0,109,95, +108,105,110,101,97,114,86,101,108,111,99,105,116,121,0,109,95,97,110,103, +117,108,97,114,86,101,108,111,99,105,116,121,0,109,95,97,110,103,117,108, +97,114,70,97,99,116,111,114,0,109,95,108,105,110,101,97,114,70,97,99, +116,111,114,0,109,95,103,114,97,118,105,116,121,0,109,95,103,114,97,118, +105,116,121,95,97,99,99,101,108,101,114,97,116,105,111,110,0,109,95,105, +110,118,73,110,101,114,116,105,97,76,111,99,97,108,0,109,95,116,111,116, +97,108,70,111,114,99,101,0,109,95,116,111,116,97,108,84,111,114,113,117, +101,0,109,95,105,110,118,101,114,115,101,77,97,115,115,0,109,95,108,105, +110,101,97,114,68,97,109,112,105,110,103,0,109,95,97,110,103,117,108,97, +114,68,97,109,112,105,110,103,0,109,95,97,100,100,105,116,105,111,110,97, +108,68,97,109,112,105,110,103,70,97,99,116,111,114,0,109,95,97,100,100, +105,116,105,111,110,97,108,76,105,110,101,97,114,68,97,109,112,105,110,103, +84,104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100,105,116, +105,111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110,103,84, +104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100,105,116,105, +111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110,103,70,97, +99,116,111,114,0,109,95,108,105,110,101,97,114,83,108,101,101,112,105,110, +103,84,104,114,101,115,104,111,108,100,0,109,95,97,110,103,117,108,97,114, +83,108,101,101,112,105,110,103,84,104,114,101,115,104,111,108,100,0,109,95, +97,100,100,105,116,105,111,110,97,108,68,97,109,112,105,110,103,0,109,95, +110,117,109,67,111,110,115,116,114,97,105,110,116,82,111,119,115,0,110,117, +98,0,42,109,95,114,98,65,0,42,109,95,114,98,66,0,109,95,111,98, +106,101,99,116,84,121,112,101,0,109,95,117,115,101,114,67,111,110,115,116, +114,97,105,110,116,84,121,112,101,0,109,95,117,115,101,114,67,111,110,115, +116,114,97,105,110,116,73,100,0,109,95,110,101,101,100,115,70,101,101,100, +98,97,99,107,0,109,95,97,112,112,108,105,101,100,73,109,112,117,108,115, +101,0,109,95,100,98,103,68,114,97,119,83,105,122,101,0,109,95,100,105, +115,97,98,108,101,67,111,108,108,105,115,105,111,110,115,66,101,116,119,101, +101,110,76,105,110,107,101,100,66,111,100,105,101,115,0,109,95,112,97,100, +52,91,52,93,0,109,95,116,121,112,101,67,111,110,115,116,114,97,105,110, +116,68,97,116,97,0,109,95,112,105,118,111,116,73,110,65,0,109,95,112, +105,118,111,116,73,110,66,0,109,95,114,98,65,70,114,97,109,101,0,109, +95,114,98,66,70,114,97,109,101,0,109,95,117,115,101,82,101,102,101,114, +101,110,99,101,70,114,97,109,101,65,0,109,95,97,110,103,117,108,97,114, +79,110,108,121,0,109,95,101,110,97,98,108,101,65,110,103,117,108,97,114, +77,111,116,111,114,0,109,95,109,111,116,111,114,84,97,114,103,101,116,86, +101,108,111,99,105,116,121,0,109,95,109,97,120,77,111,116,111,114,73,109, +112,117,108,115,101,0,109,95,108,111,119,101,114,76,105,109,105,116,0,109, +95,117,112,112,101,114,76,105,109,105,116,0,109,95,108,105,109,105,116,83, +111,102,116,110,101,115,115,0,109,95,98,105,97,115,70,97,99,116,111,114, +0,109,95,114,101,108,97,120,97,116,105,111,110,70,97,99,116,111,114,0, +109,95,115,119,105,110,103,83,112,97,110,49,0,109,95,115,119,105,110,103, +83,112,97,110,50,0,109,95,116,119,105,115,116,83,112,97,110,0,109,95, +100,97,109,112,105,110,103,0,109,95,108,105,110,101,97,114,85,112,112,101, +114,76,105,109,105,116,0,109,95,108,105,110,101,97,114,76,111,119,101,114, +76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,85,112,112,101,114, +76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,76,111,119,101,114, +76,105,109,105,116,0,109,95,117,115,101,76,105,110,101,97,114,82,101,102, +101,114,101,110,99,101,70,114,97,109,101,65,0,109,95,117,115,101,79,102, +102,115,101,116,70,111,114,67,111,110,115,116,114,97,105,110,116,70,114,97, +109,101,0,0,84,89,80,69,57,0,0,0,99,104,97,114,0,117,99,104, +97,114,0,115,104,111,114,116,0,117,115,104,111,114,116,0,105,110,116,0, +108,111,110,103,0,117,108,111,110,103,0,102,108,111,97,116,0,100,111,117, +98,108,101,0,118,111,105,100,0,80,111,105,110,116,101,114,65,114,114,97, +121,0,98,116,80,104,121,115,105,99,115,83,121,115,116,101,109,0,76,105, +115,116,66,97,115,101,0,98,116,86,101,99,116,111,114,51,70,108,111,97, +116,68,97,116,97,0,98,116,86,101,99,116,111,114,51,68,111,117,98,108, +101,68,97,116,97,0,98,116,77,97,116,114,105,120,51,120,51,70,108,111, +97,116,68,97,116,97,0,98,116,77,97,116,114,105,120,51,120,51,68,111, +117,98,108,101,68,97,116,97,0,98,116,84,114,97,110,115,102,111,114,109, +70,108,111,97,116,68,97,116,97,0,98,116,84,114,97,110,115,102,111,114, +109,68,111,117,98,108,101,68,97,116,97,0,98,116,66,118,104,83,117,98, +116,114,101,101,73,110,102,111,68,97,116,97,0,98,116,79,112,116,105,109, +105,122,101,100,66,118,104,78,111,100,101,70,108,111,97,116,68,97,116,97, +0,98,116,79,112,116,105,109,105,122,101,100,66,118,104,78,111,100,101,68, +111,117,98,108,101,68,97,116,97,0,98,116,81,117,97,110,116,105,122,101, +100,66,118,104,78,111,100,101,68,97,116,97,0,98,116,81,117,97,110,116, +105,122,101,100,66,118,104,70,108,111,97,116,68,97,116,97,0,98,116,81, +117,97,110,116,105,122,101,100,66,118,104,68,111,117,98,108,101,68,97,116, +97,0,98,116,67,111,108,108,105,115,105,111,110,83,104,97,112,101,68,97, +116,97,0,98,116,83,116,97,116,105,99,80,108,97,110,101,83,104,97,112, +101,68,97,116,97,0,98,116,67,111,110,118,101,120,73,110,116,101,114,110, +97,108,83,104,97,112,101,68,97,116,97,0,98,116,80,111,115,105,116,105, +111,110,65,110,100,82,97,100,105,117,115,0,98,116,77,117,108,116,105,83, +112,104,101,114,101,83,104,97,112,101,68,97,116,97,0,98,116,73,110,116, +73,110,100,101,120,68,97,116,97,0,98,116,83,104,111,114,116,73,110,116, +73,110,100,101,120,84,114,105,112,108,101,116,68,97,116,97,0,98,116,77, +101,115,104,80,97,114,116,68,97,116,97,0,98,116,83,116,114,105,100,105, +110,103,77,101,115,104,73,110,116,101,114,102,97,99,101,68,97,116,97,0, +98,116,84,114,105,97,110,103,108,101,77,101,115,104,83,104,97,112,101,68, +97,116,97,0,98,116,84,114,105,97,110,103,108,101,73,110,102,111,77,97, +112,68,97,116,97,0,98,116,67,111,109,112,111,117,110,100,83,104,97,112, +101,67,104,105,108,100,68,97,116,97,0,98,116,67,111,109,112,111,117,110, +100,83,104,97,112,101,68,97,116,97,0,98,116,67,121,108,105,110,100,101, +114,83,104,97,112,101,68,97,116,97,0,98,116,67,97,112,115,117,108,101, +83,104,97,112,101,68,97,116,97,0,98,116,84,114,105,97,110,103,108,101, +73,110,102,111,68,97,116,97,0,98,116,71,73,109,112,97,99,116,77,101, +115,104,83,104,97,112,101,68,97,116,97,0,98,116,67,111,110,118,101,120, +72,117,108,108,83,104,97,112,101,68,97,116,97,0,98,116,67,111,108,108, +105,115,105,111,110,79,98,106,101,99,116,68,111,117,98,108,101,68,97,116, +97,0,98,116,67,111,108,108,105,115,105,111,110,79,98,106,101,99,116,70, +108,111,97,116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100,121, +70,108,111,97,116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100, +121,68,111,117,98,108,101,68,97,116,97,0,98,116,67,111,110,115,116,114, +97,105,110,116,73,110,102,111,49,0,98,116,84,121,112,101,100,67,111,110, +115,116,114,97,105,110,116,68,97,116,97,0,98,116,82,105,103,105,100,66, +111,100,121,68,97,116,97,0,98,116,80,111,105,110,116,50,80,111,105,110, +116,67,111,110,115,116,114,97,105,110,116,70,108,111,97,116,68,97,116,97, +0,98,116,80,111,105,110,116,50,80,111,105,110,116,67,111,110,115,116,114, +97,105,110,116,68,111,117,98,108,101,68,97,116,97,0,98,116,72,105,110, +103,101,67,111,110,115,116,114,97,105,110,116,68,111,117,98,108,101,68,97, +116,97,0,98,116,72,105,110,103,101,67,111,110,115,116,114,97,105,110,116, +70,108,111,97,116,68,97,116,97,0,98,116,67,111,110,101,84,119,105,115, +116,67,111,110,115,116,114,97,105,110,116,68,97,116,97,0,98,116,71,101, +110,101,114,105,99,54,68,111,102,67,111,110,115,116,114,97,105,110,116,68, +97,116,97,0,98,116,83,108,105,100,101,114,67,111,110,115,116,114,97,105, +110,116,68,97,116,97,0,0,84,76,69,78,1,0,1,0,2,0,2,0, +4,0,4,0,4,0,4,0,8,0,0,0,12,0,36,0,8,0,16,0, +32,0,48,0,96,0,64,0,-128,0,20,0,48,0,80,0,16,0,84,0, +-124,0,12,0,52,0,52,0,20,0,64,0,4,0,8,0,24,0,28,0, +60,0,56,0,76,0,24,0,60,0,60,0,16,0,64,0,68,0,-56,1, +-8,0,-32,1,-104,3,8,0,44,0,0,0,76,0,108,0,84,1,-44,0, +-52,0,-12,0,-60,0,0,0,83,84,82,67,46,0,0,0,10,0,3,0, +4,0,0,0,4,0,1,0,9,0,2,0,11,0,3,0,10,0,3,0, +10,0,4,0,10,0,5,0,12,0,2,0,9,0,6,0,9,0,7,0, +13,0,1,0,7,0,8,0,14,0,1,0,8,0,8,0,15,0,1,0, +13,0,9,0,16,0,1,0,14,0,9,0,17,0,2,0,15,0,10,0, +13,0,11,0,18,0,2,0,16,0,10,0,14,0,11,0,19,0,4,0, +4,0,12,0,4,0,13,0,2,0,14,0,2,0,15,0,20,0,6,0, +13,0,16,0,13,0,17,0,4,0,18,0,4,0,19,0,4,0,20,0, +0,0,21,0,21,0,6,0,14,0,16,0,14,0,17,0,4,0,18,0, +4,0,19,0,4,0,20,0,0,0,21,0,22,0,3,0,2,0,14,0, +2,0,15,0,4,0,22,0,23,0,12,0,13,0,23,0,13,0,24,0, +13,0,25,0,4,0,26,0,4,0,27,0,4,0,28,0,4,0,29,0, +20,0,30,0,22,0,31,0,19,0,32,0,4,0,33,0,4,0,34,0, +24,0,12,0,14,0,23,0,14,0,24,0,14,0,25,0,4,0,26,0, +4,0,27,0,4,0,28,0,4,0,29,0,21,0,30,0,22,0,31,0, +4,0,33,0,4,0,34,0,19,0,32,0,25,0,3,0,0,0,35,0, +4,0,36,0,0,0,37,0,26,0,5,0,25,0,38,0,13,0,39,0, +13,0,40,0,7,0,41,0,0,0,21,0,27,0,5,0,25,0,38,0, +13,0,39,0,13,0,42,0,7,0,43,0,4,0,44,0,28,0,2,0, +13,0,45,0,7,0,46,0,29,0,4,0,27,0,47,0,28,0,48,0, +4,0,49,0,0,0,37,0,30,0,1,0,4,0,50,0,31,0,2,0, +2,0,51,0,0,0,52,0,32,0,6,0,13,0,53,0,14,0,54,0, +30,0,55,0,31,0,56,0,4,0,57,0,4,0,58,0,33,0,4,0, +32,0,59,0,13,0,60,0,4,0,61,0,0,0,37,0,34,0,7,0, +25,0,38,0,33,0,62,0,23,0,63,0,24,0,64,0,35,0,65,0, +7,0,43,0,0,0,66,0,36,0,4,0,17,0,67,0,25,0,68,0, +4,0,69,0,7,0,70,0,37,0,4,0,25,0,38,0,36,0,71,0, +4,0,72,0,7,0,43,0,38,0,3,0,27,0,47,0,4,0,73,0, +0,0,37,0,39,0,3,0,27,0,47,0,4,0,73,0,0,0,37,0, +40,0,4,0,4,0,74,0,7,0,75,0,7,0,76,0,7,0,77,0, +35,0,14,0,4,0,78,0,4,0,79,0,40,0,80,0,4,0,81,0, +7,0,82,0,7,0,83,0,7,0,84,0,7,0,85,0,7,0,86,0, +4,0,87,0,4,0,88,0,4,0,89,0,4,0,90,0,0,0,37,0, +41,0,5,0,25,0,38,0,33,0,62,0,13,0,39,0,7,0,43,0, +4,0,91,0,42,0,5,0,27,0,47,0,13,0,92,0,14,0,93,0, +4,0,94,0,0,0,95,0,43,0,24,0,9,0,96,0,9,0,97,0, +25,0,98,0,0,0,35,0,18,0,99,0,18,0,100,0,14,0,101,0, +14,0,102,0,14,0,103,0,8,0,104,0,8,0,105,0,8,0,106,0, +8,0,107,0,8,0,108,0,8,0,109,0,8,0,110,0,4,0,111,0, +4,0,112,0,4,0,113,0,4,0,114,0,4,0,115,0,4,0,116,0, +4,0,117,0,0,0,37,0,44,0,23,0,9,0,96,0,9,0,97,0, +25,0,98,0,0,0,35,0,17,0,99,0,17,0,100,0,13,0,101,0, +13,0,102,0,13,0,103,0,7,0,104,0,7,0,105,0,7,0,106,0, +7,0,107,0,7,0,108,0,7,0,109,0,7,0,110,0,4,0,111,0, +4,0,112,0,4,0,113,0,4,0,114,0,4,0,115,0,4,0,116,0, +4,0,117,0,45,0,21,0,44,0,118,0,15,0,119,0,13,0,120,0, +13,0,121,0,13,0,122,0,13,0,123,0,13,0,124,0,13,0,125,0, +13,0,126,0,13,0,127,0,13,0,-128,0,7,0,-127,0,7,0,-126,0, +7,0,-125,0,7,0,-124,0,7,0,-123,0,7,0,-122,0,7,0,-121,0, +7,0,-120,0,7,0,-119,0,4,0,-118,0,46,0,22,0,43,0,118,0, +16,0,119,0,14,0,120,0,14,0,121,0,14,0,122,0,14,0,123,0, +14,0,124,0,14,0,125,0,14,0,126,0,14,0,127,0,14,0,-128,0, +8,0,-127,0,8,0,-126,0,8,0,-125,0,8,0,-124,0,8,0,-123,0, +8,0,-122,0,8,0,-121,0,8,0,-120,0,8,0,-119,0,4,0,-118,0, +0,0,37,0,47,0,2,0,4,0,-117,0,4,0,-116,0,48,0,11,0, +49,0,-115,0,49,0,-114,0,0,0,35,0,4,0,-113,0,4,0,-112,0, +4,0,-111,0,4,0,-110,0,7,0,-109,0,7,0,-108,0,4,0,-107,0, +0,0,-106,0,50,0,3,0,48,0,-105,0,13,0,-104,0,13,0,-103,0, +51,0,3,0,48,0,-105,0,14,0,-104,0,14,0,-103,0,52,0,13,0, +48,0,-105,0,18,0,-102,0,18,0,-101,0,4,0,-100,0,4,0,-99,0, +4,0,-98,0,7,0,-97,0,7,0,-96,0,7,0,-95,0,7,0,-94,0, +7,0,-93,0,7,0,-92,0,7,0,-91,0,53,0,13,0,48,0,-105,0, +17,0,-102,0,17,0,-101,0,4,0,-100,0,4,0,-99,0,4,0,-98,0, +7,0,-97,0,7,0,-96,0,7,0,-95,0,7,0,-94,0,7,0,-93,0, +7,0,-92,0,7,0,-91,0,54,0,11,0,48,0,-105,0,17,0,-102,0, +17,0,-101,0,7,0,-90,0,7,0,-89,0,7,0,-88,0,7,0,-93,0, +7,0,-92,0,7,0,-91,0,7,0,-87,0,0,0,21,0,55,0,9,0, +48,0,-105,0,17,0,-102,0,17,0,-101,0,13,0,-86,0,13,0,-85,0, +13,0,-84,0,13,0,-83,0,4,0,-82,0,4,0,-81,0,56,0,9,0, +48,0,-105,0,17,0,-102,0,17,0,-101,0,7,0,-86,0,7,0,-85,0, +7,0,-84,0,7,0,-83,0,4,0,-82,0,4,0,-81,0,}; int sBulletDNAlen= sizeof(sBulletDNAstr);