/* * Copyright (c) 2026 EdgeImpulse Inc. * * Generated by Edge Impulse and licensed under the applicable Edge Impulse * Terms of Service. Community and Professional Terms of Service * (https://edgeimpulse.com/legal/terms-of-service) or Enterprise Terms of * Service (https://edgeimpulse.com/legal/enterprise-terms-of-service), * according to your product plan subscription (the “License”). * * This software, documentation and other associated files (collectively referred * to as the “Software”) is a single SDK variation generated by the Edge Impulse * platform and requires an active paid Edge Impulse subscription to use this * Software for any purpose. * * You may NOT use this Software unless you have an active Edge Impulse subscription * that meets the eligibility requirements for the applicable License, subject to * your full and continued compliance with the terms and conditions of the License, * including without limitation any usage restrictions under the applicable License. * * If you do not have an active Edge Impulse product plan subscription, or if use * of this Software exceeds the usage limitations of your Edge Impulse product plan * subscription, you are not permitted to use this Software and must immediately * delete and erase all copies of this Software within your control or possession. * Edge Impulse reserves all rights and remedies available to enforce its rights. * * Unless required by applicable law or agreed to in writing, the Software is * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing * permissions, disclaimers and limitations under the License. */ // Generated on: 07.07.2026 12:11:06 #include #include #include "edge-impulse-sdk/tensorflow/lite/c/builtin_op_data.h" #include "edge-impulse-sdk/tensorflow/lite/c/common.h" #include "edge-impulse-sdk/tensorflow/lite/micro/micro_mutable_op_resolver.h" #include "edge-impulse-sdk/porting/ei_classifier_porting.h" #if EI_CLASSIFIER_PRINT_STATE #if defined(__cplusplus) && EI_C_LINKAGE == 1 extern "C" { extern void ei_printf(const char *format, ...); } #else extern void ei_printf(const char *format, ...); #endif #endif #define STRINGIZE(x) #x #define STRINGIZE_VALUE_OF(x) STRINGIZE(x) #if defined (__GNUC__) /* GNU compiler */ #define ALIGN(X) __attribute__((aligned(X))) #define DEFINE_SECTION(x) __attribute__((section(x))) #elif defined (_MSC_VER) #define ALIGN(X) __declspec(align(X)) #elif defined (__TASKING__) /* TASKING Compiler */ #define ALIGN(X) __align(X) #define DEFINE_SECTION(x) __attribute__((section(x))) #elif defined (__ARMCC_VERSION) /* Arm Compiler */ #define ALIGN(X) __ALIGNED(x) #define DEFINE_SECTION(x) __attribute__((section(x))) #elif defined (__ICCARM__) /* IAR Compiler */ #define ALIGN(x) __attribute__((aligned(x))) #define DEFINE_SECTION(x) __attribute__((section(x))) #elif defined (__clang__) /* LLVM/Clang Compiler */ #define ALIGN(X) __ALIGNED(x) #define DEFINE_SECTION(x) __attribute__((section(x))) #endif #if defined(EI_MODEL_SECTION) && (defined(__GNUC__) || defined(__clang__)) #define MODEL_SECTION(X) __attribute__((section(STRINGIZE_VALUE_OF(X)))) #else #define MODEL_SECTION(X) #endif #ifndef EI_MAX_SCRATCH_BUFFER_COUNT #ifndef CONFIG_IDF_TARGET_ESP32S3 #define EI_MAX_SCRATCH_BUFFER_COUNT 38 #else #define EI_MAX_SCRATCH_BUFFER_COUNT 76 #endif // CONFIG_IDF_TARGET_ESP32S3 #endif // EI_MAX_SCRATCH_BUFFER_COUNT #ifndef EI_MAX_OVERFLOW_BUFFER_COUNT #define EI_MAX_OVERFLOW_BUFFER_COUNT 10 #endif // EI_MAX_OVERFLOW_BUFFER_COUNT using namespace tflite; using namespace tflite::ops; using namespace tflite::ops::micro; namespace { #if defined(EI_CLASSIFIER_ALLOCATION_STATIC_HIMAX) || defined(EI_CLASSIFIER_ALLOCATION_STATIC_HIMAX_GNU) constexpr int kTensorArenaSize = 174464; #else constexpr int kTensorArenaSize = 173440; #endif #if defined(EI_CLASSIFIER_ALLOCATION_STATIC) #if defined (EI_TENSOR_ARENA_LOCATION) uint8_t tensor_arena[kTensorArenaSize] ALIGN(16) DEFINE_SECTION(STRINGIZE_VALUE_OF(EI_TENSOR_ARENA_LOCATION)); #else uint8_t tensor_arena[kTensorArenaSize] ALIGN(16); #endif #elif defined(EI_CLASSIFIER_ALLOCATION_STATIC_HIMAX) #pragma Bss(".tensor_arena") uint8_t tensor_arena[kTensorArenaSize] ALIGN(16); #pragma Bss() #elif defined(EI_CLASSIFIER_ALLOCATION_STATIC_HIMAX_GNU) uint8_t tensor_arena[kTensorArenaSize] ALIGN(16) __attribute__((section(".tensor_arena"))); #else #define EI_CLASSIFIER_ALLOCATION_HEAP 1 uint8_t* tensor_arena = NULL; #endif static uint8_t* tensor_boundary; static uint8_t* current_location; template struct TfArray { int sz; T elem[SZ]; }; enum used_operators_e { OP_RESHAPE, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_ADD, OP_MEAN, OP_FULLY_CONNECTED, OP_SOFTMAX, OP_LAST }; struct TensorInfo_t { // subset of TfLiteTensor used for initialization from constant memory TfLiteAllocationType allocation_type; TfLiteType type; void* data; TfLiteIntArray* dims; size_t bytes; TfLiteQuantization quantization; }; typedef struct { TfLiteTensor tensor; int16_t index; } TfLiteTensorWithIndex; typedef struct { TfLiteEvalTensor tensor; int16_t index; } TfLiteEvalTensorWithIndex; TfLiteContext ctx{}; static const int MAX_TFL_TENSOR_COUNT = 4; static TfLiteTensorWithIndex tflTensors[MAX_TFL_TENSOR_COUNT]; static const int MAX_TFL_EVAL_COUNT = 4; static TfLiteEvalTensorWithIndex tflEvalTensors[MAX_TFL_EVAL_COUNT]; TfLiteRegistration registrations[OP_LAST]; namespace g0 { const TfArray<2, int> tensor_dimension0 = { 2, { 1,3960 } }; const TfArray<1, float> quant0_scale = { 1, { 0.003569240216165781, } }; const TfArray<1, int> quant0_zero = { 1, { -128 } }; const TfLiteAffineQuantization quant0 = { (TfLiteFloatArray*)&quant0_scale, (TfLiteIntArray*)&quant0_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data1[4] = { 1, 99, 40, 1, }; const TfArray<1, int> tensor_dimension1 = { 1, { 4 } }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(8) int32_t tensor_data2[2] = { 1, 2, }; const TfArray<1, int> tensor_dimension2 = { 1, { 2 } }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(8) int32_t tensor_data3[3] = { -13536, 7371, 1428, }; const TfArray<1, int> tensor_dimension3 = { 1, { 3 } }; const TfArray<1, float> quant3_scale = { 1, { 3.6509336496237665e-05, } }; const TfArray<1, int> quant3_zero = { 1, { 0 } }; const TfLiteAffineQuantization quant3 = { (TfLiteFloatArray*)&quant3_scale, (TfLiteIntArray*)&quant3_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data4[3*1280] = { -35, -33, -11, 34, -11, 39, -17, -22, -7, -22, -6, -30, -9, -51, -30, -28, 2, 13, -22, -18, 5, -3, -37, -44, -25, -35, 7, 17, -6, -14, 16, -19, 18, -9, -32, -15, -25, -1, 15, -13, -56, 16, -31, -54, -20, -29, 47, -50, 35, -41, -27, -37, 17, -24, -39, -30, -42, -34, 4, -25, 14, -6, -25, -10, -38, 30, -27, 26, 28, 22, -30, -42, 45, 13, 36, -24, -36, -36, 16, -32, 7, 26, 35, 43, -30, -11, -43, 22, -58, 20, -55, 2, 17, 26, -30, 31, -37, -12, 26, -11, 46, 0, -35, -31, -17, -30, -32, 39, -15, 29, 6, -36, -13, 45, -30, -38, 17, -30, 1, -8, 38, -15, -42, -40, 1, -21, 22, 6, -22, 34, -19, -18, -29, -30, 17, 18, -27, -44, -29, -34, -37, -26, -31, 24, -31, 28, 9, 4, -23, -37, 28, 9, 13, -31, -39, -23, -28, 21, -51, 5, -20, -4, -40, -30, -26, -53, -12, -37, -20, 6, -22, 20, -31, -25, -47, -19, 32, -42, -36, -12, 10, 29, -4, 20, -70, 27, 33, -14, -26, -34, -16, 42, -17, 28, -33, 29, -47, 32, -31, -20, -39, -7, -8, 11, -41, -44, -36, -31, -28, -7, -14, 18, -15, 16, 14, -16, -36, 26, 19, -21, 3, -6, -8, -17, -6, 0, -17, -25, -27, 17, 11, -67, -28, -42, 44, -46, -38, -8, -28, 2, -33, -28, -34, 30, -33, -32, -27, -40, 21, -25, 41, -18, -27, 15, 19, 11, 44, -16, 7, -61, -30, -14, 22, 24, -18, -27, 21, -18, 15, -40, -35, -38, -30, -37, -28, 11, -9, 34, -30, -18, 24, 20, -7, -24, 18, -23, 26, -33, -24, -27, 29, -48, -41, -3, -21, -40, -36, -30, -33, -4, -18, -25, -36, -22, -37, 5, 43, -27, -3, -49, -25, -24, -28, -24, -66, -25, -21, 37, -31, 12, -35, -44, 20, -30, -28, -34, 18, -34, -19, 4, 20, 14, -28, 35, 33, 32, 20, -19, -40, 8, 22, -28, -24, -42, 37, -41, 21, 17, -21, 14, -20, -7, -26, -55, -31, -30, -37, 20, 14, 21, -34, -2, -36, 42, -32, -37, -40, 25, 2, -29, -31, 7, -11, -47, -34, -9, -41, -49, -22, -44, -32, -30, 10, 23, -35, -28, -23, -8, -5, -36, -36, 9, -32, -31, -57, -13, -23, -14, -28, 30, -19, 13, -59, -42, 1, -29, -7, 3, 35, -32, -46, -46, -41, 2, -44, -1, 13, -23, 3, -19, -48, 3, -25, -26, -42, 2, -58, -29, 15, -33, 9, 32, -10, -3, -17, -27, 5, 39, -21, -33, 35, -44, 31, -26, 32, -25, -32, -28, -48, 38, -28, -42, -30, -37, -63, -35, -35, 11, 36, -29, 31, -45, 29, 34, -10, 8, -27, 16, 40, 3, 8, 35, -55, -28, -33, -34, 28, -32, -20, -23, -28, -48, 10, -13, -33, 20, -35, -20, -1, -1, 12, -44, 41, -24, -43, -4, -52, -8, -29, 27, -28, -15, -43, 14, 15, 10, -27, -24, -23, -35, 22, 9, 18, 25, 20, -34, 28, -28, -2, -25, 35, -43, -24, -47, -26, -30, 19, -37, 20, 39, -5, -35, -27, 17, -8, -35, -24, 12, -26, -34, 14, -25, -31, -28, -59, -39, -2, -15, 29, -28, -29, -58, -30, -45, 32, -31, 6, -68, 33, -33, -27, -29, -38, 10, -15, -47, -24, -37, -23, -42, -37, -40, -33, 44, -41, -6, -40, -28, 14, -41, -58, 30, -7, 1, 19, 10, 4, 3, -14, 34, -1, 22, -31, 2, -31, -31, 10, 37, -2, -51, 16, -53, 26, -17, -37, -39, 10, -4, -7, -38, -18, -31, -10, 46, 3, -24, -36, -27, -34, -27, 15, -40, -53, -28, -14, -35, -28, -31, -32, -24, 5, 11, -29, 11, -39, 1, 4, -34, -41, -42, -35, -1, -31, -4, -33, -38, 7, -9, 15, 14, -26, -25, -20, 23, 29, -44, -38, -15, -29, -12, -32, 26, -26, 46, 28, -33, -15, -46, 3, 26, -46, -45, -3, 7, -54, -44, 31, 27, -37, -9, -30, -20, 32, -46, -26, -12, -27, -2, 28, -30, -13, 7, 13, 0, -29, -1, 14, -20, 18, -60, 22, 5, 20, 10, 40, 24, -40, 22, -53, 24, -29, -24, -10, 26, -29, -39, 11, -36, -35, -31, 19, -6, -11, -27, -24, -42, -8, 12, -29, 0, 8, 22, -36, -15, -32, -7, 22, -43, 0, 38, -17, -37, -28, -49, 38, -16, -2, 25, -73, -30, 10, -42, 34, -31, -24, 2, -32, -2, -33, -14, -47, 32, -38, -30, -53, -40, 36, -34, 27, -12, -46, 22, -18, -55, -52, -5, -11, -23, -38, -37, 12, -6, -11, -37, -43, -33, -40, 19, 32, -17, -25, -30, 26, 19, -30, -27, 25, -15, 18, -42, 9, 27, -35, 20, -44, 26, 26, 21, -42, -30, -37, -32, -36, 39, -11, 30, 32, -56, 16, -31, 2, -41, -31, -31, 38, 8, 23, -29, -37, -23, 33, -27, 10, 3, -71, -26, -18, -17, 35, 25, -34, 31, -25, 46, 32, -55, 9, -28, -22, 26, -22, -43, -33, 32, 34, -12, -11, 16, -20, -37, -27, 26, 24, -28, 3, 14, -35, -14, 24, -18, -23, -43, -17, -4, 0, -7, 35, -28, -36, 5, -19, -29, -23, -8, 8, 28, -50, -41, -17, -21, -33, -24, 19, -30, -23, 15, 24, 8, -35, 20, 28, -13, -19, -76, -27, -31, -17, -32, -16, -27, -14, -8, -37, -28, -15, -38, -43, -33, -7, 49, -4, -45, 17, -40, -23, 10, -5, -60, -33, -15, -9, -45, -43, -24, 24, -27, -27, 41, -10, -49, -15, 20, -28, -31, 9, -31, 17, -23, -42, -31, -8, -37, -33, -39, -42, -11, -21, -55, 22, -40, -32, -20, 29, -12, -54, -18, 35, -29, -21, 31, -35, -32, 42, -30, 9, -14, 0, -41, -34, 27, -35, 23, -27, 15, 6, -21, 3, -32, -31, -18, 0, -32, -18, 29, -27, -37, -2, -9, 27, -26, 16, -19, -53, -31, 39, -10, -20, -36, 24, -43, -18, -71, -30, -38, -44, -32, -31, 25, 17, -42, -30, -29, -20, -26, -37, -20, 16, -2, -37, 16, -34, 31, 28, -39, 34, -40, 26, -13, -25, -32, -33, 30, -26, -28, 17, -27, -30, -21, -35, -19, -33, 30, -36, 15, -24, -28, -27, 12, -32, -26, 31, 37, -31, 38, -18, -29, -13, -20, 39, -11, -32, -33, -27, 30, -22, -13, -37, 3, 18, 23, 5, 30, -26, 1, -25, 9, 1, -36, -16, -33, -33, -35, -30, -44, -54, 14, 28, 28, -47, -35, 24, 6, -17, -30, -30, 9, 7, -26, 12, -21, -10, -12, 29, -29, -30, -37, -31, -37, -45, -36, 5, -1, 43, -26, -22, 9, 37, -53, -12, 22, -26, -39, -38, -25, -35, -1, -23, -44, -19, -29, 13, -11, 25, -19, -8, -16, 12, -36, -59, 27, -8, -35, 8, 14, 18, -34, -47, -26, -15, 43, -4, -31, 30, -61, -17, -24, -27, -31, 10, 2, -32, 13, 13, 19, 33, -28, -23, 9, -39, 24, 35, 21, -15, 5, 9, -31, -41, -33, -42, 48, -39, -38, -29, 16, -13, -26, 5, -8, -31, -3, -73, 27, 22, 4, -63, 11, -28, -7, -28, -33, -29, -38, 30, 17, 27, 12, -25, -34, -30, 7, -23, -3, 29, -32, -43, -35, -13, 1, 15, -16, 1, -2, 16, -26, -29, -72, -54, 16, -13, 28, -27, -26, -30, -38, -41, 33, -31, -29, 7, 9, -38, -31, -2, -23, -33, -9, 41, 4, -36, -3, -20, -37, 29, -42, -13, 25, 27, -18, -32, 0, 46, -38, -47, -14, 2, -9, -43, -38, -47, -1, 6, 13, 53, 2, 14, -29, 52, 48, -54, 4, -10, -29, -14, 48, -19, -4, 12, 8, 42, -6, 26, 18, 32, 45, 43, 10, -10, 59, 24, 29, -13, 3, -44, 9, 31, -15, -23, 26, 19, -36, 19, -16, -17, 21, 17, 16, -28, 29, -35, -15, 71, 8, -14, 21, 0, -87, 25, 13, 27, 30, 27, 60, -8, -39, 28, 6, 28, -40, 12, 16, 26, 14, -26, -22, -4, -19, -84, 23, -2, 33, -3, -58, -57, -38, -24, -13, -26, 15, 21, 52, 17, -15, -18, -39, 32, -45, 23, 1, 3, 16, -59, -38, 25, 42, -40, 35, 36, 17, -64, -16, -50, 31, -28, -35, -1, 52, 13, 16, 18, -67, 52, 59, 22, -11, 23, -5, 11, -30, 3, -19, 1, -18, 6, 6, -40, 8, 1, -33, -32, -19, 12, -79, -14, -9, 27, -37, -18, 21, 71, 20, -14, -5, 56, 21, 42, -48, 58, -8, -10, -16, -20, 17, -74, 16, 67, -14, -7, -12, -10, -1, 40, -31, -79, -4, 30, 28, -14, 17, 40, -14, 3, -12, -15, -41, -4, -23, -42, -3, -8, 38, -4, -14, -31, -28, 27, -22, 12, 31, -20, 35, 33, 53, 11, 4, -45, -23, -20, 44, 17, -20, -32, -59, 9, -23, 13, -11, -82, -3, -7, -47, 1, -52, -12, 37, 20, -3, -15, -71, -112, -20, 20, 27, 11, -32, 15, 16, -6, 22, -10, -61, 9, 47, 35, -6, -43, 3, 61, 30, -5, 4, -4, 32, 21, 1, 4, 18, -13, 12, 55, 21, 19, 33, 13, -21, -22, 7, -15, -33, 2, -8, 8, 6, -30, -69, 25, -40, -25, 5, 14, 9, -3, -26, 40, 23, -50, 4, 12, 6, 49, 76, 14, 67, 47, 36, 13, -21, -11, 20, -19, -36, 31, -47, 18, 10, -90, -18, -32, -14, 57, -15, -12, 2, 13, -20, -25, -39, -5, -39, -94, -9, 19, 40, -33, 20, -50, -3, -64, 36, 18, -3, -4, 12, -14, 3, 3, 17, -21, -66, 35, -80, -3, 3, 6, 46, -38, 41, -26, -21, 47, 45, 29, -25, -43, 19, -13, 19, -19, 78, -11, 8, -24, -14, -25, -53, -1, -2, 47, 33, -3, 21, 74, -21, 8, 21, 8, 8, -61, 54, -3, 30, -13, 26, 6, -43, 3, 37, 24, 17, 38, 50, -9, -28, -59, -55, -5, 1, 84, -2, 4, 4, 17, -3, 33, -16, 26, 30, 12, 26, -69, 8, 22, 8, 2, -48, -21, 17, 10, -14, 6, 12, 27, -80, -2, 21, 21, -13, -24, 12, -13, -23, 0, -48, -6, 7, 41, -22, -22, -41, 22, 20, -3, 42, -47, -11, 34, 8, -24, 34, -8, 7, 39, 21, 60, 32, 48, 25, -2, 18, 16, 13, -42, -3, -5, -39, 13, 5, -31, -8, -15, -90, 4, -12, 16, -12, 20, 8, -2, -5, -3, 71, -62, 45, 20, 36, -11, -9, -39, 39, 29, -82, -10, 3, -61, -4, -24, 17, 1, -2, -20, 4, 5, 31, 6, -40, 23, -47, -12, 26, 70, -73, -32, 16, -42, -17, -27, 43, -83, -8, -30, -4, -26, 5, 5, -26, -11, 26, -13, 10, -27, -12, 12, 0, -19, -27, -32, -3, -38, -3, 37, -86, -8, 20, 23, -11, 17, -6, 30, 25, -28, -36, 20, -91, 14, 23, 13, 39, -8, 23, -20, 24, -22, 2, 26, -21, 13, 18, 9, -18, -11, -11, 44, -12, 43, -4, 11, -1, -1, 36, -69, 9, 17, 51, -17, 19, -27, 6, 24, 4, -11, -26, -34, 1, -10, 64, -91, 14, 1, -44, 5, -28, -16, -12, -77, -73, -32, -9, 34, -127, -5, 30, 25, -63, -50, 2, 23, 53, -8, 6, 2, -26, -12, 37, 62, -3, -5, 51, 52, -8, -55, 77, 1, -52, -20, 3, -32, -18, -11, -7, 27, -8, 6, -39, 17, 1, 42, 24, -57, -8, 35, 20, 46, 23, -20, -47, -17, -27, -21, -124, -23, 36, -31, -99, 7, 23, 54, 38, -28, -23, -43, -16, 34, 22, 11, -60, 46, 18, -37, -25, 9, -62, 21, 4, -35, 12, -18, -9, -13, 4, 49, -63, 1, -66, -17, -34, 5, -45, 69, 14, 20, -7, 5, -61, -18, -55, -21, -16, 40, -38, 8, 4, 5, 8, -22, -4, 25, 27, -16, -32, 41, 73, 48, 27, 26, -11, 26, -52, 13, 23, -7, -83, 5, -37, 11, -20, -25, -4, -28, 10, 15, -9, 39, -47, 48, 15, -56, 15, -44, 10, 45, -46, -2, -42, -41, 23, -3, -9, 28, -19, -41, -30, -19, -12, -53, 14, 14, 33, -28, -11, -19, 3, 28, -2, -35, 60, 24, -5, 50, 6, 34, 23, 46, -57, 19, -1, 13, 1, 20, 9, -20, -8, 36, 21, -16, -31, 18, 69, -30, 21, -56, 18, -11, 2, 55, -53, 11, -39, -25, -82, -9, 18, 12, -62, -73, -89, 19, -75, -43, -11, -9, 35, -14, -38, 16, 16, -10, -25, -70, -8, 47, -27, -7, 40, -48, 4, -58, 41, 24, -6, -20, -22, -10, -43, -11, -18, -24, 27, -27, -123, 27, -13, 5, 5, 50, -20, -33, 14, -104, -5, -60, -8, -47, -80, 2, 21, 18, -12, 30, 11, 6, -50, -12, 17, 23, -62, -11, -43, -57, -49, -12, 14, -3, 49, -36, 15, 16, -18, 6, 29, 22, 18, 7, -51, -56, -38, -8, -5, 36, -22, 29, -29, -24, 25, -3, 39, -42, 9, 31, -20, 6, -69, -30, -14, -5, 43, 39, 32, -6, 49, 13, -19, -88, 25, -15, -34, 20, 16, -30, 26, 7, -47, -68, 56, 24, -5, -60, 8, 58, -50, -49, 21, 29, 8, 7, -4, -15, 45, -46, 4, -14, 27, 50, 55, 35, 24, 26, 0, 19, 33, 16, 41, -9, 52, 2, -88, 26, -16, 18, 56, 38, -11, -47, 27, 20, -2, 5, 17, -26, 13, 44, -53, -33, 28, 49, 33, -33, 12, 27, 39, -6, 43, -31, -1, -17, -21, -30, -3, -15, 4, -81, 17, -51, 11, 20, 30, -29, 21, 12, 56, -45, 18, -21, 39, -13, 16, 38, -49, 26, -16, -24, 7, -4, -11, -84, -25, -41, 18, 0, -38, 1, 12, -75, 12, 24, 13, -48, -22, -17, -16, -7, -86, 33, -42, 45, 38, 28, 46, 17, -35, -17, 1, -50, -53, -15, -8, 32, 30, -13, -11, 24, 2, -43, 86, 69, -21, -14, 28, 22, -3, -12, -11, 44, 20, 28, -3, -5, -10, -20, -39, -21, -31, 4, 1, 62, -4, -2, 1, 1, -19, 3, 31, 12, 5, -7, 24, 7, -11, 6, 26, -4, -48, -89, 9, -3, -50, -11, -29, 27, 7, -20, -95, -29, -45, -19, -31, -14, 68, 34, -15, 1, -2, 5, 61, -34, -13, 5, 14, 33, 31, 23, 10, 25, -49, 33, -39, -5, -19, 6, 22, 60, 13, -10, -41, -16, -15, 12, -48, -42, 21, -9, -7, 9, -2, 2, -37, -7, 27, 13, -15, -47, -43, 7, -43, -46, 1, 27, -41, 18, -31, 20, -16, 22, -84, -18, -2, 0, 14, 23, -21, 54, -44, -79, -24, -69, -1, 28, 10, 21, 8, -36, -6, 16, 38, 42, 45, 61, -48, -51, -17, -14, 67, 2, -7, -16, -7, 26, -29, -19, 32, -9, -49, 43, 1, -24, 25, -26, 2, 40, -13, -4, 10, -3, -5, -46, 1, -5, 62, -78, -17, 24, -4, -19, -15, -11, 39, 20, 40, 8, -4, -15, -26, 29, -18, -29, -13, 10, -98, -11, 8, -21, -45, -15, 18, 17, 31, -22, -45, -13, -8, 42, 3, -26, 14, 4, -14, 17, 50, -14, 28, 32, 35, -73, -2, -10, -10, 7, 30, 35, 16, 40, -61, 15, 1, -49, -24, -10, -11, -43, -52, 55, 9, 14, 48, 24, -24, 36, 20, -27, -29, -31, 21, -36, -19, -16, -25, -38, 6, 4, -74, -17, -25, 0, 6, 30, -5, -16, 22, 43, -33, -30, 47, 8, -11, 33, -1, -10, -2, -30, -10, 0, 45, -63, 6, -11, -12, 19, 85, -3, 8, -30, -12, -31, -60, 28, 50, -7, -19, -22, 7, -45, -27, -8, 12, -20, 5, -36, 35, 103, 4, -3, -17, -6, 13, 2, -24, 37, 23, 40, -47, 16, -59, 21, 16, 13, 30, -16, 26, 1, 1, -37, -10, 12, 37, -10, -24, 46, -17, -18, -46, 76, -36, 39, -17, 36, -3, 17, -44, -37, 0, -25, 69, -90, -58, -2, 31, -22, 18, -24, 32, 10, -41, 6, 35, 3, 10, 21, -34, 10, 62, 49, 37, 5, 91, 33, -32, -11, 8, 3, -22, -71, 3, -35, 5, -65, -2, -23, 63, -51, -29, 34, 14, 31, -12, 92, -1, -65, 35, 14, 38, 22, 1, -25, 21, 81, 20, -3, -18, -17, 3, -27, 24, -23, -40, 18, 24, 39, 11, 2, 15, 22, -27, 12, -14, 39, 16, -14, -25, 8, -67, 32, -32, -18, -57, -8, -7, 65, 45, 34, -36, -1, 27, 40, 54, -6, -6, -18, 21, 92, -18, 0, 59, 6, 52, 20, -29, -16, 3, 19, 82, 105, 12, -38, 14, 2, 55, -79, 11, 31, -15, 27, 61, 12, -39, -20, -6, 58, 10, -54, -7, -26, 12, -31, -29, -11, -4, -24, -32, -60, -8, -60, 15, -2, -27, -27, -2, 30, 4, -24, 42, -32, 30, 12, 16, 43, 83, -8, 35, 32, -43, -3, 1, -31, 18, -39, -13, 40, 3, -27, 12, -48, -67, -32, -56, -36, -38, -5, 45, 33, -3, 36, 45, -27, 53, -1, 0, 98, 8, -50, 29, -61, 34, 27, 15, 8, 34, 63, 50, 19, 16, 96, -8, -5, -18, 3, -3, 58, 18, 54, -14, -12, 2, -13, -31, 32, -41, -29, -41, 18, 74, -23, 71, -15, 14, 0, -35, -34, -24, 19, 17, -36, -66, -17, 25, 58, 25, 28, -3, 32, -95, -7, -35, 35, 18, 35, 24, 17, 23, -28, -70, 4, -10, -77, 16, -3, 2, 10, -1, 73, -42, 16, -15, 27, -14, -10, 0, 10, -32, -15, -14, -37, -35, 29, 24, 73, 61, 26, 10, -90, 6, 8, -48, -10, -4, -9, 33, -28, -14, -8, -27, 56, 13, -1, 12, 18, 46, 39, -17, -14, 29, -8, -3, -6, 82, 21, -8, -5, 11, 61, 5, -8, 45, -8, -8, 14, -4, -34, 41, 14, -11, -16, -4, -31, -23, 37, 29, -67, 4, 41, -30, 32, -32, -26, 3, -45, -20, -26, -10, 24, -33, -37, 8, 19, 32, -21, 2, -6, -10, 50, -22, -22, 77, -14, -43, 20, 28, -8, 3, -50, 26, 14, -72, 60, -28, -31, -28, 38, -5, 50, -30, -33, 86, 1, 13, 9, 19, 42, -17, 37, 8, 34, -33, 6, -26, 16, 37, -25, 40, 26, -18, -75, 80, 2, -20, 35, -4, 11, -30, 40, 25, 33, 17, -33, 22, 10, 57, 23, -15, -6, 12, 21, -8, -13, 21, 39, 14, 33, 18, 50, -19, -28, 86, -14, -11, -5, 24, 10, 32, -27, -19, 2, 50, -7, 93, 4, 1, -59, -28, 7, 3, -46, -11, 39, 13, -2, 5, -6, 3, 5, 34, 18, 40, -32, 39, -36, -29, 9, 8, 27, -19, 56, 16, 14, -71, 26, -19, -10, -14, -29, -8, 20, -33, 41, -21, 28, -66, 99, 1, -13, -18, -5, 51, -13, 37, 68, 82, 52, 27, -51, 123, 7, -17, -13, 79, 59, -45, -31, -46, 33, 6, 17, 37, -5, -23, -51, 18, 14, -45, -47, 21, 60, -72, -5, 38, 40, -24, 50, 19, 10, 21, -12, 27, 16, 46, 5, 5, -25, -8, 54, 11, -45, -31, -30, -12, 36, 33, -40, 51, 41, 120, 35, -35, 44, 63, 4, -68, -67, -20, 40, 52, 38, -28, -22, -1, -14, 56, -29, 9, -21, 7, 11, 60, -4, 4, -18, 13, 31, 10, 36, 0, -70, 77, 10, 69, 1, 33, 9, 42, -80, -5, -46, 43, -24, 61, -8, 50, -35, 2, -25, 21, 13, -32, 9, 6, 29, -10, -21, -9, -5, 48, -28, -70, -65, -30, -19, 26, -13, 73, -10, -28, 26, 85, -6, -6, 12, 26, 45, 9, 0, 16, -18, -15, -28, 62, -43, 10, 38, -8, 51, -24, -27, 62, -4, 58, 26, -4, 17, 8, -16, 23, 51, 41, 42, -24, 74, 3, 12, -12, -22, 36, -21, 0, -16, -31, 50, -49, 11, 7, -46, -2, -12, -6, -55, 60, -21, 18, 15, 16, -6, -33, -19, 20, -29, -12, -25, 22, -6, -62, 19, -18, 43, 2, -3, -25, -53, 47, 8, -1, -3, 68, 28, -1, 10, 78, 88, 54, -14, 70, -3, 29, -12, -26, 16, 53, -3, -2, -26, 17, 42, 23, -33, 42, -48, -30, 51, -6, 87, -28, -19, 18, -44, -21, 32, 19, 25, -16, -36, -2, 9, 106, -13, -14, 5, 26, -46, -16, -13, -8, 106, -3, 65, 23, 57, 58, -16, -8, -26, -10, -11, 0, -33, 58, 30, -3, -22, 65, 14, 48, 12, 54, 32, -22, 13, -38, 44, -10, -19, 7, 29, -14, -16, -1, 14, 51, 51, 54, 23, -15, -54, 9, -13, -1, 3, -21, 14, 4, 53, 7, -27, 34, 0, 72, 34, 20, 24, -34, -30, -12, 24, -34, -6, -20, 78, -4, -9, 55, -13, -30, 37, 12, 11, 57, 74, -38, -2, 17, 27, 8, -54, -2, 48, 9, -28, -17, 2, 24, -2, -35, 40, 8, 39, -19, -53, -42, -20, -5, -4, 7, -12, -4, -34, -27, 27, -57, -43, 75, 1, 23, -38, -55, -28, -15, 63, -16, -48, 18, -14, -14, 28, 1, -36, 46, 52, -59, -44, -44, 32, -2, -31, -29, 18, -34, 33, 19, 32, -23, 44, 22, 19, 3, 58, 0, 44, 4, 7, -9, -28, -18, 3, -43, 21, 4, 32, -2, 29, 6, -16, 67, -20, 2, 17, 12, 21, 30, 81, 31, 64, -9, -1, 38, 18, -25, 89, -37, -38, 5, -11, 46, -27, 27, 20, 99, -15, -8, -35, -26, -40, -45, 0, 45, 36, 8, 63, -1, 36, -6, -24, -11, 33, 3, -12, 12, -13, -105, -59, -33, 30, -17, -17, 11, -15, 22, -37, -6, -19, -40, 19, 14, 35, 37, 7, 21, -4, -44, -56, -4, 18, 0, -8, 38, 8, -14, 5, 14, 13, -6, 25, 8, -17, -52, 31, 63, 78, -10, 13, 68, 33, 16, -31, 6, 17, 107, 36, 44, -4, 49, 25, -57, -20, 36, 26, 21, -18, -66, 6, 27, 2, -25, -71, -11, -18, -28, -14, 64, -20, 48, 25, 13, 3, 0, -58, 2, 7, 43, -15, 35, -11, 46, 28, 2, 33, -44, -2, 27, 2, 35, -2, -14, 13, 32, 58, -21, -9, 58, 11, 42, -21, 45, -4, 49, -36, 19, 2, 84, -9, -31, -18, 2, -13, 15, -45, 0, 36, 13, 69, -1, -33, 5, 0, 12, 51, -59, 10, -32, -35, -67, -63, 62, 46, 24, 31, -76, 46, -36, -10, 12, 12, 10, 36, -38, 23, 66, -41, 21, 3, -47, -18, -13, -28, 28, 22, -11, 19, 9, 32, 22, 29, -53, 91, 14, -44, 16, 18, 9, -11, -34, -10, -8, 20, -10, 23, -21, -21, 36, 37, 31, 9, 84, 25, 12, 21, 47, 31, 2, -13, -17, 35, 50, -12, 6, -34, -1, 40, 5, -26, 34, -10, -69, -21, -20, -23, -43, -10, 26, 31, 19, -6, -30, -7, 2, -26, 59, }; const TfArray<2, int> tensor_dimension4 = { 2, { 3,1280 } }; const TfArray<1, float> quant4_scale = { 1, { 0.043294806033372879, } }; const TfLiteAffineQuantization quant4 = { (TfLiteFloatArray*)&quant4_scale, (TfLiteIntArray*)&g0::quant3_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data5[1280] = { -3646, -3204, -3339, -2471, -4041, -3463, -3790, -2801, -4020, -2597, -3699, -3575, -1934, -3539, -3455, -3311, -3532, -2555, -3358, -2556, -3385, -3974, -3572, -2437, -2816, -2780, -3418, -2515, -2887, -3498, -3571, -3320, -3377, -2984, -2453, -3752, -3306, -2952, -2952, -3583, -2900, -3440, -3773, -3231, -3081, -3029, -2969, -2714, -3271, -2533, -3199, -3168, -3898, -3880, -3987, -3804, -3237, -3153, -3748, -3573, -3279, -2941, -3060, -3977, -3258, -2785, -3318, -3320, -2924, -2657, -2816, -4851, -2953, -3493, -3991, -3588, -2747, -2664, -3217, -4093, -3803, -3633, -3495, -3254, -3708, -4097, -4386, -3108, -3987, -3104, -2497, -2293, -2995, -4011, -3372, -2720, -3483, -3138, -3069, -3716, -3273, -2769, -3945, -3345, -3605, -3579, -2583, -2353, -2991, -3206, -3275, -4187, -3855, -3553, -2918, -3044, -2704, -2176, -2691, -2776, -3613, -2908, -3428, -3186, -2458, -3646, -3080, -2901, -4115, -2690, -2654, -3333, -3826, -2761, -3899, -3017, -2863, -3306, -3131, -3900, -3663, -3065, -3541, -3516, -3424, -4031, -3470, -3720, -3350, -3074, -2974, -3852, -4069, -3816, -2745, -3737, -3212, -3439, -3557, -3351, -3279, -2592, -3577, -3244, -3092, -3283, -2565, -2782, -3139, -3332, -2474, -2729, -3469, -2978, -3882, -3769, -3685, -2622, -3064, -4282, -2952, -3464, -3362, -3592, -2742, -3887, -3063, -3122, -2792, -3526, -2730, -3344, -2708, -3704, -3849, -3097, -3561, -4031, -3168, -2977, -3545, -3972, -3132, -3199, -3231, -2958, -3506, -3003, -2413, -3408, -3343, -3562, -3991, -3056, -3530, -3320, -3137, -3287, -3247, -2512, -3131, -2353, -2926, -3264, -3165, -4187, -3548, -2730, -3269, -3589, -3766, -3367, -3541, -3162, -3439, -3654, -3553, -3390, -4109, -3704, -3465, -2611, -3051, -3528, -3516, -3807, -3781, -3293, -2737, -2848, -3211, -3474, -2917, -3056, -3561, -3087, -3604, -2732, -3386, -3258, -2839, -3185, -3127, -2935, -2984, -3263, -3408, -3855, -3535, -2866, -2115, -3694, -3379, -2256, -3254, -3206, -2782, -3779, -2935, -3440, -4304, -3191, -3691, -3405, -2505, -2925, -3501, -2599, -3343, -2955, -2446, -2693, -3240, -3984, -3900, -2640, -3066, -3246, -3411, -3116, -2503, -3856, -3182, -3383, -2817, -2903, -2308, -3507, -3255, -3478, -2550, -3495, -2733, -3349, -2640, -3549, -3457, -3194, -4652, -3189, -3071, -2968, -4236, -3568, -4039, -3116, -3194, -3455, -3533, -2902, -3159, -3619, -3599, -3448, -3186, -3573, -2568, -4323, -3369, -1887, -3352, -3590, -3113, -3488, -3360, -2491, -2502, -2685, -3164, -3649, -3424, -3948, -3043, -3185, -3047, -3066, -4027, -3178, -2666, -2971, -2860, -2216, -3799, -3942, -2532, -2752, -3492, -3331, -3924, -3974, -3622, -3107, -2847, -3374, -3220, -3455, -3130, -3687, -2247, -3514, -3590, -3531, -2517, -2801, -3440, -3292, -3807, -3726, -3198, -4133, -2722, -3572, -2629, -2632, -2879, -3209, -2961, -3132, -3733, -2371, -2663, -3259, -2568, -3037, -2931, -2989, -2510, -4032, -4116, -3168, -2797, -3391, -3271, -3088, -3055, -3565, -3156, -3660, -3968, -3344, -3015, -3477, -3107, -4204, -3562, -2378, -3106, -3691, -3337, -3899, -3035, -3068, -3517, -2201, -3681, -3340, -4112, -3346, -3158, -2966, -3489, -3296, -2534, -2971, -2706, -3092, -3469, -2984, -3756, -3059, -3014, -3132, -3912, -2316, -3078, -2866, -3531, -3490, -3101, -2396, -3475, -3075, -3894, -3271, -3430, -3270, -3071, -2983, -3140, -3488, -2527, -3384, -2982, -2448, -3072, -3273, -2876, -2389, -2861, -3705, -2746, -3498, -3550, -2688, -3287, -3108, -3803, -3080, -3056, -3093, -2988, -2465, -3512, -3966, -2492, -3302, -2477, -3385, -3736, -3632, -2927, -3306, -3120, -3379, -3251, -3256, -3165, -3023, -3918, -3150, -2591, -3997, -3196, -3130, -3400, -2574, -2743, -3339, -3604, -3227, -2537, -2622, -3100, -3429, -3315, -3111, -2953, -3160, -2786, -3528, -3252, -2718, -3324, -3016, -3412, -3873, -3296, -2691, -3256, -4494, -2858, -2670, -3549, -2862, -2860, -4652, -3165, -3448, -3369, -3510, -3129, -3281, -2549, -2243, -3139, -3921, -3553, -3561, -2897, -3864, -2783, -2902, -3358, -3297, -4527, -2244, -3161, -4004, -3554, -3517, -3673, -2888, -3435, -3521, -3854, -2700, -3423, -3156, -4149, -4149, -3325, -2515, -3586, -3549, -4132, -2416, -3262, -3122, -3524, -3870, -3100, -2960, -4132, -3959, -4017, -3349, -2900, -3303, -3931, -2813, -3764, -3455, -2891, -3542, -2926, -3486, -2880, -1973, -2834, -2170, -3872, -3925, -3748, -3786, -3805, -3737, -3326, -2422, -2718, -3343, -3512, -3160, -2804, -3552, -3084, -3242, -3460, -3727, -3491, -2574, -2327, -4033, -4243, -2289, -3425, -2767, -3989, -3129, -2986, -3074, -3616, -3382, -3467, -3626, -2782, -3275, -3204, -3297, -2721, -3291, -2684, -3504, -3173, -2647, -3718, -3183, -2945, -3377, -3291, -3147, -3481, -3651, -4101, -3242, -3305, -2747, -3496, -3120, -3266, -2780, -3852, -2510, -3477, -3904, -3256, -2732, -3162, -3219, -3271, -2671, -3760, -3354, -2604, -3640, -4171, -3679, -2711, -2921, -3607, -3503, -3437, -2990, -2990, -3312, -3078, -2844, -2701, -3254, -3138, -4157, -3987, -3488, -4104, -3815, -3435, -3676, -3436, -3833, -2702, -3354, -2863, -2839, -3672, -3990, -3125, -2607, -3245, -4652, -4043, -2929, -3804, -3533, -3421, -3455, -3490, -3296, -4158, -2769, -3194, -3241, -3598, -4120, -3596, -3234, -3794, -3817, -3512, -3627, -3109, -2742, -3435, -3100, -3593, -3922, -3511, -3597, -4081, -3391, -3574, -3116, -3193, -2562, -3474, -3351, -3641, -3364, -3592, -2785, -4075, -2948, -2288, -3143, -3088, -2808, -3198, -4250, -3299, -3730, -2140, -3251, -2979, -3063, -3091, -2909, -3543, -4040, -3503, -2673, -2640, -4242, -3699, -3717, -3134, -2863, -2852, -3680, -3873, -3306, -3723, -2999, -2796, -2477, -3725, -3172, -3935, -3609, -4163, -3274, -2370, -3496, -3282, -4287, -2690, -3822, -2425, -3494, -2695, -3377, -3067, -3967, -3580, -3109, -4448, -3676, -2665, -3175, -3925, -2609, -2769, -3410, -3227, -4035, -3121, -2779, -3471, -3945, -3272, -2914, -3483, -3009, -2488, -2786, -3396, -2998, -3213, -3432, -2936, -3656, -2973, -3156, -3539, -3465, -2759, -3616, -3740, -3809, -2909, -3116, -3176, -3853, -3599, -3103, -3585, -3820, -3857, -2749, -3852, -2925, -3096, -2606, -3933, -3056, -3556, -3161, -3473, -3222, -3408, -3367, -2875, -3433, -3109, -3464, -3282, -2924, -3672, -3151, -3494, -4032, -2560, -3258, -3378, -3140, -3649, -4137, -3497, -3835, -3391, -4027, -3424, -3316, -4678, -2943, -3734, -3031, -2914, -2924, -3170, -3527, -2312, -2599, -2931, -3271, -3275, -3351, -3581, -3020, -3356, -3244, -4148, -2935, -3241, -2887, -3695, -3681, -3138, -2532, -2844, -3617, -3391, -3858, -3327, -2903, -3236, -2919, -3273, -3267, -3469, -3746, -3068, -3133, -3272, -2681, -2907, -3229, -3212, -3481, -3337, -3747, -3467, -3597, -3585, -3237, -2966, -3070, -3302, -2877, -3299, -2807, -3205, -3778, -3081, -3632, -3147, -3726, -3185, -3664, -3971, -3693, -2722, -2996, -3384, -3832, -3654, -2935, -3931, -3863, -4536, -3363, -3204, -2641, -3968, -4146, -2973, -3172, -3139, -3259, -3145, -3326, -3564, -3950, -2638, -3549, -2322, -3724, -3670, -3088, -3148, -3428, -3248, -3364, -3344, -2984, -3407, -3404, -3103, -3195, -3584, -2898, -3551, -2952, -4003, -3542, -2540, -3535, -3213, -3518, -3179, -3404, -3575, -3513, -2787, -2545, -3142, -3067, -3087, -4048, -3619, -3242, -3183, -2898, -2371, -3326, -3221, -3451, -3727, -3357, -4391, -2810, -3165, -3215, -3952, -3200, -3243, -3519, -3589, -3464, -3862, -3063, -2734, -2613, -3790, -3764, -3273, -2572, -4116, -2834, -3326, -3364, -3501, -3256, -3315, -2840, -2923, -3123, -3020, -2838, -3659, -3693, -3579, -3180, -3686, -3342, -3379, -3934, -3703, -3176, -2947, -4181, -2514, -3764, -3710, -3357, -3144, -3236, -3606, -3756, -2956, -3522, -3164, -3489, -2930, -2988, -2932, -2641, -3717, -3127, -3092, -3164, -3108, -2950, -2983, -3579, -3091, -3449, -2906, -3254, -3249, -3341, -3264, -2967, -3737, -2583, -3675, -3582, -3605, -3361, -2509, -3368, -3449, -4733, -3940, -3368, -3388, -3454, -2050, -2483, -3472, -3180, -3316, -3949, -3395, -3888, -4180, -3563, -3748, -3044, -3506, -3401, -3705, -3750, -3671, -3261, -3200, -2566, -4043, -2970, -3397, -3355, -3401, -3070, -3318, -2957, -3259, -2805, -3333, -3111, -3304, -3515, -2821, -3053, -2449, -3126, -3159, -2674, -2962, -3328, -3349, -2683, -3449, -3502, -1948, -2975, -3754, -3255, -3714, -2301, -3036, -3519, -3511, -2884, -2893, -3009, -3424, -2782, -3634, -3871, -2784, -3175, -3494, -3128, -2644, -3532, -3420, -3293, -2826, -2766, -3547, -3425, -3024, -2715, -2798, -3274, -3091, -3301, -2724, -3088, -2947, -3500, -3841, -2376, -3271, -2454, -4296, -4367, -2832, -4033, -3219, -3407, -3801, -3435, -4286, -3046, -3008, -3431, -3400, -3754, -3850, -3028, -3806, -3189, -2864, -3646, -2591, -2613, -2446, -3775, -4131, -4239, -2810, -2543, -3331, -3776, -3265, -2609, -3645, -3366, -3025, -2787, -2757, -4404, -3612, -3553, -2819, -3554, -3668, -3002, -3041, -3072, -3786, -3707, -3141, -3709, -3079, -3366, -3664, -3001, -3463, -2830, -3704, -3430, -2398, -3231, -3830, -2670, -3697, -3246, -3452, -3902, -4141, -4329, -3575, -3112, -3281, -2744, -2751, -2741, -3187, -3307, -2641, -3727, }; const TfArray<1, int> tensor_dimension5 = { 1, { 1280 } }; const TfArray<1280, float> quant5_scale = { 1280, { 5.5538755987072363e-05, 5.91267817071639e-05, 6.0256654251134023e-05, 7.8328193922061473e-05, 5.258115561446175e-05, 6.3234394474420696e-05, 6.676348129985854e-05, 8.0710196925792843e-05, 5.0496786570874974e-05, 7.3447903560008854e-05, 4.9187543481821194e-05, 5.6559569202363491e-05, 0.00010754485992947593, 5.9081969084218144e-05, 6.8071502028033137e-05, 6.7305816628504544e-05, 6.08893133176025e-05, 9.3373048002831638e-05, 6.4003790612332523e-05, 7.92408682173118e-05, 6.2470833654515445e-05, 5.3751751693198457e-05, 5.6364613556070253e-05, 7.4075724114663899e-05, 8.1271566159557551e-05, 7.8202021541073918e-05, 5.8031902881339192e-05, 7.8931814641691744e-05, 6.6324500949122012e-05, 5.6134911574190482e-05, 6.005432442179881e-05, 5.990559293422848e-05, 6.1128550441935658e-05, 7.4980351200792938e-05, 7.5538853707257658e-05, 5.6763445172691718e-05, 7.1729598857928067e-05, 6.4473861129954457e-05, 6.5667009039316326e-05, 6.1377359088510275e-05, 8.220511517720297e-05, 6.2961764342617244e-05, 5.0427388487150893e-05, 6.8837223807349801e-05, 6.2540864746551961e-05, 6.468452193075791e-05, 6.3839790527708828e-05, 7.3392933700233698e-05, 5.9873233112739399e-05, 8.5158746514935046e-05, 7.5013755122199655e-05, 6.7886598117183894e-05, 6.0670554375974461e-05, 5.1870098104700446e-05, 5.0117436330765486e-05, 6.1667313275393099e-05, 6.4369967731181532e-05, 6.4952626416925341e-05, 5.6410241086268798e-05, 7.5615178502630442e-05, 6.3473904447164387e-05, 6.7605411459226161e-05, 6.252479215618223e-05, 4.4697913835989311e-05, 6.4999803726095706e-05, 7.1221904363483191e-05, 6.2579885707236826e-05, 6.2531878938898444e-05, 6.1984581407159567e-05, 7.9003199061844498e-05, 6.7368040618021041e-05, 4.1240520658902824e-05, 6.7629756813403219e-05, 6.1617873143404722e-05, 4.5949163904879242e-05, 5.4488249588757753e-05, 7.0949194196145982e-05, 6.8609224399551749e-05, 6.7999630118720233e-05, 5.170533768250607e-05, 5.3005587687948719e-05, 5.0314916734350845e-05, 5.6499240599805489e-05, 6.2437939050141722e-05, 6.0435155319282785e-05, 5.0069666031049564e-05, 4.9039870646083727e-05, 6.406356260413304e-05, 4.8905254516284913e-05, 7.8051278251223266e-05, 7.7586832048837095e-05, 7.4974079325329512e-05, 6.9440808147192001e-05, 5.4106498282635584e-05, 6.026287519489415e-05, 8.3362450823187828e-05, 5.7697983720572665e-05, 6.6918495576828718e-05, 6.4689236751291901e-05, 5.4681244364473969e-05, 6.7857334215659648e-05, 6.2901672208681703e-05, 4.954709584126249e-05, 6.3508523453492671e-05, 6.132260023150593e-05, 6.0245572967687622e-05, 7.1131238655652851e-05, 8.6557309259660542e-05, 7.6361284300219268e-05, 6.8999332142993808e-05, 7.2612725489307195e-05, 5.1081337005598471e-05, 5.2832576329819858e-05, 6.1512750107795e-05, 7.7933458669576794e-05, 6.8030873080715537e-05, 6.8176370405126363e-05, 0.00010834833665285259, 7.4525130912661552e-05, 6.7253087763674557e-05, 6.2657840317115188e-05, 6.532000406878069e-05, 7.2297712904401124e-05, 5.8079433074453846e-05, 9.0008310507982969e-05, 5.5753549531800672e-05, 6.8072527938056737e-05, 5.9475434682099149e-05, 4.9139845941681415e-05, 8.2368504081387073e-05, 8.0396435805596411e-05, 6.4974272390827537e-05, 6.0783451772294939e-05, 6.8618188379332423e-05, 5.0370344979455695e-05, 7.9586781794205308e-05, 6.9810921559110284e-05, 6.3400540966540575e-05, 6.5147607529070228e-05, 5.4396216000895947e-05, 6.0887297877343372e-05, 7.0258640334941447e-05, 6.143077916931361e-05, 6.3663894252385944e-05, 5.8292062021791935e-05, 5.1820079534081742e-05, 5.6871536799008027e-05, 5.9597867220873013e-05, 5.7482695410726592e-05, 6.2185848946683109e-05, 7.811348041286692e-05, 5.9236495872028172e-05, 5.5003685702104121e-05, 5.2003419114043936e-05, 7.6340380473993719e-05, 6.0558289987966418e-05, 7.5636715337168425e-05, 5.4414358601206914e-05, 6.1655649915337563e-05, 5.7356366596650332e-05, 5.6854201829992235e-05, 7.2478651418350637e-05, 5.5938275181688368e-05, 6.704295810777694e-05, 7.4194264016114175e-05, 6.0093796491855755e-05, 8.4856692410539836e-05, 7.9704725067131221e-05, 6.6846499976236373e-05, 5.50036747881677e-05, 7.6212083513382822e-05, 7.3366623837500811e-05, 6.8909219407942146e-05, 7.258982805069536e-05, 4.8393420001957566e-05, 5.5600859923288226e-05, 5.4351959988707677e-05, 6.6677755967248231e-05, 6.7823450081050396e-05, 4.9566009693080559e-05, 6.4685431425459683e-05, 5.7805515098152682e-05, 6.0785547248087823e-05, 5.7449047744739801e-05, 7.8522847616113722e-05, 5.7109231420326978e-05, 5.7365647080587223e-05, 6.2984254327602684e-05, 6.8357716372702271e-05, 6.0668247897410765e-05, 7.6234326115809381e-05, 6.2061320932116359e-05, 8.6002670286688954e-05, 5.6580120144644752e-05, 5.5606327805435285e-05, 6.2650171457789838e-05, 5.3405732614919543e-05, 5.244872227194719e-05, 6.6296910517849028e-05, 7.1088987169787288e-05, 5.4357198678189889e-05, 5.4830790759297088e-05, 6.0848095017718151e-05, 6.8801804445683956e-05, 6.387461326085031e-05, 6.8253764766268432e-05, 6.5106229158118367e-05, 6.3093131757341325e-05, 7.8062927059363574e-05, 6.6343789512757212e-05, 6.8993394961580634e-05, 6.1277576605789363e-05, 5.8295172493671998e-05, 6.0075017245253548e-05, 5.4967291362117976e-05, 6.5135107433889061e-05, 7.2534188802819699e-05, 6.6357002651784569e-05, 6.4096690039150417e-05, 7.3488117777742445e-05, 6.7500142904464155e-05, 8.6190862930379808e-05, 6.4150772232096642e-05, 5.4793224990135059e-05, 6.939061131561175e-05, 4.9436381232226267e-05, 5.5570930271642283e-05, 7.3735674959607422e-05, 6.0929258324904367e-05, 5.6286957260454074e-05, 5.0907026889035478e-05, 6.1369551985990256e-05, 5.2964573114877567e-05, 6.3393345044460148e-05, 7.2231079684570432e-05, 5.2152230637148023e-05, 5.254132702248171e-05, 5.6492794101359323e-05, 5.0739377911668271e-05, 5.2325278375064954e-05, 5.1276285375934094e-05, 7.8712335380259901e-05, 6.7956636485178024e-05, 6.4936299168039113e-05, 6.6062981204595417e-05, 6.0166770708747208e-05, 5.4963755246717483e-05, 6.430048233596608e-05, 7.6042902946937829e-05, 7.0919551944825798e-05, 7.0851849159225821e-05, 5.9209149185335264e-05, 6.4745596318971366e-05, 7.0760215749032795e-05, 5.0972877943422645e-05, 6.6057829826604575e-05, 5.5018463172018528e-05, 7.8983292041812092e-05, 6.2933926528785378e-05, 6.3929917814675719e-05, 7.3895665991585702e-05, 7.0092137320898473e-05, 6.3515464717056602e-05, 7.6637232268694788e-05, 7.2171780630014837e-05, 5.9589987358776852e-05, 5.6358334404649213e-05, 5.5673015594948083e-05, 6.1749160522595048e-05, 7.0933390816207975e-05, 9.6697847766336054e-05, 5.4268493840936571e-05, 6.402154394891113e-05, 9.2484384367708117e-05, 7.4472292908467352e-05, 5.2490147936623544e-05, 7.2825314418878406e-05, 5.4521606216439977e-05, 8.0927347880788147e-05, 6.5918451582547277e-05, 4.8036574298748747e-05, 5.8664980315370485e-05, 5.4630952945444733e-05, 5.9313315432518721e-05, 9.1625603090506047e-05, 6.1957180150784552e-05, 5.5889533541630954e-05, 7.1590155130252242e-05, 5.8575391449267045e-05, 6.9495297793764621e-05, 9.1009736934211105e-05, 8.2078957348130643e-05, 6.3130035414360464e-05, 5.05762618558947e-05, 4.6456636482616886e-05, 7.0407862949650735e-05, 6.6081382101401687e-05, 5.8317142247688025e-05, 7.2028364229481667e-05, 6.4148829551413655e-05, 7.6263029768597335e-05, 5.0262289732927456e-05, 7.0970228989608586e-05, 5.9558464272413403e-05, 7.7788863563910127e-05, 6.9643152528442442e-05, 9.4050948973745108e-05, 4.9416357796872035e-05, 6.0721926274709404e-05, 7.2098715463653207e-05, 8.3006932982243598e-05, 5.3537976782536134e-05, 6.1524893681053072e-05, 6.2182472902350128e-05, 6.8455330620054156e-05, 5.9728081396315247e-05, 5.1261507906019688e-05, 6.9750130933243781e-05, 4.6509616367984563e-05, 6.8275803641881794e-05, 7.2575901867821813e-05, 6.4775726059451699e-05, 4.9823389417724684e-05, 5.3859144827583805e-05, 4.816211003344506e-05, 6.5686857851687819e-05, 6.9000081566628069e-05, 5.6685967138037086e-05, 6.1402759456541389e-05, 7.109916623448953e-05, 6.4108622609637678e-05, 5.9546062402660027e-05, 6.0535388911375776e-05, 6.533292616950348e-05, 6.6485983552411199e-05, 5.9912199503742158e-05, 8.7819775217212737e-05, 5.4833162721479312e-05, 6.1386825109366328e-05, 0.00010586038115434349, 6.040572770871222e-05, 6.9177440309431404e-05, 6.6139218688476831e-05, 5.7435361668467522e-05, 6.0232108808122575e-05, 8.7979977251961827e-05, 7.3398674430791289e-05, 7.0993657573126256e-05, 6.9551235355902463e-05, 5.9154859627597034e-05, 5.7062261475948617e-05, 5.1530714699765667e-05, 7.9075514804571867e-05, 6.1365964938886464e-05, 6.5759697463363409e-05, 5.6135668273782358e-05, 5.2338036766741425e-05, 6.6631531808525324e-05, 7.2732327680569142e-05, 8.0984413216356188e-05, 6.7458742705639452e-05, 9.0605906734708697e-05, 4.7482710215263069e-05, 6.1435384850483388e-05, 7.7523603977169842e-05, 7.2088274464476854e-05, 5.4828640713822097e-05, 6.4700790971983224e-05, 5.2668150601675734e-05, 4.6533259592251852e-05, 5.9409827372292057e-05, 6.9128574978094548e-05, 6.153751746751368e-05, 5.9519596106838435e-05, 6.8113113229628652e-05, 6.4986306824721396e-05, 7.3582275945227593e-05, 6.349258910631761e-05, 7.8343051427509636e-05, 6.0931510233785957e-05, 6.0720652982126921e-05, 5.76070997340139e-05, 8.1141275586560369e-05, 7.2137190727517009e-05, 5.5775388318579644e-05, 6.2535160395782441e-05, 5.8087109209736809e-05, 5.8938698202837259e-05, 7.0397181843873113e-05, 4.2737381590995938e-05, 7.586825086036697e-05, 5.6715780374361202e-05, 7.4259827670175582e-05, 7.0169560785870999e-05, 7.7065065852366388e-05, 6.3083563873078674e-05, 7.2409115091431886e-05, 7.4595598562154919e-05, 5.2746581786777824e-05, 9.1048503236379474e-05, 7.9749283031560481e-05, 6.4334701164625585e-05, 9.0022789663635194e-05, 7.5367352110333741e-05, 8.12294747447595e-05, 7.1315349487122148e-05, 8.4924613474868238e-05, 4.9084192141890526e-05, 4.9491172831039876e-05, 5.8390534832142293e-05, 6.6070591856259853e-05, 6.3308165408670902e-05, 6.1376274970825762e-05, 6.3748651882633567e-05, 7.2162518335971981e-05, 5.2630522986873984e-05, 6.078702790546231e-05, 5.8323701523477212e-05, 5.6315493566216901e-05, 5.5914391850819811e-05, 6.4594118157401681e-05, 6.2587103457190096e-05, 6.6886030253954232e-05, 4.7719477151986212e-05, 5.1137543778168038e-05, 9.1128102212678641e-05, 7.9988451034296304e-05, 6.5943626395892352e-05, 5.5485637858510017e-05, 5.399202200351283e-05, 6.4662221120670438e-05, 6.6667242208495736e-05, 5.4512751376023516e-05, 0.00010462704085512087, 6.6856722696684301e-05, 5.5372336646541953e-05, 5.0973776524187997e-05, 6.585645314771682e-05, 6.4171421399805695e-05, 7.8168850450310856e-05, 5.659916132572107e-05, 6.3274528656620532e-05, 7.7923315984662622e-05, 7.3963987233582884e-05, 7.8996061347424984e-05, 6.4847306930460036e-05, 5.3665669838665053e-05, 7.511791045544669e-05, 4.7417233872693032e-05, 7.6607444498222321e-05, 6.5852131228893995e-05, 6.0779660998377949e-05, 5.0609090976649895e-05, 9.5631548902019858e-05, 6.6538173996377736e-05, 7.1923292125575244e-05, 6.2788916693534702e-05, 6.2508974224328995e-05, 8.0390083894599229e-05, 9.6522540843579918e-05, 5.9485028032213449e-05, 6.7291475716046989e-05, 5.2177423640387133e-05, 7.3226306994911283e-05, 5.7150162319885567e-05, 6.9134606746956706e-05, 7.1582719101570547e-05, 7.4612085882108659e-05, 6.2830360548105091e-05, 5.9193127526668832e-05, 9.2764916189480573e-05, 6.9001915107946843e-05, 7.9267825640272349e-05, 8.3309816545806825e-05, 5.8986763178836554e-05, 6.4938089053612202e-05, 8.1704660260584205e-05, 7.852171256672591e-05, 6.8357461714185774e-05, 5.3838764870306477e-05, 7.6114760304335505e-05, 5.982764923828654e-05, 5.6319364375667647e-05, 7.6738935604225844e-05, 5.5454544053645805e-05, 6.2916442402638495e-05, 5.887257430003956e-05, 7.2079965320881456e-05, 8.0283702118322253e-05, 6.6137705289293081e-05, 6.9146146415732801e-05, 7.8814555308781564e-05, 5.7094915973721072e-05, 5.7377474149689078e-05, 8.9306107838638127e-05, 6.9383750087581575e-05, 7.6247160905040801e-05, 7.4335039244033396e-05, 5.4179039580048993e-05, 5.8082059695152566e-05, 6.1593309510499239e-05, 6.6890170273836702e-05, 6.8564258981496096e-05, 7.2786751843523234e-05, 6.4615014707669616e-05, 6.7962675529997796e-05, 6.9089110183995217e-05, 6.3038656662683934e-05, 5.1394228648860008e-05, 6.6644046455621719e-05, 8.9929068053606898e-05, 4.7132463805610314e-05, 6.0003589169355109e-05, 6.6022796090692282e-05, 5.9137837524758652e-05, 9.3959752121008933e-05, 6.9113717472646385e-05, 6.0724178183590993e-05, 5.7179182476829737e-05, 7.4857991421595216e-05, 8.5461149865295738e-05, 6.7685054091271013e-05, 7.5770389230456203e-05, 6.9911424361635e-05, 6.2962753872852772e-05, 5.9096320910612121e-05, 7.5810399721376598e-05, 7.2257294959854335e-05, 8.1696547567844391e-05, 5.4955220548436046e-05, 5.8875742979580536e-05, 6.9748508394695818e-05, 6.3628664065618068e-05, 6.5761756559368223e-05, 6.3815139583311975e-05, 5.0579310482135043e-05, 6.0217611462576315e-05, 6.8502464273478836e-05, 6.9390400312840939e-05, 5.1115901442244649e-05, 7.1500617195852101e-05, 7.2653019742574543e-05, 5.5479558795923367e-05, 7.0226647949311882e-05, 6.455117545556277e-05, 4.4065902329748496e-05, 6.0474754718597978e-05, 6.2317878473550081e-05, 5.7650926464702934e-05, 4.9799080443335697e-05, 6.4637679315637797e-05, 5.7840541558107361e-05, 8.737199823372066e-05, 9.8091106337960809e-05, 6.6946027800440788e-05, 6.176892202347517e-05, 5.4680724133504555e-05, 5.5616950703551993e-05, 7.7798853453714401e-05, 4.9803227739175782e-05, 7.5701223977375776e-05, 8.4217797848396003e-05, 6.0240658058319241e-05, 6.1189632106106728e-05, 4.4156902731629089e-05, 8.136028191074729e-05, 6.7289962316863239e-05, 4.8036930820671842e-05, 5.6854747526813298e-05, 5.9387264627730474e-05, 4.9050315283238888e-05, 8.3724138676188886e-05, 6.3325991504825652e-05, 6.1675185861531645e-05, 5.341660653357394e-05, 8.635364065412432e-05, 6.311736797215417e-05, 6.7836765083484352e-05, 5.0613049097592011e-05, 5.0776277930708602e-05, 5.7361281506018713e-05, 7.5904579716734588e-05, 5.9234527725493535e-05, 5.6524775573052466e-05, 5.267647429718636e-05, 8.0300502304453403e-05, 6.3262639741878957e-05, 6.0582009609788656e-05, 6.9728965172544122e-05, 4.4955559133086354e-05, 6.6494932980276644e-05, 7.4103227234445512e-05, 5.0115715566789731e-05, 4.9235652113566175e-05, 4.9949023377848789e-05, 7.2239476139657199e-05, 6.6826192778535187e-05, 6.3929481257218868e-05, 5.1624876505229622e-05, 7.6757874921895564e-05, 5.5369077017530799e-05, 5.2769039029954001e-05, 6.5112639276776463e-05, 5.1307066314620897e-05, 6.2772087403573096e-05, 5.4529991757590324e-05, 7.5336552981752902e-05, 0.00010527990525588393, 7.5589181506074965e-05, 0.0001082330709323287, 5.7805453252512962e-05, 5.1236504077678546e-05, 6.2586455896962434e-05, 6.0372127336449921e-05, 5.4123789595905691e-05, 5.0293543608859181e-05, 5.6916513131000102e-05, 9.5709132438059896e-05, 8.0238132795784622e-05, 6.9188710767775774e-05, 6.622146611334756e-05, 6.1985367210581899e-05, 6.9837231421843171e-05, 5.4865857237018645e-05, 6.5526881371624768e-05, 6.8849643866997212e-05, 5.2532861445797607e-05, 5.0553939217934385e-05, 6.7637207394000143e-05, 8.6775653471704572e-05, 9.2337177193257958e-05, 5.3255451348377392e-05, 4.9094604037236422e-05, 8.2161743193864822e-05, 6.1695362091995776e-05, 9.3693728558719158e-05, 4.5982498704688624e-05, 7.0042762672528625e-05, 7.0070047513581812e-05, 5.9044279623776674e-05, 4.9290738388663158e-05, 6.4318024669773877e-05, 6.2798389990348369e-05, 5.6363482144661248e-05, 7.2483628173358738e-05, 5.9415160649223253e-05, 6.1113809351809323e-05, 6.6392392909619957e-05, 8.4695995610672981e-05, 6.1141654441598803e-05, 8.3378065028227866e-05, 6.1820537666790187e-05, 5.8582518249750137e-05, 8.1940423115156591e-05, 5.2013147069374099e-05, 6.483399192802608e-05, 7.0787835284136236e-05, 6.7638262407854199e-05, 6.294629565672949e-05, 6.5623164118733257e-05, 5.7464803830953315e-05, 5.2479284931905568e-05, 5.5858592531876639e-05, 7.2291069955099374e-05, 6.5920023189391941e-05, 6.8251414631959051e-05, 5.41526242159307e-05, 6.5407177316956222e-05, 6.0605980252148584e-05, 7.7550204878207296e-05, 5.4694213758921251e-05, 7.5825424573849887e-05, 5.8785259170690551e-05, 5.7848665164783597e-05, 7.5309064413886517e-05, 7.1885609941091388e-05, 5.9701869759010151e-05, 5.7588400522945449e-05, 6.8875255237799138e-05, 8.0869605881161988e-05, 5.4696920415153727e-05, 5.7752509746933356e-05, 9.4076225650496781e-05, 5.7062574342126027e-05, 5.2070583478780463e-05, 5.3305768233258277e-05, 7.4733216024469584e-05, 7.6548167271539569e-05, 5.825419066241011e-05, 5.382013478083536e-05, 6.4071828091982752e-05, 7.7208431321196258e-05, 7.8625365858897567e-05, 6.5800784796010703e-05, 6.3969637267291546e-05, 6.1528167861979455e-05, 7.7582284575328231e-05, 6.3850719016045332e-05, 6.6066852014046162e-05, 4.7165398427750915e-05, 4.9333088099956512e-05, 6.2161874666344374e-05, 5.7534489315003157e-05, 5.9770693042082712e-05, 6.6101187258027494e-05, 6.6578140831552446e-05, 6.0557315009646118e-05, 5.6470889830961823e-05, 7.2919123340398073e-05, 7.0876492827665061e-05, 6.8775996624026448e-05, 7.1604139520786703e-05, 5.7357494370080531e-05, 4.6170709538273513e-05, 6.5653766796458513e-05, 8.3568651461973786e-05, 6.04843589826487e-05, 4.9545160436537117e-05, 5.4509950132342055e-05, 7.1561305958312005e-05, 5.2995506848674268e-05, 6.0548234614543617e-05, 5.7153989473590627e-05, 6.2455743318423629e-05, 6.0401598602766171e-05, 5.7937591918744147e-05, 4.7234327212208882e-05, 6.8756315158680081e-05, 7.9886340245138854e-05, 6.722036050632596e-05, 6.2564831750933081e-05, 4.9961607146542519e-05, 5.1553910452639684e-05, 5.7713587011676282e-05, 6.1396494857035577e-05, 5.1816034101648256e-05, 5.8627138059819117e-05, 5.0586033466970548e-05, 5.5361248087137938e-05, 8.0377350968774408e-05, 6.2257415265776217e-05, 7.0960981247480959e-05, 5.4729345720261335e-05, 5.6050521379802376e-05, 6.2563209212385118e-05, 6.6257343860343099e-05, 4.7548539441777393e-05, 5.6462089560227469e-05, 5.4783795349067077e-05, 6.8155444751027972e-05, 5.9906444221269339e-05, 7.1470145485363901e-05, 5.382116069085896e-05, 5.8849749621003866e-05, 5.1954215450678021e-05, 5.8037028793478385e-05, 5.4798998462501913e-05, 7.0997921284288168e-05, 5.5567667004652321e-05, 7.4465577199589461e-05, 9.1308102128095925e-05, 6.0574668168555945e-05, 5.8782727137440816e-05, 8.261463517555967e-05, 6.5691470808815211e-05, 5.5125536164268851e-05, 6.0650949308183044e-05, 5.6422217312501743e-05, 0.00010533687600400299, 5.6761469750199467e-05, 6.4112784457392991e-05, 6.2239021644927561e-05, 6.5609543526079506e-05, 6.8087538238614798e-05, 5.603161480394192e-05, 5.0816837756428868e-05, 6.0297108575468883e-05, 7.4459894676692784e-05, 7.6936034020036459e-05, 4.910699135507457e-05, 4.9491194658912718e-05, 4.8997062549460679e-05, 6.1263468523975462e-05, 7.2134607762563974e-05, 7.6468058978207409e-05, 6.7732762545347214e-05, 5.8757632359629497e-05, 5.5096155847422779e-05, 6.8299166741780937e-05, 6.8155466578900814e-05, 8.097459067357704e-05, 9.5879207947291434e-05, 5.0630944315344095e-05, 7.5030198786407709e-05, 5.8352936321171001e-05, 5.3747960919281468e-05, 4.3936957808909938e-05, 6.0781479987781495e-05, 8.6471125541720539e-05, 4.9482103349873796e-05, 5.6479973864043131e-05, 4.9964528443524614e-05, 7.7492899436037987e-05, 6.4990184910129756e-05, 7.9406308941543102e-05, 6.0611884691752493e-05, 7.6485936006065458e-05, 6.4560525061096996e-05, 7.1066446253098547e-05, 5.3834748541703448e-05, 5.2932886319467798e-05, 5.907659578952007e-05, 3.8014899473637342e-05, 5.4809548601042479e-05, 7.3874572990462184e-05, 7.6093652751296759e-05, 5.1474413339747116e-05, 7.8325254435185343e-05, 7.1827533247414976e-05, 6.062429747544229e-05, 6.2338243878912181e-05, 5.1188395445933565e-05, 6.861839210614562e-05, 7.0350950409192592e-05, 5.7743076467886567e-05, 5.1040526159340516e-05, 6.5022235503420234e-05, 7.1044793003238738e-05, 6.274798943195492e-05, 8.8840257376432419e-05, 7.8933539043646306e-05, 7.6424432336352766e-05, 5.9895377489738166e-05, 6.2997773056849837e-05, 6.5641550463624299e-05, 5.2592469728551805e-05, 6.3528510509058833e-05, 6.0639842558884993e-05, 7.8471166489180177e-05, 7.0336434873752296e-05, 5.5186603276524693e-05, 5.5853877711342648e-05, 7.2412192821502686e-05, 6.1093407566659153e-05, 6.0502214182633907e-05, 6.0382724768714979e-05, 7.0005655288696289e-05, 6.7106826463714242e-05, 6.6333894210401922e-05, 5.8598528994480148e-05, 5.5677006457699463e-05, 5.965821401332505e-05, 5.617877104668878e-05, 5.2900417358614504e-05, 5.1214730774518102e-05, 6.8649154854938388e-05, 4.8801277443999425e-05, 6.1240389186423272e-05, 6.4776737417560071e-05, 7.1867965743876994e-05, 5.1045419240836054e-05, 5.8196772442897782e-05, 6.4969608501996845e-05, 6.1541817558463663e-05, 5.5624404922127724e-05, 5.8549754612613469e-05, 6.4955609559547156e-05, 6.1788596212863922e-05, 8.231301762862131e-05, 6.4223975641652942e-05, 6.1685394030064344e-05, 6.0365309764165431e-05, 6.1393628129735589e-05, 6.9354267907328904e-05, 5.3687708714278415e-05, 6.8720488343387842e-05, 6.5438660385552794e-05, 5.0975369958905503e-05, 8.7522697867825627e-05, 5.979196066618897e-05, 6.0792375734308735e-05, 6.9576235546264797e-05, 5.1693874411284924e-05, 4.6133191062835976e-05, 5.9282247093506157e-05, 4.993533730157651e-05, 5.4344356613000855e-05, 5.1789564167847857e-05, 6.7600543843582273e-05, 6.0138783737784252e-05, 4.2861174733843654e-05, 7.5501535320654511e-05, 5.6939570640679449e-05, 5.9036476159235463e-05, 7.0668553235009313e-05, 7.4398027209099382e-05, 6.7750312155112624e-05, 5.7340203056810424e-05, 9.664976823842153e-05, 7.4922761996276677e-05, 6.7977089202031493e-05, 7.2682450991123915e-05, 7.4891155236400664e-05, 6.630206189583987e-05, 5.2403600420802832e-05, 7.5103089329786599e-05, 7.0537833380512893e-05, 6.0569502238649875e-05, 5.0511542212916538e-05, 7.7825767220929265e-05, 7.2892187745310366e-05, 6.774713983759284e-05, 6.6088003222830594e-05, 6.8019216996617615e-05, 6.7695065808948129e-05, 6.524493801407516e-05, 5.5559386964887381e-05, 5.0373721023788676e-05, 6.15371682215482e-05, 5.2711526222992688e-05, 5.9707330365199596e-05, 6.6605214669834822e-05, 5.8269357396056876e-05, 8.270239777630195e-05, 7.1198213845491409e-05, 5.6840450270101428e-05, 5.938215326750651e-05, 5.2855259127682075e-05, 6.8917986936867237e-05, 6.4133630075957626e-05, 6.4643107180017978e-05, 7.3701645305845886e-05, 6.2844374042470008e-05, 6.5164356783498079e-05, 6.4708583522588015e-05, 5.9909689298365265e-05, 5.9362442698329687e-05, 5.7345456298207864e-05, 5.2448624046519399e-05, 5.6962890084832907e-05, 6.8540328356903046e-05, 7.6977754360996187e-05, 7.6568328950088471e-05, 6.0988826589891687e-05, 7.0761772803962231e-05, 7.9631579865235835e-05, 6.0399830545065925e-05, 6.9683170295320451e-05, 6.3496256188955158e-05, 5.1968341722385958e-05, 7.4739662522915751e-05, 5.7479745009914041e-05, 5.9468879044288769e-05, 5.7196117268176749e-05, 6.3933810451999307e-05, 5.4374104365706444e-05, 5.3591484174830839e-05, 5.0550697778817266e-05, 6.5756576077546924e-05, 7.04641715856269e-05, 6.1403916333802044e-05, 5.2804109145654365e-05, 5.4655003623338416e-05, 6.6699467424768955e-05, 5.250415051705204e-05, 5.5589749536011368e-05, 4.5155724365031347e-05, 6.5886299125850201e-05, 7.0227499236352742e-05, 7.2889997682068497e-05, 4.9621306970948353e-05, 5.3068830311531201e-05, 6.2668928876519203e-05, 6.8677436502184719e-05, 6.1839840782340616e-05, 6.2510298448614776e-05, 6.4178049797192216e-05, 6.3533647335134447e-05, 6.0697402659570798e-05, 5.4182950407266617e-05, 6.6945627622772008e-05, 6.2544670072384179e-05, 9.4411094323731959e-05, 6.0078549722675234e-05, 5.3896026656730101e-05, 6.4763662521727383e-05, 6.7469518398866057e-05, 6.4664389356039464e-05, 7.0959824370220304e-05, 6.0860988014610484e-05, 6.0168327763676643e-05, 6.5965512476395816e-05, 5.3624709835276008e-05, 5.7352983276359737e-05, 6.5082444052677602e-05, 5.9567068092292175e-05, 5.0245947932126001e-05, 8.1024067185353488e-05, 5.4720978369005024e-05, 6.8660920078400522e-05, 5.5548651289427653e-05, 5.0137517973780632e-05, 8.6198808276094496e-05, 5.7376189943170175e-05, 6.6612199589144439e-05, 5.1983788580400869e-05, 6.022496017976664e-05, 5.6486198445782065e-05, 6.3949039031285793e-05, 5.5703389080008492e-05, 6.9983274443075061e-05, 8.579531277064234e-05, 7.5924464908894151e-05, 7.6304153481032699e-05, 7.6162359619047493e-05, 5.7868219300871715e-05, 6.1913153331261128e-05, 6.7810622567776591e-05, 6.6287459048908204e-05, 6.7903238232247531e-05, 7.8942917753010988e-05, 6.4849562477320433e-05, 5.9681166021618992e-05, 6.3928418967407197e-05, 5.4608193750027567e-05, 6.1922532040625811e-05, 4.6096523874439299e-05, 6.6231921664439142e-05, 7.2928691224660724e-05, 7.7908080129418522e-05, 5.9751724620582536e-05, 6.4644198573660105e-05, 5.8475645346334204e-05, 6.2296319811139256e-05, 6.4779742388054729e-05, 5.6458226026734337e-05, 5.4601929150521755e-05, 6.7209075496066362e-05, 7.8369768743868917e-05, 7.6302843808662146e-05, 5.5510932725155726e-05, 5.1655362767633051e-05, 7.3026349127758294e-05, 7.8080796811264008e-05, 5.1958810217911378e-05, 8.1515638157725334e-05, 5.8096837165066972e-05, 6.0771370044676587e-05, 5.6341614254051819e-05, 6.3075160142034292e-05, 5.3808584198122844e-05, 7.0188842073548585e-05, 7.2200113208964467e-05, 6.3297709857579321e-05, 7.7525568485725671e-05, 7.1364142058882862e-05, 4.9644560931483284e-05, 5.783745291410014e-05, 5.6310738727916032e-05, 6.3818988564889878e-05, 6.2136416090652347e-05, 6.793546344852075e-05, 6.3173421949613839e-05, 6.0566642787307501e-05, 5.1786159019684419e-05, 5.8702949900180101e-05, 6.9777968747075647e-05, 5.6178101658588275e-05, 8.3931401604786515e-05, 5.8389665355207399e-05, 6.3309387769550085e-05, 5.7860303058987483e-05, 6.9950008764863014e-05, 6.0764345107600093e-05, 5.9640504332492128e-05, 5.5924039770616218e-05, 6.9289766543079168e-05, 6.1607766838278621e-05, 6.8535257014445961e-05, 5.8784971770364791e-05, 7.0215108280535787e-05, 6.4618514443282038e-05, 7.1289759944193065e-05, 7.8396005847025663e-05, 6.213901360752061e-05, 7.1182890678755939e-05, 5.5795168009353802e-05, 7.5091375038027763e-05, 5.4703807109035552e-05, 7.0133515691850334e-05, 6.6633147071115673e-05, 6.008693526382558e-05, 6.4131701947189867e-05, 4.982766040484421e-05, 7.8739751188550144e-05, 6.7259054048918188e-05, 5.8699581131804734e-05, 6.7216002207715064e-05, 6.0995967942290008e-05, 7.0992849941831082e-05, 5.7068751630140468e-05, 7.4695875809993595e-05, 6.2840292230248451e-05, 5.0532784371171147e-05, 5.1222348702140152e-05, 6.7368615418672562e-05, 8.4228689956944436e-05, 5.5939730373211205e-05, 6.0708727687597275e-05, 4.8126588808372617e-05, 4.8517111281398684e-05, 5.1816434279317036e-05, 6.3460574892815202e-05, 5.8521938626654446e-05, 0.00011387461563572288, 8.396325574722141e-05, 6.3415456679649651e-05, 6.4532519900240004e-05, 6.7172804847359657e-05, 5.4629137594019994e-05, 5.8527068176772445e-05, 6.1977974837645888e-05, 5.4972722864476964e-05, 5.4016116337152198e-05, 6.0083773860242218e-05, 6.8107343395240605e-05, 5.5556803999934345e-05, 6.0278201999608427e-05, 6.0378806665539742e-05, 5.2874620450893417e-05, 5.0611593906069174e-05, 6.4075851696543396e-05, 6.2124672695063055e-05, 8.8013934146147221e-05, 5.5784974392736331e-05, 6.7565582867246121e-05, 6.5589789301156998e-05, 5.7028071751119569e-05, 5.2959643653593957e-05, 7.3870120104402304e-05, 6.125729123596102e-05, 6.8203487899154425e-05, 6.5934793383348733e-05, 7.45115612517111e-05, 6.7220054916106164e-05, 6.04513734288048e-05, 6.7931978264823556e-05, 6.2151098973117769e-05, 8.1134312495123595e-05, 6.4401603594888002e-05, 8.8139073341153562e-05, 6.4431194914504886e-05, 6.0522583225974813e-05, 8.0535828601568937e-05, 6.7924600443802774e-05, 5.8785430155694485e-05, 6.4062231103889644e-05, 5.6152817705878988e-05, 5.6028751714620739e-05, 6.6790387791115791e-05, 0.00010167360596824437, 6.4374326029792428e-05, 5.4924796131672338e-05, 6.2414284911938012e-05, 6.4987398218363523e-05, 9.5271992904599756e-05, 6.013046731823124e-05, 5.9456655435496941e-05, 5.8043307944899425e-05, 7.0119429437909275e-05, 6.8120672949589789e-05, 7.2514609200879931e-05, 6.0342841607052833e-05, 8.3832659584004432e-05, 5.1469705795170739e-05, 4.6711622417205945e-05, 8.8301509094890207e-05, 7.051683496683836e-05, 6.4195926825050265e-05, 5.6783173931762576e-05, 7.6699776400346309e-05, 5.8179262850899249e-05, 6.4260297222062945e-05, 6.9744397478643805e-05, 6.1845690652262419e-05, 8.0128789704758674e-05, 5.0207410822622478e-05, 6.257343920879066e-05, 6.8352070229593664e-05, 8.3664912381209433e-05, 6.3917097577359527e-05, 6.5656662627588958e-05, 6.2600076489616185e-05, 6.5196094510611147e-05, 6.7374356149230152e-05, 7.2885122790466994e-05, 7.1304741140920669e-05, 6.5197302319575101e-05, 5.7102944992948323e-05, 7.8957971709314734e-05, 6.9305795477703214e-05, 7.7777003752999008e-05, 4.8413865442853421e-05, 5.8983780036214739e-05, 6.7813183704856783e-05, 5.3951873269397765e-05, 6.0485592257464305e-05, 6.1579179600812495e-05, 6.4002371800597757e-05, 5.9694655647035688e-05, 5.2415562095120549e-05, 6.9761568738613278e-05, 6.6017804783768952e-05, 6.3151710492093116e-05, 5.8964938943972811e-05, 5.6788165238685906e-05, 5.7706893130671233e-05, 6.0827271227026358e-05, 6.0585844039451331e-05, 5.8595895097823814e-05, 6.7637847678270191e-05, 5.7069602917181328e-05, 7.3642921051941812e-05, 7.747492054477334e-05, 8.7330983660649508e-05, 4.5524051529355347e-05, 5.7235491112805903e-05, 4.7056229959707707e-05, 7.283013837877661e-05, 7.3691866418812424e-05, 6.1863291193731129e-05, 6.1610291595570743e-05, 6.7969034716952592e-05, 8.1122074334416538e-05, 5.7100176491076127e-05, 5.7834018662106246e-05, 6.3918087107595056e-05, 9.0330708189867437e-05, 7.9745899711269885e-05, 4.6474629925796762e-05, 5.3649080655304715e-05, 6.2673214415553957e-05, 8.1799975305330008e-05, 5.5477659770986065e-05, 6.0106740420451388e-05, 8.0667647125665098e-05, 6.7034103267360479e-05, 7.5438176281750202e-05, 5.1541788707254454e-05, 6.8177418143022805e-05, 7.2770148108247668e-05, 5.3914445743430406e-05, 7.408297824440524e-05, 5.753372170147486e-05, 5.7889668823918328e-05, 6.2647777667734772e-05, 6.522836338263005e-05, 6.095518619986251e-05, 5.6878208852140233e-05, 7.6223783253226429e-05, 8.5357161879073828e-05, 5.6591525208204985e-05, 5.8835303207160905e-05, 7.1831345849204808e-05, 6.0348229453666136e-05, 6.5053107391577214e-05, 6.07831752859056e-05, 4.6743072743993253e-05, 6.1048682255204767e-05, 4.1894487367244437e-05, 6.6296452132519335e-05, 6.688079156447202e-05, 6.2962491938378662e-05, 6.7710156145039946e-05, 8.2330589066259563e-05, 8.0758414696902037e-05, 7.0690301072318107e-05, 6.0499398387037218e-05, 7.1651615144219249e-05, 6.0811868024757132e-05, } }; const TfArray<1280, int> quant5_zero = { 1280, { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } }; const TfLiteAffineQuantization quant5 = { (TfLiteFloatArray*)&quant5_scale, (TfLiteIntArray*)&quant5_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data6[1280*1*1*112] = { /* [0][0][][] */ -64,69,27,-14,-123,-64,-43,44,1,-72,-123,27,-78,12,7,51,-24,-19,47,-56,38,-21,-6,5,2,-57,-35,19,51,67,127,-102,3,73,-11,4,-123,-26,7,11,-57,13,35,-76,74,-29,81,69,80,-21,-46,61,-12,-60,-4,-49,7,57,1,-39,37,-26,-47,16,-6,-9,-49,27,-17,-92,66,-49,-30,-6,-68,-4,-20,11,-22,-1,55,-10,-15,-40,-74,46,-46,62,-6,-27,-42,62,38,-4,-55,-42,-76,-33,-16,-11,57,17,-2,6,29,-2,66,-4,-3,-4,31,26, /* [1][0][][] */ -18,56,24,-34,-93,19,23,39,2,-61,-70,64,-53,67,-29,64,-49,49,5,-32,-30,-8,-9,-25,14,-85,1,41,58,-51,1,-66,-29,-17,-32,31,19,2,91,8,-5,54,-14,44,-29,49,48,24,49,-127,88,58,45,67,-16,-54,-9,-3,-31,28,18,-8,-7,-10,-20,-19,52,-19,51,-18,112,-32,27,-36,-32,49,24,-15,-24,-27,37,-42,-30,39,-37,34,42,-59,-24,64,-23,-1,63,-34,-4,-18,-51,-16,12,-44,-43,-22,96,-68,-17,-46,-20,-53,5,67,74,1, /* [2][0][][] */ 7,-11,42,19,11,-47,9,32,0,-117,80,56,-40,-10,45,36,42,22,13,-11,-11,-66,34,38,-19,-24,28,25,32,55,-58,-71,-47,-43,17,17,-36,21,16,-64,-31,95,-6,-2,-127,-37,19,-59,38,33,-31,57,64,119,-18,-64,-82,9,39,-87,-44,-63,20,17,-62,-4,3,32,32,34,-1,-13,-18,89,-54,44,46,73,-5,-84,53,102,11,-29,30,-37,-64,-59,24,-67,48,-3,71,-29,21,-100,-72,-64,20,-50,5,-24,1,65,-67,33,-39,-12,-47,38,44,35, /* [3][0][][] */ 11,-10,-50,6,-26,-22,49,34,-4,-17,-42,54,-30,-6,-10,-38,-11,-39,46,-11,23,-66,17,-31,82,-19,-3,68,-19,-47,16,-29,-19,-15,5,-10,0,40,15,19,-49,8,-127,32,-42,55,-51,-16,10,-40,1,12,39,-11,-27,-48,-17,-15,4,-20,-29,25,23,-23,-21,-32,-9,-4,-33,-25,14,30,-18,5,10,-9,10,-29,25,-31,68,16,15,-3,-6,-48,37,-22,62,40,4,-80,-51,-16,43,-29,-39,5,1,-13,34,32,-23,-12,-8,2,-24,-94,2,-10,42,-35, /* [4][0][][] */ 1,3,-44,12,-11,21,35,50,102,-13,-37,17,99,68,-15,34,-33,2,-36,-73,28,64,19,65,93,-17,-34,71,48,28,-82,14,4,90,63,8,39,-63,27,-33,47,-46,16,-50,-43,16,-24,-61,65,30,8,-19,-63,17,33,38,100,17,-7,65,-6,45,-107,-25,-23,-1,3,33,-61,63,66,-49,-102,-38,63,19,36,30,77,-45,18,14,58,-56,-39,21,14,-47,-20,-122,-35,30,-48,59,-127,122,-24,-48,62,41,55,30,37,24,30,31,35,60,30,-57,41,54, /* [5][0][][] */ -71,-11,-3,43,18,-25,-17,-1,103,-44,-23,-25,37,-39,-1,-34,127,39,40,-13,61,8,-45,111,-35,84,71,0,79,62,3,52,-32,42,13,-39,38,-19,-23,18,17,-5,8,29,114,-36,-46,3,57,-79,-14,-46,14,-50,32,-11,-2,19,-24,92,24,-47,-13,13,21,6,-40,13,51,69,26,-41,-14,-4,-27,55,15,81,42,23,65,-1,75,-10,-34,0,-57,-30,-89,-9,-53,-3,83,91,-66,-11,82,80,-2,-22,-11,17,59,-7,-8,19,39,-34,46,-50,46,-108, /* [6][0][][] */ 72,-58,16,10,-26,-20,-1,-24,73,-9,121,-41,57,41,21,32,81,-6,-17,-40,37,19,-91,46,-89,61,21,54,29,28,25,46,20,-75,-5,45,38,21,-92,51,38,55,-21,-22,8,16,41,-17,3,36,46,-57,44,22,-60,-24,-15,-30,-45,-25,7,-22,-33,-11,-19,-9,0,47,2,53,2,-40,-82,-7,65,6,88,6,20,-16,-1,-3,-51,84,-14,-55,-87,20,-18,-62,11,-69,23,22,34,-29,33,21,-4,67,10,50,31,-29,0,14,35,-3,10,93,-55,-127, /* [7][0][][] */ 13,-28,-3,-22,-30,-49,71,7,73,-35,-7,-28,55,-29,5,72,-41,-86,54,-17,53,25,19,-18,-8,92,9,-4,13,-18,9,70,-17,36,0,-19,34,-43,27,47,-33,-18,16,-127,-58,8,-38,-28,5,46,38,45,23,19,81,6,-44,-16,-1,-17,-10,-60,-1,13,35,28,-36,-33,-29,45,-53,-18,-15,-55,94,30,9,-48,-44,-55,-24,-67,4,-12,-12,-11,-18,-50,-65,-21,-16,-122,-5,97,56,9,0,-69,53,-21,-6,40,54,27,-27,-9,-12,-42,29,-8,18,-81, /* [8][0][][] */ -60,-13,17,43,-113,18,-82,60,17,-65,-14,71,-52,20,-39,-16,5,-52,8,-52,-102,10,-73,-27,-30,49,43,-7,68,13,75,-19,-7,-44,42,56,61,-81,2,-78,3,43,18,7,-95,32,72,33,15,42,-59,91,27,17,-4,-49,-23,41,-51,-48,-81,57,64,-15,-44,-91,26,30,13,-66,-13,-92,26,87,46,7,-16,127,-52,88,78,-9,33,64,-94,-54,-85,-48,-52,78,-5,-41,108,-43,-61,35,-99,-62,-19,-36,22,13,-6,55,9,-14,79,5,-42,20,19,24, /* [9][0][][] */ -24,50,-60,-16,-22,20,-14,-30,-81,-10,-33,-8,24,93,19,4,4,5,3,-2,-7,-67,14,-19,33,-36,60,36,4,28,14,-127,-33,32,-57,-40,-24,9,-41,-41,-21,-21,6,3,-52,-12,-36,-5,5,-47,-65,43,5,-51,-57,23,-13,5,-11,30,-19,-2,16,-63,1,-6,-32,40,14,-15,-30,11,-11,28,1,21,34,-1,-28,-36,26,2,-54,54,1,-23,32,17,4,48,-9,64,62,47,-10,68,7,-67,13,31,-13,-7,59,35,-9,6,-38,-76,30,58,-4,22, /* [10][0][][] */ 20,-49,42,1,0,40,-91,26,10,-81,-90,11,45,33,-67,-60,12,-14,6,-74,-2,-120,-16,17,15,49,98,39,10,-52,21,28,10,-48,39,110,70,19,-82,29,43,38,-86,20,-71,80,-20,-14,31,-4,-46,67,38,-91,-10,-34,-44,-51,-48,-98,-53,41,-19,-46,34,-29,15,34,-25,52,-12,-41,-2,76,-12,67,-123,90,-90,-29,4,90,41,72,-28,-27,-26,-52,30,43,31,-34,-62,59,3,12,127,44,-13,-32,13,-24,-20,-95,-32,-61,-35,5,-30,2,28,-79, /* [11][0][][] */ 75,-62,30,63,18,-78,-43,-31,127,-1,2,0,39,16,-118,34,41,-32,-8,6,-14,-18,41,102,-22,-31,-35,99,-71,103,-48,16,-9,12,-48,10,70,-14,27,-11,36,8,43,-19,-56,40,-10,23,-7,21,-17,-51,58,-35,39,-36,22,13,-72,46,12,23,-71,2,-73,24,-22,32,-3,-1,-48,-60,8,-13,64,47,63,-3,25,36,-73,-41,22,16,-23,75,-44,-53,-25,-41,59,9,0,-45,-34,26,-49,48,-42,-15,33,24,37,-36,-24,-2,34,-12,62,-58,61,26, /* [12][0][][] */ -15,40,-36,-29,18,-13,-31,25,-25,-18,2,31,-10,-33,7,-1,-1,-1,35,-36,-32,-1,22,-6,-10,-9,-12,-5,-17,12,-9,-36,-17,-29,8,40,21,11,-63,24,10,42,-14,4,-2,-12,-4,18,-7,-26,5,41,0,-9,3,-5,-8,25,-36,-48,31,-5,-45,-2,-19,17,-18,-8,-25,-5,75,16,18,9,45,26,-29,13,18,-47,25,17,-34,31,-1,37,-60,25,15,-38,6,-17,-4,-23,-57,4,22,37,-127,-34,-12,12,-29,5,-11,-21,60,2,-14,23,-4,-7, /* [13][0][][] */ -31,-94,-34,-3,-17,18,-113,-8,15,-10,20,13,47,56,18,-2,-54,8,4,-57,-49,-41,-1,83,59,-29,6,37,3,-19,44,-82,30,-31,-35,4,-38,26,-18,21,27,57,26,-68,-36,24,87,-10,-10,-95,-2,42,-70,-20,-31,16,-80,109,-52,33,52,-21,-52,77,62,-19,-16,127,-104,44,84,71,-20,-61,23,46,-39,-56,-28,18,-25,85,-40,-77,26,80,39,-6,-19,-11,-20,-8,10,61,66,-23,-57,-50,0,-54,5,-59,-10,30,-23,53,94,8,-9,50,-11,69, /* [14][0][][] */ -2,-30,-14,20,9,-121,-115,25,44,-6,-7,2,25,57,-61,26,-18,-44,-53,-1,77,-44,23,3,-11,6,9,64,-77,28,-51,5,38,1,-50,-10,24,1,21,6,34,-51,76,48,34,-55,-62,-49,12,59,40,-28,43,-27,29,14,-16,-90,-91,13,-13,-66,-90,35,5,-24,-4,-13,12,10,-28,-2,50,10,31,-15,12,-1,47,65,15,11,28,-39,-31,127,-69,-64,-29,-34,30,29,4,29,-3,16,-17,79,11,-42,55,-38,86,30,-13,53,-12,-15,58,23,40,33, /* [15][0][][] */ 15,67,-14,-45,-39,-9,-11,-26,24,10,4,-39,44,10,-49,-2,-42,22,56,38,-19,-7,3,-49,-3,21,-4,17,52,-38,72,-67,-55,-49,-51,50,11,102,-50,-41,27,26,-103,57,-26,-25,29,-66,51,-57,28,35,-79,-56,-22,20,14,-36,23,33,-16,-39,26,17,59,1,-28,15,28,-6,34,-50,-38,4,-30,39,-46,-72,-56,-127,-48,-9,-33,-11,-5,45,67,25,-1,20,-11,-47,-32,44,-36,-17,-57,16,40,-18,-39,-55,44,-12,-55,4,31,31,0,55,-9,28, /* [16][0][][] */ 15,-29,-10,46,-78,-8,13,-26,-51,-35,87,17,-42,-12,38,-89,33,-31,39,4,45,-20,24,-43,-23,-52,-23,-18,-29,100,102,8,-34,2,40,-24,61,-28,-24,1,-1,127,14,20,19,61,31,4,44,-22,-31,-10,-27,41,-90,-91,11,48,7,-65,-37,2,53,-65,61,-26,-51,42,109,-25,-78,-64,-28,-6,55,31,-18,-1,-35,-45,-17,-9,-42,-39,-46,92,78,19,17,18,2,59,-29,26,-84,10,-6,-19,-76,20,47,20,49,44,-17,55,-3,-30,13,99,27,-3, /* [17][0][][] */ -20,-39,46,24,-29,-54,-33,1,54,0,-39,-47,8,-17,-10,6,21,-26,33,6,-6,34,-26,-18,-36,9,-40,7,-44,95,18,30,-62,-2,-78,-74,-12,-53,-46,-5,19,11,-34,20,19,-32,-42,5,23,14,70,-43,-20,29,-15,-62,63,-60,-69,-39,-18,28,13,5,-32,-9,-7,-50,4,13,-38,-48,-21,-36,50,28,9,-2,73,-4,-13,51,24,-85,40,37,-50,-50,-47,22,-27,21,-41,23,4,33,-14,11,-42,-33,71,-26,11,32,9,127,25,35,6,60,-48,15, /* [18][0][][] */ 90,42,9,-2,48,-29,-77,-82,32,-23,-71,7,46,-11,-18,-53,3,29,29,-66,22,-29,-24,-99,-36,-119,40,69,33,62,61,-49,-22,-91,-19,14,-3,-49,-84,57,21,16,34,47,-36,52,68,14,12,3,24,-7,-13,38,-73,20,9,-14,-78,7,2,13,-52,33,6,-47,-50,-43,17,32,-7,44,-33,12,-22,30,-40,58,-30,-46,21,70,-55,2,29,-38,9,25,26,11,38,-41,-34,-16,59,32,-127,-31,-41,-3,-43,-66,-39,-34,3,38,31,39,-44,48,-45,-20, /* [19][0][][] */ -38,14,-2,35,-47,-18,47,-81,-13,39,-28,-40,59,41,56,-8,-64,56,-19,1,45,19,4,71,74,62,15,-6,38,-30,-21,4,-4,-7,-17,-5,-10,-3,45,36,-22,-29,14,-10,-58,-28,4,-14,2,-32,-4,29,31,-21,41,-10,-18,-127,-6,44,-9,37,-19,-34,-46,16,-43,-15,15,-6,37,33,19,-43,-21,19,-7,48,-41,-34,16,-17,21,-21,-67,21,-54,57,-61,9,-9,12,8,-7,-21,8,-12,34,17,30,69,-57,24,-8,-26,32,11,-36,37,-30,-27,-9, /* [20][0][][] */ -29,12,-76,9,-84,-69,64,-44,58,-26,-20,-7,-1,-56,11,-36,60,-7,66,86,22,69,27,57,-18,55,-22,16,13,127,16,62,-44,-3,19,-41,-4,23,69,49,30,27,-34,-20,17,-1,35,14,66,-18,-85,-34,-12,-19,24,2,0,-64,-20,49,39,-11,38,-10,-26,-2,4,33,13,-28,-31,-115,-36,-34,6,-35,-22,-3,11,-43,74,-59,-32,-65,-73,65,-13,46,-9,-82,-9,-9,-79,65,-73,-12,1,-54,26,38,73,-7,0,36,39,44,29,2,16,-45,41,-88, /* [21][0][][] */ 8,2,-87,112,-2,-15,33,-127,78,5,38,-78,8,-16,-34,34,63,-49,18,18,14,39,-8,67,-29,-42,51,-42,-75,123,-38,17,-8,49,-72,82,80,14,-28,78,-66,-43,56,83,-33,15,49,-77,39,66,34,-73,80,-104,61,-7,-33,-4,-94,6,24,-36,-67,75,-10,10,10,12,52,17,-75,1,-40,-37,2,19,30,-5,6,22,45,-89,-23,-6,-114,-34,-34,75,-36,-122,-54,0,25,-29,5,10,43,-22,-85,37,2,45,53,-65,56,-1,21,79,38,28,-20,7, /* [22][0][][] */ 22,58,7,-41,-66,-95,-8,-34,31,-48,1,64,-37,6,7,-62,-64,-39,65,-19,-35,-35,3,-16,92,-100,-21,65,-20,-41,19,-46,-29,48,21,10,-29,38,-57,48,-47,44,-35,86,-33,-19,18,-38,15,47,78,8,24,36,40,40,26,-46,4,-26,-79,-127,40,22,-51,-27,3,-9,5,4,59,-18,-44,27,10,56,5,21,-11,-79,14,-64,-24,36,-39,-28,70,98,17,0,-8,-7,30,-24,30,0,-106,20,-50,-97,54,43,-13,-32,40,-62,28,-60,27,48,56,26, /* [23][0][][] */ -28,9,32,46,-40,-77,7,-6,-13,10,-9,16,-116,12,40,-12,-14,-16,10,23,30,-41,-23,-41,-46,50,-10,-16,41,32,48,-1,-23,26,39,24,-17,5,28,51,-13,43,-9,-9,5,-13,74,-14,4,-29,-28,127,-22,27,-9,-67,-47,12,-16,-17,-42,-47,20,-30,12,-50,-10,44,45,35,19,-30,10,-30,44,20,-11,-2,-15,-66,35,-57,-32,-8,-41,9,-56,1,28,-66,-12,28,38,-44,-24,-46,-48,-36,-32,0,-4,19,-13,-14,-63,-16,51,-5,-18,9,46,-1, /* [24][0][][] */ 59,2,-12,30,-8,-35,0,9,-24,1,-18,-16,15,-7,19,16,-8,-2,127,-28,76,-29,-59,-6,-59,-30,18,-11,85,0,-17,8,-29,2,-24,9,24,7,2,-7,-2,57,4,-12,-12,63,-7,-13,50,45,0,-22,37,16,-46,-26,24,4,-24,19,-34,-31,7,-25,-23,-84,47,32,19,44,-12,-11,-8,-38,-20,0,-17,45,-17,-16,56,21,-54,-2,-20,14,19,14,-19,51,24,-38,-36,2,16,21,-17,-16,10,-4,28,28,-10,8,-46,-11,15,-44,47,28,-58,-55, /* [25][0][][] */ 123,-63,24,82,69,55,34,-13,63,24,-48,-36,31,25,41,69,2,14,-33,-19,-2,5,-20,127,15,16,-46,9,42,39,-51,39,7,84,-29,19,30,29,6,-2,6,-23,40,6,-23,27,-19,-27,12,11,9,-12,23,36,33,11,-16,1,-11,30,-23,9,5,50,-8,-5,4,-10,43,-13,12,-40,-20,-37,13,10,92,19,21,38,3,-15,33,43,-11,27,7,29,-5,9,-16,-24,23,81,-12,18,55,-23,1,30,-48,18,15,40,4,42,8,7,52,24,-8,-46, /* [26][0][][] */ 37,39,16,29,-4,13,-24,-68,44,-22,-36,48,-13,4,-77,-58,-52,47,-42,4,6,36,84,8,-2,-35,-65,44,-47,-30,7,-2,39,-6,45,60,50,43,-43,91,55,52,-58,-6,-76,75,-40,28,-25,27,-36,-9,-12,5,-36,-22,-95,-9,26,18,-75,28,-90,-4,11,7,-118,36,-49,-61,61,14,-6,48,75,-1,50,-48,-5,-12,46,-28,-54,-1,0,118,43,-14,-15,2,41,16,12,-47,-30,-34,20,-51,-127,-22,36,-44,97,-44,-109,-46,7,-81,-18,31,-46,56, /* [27][0][][] */ 4,-3,-44,40,-52,-27,50,-17,30,-16,-17,-2,-56,0,-27,-68,48,-16,11,0,-14,-2,-25,-20,-12,-42,32,-4,-27,-10,5,-16,-47,35,58,13,3,45,14,-9,-47,-30,-71,57,-72,45,-16,14,-15,23,19,10,-52,22,-32,-35,-56,17,70,-7,2,-47,17,-53,16,-1,-65,53,23,0,-7,20,-56,3,85,58,62,7,-44,-22,46,-20,-43,37,-65,-14,25,-4,30,-19,-38,12,-15,-14,5,-19,19,-127,-26,-17,-23,8,-34,-22,-28,22,-28,-24,-32,-3,35,-31, /* [28][0][][] */ 91,8,-14,4,-35,20,30,-4,-15,47,-1,33,31,23,-6,-40,21,51,21,8,14,-10,2,-4,-16,-54,48,46,25,-24,-33,-36,-5,-14,7,27,-7,25,-7,-4,-17,60,-32,83,-127,3,-14,-33,-49,39,-18,2,-32,-29,-72,-12,-66,-24,47,-63,1,18,-51,37,67,-18,-48,77,15,-15,1,29,-12,26,35,-4,-20,20,40,8,45,18,-54,12,2,-29,-31,-34,-75,4,-29,-35,19,41,60,-29,17,-43,-2,48,46,13,47,10,-70,56,28,-13,-71,14,-43,68, /* [29][0][][] */ -59,56,-49,-32,-31,30,-68,14,37,-39,23,15,-46,34,-14,51,-18,40,-58,-5,-29,-86,7,-9,59,-18,-30,13,15,70,32,-9,-32,36,-55,7,-57,-6,-39,26,48,-48,-11,33,-19,11,127,35,78,-114,17,37,2,-45,-24,-16,-80,67,-66,-23,79,23,-45,-46,-19,-9,-26,30,-22,-22,15,2,17,-6,1,79,-43,-18,24,18,-12,1,-58,-41,-58,-1,31,-47,20,-21,-55,-43,33,22,-48,10,34,-18,-31,-40,5,49,47,-44,18,-37,-6,-35,-56,98,84,-19, /* [30][0][][] */ -49,-40,-12,25,12,32,-126,-84,8,14,-127,14,99,74,-27,22,10,-2,16,71,58,-112,57,-76,-10,-29,-49,20,-6,-17,125,9,-44,-82,14,-17,3,91,11,44,1,44,-20,4,18,79,11,-31,-52,-123,-24,11,-8,-26,-88,-25,-1,-1,-74,2,8,61,98,60,101,-5,43,-20,-21,-43,12,55,22,53,-41,-15,-76,20,-78,-83,21,64,31,-70,-1,-23,31,-44,-53,48,-15,-83,-24,54,69,-93,-30,-4,-20,-60,36,-51,63,0,-57,7,11,-87,-87,70,-14,-26, /* [31][0][][] */ 4,19,-22,10,-17,-42,-34,-42,-3,-62,-6,127,-46,-6,-37,-63,30,-9,8,56,-6,-60,-38,-16,38,45,-47,34,-30,-24,40,8,-56,72,40,12,-37,101,-25,24,-56,17,-88,4,-28,57,-54,2,0,52,96,28,0,8,11,-39,-30,-76,14,-33,-114,-66,-50,-25,-57,-42,-18,62,-40,-30,60,2,-10,29,72,21,28,-26,-7,11,71,16,-36,-1,-52,-29,41,70,59,87,61,-27,24,-24,47,-3,-48,32,36,-63,47,6,-37,-35,31,21,29,-117,-1,-28,110,-52, /* [32][0][][] */ -22,39,-60,-36,-40,10,-17,24,-4,-35,-36,31,-46,121,-17,-14,-1,-59,9,11,-14,6,30,7,47,40,41,15,7,-87,82,-36,-41,46,45,-26,18,45,69,-39,15,-2,-25,-19,-71,29,2,-38,10,34,-58,15,30,-47,-28,5,-6,21,84,41,7,-30,39,-127,-37,-33,-102,13,-20,63,-4,17,0,6,64,115,9,36,-66,-48,-2,-51,-77,50,-43,70,5,20,71,-122,-81,36,-6,49,-7,50,-11,22,-35,-50,31,22,9,10,-69,-37,-1,-24,-15,-4,77,25, /* [33][0][][] */ 7,-7,-127,55,-34,9,43,-60,17,20,12,37,57,49,60,22,41,21,9,-2,-37,11,28,79,37,65,-65,85,-56,-20,30,-21,11,-7,44,18,39,0,-66,-21,59,-17,52,15,13,-6,11,-74,36,-36,66,-3,-74,47,78,-41,-19,-29,-53,12,42,-13,-5,37,-17,15,-44,45,1,9,38,-8,16,-24,92,21,1,-16,93,-29,-30,41,20,-93,-64,-13,23,-13,8,-91,-6,12,-57,-9,74,9,3,9,-17,12,9,-84,21,-19,8,108,60,42,29,3,-29,59, /* [34][0][][] */ 3,-41,22,35,-43,-55,-4,32,-61,26,1,-13,1,12,7,-32,-14,-30,83,-20,-8,10,-38,-127,18,3,43,9,66,55,19,-67,-24,-15,15,-22,1,-2,13,-21,-13,11,-19,31,-15,-6,-7,-46,45,3,32,53,-38,18,-37,-6,-43,9,46,35,0,-8,52,-48,-33,-37,-4,43,-29,-62,-37,-63,-25,47,20,63,-16,14,-52,-24,35,26,-48,-34,-11,-16,25,-12,81,-15,25,22,-20,-51,-43,17,-29,-55,-7,7,57,7,42,60,-39,14,15,27,34,45,39,17, /* [35][0][][] */ 54,12,-7,95,-21,36,13,-53,98,6,2,-12,67,48,-20,23,25,14,-25,-35,-42,19,56,98,-6,18,-19,37,14,42,-5,61,-2,54,1,-4,43,2,-127,101,6,4,6,-21,-55,36,3,-33,-12,-51,-3,-90,36,115,73,-25,-21,-28,-93,74,10,63,-17,121,-26,35,9,19,-8,69,-39,-17,68,25,53,15,-6,48,-10,39,-54,-58,64,-39,-46,40,-15,21,6,-52,21,7,-33,65,-13,-2,5,-19,-24,-28,3,-16,39,67,-74,69,-65,10,21,-49,29,-9, /* [36][0][][] */ -1,-90,11,38,18,-27,3,-59,26,-36,31,-42,83,39,13,0,75,-40,15,-22,-12,37,-127,100,53,32,33,-7,-41,32,85,58,-6,-37,48,-14,91,-23,-3,28,-28,-63,34,-31,58,32,24,0,-54,1,-9,-51,-7,29,-47,-17,28,-91,-23,76,-82,83,-17,-10,-12,-26,-27,55,-62,7,0,-74,-40,-34,-41,8,-63,108,2,-1,3,8,-11,76,-50,15,-49,-30,-39,6,0,-26,-31,20,18,97,64,-43,47,58,67,-34,-27,-46,-37,-7,80,-53,54,-58,-3,41, /* [37][0][][] */ 14,3,35,29,-12,12,-20,-34,-11,-43,41,27,-27,14,-12,-71,7,57,-24,-8,-20,-22,-28,-17,-10,10,45,-70,19,22,88,-62,-40,11,33,-11,-22,-18,-13,-50,-58,65,-39,-10,-30,66,69,21,-24,37,58,-2,-27,33,19,-60,-88,2,-34,-54,-43,-36,67,-2,73,-23,-22,11,38,9,-8,7,-23,35,79,50,1,62,-27,-43,9,-35,4,-19,-127,-87,-18,-52,-35,-43,-23,6,-10,12,11,-10,-27,-62,-39,49,2,22,36,16,-5,7,-14,-50,-29,16,84,34, /* [38][0][][] */ 70,28,82,-8,-35,23,19,-14,-23,7,0,37,41,49,-72,-4,19,-44,25,-31,-52,-7,-22,-6,-30,-1,29,42,-5,-11,0,24,-9,3,-30,45,-46,2,2,-18,33,18,-82,34,13,-20,83,-107,11,-69,-47,87,-4,79,-47,13,66,5,1,-10,-36,29,38,-71,-2,-51,10,97,-19,27,51,-68,11,15,109,20,56,-3,-26,-94,41,29,-27,86,41,43,31,3,-1,-18,-124,26,63,89,-21,40,-36,6,-11,7,-13,-18,5,-40,-48,-63,52,26,-127,-16,5,-69, /* [39][0][][] */ 99,5,30,12,-14,64,-59,-42,35,7,-26,26,-57,50,-32,46,-74,52,-15,-33,-49,-36,-32,41,17,-51,9,2,-10,25,57,-100,-32,44,-10,43,-107,-4,9,-41,14,120,5,20,-105,5,44,-120,-7,86,-48,-37,-33,7,-51,-7,9,120,95,4,-42,13,-42,34,96,-8,-98,-4,-15,48,47,-37,-127,31,-52,21,1,-13,-36,37,-15,-67,-34,-12,66,55,-4,39,-56,-50,-53,24,12,74,-53,-8,-44,-4,62,65,-36,-81,75,5,-50,17,116,29,2,35,-28,47, /* [40][0][][] */ -34,-14,12,48,7,40,22,12,27,34,17,-29,-44,86,17,15,32,-43,14,29,-72,-27,22,107,78,79,-59,54,51,46,44,-41,-40,15,-8,-7,14,37,106,-11,-21,-86,46,-72,-1,-58,-20,26,19,13,78,29,19,33,74,-21,1,23,-47,-59,2,94,96,-1,16,-73,10,-13,-11,80,-4,-60,51,55,-16,-33,5,57,-42,-34,-5,27,-2,-12,-34,17,31,-60,-68,-96,16,12,-22,-6,-27,18,-33,-43,6,17,14,13,40,1,-13,127,13,-24,11,1,61,71, /* [41][0][][] */ -46,58,-18,36,-8,32,4,-71,-21,-34,-73,-38,-48,41,-1,0,-36,78,-24,86,-16,47,-28,70,59,87,-97,38,76,-43,-62,-32,18,27,-43,53,-50,-13,24,15,4,40,62,19,-12,-52,-69,-7,12,-8,-8,25,68,-48,-13,-42,-22,-71,7,-5,84,72,-51,64,6,44,6,-11,16,-46,58,70,44,38,-18,-30,-28,33,-19,-11,54,-10,15,-15,-127,83,-103,20,-123,-49,-97,14,-54,24,-66,-33,31,-21,-69,-4,-11,36,62,28,45,88,75,-31,24,-17,-13,35, /* [42][0][][] */ 65,17,0,92,-1,-2,0,59,20,-36,-18,-24,43,-79,-44,-34,-54,43,127,-47,-40,-72,-45,45,36,21,94,28,85,-51,75,-22,1,104,51,18,-20,32,-51,-4,-67,33,20,36,76,32,9,-5,-26,-85,100,9,-15,-75,62,-73,19,16,16,42,-10,-10,-14,28,7,-96,-35,16,82,-21,36,-61,-53,-31,-67,45,-6,64,39,18,60,35,-82,85,72,-18,43,15,65,-32,-47,-105,52,-37,-18,-74,65,-22,-24,14,-1,5,72,15,-25,-39,66,-13,-53,22,49,-46, /* [43][0][][] */ 8,-120,-66,-44,36,45,-58,-18,43,16,52,-79,30,91,-6,41,19,-19,22,50,65,-3,-14,7,-5,51,-66,59,16,-70,-52,-70,-40,29,-23,-4,-84,21,41,27,-53,2,9,-21,-80,-41,-117,-127,20,21,14,17,11,-51,-70,-7,3,-15,-13,32,66,69,0,36,-19,37,33,22,-12,62,-72,77,65,-2,25,-44,-27,60,32,31,23,8,7,-12,-80,29,-62,32,-73,-23,-54,6,-62,1,19,34,-39,8,-76,68,3,-19,25,-82,-77,103,16,-33,18,-53,-28,47, /* [44][0][][] */ 98,-17,-22,-5,1,-36,33,-67,22,-47,-3,-66,72,-12,52,63,10,39,11,-6,18,-35,48,4,-17,4,-51,19,-67,69,55,44,-40,-7,-33,-69,16,-16,-50,-44,36,-29,-4,-64,-53,11,-23,3,14,4,32,-22,-14,-22,17,-8,-18,-18,-44,-34,58,51,-9,4,43,19,-43,-27,26,4,-58,-92,-15,-12,38,43,72,30,48,-24,-57,3,51,-127,-27,59,-30,-37,12,-63,-44,-28,1,21,-115,18,58,-50,-66,23,2,-24,16,32,47,22,45,-4,100,98,-15,28, /* [45][0][][] */ 68,-2,-10,15,4,14,-67,36,-92,19,4,-43,-32,23,5,31,-30,-9,-14,-10,-42,19,-19,4,18,8,76,34,50,-37,-63,-44,46,-14,-16,115,-60,-24,-60,-49,31,14,-106,32,-67,49,14,-127,-25,24,3,3,-14,38,-63,-17,16,77,34,-11,-13,-26,-98,31,7,-6,-63,34,-5,-66,43,-9,-18,38,79,52,24,-8,-52,-20,-45,-12,10,-9,-53,5,-73,-53,-23,-40,7,22,-26,35,9,-41,2,23,-31,33,-62,-42,0,60,-94,5,-17,-24,61,94,-62,17, /* [46][0][][] */ 43,52,-53,47,-23,22,-2,26,3,24,17,17,-47,-9,-1,-29,-34,18,-23,-61,33,-28,-43,43,-9,-48,-35,4,11,-86,2,37,9,92,3,29,-4,101,40,44,-9,53,-51,90,-35,101,28,27,-14,5,58,-55,-36,-42,12,-69,-32,60,25,47,-36,-58,-26,24,24,18,-36,96,47,-127,27,-7,-100,-33,15,19,-46,65,3,-4,72,-16,2,16,56,51,36,-45,80,-34,-31,-64,44,14,-40,-11,1,-99,-23,-15,-72,-5,-16,-20,-64,-19,34,11,-25,-1,-3,-15, /* [47][0][][] */ -19,-70,8,-20,-40,42,-13,-41,24,29,-50,20,-18,19,-13,-27,9,32,49,11,-7,-7,4,24,29,-40,2,35,22,-56,9,53,-74,-50,6,14,-28,49,-32,46,-32,-2,55,-33,-42,75,-25,78,32,50,-12,26,-2,-1,-66,47,-46,-52,27,-81,-12,9,-14,-15,91,-30,-31,11,50,-25,-73,-27,-33,32,-4,39,-17,59,-17,-1,-27,65,-50,2,18,-27,52,19,5,-28,-33,72,-7,-37,29,93,7,-41,-31,-56,69,7,127,62,-11,-23,-12,-72,-48,35,26,-2, /* [48][0][][] */ -44,32,-65,26,-32,-64,0,-51,-47,-58,-56,93,-50,51,10,28,-31,-55,22,-18,-28,-57,-16,-75,52,4,-34,20,53,-25,10,-52,55,-5,41,-85,-46,38,-4,-20,16,73,21,-41,-32,-16,7,19,10,-85,-15,-8,6,-19,-21,45,25,-17,-9,29,2,-115,-31,-42,-5,-67,-57,48,27,-83,10,23,-105,15,46,37,-47,-35,-115,-16,-19,-77,-11,4,-17,40,33,-21,-17,-23,-52,23,-13,-28,37,18,-72,-13,-32,-75,22,29,-18,127,-27,-22,9,-40,14,-19,-11,-11, /* [49][0][][] */ 13,5,-41,12,15,-13,24,40,6,47,-11,77,3,8,-17,-46,22,7,-12,14,-40,-5,66,14,0,-56,19,53,19,-2,-20,-5,-127,48,46,61,-34,21,24,8,3,49,-17,48,-77,-13,52,-25,-26,44,82,11,-43,30,8,8,-15,8,49,-11,-9,-15,-29,-1,21,56,9,6,35,12,9,8,33,18,29,40,11,43,44,1,-31,-4,-71,-6,2,47,-1,15,7,-38,-12,-60,10,5,2,1,-6,-35,39,-8,-3,-12,45,9,-85,25,43,-15,-51,43,39,60, /* [50][0][][] */ -27,-62,-26,-1,-57,-9,24,9,-9,-14,-44,2,47,33,0,-31,-33,-36,1,-84,54,-33,-41,21,30,28,-101,-13,40,-55,-31,60,-30,7,12,21,-26,-14,74,-44,-58,35,61,-7,46,-67,-10,9,36,-14,-5,-67,-24,-22,-21,24,1,-32,-16,-30,-40,-32,-2,114,-15,-13,13,2,25,-20,31,-5,17,3,-7,-23,-47,78,-23,-19,1,8,-38,-32,-3,125,-21,1,14,-111,47,-10,-127,23,14,-3,-83,-2,-40,65,67,71,54,52,-4,86,-6,-15,43,-16,8,-45, /* [51][0][][] */ 48,4,-34,23,18,-29,19,-12,-70,-31,-80,7,26,23,-34,-10,-44,30,32,11,-22,-99,-2,-28,14,22,32,6,36,24,35,-90,43,11,-16,-9,-92,-15,-11,-9,-23,-17,9,-9,-51,35,35,-28,-41,-33,99,29,-9,-54,52,-17,-24,-63,0,15,-5,-12,-30,-15,-58,1,-29,-5,17,63,51,27,4,4,4,-8,-40,13,-10,-105,24,-58,-28,-2,-12,-16,42,-10,-61,-65,-127,37,-36,-17,24,-42,9,42,-30,-4,8,-27,-52,54,-33,-26,-11,-21,-46,35,25,-57, /* [52][0][][] */ -91,-27,-60,-28,-35,-32,-36,-58,-5,-30,20,9,-15,-6,28,-56,29,-67,61,68,27,-22,-47,-34,14,51,-75,44,32,30,-89,42,-56,-72,20,24,-23,9,83,0,20,2,-78,14,65,-8,-40,10,38,-43,-6,-1,49,-99,6,45,-43,-85,-127,41,66,65,-32,43,12,17,50,-3,0,-51,-12,-76,0,20,51,-5,-59,17,61,48,39,73,25,-46,-59,48,-27,-12,-41,-114,-31,21,-37,38,11,74,-63,56,11,6,25,-77,24,6,-25,33,54,-40,39,-6,41,-78, /* [53][0][][] */ 19,0,-24,62,16,-28,49,62,49,32,-12,-9,2,67,50,-6,-13,22,53,21,-15,-76,108,60,36,-46,5,54,18,59,-21,24,-40,-36,-24,-21,69,113,-66,-52,32,71,-83,-38,-39,-10,39,-42,-12,4,-18,-20,-76,1,-127,-94,35,-40,22,-98,-18,12,-31,-31,75,38,29,98,90,20,-42,-21,-21,26,47,44,63,42,0,-4,34,63,-55,0,75,-52,-1,-70,-10,30,-30,12,13,-69,19,12,-46,-23,2,29,29,7,-14,104,-1,73,95,-58,4,73,-10,48, /* [54][0][][] */ -4,59,35,21,-40,71,-53,48,-15,-6,-16,21,-59,-5,-97,19,-90,113,36,9,-36,-8,46,-6,-37,-46,77,-21,-26,-18,-52,-54,-24,50,-14,77,-71,105,10,-24,-74,6,-61,16,10,117,-24,32,28,2,-7,117,45,6,47,-41,83,21,-89,-67,-50,30,-96,-5,-16,-74,31,-5,6,-16,83,48,-63,-22,14,76,20,127,-35,-19,-4,-11,23,81,-84,-26,-24,-84,-53,45,30,-11,-33,104,-4,71,31,9,26,-113,-82,43,59,14,-51,49,-20,-90,62,12,-16,-29, /* [55][0][][] */ 103,-75,-29,22,63,-54,-37,57,1,-54,96,-3,52,-23,127,-21,3,-75,-5,-91,108,-16,-29,61,78,23,17,4,65,11,14,6,24,30,1,36,61,-63,-58,-8,0,-78,-39,57,-36,12,-56,-93,77,52,-26,-13,94,31,-9,-13,-10,-35,-28,-3,22,28,20,78,-108,17,-29,33,22,7,56,-65,-6,52,64,-14,70,45,24,30,15,-105,10,-35,-59,-29,-12,-3,-43,-41,30,55,-8,45,80,-51,39,-119,75,4,30,-61,6,-13,68,9,-19,72,65,-44,-20,9, /* [56][0][][] */ -57,53,-5,-25,-127,-3,30,-22,-17,-58,-31,1,-50,19,26,45,-80,-6,-34,-65,1,-50,-20,20,-11,-2,-65,-19,9,-63,-1,-56,13,62,-2,91,-37,14,-124,16,-51,28,68,-55,-6,72,2,-48,7,-2,3,6,63,-32,-44,-101,-24,98,58,-15,75,-2,-15,49,-7,-51,-12,40,-29,-3,69,-22,66,-20,-3,4,-87,50,19,-14,34,31,-2,14,19,79,2,-15,23,15,-4,11,-23,82,15,23,-6,27,5,-7,21,-32,22,13,-54,33,71,-5,-53,83,-28,30, /* [57][0][][] */ -53,4,-59,-55,-57,-29,9,-72,56,-17,-9,48,21,30,51,25,60,-45,24,-76,-35,29,-42,6,-38,115,-22,-40,-9,11,-13,-2,-38,47,16,127,11,40,-66,3,-7,41,13,-46,-67,-29,-6,4,-20,50,38,-69,44,6,-10,43,34,39,8,-6,27,126,1,23,0,-71,-5,-14,-11,73,89,-56,11,-63,-2,62,65,41,-34,19,2,71,21,43,10,32,-21,10,-21,-15,-47,0,-9,36,-21,19,-11,-26,-11,25,-6,-56,-14,1,59,7,-16,-39,111,62,-8,-66, /* [58][0][][] */ -22,-52,-75,-25,68,-8,30,-34,45,10,-6,56,94,5,-5,-57,-12,-11,5,4,56,87,-63,-10,50,-16,-41,25,18,121,6,24,-91,111,-59,12,4,-56,127,-30,-40,49,-67,-53,13,79,-18,-46,50,18,-14,17,21,76,60,21,45,-125,-33,-26,-27,40,-37,6,70,15,-39,2,-9,3,-40,-71,-18,-54,-36,-42,19,78,-16,1,60,76,35,-40,6,39,-58,-49,-23,-105,-65,-72,-8,44,-39,-24,36,-51,117,14,12,-31,-4,-27,-10,-37,-33,46,19,-77,87,-110, /* [59][0][][] */ -10,49,-66,-84,-62,-34,74,-41,-8,-33,-4,-19,34,44,-3,36,2,-59,96,12,-19,-10,-34,-42,-27,48,-52,20,-49,97,21,90,-22,-69,-1,127,69,-63,44,32,31,19,-53,-2,-28,-7,29,5,30,-13,4,-34,114,-68,-44,14,90,-79,-26,-25,-68,29,-12,-23,-69,-51,28,-17,33,35,-13,-87,-25,-66,-35,38,42,-26,-7,-5,24,-24,43,14,-44,46,0,-3,49,-102,-26,-21,-67,17,11,28,23,-37,68,64,-9,-41,-28,42,27,-15,-11,92,5,9,101,-30, /* [60][0][][] */ 74,-4,-10,-3,76,-13,-29,75,-34,-6,47,86,27,15,-13,-40,37,63,-57,46,28,-79,21,62,-35,3,55,-19,-55,52,59,9,-1,-41,-16,47,57,22,-19,-15,35,-11,8,10,-2,10,-24,-83,17,34,-18,5,-53,69,-47,-87,-107,-10,-101,15,-47,-10,-25,26,22,-90,-90,19,112,-1,24,-53,15,17,117,40,-6,53,30,-60,-11,23,-106,22,113,-41,-35,-11,24,-26,-59,-36,-3,35,82,70,-24,4,-114,30,-8,-92,-13,-19,13,40,29,-22,-127,85,-96,2, /* [61][0][][] */ -22,4,49,-9,-44,-65,-67,19,-59,-29,-43,-48,-9,18,-16,53,-27,3,54,-34,-24,-34,85,-45,-26,-2,-13,-15,74,23,-69,-15,-36,36,34,22,-17,-9,49,-23,-5,30,-4,13,-15,-16,33,-80,-32,12,-18,47,59,-49,-79,-27,17,-25,19,34,-24,-22,-18,-54,13,28,-34,54,125,29,-8,70,-31,31,-32,5,-101,26,-55,29,21,-47,-17,-36,-48,-27,-74,22,-29,-8,-71,36,-4,-11,13,-13,4,66,-24,7,94,-34,127,52,3,36,47,-72,-5,-6,31,30, /* [62][0][][] */ 42,-6,-36,60,45,57,-21,-80,45,26,-2,-48,127,30,22,40,21,27,-17,-44,63,26,31,31,31,-4,-3,11,46,35,-17,5,-1,9,9,-43,36,-28,-72,114,45,-4,1,-28,-8,17,-31,-56,-47,-44,19,-28,3,-13,-3,-5,-4,9,-29,68,8,79,-75,49,-17,40,-25,-22,-7,5,-25,-53,-44,-41,-30,-20,12,58,-9,62,-9,69,-17,26,-31,42,-46,24,-6,6,6,-32,22,49,-5,-9,31,-35,44,89,59,-22,-42,69,13,37,-79,-26,84,-11,-2,-32, /* [63][0][][] */ -49,2,-73,75,-55,18,9,43,50,28,-86,19,41,-53,13,-26,26,-41,-29,-100,-14,15,64,37,11,-65,42,9,-27,-24,7,-12,75,108,-44,95,35,88,-99,41,-29,12,-25,-10,2,18,31,-122,-10,31,26,56,112,-127,-21,-85,-116,120,24,0,-84,-82,-42,-51,-2,47,22,71,5,14,-24,25,-122,10,-24,17,-38,-26,-54,-18,42,111,-93,21,-35,40,48,40,84,-35,-13,-57,44,24,-44,32,62,-48,-28,-95,-121,30,16,-18,29,-49,19,-44,-2,98,-24,-86, /* [64][0][][] */ 101,-42,-9,20,7,42,7,46,19,-24,-48,58,84,56,22,-42,-11,16,52,-41,4,-14,33,57,-14,42,-6,127,6,-2,-7,-18,9,-33,-12,63,24,-62,-29,-21,29,26,24,65,7,7,-7,-56,-1,-112,37,38,42,19,-67,-55,-80,102,-77,50,-65,-9,103,-48,35,23,13,14,32,-2,78,37,-50,17,70,-12,-78,-3,-27,19,-24,11,-63,33,60,23,11,-39,38,30,-40,-38,-51,23,31,21,5,-19,-26,-66,-70,-58,36,21,-23,12,18,-17,-41,-18,-56,12, /* [65][0][][] */ 13,15,25,-11,-41,18,-58,41,-52,24,-27,-6,25,51,1,-42,22,6,71,15,-54,-84,-4,-44,28,16,-41,1,53,29,-27,-21,-1,-10,-8,27,43,60,0,-11,-51,25,-104,-5,-35,0,42,18,22,-37,-47,26,-21,31,-81,-4,-10,20,4,2,-56,-54,73,-37,58,-89,18,96,28,13,-69,-18,-40,31,31,-56,-4,-14,-25,-3,-48,-27,-33,-55,40,-30,-22,4,-3,5,-58,9,28,24,15,10,-11,6,3,9,-21,-27,59,93,-13,102,9,-45,11,127,-16,-15, /* [66][0][][] */ 56,-80,-4,39,-33,-55,-7,-74,52,5,66,-6,15,32,13,18,79,-108,14,-13,18,66,-70,11,31,98,38,15,110,57,-30,-8,40,33,-42,15,-20,34,-60,-25,-28,21,-11,-14,41,-68,24,-127,53,-90,51,2,-26,82,62,61,73,3,-58,-12,92,-59,-15,40,-14,1,-73,-43,-43,-14,11,-32,-32,32,52,84,46,15,19,-69,48,-18,22,-63,44,-72,11,34,7,-124,-23,-22,18,-3,84,15,2,-28,-18,-2,20,24,6,2,-15,20,-5,18,-12,-40,10,-41, /* [67][0][][] */ -82,-5,-60,-17,-85,38,-86,52,10,35,-116,19,-51,106,24,-84,-17,-44,1,6,-19,-19,-36,-56,21,15,-13,-13,52,54,64,40,23,23,-14,-56,-43,112,15,-38,-84,25,-36,21,65,18,44,-15,86,3,-51,-32,77,-5,-54,41,-58,28,-46,-31,-39,-12,84,-74,70,-8,-40,119,29,19,8,7,25,12,2,-36,19,13,-61,-34,17,127,-16,-39,-1,38,3,-31,-45,29,-22,32,51,65,-39,-32,57,21,1,-5,-19,-31,53,14,2,-14,27,-113,-25,21,3,-120, /* [68][0][][] */ 28,30,-125,-4,-29,4,-5,45,-27,-10,6,16,-44,26,56,-12,-44,-29,11,32,-31,37,-14,5,127,58,12,35,68,-28,2,-48,23,45,-8,-18,23,17,-57,34,-35,41,-68,83,-17,82,37,-16,14,19,18,-26,6,-57,-28,-25,-28,-8,59,83,-48,84,4,-10,51,-11,-11,119,-28,-83,-55,58,6,14,-35,12,34,-10,14,28,74,35,-30,88,8,12,28,-83,7,15,-68,-29,34,36,41,-14,-36,3,-47,-52,-51,-56,11,7,-26,-19,-4,-86,-34,-19,-3,-46, /* [69][0][][] */ -28,69,-10,-59,-127,4,17,14,-6,-1,17,18,-16,-28,-38,11,-34,-11,-22,-6,-50,36,-27,-28,34,-34,25,45,22,-58,23,-42,-7,-12,-2,35,23,-16,-48,-13,-38,68,-13,-8,-11,55,-3,-6,-4,-12,10,55,63,-30,26,-43,-28,10,-9,16,-17,59,-34,-25,29,-18,15,4,-36,-60,1,4,-26,26,-30,15,-10,23,-5,-75,-69,40,34,12,-30,4,35,-69,-33,38,-26,-44,-12,75,21,33,-20,19,25,-46,-13,15,9,57,-32,38,-5,-76,35,28,22,-43, /* [70][0][][] */ -3,30,9,-12,-30,-5,0,93,-10,25,-10,-5,10,-2,38,-1,-102,30,69,-45,11,-46,5,4,14,18,-11,61,84,-31,27,-42,-28,89,1,-14,-8,3,-60,-22,24,49,-8,7,-25,-1,-52,13,-25,0,64,2,-43,-70,-15,11,-2,15,24,-29,-43,-15,-49,18,52,-43,-40,72,127,28,36,-85,-35,12,53,48,13,31,-31,-6,-7,30,-13,20,35,32,50,-29,16,0,8,6,-23,3,-17,-26,17,30,33,19,49,69,-16,57,-45,-24,81,-22,3,30,-21,11, /* [71][0][][] */ 59,24,-71,21,-66,-119,73,37,52,86,-73,54,-19,-38,76,-73,0,-38,-1,41,32,-71,36,38,96,-103,-87,47,-39,-42,66,-64,-39,77,-66,92,-74,33,77,62,-69,54,-38,78,-37,59,51,75,72,-30,-88,106,3,-73,-50,-62,-66,-84,82,-69,-38,-109,-16,30,-72,18,-53,104,28,-13,34,36,-91,4,32,-22,11,98,-39,-31,13,-57,-23,-54,17,-31,6,70,127,-3,-7,-86,-100,-58,73,-79,-47,7,40,-44,57,32,2,-38,14,76,25,-77,57,20,114,-5, /* [72][0][][] */ -19,127,-25,0,-31,13,4,-89,-1,-79,-77,66,40,20,3,-52,-83,69,27,3,-50,-42,-58,-14,48,-52,52,53,47,12,68,-25,13,-22,18,-20,-16,-76,-34,-53,1,28,-8,14,-41,91,54,3,-41,-28,-8,-46,-36,16,20,-54,-10,-11,13,44,25,5,-16,-26,-33,14,-62,6,19,-89,68,-21,-20,16,-59,-23,-43,-6,37,-91,-11,3,-1,1,15,-3,-5,-35,-7,-4,-18,-45,-31,30,-35,-22,-96,33,-2,-1,10,-33,6,45,-50,66,-7,-42,-17,-2,9,-47, /* [73][0][][] */ 14,-31,-60,47,47,18,-24,49,97,-3,-1,19,14,24,-54,4,20,3,-43,19,2,58,19,108,53,-6,-45,83,5,29,13,20,41,42,-44,-8,55,-29,-27,5,-60,-47,31,67,-17,-11,-13,11,48,-14,-33,-40,31,-34,12,-71,31,-24,-18,61,33,28,-94,-1,-74,28,-7,-12,1,-8,-44,12,38,31,12,5,28,54,127,2,-25,-46,-28,35,-52,14,-35,-22,-22,-1,33,-17,-25,31,-76,29,-63,23,7,2,42,61,47,49,-1,9,-56,-34,27,-48,101,5, /* [74][0][][] */ -29,87,3,94,-43,-16,-24,-23,72,57,-54,80,78,-124,47,57,35,-9,-4,-78,-63,-31,-16,71,-5,25,25,84,50,-72,-6,7,-12,39,-55,-9,-19,-4,-36,45,-17,28,-20,78,27,-18,120,-78,-1,-27,-65,60,114,-127,-26,-50,-14,23,-20,5,-25,-10,16,86,-8,-61,49,67,17,-30,57,-15,18,83,-55,15,-10,-67,-68,-74,-10,23,-66,69,-55,-31,58,-5,-69,112,-28,52,34,55,-6,68,-86,43,-92,-81,-22,-93,69,104,56,-45,1,-2,-76,82,38,9, /* [75][0][][] */ 50,-127,67,61,-47,7,-39,-4,38,-43,8,-28,-76,-77,-16,4,4,-28,40,-16,-44,10,-59,34,-33,7,9,61,68,42,-26,15,-46,3,7,32,-56,-7,4,-15,3,7,-91,-22,-5,2,77,28,65,-111,-41,23,3,-52,-20,-7,-19,77,5,-76,2,-52,-79,-30,10,-91,-30,20,-11,32,16,-62,-90,-2,90,55,11,2,-57,-12,-18,2,-2,64,17,-88,64,39,0,41,-62,-64,37,0,-12,102,-63,22,-76,-3,-93,20,-5,63,-88,-15,-26,2,-30,59,49,-34, /* [76][0][][] */ 62,-43,64,-37,-41,-41,-20,-79,-63,-2,-77,-11,26,-33,24,-6,-54,30,62,8,11,-29,-60,-38,75,48,81,34,7,21,22,-21,-37,20,27,-26,-127,-54,24,-1,4,40,-24,-37,-23,72,66,-27,35,12,-4,31,-34,19,51,-11,5,14,-21,46,-76,-5,-3,-5,-6,-5,-28,28,-29,-41,60,7,-4,15,-17,10,-31,23,-99,1,50,-15,-62,25,-97,34,42,61,42,-53,28,34,12,-16,8,-21,-12,2,-19,12,28,9,-23,-14,-81,18,54,-30,-15,24,13,-75, /* [77][0][][] */ -7,68,24,-43,-52,-31,-12,16,-1,8,23,65,-127,-8,57,12,-9,25,-20,8,33,-57,-29,-26,14,-20,-9,3,4,-34,65,11,-18,73,21,43,-53,16,-37,47,15,37,-3,-16,-44,19,22,-48,3,-25,47,7,43,15,-3,-26,-28,5,-32,-66,-8,-17,-84,-78,22,-35,-61,29,27,-5,22,16,-18,3,7,70,-38,47,-10,-35,19,22,-15,50,3,-11,-30,-6,-9,-41,-30,-3,23,-65,-45,11,31,23,-9,42,33,-32,-29,-39,-48,3,-29,-22,9,39,9,19, /* [78][0][][] */ 47,43,-66,-54,-31,-18,36,7,-23,-25,30,-58,50,65,33,11,15,35,67,-40,-2,-50,0,-48,30,18,52,-17,34,-7,32,23,-34,-39,47,-19,10,99,-58,2,-67,15,5,43,-16,30,-8,-12,73,0,2,-42,-60,-30,-29,-82,27,6,44,-38,-1,30,27,-34,89,1,-5,79,-28,-14,21,-49,-127,-12,58,68,3,8,-5,-79,-19,38,-24,19,6,-15,21,28,19,-8,0,14,-45,65,26,-13,-15,-82,-56,-17,29,-1,21,14,13,-57,104,-30,-46,24,4,19, /* [79][0][][] */ 35,77,-12,9,32,24,23,29,97,-10,1,-64,-11,46,55,44,-51,-96,-5,58,33,-37,-77,10,2,87,14,87,-37,56,63,1,-27,77,15,80,-43,72,-2,-27,81,14,26,12,-57,-113,48,-27,21,35,-52,56,-35,-3,20,71,49,-127,-25,-24,47,-40,-97,88,25,7,-72,18,13,-8,-21,-79,1,28,32,-22,17,49,-18,-6,83,-82,35,-56,-62,42,-33,54,-74,-125,-75,-12,-104,59,-62,25,-43,-91,-16,61,1,-20,-16,20,19,67,6,50,74,1,-35,64, /* [80][0][][] */ 50,46,-74,96,5,-112,-11,7,39,-27,26,5,-45,-21,-8,-26,-26,-64,24,40,-3,0,-27,44,14,10,58,-1,67,-42,77,2,-60,114,5,46,-9,59,-77,-44,-46,-9,-81,73,-9,90,-40,10,-47,70,-5,-6,73,-127,-46,-68,-44,26,100,49,-6,-40,-10,-62,4,-36,-51,31,36,-31,7,-22,37,46,59,59,-18,-36,17,12,3,-90,-12,-24,57,74,15,3,-16,-98,-79,63,26,26,-53,-1,-5,2,-47,-30,-22,22,4,-14,-70,-49,23,10,-22,57,50,-114, /* [81][0][][] */ -72,41,-94,59,57,-31,-51,-8,-14,-57,-61,58,-36,89,14,44,-39,-48,74,-26,-82,-27,56,-13,75,-26,-8,-4,34,39,-27,5,45,6,66,-27,-3,-40,10,-70,-11,-3,-58,34,-15,54,44,-21,47,-40,-7,-11,-8,-3,-49,-73,-2,5,-12,-32,10,-79,-97,-37,-35,-75,23,-41,23,-61,69,21,41,89,106,3,81,-11,2,31,77,-57,-62,39,-35,72,43,15,91,-72,18,-5,54,25,30,72,-4,22,-73,-86,18,29,29,58,-28,-127,75,-16,-7,24,46,-34, /* [82][0][][] */ 4,65,32,0,30,-74,-117,46,-2,-83,-41,-9,-8,57,-54,-63,-62,-1,6,-55,53,-26,50,-51,20,-90,-51,-28,33,-11,-48,-24,30,-48,-30,-40,-46,-44,17,-11,15,55,20,56,-47,30,-11,2,16,38,-38,36,2,-31,29,-28,-14,-22,-87,34,21,10,-26,5,-5,-14,-100,85,18,-96,-52,4,-73,-29,30,24,-68,9,23,31,-9,107,-84,-41,23,-18,20,-68,-15,3,-52,40,-71,17,13,-31,-127,7,-48,-12,43,13,12,71,-36,44,74,-99,22,13,28,57, /* [83][0][][] */ 23,72,-34,-11,-19,-9,-14,-29,57,-58,-36,-20,-31,-34,27,-34,-42,25,22,-24,6,0,-27,-70,54,-32,-14,75,36,-18,101,-8,8,4,20,-28,-22,-2,17,-17,-12,5,-63,70,26,127,67,-48,31,-13,46,-8,-8,-11,30,-10,-72,23,13,74,43,5,-14,-47,56,-6,-25,31,10,-31,-17,-42,-40,-29,-21,7,16,-73,-5,-57,-12,18,25,50,67,46,41,-83,52,-70,-55,-5,-14,78,-44,54,-64,18,-11,-122,-49,-23,70,-15,-27,-4,60,-13,-46,77,52,3, /* [84][0][][] */ -27,28,31,25,9,6,28,-59,19,10,-28,-42,-5,119,11,10,14,-67,-1,-127,49,-25,23,60,-11,15,-81,27,-21,20,0,14,33,118,-75,63,4,19,15,19,-10,12,42,-14,-30,-79,70,-25,36,39,25,-25,125,97,24,46,-29,-2,25,5,-12,-3,-82,-7,-28,-31,-3,-64,51,-27,-22,75,46,-17,-51,-53,-32,101,-30,-68,62,-20,4,-7,-108,24,-103,-43,-25,-5,46,-41,-11,-21,-57,-23,20,-48,66,9,62,-7,-2,-99,-69,39,-10,108,77,-39,101,21, /* [85][0][][] */ 42,82,-83,37,-54,64,-11,20,-18,36,54,77,-21,41,1,-34,-43,-14,-54,-13,-93,-13,63,44,83,-21,28,87,-29,-32,0,-15,-26,-2,35,53,47,-31,15,3,56,65,-87,61,-93,22,127,-101,-55,1,91,21,-107,1,34,-60,-38,-6,4,18,83,-76,-28,62,-82,10,-80,38,-46,-3,49,7,-38,34,93,63,-5,85,54,-40,-54,-19,-10,-65,31,-11,80,59,37,-58,-55,40,-14,-12,106,-41,-31,-1,-24,-51,-11,12,57,119,-57,73,106,-40,-86,64,31,102, /* [86][0][][] */ 81,-49,-23,-3,2,38,-53,68,-100,-60,9,-31,-6,18,-110,33,-122,22,7,-11,-63,-97,-47,67,-1,18,7,104,90,-52,30,-127,-27,68,-9,99,-56,77,-28,-49,8,50,46,82,-54,-14,27,-34,94,15,-64,73,-48,-10,-14,11,-9,17,-29,-32,-40,13,-59,19,-114,-49,15,75,-34,-59,98,-25,90,71,2,21,70,27,14,-97,74,-31,-60,7,-61,25,-3,53,-48,21,-50,23,13,-23,70,-76,2,-33,57,53,63,-12,13,-40,-33,-47,5,0,-4,2,-60,0, /* [87][0][][] */ 58,-37,-11,13,-25,-79,-48,1,28,-14,-77,13,-70,22,-15,-32,-31,-49,-25,13,-31,57,3,-43,-45,-21,12,-23,18,31,-2,-21,5,5,62,12,55,83,9,-41,-26,13,-49,-15,-123,56,-37,27,-13,23,-27,-24,-14,17,-48,-127,-8,22,50,-49,-63,26,-14,-4,17,7,-65,34,39,1,-19,15,-45,-41,42,53,4,16,-27,-93,-31,7,7,-3,-36,-10,18,-9,-63,-14,-47,29,-17,35,-63,2,-28,-56,-57,10,20,-14,8,-19,-45,-46,57,-79,6,-8,5,50, /* [88][0][][] */ -26,33,-80,-88,-93,3,-117,104,92,-127,-23,-8,-99,6,-46,14,-42,-15,-4,-70,-65,-66,-56,-27,24,50,-90,22,41,-26,10,4,-112,12,-15,62,-16,65,13,-38,13,-20,-120,-10,-126,1,55,29,58,-46,33,33,-89,-56,-51,3,-52,23,61,-99,30,32,-18,-15,26,-33,-46,-35,39,1,-1,-85,18,10,73,83,5,-46,-89,36,18,-23,-16,33,50,-1,29,-16,-35,78,-92,36,35,2,-15,32,49,-77,-39,-76,-56,-20,-42,42,-50,-69,19,22,-25,98,-34,44, /* [89][0][][] */ -78,-33,-3,-26,-19,-43,94,-49,71,2,75,55,36,-61,-25,35,9,52,70,75,40,-3,-71,-9,14,44,-22,30,39,127,-19,-11,-28,-28,6,-8,-21,-40,46,54,19,35,-23,2,-12,-18,17,4,73,71,-39,-20,-14,-7,30,5,15,-29,-6,-35,-42,7,22,-9,14,-1,-10,-62,19,2,70,-61,-47,-65,38,91,28,0,-12,-2,74,-14,34,-26,-15,-7,-45,-49,-76,-62,21,-15,-15,47,-92,-2,-29,-16,97,-23,0,-13,10,3,36,61,-28,-18,35,-36,51,-59, /* [90][0][][] */ 42,35,13,-21,-49,-38,3,-7,38,44,-127,5,-55,-23,45,-43,-33,-7,-26,-18,29,48,44,-41,36,-3,7,15,17,-38,-6,-27,-30,-1,-6,39,5,-53,-18,58,20,61,10,20,-1,21,78,31,21,22,-29,49,41,24,47,24,-43,22,19,8,-34,-6,-41,-61,24,-33,2,5,13,14,-75,2,40,-14,35,25,-40,7,-21,17,20,-13,-65,20,-31,54,5,2,13,-3,-57,9,21,-21,1,57,-52,-22,-12,-47,57,-16,-12,24,-75,-24,110,-38,2,17,31,-22, /* [91][0][][] */ 27,-22,-2,-9,27,-16,-15,24,-6,13,-127,26,35,30,18,-32,8,18,29,1,-14,-10,-26,-34,3,-8,42,14,48,0,-22,-100,12,46,26,-18,-24,-22,-41,-66,-37,13,-85,3,31,11,53,-11,39,-49,-10,-1,-12,-47,29,-74,-40,-39,13,-12,-25,-9,1,-45,40,-16,-8,3,-10,-36,-6,9,10,6,-37,-34,-39,46,5,-37,-14,42,-9,14,-12,-34,11,31,-42,71,-32,45,-6,89,13,30,-2,13,-6,13,35,20,26,66,-28,-13,45,-21,0,70,-1,-3, /* [92][0][][] */ -67,8,1,-2,-67,13,13,-68,16,1,-33,32,-48,13,49,52,50,1,-20,-39,-108,-34,23,59,-24,2,-19,45,18,8,-9,-45,-29,-45,66,47,-108,-7,-23,64,-74,42,3,-12,25,2,65,15,-6,6,10,-52,115,-20,3,-28,-35,58,-15,-127,-43,-7,19,-24,-33,-53,-26,24,-23,26,59,44,11,39,-6,5,-56,-3,-82,-55,-32,41,49,-46,18,-42,24,-1,-73,-17,19,-54,83,24,-4,23,-20,-3,-12,5,50,-106,57,15,-28,-18,-38,-36,-86,13,66,-16, /* [93][0][][] */ 1,31,8,-25,-38,39,11,107,-35,-1,-9,92,-36,96,-18,4,-64,18,-23,-79,34,-27,7,-87,-54,-37,6,86,-14,-60,81,-40,-82,-5,-74,64,-22,32,-53,68,21,38,65,57,11,1,55,-59,65,-62,47,84,64,90,-24,-62,12,64,-64,19,-47,-104,-29,54,12,38,25,21,22,-54,75,64,38,-26,28,-45,-7,98,-21,8,63,16,51,-3,-15,54,0,-33,25,30,-25,-58,-70,127,11,28,27,-68,-47,-9,-103,35,122,38,-15,51,6,-65,-3,40,-14,-8, /* [94][0][][] */ 71,-12,-61,9,-11,38,-9,-17,-77,-100,-73,2,79,-20,1,-45,-23,2,111,17,-67,-19,-37,10,-37,-79,20,76,25,9,-1,-33,-68,24,12,81,-53,28,38,10,-66,10,28,62,-37,-24,-18,21,41,-79,42,92,-5,-56,-3,-21,-31,-29,-24,-24,2,25,46,19,19,-47,33,-22,127,27,-16,19,-53,-10,-34,45,-60,8,-46,-25,31,-40,-7,-1,6,5,30,3,79,-22,-53,4,21,16,-34,-83,32,-49,-26,-54,-20,-17,3,-28,-26,-48,35,-47,-15,18,2,-3, /* [95][0][][] */ 41,35,-56,-11,-5,-15,4,-52,26,7,20,-10,58,75,36,-28,-1,-72,23,41,49,5,-30,46,21,40,-66,9,44,-3,-18,15,4,-3,6,9,44,22,-3,120,-9,11,96,2,21,85,40,-74,-19,8,70,-50,-35,80,-88,-6,58,-69,-39,51,27,-22,-9,-7,-62,27,-41,20,43,-6,-16,-48,-37,-41,15,-58,-5,86,-33,41,24,30,14,-6,-15,-12,-21,28,55,-47,30,-17,-127,33,50,-74,19,-14,55,15,-9,-7,-19,6,15,17,4,-42,8,26,-7,44, /* [96][0][][] */ 67,46,-56,-26,-50,-57,8,-114,49,-118,-69,52,-7,-28,-69,60,-70,-18,10,-40,-88,-47,22,35,60,12,-77,-12,16,-20,-4,-8,-16,-26,-52,4,-14,-24,-108,-42,61,46,25,35,-39,-24,43,43,-27,-54,-16,-11,62,-88,-1,-5,43,-40,50,-41,-70,-52,25,-31,1,-79,-43,22,24,-22,61,42,4,22,-19,75,1,-7,-20,22,-25,-13,-20,48,-19,-26,33,-21,-64,82,4,6,33,-41,53,58,-99,58,-13,-28,31,-54,-25,60,-127,-44,43,-11,-33,-5,-60,36, /* [97][0][][] */ -68,-73,-85,-41,-37,-52,-58,-93,51,-2,97,8,-5,-53,71,110,21,11,-30,57,5,8,-71,49,36,85,-102,19,4,47,-17,-3,41,46,-48,10,39,-36,-28,-17,-28,-37,39,-26,-7,19,-94,-6,94,-127,39,32,-11,-45,5,33,76,-41,-28,-62,53,38,20,41,-16,-39,-16,16,-9,-57,-1,65,63,112,86,-20,-77,19,79,-22,42,46,52,-25,-22,21,32,-44,-17,-61,-12,21,-60,16,-6,38,19,1,-91,3,-17,-57,19,-5,-55,21,-3,58,48,0,30,110, /* [98][0][][] */ -105,22,-33,-22,-8,41,6,58,-3,4,-4,38,-80,102,-7,54,-16,15,-16,4,-10,-32,5,-70,8,15,-1,-28,-15,25,-30,-122,-47,90,11,17,11,67,29,12,-69,18,24,1,-20,19,-10,-61,4,15,-1,-33,24,-20,-127,14,4,-71,10,-72,-43,0,63,28,-14,-4,-15,62,42,30,55,102,-43,23,91,22,0,-28,-17,-94,20,64,-38,12,50,-91,-13,-55,-59,-14,-91,-1,86,6,-17,3,-15,-63,8,-31,-64,-68,12,-30,-10,42,70,-47,-48,-6,-26,-2, /* [99][0][][] */ 8,88,51,43,-72,-37,-44,45,20,-91,-22,15,-55,16,20,-17,-11,-82,65,-82,42,18,20,-43,58,0,-42,-21,-42,-72,17,-32,-67,53,85,8,4,-4,-65,89,-30,80,-15,-45,-6,72,70,-92,-1,70,-48,67,42,-48,-6,2,-55,24,4,39,-45,54,8,-48,-31,-47,19,119,-31,12,59,-36,-2,29,39,-31,-16,-26,-9,46,63,40,-93,82,4,56,-49,-2,64,67,63,-55,-99,-59,35,51,-67,43,0,-68,24,-53,33,-127,-30,-52,84,-105,-18,-15,-31,-39, /* [100][0][][] */ 0,47,36,61,-21,-48,-36,-16,58,-46,-1,-13,15,-67,-30,-28,-37,-22,19,-4,-14,-32,-94,6,27,-26,10,38,35,-32,-31,-21,2,-25,-12,-27,2,41,5,35,21,1,-82,127,-18,45,40,18,-27,3,45,-9,-14,-77,-7,-33,29,8,19,8,-55,29,-38,42,-52,-61,-45,12,49,-8,10,45,-92,-13,-16,28,-69,29,63,-34,26,45,-43,31,38,-65,-1,-6,-33,16,-96,17,27,33,4,-44,-3,46,-83,-7,-14,6,-1,7,-65,38,27,17,-31,20,37,6, /* [101][0][][] */ -31,48,3,-33,6,-43,0,-19,7,-47,0,-1,-41,-46,-15,-6,-67,15,55,36,-6,-49,34,-34,-48,-67,-20,1,-33,32,-21,-102,-22,-4,-6,-9,17,-8,29,-18,6,16,-40,-4,-21,-3,-16,-23,42,-18,-65,20,-3,-38,-20,-23,12,2,-47,40,-5,-53,39,13,59,-59,-96,18,59,-41,-30,-40,1,3,35,53,-49,-22,-32,13,34,-18,-53,55,14,36,-28,-3,-22,1,-69,41,-24,-35,-31,56,-56,-1,-127,-67,23,-60,34,42,-65,45,57,10,22,1,-6,41, /* [102][0][][] */ -69,-82,-87,-48,-59,75,42,-4,103,-65,-17,-114,38,-6,86,98,72,2,6,-103,-39,51,24,63,82,84,-39,81,21,-9,41,0,-80,113,-15,67,24,-42,6,61,-121,-3,40,-75,-24,-20,-58,-62,118,27,4,-71,57,-78,56,-88,-27,34,-98,29,90,96,14,-2,-69,-4,-23,-79,0,90,-13,-104,-127,-56,7,29,108,-49,-9,30,42,30,59,-37,12,-49,25,-37,77,-67,-2,-77,-50,29,9,-3,17,39,-34,-13,-4,-4,-31,10,86,-28,-48,-80,40,53,111,49, /* [103][0][][] */ 31,-8,12,46,-44,-17,-117,-11,-18,-99,32,-20,-39,13,20,-75,-19,-63,21,3,0,-21,-47,-77,-73,8,-65,-15,-24,45,27,-15,3,-21,12,28,43,-32,-65,-31,31,27,-36,-44,11,0,35,-3,6,10,70,14,-5,-11,-5,31,-3,-2,18,-63,-9,19,-24,-106,49,-50,-95,30,4,-62,-33,-62,28,64,39,55,48,30,-17,-95,80,127,23,-16,16,-22,8,-18,59,-72,7,36,29,-19,-79,-47,29,-90,-28,-18,39,-47,69,-17,-38,-47,10,-103,11,37,-14,6, /* [104][0][][] */ 32,30,17,43,-4,2,-1,52,17,-48,-83,68,-3,75,-34,-32,-4,9,-66,-127,28,37,11,-33,42,23,-40,24,-7,27,36,1,84,-6,-82,34,68,33,-51,6,46,42,6,-19,26,48,29,-62,81,-16,17,21,-17,75,18,-23,-36,21,19,-38,-35,-78,-45,-16,6,-41,-43,44,-66,-23,27,-20,26,-14,-20,1,-18,22,43,36,53,76,4,-74,-39,50,-19,-71,49,67,38,8,66,107,4,26,-1,-10,-4,-46,-37,3,73,38,-49,49,28,-23,42,76,-16,-72, /* [105][0][][] */ 127,53,10,-43,-3,-52,-39,-47,-35,-24,3,-64,15,10,85,-10,41,-63,55,14,-6,-39,-41,-25,-26,15,20,39,11,-7,-8,31,-14,22,13,88,12,25,34,-11,-50,-64,-50,110,-1,28,11,-19,-40,-35,-13,-20,-15,13,-52,-51,4,-18,-27,8,-2,-40,-17,-62,64,-13,-90,81,83,-44,48,41,-34,-2,23,47,-30,52,-94,0,30,-12,-78,106,-14,-42,43,40,42,-31,-60,25,-36,31,55,52,-33,-98,-45,-23,-64,-6,-60,8,-37,-32,105,-10,-40,91,14,24, /* [106][0][][] */ 19,15,10,42,-15,-14,9,17,68,3,-49,46,6,-14,4,-33,20,50,6,3,-34,-64,-2,45,20,44,-44,45,66,-26,15,-8,-45,65,-10,42,-81,-11,-64,32,-29,65,34,44,10,23,58,24,7,-127,-5,23,52,54,10,-15,13,20,-32,-19,18,-1,53,-11,42,-55,-20,38,-12,78,38,-5,21,8,-5,13,-70,38,-21,-19,13,6,-36,10,40,18,-1,-17,30,8,21,34,-10,72,-34,-45,-11,1,-14,-66,-33,2,-23,18,-51,-47,8,-34,-74,5,38,-12, /* [107][0][][] */ -21,14,22,-29,28,-7,-42,9,-6,-1,23,21,24,-16,-20,-1,-46,1,-6,-30,-29,-9,-9,-19,2,19,15,-18,7,-35,13,-9,-22,-36,-58,-4,36,43,-31,36,39,54,-36,44,9,-25,37,-36,-13,3,0,32,22,23,9,15,2,-24,-38,-18,-39,-8,-30,26,46,-57,-41,14,-9,-33,-4,0,39,13,127,47,-28,63,5,-40,-26,27,1,20,34,-30,-37,3,-25,-14,-68,-52,33,5,28,20,-49,30,-29,-35,23,11,-7,6,-74,24,42,5,-62,13,-49,-18, /* [108][0][][] */ 36,-99,6,7,77,-2,-11,-117,47,-17,-46,-68,45,12,77,5,25,8,24,59,88,22,-36,127,16,5,-34,-45,12,31,-23,16,6,73,2,20,-51,-19,-50,-3,-25,-66,46,21,-5,5,-25,-74,55,-4,83,-7,49,-8,-34,-26,-64,17,31,9,13,37,-37,18,35,10,-47,22,45,-32,-33,37,-25,14,-42,26,32,13,16,23,43,51,94,49,44,75,-34,97,-53,61,-75,1,-19,44,-14,2,54,-11,-2,32,33,24,0,39,29,18,16,5,34,-35,-39,6, /* [109][0][][] */ -84,25,-38,15,-3,-25,14,-1,48,-8,44,17,86,-41,5,57,29,10,115,-7,39,-77,-10,14,50,75,-10,5,36,58,-10,15,-1,-26,-53,-30,8,31,-78,27,-54,8,2,44,6,-33,58,-26,73,41,65,-48,51,18,8,44,21,-43,-76,24,37,30,-16,18,-69,28,79,35,-41,8,10,5,63,24,-2,78,23,-44,69,30,30,-20,29,15,-62,-33,-14,38,-66,9,-93,-22,-76,127,24,105,-34,56,-76,-51,-63,-69,43,-16,43,22,7,73,44,-14,14,-2, /* [110][0][][] */ 54,-40,-31,-1,-47,-24,-37,-58,-47,23,83,42,-4,50,47,-53,49,-127,-22,54,76,-2,-56,54,77,37,10,-32,-41,7,54,30,-23,65,14,38,-23,50,56,12,-40,21,41,-51,-19,61,-56,-21,20,54,58,-3,-62,22,5,-32,30,-81,31,30,-1,39,10,28,-13,84,-22,121,-58,59,47,-64,-4,-32,28,-30,32,82,5,-13,37,2,-14,-49,-84,43,-15,19,-44,-10,62,-20,-7,26,35,24,-27,-56,60,70,105,97,15,-96,-33,2,19,-58,27,7,45,41, /* [111][0][][] */ 19,-83,-86,-35,-24,-57,-30,-28,97,-23,41,-11,46,82,21,118,-11,57,15,72,110,-13,7,48,-2,8,-45,22,-63,48,-15,5,-50,-61,-89,-43,-82,1,-124,-94,-80,-85,27,18,0,-52,-99,-24,90,-12,44,-59,-17,21,-7,-50,91,-21,-2,-102,118,-5,-21,32,23,47,-12,17,-67,14,18,60,30,27,49,102,46,12,11,-88,-38,-51,115,-38,39,80,-127,-21,-121,23,-69,-50,-92,-30,-2,61,90,-45,5,-23,69,-26,-12,-20,-99,23,65,-27,59,0,-53,-55, /* [112][0][][] */ 21,-121,-45,-8,35,50,-26,6,-93,-23,37,61,-71,108,11,-123,-18,17,-41,28,26,-119,-40,23,65,22,10,-27,32,84,47,-19,47,52,59,87,-15,8,-3,-78,-7,-36,11,-5,-21,41,3,-19,27,16,21,-30,-45,63,-67,-20,3,-4,14,-49,-35,-46,61,-82,70,-120,-127,29,-9,-5,-58,-22,23,58,98,62,-116,37,-67,28,35,37,-18,71,-32,22,18,-66,5,-31,-16,62,-4,44,64,46,42,-104,4,28,-42,-78,-7,28,-35,116,-14,-64,-71,34,78,50, /* [113][0][][] */ -37,30,-70,61,-6,-52,108,-127,-81,93,-70,-15,38,-6,-29,20,20,37,48,90,112,46,-8,46,-8,45,36,-4,33,48,-16,-50,-9,0,38,15,58,-16,73,48,-23,72,63,26,-4,79,21,-31,26,59,24,-24,-6,5,48,-16,-60,-120,48,37,51,-36,-109,25,-24,102,-101,-50,-34,20,0,27,-35,55,32,-4,-1,52,-31,-8,-1,-9,74,-20,-81,-6,-65,64,-87,-83,-79,-41,-4,72,-5,25,34,29,82,26,50,-32,-4,57,86,-60,-6,-10,65,9,6,-79, /* [114][0][][] */ -28,38,-21,20,-42,34,-59,-16,81,17,-7,31,-18,33,57,51,55,-20,5,15,37,14,41,13,-44,87,-12,29,43,29,-23,28,30,14,-127,41,-38,52,-50,51,29,5,33,-56,13,24,41,-49,26,-12,36,9,42,63,37,21,-1,-76,-23,-20,-18,-37,-55,-12,-33,10,37,26,20,45,48,-19,13,-14,-32,-56,5,82,-29,7,-7,15,4,48,-39,21,-42,54,21,-14,16,-11,-20,21,-3,14,22,4,15,-38,-29,-15,64,-5,58,85,-54,-12,62,-39,3,-72, /* [115][0][][] */ 17,-53,-12,7,-26,83,-53,-73,-34,-11,-59,7,-21,18,33,-33,42,-20,27,-31,-37,46,-44,-11,-2,-2,10,-8,91,16,-14,8,8,-14,-1,22,16,1,-93,-45,9,18,-29,0,-12,13,2,-30,93,23,26,17,-4,-4,27,-34,-54,28,-73,-62,20,-31,66,-55,3,-89,38,19,62,-4,-16,-53,28,61,23,17,-11,22,-49,-3,18,-5,-56,3,-14,-79,75,4,17,3,-8,-47,53,-27,31,51,30,-83,-41,-66,-10,-23,71,23,-30,-45,9,18,-21,127,-10,40, /* [116][0][][] */ -59,39,-27,26,37,-36,66,-16,-28,4,-126,-41,-13,54,-56,-54,-4,25,9,-35,-26,3,6,-22,12,-8,41,47,60,35,77,0,-2,21,-48,-35,-56,-3,6,37,-40,53,1,-12,-24,52,46,-13,7,32,3,21,45,-58,-21,-23,-23,-44,35,7,-9,23,-5,-37,24,8,-12,-22,4,-48,7,36,8,-1,5,-30,-37,-37,-4,-55,53,10,-23,30,-49,68,-47,24,33,-15,-37,-37,12,-1,-7,-8,-5,26,22,10,53,-66,13,-6,-18,-27,-18,-127,-51,73,20,-83, /* [117][0][][] */ 21,-10,-9,-6,-29,3,23,-34,13,19,-17,20,-11,-6,-7,25,53,42,-8,18,37,-35,35,14,-21,19,36,-15,-1,18,-8,18,-33,-18,-30,-10,14,-38,14,2,11,6,-17,29,-39,9,-9,-17,39,0,10,-6,10,-46,3,-6,33,7,-20,-13,6,50,6,29,0,-22,-57,-75,65,50,38,-1,-34,-30,22,14,25,1,21,36,26,-74,-42,38,-89,7,-48,-16,-47,39,-22,7,-52,4,16,-25,-3,-51,-46,14,-44,-8,30,-24,40,127,-67,-25,46,-9,-62,18, /* [118][0][][] */ -29,-12,19,-32,-38,44,-9,-3,-40,-127,58,28,-41,22,20,-14,-25,-15,-7,-49,-4,0,-40,-18,-16,-28,16,2,23,7,4,-55,-27,44,1,18,4,15,-11,-1,-27,-4,10,-18,-90,32,11,-21,60,11,4,35,50,-2,-79,-34,-25,24,6,-10,-39,52,-16,20,-48,-31,-13,12,-12,-1,66,-1,45,34,-4,43,-49,44,-15,11,66,-21,3,21,-26,-16,-42,-70,-29,14,-49,-39,-41,-6,-11,0,20,-20,-69,45,6,4,-9,31,18,-19,7,-20,-52,12,-3,76, /* [119][0][][] */ 65,-27,-63,-7,-12,-50,2,-72,-38,-32,-14,65,64,-28,9,-5,-59,-46,-36,33,-27,8,49,14,92,-35,-31,7,-2,-12,4,-3,28,-71,19,33,-42,-26,20,3,-52,20,-16,-14,50,-35,-20,-10,-3,-66,-2,-19,26,21,26,-84,-87,-3,-41,-88,-70,61,-13,30,-31,-16,-17,11,-1,-61,24,34,-29,28,-13,40,-17,-65,-95,28,44,-32,-12,1,-29,-17,-6,-17,37,16,-65,-5,2,-22,13,-55,-29,-50,-34,-88,16,-39,58,82,-30,-27,127,-35,-24,-10,-22,29, /* [120][0][][] */ -12,-31,-53,37,58,42,51,63,50,82,54,-24,25,3,26,58,22,-22,27,61,9,-35,14,36,127,51,-67,-34,45,-6,121,72,37,-15,-75,26,77,23,95,-38,-91,7,0,-29,-5,-17,-45,19,-22,-39,5,-23,71,20,65,-85,84,-78,-69,14,-51,-88,32,-6,-57,31,-53,21,-57,21,60,61,-33,13,51,-16,-56,4,37,-77,2,-66,11,14,-87,49,-72,31,-56,-8,10,-118,-108,3,-23,87,-94,49,-52,20,7,48,-20,58,-27,52,64,0,54,-22,125,3, /* [121][0][][] */ -17,10,-28,-14,18,13,-32,-35,37,-36,-49,27,-16,-10,-25,-17,3,-16,24,-32,22,-2,79,15,1,-3,45,46,7,27,6,-51,48,-32,21,2,32,1,-69,28,-31,58,58,-7,-39,18,19,-62,52,5,10,-1,-38,-8,-32,52,-38,46,-79,12,44,-41,0,67,0,-90,-35,24,24,11,12,-55,-20,27,58,53,-11,2,-1,-22,-12,69,-49,-4,19,-29,47,34,16,-49,-6,-3,73,0,88,48,-127,8,-51,-86,-31,-77,-26,8,26,11,-29,3,-62,27,-68,-71, /* [122][0][][] */ 9,-56,-16,-22,5,-84,-35,-69,25,-73,-26,-53,17,-23,78,8,85,-52,35,27,61,36,-86,66,127,98,9,20,-10,-16,73,56,-24,-15,13,-6,10,1,5,72,22,-85,-51,48,-16,14,-40,25,0,-35,-18,14,27,-39,-37,-37,55,-28,-20,48,11,74,32,-28,11,21,37,1,-5,111,54,-28,-109,4,32,37,0,27,-48,-8,-23,-39,-40,-21,-55,43,-23,18,14,-55,10,6,-20,50,56,43,26,-57,-23,-80,0,-67,-41,-123,-1,-2,39,-26,35,-5,5,-56, /* [123][0][][] */ -30,95,-6,-6,-9,-103,-45,-54,43,-74,-127,104,-58,-16,-28,-19,12,50,98,-25,-10,-18,30,-30,-37,-61,49,41,-6,23,-21,-75,35,-67,-12,-38,12,-51,-102,-62,67,-6,-38,-51,37,114,25,-10,5,-58,-46,38,-38,4,-34,-52,30,6,-47,3,23,-8,-62,19,6,-35,-77,87,-21,-9,-15,-46,-58,-31,32,21,-41,5,20,-10,11,24,-45,10,15,-31,-23,-27,17,37,-65,6,33,-3,-57,75,10,33,19,34,-10,-24,63,18,-63,-34,39,-47,10,-5,-65,-36, /* [124][0][][] */ -4,-2,-13,-32,15,-14,14,-30,-17,50,-4,-2,26,6,-11,-9,22,58,19,29,6,-35,-21,7,-28,-22,49,28,-40,56,-25,-11,23,-17,7,64,-53,16,-10,-28,-12,-40,-64,10,-26,63,22,25,-19,-38,12,77,-64,10,-14,-40,1,14,-13,5,-3,-6,-38,-16,14,-44,-52,3,-9,0,17,-45,18,-21,0,36,-12,1,-6,-21,24,52,-28,-4,-21,-40,39,9,15,-33,-24,-52,12,32,-10,-5,35,-51,-56,3,-70,-29,3,19,-127,56,-11,3,8,20,-4,-72, /* [125][0][][] */ -20,40,-61,-76,-29,28,-36,81,-7,-12,-67,-25,32,40,-88,5,-16,46,24,-33,-127,52,112,22,-40,-72,-27,122,86,63,-44,-39,48,8,17,35,-35,-25,-3,0,47,25,23,19,-81,2,37,83,23,-11,-18,5,9,-21,-46,-81,-81,79,-56,-64,39,80,-7,-107,11,43,-32,-6,57,-44,12,-43,-7,35,11,-20,-1,-9,-116,-25,2,-24,-55,58,-65,-52,15,-67,-10,-42,6,-37,-31,-17,-101,-116,-18,-65,25,95,44,-19,83,81,-10,-32,57,-45,-103,13,93,-32, /* [126][0][][] */ 0,-5,-19,-91,-63,12,49,24,-8,-60,2,46,27,35,5,50,-7,26,21,-5,-29,-35,-69,19,-62,26,-32,60,26,64,13,-44,-7,7,90,27,-19,-84,-44,20,7,-31,-115,-21,1,-5,52,-19,77,-45,-55,115,-43,-69,-23,-37,-9,7,-86,67,-61,-1,41,-61,35,-46,21,18,23,-9,65,-77,44,-10,36,15,-27,33,-27,-99,7,-103,-43,51,35,-24,127,0,16,13,-41,50,2,95,-12,40,12,37,-36,-11,-46,-25,-31,46,-43,0,49,-16,-73,27,38,4, /* [127][0][][] */ -28,-26,-112,63,17,30,47,-63,105,19,77,6,43,9,93,33,25,61,8,-27,127,-26,2,33,54,8,52,30,-60,-5,-72,-48,2,7,-5,-27,-42,-56,5,-90,-7,0,7,-27,-74,32,-81,32,26,-40,10,-8,62,-5,-33,-31,19,-16,-5,11,64,67,-61,-45,38,21,-22,-23,-53,-9,19,11,29,3,2,21,33,8,11,-1,-31,-65,-9,-20,-117,41,-45,-51,-25,-35,1,1,-65,27,-33,114,34,-44,37,-51,8,-10,28,79,-10,-33,15,24,70,-10,34,-24, /* [128][0][][] */ 76,-11,-73,14,54,-84,-86,-47,-50,59,-8,26,44,-27,-9,-55,-106,-16,-51,-75,48,-67,-20,-42,53,16,60,58,104,15,6,-85,5,-29,-14,12,4,-31,-50,-30,29,-41,-4,57,-49,49,-18,23,-50,11,-62,72,50,-20,16,-16,-95,-60,-127,-12,-104,-19,-16,86,-4,-24,-52,17,-24,-91,85,18,26,18,-10,66,-25,35,24,-35,16,97,-64,-54,10,37,99,-48,-94,11,-64,79,69,11,72,-18,-49,-14,-35,38,70,-2,41,12,11,16,-6,-24,-4,-1,-59,-21, /* [129][0][][] */ -5,-42,-20,90,13,-7,9,13,-30,-17,67,-8,-48,62,-16,2,14,39,54,-58,49,-1,-66,1,-74,29,-62,-23,-11,38,4,6,-25,-15,-35,19,5,-20,36,-15,41,-11,-15,40,-18,42,-7,-66,46,4,10,-25,-32,44,31,25,-16,-20,-25,57,-6,-61,-9,41,4,-37,33,-17,35,-1,52,-16,-12,6,64,-66,-10,106,14,-40,-7,-22,-36,-36,-29,-12,-55,-18,-127,13,-43,-85,-64,-20,-14,67,1,12,25,24,-33,10,5,-33,-22,63,-6,30,71,-23,11,-21, /* [130][0][][] */ -18,-17,-68,-7,21,-30,-55,15,-11,13,5,15,-9,56,-44,-23,9,-31,-8,-64,127,-77,73,-48,14,-7,-2,-13,-41,-4,8,-16,36,-44,-3,-5,9,-2,48,15,25,28,-9,-8,-20,13,-23,-50,10,-8,-31,-7,24,-79,-9,49,-51,-34,-42,2,-20,63,9,32,47,-45,2,-5,3,30,5,70,-25,46,64,53,-31,51,-24,-22,16,31,-13,92,4,48,-5,-31,-28,24,-34,-40,-7,3,34,7,-23,12,-39,5,9,55,-19,20,-30,-12,-56,-29,37,13,-17,-50, /* [131][0][][] */ -70,14,-25,11,-10,7,-85,-76,37,48,6,-34,-10,3,19,48,-3,25,-31,9,52,-47,106,-24,-21,-71,61,17,20,-11,-22,-13,-45,-96,-34,21,1,73,17,87,-72,-2,41,-5,-85,-31,-46,29,-2,-21,0,-36,21,16,-45,-12,-40,13,-48,-46,2,35,-2,61,28,4,-15,42,17,-64,39,41,10,-78,38,115,6,-19,-83,-21,10,-5,-79,34,16,-25,-1,-25,-19,-67,-79,8,-5,32,58,-7,-49,-74,-127,-58,-32,-94,-7,36,-23,-27,76,-47,-57,16,-78,-23, /* [132][0][][] */ 61,35,52,-48,-30,-1,-8,-22,-46,-107,11,7,54,-12,14,-10,-27,-49,106,30,-12,6,-67,-40,96,9,45,51,15,11,82,-22,-59,-23,-21,29,-45,18,8,36,2,59,-18,3,-19,28,28,19,44,-34,42,6,6,-24,-72,-23,12,-53,-23,78,-96,-21,62,-31,43,6,-20,70,54,33,58,-62,-106,-34,47,32,-53,16,-102,-21,-42,-75,25,31,-1,51,127,2,55,-75,3,-16,7,70,25,-9,-65,-57,25,-24,-1,33,-33,20,-16,-19,-8,-61,-7,26,-3,-13, /* [133][0][][] */ 3,-15,8,44,-20,-63,-53,42,-34,38,17,24,-49,6,-22,2,-38,15,43,-8,-31,-28,44,20,-6,7,28,-12,104,-43,10,-20,-35,42,2,11,38,38,-68,-8,55,39,-64,35,-37,22,5,35,-90,-19,41,-5,-10,-62,24,-9,28,46,30,-54,6,-50,-62,-18,29,-46,-54,41,44,-7,32,17,-10,70,-12,127,2,-8,9,-46,-27,79,-46,18,-39,89,-6,-36,-6,-7,8,6,-11,-78,-38,36,10,55,29,7,15,13,37,16,-44,-13,-23,-37,11,9,-9,6, /* [134][0][][] */ -106,2,-69,-78,-22,101,-98,-17,28,65,-25,-51,-87,118,-37,101,34,13,-14,-16,14,-41,-5,-18,-33,-31,87,-21,29,51,26,-56,-76,52,-56,45,-84,64,-42,63,-24,38,-38,33,-29,-12,-6,-93,103,-1,-10,24,-9,40,-58,-9,-18,-82,27,-63,-56,-5,34,-61,106,20,46,23,127,8,15,74,2,107,7,37,-33,48,-83,-53,43,122,-18,71,15,-41,-17,72,-116,10,-64,-23,24,27,-34,4,41,-1,54,-48,65,-72,-16,-65,-17,22,69,-19,-73,-29,-23,-18, /* [135][0][][] */ -74,-23,43,-1,-25,-41,58,-43,62,-38,-18,-57,-7,0,34,76,-16,0,39,-24,48,-11,-5,-4,-21,61,-69,2,40,19,-3,25,-3,44,-48,-37,-30,-43,20,127,11,-42,43,-46,38,-23,-27,21,52,-23,45,-12,67,-34,-73,-18,-6,0,-54,4,-37,-16,-22,24,9,7,58,-48,45,-12,48,31,-53,-8,4,-23,-27,27,-11,-58,56,-57,15,-18,-92,-4,-47,10,-3,10,-24,3,-58,41,-59,-10,-5,30,-28,16,24,-14,15,2,24,15,38,-8,59,21,-38,-25, /* [136][0][][] */ 36,-34,-24,35,14,-32,-8,-7,-43,-41,11,80,5,26,13,-43,-6,-24,108,12,-9,-43,26,6,65,-60,-29,39,53,-11,-59,-37,-13,-12,-43,28,11,-12,1,-59,-30,-31,-81,38,19,-29,74,-62,19,-8,-43,-36,6,4,-38,-69,-26,-16,12,-33,9,36,46,-35,-43,-49,31,11,-4,38,59,-40,-2,34,0,-4,-32,53,-49,34,23,-20,-51,70,-1,-39,26,19,66,46,-39,2,15,8,14,44,-11,-23,-10,-25,19,38,-29,54,33,-46,38,50,-2,127,50,8, /* [137][0][][] */ 2,-15,30,33,45,5,-40,0,62,-4,63,44,4,-40,-97,-4,38,25,18,6,39,9,-7,-25,38,48,16,7,-38,-31,0,-45,-127,93,-47,-22,-3,28,-91,-52,-18,36,14,0,52,3,-11,68,-18,-38,61,47,74,-74,2,-88,15,27,-12,-21,-28,-38,15,-36,-27,-11,8,55,38,-58,114,13,32,30,-2,62,-88,3,3,-4,31,-28,-59,34,36,51,46,-34,3,0,-29,-91,-34,-76,-50,-13,31,-27,-21,-29,-37,50,3,101,-63,-89,122,-64,-21,-2,-4,-59, /* [138][0][][] */ 30,-17,-23,127,-44,-2,-11,38,-56,-74,-18,15,17,-57,-13,36,-33,-29,58,-68,-53,1,79,-23,-78,-33,92,46,22,-38,-22,-78,-9,21,-6,62,-31,28,7,55,-28,63,-13,11,-32,28,-55,0,-76,-34,77,31,69,-6,26,-86,-3,-57,11,-20,-67,30,-13,34,-15,0,-37,-13,46,-26,-7,49,5,-51,-57,97,15,31,-27,-56,-5,46,-44,-29,-36,29,52,-10,-41,24,-20,57,-15,-77,-8,70,-16,1,-10,-67,24,33,8,33,-92,-33,-50,-68,-14,-9,-17,8, /* [139][0][][] */ 28,-91,-38,-30,-46,-4,-56,-33,20,18,-20,76,6,6,40,-1,50,58,19,-36,73,25,77,49,40,43,21,38,72,-13,-22,53,-29,10,-48,12,4,-27,-28,29,19,22,-28,-26,8,18,10,54,70,-60,0,-35,52,-40,-24,60,-14,-7,12,-54,-55,-71,49,-8,89,-14,26,19,-11,42,-29,67,14,71,13,47,5,-44,4,12,127,92,-45,-24,8,6,-18,-2,10,56,-78,-64,121,35,18,-12,-25,33,-78,-46,-22,-89,81,90,-39,32,13,6,37,38,-62,-42, /* [140][0][][] */ -26,-32,-73,83,-56,-11,-15,4,-22,-6,63,-18,-1,64,4,5,15,-30,10,18,2,-13,-34,59,20,44,2,-44,95,-18,10,5,-11,-61,6,27,106,-5,96,11,14,17,15,35,20,-17,28,-32,31,-31,11,82,-1,-47,-72,-1,-69,-72,-55,10,54,3,14,5,-78,93,-48,-70,84,3,-23,-55,-29,91,-1,-9,-5,78,13,-28,50,-97,-17,-29,-74,24,-37,-33,-66,-52,-22,19,1,-64,-2,-58,66,1,33,21,127,37,-8,39,127,45,-21,-49,69,-19,67,-1, /* [141][0][][] */ 48,-71,-15,12,9,-61,-11,21,39,-4,-55,50,32,59,-12,-58,66,-98,-76,-85,16,94,-4,27,84,-2,18,61,2,42,-12,-40,85,39,-34,34,-32,-9,-40,-5,-17,-50,27,-28,7,12,2,-47,41,42,77,-79,-9,23,81,-28,-31,-25,-14,65,41,1,-24,2,-127,24,4,-29,4,36,-32,1,-15,-34,7,5,34,23,92,-46,-13,-28,-16,-14,-32,9,4,-19,-42,-27,-4,36,-11,104,-9,17,-28,10,30,9,63,54,42,0,25,-12,-1,24,41,26,68,58, /* [142][0][][] */ 85,-72,-87,-44,17,-12,-37,84,-76,39,27,125,15,18,23,11,30,14,58,-74,-75,8,47,7,56,-26,78,91,31,-13,-38,-50,-127,10,11,87,-52,-11,-12,41,-16,25,28,-2,-31,-24,-16,14,27,-3,65,-24,36,-53,12,36,18,-19,5,-13,-81,-21,16,20,61,12,-33,-10,42,86,28,-21,-44,101,26,55,39,54,36,14,13,30,-63,19,31,15,1,-56,7,11,-58,-66,-16,79,67,-54,22,-17,41,-37,-30,8,29,19,20,-2,23,-67,-98,61,-13,22, /* [143][0][][] */ 14,-74,-28,41,15,56,32,-61,-20,-57,-8,-70,-38,105,-40,-49,33,-79,11,57,56,34,-70,36,-26,-24,-21,8,-79,-4,-56,20,-41,22,-34,38,57,-70,25,-33,-35,0,56,3,-8,85,-33,7,60,28,0,4,-5,18,-86,-15,27,-42,34,34,41,-41,-9,11,-33,26,35,5,48,52,-24,-13,36,25,29,-31,-22,33,15,-44,-22,-86,2,-54,-68,78,-26,-8,-54,-123,-38,-13,0,-9,-17,127,-17,-106,-47,0,-6,-49,47,80,-4,-17,46,60,63,14,66,3, /* [144][0][][] */ -4,-7,-13,-88,-52,13,22,41,-25,-10,14,89,-27,-11,14,28,10,25,59,-127,-103,-5,-20,15,14,32,72,48,33,61,-28,-26,-118,24,53,24,-107,-7,-25,26,-16,66,5,-8,-24,6,0,48,79,-9,2,31,107,39,-82,5,-5,51,39,11,24,10,7,9,23,-18,5,4,17,8,33,-33,57,17,18,66,-56,-37,-34,28,62,8,61,14,44,71,-18,-93,-22,-2,-104,-17,-49,-28,-9,-49,-30,-79,19,62,-20,-25,35,96,-113,-52,17,-53,-55,72,82,-51, /* [145][0][][] */ -108,30,19,-9,0,-3,-92,38,-103,-17,-64,24,-62,92,-16,26,-19,-1,104,-31,96,-32,38,-127,-42,-40,81,-38,70,58,109,37,13,32,32,-22,-4,-23,44,14,-82,-54,46,-47,-11,1,-19,-1,-31,-22,-40,-23,-34,-72,-32,-22,-61,-41,-8,-19,-3,20,48,-66,-19,-40,-11,29,92,-98,75,-38,-15,55,-60,108,-51,-24,1,-71,93,-102,-117,-22,36,67,17,-105,-64,-42,-63,45,36,-66,-125,104,-9,-40,-26,25,79,-92,17,85,-60,-49,-10,-37,-48,-3,44,-72, /* [146][0][][] */ -1,-27,-21,12,-1,11,16,-48,-9,39,-68,81,-5,17,-13,-27,14,67,43,-30,73,24,45,-40,59,-2,10,6,56,47,127,-41,11,-52,77,5,-8,-16,30,-47,57,61,-54,-53,-21,104,36,28,-6,-93,-69,-15,-74,-2,41,-39,-94,6,-35,72,-39,69,32,-95,-15,-66,-10,54,5,-50,68,-26,-1,70,53,35,-65,-2,7,-26,41,76,-27,-18,-25,33,-8,11,111,61,37,-70,-37,-24,-6,70,-8,36,-68,-3,25,-71,51,-43,-19,-31,41,-19,-42,56,44,-73, /* [147][0][][] */ -2,20,-41,110,11,-51,39,-59,127,-30,-52,-73,16,-54,-35,23,78,-50,-53,-41,56,19,-9,21,5,-13,4,36,41,72,-7,29,-48,41,-88,-69,75,-12,-15,77,20,-36,18,64,21,35,29,8,-11,-7,93,-8,97,-16,30,59,41,-54,-56,66,-40,-7,3,45,-24,-21,-49,45,-19,56,-8,-16,-30,-34,-31,-36,-16,63,111,-6,-38,2,-6,27,31,98,36,26,-61,-9,-30,-55,13,-18,-30,15,-21,49,-51,-59,2,-12,10,25,46,56,-16,56,86,38,27,-27, /* [148][0][][] */ 65,-35,8,51,2,-2,-7,0,27,-2,33,9,27,-15,-22,-37,-3,-41,4,18,69,51,7,7,-51,79,14,21,-20,30,-116,-7,17,20,54,41,102,20,115,18,1,37,-51,-8,-63,127,-49,-20,40,32,65,-52,-2,0,10,-10,-37,33,-52,-14,-74,37,-16,109,-30,51,-121,10,68,60,-69,-15,-94,-61,45,-23,-13,23,-31,-13,45,-6,-3,-59,21,25,-103,-51,-110,-47,6,12,-13,-10,17,72,60,5,-4,73,-32,34,17,0,0,39,-47,29,111,-16,35,-43, /* [149][0][][] */ -36,-34,45,-19,10,41,-23,56,22,50,-8,-25,-30,57,35,23,-14,-32,-77,-81,54,-3,18,0,31,-4,48,11,3,25,49,-54,0,27,-64,16,-66,127,-4,2,-96,119,12,-60,4,-57,33,7,84,-41,43,93,-13,53,24,-53,16,-8,-5,39,-51,-65,79,-65,6,-12,2,58,-17,-68,21,33,-57,3,0,-10,-29,60,-18,-14,105,-32,-89,43,19,9,15,37,58,-14,-55,-8,23,35,16,-50,26,-17,-54,-30,40,36,20,82,-50,-28,56,-72,4,-23,-5,-28, /* [150][0][][] */ -61,-54,-24,24,21,60,14,-25,45,-42,-20,-55,47,-10,8,35,70,-22,27,30,21,44,-11,7,26,12,-3,21,25,-34,34,27,17,5,-43,-36,23,6,-42,48,-50,52,59,24,23,-4,-53,11,9,31,7,-7,127,-15,29,-30,20,-42,-34,12,24,-28,-3,-22,2,27,-15,-23,-23,67,-28,44,-29,55,97,75,31,41,-65,-40,-4,-57,-1,-22,-48,27,-31,-9,-88,-43,-91,-34,-31,49,-35,56,32,10,-12,-40,0,-5,-20,-9,-13,-56,37,42,-21,-7,11,42, /* [151][0][][] */ -57,-48,-48,16,-35,-64,-45,-48,21,-9,67,70,-12,-22,2,4,74,30,6,53,20,-27,-29,2,127,18,-14,11,-16,35,57,6,0,-44,-87,-38,24,3,17,27,0,50,17,69,74,-73,-16,-50,52,-96,60,-19,11,5,75,-44,-14,-84,-109,77,-26,-76,35,94,-73,48,-36,-47,28,-21,95,-65,-11,-92,-16,23,31,67,10,44,89,-59,-29,-102,-72,39,-44,-32,-38,-16,-52,-49,35,-42,-23,-44,-46,46,6,3,0,77,-15,17,67,20,28,-19,25,-17,38,-115, /* [152][0][][] */ -41,25,-91,20,44,-102,-14,-5,40,-11,-97,18,20,105,-62,-43,53,36,23,25,52,-21,41,-104,4,10,40,-35,-21,-17,57,-111,-5,-27,-91,-55,-16,76,-53,35,-78,8,48,61,-2,-2,6,-19,9,15,33,45,16,-19,-118,-29,5,-49,-35,32,-25,-3,-42,8,25,-1,-44,-47,69,4,-70,76,57,16,-20,60,-8,-12,7,-56,28,-53,-45,111,-8,-35,-19,26,-22,21,-124,-20,67,-60,-46,-3,-33,74,-112,-6,24,-17,23,26,-44,-17,26,-41,-17,35,-13,-127, /* [153][0][][] */ 29,-26,-49,-6,-118,60,-89,59,-1,8,-49,89,-51,-52,-25,59,-10,-95,12,-38,-34,-3,-38,44,92,61,-21,66,85,-87,-17,-14,-106,-39,7,85,-3,85,-121,32,-25,26,-127,97,-2,45,105,-63,13,-57,80,41,-32,19,-11,3,9,52,15,-43,80,34,67,-6,-15,-59,0,-6,-37,12,-3,-3,-6,59,22,29,-46,-34,-77,-20,-55,21,40,83,47,-45,6,11,1,68,-5,-37,-51,84,70,13,6,11,5,-64,-72,-58,-33,54,-20,-100,23,-29,-52,65,45,35, /* [154][0][][] */ -27,-15,-9,29,-7,3,-26,59,-51,-13,-17,-3,-52,48,72,28,-22,19,64,12,-83,-54,63,-48,-13,20,34,127,7,66,-29,-73,-56,15,-10,82,-26,-1,-36,1,44,-44,-69,5,15,-17,-13,13,-3,-8,88,40,50,-6,10,10,26,26,-5,-90,-13,-2,4,23,13,-19,-7,-2,52,35,9,-6,33,45,35,44,-54,-16,-8,-53,-12,36,-7,23,-53,57,27,-44,15,-85,32,52,-53,-21,-51,-9,-29,15,3,14,-9,-32,39,4,0,58,14,4,-46,26,55,2, /* [155][0][][] */ 19,-23,-39,-34,-84,-75,-76,-78,-3,-65,-7,-2,-93,-22,-5,-104,18,-24,2,-17,57,-61,-36,-119,75,-13,-8,43,38,35,53,-115,7,-45,-77,-12,5,-62,-14,-38,-7,-1,-80,58,2,-43,36,-93,-9,-6,33,-20,35,-9,-1,-68,-24,-8,-34,-24,-37,-33,3,40,-38,-92,-62,-48,-25,-8,-7,-37,-24,-77,58,60,-28,-40,-25,79,85,-30,-12,-28,46,-109,3,13,-19,10,-94,61,47,47,6,-9,-127,14,27,-9,-36,56,81,-22,-33,86,-10,-35,-47,43,8,2, /* [156][0][][] */ 60,-42,11,2,-6,38,55,-86,-8,-80,-102,51,87,-11,44,13,57,44,127,19,47,-20,-29,33,-59,-5,-8,-23,79,-2,-68,16,-31,-26,32,68,-55,-19,-25,46,-43,9,-14,23,-80,65,-15,-40,4,32,88,13,40,4,58,0,1,-62,-47,4,29,8,30,22,-36,-104,23,8,67,109,-58,-3,44,-2,-20,2,-39,57,-33,-25,31,21,-21,30,-52,6,-49,-32,-36,3,22,-15,-59,15,17,-18,50,-6,-2,-18,10,-18,-16,-48,9,30,-21,66,8,-46,-4,1, /* [157][0][][] */ -17,-23,-44,36,-41,6,-23,-55,51,69,-17,-11,-127,27,29,19,-42,53,-21,-23,13,-4,35,10,-29,-86,-30,-20,24,71,-18,-2,2,59,-4,-13,-52,35,7,-1,-36,50,-72,-32,-105,78,30,-12,-17,-78,-8,5,11,-21,-5,-92,-61,83,22,5,-56,-21,-11,-56,-5,-100,-22,69,-8,-39,-12,-3,-111,-39,79,3,15,-2,-21,-81,-11,-22,4,13,28,-16,83,-10,19,-14,-66,-5,-29,46,63,21,-67,15,-56,-25,7,17,-26,-44,-23,50,-42,-91,-55,11,24,-30, /* [158][0][][] */ 35,-7,-8,15,-71,-70,-28,7,-127,-63,8,118,-34,-67,-36,-23,-16,57,76,-1,31,-49,-21,-26,26,-16,31,18,-39,-81,61,-99,-77,-11,109,-14,8,-7,-14,-23,-46,66,-44,-27,-74,110,-87,-21,90,-12,2,56,11,-98,-61,12,-117,-14,76,-18,0,13,-30,23,-83,-5,-18,48,-17,62,-7,79,-72,9,32,43,52,34,16,-39,72,51,20,58,34,-8,-44,-62,7,-44,-33,4,-2,-72,78,27,56,-10,-2,66,87,49,46,-40,-47,-55,-39,16,2,2,-7,23, /* [159][0][][] */ -44,-111,-53,57,-58,5,-44,-18,-69,-56,29,-40,-3,43,36,-85,10,-3,84,-56,-34,-34,-14,-45,-10,-7,51,-15,18,-40,53,14,-5,-15,43,105,32,-1,-39,-33,-86,36,1,22,23,127,-13,26,47,-16,34,-34,57,18,-98,-105,-111,89,1,-85,-19,-30,-1,-24,4,1,-10,24,-11,-2,18,-31,-38,-41,80,60,-38,31,-49,-30,1,38,-18,65,-2,-97,-5,12,51,32,9,18,-77,7,75,76,49,-72,-43,41,24,48,27,-6,7,-45,34,-79,-16,-31,18,-110, /* [160][0][][] */ -10,-12,-24,-44,5,-9,-12,64,-65,-102,-31,43,-27,20,4,57,31,4,94,-127,-5,-10,34,44,46,-18,-75,27,9,-17,-6,0,-36,12,25,43,1,59,-116,16,-38,22,-118,11,-11,37,43,2,46,-56,-10,67,20,-65,8,-27,-60,50,-64,-44,15,-6,-31,-14,-34,-42,-15,4,-27,-75,25,25,9,28,28,4,37,-34,43,11,37,36,4,61,-18,-17,21,9,84,53,30,-63,-62,-29,45,-22,15,47,-102,-17,-38,-20,-21,3,3,-23,7,-52,51,48,42,-32, /* [161][0][][] */ -7,-19,3,43,-51,-5,-51,66,24,-10,5,-6,5,21,17,18,-21,-50,13,-56,-78,-65,5,-53,-8,-38,24,49,-9,-8,-27,-11,-53,72,22,52,-34,82,17,33,26,80,-16,47,-127,11,60,-16,-4,38,-11,-3,4,-30,-56,-13,-33,15,23,44,-50,29,-55,43,42,2,-8,46,7,0,4,61,-31,-15,-24,21,-2,-5,-21,55,13,-62,26,-6,39,3,-13,-3,3,7,-56,-61,24,-50,-24,6,2,-72,11,9,15,-89,39,25,-11,-31,32,8,2,61,-8,83, /* [162][0][][] */ -12,15,55,-16,-105,-87,-27,10,-112,-69,-58,45,-18,-19,9,-61,-22,-42,95,2,-95,75,10,-9,-35,-67,-110,-35,13,45,-27,-15,-82,-8,-51,9,-59,-33,20,19,-124,80,-73,32,-25,23,-49,51,56,26,-11,43,65,30,-54,-45,-17,8,-29,56,-25,44,15,-68,-3,-121,2,32,-9,-27,-3,-89,52,39,59,23,-41,-20,0,41,35,5,-24,68,8,110,-66,-125,41,30,-8,-17,-85,-56,61,-3,-23,-23,18,-70,13,-11,32,34,-73,68,39,-97,-44,5,127,-1, /* [163][0][][] */ -34,-70,-61,90,-18,-38,-93,29,78,12,-13,17,1,11,18,127,34,32,-75,-37,-66,24,4,59,46,57,-89,1,25,29,0,34,0,65,-59,34,-39,6,11,36,4,-6,27,-3,16,-10,53,-4,-27,-42,41,-51,6,-8,18,57,45,-72,-74,18,72,59,-16,27,-10,-39,-12,79,-11,17,-21,-51,-25,27,-58,-40,18,-3,2,56,-42,25,-39,-37,-80,77,-35,-31,29,17,19,14,49,-52,-43,12,-4,97,-27,-35,12,1,67,-6,30,87,-25,53,92,1,45,-31, /* [164][0][][] */ -44,-82,-42,-35,53,-2,28,-3,-2,-12,61,-29,46,-5,-77,-3,-24,-83,28,-11,38,9,2,9,32,44,-21,-19,19,19,-20,2,-38,-14,-88,-55,15,89,-75,68,-22,13,-9,-56,15,-56,-34,61,42,24,51,-20,9,-9,75,55,89,-8,-32,71,72,-35,15,-28,-42,-13,-84,-29,-82,29,26,3,-14,-38,57,31,16,74,-63,-61,-18,-21,-84,42,-43,127,-10,17,-49,-56,-59,-61,-16,52,-8,-45,-18,17,-100,-32,35,106,-9,-14,-13,-87,-40,-30,26,-24,31,-68, /* [165][0][][] */ -61,-47,7,-51,-38,68,-81,-27,-56,-45,-90,32,23,4,-58,-18,-75,-1,51,-9,-42,2,78,66,18,-34,-70,-12,17,51,107,-24,-9,43,33,6,7,-89,23,86,-35,39,-17,-127,15,5,-21,46,38,-12,-74,4,58,-29,27,-8,-28,-11,-7,6,10,5,-52,11,64,23,-64,15,22,-28,27,-3,-12,57,-46,97,-118,9,-116,-29,27,-23,-23,44,6,45,-18,-5,-34,-52,-28,6,-50,-4,-36,-28,-1,-9,-25,-88,47,-7,27,23,-97,-72,32,-3,-72,20,33,55, /* [166][0][][] */ 55,-26,-28,-26,-13,11,59,-11,14,-84,22,-14,-37,-40,30,5,85,-68,-32,-49,20,28,-13,45,12,17,7,3,-29,1,-8,28,-28,67,-54,36,25,-19,-25,31,-33,-5,-42,26,-50,-27,-12,-59,13,16,100,23,-22,16,69,-14,36,-47,-35,50,21,-26,13,20,-86,-19,2,-13,5,8,-6,-3,-86,-38,-42,-4,47,127,32,26,39,26,33,22,18,3,-7,-17,41,12,-45,-42,21,-11,-6,-29,10,-3,12,-8,-6,36,10,23,36,36,5,20,44,86,-16,-21, /* [167][0][][] */ 3,-17,-20,-24,-56,4,2,51,-36,-27,40,29,-19,59,17,10,0,40,-19,-4,-28,-10,36,20,21,-28,10,40,49,11,26,-59,-72,8,46,34,-80,-34,-46,-28,12,1,11,15,-15,-19,-14,8,-17,18,42,21,-32,30,-21,5,-17,-99,70,-8,-12,-30,-9,-9,127,45,-8,-19,60,-20,-12,-39,-24,87,-5,36,12,9,-48,4,15,47,-48,-45,34,27,-41,-28,-60,-50,3,-37,21,36,-5,-37,0,-40,65,-19,25,-36,-1,22,-35,38,89,-16,-17,82,33,44, /* [168][0][][] */ -37,42,27,-4,-101,-53,8,51,35,18,-65,-17,-62,50,-17,-40,29,-46,-92,-80,48,-54,-36,-40,8,-26,74,-3,-19,10,55,14,-24,73,-33,66,19,89,28,32,-78,64,-3,-13,-45,-57,59,57,7,52,-47,127,41,20,-41,12,-22,-36,-10,-68,-40,-77,-42,8,-27,2,-65,2,47,-45,17,33,-11,21,15,-40,-16,44,-9,9,62,36,-25,7,-7,-8,38,45,37,47,-10,-13,63,27,-4,-18,8,-85,-48,23,-18,7,-87,80,41,19,28,-34,47,46,23,-55, /* [169][0][][] */ -25,32,-34,53,-79,34,-66,-27,-33,-34,16,51,-94,1,17,-48,-22,-10,12,-22,-41,-32,-50,-56,-6,-5,127,-3,31,-69,61,46,71,9,19,74,99,-15,-30,-15,-16,-10,-4,2,-89,26,23,-90,24,40,25,33,30,35,-30,-60,-86,44,-55,-47,-20,0,20,-40,-69,17,-7,69,10,0,50,-42,51,66,36,21,-70,95,-58,19,103,6,-30,55,-59,-46,7,-86,-36,-3,-31,-64,14,-80,-11,-21,12,-88,-41,40,82,-16,22,-27,-9,-32,-20,51,29,27,-18,16, /* [170][0][][] */ 13,109,9,-62,-32,14,37,34,-11,-13,17,51,-30,-2,50,32,-15,25,-21,6,-81,-42,-37,-10,39,-40,-11,53,9,-36,23,-59,-42,15,26,29,-7,-50,-59,11,-65,47,-7,7,34,61,45,37,54,-37,44,44,11,-80,49,-127,-76,5,-50,-25,-26,15,-40,-37,-34,-23,-9,15,-4,-4,37,-7,-55,-11,-59,5,25,7,42,-36,-43,34,37,-3,15,-63,65,-47,12,-3,19,-6,-43,68,7,21,-25,-11,45,3,-14,-6,-3,35,-38,7,38,-19,-11,32,83,-7, /* [171][0][][] */ 71,-42,13,-34,-17,29,-20,12,-127,-36,-46,31,43,36,-100,44,8,-31,12,3,-7,-50,18,-31,36,-17,17,48,-37,25,-37,-38,-9,-12,38,29,-21,-30,12,-21,-15,1,-78,-4,0,17,-20,-18,55,-35,-2,-20,75,-46,-22,-11,-67,29,11,44,-14,-76,38,-40,-24,-67,-15,37,-9,53,-18,54,-42,23,-2,21,-61,-50,-39,-38,-26,-32,-42,-52,-8,-13,17,-92,-14,17,-67,46,-6,17,32,48,4,-11,-27,-52,-2,-13,13,10,-56,62,38,1,-10,29,51,48, /* [172][0][][] */ 45,-102,-51,47,-12,-72,4,30,-44,-36,51,73,43,3,-8,-14,46,-5,12,-9,77,-24,-68,52,-4,67,-25,22,41,-36,-5,-18,-14,1,-1,-50,-47,-8,-28,-60,-82,-10,55,44,63,-21,20,-60,70,52,-3,-45,5,16,-17,-37,103,-42,24,21,10,-31,8,-10,-116,-11,-44,69,-24,-17,-34,-6,-14,51,2,-3,60,110,31,-52,21,-50,-22,-37,-29,63,-68,28,-48,-18,28,-12,-91,90,81,-75,29,-76,18,62,127,24,27,39,37,-16,-84,-18,-6,-28,-6,11, /* [173][0][][] */ 70,0,62,-13,-7,39,-8,16,-12,43,-31,-2,8,58,17,-21,-3,11,13,30,-18,-58,4,-17,-10,42,-25,38,-14,14,65,22,-82,1,-16,71,19,-4,0,-16,-4,-19,-59,15,-27,-19,-35,-54,-53,-7,17,31,-30,-30,-17,-75,66,-32,43,-53,-60,-14,15,-74,69,3,-40,57,57,-5,52,-21,-36,-33,29,26,-61,13,-42,-2,40,25,-6,-1,46,-43,-36,-4,-23,4,-50,-5,-15,101,25,97,-23,41,41,20,-15,8,22,51,-69,14,127,6,-35,81,-24,70, /* [174][0][][] */ 78,30,-59,53,-10,28,-84,73,-43,-80,-42,-45,84,13,-66,-28,-94,91,32,-30,-35,-114,11,66,-18,0,-15,3,35,53,-17,-99,-17,59,-22,6,-7,61,-73,-13,51,79,-17,39,-14,50,36,46,-2,-79,23,99,-55,-115,-75,-6,-90,115,-70,-78,68,21,-60,-25,52,-99,11,32,83,77,35,-50,27,-15,62,40,32,39,-71,5,33,46,-77,-45,33,31,17,14,66,9,8,-12,5,-127,34,-33,-2,-57,34,11,-52,89,-120,30,-15,8,76,-36,19,36,28,-2, /* [175][0][][] */ 60,18,-23,69,59,-42,-75,54,-127,1,60,-3,-81,4,79,80,-60,8,16,-44,-74,-98,54,88,-55,-15,-36,70,40,-104,-5,-87,-21,73,6,28,-43,79,35,-5,-26,70,23,95,-66,21,75,-38,-35,100,81,17,-36,-42,99,-112,-109,120,-10,15,14,23,25,58,-10,-22,-50,74,63,-33,110,120,-39,20,-32,36,-14,72,99,-48,68,64,-44,-5,16,44,-14,1,-11,83,-83,-49,15,0,74,42,-27,-33,-51,-14,-56,79,41,82,35,30,41,-6,78,63,-4,98, /* [176][0][][] */ -37,-21,-16,-6,13,-82,30,-47,48,114,27,21,45,-14,-22,49,-8,9,-41,-54,64,-67,-30,-11,22,22,-93,50,-34,-15,11,-10,-15,-41,-56,26,56,-80,63,14,-65,-46,-17,-19,-36,-19,-25,-33,37,20,11,-7,-4,-37,123,11,-30,-91,-76,-52,-36,-43,-40,-8,-127,-66,-65,-40,-2,3,33,-2,19,14,40,54,35,24,22,-15,15,-5,28,-121,-46,14,-58,5,44,2,-8,-52,-1,-15,86,-10,7,-21,-23,-34,102,-93,60,16,-34,12,99,25,71,15,-51,-97, /* [177][0][][] */ -6,-3,18,23,-57,23,-49,-54,-26,-10,-23,127,59,0,7,20,-75,59,40,23,-24,-56,13,5,88,10,66,31,32,-15,55,-28,-14,-49,-16,8,-5,-67,2,-21,1,-1,-2,-15,18,-10,67,-57,8,-22,15,1,-44,19,-6,5,-1,34,-19,32,-19,-55,38,56,-35,-5,-61,61,-15,-17,84,-9,-27,27,-37,48,25,4,-115,50,78,11,-50,-49,-36,-23,-20,2,-39,7,-49,46,53,-56,0,-1,-55,28,1,-16,17,-23,-6,-16,-41,28,-11,-22,-6,35,12,25, /* [178][0][][] */ -39,42,-20,6,-7,41,-20,-25,-51,-68,-5,27,-111,33,14,-20,1,53,15,-35,29,-24,22,-10,-24,77,-9,34,26,22,26,-35,19,42,24,47,-27,11,-48,-26,-34,-17,26,-41,-66,13,28,15,-1,-18,21,35,51,-27,-67,-12,4,-22,37,-14,-4,9,-46,15,51,-40,-31,-44,89,-2,-1,64,98,63,-19,-12,-99,22,-31,38,127,-5,1,26,-50,16,-52,-62,-43,24,-50,-39,-3,-13,-74,7,66,-4,-86,9,-2,-21,-13,-2,-33,7,67,-65,-16,25,-9,-1, /* [179][0][][] */ -28,83,-49,-78,-69,-20,-59,69,-69,-27,-28,116,37,-51,69,-14,-106,34,9,-70,-82,4,-31,19,10,-70,5,51,65,-66,72,-39,70,88,113,-4,-37,-20,-127,24,-41,1,64,101,42,40,5,-127,2,-66,63,13,-7,-94,23,-88,2,11,-10,23,15,-19,-99,-20,-90,3,-14,-16,-33,-44,0,-88,9,64,-51,34,-80,28,64,-42,-31,125,-16,-12,3,67,-59,-64,72,8,26,-21,-12,110,-10,-31,71,82,11,-34,58,43,88,89,-78,75,-13,-32,-41,99,52,1, /* [180][0][][] */ -58,49,36,85,39,26,-55,40,-25,31,7,-38,1,-4,17,0,-14,34,-83,-30,-69,-117,15,82,44,13,-5,-15,41,17,-14,-31,-4,48,-50,14,7,45,-18,41,82,57,-10,-26,-32,73,126,-13,-29,-28,-9,55,-3,-17,-13,-62,-87,77,-30,-28,10,-25,37,-66,49,-127,-4,15,81,-51,-55,-22,-33,23,-45,28,22,33,5,-7,-42,-5,-82,-22,-16,10,-11,-102,21,16,-10,-15,-9,35,75,38,18,47,-49,-28,-46,5,46,60,-72,34,-16,-32,47,61,15,50, /* [181][0][][] */ 30,17,-15,27,25,20,27,9,-100,29,-87,-20,15,3,-39,10,-63,54,-27,70,14,-61,25,19,-47,-32,1,-48,34,42,-45,-20,-40,13,-5,64,58,6,3,-3,6,127,-19,59,-9,47,22,-51,-70,-24,11,-20,15,-35,-66,-64,22,65,-64,32,24,-36,6,-30,59,-71,-16,9,80,-51,25,89,59,113,-8,-4,-97,21,-98,-30,18,-22,-46,-16,-28,46,-85,-59,-38,62,-44,-62,-56,-40,-10,29,-45,55,-31,9,-27,-55,1,47,-65,77,79,-11,19,19,15,0, /* [182][0][][] */ -11,-6,0,-29,-36,-16,-32,78,12,-21,-7,-32,11,9,-1,27,-38,-1,-11,-54,32,-54,-3,-26,-12,18,38,25,64,-32,32,-60,-59,29,42,-85,6,24,20,68,25,45,39,41,-44,-5,118,-17,36,0,-15,28,-27,-127,-61,0,-47,60,52,48,-42,0,4,60,-19,-5,48,24,102,-21,11,9,-77,52,14,59,-51,46,43,-35,9,-5,-16,74,3,-45,-66,-10,6,-16,-48,-9,-23,30,-55,-88,-2,44,-30,39,0,36,52,7,14,-32,62,-117,-67,6,35,-4, /* [183][0][][] */ -18,32,30,-58,-12,8,30,-89,48,7,63,34,33,109,-12,56,99,-72,5,-66,28,24,65,-83,-15,-53,96,53,41,34,53,-103,-102,-11,38,-27,-50,10,71,42,-83,67,-41,46,-28,1,44,37,-29,-23,36,52,-45,-42,-30,-127,26,19,36,-21,-24,98,11,-52,-6,-81,32,99,-11,-58,24,8,-6,18,-14,3,26,4,-29,-43,33,51,48,41,-80,-56,75,-17,-86,-20,78,-34,50,36,-5,51,-119,-43,73,-21,12,-35,-20,-32,-91,-7,-8,-79,-111,24,-50,36, /* [184][0][][] */ -25,-27,0,-7,-75,6,-46,40,-34,-42,27,-16,-72,0,-49,4,34,-20,-9,-18,9,-66,-66,-36,32,11,-15,-62,13,-21,95,-31,-54,-8,34,36,51,-21,6,1,-21,48,4,-12,-11,30,19,-11,-37,14,-21,-25,22,-77,-20,-20,-48,35,4,-81,-33,80,40,11,24,-97,1,58,-42,-51,1,-16,2,1,26,25,-41,33,7,41,8,51,15,64,10,-26,-13,-18,-29,14,-2,-6,-11,8,-2,68,-127,-8,16,98,-41,-26,15,10,-35,28,71,-34,5,33,-17,-8, /* [185][0][][] */ 50,24,-75,-29,109,-2,60,-15,127,19,9,52,82,100,30,18,32,0,91,47,-31,37,-72,30,-27,-69,-82,69,-78,96,-6,-10,49,18,32,19,-22,27,-20,-7,-71,-60,14,72,-48,34,0,-33,24,-79,-41,19,31,88,-48,-30,15,17,-92,48,23,53,-55,27,-69,-107,77,33,50,62,-49,-62,62,-53,-54,-81,51,91,2,-17,47,-9,96,32,-17,6,-35,-33,26,-63,68,-73,-34,55,-75,-37,36,-118,25,30,5,22,7,98,-26,61,-85,61,49,-83,35,-83, /* [186][0][][] */ -58,58,25,27,-46,1,-33,-52,31,-91,-64,82,-42,96,-3,-28,5,58,30,22,1,-22,-10,-53,52,-71,2,5,117,38,23,-60,-38,-55,-13,-41,-94,-50,12,-29,-34,23,-37,26,30,47,52,-19,39,4,14,48,4,53,35,-22,-27,-56,-23,1,13,-47,-26,-59,12,-28,-44,44,15,-44,33,11,-41,-52,9,27,-51,-52,-68,1,-23,-42,-37,3,-40,-21,-20,35,-61,18,29,2,17,11,-34,14,-127,63,11,-23,29,12,62,18,-50,10,-57,-64,-42,30,41,12, /* [187][0][][] */ -39,33,9,11,-33,13,71,-44,41,-39,44,23,19,20,40,15,3,1,-2,33,53,-2,14,13,55,40,-28,-40,21,38,-18,54,-22,-8,37,-73,-22,-25,-4,17,73,32,-91,7,-15,-7,-24,38,20,-81,-36,-44,-11,27,127,18,-26,12,-61,-2,1,40,-10,11,-81,26,16,-85,14,1,45,-97,-77,-1,46,9,3,115,44,1,13,-17,28,-21,-64,100,-108,-54,-2,22,88,-66,-9,-5,-94,-5,60,21,22,-4,104,38,-29,123,-33,73,-36,-26,39,-25,82,-62, /* [188][0][][] */ 44,35,-13,13,-27,-56,27,20,-28,83,-31,50,-1,-9,33,-24,0,-19,-18,-59,18,-127,-11,-13,23,-58,18,-7,-49,-44,-32,-38,26,42,-61,56,51,43,12,38,-31,-11,-65,80,-33,0,92,-23,-25,29,22,52,-50,1,41,-7,7,-21,12,1,-31,-50,-4,24,-56,-15,-35,8,-14,10,79,-17,-41,-12,-19,48,-14,108,1,-68,49,45,-94,59,66,9,63,-22,-22,1,-48,-19,31,33,37,-40,42,-13,16,5,29,43,30,41,-9,-13,-14,9,-27,64,-18,33, /* [189][0][][] */ 83,-40,-13,-48,-11,-31,31,-19,-75,-5,-113,56,-2,-9,-72,37,-55,-15,68,43,16,-77,-57,-53,57,-15,43,9,-1,-19,-15,-6,-102,117,-26,-9,-27,46,-24,-4,-89,35,-119,-46,-64,96,48,-57,-5,77,54,57,-25,49,69,28,23,-36,-19,-15,-58,-70,25,-37,-49,-40,-67,71,-46,3,34,36,6,-34,-1,-35,-11,75,-38,-30,107,69,-58,-17,-21,-31,111,48,20,11,21,16,60,-45,55,-13,11,45,-9,20,127,107,-38,-33,-42,-48,45,-29,-5,57,24,15, /* [190][0][][] */ 40,-20,-13,-9,-22,-44,11,-103,3,-19,-52,3,43,-38,26,54,22,-17,-38,56,127,3,-22,-6,45,2,-48,34,-18,46,36,57,-35,16,-55,-40,-21,-35,-36,22,10,-50,-19,-10,34,15,-10,-4,18,-35,57,10,-6,-9,-26,53,71,-34,35,55,-1,-40,27,-1,18,29,-58,37,-49,-41,-36,-47,0,26,-5,5,50,-19,53,-47,32,68,57,-35,-6,97,-21,28,-36,41,35,-38,-14,46,-59,7,45,-16,-28,108,-9,-51,-25,62,5,61,15,-20,59,0,-34,9, /* [191][0][][] */ -39,65,-7,96,17,-26,29,-127,3,-28,-71,-26,30,-31,22,-12,33,24,16,2,-25,-25,26,-8,-44,-10,-9,-46,7,114,-6,50,22,50,18,4,19,-19,-2,83,-44,-2,2,-38,-25,9,-12,7,-13,38,49,49,71,51,63,-40,-15,-114,-118,68,-10,-53,-38,40,-39,7,38,-35,-1,65,-122,-9,24,-41,-53,0,-5,103,-15,-25,19,-21,-39,-100,-70,11,-49,-34,-115,-62,26,-13,-11,54,-19,-21,12,-7,-46,3,51,-60,-7,86,-1,62,-5,43,42,-12,-2,-3, /* [192][0][][] */ -32,36,-72,-43,-41,35,-4,22,-27,8,21,30,14,71,-24,27,-3,-38,-32,-19,-29,-38,53,53,-15,-14,41,32,-40,3,-10,20,-55,13,0,66,46,-17,-39,-21,24,-13,-81,1,-111,7,29,-22,12,28,12,22,-26,-85,-6,12,52,-33,72,-94,9,-41,18,-45,-19,-57,-2,-27,32,-28,50,15,-40,8,65,65,-24,-12,20,13,-61,31,-9,-37,10,8,-26,15,16,40,16,-21,-29,18,26,-9,-67,-5,-7,6,-51,13,60,43,-5,35,59,25,17,127,-10,57, /* [193][0][][] */ -5,-2,-115,32,27,-40,18,-62,127,-54,-51,4,118,-13,30,-17,62,-74,28,6,6,58,-12,45,20,49,18,40,47,45,-80,102,-62,-31,-34,-38,12,15,-59,59,48,13,24,56,61,0,-5,-4,-2,49,100,-50,86,17,91,95,40,-45,-118,7,-48,-8,-3,-50,-4,-12,-86,39,83,111,-51,33,-94,1,-22,30,-28,26,60,80,52,-55,-17,-20,25,24,-6,-87,-63,-63,-105,-37,41,37,9,-109,70,18,-17,-6,-41,-66,-41,33,-3,-29,-17,55,67,-26,32,-101, /* [194][0][][] */ 19,11,-41,-76,-84,-54,-47,17,-12,21,-73,46,-54,-23,28,8,-52,-8,7,16,-65,-19,-28,53,8,21,-1,-4,53,51,-14,-44,21,95,3,1,8,7,-74,-21,60,67,-62,83,-13,117,127,-54,-58,-13,-44,-46,-73,-12,2,-37,30,-55,80,-2,38,118,18,43,124,-37,-30,48,36,-102,27,-112,31,67,-22,16,38,-7,5,-5,11,56,-15,87,67,18,91,1,10,19,-75,-32,-1,38,-13,60,-64,-20,-23,-70,-56,-63,33,21,30,120,73,-21,-14,82,-15,42, /* [195][0][][] */ -2,-22,-25,70,-12,54,-25,-55,-34,-21,-3,32,37,39,28,-88,-5,-13,33,-67,-44,-37,2,-29,68,-5,23,-1,-5,-41,93,13,-27,-2,16,-34,24,-7,-40,-17,-18,8,-28,6,-18,43,54,-42,45,34,-21,-35,30,-22,-55,-77,-27,20,-61,-38,-28,37,127,-53,-19,14,-4,84,25,-8,85,-86,-4,115,-21,-12,-91,-20,0,-44,2,-30,-17,-26,5,33,105,-41,-30,52,30,48,1,-11,-87,-35,-16,-107,6,-22,45,-96,16,41,3,-35,35,-18,-16,-21,8,-33, /* [196][0][][] */ 47,5,20,-17,-11,-7,-101,-2,62,-31,-60,21,-66,-6,-7,-24,11,70,-6,-93,-15,-6,-27,-9,44,45,44,44,36,0,108,-30,-43,-64,-39,-19,-23,-7,10,46,34,26,34,18,23,36,-40,-3,-40,-62,63,-9,-36,64,-3,59,-31,40,-50,-10,-78,-1,-4,-13,46,-111,-65,106,-31,-25,33,-15,-59,-17,50,26,-64,34,-78,24,-44,13,-80,-56,32,12,127,12,-13,-77,-19,34,-11,-18,9,92,-126,20,-13,11,-3,-35,14,69,-33,46,53,-57,-13,3,-16,-34, /* [197][0][][] */ 65,-45,-23,58,59,56,23,-48,68,-54,28,53,-2,19,-24,-33,-14,28,31,11,-3,-33,51,16,6,8,90,-31,52,-3,73,-46,1,-49,55,6,52,57,3,-70,7,79,2,73,-52,50,77,-98,31,92,31,13,-59,90,-1,-53,-10,-4,19,-71,-1,31,68,26,60,35,10,0,40,22,6,-62,54,127,104,56,-48,82,2,-98,0,-28,-33,85,-7,-40,70,6,1,-92,-31,-9,2,69,6,13,47,-33,-31,44,-64,-34,118,-4,-80,28,59,30,-65,75,-3,6, /* [198][0][][] */ 28,-26,-5,75,3,57,14,41,44,-51,-9,-78,72,1,-85,51,-110,-42,55,41,11,-38,-20,40,3,-22,-65,48,12,45,-19,3,41,-21,-62,76,29,49,1,-21,-16,-31,59,-6,-51,-77,34,-112,53,3,20,-10,-20,-18,-47,7,73,-38,3,31,11,56,-127,59,-19,-33,-36,-81,-10,42,-9,3,-6,-11,-81,-3,47,-6,-39,-53,23,-28,6,4,-50,38,-59,1,-28,-37,-23,31,-64,51,9,-53,-10,8,9,22,-4,-8,-29,50,5,82,-47,29,58,-21,10,11, /* [199][0][][] */ -14,-27,-14,-8,-23,-38,-45,47,42,31,30,-127,-14,49,86,-10,117,-7,-33,79,14,-1,-49,-17,1,7,48,86,41,11,-71,6,-45,34,-8,43,14,-34,-3,-10,24,-14,-28,72,-101,5,26,-34,-29,5,97,-105,-42,-22,-6,17,-27,-88,-36,22,35,-10,-20,-28,-34,5,-67,-59,-4,11,-57,-35,-28,64,39,13,79,0,43,-9,-43,0,-70,38,-121,-3,-42,-42,34,-67,-1,-32,-104,2,-43,22,-14,-75,32,48,-29,-58,-31,-36,71,-9,13,36,60,46,31,-17, /* [200][0][][] */ 66,-8,17,29,59,-33,-11,51,-27,-20,-5,-25,-54,-53,10,22,-35,26,-13,22,-47,-114,40,31,-55,48,26,-42,1,-52,50,-80,-27,-27,46,62,25,-42,-41,-51,25,109,-36,52,-84,11,85,-105,12,20,25,6,-15,53,11,-106,-127,45,-7,-17,25,23,41,39,66,-76,-8,103,108,47,-27,-24,-39,88,22,-6,-10,37,56,-48,16,-15,-77,24,48,-58,-102,-81,-39,72,-95,80,33,-15,57,-41,60,3,28,6,107,-61,35,-14,-110,-5,11,-31,61,71,-31,44, /* [201][0][][] */ -68,-74,-50,49,-17,-57,60,90,60,39,-34,32,-74,82,68,100,24,0,10,37,-94,-72,80,-6,34,-30,60,80,83,7,11,-35,-94,14,-18,-17,16,15,-127,9,-24,56,-47,-53,-24,17,-14,30,86,-81,-15,-66,-39,8,-93,-53,12,-18,77,-126,17,-76,-5,-59,85,50,-64,86,19,40,-51,25,-104,-9,63,102,34,-1,-19,-64,-74,13,-44,-56,4,-2,21,-24,32,12,-103,-12,10,-82,10,38,-31,53,-9,7,-1,-13,0,78,27,21,42,-16,26,11,-3,-77, /* [202][0][][] */ -3,-28,-62,22,-73,-4,-13,-41,-36,0,-97,-1,0,51,-46,-30,-94,39,-16,11,-52,-45,-10,-50,87,-31,47,33,57,32,-20,-95,55,57,61,18,-13,36,21,-23,-45,16,-48,46,-41,82,30,-6,-14,-73,-18,8,-52,45,-13,-47,-23,-6,18,8,-14,0,21,-25,-69,17,-47,11,-18,6,-27,11,-46,-18,-56,17,-44,-43,-5,-127,14,52,0,0,3,-71,70,7,-27,-22,-63,41,-73,22,14,-48,-44,-46,2,13,-36,35,-19,23,-69,89,-19,-29,0,-23,78,8, /* [203][0][][] */ -20,-127,10,8,-44,53,-23,-34,-5,-47,-31,28,-1,37,42,39,16,-96,1,22,44,20,-77,32,4,62,-13,9,14,31,-24,0,-29,9,2,-13,-3,-32,-12,-65,4,-21,-38,-22,28,-14,-43,-76,53,-14,24,19,23,27,-14,31,65,21,40,-3,28,-70,-10,-6,-11,-10,17,-17,30,9,-33,-49,48,55,112,12,20,46,-62,-90,-24,-79,9,19,47,58,9,-20,-21,-81,-7,23,-37,33,-57,84,17,-47,-32,-29,26,35,49,85,15,6,-18,14,46,62,23,-10, /* [204][0][][] */ -48,-41,-28,-119,-91,25,-105,-17,51,-127,-74,-59,-49,-10,53,-36,-50,-40,10,-20,-9,50,29,33,13,-48,-57,-23,-8,-68,14,-9,-91,-6,-53,19,21,74,-51,-30,-25,24,-12,48,-45,13,24,-34,69,-45,49,7,17,-29,-120,-41,-8,70,27,-18,-12,-34,12,38,67,-42,-47,-63,-11,-38,18,45,-21,53,2,-1,-36,-3,-14,29,1,60,7,28,9,34,36,8,-17,44,-26,-37,-3,-1,14,55,-92,-16,-3,-40,-5,-14,67,-27,31,-19,19,-6,-40,54,-12,-54, /* [205][0][][] */ 50,-60,1,14,-41,-33,46,-46,-23,-53,-50,50,-38,-21,-11,-42,20,-91,10,-45,32,-29,-19,-19,65,-55,-58,10,19,-54,18,2,-43,127,-51,92,-5,18,-41,40,-20,1,-119,44,-75,38,-48,15,-31,4,4,13,59,-55,-37,17,-32,-2,37,-53,-57,-40,-7,20,23,-53,-2,42,-39,-33,16,-35,4,31,-28,14,25,-6,-7,-8,35,69,0,-18,-45,-5,-25,30,40,68,79,-56,49,-46,-11,10,2,52,-21,-17,-16,-1,-59,-24,7,-25,56,-10,-47,63,83,32, /* [206][0][][] */ 10,-15,31,53,36,54,0,-22,12,-59,31,-4,47,82,-90,52,46,-65,-30,8,-6,10,57,3,-8,26,-20,40,-26,86,-69,-3,-12,17,40,1,2,-37,47,-12,-4,-11,-35,-71,1,-13,21,-41,28,-20,13,1,65,74,127,-17,-4,-10,4,110,4,-10,27,-33,-94,0,-49,32,32,38,-99,-60,33,25,-9,-54,105,29,-6,-53,-26,-27,4,-9,-57,20,-112,-77,11,-56,66,38,56,66,-46,48,1,14,-14,-48,76,-37,124,67,4,33,-41,41,54,-75,79,56, /* [207][0][][] */ 105,8,-72,33,-47,-19,33,-123,44,70,-62,-41,-4,28,29,39,8,-27,-32,42,75,-33,52,20,110,60,5,-23,-54,25,48,-21,9,-2,-38,-2,-13,-12,-31,-49,31,37,17,65,-66,-12,16,17,12,8,-6,-69,18,12,-34,-32,0,-37,18,5,11,35,-2,74,-2,-60,-35,-11,-26,50,-1,-24,44,-36,34,24,40,-26,50,3,-48,3,42,12,-43,44,-3,-6,-71,11,-44,-29,9,45,20,-41,98,-32,88,90,57,-39,28,8,-21,46,-3,15,127,26,-27,7, /* [208][0][][] */ 7,-16,16,-1,-44,1,-19,-18,-23,0,-22,-3,6,-18,-36,0,0,27,-15,-37,-26,-36,37,-41,-2,0,44,37,-24,45,14,-30,-31,76,30,27,-12,-42,3,-11,11,17,8,17,17,39,-29,-71,-19,-31,-7,5,27,-53,-30,-62,-54,10,-4,2,-42,3,-40,34,50,31,-127,15,8,-6,0,-73,-6,-27,-29,44,27,-6,1,58,37,31,-46,-18,12,-14,30,6,11,22,13,70,52,29,7,8,-12,6,-4,-41,-33,-33,31,93,19,74,11,-50,-2,40,15,-44, /* [209][0][][] */ -59,-64,-31,-43,-23,51,-2,32,63,-39,28,-22,58,41,4,84,-24,27,62,-8,68,12,-35,34,-20,-16,-47,12,70,24,30,-27,-77,-7,81,-37,69,23,43,46,-37,47,-6,22,42,-127,-3,-2,65,0,-22,-30,-42,-52,-18,-15,19,59,27,94,66,50,-41,35,-11,-23,46,-30,-34,65,42,-37,-55,-16,-27,75,20,49,-36,-47,-14,3,16,66,-32,68,-82,-6,-24,-21,58,-42,-21,25,-107,-8,39,28,35,-1,27,31,94,58,35,6,4,-47,36,20,56,-30, /* [210][0][][] */ 63,-57,-31,39,26,57,-16,-12,75,-13,-12,23,44,49,-16,29,0,6,40,9,-15,34,61,127,-7,52,36,52,33,-35,17,2,0,48,-16,54,18,-13,-32,-4,69,1,40,-6,-23,13,-10,-45,39,-17,4,-4,83,-6,43,-9,-22,-5,-26,33,-79,8,12,12,-19,-45,-8,-7,1,-8,22,-39,-20,34,66,67,80,13,13,-6,24,-35,37,32,-56,19,-7,47,-4,-39,-39,7,-21,52,0,-4,73,14,-51,-9,-14,-22,8,13,-38,-31,18,97,-37,-1,6,-5, /* [211][0][][] */ 39,14,71,84,-14,-12,-45,-52,-4,16,12,41,38,-20,18,-13,-13,14,66,-27,33,-72,-103,-25,13,93,38,0,38,-3,-34,43,3,33,40,100,14,-39,-67,46,4,-31,-12,107,25,70,26,17,-78,-64,64,20,-29,-58,-32,-1,6,-23,-20,-8,-35,-1,-48,-16,49,15,-66,-66,70,27,77,70,5,51,-29,29,-118,19,-38,-68,127,-4,-45,66,-20,-45,-8,52,7,-26,15,-82,112,41,-18,1,104,43,-49,11,-12,-97,-3,60,-5,-38,31,-24,-68,93,-33,-47, /* [212][0][][] */ -8,-48,-23,65,29,-59,-12,-42,90,25,-67,-12,10,18,-44,77,55,70,45,21,68,2,-54,21,49,48,0,-31,100,-41,-22,-60,-44,44,-6,15,55,-4,2,87,-67,-46,-5,70,9,44,19,-66,8,73,42,-10,37,-8,-13,90,20,-32,-36,71,40,-37,-19,-65,-25,21,-42,-22,-68,69,-35,-7,-29,25,98,66,28,35,-69,47,-46,-23,-7,54,-61,-26,-42,38,41,-29,-2,-7,-63,-65,-102,100,7,68,3,6,-29,8,127,-52,-20,-18,-69,13,79,-38,28,-63, /* [213][0][][] */ 29,-61,-60,68,26,23,-64,-14,53,-29,16,21,-17,-59,-61,51,-27,-39,-10,-11,-51,7,50,10,27,-91,-20,48,-54,-46,-24,-5,15,38,13,26,0,-1,-39,-29,8,0,-10,56,11,16,46,-38,2,-14,-56,-9,11,-30,-37,-67,-48,81,15,-22,2,-6,-19,-59,-33,7,10,18,-16,-35,1,14,14,60,127,55,3,-50,26,-42,42,-34,-21,51,-36,-12,15,-11,32,17,-65,-24,-9,31,35,39,6,-17,-110,-23,-13,-7,35,45,-79,-29,68,29,-8,43,86,77, /* [214][0][][] */ 3,-13,51,-30,38,-32,-27,-8,13,10,-13,69,0,89,-91,14,-91,7,26,-81,-38,8,57,-9,-4,-42,14,56,1,98,-4,-20,-5,14,-19,11,-66,-51,35,-91,-35,-30,-35,5,-23,50,60,-59,88,-39,45,12,-66,84,-119,-8,48,6,47,15,-43,-65,-33,-18,20,0,-67,19,-50,-23,88,-15,3,31,20,23,64,27,-62,-15,60,-10,-20,-33,-21,54,77,-32,13,40,57,22,22,24,0,121,-127,1,-54,12,11,-90,33,25,-61,-28,27,64,-41,39,7,19, /* [215][0][][] */ 28,-28,-56,-29,-63,-6,60,-53,103,-69,45,-2,0,-46,91,83,-16,30,-32,2,26,-36,-5,42,57,37,-31,16,44,22,-60,-14,3,-9,40,-80,51,-50,51,1,38,15,11,-8,-24,14,22,-18,33,-16,-10,22,-30,34,-3,-15,-32,11,-10,23,9,77,-7,3,-48,-4,-16,-60,36,35,-64,-112,-54,-52,-38,93,68,-89,-18,-50,-22,-13,43,-6,4,35,-57,-104,8,-75,2,-25,0,29,-84,31,25,5,22,-41,38,-13,20,67,27,22,-73,35,18,-12,127,12, /* [216][0][][] */ -6,-39,-34,5,-34,48,20,-57,65,10,43,11,-5,52,28,17,12,-27,70,-6,27,-8,5,45,74,63,-29,-12,-69,73,-10,-34,-18,-32,46,4,127,-11,-71,19,-7,16,27,33,10,-68,14,-46,-6,-19,39,-34,33,33,18,40,27,-69,-84,64,20,-48,19,97,-65,18,-5,21,-82,54,48,8,-39,14,20,6,-38,9,1,-22,14,-78,12,32,-47,-2,-61,101,-53,-86,48,19,22,97,48,44,-50,-16,-12,-45,52,-33,-45,-27,28,-4,-23,11,-3,-13,39,-12, /* [217][0][][] */ -21,-58,-38,-18,-4,-8,-65,14,34,6,-30,6,-12,-11,-127,-82,17,-31,-72,-27,4,-49,-33,4,49,-96,83,41,28,8,-11,29,40,-84,-19,25,-27,26,-85,24,-23,-14,-58,29,-32,24,-33,92,-43,64,28,10,82,-39,-24,-48,-76,-43,-30,-14,15,-33,-13,35,9,-35,34,-1,40,-61,-28,6,42,-40,-35,36,-38,98,-22,-45,-49,10,-110,-17,5,-9,59,-97,-40,-81,-29,-16,-49,22,44,27,-87,-7,-19,-52,80,57,40,-20,-28,-51,46,-58,-73,16,42,20, /* [218][0][][] */ 17,-64,-19,70,-17,29,-70,5,10,23,-101,-31,3,-69,-47,44,11,-11,64,13,-37,56,19,-1,19,-67,22,17,60,-29,7,82,-30,65,58,86,-22,114,-15,80,-90,24,23,4,-7,68,-5,16,57,20,48,-16,41,-1,18,-70,-76,77,22,27,-63,-68,-21,54,33,-3,-48,82,43,-71,-22,21,-127,-35,-70,58,10,-13,-68,14,24,20,0,3,44,-28,48,-5,27,25,-45,-52,-42,19,6,1,44,-6,-71,-25,-27,-22,31,43,19,-1,6,-18,-60,10,12,-15, /* [219][0][][] */ 15,40,11,36,35,25,-29,-36,-49,-43,17,62,52,27,-9,-16,-9,-28,33,-21,39,-60,14,-35,22,27,67,-8,-20,47,43,16,3,18,1,-25,-1,-3,-12,-1,9,79,19,1,23,17,46,-21,-8,-88,-37,-17,14,-21,-35,-39,5,-25,-4,-16,-50,-29,23,4,15,-9,-55,33,3,-6,127,-24,-3,6,-6,30,-1,3,-10,-10,53,26,-52,11,-23,3,18,17,28,-49,33,15,78,38,-2,8,-27,-20,6,51,8,-2,15,25,18,-25,-10,-58,-39,42,6,-91, /* [220][0][][] */ 51,40,-27,-17,18,34,-46,-54,31,-127,-10,98,8,12,10,29,-62,8,-43,-3,-52,-2,12,41,21,17,-44,-45,5,-31,78,12,32,-44,49,7,29,11,-80,10,-13,-1,-36,13,43,-34,13,-60,-14,-73,39,-14,-26,19,28,-31,7,-24,-20,11,-15,11,28,-31,28,-40,-35,36,35,-4,109,-4,-52,17,-2,45,-54,70,26,-75,15,-27,19,72,17,9,-1,17,-23,-3,-11,5,24,-9,22,-31,-20,6,-34,-94,40,-83,5,32,-68,-41,83,-1,-21,12,19,46, /* [221][0][][] */ 21,-10,-25,1,-9,-64,57,2,127,33,35,-41,38,-30,-18,16,30,-36,45,9,64,-48,-32,29,31,15,21,18,72,-6,9,38,-33,-10,5,3,72,4,-14,-20,-21,0,12,60,43,-21,82,-52,16,-13,62,-45,-22,23,21,-31,45,-53,2,20,21,-74,-8,-4,-59,20,-39,-5,62,2,-6,-30,-52,-37,-1,14,-19,14,-36,18,-4,-89,3,28,-31,-9,-40,-12,6,-28,-9,-15,-66,3,-7,-27,6,15,42,-18,-21,9,-5,-13,-23,-11,-15,64,17,1,35,3, /* [222][0][][] */ 10,-8,0,68,-29,15,-8,-39,15,-35,0,14,21,-56,8,-33,17,-22,33,-44,-15,-21,65,-3,-16,-14,65,-32,-16,-13,78,3,-38,-17,27,-11,-4,18,-65,53,-6,86,-13,-3,-13,-34,34,-51,6,-23,18,22,28,46,-44,-42,9,28,52,-67,37,5,83,51,5,-11,28,75,-33,-31,42,-69,-22,127,8,56,-81,28,-14,-64,-34,6,-6,5,-9,3,35,26,-2,-24,17,32,4,29,-52,-51,-43,-39,-62,-60,39,-27,49,65,3,22,-14,-3,23,25,18,-26, /* [223][0][][] */ -10,-25,35,2,0,-88,-66,57,53,-34,-21,79,-75,-17,-5,54,-51,-57,25,0,-3,-54,-17,-31,-13,-34,-77,78,2,-48,6,-75,-32,78,59,21,8,9,-2,36,-127,74,6,-13,-18,57,49,-82,14,14,29,113,67,18,-22,-82,-26,-67,28,15,-75,6,3,10,-81,-46,-2,79,1,26,-8,10,32,35,-39,-12,1,-38,-30,53,80,21,-68,68,6,-64,-48,-16,91,17,44,-32,6,-65,54,18,-67,61,8,-68,15,-20,43,-84,-54,11,51,-80,-39,-41,-18,-1, /* [224][0][][] */ -26,-57,-41,77,48,8,-36,-80,-39,28,67,-55,-1,25,43,-58,24,-57,-38,28,-6,17,-25,37,54,20,21,18,4,30,-15,2,56,28,-3,67,9,-21,-39,-7,-37,-30,9,97,-7,32,9,-121,-16,7,80,-3,69,15,84,-52,-14,-26,-93,-2,-23,35,-17,49,-86,38,-26,-1,-23,-5,0,-25,15,-26,-20,-58,33,31,-29,13,63,-30,83,-79,-127,-48,-13,8,-88,-61,-27,-24,1,50,97,-55,40,9,17,70,62,-60,39,-4,32,32,-31,23,25,-14,68,9, /* [225][0][][] */ 21,74,64,-58,-18,-55,-73,28,30,5,-12,39,13,74,33,-87,-63,-78,-82,-127,44,-37,-26,-16,-3,-14,-41,30,-21,21,39,5,-16,15,-59,80,-6,21,-40,9,-41,14,10,54,-27,-38,17,11,-6,-40,19,49,64,67,-48,17,0,-6,-46,-91,-58,-69,-96,-34,-30,-31,-29,60,3,-46,121,77,17,20,66,-39,-97,59,-30,33,67,39,-12,-2,67,32,99,-70,31,-31,10,-10,-24,51,13,83,-94,-26,-45,-21,36,-56,-4,74,-60,-46,48,-40,-100,4,-2,30, /* [226][0][][] */ -2,-15,10,24,36,-43,-102,-13,-76,19,-92,-31,-19,19,-21,-45,-39,95,9,43,63,-35,24,48,67,28,55,-24,-26,-72,32,-30,-2,24,8,59,74,-20,44,33,-79,94,-73,4,3,14,38,34,0,32,-26,31,-10,-55,30,-35,-117,-2,18,-3,10,10,-13,-24,13,17,-16,63,48,-26,-57,21,-22,80,-15,15,-49,23,-56,-39,24,-39,-114,7,-2,7,-43,-8,28,-55,-127,17,45,-37,-23,43,-23,-20,-32,-32,64,10,78,-67,-17,0,79,-35,-14,-38,-9,-4, /* [227][0][][] */ -22,-20,-5,-6,2,-66,14,16,18,-10,-28,11,13,66,-97,-28,-22,28,17,-37,34,-3,21,-43,53,-16,-8,20,-12,12,-41,-54,37,-40,36,7,-14,4,49,-43,-28,20,5,0,19,-21,62,20,-34,38,-16,8,-51,-21,-6,-7,12,2,26,19,-9,29,-53,31,-67,-36,-54,58,-16,-22,-5,-27,-26,-4,36,63,-23,-26,-26,-9,40,48,-28,68,-37,5,16,-28,17,-2,-8,22,-1,-5,-19,13,-127,-19,-35,32,13,12,21,17,-26,56,26,-26,14,13,59,7, /* [228][0][][] */ 29,-30,-41,42,0,-58,-37,53,35,-27,-2,89,12,25,-38,23,-67,0,-9,-64,-54,3,75,61,6,-85,24,26,-25,54,-22,13,57,23,-10,51,-14,-13,10,-46,36,41,-51,57,-10,-38,23,-21,23,-83,-85,16,-16,8,1,-11,-2,11,-47,7,-49,-5,5,-95,-8,-41,41,37,12,-98,83,1,33,39,78,35,75,-29,8,25,127,-18,-11,44,24,26,27,10,-66,23,-99,-67,99,46,10,69,1,-52,35,-8,-116,-45,-27,52,-83,-48,5,33,14,-19,-8,-75, /* [229][0][][] */ 43,-59,76,30,-62,-41,-50,102,42,-127,-24,-43,-66,15,43,-89,10,-42,27,-54,65,-41,45,-63,-82,-1,38,-24,6,37,52,20,-35,-3,3,69,-9,-51,11,-49,-20,17,85,-26,-7,60,57,-52,88,-19,-44,20,45,61,-57,-119,4,46,-69,6,-73,-67,-6,-22,-121,45,-69,95,-4,5,-50,-29,-50,-7,-8,-15,-47,83,-67,33,106,-6,-65,12,10,-69,28,-106,40,28,33,65,-62,2,-62,7,-32,-126,39,-29,-29,-11,16,95,-2,19,32,14,27,46,51,13, /* [230][0][][] */ -49,-31,-39,45,-93,66,-20,87,-106,20,-64,-72,11,18,-15,-98,24,-57,109,-14,-109,19,22,-64,-16,3,-38,79,15,67,9,41,-12,33,76,81,53,70,-14,13,-16,39,21,55,-35,86,-61,72,50,-18,-36,-2,18,-48,-99,-127,-29,12,-70,-111,-41,-20,76,-45,16,-62,-32,48,22,-42,-18,-111,-4,-10,26,8,-14,0,-4,-28,-9,1,19,-27,-71,-56,6,35,58,-44,42,11,-14,-88,-70,0,28,-85,-102,72,2,-75,42,114,41,-29,127,-123,20,66,32,-18, /* [231][0][][] */ -41,-83,15,17,-18,47,-69,-34,-22,-54,-19,-27,-55,17,22,-121,-21,4,47,-30,-6,-18,46,46,32,51,54,57,28,29,48,9,-4,26,-17,-13,-38,-4,-63,47,24,36,-12,-54,-44,2,18,26,-53,0,65,47,51,14,-64,-3,16,-18,24,-3,-19,-14,53,-46,66,-21,-50,-33,74,22,-10,-28,69,117,56,34,-88,45,-127,48,32,16,-82,-31,-51,61,-32,-19,-6,-40,-8,-35,-3,9,0,-47,67,-39,-49,15,40,-56,-15,-39,-8,1,-14,-86,-26,53,-25,37, /* [232][0][][] */ 88,-48,-10,12,-43,-51,-65,-4,-110,-35,-11,20,63,17,-73,53,-122,15,76,30,33,-47,-51,14,-42,-57,-18,-6,19,-91,-15,-12,-5,-53,37,25,-33,51,13,8,-26,81,62,7,-93,59,82,-60,60,-29,79,56,-48,-31,25,-53,15,26,-24,44,-13,-22,9,84,-28,-44,-24,65,33,-56,58,-17,-4,92,-49,33,-62,20,-22,-127,-30,94,-109,22,-9,24,42,10,68,-5,-40,24,-69,-13,36,-62,23,38,37,6,38,25,-18,-50,-67,-1,-42,-37,50,26,-20,-34, /* [233][0][][] */ 22,-39,-5,35,104,-74,-29,17,24,-30,-43,22,20,41,73,-53,-13,28,-10,-127,-26,-13,49,-6,-29,61,-6,65,-47,69,0,-85,32,68,25,10,-80,9,-13,-49,-38,-1,18,22,39,-45,12,10,-4,28,-37,46,-5,38,-29,-54,-120,37,-66,-23,0,10,-91,-11,-30,-28,-73,25,21,-48,91,20,-8,-51,61,-21,-40,88,28,22,62,47,-49,-38,3,-63,38,-12,-64,51,38,26,103,25,37,-18,-65,-63,36,-7,67,-56,-38,26,-36,-7,54,-20,-5,11,47,-7, /* [234][0][][] */ 12,-60,-8,61,-8,46,43,-37,60,16,44,-42,60,-30,16,-13,-20,-24,8,-57,16,-29,-42,28,-17,-31,-39,6,67,11,-54,-5,29,-23,-93,-17,36,-74,105,13,-21,-43,-67,5,-38,108,-117,-16,-6,-70,20,-19,124,62,-14,-24,64,-55,-25,-45,-85,44,-17,33,-2,56,-16,9,34,-8,-71,61,15,-81,6,-57,-51,83,-14,-102,10,15,36,-14,-36,42,3,-98,-127,18,9,-50,-36,32,6,30,26,27,-19,-16,50,22,34,28,-23,1,-18,8,14,-44,49,-6, /* [235][0][][] */ -56,16,-19,79,-115,31,9,-47,12,-8,-1,18,-86,1,24,-31,-51,-1,-23,-32,-62,41,63,-33,-7,-34,-7,-3,8,34,93,-44,3,-3,12,-13,81,9,-49,17,-13,16,-127,-62,7,-62,46,-13,51,-27,-41,9,-29,-39,40,-38,-124,111,-13,-31,-14,-82,36,-66,-61,-27,-85,-23,54,-44,32,-94,21,52,71,106,37,53,-68,-67,126,-13,10,14,8,-53,-10,11,37,-63,-56,-59,77,-117,7,35,3,-72,-32,27,82,15,27,-6,-8,-35,-34,-22,11,72,-13,40, /* [236][0][][] */ -47,-38,10,20,-62,-81,-29,-58,7,-42,32,10,-5,-11,26,-119,-32,-58,49,-52,7,-79,45,-114,43,0,32,30,17,92,27,-27,10,-58,41,-11,32,-55,-38,-36,52,-4,-1,9,-86,8,-20,53,2,-21,-29,90,108,16,-2,-45,-87,11,20,-127,43,-26,53,13,6,-36,-26,15,36,30,19,41,13,75,78,32,-71,60,42,17,27,15,16,-31,26,-30,-26,-114,36,-84,-4,14,29,-5,-17,10,-19,-100,-9,38,94,-19,89,34,-13,-71,46,-56,-29,-18,-19,-105, /* [237][0][][] */ 89,80,10,6,-17,2,11,6,-43,5,58,-35,-78,-44,-8,63,-24,-9,55,-117,-12,-34,-48,30,23,-36,-41,31,17,-29,-89,-38,17,46,-49,94,-110,14,56,7,-78,16,27,52,-72,66,36,-35,49,-36,96,52,0,-118,-22,-21,-73,75,4,-41,-30,77,-52,5,-28,-17,16,127,-6,-92,-15,5,-80,5,-7,-48,-27,13,9,-15,59,97,0,16,-20,-15,81,24,5,-39,-20,-1,-47,56,0,24,5,4,-74,67,-47,-18,2,-29,-15,-56,68,22,-13,80,-30,76, /* [238][0][][] */ 24,-48,-25,34,-12,77,23,-81,-32,-72,31,2,-25,79,1,5,-70,-8,16,-39,57,-46,10,6,-52,18,48,-1,88,7,-66,51,-33,-32,-44,45,27,-57,-21,23,50,-41,-4,-1,-32,24,33,-51,89,-22,66,50,-13,61,-1,12,20,8,-72,123,9,-112,-59,82,-127,-12,-34,-38,-11,-27,15,-54,16,-6,6,-44,87,10,-34,-12,-10,-71,-62,-13,-63,50,-105,-115,-51,-18,-20,-39,34,-30,-83,31,23,-84,79,34,-5,14,52,18,38,103,-33,25,84,84,-70,10, /* [239][0][][] */ 41,-127,-15,10,0,0,63,5,69,-61,1,31,-54,54,81,21,68,13,-18,-67,-85,7,11,-80,48,9,-13,-20,-18,69,-17,-70,1,22,49,-6,20,-15,-71,7,-23,38,-11,-81,-13,-48,25,-95,96,-111,-22,80,-42,12,-71,-104,-60,97,-92,-52,-33,-20,49,12,-63,70,-99,-36,-33,-96,35,4,-49,68,8,15,-16,44,83,-2,84,52,-24,-76,70,17,-9,34,-1,54,-19,-87,-25,-39,-97,-67,10,-85,-21,-46,51,-26,3,82,-9,32,26,-14,-6,65,18,29, /* [240][0][][] */ 24,1,2,-32,-50,-42,40,65,-49,14,-82,37,-39,49,39,35,-30,-20,36,-71,53,-114,62,34,84,-9,13,64,-15,-91,23,-95,-53,25,-4,-6,-52,37,-46,1,-65,29,24,17,-34,46,-3,-78,68,58,-51,51,-27,7,-46,27,-25,-9,127,29,-5,-73,-12,11,-24,-74,-65,57,-54,4,21,37,-38,-7,-4,91,37,25,-54,-80,112,45,-10,19,10,-41,-55,-1,45,-8,24,-67,53,-59,26,-41,-48,48,78,-22,63,13,17,2,-77,-5,56,23,34,1,19,70, /* [241][0][][] */ 3,-64,-10,45,-21,17,-6,-51,6,-78,11,-6,-20,43,60,-46,68,-14,-35,14,127,17,-10,39,62,97,-2,-12,23,38,0,0,-19,-7,-5,-39,-3,-22,26,-80,-22,14,-9,-19,19,-22,13,-3,26,9,-21,-8,0,36,0,0,-49,3,1,-4,-8,1,67,-27,8,28,0,-21,-9,0,-49,-40,-72,-7,60,-18,-32,72,-10,-57,35,-44,2,-5,-41,50,-43,-47,21,-15,22,9,-57,39,-33,-13,41,-41,6,22,59,32,50,-57,26,35,-8,19,29,24,75,-32, /* [242][0][][] */ 21,-15,-14,-72,-21,-14,-30,28,25,18,-27,65,17,-34,27,15,42,25,39,-28,20,-43,-36,-61,31,-33,3,23,62,8,18,-9,-63,23,8,8,-115,71,0,22,30,10,-21,68,-34,38,38,75,-6,-73,48,127,-50,20,14,-28,23,31,-73,64,13,-22,21,-17,59,29,24,96,6,-14,-1,-25,-27,22,40,-1,-2,81,-75,3,-5,66,-35,5,-35,14,54,-39,44,-11,-7,-8,51,43,-52,-30,45,14,18,9,24,6,8,12,34,-4,10,-67,-71,40,106,-2, /* [243][0][][] */ -3,-59,-3,28,-25,-16,-55,58,17,-42,-14,-56,69,7,-22,-38,56,-110,8,-55,62,-21,-32,4,-34,80,-54,102,-5,35,15,38,-20,-79,12,21,27,-30,64,5,-5,-61,-90,-5,36,-50,-16,-40,49,-74,81,25,-40,22,-25,24,41,-102,-73,50,-30,13,-9,48,-64,70,-39,-18,-27,27,-9,-35,19,-9,62,-5,2,10,-1,-15,30,32,-8,-37,18,83,-36,44,71,-10,46,-39,-75,48,11,63,-54,15,-54,36,57,-127,41,-11,93,54,93,48,-23,-6,-68,-76, /* [244][0][][] */ 35,52,-2,43,47,14,-41,31,-82,-10,-38,-22,51,-27,-126,-37,-34,-11,-89,-34,-57,40,121,8,3,-7,12,14,-32,61,-100,-66,12,68,-45,99,-19,-14,33,-34,32,30,-13,-5,-38,47,49,-31,34,22,22,-8,-7,38,23,12,-33,90,11,47,1,15,-49,-55,-6,-51,-4,51,0,-52,-59,24,99,127,6,60,23,12,-56,31,78,-39,-72,-3,-3,102,-34,-94,15,-23,8,-26,5,5,-39,5,-69,-3,-55,-22,-78,-8,77,-3,-81,-18,48,-19,-27,62,42,-15, /* [245][0][][] */ 127,-5,-91,-35,-56,29,11,18,67,-29,-18,-36,0,-6,-11,-14,48,-64,-12,-28,85,89,35,72,3,8,-63,56,6,-8,-1,41,-4,15,-24,-21,125,29,116,-1,-1,28,-11,21,14,-53,-7,-17,114,-40,61,-14,-76,-46,29,-59,-35,-15,38,-2,25,-41,51,23,-99,22,10,-20,46,66,13,-94,-13,-87,68,-40,78,10,-9,-76,63,-56,-50,-31,4,93,-15,35,18,-57,12,-19,32,-42,-32,-4,61,-78,2,-17,71,-8,15,-3,-2,-14,51,-5,51,-15,-15,-56, /* [246][0][][] */ 12,5,39,71,7,38,-1,-27,-23,-34,-64,1,-77,-27,-91,-51,60,43,-29,-53,38,-96,101,41,5,-52,53,-4,49,15,-2,11,-9,-55,12,67,87,13,50,18,0,71,-45,-42,-53,31,9,-42,32,17,-3,114,1,2,-127,28,15,57,59,18,-19,-64,18,-27,-39,2,-67,24,-16,44,-106,-89,65,101,25,1,-40,-27,1,-57,78,-22,-101,-35,-6,24,-14,2,2,13,5,27,22,-3,-56,-7,-4,-80,-77,-6,19,-35,48,-32,-21,125,-23,-7,39,87,29,-87, /* [247][0][][] */ 11,0,-85,10,-52,-45,-32,-32,72,103,6,31,-34,67,-27,61,34,-30,-80,-24,61,-85,39,94,42,119,-23,-39,-12,-18,41,48,48,-21,-39,12,79,-72,-55,94,57,68,-107,-27,-59,13,51,-18,26,-47,-10,-31,-22,-42,60,11,-5,-28,14,-84,34,55,46,5,-25,62,-50,127,63,-110,-39,1,-35,-8,24,-30,62,19,19,90,22,-86,35,1,-58,5,-101,-71,76,-33,-68,-35,-40,-8,43,-34,34,-14,41,69,62,-64,-50,-40,21,14,-56,33,98,-60,-18,-48, /* [248][0][][] */ -50,-13,15,-30,9,49,20,-8,4,-61,-127,-15,59,-14,-46,-7,-10,30,32,-50,-8,-7,-24,3,73,30,2,46,25,33,34,-35,2,18,-20,12,2,14,-1,19,-81,-15,84,-34,45,21,-19,-12,67,-16,-44,25,44,-11,-85,-17,-44,22,-45,16,8,-60,-72,-31,-22,-65,-46,78,78,-39,-30,-13,-21,24,-46,-5,14,19,-4,13,25,18,29,-29,17,-3,-25,-25,40,9,1,13,77,66,-44,-26,-32,-23,29,-34,-21,-67,-44,-16,3,-36,-2,-60,-77,46,22,46, /* [249][0][][] */ 25,-3,-1,20,-12,53,-33,32,30,-20,-34,-21,13,-7,-9,31,-1,51,81,-30,0,-26,-10,-20,-47,-21,-1,2,98,-4,-88,-40,20,33,3,127,-32,10,33,-49,-9,59,-104,-6,-13,48,33,-25,0,-11,92,-23,11,-19,-30,33,26,22,44,-67,31,20,22,6,-18,-22,-38,-11,-50,17,-4,-17,-58,-17,8,72,30,19,-29,-9,6,53,-30,-73,40,57,-11,-21,-74,-34,-30,37,12,7,-90,8,29,7,-38,24,-72,-52,-47,33,-52,-15,-2,-8,55,42,-27,-13, /* [250][0][][] */ -34,-6,-42,83,27,7,100,39,24,26,51,21,51,-12,-8,28,-31,-8,-10,36,94,4,-22,73,22,91,-47,30,17,14,88,23,36,53,-65,-55,-58,67,54,-68,-53,-56,36,10,-40,-16,-4,-28,10,-40,-16,-20,53,-16,-45,-62,36,-127,-12,6,-2,4,-12,4,61,70,-38,57,-60,16,-38,52,-83,19,-26,-14,38,33,61,-89,-8,1,10,-33,-12,112,-8,10,-56,-57,17,0,-43,67,11,29,-27,-7,37,-16,27,-19,6,75,15,44,-22,-12,21,-20,15,-124, /* [251][0][][] */ 21,3,32,-50,-13,20,-50,-76,-44,-6,-17,54,-22,-7,26,103,115,9,116,-7,-25,-6,72,-55,-37,57,-33,-23,45,-11,-22,-41,-9,-10,80,34,-14,13,-28,-10,7,29,-112,11,37,-4,60,-32,66,-47,28,36,-4,-21,1,-28,-10,43,-40,4,8,-99,63,-28,8,-55,36,97,47,70,18,28,-34,68,39,63,-49,-37,-107,-49,27,-16,-51,-32,-28,-69,15,-19,-20,-4,9,-31,40,17,-15,88,-30,-2,-14,-35,25,-87,127,5,-12,2,-56,2,-53,51,-28,-9, /* [252][0][][] */ -11,28,-53,15,-82,-59,-38,20,2,-48,-40,127,-41,-67,37,1,7,41,54,46,-14,-9,36,42,85,-10,41,108,6,-46,-13,-24,-54,1,100,-35,-31,31,-74,9,15,60,-63,37,62,10,1,27,-12,-15,-83,23,4,-22,-2,16,28,26,-29,44,-77,3,-57,28,-18,11,-10,37,-58,-73,8,-56,-63,14,55,12,106,2,25,-36,74,29,-60,15,-7,-52,-3,33,-3,10,26,64,17,-4,-40,0,35,51,4,-33,50,-2,42,32,30,11,6,-101,-3,42,97,35, /* [253][0][][] */ 32,-50,46,57,-87,-15,13,-13,20,-8,-17,-18,95,19,63,4,-32,-11,127,-58,-15,32,-26,-16,39,-10,5,16,9,-25,34,-45,-30,7,1,-9,-50,19,-26,26,16,64,8,-40,-42,104,3,-6,39,8,-4,-10,38,-37,-95,-15,-39,41,16,33,-34,-38,29,-4,49,7,-44,25,26,-44,62,0,-124,8,48,77,47,51,-78,-12,-42,-27,34,43,-34,26,120,57,24,-39,75,12,-4,-12,36,-14,-40,-45,25,-56,-52,25,12,-21,12,-83,19,-66,7,-2,-12,-84, /* [254][0][][] */ -71,22,-47,-39,-3,-43,-8,7,-34,-30,-30,67,-33,37,24,37,-60,70,-5,29,78,-14,25,-21,45,-108,32,31,42,73,127,-29,-6,-66,42,-1,12,-62,-60,-53,-17,32,13,-53,64,80,19,-89,37,-61,-57,-37,6,37,-10,-109,-36,-28,48,-2,-29,-26,-19,-41,49,13,-74,64,10,-19,30,-75,-12,-4,0,115,-47,-19,-16,-31,49,-40,-63,-45,18,68,-52,-47,0,-9,-92,106,-3,33,-38,2,16,-40,29,-25,27,-21,13,53,-105,-28,23,-10,-61,-1,19,-41, /* [255][0][][] */ 34,13,-6,62,41,5,-7,105,-11,-30,-18,-37,-63,28,53,39,-42,-22,-30,32,-94,-53,21,39,-38,-80,-71,83,-9,53,-34,7,-48,66,-6,26,-21,57,-11,23,51,14,16,27,-58,3,127,10,50,9,8,5,-46,53,17,-29,-61,73,3,-26,-44,-16,-14,24,37,-42,-34,123,-5,1,-33,-3,-5,77,11,16,-73,-19,-20,-18,-7,-42,-45,-19,22,21,-18,7,3,-34,-72,-21,-13,24,-38,48,-14,-50,-79,-6,-86,8,-9,10,-52,69,4,40,7,100,51,59, /* [256][0][][] */ -37,20,-85,127,10,-65,59,-56,4,64,22,4,-16,-26,53,66,76,-75,22,-20,112,58,-45,24,-59,64,-59,49,61,-69,-126,-37,18,114,36,49,-20,0,59,22,-44,-70,40,72,13,42,-44,-62,-22,20,41,11,69,-33,-69,-16,0,-16,8,87,-18,44,-66,-26,93,81,-67,14,54,-59,37,85,-97,13,35,-56,47,66,5,-15,56,11,18,-46,-77,90,5,-46,-74,-89,-22,46,-9,67,4,83,-22,3,-20,-106,-3,49,21,45,76,-9,-35,-7,124,-12,9,17, /* [257][0][][] */ 9,-29,41,-38,-17,16,52,-11,77,38,51,68,-15,90,72,26,59,-87,26,-9,59,37,14,-5,64,44,-62,17,10,22,34,27,-68,37,-6,18,5,66,54,12,-27,15,-24,-48,10,40,-38,-23,-2,1,37,11,-24,16,46,16,52,-127,28,-7,-23,7,4,-58,-30,14,-41,-3,-42,56,19,18,-64,13,56,14,33,42,-65,-41,28,43,46,-37,-44,-31,-25,43,-32,12,10,-90,-31,36,10,23,-57,43,73,-12,67,24,-28,-39,1,27,-28,5,-33,-34,110,40, /* [258][0][][] */ 15,-14,-99,61,93,-47,12,-4,57,4,1,-5,-3,2,25,72,64,25,127,-2,31,-36,48,-8,-68,17,-60,-21,32,6,-47,-16,-61,-59,-70,46,108,45,13,39,-9,-29,-38,82,-5,-37,2,20,-30,-9,23,57,-9,-30,6,1,85,-46,-84,45,9,-26,-30,29,-23,-28,24,-35,63,110,6,24,-11,-28,-20,-34,36,49,-51,-59,21,30,-14,36,-25,81,-87,15,-34,-22,13,-52,-63,-27,-67,34,-77,64,-46,-19,-67,-71,-30,-20,81,40,0,47,75,-22,-18,1, /* [259][0][][] */ 45,-10,-10,-4,13,38,37,-2,-68,-18,-36,2,54,27,-102,74,-31,20,126,-15,-55,-72,18,55,-14,-102,-55,19,-43,39,-1,-40,-41,-45,-98,44,-11,35,-12,70,-5,52,79,-45,-57,-4,32,-52,-21,-36,-21,-46,-63,-45,-127,-49,-18,71,-22,32,39,103,-29,71,75,-59,-50,-5,78,-1,40,-45,-26,-14,21,13,-46,22,-74,10,22,-21,-100,91,24,42,-16,-13,18,18,36,-11,61,-23,7,-58,-1,-44,59,-16,-53,-52,-12,38,10,17,-5,-41,-50,50,-11,-17, /* [260][0][][] */ 6,17,-14,-84,-27,-57,-28,-2,24,-13,90,15,92,83,-25,44,-4,11,-79,-59,-37,-15,16,29,11,-21,-7,-15,60,16,-74,111,60,20,-8,37,24,14,-1,-15,-11,4,-54,-23,-15,-19,-14,-45,55,-103,12,-27,51,-33,42,7,58,-25,-30,52,13,38,-87,-22,-23,-7,-26,43,-24,10,58,54,-21,-15,-20,-25,18,127,29,-66,4,-48,14,-26,0,37,-42,-6,-55,3,-49,-44,13,14,-29,21,1,-10,3,75,38,74,19,35,-41,-13,-19,-15,26,-80,-35,71, /* [261][0][][] */ 66,15,-23,-44,-46,-22,-73,39,-37,-14,-9,-56,57,45,-45,4,-25,-76,-5,-59,87,-29,-40,-46,3,-40,-2,35,103,0,9,33,-39,11,-42,-42,-35,54,-69,16,80,43,60,-9,-19,-16,-25,-2,74,26,-5,53,-23,-74,-85,-22,-12,9,-4,-28,22,-36,6,-34,24,-21,-27,37,39,-11,55,24,-45,49,-12,38,29,-44,18,-45,46,82,-35,12,-12,-24,90,55,58,-40,-19,27,28,22,28,-48,-10,-48,16,50,50,66,49,-10,17,14,-21,-80,49,127,-20,-7, /* [262][0][][] */ -2,-53,-17,22,-53,25,55,8,3,-98,-8,-64,37,38,-5,26,32,25,82,68,16,13,-1,7,-41,-38,-58,7,-4,28,-53,-44,-39,-31,31,-34,10,27,11,40,-67,-19,-10,-21,-11,-55,-60,-5,83,-48,53,31,-6,-6,8,26,77,-61,9,32,27,17,-3,-10,18,59,17,-95,75,99,-75,-32,49,70,-54,-22,-42,32,43,-42,53,24,-42,-61,27,66,-106,-116,-52,-33,1,-45,-48,35,-127,-27,37,-82,-21,2,76,-7,-2,30,-15,34,28,-36,13,41,34,35, /* [263][0][][] */ 5,0,54,-70,-11,2,-33,-59,-50,-10,18,21,-62,37,7,-17,26,77,23,1,-55,-23,-23,-89,40,9,-28,-9,94,20,-35,-50,-47,-13,56,43,20,12,56,91,-17,-11,-43,-3,-102,24,-18,5,11,-98,-22,0,8,-41,-26,-2,-72,17,-35,-58,4,-6,-127,-74,-12,-75,-73,-27,82,-9,56,44,3,-23,78,3,-19,71,-15,2,-7,12,-15,-9,-18,-45,64,-2,-26,-37,3,-17,12,36,-4,57,-23,10,-11,-17,-27,-58,64,-26,-14,-62,-26,22,-32,-5,-23,96, /* [264][0][][] */ 87,-38,-92,-10,-37,-33,40,51,-27,24,-33,18,64,-31,88,-12,24,1,127,34,-22,-33,-51,-20,47,-57,27,56,37,-63,52,13,-56,-35,-7,7,-57,72,-23,-54,-85,-9,-123,34,-50,1,6,21,7,-56,52,45,24,25,3,-70,-23,27,94,-36,-12,-59,93,64,-15,-29,-3,63,-62,40,30,-25,-65,-23,45,86,16,-30,-46,-27,5,27,-12,-3,-31,-19,37,37,36,-15,-28,19,-36,14,3,21,6,-2,-19,-36,21,-3,-19,3,-28,-42,51,62,-76,8,31,-19, /* [265][0][][] */ 21,19,-54,4,-64,-9,6,-17,21,-46,-52,25,50,-48,25,-58,-34,32,127,-21,-11,-73,-17,-27,17,3,-22,-6,71,23,84,-12,-35,8,-29,-15,3,-5,-44,4,4,107,-16,-26,-33,18,48,-13,12,-31,-26,-10,-8,-20,-119,-30,21,-11,74,-16,25,-20,62,13,17,54,-11,-35,-8,0,10,-41,-3,58,-38,16,-105,-21,-17,-40,-5,-16,-34,96,18,8,-93,-1,-29,20,-27,-24,-1,72,-12,-114,-59,30,-22,32,-7,-65,72,58,-20,40,-8,-25,-22,21,-12,18, /* [266][0][][] */ 18,-29,-22,66,-67,20,44,-28,76,-16,4,53,39,9,-94,30,15,-22,36,-51,-38,-45,20,-51,74,-109,26,33,-53,-4,-8,-72,-59,-13,-26,-20,-25,-81,-32,-18,-13,46,-77,112,-16,72,95,-7,5,59,-32,-25,7,11,-21,-78,4,82,36,-16,-26,-8,11,27,-38,-72,41,24,4,-44,91,36,29,72,63,22,43,8,5,79,48,-99,-35,51,-79,-13,45,-2,-61,119,-21,14,-25,45,61,127,-120,-57,-18,-47,-43,-16,-20,26,27,-65,34,-5,-22,20,-32,-4, /* [267][0][][] */ 16,6,-24,-30,-7,99,55,-68,15,94,27,-69,-48,96,26,-33,-33,82,-5,28,2,-87,39,-69,-3,-86,-33,-52,-83,37,98,-69,-4,-34,-126,32,-58,41,26,-12,-13,2,-122,-28,-70,-69,49,-34,-9,-29,-6,62,-64,-39,9,-20,-20,-31,35,-28,-79,-6,74,-6,73,-43,-34,56,-16,-17,68,-49,-17,-48,29,-12,-35,-8,-58,-127,39,-24,-24,5,0,-37,50,-24,-90,-34,-51,-48,65,94,-63,24,29,-104,-15,9,-16,-55,20,-5,-69,37,42,-52,2,119,-9,13, /* [268][0][][] */ -10,7,11,62,53,75,-67,-13,75,15,15,-9,-70,95,13,13,-53,-9,-10,-77,-31,-32,17,-98,-60,-9,-53,-45,5,46,88,56,-33,40,-21,-74,11,13,-34,-30,-7,95,14,-67,-50,98,14,-37,47,26,-9,21,-91,106,-22,-126,-58,39,-58,-32,-98,-99,15,-13,-2,-108,51,127,55,-84,11,-29,-6,1,17,-54,4,93,-45,-5,33,-84,-53,23,23,-55,57,-50,-9,18,-36,-37,29,-88,-8,84,-19,-11,-25,8,68,-14,4,42,-43,75,-16,35,-9,24,-8,-24, /* [269][0][][] */ -39,-24,-42,7,-29,-12,13,69,8,-14,26,21,2,50,-44,-53,-40,28,45,-67,-2,-48,-18,15,32,-20,18,12,-3,48,37,-10,-26,22,42,-24,2,-26,-35,-8,-52,68,-20,-9,47,31,6,29,0,-34,-19,-26,2,-4,-47,-54,47,31,66,-28,16,15,-55,43,-23,-33,-9,6,34,-15,69,28,60,11,36,41,-127,19,30,35,39,-42,-17,48,4,62,-17,27,41,39,25,-59,-53,-34,-52,50,-11,-27,-37,24,19,-3,26,112,-98,-17,52,-12,-60,-20,26,-67, /* [270][0][][] */ 21,22,-42,-17,-31,-3,-1,5,3,-52,-41,127,-7,1,-6,26,-12,26,-22,13,-75,-42,49,50,53,-11,11,13,1,-34,21,-46,3,-22,-10,13,15,4,-58,-39,0,8,-1,10,6,33,18,-14,49,-61,9,-27,23,-20,8,-4,36,-17,9,-55,1,25,43,3,-31,-7,25,-18,25,50,46,-21,11,0,-8,14,-27,-5,19,-25,3,25,-3,46,-33,-21,8,-9,-17,58,-36,35,14,33,5,12,-9,30,-10,-38,-12,12,47,49,-29,-22,6,-8,2,16,-7,51, /* [271][0][][] */ 43,5,-32,-13,-80,-5,-18,-20,-40,4,33,28,-76,16,26,76,-32,3,-1,-99,-35,-26,5,78,-11,7,-32,-93,79,-93,73,-125,7,19,-6,7,-104,-18,-50,27,-18,99,-13,-1,-4,37,75,-6,-44,-64,72,22,55,-82,7,-9,-109,50,48,-19,37,49,-13,48,14,-63,41,127,-37,-17,58,-27,36,-26,-22,27,53,-38,-28,-15,0,64,-47,56,19,19,115,0,-63,37,-80,0,-57,5,56,7,-33,39,56,39,-41,-26,-8,78,-93,-32,64,-55,56,31,6,51, /* [272][0][][] */ -4,2,19,-3,24,-25,-17,34,32,-34,-55,14,75,60,-7,-25,-74,-21,29,-4,-23,-55,-35,-40,-12,-51,63,44,5,42,20,-12,49,-9,41,71,-19,-11,8,10,-44,9,-75,56,-40,17,100,-127,-31,-89,14,49,-29,77,-20,23,20,-6,-57,36,-103,76,44,31,-66,-19,-49,-13,-35,29,56,5,-56,-31,-32,40,-74,5,45,-83,34,70,-7,74,10,-32,39,75,121,-3,12,-10,-14,37,-22,-61,-11,39,-78,38,-50,-33,43,-7,-49,103,16,49,11,31,66,-50, /* [273][0][][] */ -23,-45,-11,37,11,-8,0,-43,-29,-24,-45,11,13,47,-48,4,-19,-24,31,10,37,-28,-8,-13,21,-1,-39,32,-8,-2,-3,-44,29,31,-33,-47,-3,-9,-4,-6,-32,-29,59,27,7,-15,-18,-32,66,11,39,-71,14,-14,-54,47,78,-38,-32,72,4,-21,-36,31,-14,-9,-37,-50,37,-28,22,52,8,30,-40,-9,69,46,38,-19,10,-39,13,33,-32,127,-31,4,-43,-10,8,34,5,31,-19,28,-17,-3,-16,0,12,28,2,-3,36,-18,-31,-9,37,-1,17,-12, /* [274][0][][] */ -44,25,-13,-36,-61,-15,16,97,-38,65,10,33,-24,12,21,28,-42,96,-59,-31,-127,-23,33,13,12,70,-7,86,11,-16,-42,-42,-71,33,49,72,3,-13,-59,53,18,-4,13,-33,-61,-32,-16,49,79,-9,14,70,16,-9,53,-65,-28,47,4,-42,-22,-2,-16,47,3,21,1,-45,12,-17,11,27,-5,87,-27,41,32,75,-27,-105,-19,29,17,41,-4,-3,-14,-93,20,-41,-24,36,-52,67,15,-38,-60,40,-25,51,-62,13,73,68,-42,38,-23,-53,-12,94,53,50, /* [275][0][][] */ -47,22,74,1,-64,-35,5,14,68,32,-67,10,-26,-7,-46,-17,-28,14,14,-61,-48,13,23,32,52,-17,-10,-38,84,3,23,-7,-63,26,7,37,5,115,21,11,-59,75,-12,-9,-23,-5,29,17,-13,-30,27,54,74,-43,-41,-60,-5,27,49,-20,-4,-22,-117,-110,23,-46,-53,22,85,-34,-4,127,-39,22,-70,40,-38,-5,-79,71,75,-37,-10,-95,-75,-1,24,3,57,19,7,-107,-23,-77,-34,28,-43,46,-17,1,79,-41,47,54,-74,-28,11,-37,-50,38,20,57, /* [276][0][][] */ 29,74,-43,-25,-52,-19,-11,22,-25,-69,-21,39,-8,-23,49,-27,-61,-13,63,37,44,-48,8,-41,85,-13,5,23,27,0,36,-12,-61,-31,14,11,-62,6,-15,-12,-15,4,-80,17,-63,127,15,-2,17,20,-54,-2,10,-31,3,-28,-46,-9,-8,84,-37,63,3,-12,-21,-22,16,63,-2,7,31,-27,5,-5,17,17,21,-21,-36,31,17,33,-27,34,28,74,8,-26,31,-15,-5,7,-55,51,53,-16,-42,-30,-9,18,6,-9,-4,-18,-9,-53,-27,-83,-13,22,42,0, /* [277][0][][] */ 30,37,45,40,47,14,-7,24,-30,-11,-48,54,72,35,27,-61,36,28,64,-97,-12,34,3,-58,-66,-39,-15,33,37,22,6,25,-29,-95,-37,-14,46,15,-87,50,35,32,-24,75,-23,73,-43,-59,107,-63,26,37,-18,24,-30,-33,-49,-70,-66,-68,-92,11,-15,69,-5,-90,-12,-19,82,-16,-59,3,-29,5,121,70,-60,91,54,-35,30,53,-1,-37,57,-108,94,27,-20,13,-21,-48,-36,74,79,31,-88,-1,-21,-30,-31,-39,90,42,-5,-38,52,-18,-87,24,-127,2, /* [278][0][][] */ 7,-43,20,-2,21,-24,10,-2,32,-51,7,-70,-4,-36,23,44,2,-68,47,64,47,38,-50,32,45,-23,54,51,-26,92,-5,0,-29,-22,-38,-3,-8,10,-21,50,-27,-35,-32,-10,-39,-30,-28,49,-1,-3,35,13,47,-21,-11,69,-30,19,-39,70,-1,-21,-2,35,35,-35,-14,-16,17,34,-18,11,5,19,45,20,58,31,-43,-29,-34,-14,-37,-30,-43,36,-25,33,-55,-127,-25,-9,10,15,-20,18,-1,-48,-4,34,1,-18,-28,-30,-37,16,27,-9,8,38,-35,7, /* [279][0][][] */ 78,36,9,-62,24,30,-59,-81,48,-52,-74,-19,91,-5,9,80,-16,-77,0,42,119,38,36,-92,39,15,42,28,103,36,72,12,24,-66,-27,-59,37,3,-33,83,51,14,31,-37,-53,-98,-6,-55,83,-96,-28,-32,-5,-49,50,-28,-1,-59,-63,32,89,-30,-18,10,-125,-3,-60,-72,16,4,-88,-6,-59,-14,42,-9,17,31,70,42,26,19,95,-127,3,19,-46,-42,0,-19,-25,-33,-17,13,-4,-4,5,-40,-95,2,25,44,-50,72,-22,74,-37,9,3,11,-54,88, /* [280][0][][] */ 94,75,-53,-91,-21,22,64,-20,-30,-100,-74,56,-42,16,-12,-59,11,99,0,-47,21,-127,-67,-42,54,26,-31,-17,-47,-17,57,-15,14,9,82,34,-12,17,-96,17,25,1,-91,94,0,38,-54,-43,41,-57,-100,-25,-75,-87,-22,-115,-6,82,-13,36,22,-24,-72,-112,25,3,-35,-38,74,-39,119,-58,23,18,51,33,-7,2,-37,34,7,-1,56,53,-23,50,34,-93,-15,-7,-127,-6,8,122,1,81,-27,-42,14,-93,-76,-66,-2,80,-29,16,39,-3,-115,88,15,13, /* [281][0][][] */ 17,-44,-10,-16,19,67,-37,127,-46,66,-57,37,66,79,-13,45,-28,-24,2,-18,-42,-1,7,34,13,-47,95,67,5,-34,24,-25,5,37,-45,88,-20,-51,-5,-40,-23,-22,17,21,-5,48,37,-81,64,-102,35,19,-28,53,-4,-89,11,78,14,-32,-50,-4,15,-92,-74,-13,5,60,14,-50,28,26,5,4,88,10,5,36,-37,54,-38,-75,-114,18,-21,-19,77,-26,59,-88,19,-9,-46,33,49,99,-10,48,-61,-30,-21,34,105,44,-24,-43,13,-45,1,62,-9,-44, /* [282][0][][] */ 20,-10,-49,-1,20,-22,-48,55,5,-49,-109,-49,-46,-1,-37,23,-56,40,28,47,-21,-19,-13,-57,-36,44,43,24,-32,23,-3,-47,40,12,24,49,-1,127,28,-19,12,40,-82,-28,-80,-10,4,10,-6,4,-9,69,36,-47,-47,-37,13,10,35,-73,-4,0,-37,19,-34,29,-6,30,15,23,-62,43,-58,-26,26,0,38,-11,-94,-118,60,29,-65,19,-17,-37,-4,-35,-105,-57,-35,-9,-64,29,-84,22,-67,10,-21,-18,-24,45,-64,-26,-121,-23,75,-36,59,-35,-13,-39, /* [283][0][][] */ 18,3,58,-40,-51,11,-3,21,18,-37,-32,38,-38,11,-13,13,0,-10,-44,-127,-69,19,7,26,21,39,-9,32,41,-6,71,-35,60,42,6,99,-45,-52,23,99,9,80,-28,-43,-52,38,-21,17,-17,-35,-49,-3,59,-88,-13,-14,-40,11,4,-30,-50,48,-17,20,-61,-44,-23,17,48,8,20,20,-57,-17,15,23,18,-85,-44,34,53,51,3,-2,-4,28,82,15,40,-13,43,-83,7,-7,53,27,-94,-31,-20,21,48,-49,51,11,-45,36,-19,-67,50,63,41,20, /* [284][0][][] */ -9,23,-7,18,15,11,-37,7,-1,22,38,2,-5,44,-35,30,7,52,-20,18,26,-1,-21,69,-15,30,-25,-25,12,37,-41,56,19,54,-26,52,-50,18,-14,10,-12,-32,26,-7,3,-20,30,-13,85,-15,26,23,7,-10,-27,-29,19,-4,-26,16,97,17,-102,4,33,37,-39,-23,-22,-16,50,28,6,19,-3,-30,18,50,21,21,6,-13,1,-29,-17,6,-40,-41,-42,-23,-37,-61,8,40,-15,-5,35,4,13,-38,-29,14,42,5,21,127,51,2,29,25,-39,4, /* [285][0][][] */ 15,48,-40,45,9,18,-31,-32,29,-50,-127,41,16,1,-50,-30,-18,38,-33,-18,-29,-108,-10,15,16,33,-6,63,45,-93,44,21,-57,8,1,-19,-12,26,-59,51,48,-1,-14,42,-4,88,-16,-52,-17,-62,68,-41,9,-91,-28,-17,-23,-10,48,-16,19,16,82,28,-23,-12,-75,3,17,-56,41,58,-31,96,-33,-5,-71,28,-69,-27,-3,-53,-30,-10,-12,-9,20,-5,34,-13,2,11,-19,-66,52,-55,-32,53,21,-61,45,-5,34,21,-44,9,-43,-41,-24,17,54,-43, /* [286][0][][] */ 6,-3,-12,-18,-32,16,-59,43,-2,26,-10,45,-35,54,-36,-24,-50,8,58,-56,101,15,26,-71,0,-107,55,48,121,-31,-24,6,-45,-21,11,-2,28,-49,-30,63,-22,35,14,88,-62,49,3,26,-49,-18,13,12,-68,-53,-26,-13,-112,23,-7,-6,30,71,-72,44,-67,39,87,4,71,-94,21,23,20,-11,-3,107,7,45,-23,-20,-13,28,-58,14,-31,37,58,-70,-46,-50,-12,58,-42,-1,-8,7,-127,-80,16,-10,27,5,7,26,-32,-123,57,-41,-25,0,-96,-103, /* [287][0][][] */ -16,38,-34,-43,3,-37,5,-14,54,24,41,0,72,64,-45,-27,-22,68,-21,14,-12,6,46,89,4,53,-23,41,7,45,61,35,-15,1,-35,55,-33,16,-15,-3,-3,-39,33,-40,-16,-8,53,0,37,-34,-16,-40,-26,7,50,20,66,-127,-13,-31,20,47,-23,22,-11,14,-45,28,-18,-4,24,-12,-20,17,-26,5,-11,88,-14,-61,-7,-12,3,15,-49,33,-36,16,8,-68,78,-54,-14,28,-5,-21,9,36,29,4,62,-32,31,-40,-2,75,39,22,42,-5,-14,12, /* [288][0][][] */ -54,45,0,-41,-35,-62,6,-10,127,-37,1,-17,12,55,-48,41,-7,-75,32,39,41,-11,-56,-16,10,35,6,-23,22,21,-23,7,-28,-19,-71,37,15,19,-40,27,-28,68,18,-59,51,-96,-57,-10,-4,88,17,37,84,-35,13,54,-14,-58,-32,15,1,-40,-78,85,-20,41,-32,-32,21,23,-44,49,-2,5,3,-11,20,11,-48,-42,16,-60,-13,25,-5,26,-80,-4,-127,-74,-51,-47,-17,33,-26,-2,-43,-76,40,32,55,18,23,-11,-21,-13,59,40,50,-19,-49,-26, /* [289][0][][] */ -66,-4,8,-36,-41,-68,-32,35,72,45,13,36,10,22,42,127,14,10,9,-18,25,4,-10,22,41,49,-35,-26,11,10,-5,55,-1,38,-55,-29,7,58,-35,62,-4,-28,34,-52,-29,-45,28,-2,7,26,-3,-20,-3,-1,52,55,28,12,-10,-45,-4,13,-64,-25,5,49,26,42,0,10,-55,63,-47,29,11,43,13,71,-36,-49,-16,52,50,4,-16,1,-71,-18,-27,-45,21,-54,30,-14,-36,68,-43,19,-28,49,21,14,92,33,14,83,-17,6,101,6,34,31, /* [290][0][][] */ -3,12,-38,6,-20,-30,22,36,29,-28,-58,54,-8,92,37,23,39,-75,-20,-48,51,-33,-2,55,42,48,-48,-34,-73,-32,-6,-7,-52,45,23,37,21,-14,36,10,-56,-23,-26,-1,-88,-16,12,-68,-46,-58,57,29,39,61,26,-39,40,-58,-38,127,12,-56,28,-19,-85,24,-51,7,-46,72,27,21,-12,-35,-38,14,1,43,69,23,-19,-1,-31,0,-13,-8,-27,-26,22,25,21,-41,-38,-26,35,6,-13,36,47,-44,17,4,-46,-8,33,53,27,25,72,22,66,21, /* [291][0][][] */ 1,-81,-37,-35,-15,-72,-6,-20,27,-46,-38,15,-10,-42,-55,77,25,-49,83,73,12,22,-26,8,-40,37,-16,-5,53,29,-59,-12,-11,-13,-15,9,16,25,53,0,-17,7,10,-6,-52,9,16,-20,127,17,51,-5,-40,4,-36,35,5,-18,-38,-56,2,-23,-21,-71,-27,-45,18,-8,-44,-5,38,-110,-23,-31,42,44,58,15,-59,14,25,-10,61,-1,-56,-19,3,23,-9,8,7,-28,-53,39,21,19,8,11,33,-6,12,32,36,11,15,-9,-50,48,-4,-24,9,-55, /* [292][0][][] */ -66,-57,-21,-31,3,23,-6,42,16,-44,59,21,78,2,-21,27,-27,-30,89,-2,44,-27,81,4,76,-38,54,75,14,77,101,-50,-43,-64,-78,-21,10,36,-55,36,-62,23,89,-9,42,12,38,15,-6,-21,-35,-26,-13,8,-35,-48,-49,35,-18,-4,-19,33,-55,8,16,19,-42,47,-22,-12,96,45,-10,-26,22,36,-5,127,-52,3,12,-10,-50,65,-11,11,-55,41,39,-112,-5,-17,11,-25,20,-41,72,-19,1,-39,18,57,7,-59,-50,-77,50,-52,-37,0,-54,-75, /* [293][0][][] */ 17,16,30,-3,-87,-119,-46,-65,-79,-8,-40,-67,-40,-56,-70,-73,-40,-81,-29,-57,9,33,-89,-96,-20,-51,-60,2,46,29,-53,15,-57,-98,-80,41,-27,11,-87,20,9,45,14,100,-56,-27,81,-68,90,-18,52,48,-41,76,-54,10,45,13,-68,-8,-35,-49,-76,-15,0,-62,45,101,0,-95,-35,-49,57,-15,76,83,-73,-31,-5,-1,46,96,-118,-5,76,-9,55,-59,-32,6,-48,0,-16,-6,-43,29,-45,-61,-41,22,41,-40,53,16,-127,-70,40,15,-70,64,-108,-31, /* [294][0][][] */ 80,4,26,77,6,46,9,45,75,-17,-127,33,-2,-1,-5,-97,-54,72,-47,-33,13,20,4,54,42,-100,-25,-34,48,32,75,-15,14,-13,-59,59,113,-34,-41,-20,10,67,-50,-70,-38,67,14,25,33,-1,-81,3,-24,53,-82,-13,-29,65,-8,-74,-23,-40,9,-50,59,-67,-89,19,98,-27,-49,-48,23,123,101,5,-29,-15,-17,45,34,-117,-77,-42,60,30,69,-68,-1,112,-51,-47,20,13,-31,96,-59,-73,28,8,-69,-121,99,92,-79,-43,56,-91,17,29,-124,-8, /* [295][0][][] */ 1,75,58,-26,-65,0,-31,2,21,-9,-36,25,-58,55,3,58,-31,13,-57,7,-1,8,53,-6,-37,-39,-13,27,-41,17,-33,-78,-32,26,23,93,-33,14,-34,-41,-54,19,55,-36,-11,53,127,-34,37,-9,42,63,64,3,44,-16,22,51,19,-43,-14,-17,-51,-36,-53,-54,14,45,-2,64,11,-7,27,-43,34,-5,-23,-31,-95,-41,-8,-3,-3,32,-19,-15,-43,-10,47,-40,-8,65,41,41,-44,29,9,-13,-16,-52,-20,14,35,-46,-80,-20,21,-59,-64,19,73,7, /* [296][0][][] */ 12,37,19,62,-36,-42,-12,27,-81,-46,2,45,-77,-2,46,-30,2,7,6,79,-47,6,26,-11,39,15,-1,-12,50,-31,19,-71,-47,4,38,27,-88,-3,11,47,16,108,-68,50,-79,-11,-26,-41,-81,28,58,-36,12,14,8,-3,-61,-18,10,-8,-39,12,-15,-43,73,-27,-29,11,40,40,2,-61,60,31,68,8,-36,-33,20,39,-4,30,-47,-46,-25,41,-34,-10,16,-41,-53,-43,-15,41,38,-19,10,7,-48,11,44,-21,8,-1,-127,21,48,-111,-30,26,69,40, /* [297][0][][] */ 59,19,27,-54,-24,10,-74,2,-51,-30,-44,1,78,-29,-99,-42,-17,12,-1,-67,-53,-65,-29,-59,62,54,34,27,39,-20,10,-75,-68,26,45,16,-4,-6,47,-57,37,53,-51,98,-29,11,-6,-76,-3,-47,-53,-13,47,-91,-22,4,-59,7,-8,-40,-127,25,-21,-25,27,-26,-94,-52,5,15,43,-52,-5,41,-2,-33,-14,-16,17,37,24,63,24,54,-74,15,26,21,-30,54,11,51,66,80,13,15,-14,37,65,0,1,-3,-20,105,4,-26,34,-49,-2,33,67,-46, /* [298][0][][] */ -61,37,-69,-21,67,-18,-9,-23,44,-26,58,-14,13,42,5,84,5,9,2,-41,-15,2,7,66,0,42,-72,8,1,71,7,26,33,-23,-127,-20,-13,-39,-80,-29,-24,-35,98,16,25,-51,30,-30,-43,6,-1,-12,21,-47,-29,3,-40,-32,-101,20,19,25,-107,68,-25,13,43,38,-18,-84,-3,-29,55,-53,30,30,13,33,-2,36,-9,-85,-41,-49,-45,99,15,-85,-87,-95,-68,-53,47,-1,36,34,17,-47,86,36,8,-48,-47,43,23,-5,55,69,20,27,-32,-60, /* [299][0][][] */ 18,19,-18,-10,-76,7,-5,18,10,16,-76,-11,-14,-4,-34,23,-1,-26,-45,-12,41,-11,-2,65,1,-3,52,12,51,-3,34,-36,0,33,-8,-8,-48,127,6,108,-21,80,3,22,-40,-39,77,18,13,-17,9,104,-3,-1,-76,-19,28,34,21,-51,-28,-6,-10,34,9,22,-11,-45,62,-80,20,27,-23,36,-19,9,-94,60,-45,-36,11,-56,-4,-12,-10,-6,-123,26,27,-3,17,-32,-17,57,7,-125,5,17,-27,-21,32,-19,-27,-20,49,35,50,-103,-20,-9,11,16, /* [300][0][][] */ 21,17,-43,0,-30,-4,32,86,-41,38,-10,-7,18,-54,-39,5,-15,-30,5,-35,-68,6,3,-60,29,30,83,60,17,-9,54,-10,-20,20,-25,28,-56,-7,-34,16,9,68,-33,-41,-31,0,1,29,-38,-22,-26,41,28,-31,14,34,-13,11,-18,-24,-12,-21,12,12,49,-22,-11,50,-12,-41,31,-42,30,94,13,-7,-30,-9,-8,-58,8,-58,-12,24,10,69,42,-2,4,-16,-41,-28,-54,-1,-24,4,12,-86,18,63,3,-1,30,127,-68,4,37,-44,16,42,-28,-81, /* [301][0][][] */ 68,-23,-20,127,10,7,-11,74,-13,-4,-60,80,-32,-26,-9,-16,45,-10,60,-65,81,-99,10,35,28,-44,1,113,2,-126,-32,-17,-100,21,-37,109,-25,-16,-49,-5,-86,14,34,95,4,108,-19,-15,-1,17,41,73,74,-60,3,-10,20,81,106,15,-59,-7,-20,-16,-40,-7,-95,75,-47,24,4,80,56,67,1,-14,-61,37,-36,77,78,-9,-99,45,1,10,59,-64,6,34,30,-1,-42,-13,-13,127,21,-40,-96,-71,-49,-50,54,73,63,-24,-33,21,-25,43,-42,73, /* [302][0][][] */ 41,-36,12,-28,35,-52,-98,-32,12,-48,-52,13,50,-74,-73,3,-44,-76,57,75,15,-3,-45,-61,29,-37,-3,28,17,-16,10,-28,-118,-34,3,-20,33,23,-33,6,25,-15,-11,10,-36,19,9,48,-20,67,-34,111,69,-64,21,-3,-34,64,-35,-2,-20,18,-20,29,-53,-102,-42,20,23,-6,-37,32,22,45,24,39,-31,48,-6,-36,12,15,-83,-58,34,-26,1,3,17,-6,21,7,35,-96,-14,13,-35,35,-32,-11,24,5,72,-68,-127,-54,114,1,-84,-13,13,-45, /* [303][0][][] */ 81,-58,-10,-17,-41,-52,22,41,-43,-21,-60,58,-5,-91,-108,7,25,-16,11,-22,-10,-20,-13,-38,13,-5,28,26,-57,-59,-17,-79,-41,71,14,19,4,62,-7,-4,-97,12,-127,13,-96,84,-71,10,5,-60,40,68,45,2,6,-31,-67,-38,66,-30,-32,-65,36,41,-23,13,-63,4,-22,3,24,30,-51,-29,-35,10,22,8,-19,-75,53,85,26,0,31,42,15,-48,5,31,-57,-23,11,-37,47,-30,22,-56,-40,-21,52,41,-2,-51,-34,-124,25,-7,33,42,38,-42, /* [304][0][][] */ -12,-15,-67,20,-5,16,-31,-37,-55,-24,-57,46,46,52,-33,73,117,-10,71,-26,17,-89,-37,-38,44,1,-29,-47,9,-92,-24,29,18,17,-13,49,-29,44,17,38,-32,-43,-114,-23,-4,18,13,-29,7,4,81,-40,73,25,78,44,1,-88,20,-16,63,-21,22,-39,30,11,63,33,-8,-43,-61,26,-127,28,16,4,31,26,-63,60,5,-77,36,-22,-49,3,-8,-55,27,-22,-41,-53,-74,-84,-9,5,8,12,14,47,25,50,63,-3,-55,67,-46,8,122,-82,49,30, /* [305][0][][] */ 56,-53,13,62,36,43,8,-27,77,-23,57,-14,59,16,35,34,-6,-46,6,-67,13,55,22,14,49,13,2,71,18,37,-27,12,-15,-16,-11,35,84,-38,33,-22,-9,-53,30,-35,17,64,7,12,3,-10,-31,-52,36,41,31,-41,40,-19,-33,-4,-25,27,-36,-14,-127,60,-11,40,11,40,54,-34,-3,0,72,-31,44,-8,2,-14,42,-1,6,1,-84,36,-14,13,33,-5,5,-67,-43,-5,3,104,-42,-7,3,17,-13,-75,14,-30,-44,-9,55,58,-2,-32,0,47, /* [306][0][][] */ -41,0,-16,0,2,-31,17,-42,6,25,14,-7,-4,41,19,49,11,-8,-20,-32,6,35,-10,25,-12,29,-44,-5,5,-39,-23,-43,24,-3,45,-17,-13,-33,50,58,-31,-2,-5,39,-38,31,-41,-10,7,45,-7,1,19,55,-9,15,-7,-31,-56,3,28,-18,-100,13,-9,64,-35,-45,39,-21,47,66,-31,7,66,-42,15,127,22,-24,29,-6,6,-33,-13,13,-32,0,-86,-19,-34,-67,-34,-16,9,0,38,-30,-38,-39,43,-12,-27,18,-1,-16,9,10,36,4,-17,21, /* [307][0][][] */ 26,-37,63,0,-98,3,-12,-39,46,-17,-46,18,38,-7,-42,-66,-95,-50,-2,-70,28,-70,41,-20,25,-65,25,23,5,-53,53,-25,2,37,-26,70,-44,98,-61,-2,-83,111,-3,-87,-4,7,48,-65,47,68,-71,53,69,11,-93,-52,-50,20,29,-42,-63,-37,-48,30,23,12,-28,38,-18,-40,60,82,-9,-41,-28,-21,35,-63,-114,-43,127,-3,-12,-59,-79,-38,-11,24,8,-14,-23,-76,-14,-26,18,22,11,-4,52,-13,64,47,77,-73,-89,-54,0,2,-28,-11,10,-30, /* [308][0][][] */ 1,-37,-15,-8,-21,-66,-7,16,-18,40,22,-73,-6,86,-55,37,-13,4,30,48,16,5,-41,56,-12,69,-54,88,62,-2,-55,-46,-48,-4,3,-14,86,58,-3,19,36,-24,-10,-18,64,-7,-63,-34,83,36,51,-74,-62,-23,20,41,12,-55,57,-21,-23,40,35,-6,-27,-40,-43,85,27,8,15,-39,35,40,41,42,56,27,15,-47,76,24,-15,-63,7,80,-22,10,16,-13,-3,-68,-17,-50,14,-11,29,-43,44,76,91,-45,-6,-5,-62,-32,8,-77,127,-13,-33,39, /* [309][0][][] */ 16,-69,-107,11,-21,13,-10,-18,-34,-1,9,92,-33,58,-28,67,30,40,-29,77,-7,-17,26,127,65,28,12,-34,-3,-43,12,-33,23,-26,-51,72,57,-19,88,-6,-11,-17,-28,-32,-26,24,36,9,48,-16,71,-98,-54,1,93,25,-74,-91,-23,-14,48,1,18,52,1,-10,77,52,14,-2,41,-57,-1,-70,-16,34,8,63,42,-51,36,-46,-23,-11,-54,16,-64,-12,-28,0,2,-116,-20,-8,84,53,15,55,89,-15,21,42,-54,-24,71,88,57,-4,77,20,53,-3, /* [310][0][][] */ 11,-22,-16,4,16,14,-36,-66,70,-14,-7,-33,27,28,41,53,28,9,-4,-7,62,-10,-16,35,-6,-3,-62,12,2,30,6,7,-13,59,-25,2,-45,47,-21,-24,23,-65,21,31,41,-34,28,-7,10,29,38,6,27,-30,-17,-6,-23,-31,16,50,34,7,-22,34,16,8,18,41,38,-11,-13,-20,-20,-5,-9,30,127,10,13,1,22,55,68,1,-1,42,8,61,-39,20,-44,6,21,13,-37,-51,41,-28,31,84,26,-34,32,31,-16,22,-22,-18,94,-31,-17,4, /* [311][0][][] */ -52,-45,16,66,2,-25,45,15,127,57,2,-47,55,70,-58,2,18,-64,32,-22,56,57,-2,32,16,-35,-76,85,-35,82,21,39,-39,55,2,30,70,-23,16,40,8,20,19,-75,-43,-13,-44,-8,-2,58,-20,-66,116,27,51,5,-36,-97,-19,-7,2,-34,-39,-34,-112,24,13,52,-26,-46,-4,-25,67,38,2,-45,43,-4,2,-2,65,-69,14,4,-107,79,-45,20,14,15,55,-87,-62,-31,-11,48,28,-70,32,35,58,-65,52,-1,-34,21,26,61,94,-64,31,21, /* [312][0][][] */ 11,-31,-3,18,-63,-3,-127,28,23,0,-96,44,-13,29,11,44,-24,36,-16,11,19,-64,18,-21,16,-16,-10,89,4,-46,-51,-48,-12,-35,-15,49,-13,-25,17,8,3,30,-47,14,-6,2,107,-67,-12,-72,-16,55,37,44,-90,-35,-57,40,-4,-15,-23,-46,20,56,-4,16,-20,41,-18,-5,2,38,-59,-6,-58,9,-32,-44,-61,29,39,-39,-37,-49,9,-21,-103,39,-6,20,8,51,59,-6,-54,-47,-27,55,-33,-30,24,-16,74,50,4,9,31,9,33,53,18,-9, /* [313][0][][] */ -46,-15,-68,-14,-41,30,0,-30,94,31,-48,-8,-53,-10,-26,43,-50,-14,24,-24,-28,0,62,3,-4,-31,46,-4,1,-6,27,-43,-8,-29,95,-6,0,-11,10,81,-12,46,0,43,-61,3,-25,-58,-32,13,2,-5,-12,-33,-42,-15,-74,42,5,-12,37,42,-25,127,-3,23,-42,-53,39,-56,-24,59,-66,58,93,101,18,-27,-27,-24,-3,-17,-12,94,-32,-42,-23,89,-25,-53,-11,18,-21,-32,27,-14,-91,-105,-7,-28,1,-46,91,3,-15,13,12,-57,-36,30,-1,2, /* [314][0][][] */ -12,-47,61,31,-32,20,-15,-25,-18,12,-55,-1,-56,-43,-2,13,-88,-13,48,26,31,-42,6,-50,42,-19,-20,22,-4,79,36,-57,-43,-13,-31,-20,-56,-86,-22,-15,-42,1,-14,-35,17,30,29,-48,31,44,-12,43,-40,12,-27,-5,-61,46,-49,0,-19,-45,-10,-17,14,-39,-34,4,-12,28,-12,-32,55,16,48,43,8,-19,-63,5,50,-25,-94,26,-33,47,-16,-4,-24,-3,-22,63,-58,-60,-5,-18,2,2,-67,-14,-66,-8,4,38,-42,127,-14,-50,39,65,45,-27, /* [315][0][][] */ -27,-43,25,3,-91,-11,127,-18,18,28,-4,-61,10,89,-8,25,-31,-39,34,-18,58,17,-5,65,10,32,-23,-50,-2,-2,108,11,-33,-49,7,12,18,-50,124,109,-31,-24,13,-30,-3,-34,-34,-52,27,6,25,-70,-46,-82,9,44,12,-87,-67,40,14,0,17,30,-35,41,-102,-119,47,18,31,-35,-99,-29,19,28,-32,100,-2,83,24,-119,-12,66,-68,115,-55,19,-10,-108,35,-53,-95,-51,-41,-15,-19,-34,52,-1,75,21,-41,14,-55,65,-47,-56,61,2,-10,-21, /* [316][0][][] */ -49,35,-38,-9,-36,-71,-5,-1,-11,45,14,55,-28,-15,77,12,30,-57,-28,-83,-58,-35,34,-72,22,-35,30,55,46,-12,-65,-49,-53,24,58,59,14,-12,-40,-31,-38,26,-9,-11,-37,85,1,-3,-61,-95,73,-50,-5,40,-57,-23,-80,39,-62,11,47,-46,-113,49,79,-53,-37,127,17,-38,-14,23,-61,-23,-36,85,-3,20,-21,-4,3,90,-36,-33,102,31,80,-111,-18,-43,-74,6,39,-8,50,28,11,8,-5,-9,-4,-60,-19,70,-108,-102,71,-23,-43,90,30,10, /* [317][0][][] */ -17,7,43,29,-29,-51,-15,-102,20,87,83,-28,0,20,61,24,103,16,55,49,101,-43,13,-23,-50,34,-31,8,-1,60,21,46,-2,-1,2,80,38,-21,-10,-43,-59,77,42,60,77,7,83,-23,-2,13,-1,-50,-23,31,-13,-74,53,-82,-12,18,36,-33,-25,6,18,24,-19,19,21,-3,84,27,-127,-4,28,-17,14,76,-57,28,43,-21,29,18,-80,-52,-54,24,-67,12,21,-67,-50,10,17,18,-37,-74,33,59,8,53,103,15,35,71,-49,-10,41,23,-28,1, /* [318][0][][] */ -7,-44,42,-4,-62,-106,-2,-58,-64,0,-33,66,30,37,-85,47,39,-58,51,-40,87,-33,-92,-12,11,32,-24,25,68,50,78,38,-48,-65,-32,76,34,-56,83,22,-54,21,-5,-72,16,-6,5,-26,82,-16,-20,-25,-16,-81,20,27,51,-79,24,33,30,-33,-29,104,-122,-55,-44,-36,-96,-45,0,-117,-46,-14,-4,-2,-25,43,-27,27,79,-47,37,-59,-110,2,-88,23,49,28,30,-21,-19,-70,-49,-14,-16,-63,125,121,127,12,18,-11,-49,104,-54,-11,112,13,12,-83, /* [319][0][][] */ 21,-23,28,57,41,46,-62,-18,115,-9,-11,2,-38,15,-18,49,-46,-6,87,42,-23,0,27,-62,-4,-75,18,79,6,68,36,3,28,-55,66,48,-46,3,40,-37,60,-24,-11,-53,-107,86,21,13,0,6,9,-7,18,3,-32,-83,-24,-6,-47,-59,-60,66,32,6,0,-13,0,60,9,0,-84,19,-34,42,63,15,-46,6,-11,-98,10,-15,24,-10,-2,20,-1,19,74,-8,35,59,-84,48,-17,-19,-35,37,-127,-38,25,-5,48,-14,-65,59,54,-34,-108,-13,17,-52, /* [320][0][][] */ 13,-7,-58,-17,-21,-1,-23,-7,-31,3,-2,33,42,2,-43,-13,-36,-24,3,-42,14,-17,-39,16,45,37,104,69,-4,-43,11,-43,-50,-18,12,-17,-23,22,-9,66,16,54,-5,-25,16,59,-15,40,-14,34,50,38,-19,-38,-3,22,3,105,-49,71,-59,-60,2,98,32,-67,-73,55,-14,-23,23,56,-33,44,48,-31,6,3,-57,-31,-40,-6,9,21,-25,-31,88,-38,-57,-104,-27,15,48,-5,41,-29,-8,-53,78,37,-48,29,-4,26,-127,4,13,-74,-34,22,77,-94, /* [321][0][][] */ 1,5,-19,-31,8,69,-42,-12,55,-86,-94,18,-127,16,-11,-72,10,15,52,-90,54,-16,22,-2,58,-39,-29,55,67,-5,32,12,-29,-42,5,54,-3,-24,-75,33,27,43,7,-44,10,51,20,-34,77,-36,-21,52,-42,-16,-24,14,-75,1,-19,-25,38,12,-80,-24,76,-19,-14,-11,-22,-10,-19,-19,-9,53,64,-35,-38,4,8,74,69,-14,-54,-18,-19,26,-4,10,53,35,66,-26,-6,-15,8,103,-63,25,-49,-53,-7,-57,-35,25,22,-16,-11,-8,-76,45,-23,-48, /* [322][0][][] */ -54,-93,-68,24,4,-20,-25,-21,81,26,45,-59,-28,47,-5,47,39,-10,82,18,69,-19,-13,11,-9,14,32,32,-13,59,-36,-102,8,-5,48,70,49,-80,90,-53,-44,40,-19,66,-54,-24,43,-126,77,102,10,-68,-43,-66,-12,33,46,-97,-17,-55,-9,95,-38,4,-28,-41,-68,-88,-8,25,-38,40,-72,33,127,36,53,8,30,-34,34,-75,36,72,-106,-111,-51,5,1,-44,-60,-16,-68,-16,59,58,-35,-14,13,5,24,73,33,9,-46,19,-6,-20,11,-21,5,-24, /* [323][0][][] */ 103,-16,-49,-15,-5,2,32,-59,2,3,-62,127,40,-59,60,-31,-46,26,59,-17,-53,-28,54,56,92,-14,96,91,8,55,56,-63,37,-64,28,33,-42,-28,1,17,34,10,-43,-8,-30,-23,63,-30,9,-127,-42,59,5,18,-39,-29,-45,31,-27,45,-14,28,67,33,-43,-16,-22,38,-63,42,83,-14,-36,-36,-55,14,-29,-56,-69,-48,41,-28,0,-63,-74,-11,14,-27,-47,-7,-37,27,41,-4,47,-80,-14,-67,34,-20,10,-120,-4,24,-41,24,81,8,46,21,44,42, /* [324][0][][] */ 69,28,9,37,-31,12,-22,-9,-61,-61,-76,-61,65,-38,41,-12,-41,-11,78,-53,2,-27,-12,20,40,55,9,86,-7,-45,19,-57,12,49,71,41,15,24,35,-58,66,31,-6,127,-6,17,65,2,-47,-25,-14,14,-32,-114,-112,32,-90,41,68,-33,72,-69,9,-49,6,1,-108,-36,97,-60,80,21,-62,54,93,46,-15,40,-46,-39,-16,48,13,60,-13,14,18,54,106,-67,16,8,1,-94,-17,-7,9,-23,-62,-40,52,10,-9,67,31,16,38,-53,5,98,62,-43, /* [325][0][][] */ 26,30,-9,103,-43,-32,-1,-46,-19,11,43,9,-49,-16,18,11,27,49,105,-6,-6,-37,3,41,-56,32,112,-65,17,-29,25,-63,14,0,47,19,27,-23,25,-39,25,-37,-127,35,16,-10,73,-8,-25,-38,20,-7,-6,-92,27,-64,-29,42,-30,-11,5,16,61,-55,0,-84,57,61,8,6,50,-6,-41,8,0,64,-57,23,-60,-23,68,-11,-61,60,-21,-18,-16,16,-15,46,7,-10,-13,-8,48,58,-9,-11,-14,18,42,-18,21,55,-26,-5,32,-38,52,89,-39,58, /* [326][0][][] */ -36,9,-20,-53,-7,-41,11,42,60,-42,19,-32,45,49,0,28,41,-94,-26,11,-2,13,-95,-24,17,8,-59,41,20,72,-1,39,-7,46,-49,31,-26,34,9,-22,-127,26,-42,-47,-5,-16,8,-37,76,-5,-38,11,61,-6,6,28,97,2,28,12,78,-9,-17,-34,-52,-38,-33,15,-35,4,-16,-34,5,-54,-39,4,15,-25,-9,-77,82,-8,41,11,-32,32,-49,-7,-48,-23,-43,-11,-39,55,-34,92,-57,-1,29,0,-36,23,2,41,-20,-36,-11,18,59,-54,26,-36, /* [327][0][][] */ -32,31,23,-52,34,-40,-65,-19,41,26,-49,28,39,44,-44,1,-66,49,-35,28,-59,-110,-86,-105,42,-48,34,49,24,-43,78,23,32,-26,-46,31,22,22,8,-36,-28,3,4,-12,-34,-19,81,20,-7,-78,-54,105,-9,38,15,-25,16,-75,-65,-3,-59,-39,10,7,-79,-50,-64,21,-6,-37,50,28,-49,-31,30,45,-18,63,-20,-59,97,-28,-24,28,12,-43,38,-33,-10,-37,-52,6,49,-35,-52,40,-46,12,-86,-7,27,47,-20,-47,-127,-72,3,-86,-7,1,-57,-15, /* [328][0][][] */ -36,70,-43,-12,-25,-87,-42,-31,-46,20,-29,51,48,6,-10,27,-45,-4,80,-48,14,-34,78,-80,-29,-38,-18,-21,20,3,19,-81,50,-80,-30,-97,74,-75,-39,74,63,23,-12,-14,-15,8,-33,-64,9,-66,-22,47,-56,39,-20,-1,-11,9,-107,10,-2,-27,-23,-10,17,-127,-34,-25,-52,-103,63,-18,-9,-15,45,50,-74,94,-71,42,-27,-15,-70,-4,18,-14,53,-45,-41,-32,-52,23,-16,25,-27,-17,57,59,-59,-73,53,-65,35,80,-33,9,23,-38,-86,39,-73,-73, /* [329][0][][] */ 57,-19,83,-66,-49,35,-14,-46,51,-21,-39,3,-30,-10,31,3,6,31,-30,74,-27,-75,-19,-28,46,40,17,28,46,0,12,-5,-17,11,77,37,-26,-11,31,57,39,31,-51,19,6,118,43,-33,28,-79,-6,5,55,-21,-7,-11,-33,38,-50,-49,-50,-6,4,-59,101,-4,-7,36,-37,13,63,-46,-60,33,5,58,-25,42,-72,-20,-38,-26,5,4,-45,-60,10,-16,2,-21,34,44,15,58,-36,6,-18,41,-21,-127,-12,10,81,-10,36,-10,42,-17,-53,-2,59,20, /* [330][0][][] */ 46,-3,35,-2,30,57,8,24,-6,-37,15,4,-64,9,-32,66,50,-22,-34,-35,-31,-83,-9,-20,-103,34,-40,21,-28,56,92,-14,-60,-9,29,3,-16,47,51,-37,-9,16,-51,-23,-44,12,112,5,37,52,-45,21,-109,19,-48,-9,-91,63,-50,-41,-72,-62,58,32,55,-27,-29,69,-6,-33,3,-55,-35,53,76,1,30,76,-70,-16,31,-57,-48,-16,-24,-87,-65,-65,-61,-22,-7,-109,127,7,17,13,23,-77,17,-10,-33,-56,-52,56,31,38,51,-6,-51,55,18,-40, /* [331][0][][] */ -20,-34,-15,28,38,85,-83,-28,-56,46,-5,38,-46,46,-2,43,-62,45,19,26,-97,-52,-22,57,21,-34,37,-11,31,25,72,-1,-45,-32,-31,73,33,17,-18,-4,-52,-44,-57,-26,-44,11,73,-17,31,58,-18,-8,-53,-100,-40,-79,2,79,-33,-18,-35,-5,76,36,21,12,-63,15,20,-35,29,19,18,113,-36,-17,-25,-54,-83,24,17,-80,-76,-70,29,-37,17,-91,-80,-4,-80,-53,5,20,-38,24,25,-113,43,-6,-81,-127,-31,55,-31,45,110,-3,30,64,-17,37, /* [332][0][][] */ -12,23,-58,-48,39,-75,-44,-4,1,46,27,87,49,110,-45,85,-50,18,-9,-15,-20,-77,37,-21,53,-87,4,-35,27,36,73,-29,47,-74,-84,-45,-47,33,17,66,-76,47,57,-42,-27,-13,15,-53,-2,-33,-48,45,-62,59,-71,98,-5,-9,-15,-27,-80,43,37,-11,16,-66,-5,53,75,-99,-3,30,-82,12,-69,15,-34,51,-88,-1,-4,-24,-92,54,42,35,-18,-32,-66,-15,-44,-91,-16,59,11,-120,38,89,54,-70,63,-127,-24,57,-11,37,65,-60,-49,-42,-33,13, /* [333][0][][] */ 7,-10,-70,-10,-59,-35,6,17,1,-19,22,11,8,-39,-98,11,73,41,14,-82,24,114,-48,49,16,36,-6,1,-54,100,-38,-1,-45,23,-23,-33,23,-24,17,-38,-48,40,-75,-20,-21,127,-65,26,8,16,66,-6,17,12,10,29,33,29,-18,87,10,92,23,37,33,46,-33,-31,-52,-46,-16,10,-54,-19,75,-42,-46,97,-7,-60,-67,66,11,3,-54,43,-16,-76,-64,-5,-124,-73,-92,27,-13,17,-6,-6,-41,0,-55,83,-74,-17,6,81,19,-2,25,-64,115,-114, /* [334][0][][] */ 39,2,65,31,-1,11,-99,33,-100,-21,27,-47,38,16,-41,35,11,-19,69,-85,-6,-47,14,-25,-6,27,1,19,24,-59,-27,38,54,-57,-23,120,3,74,36,-11,-27,23,-115,79,-30,38,7,-43,-39,-24,-10,-34,70,-103,-15,-44,-63,-3,9,-37,-66,-6,-23,-8,0,-34,30,0,75,0,-27,79,26,29,75,47,-64,15,-29,-127,5,-6,28,-21,-9,-10,26,-20,-46,-53,-84,-24,15,5,62,66,-5,62,8,21,-22,40,53,-57,-49,-55,32,-50,-37,6,16,-27, /* [335][0][][] */ -19,-23,-14,45,0,-29,-68,93,-14,5,-59,36,19,4,-29,-10,34,-10,55,-101,-16,-5,-12,28,36,72,31,13,-3,-47,39,44,-97,-89,-5,20,-54,47,-14,56,41,-12,-68,71,-28,34,2,84,9,17,18,127,35,-43,28,-21,27,-20,-71,0,-60,29,-10,-7,-16,11,16,62,8,-52,87,16,-3,38,100,3,-56,78,-57,7,-40,26,39,54,74,13,118,-49,4,-26,-14,-7,-14,56,56,28,-103,25,40,-37,-28,-13,16,94,55,15,20,-84,-49,33,0,-86, /* [336][0][][] */ 71,-23,-28,5,18,2,3,-8,25,-42,32,45,25,19,-27,0,24,-39,-57,15,62,23,-19,82,53,72,6,-36,-24,-45,-18,31,23,33,50,2,127,5,-21,-10,5,34,1,-39,32,-14,16,-7,22,53,17,-29,-33,10,27,-35,-17,-29,39,31,27,3,-47,-48,-23,-22,-17,21,-36,38,8,-57,19,29,66,28,67,3,-2,-38,-45,7,26,25,-46,1,-35,-30,-24,-28,-14,-3,52,61,-11,-2,32,7,34,-33,39,20,33,31,9,-10,33,23,26,7,16,-27, /* [337][0][][] */ 21,0,-10,-5,-13,21,63,-75,99,-67,-102,35,-35,-48,31,96,59,85,124,-44,20,-37,-12,85,18,35,-114,-23,-66,82,-47,6,-14,-72,-11,4,-60,-54,-102,8,-59,34,16,-53,-66,-56,-59,112,97,13,-28,-11,50,6,-18,-68,9,-55,-52,81,44,-15,-103,96,27,-13,39,-1,-2,78,-27,-101,15,-60,41,-8,-116,-11,-47,57,43,-114,0,-5,43,17,-55,-108,-80,-38,36,31,-44,112,-68,127,54,-67,-1,3,71,-74,-35,108,13,11,-7,36,10,31,68,41, /* [338][0][][] */ -8,-48,-114,0,-3,27,-64,-3,-55,-90,5,36,32,10,10,-69,-22,47,100,16,58,-92,37,-1,95,33,-54,32,46,-9,18,-19,-38,4,12,-18,-8,10,-31,53,-28,18,16,24,23,28,10,-18,0,-106,31,-43,23,43,-60,-60,13,-3,57,-57,-14,14,-3,4,38,40,-1,-37,62,-87,111,33,-26,58,-13,0,-127,1,-12,0,-8,-25,-53,36,14,11,-71,21,63,5,1,-55,-22,15,-27,-104,11,-1,-24,-48,19,26,36,-25,5,17,76,-54,-50,-25,51,3, /* [339][0][][] */ -24,-5,45,24,21,1,0,-15,-23,-16,-8,10,-9,-22,-35,16,-16,-19,48,-29,22,-25,-12,-24,127,-22,11,19,-20,10,10,-100,-9,6,34,-6,32,-8,19,-11,-28,9,-15,-18,-5,-23,-2,-22,-14,63,-43,24,47,-10,17,-20,-13,19,-2,-6,-50,23,-4,-45,-51,-63,-18,19,-15,-25,-15,20,-5,64,39,14,23,-10,-8,23,46,24,-26,36,-28,-12,5,25,39,-12,3,14,-1,11,31,52,2,-29,0,-39,-1,-16,11,-37,-12,-12,67,-30,-46,-9,7,5, /* [340][0][][] */ -4,63,22,-15,14,-127,-22,-5,-15,-116,-35,89,-38,-5,-34,-53,-2,-75,34,9,19,-73,41,-41,85,22,-88,106,29,-22,21,-30,-25,-61,17,-48,-67,8,49,22,-25,13,-12,32,-47,24,-50,-64,6,25,24,-41,-26,-70,39,-49,-89,23,-15,-22,-88,0,1,2,-71,-27,-24,11,-33,-17,52,-7,-55,21,45,19,17,-73,26,33,37,63,-74,6,-39,-7,-12,-61,8,3,30,-5,20,-38,34,-49,-86,32,-10,-7,12,-10,21,-51,-51,-28,1,-71,2,59,9,-43, /* [341][0][][] */ -48,1,13,-36,-44,-63,-75,48,79,-81,-11,-42,40,18,-2,46,-59,38,-49,-51,-48,5,-102,50,73,43,-9,59,-10,7,-90,87,37,28,-27,-21,-27,-13,49,44,-24,-9,42,-33,16,29,-76,-24,0,-12,-9,27,64,-77,-71,16,6,3,-42,125,22,37,-40,-4,-7,14,-31,72,-21,54,-16,-12,-81,2,-71,-54,-23,37,-6,-23,-34,-31,37,23,2,13,-127,-60,-77,-7,-30,-12,29,45,-32,-3,6,49,54,11,75,28,43,14,38,85,-33,15,113,-27,22,-90, /* [342][0][][] */ 19,21,-65,68,-54,27,-53,26,-99,12,-73,-44,13,48,-15,-36,-90,12,-12,-14,-18,-52,36,-29,-28,26,56,-35,72,-5,-31,-3,59,41,70,-14,37,62,-111,22,21,60,-18,4,7,57,-25,-28,74,20,12,80,-61,23,-48,-12,17,14,-28,8,30,-24,-9,-16,14,-16,-46,74,63,-49,12,-15,-14,46,20,44,80,7,-22,11,-14,-13,-20,-37,-86,12,2,-16,8,62,-33,68,-15,8,-51,-80,40,-58,2,10,94,-2,7,-21,-6,-25,15,-127,27,52,17,30, /* [343][0][][] */ -41,-29,26,127,-40,64,-59,-21,59,2,35,16,-42,9,-2,-16,2,52,35,-42,-32,-8,34,19,71,3,35,-10,-13,45,96,-30,-77,-54,1,-16,59,-20,-54,-24,-21,71,-30,-26,33,47,29,53,-23,-46,14,15,0,-9,-38,-13,48,11,33,-34,48,22,58,-32,-6,-3,-32,50,-35,3,40,-15,-34,92,66,20,-97,35,-8,-30,30,2,-98,10,-38,-20,14,-2,44,34,31,-25,-36,-47,-73,58,-64,2,-111,-42,45,-44,-5,53,19,-11,13,-18,-19,64,-14,23, /* [344][0][][] */ -38,20,-42,64,-22,41,-43,-70,-9,-95,-10,-17,-28,-56,0,-59,-2,-7,-5,-36,-54,3,30,-68,-35,-14,10,1,41,33,-54,-40,-6,-18,83,-39,77,-4,-2,35,19,127,9,58,2,-10,-1,-84,2,8,15,-41,3,5,-38,-3,-41,60,-45,-5,63,-33,9,-42,-3,-39,-94,5,71,90,24,22,-56,76,104,95,-35,36,54,-13,-23,-21,-101,-60,11,13,59,-35,-16,-27,-42,10,71,2,-52,-39,-43,-12,-87,-61,-51,-80,-63,62,-36,-9,72,-29,-4,46,-67,-63, /* [345][0][][] */ -9,28,32,-3,-35,-127,-36,-42,24,-1,14,4,-18,9,13,58,-21,14,58,73,38,-16,11,-3,10,115,-22,13,10,-31,13,15,-51,13,-39,-7,-2,-4,-17,50,-5,-14,50,-6,-40,-22,-28,-4,-38,-53,1,-24,24,-25,37,61,34,-89,-65,49,7,6,9,-6,51,-49,5,13,15,8,-15,-3,-4,-16,54,16,-23,12,-5,12,-46,-5,53,-3,-41,43,-8,58,-43,-63,28,1,5,-11,4,51,-81,27,7,46,35,-36,38,1,-49,53,-28,-5,32,31,5,26, /* [346][0][][] */ 39,2,-35,59,26,-57,-6,32,62,43,-79,-47,20,7,66,35,33,24,7,-5,28,-12,2,83,9,-2,-79,-32,25,-12,1,84,-12,-44,-41,-24,36,-10,47,38,27,-44,-34,16,-56,62,-21,28,18,-41,51,-21,-10,17,2,-7,85,-40,-44,-47,1,37,-48,34,-3,-6,-24,-38,15,-25,-65,22,-127,-13,54,-24,-14,101,16,22,33,12,25,-19,41,45,-26,-9,-50,33,6,-16,-106,-1,-15,-26,1,-52,-59,14,53,58,-37,32,-1,79,-16,-21,36,-27,-42,23, /* [347][0][][] */ -44,44,11,3,-58,-39,52,19,-25,-33,9,25,-64,-23,-60,-49,1,11,-20,-38,-31,-64,20,-59,20,-26,16,20,37,-25,5,-17,0,2,30,-6,11,24,-26,23,24,-7,5,80,-59,28,23,0,12,-35,12,66,41,25,0,-63,-59,43,-70,6,-10,-34,-29,12,33,-26,-6,-1,-11,-27,-19,7,26,39,-12,23,-25,20,14,23,30,33,-49,-54,-44,61,-27,-127,-37,-33,3,50,48,44,-38,6,0,-36,-17,-25,28,-33,34,-40,-11,8,-19,-7,10,49,38,-12, /* [348][0][][] */ -11,-21,-91,-51,-18,9,2,16,-10,-40,-2,-20,62,42,-20,25,14,1,60,-14,-5,-14,-43,29,5,56,-78,-38,88,6,-81,51,-11,-53,12,-34,19,-13,-12,29,65,-77,-43,20,-50,-61,-2,9,72,-37,43,71,-48,37,-10,25,0,-6,-124,54,84,33,-37,-46,-18,-40,-29,9,-33,-10,7,-127,-37,-70,39,43,45,-32,-50,-3,-6,-11,-17,22,-39,67,11,-63,5,-92,-40,-29,-22,-22,-64,-8,30,-43,70,0,-55,33,42,55,49,30,-48,35,64,-6,53,-31, /* [349][0][][] */ 2,62,14,80,-10,23,21,-41,18,48,-57,-55,10,-20,4,-95,13,-82,-22,-94,-64,32,25,-13,-7,-74,-107,0,-13,-6,-4,-26,-8,126,76,84,100,88,-7,32,44,32,-7,45,-16,43,-19,-42,-3,109,-115,-6,30,-63,0,-57,-88,27,-26,-27,-6,2,19,-21,50,-47,-78,102,100,-11,-17,3,25,-10,64,9,-12,56,70,-35,29,1,-100,21,-28,14,31,26,-60,7,-52,112,127,-53,-91,-78,35,-109,-61,-6,16,-123,101,0,-42,58,30,-56,11,3,-61,54, /* [350][0][][] */ 14,15,-39,41,46,25,31,-82,29,5,-37,-61,-3,11,20,-94,-18,79,-23,10,-31,-13,-57,-5,-13,-29,44,56,11,35,-17,-23,43,39,45,73,-30,7,-5,-25,-63,10,-9,-1,-83,71,65,23,-71,-14,61,35,-34,15,-60,-14,-49,-24,12,-11,11,14,-50,-26,-42,8,-82,43,-28,-70,10,74,3,41,-44,9,-106,43,-86,-2,106,24,-57,65,13,-39,-15,33,24,-28,-25,-57,-14,-3,-40,-43,-12,-48,-127,16,35,-4,-11,-35,-40,59,69,-16,-29,45,-35,63, /* [351][0][][] */ 5,-9,17,3,18,52,-80,26,-78,-73,13,5,-18,-14,-122,14,-127,9,83,3,16,-73,-83,4,64,-18,-32,81,-6,-10,86,-36,-24,50,-87,-46,21,68,-6,74,-35,6,51,61,-70,22,-4,-6,47,37,44,35,-39,-63,57,-47,-21,-58,-10,30,45,4,-51,1,29,12,16,65,67,-63,121,-54,67,-16,84,-11,-40,37,41,-86,-6,-15,-113,72,-98,-13,-1,25,22,3,-16,-22,45,-61,81,-65,-37,41,35,-11,34,35,-55,18,-3,35,11,-120,38,64,2,-64, /* [352][0][][] */ 78,-61,-48,-16,-15,43,60,-91,46,-38,-14,-9,18,10,94,127,56,72,-16,39,21,-20,47,63,35,22,-44,49,-39,62,23,59,2,-11,-84,31,2,5,77,-86,1,-52,41,-33,-32,-30,-75,7,82,41,-11,15,-6,-22,-54,35,11,-11,-1,24,-21,24,79,57,23,-45,-45,18,13,65,37,-21,-54,-56,9,-9,38,23,0,-18,45,-19,-8,-23,-40,-5,-12,-91,-40,-34,-54,-77,14,29,35,21,25,-25,-35,-27,-53,-22,-48,0,30,28,74,21,20,37,29,33, /* [353][0][][] */ 68,35,12,-66,-81,3,35,-9,-38,-64,-43,97,-83,26,58,24,9,63,5,24,-45,-63,-20,-6,74,45,53,-25,-30,71,75,-118,-19,-27,59,53,-21,13,-98,-35,-58,12,-13,-38,-77,22,21,1,13,21,-48,8,-27,-32,-24,-8,-68,34,-127,40,29,21,-29,7,21,-72,-1,84,39,45,-19,-44,14,6,2,82,28,66,-34,33,32,4,3,88,5,-17,-23,-41,-17,54,12,57,72,11,29,56,11,25,22,-13,-65,-16,-110,-50,-24,29,51,-117,13,38,70,55, /* [354][0][][] */ 80,-28,-26,-14,21,16,53,-35,25,21,-24,-34,12,74,48,52,-45,2,22,-5,10,-94,23,-14,30,-19,-19,30,-16,17,12,-4,2,-18,-31,15,-1,32,74,-24,-70,-3,24,-19,-19,-39,6,-74,-1,23,-1,7,-24,-21,-78,-34,15,7,-53,-111,-7,67,38,-1,34,-59,-59,-10,-36,-83,127,12,-49,-25,76,51,-23,-12,-62,11,23,-4,-4,49,35,-19,7,-51,32,-26,-27,-39,-9,31,53,-46,-21,-61,-9,-79,-18,-50,-13,44,-26,8,78,-38,-69,15,-9,51, /* [355][0][][] */ -11,-54,-30,80,-17,50,-24,26,20,-2,-12,-15,-2,28,71,-52,1,25,16,14,10,-24,29,-4,6,-93,49,30,62,10,28,-26,-44,14,3,-18,25,53,-60,-43,-20,8,-28,26,21,13,19,-38,-4,20,31,6,22,12,-62,-28,-18,-38,48,-127,2,-34,-41,-35,17,-40,-36,45,43,-26,-38,-28,-84,85,-9,54,17,45,8,24,-28,7,-72,30,5,-94,-34,77,63,17,-6,-22,-7,-64,-3,45,9,-8,-25,1,76,28,-15,103,-41,-27,53,-38,29,23,-1,-57, /* [356][0][][] */ 123,-41,-74,29,3,-34,81,-33,82,-21,-27,-8,95,-21,0,34,84,-62,27,12,104,17,58,66,89,30,-70,30,13,24,33,-54,41,-49,-30,-20,84,30,-41,-51,7,-72,-40,-13,-79,-57,-127,-7,32,52,-45,57,-6,70,70,-72,51,-1,-25,-57,-35,106,18,25,-95,4,-12,-39,-21,-49,47,-35,2,50,-16,26,102,109,-26,-82,60,41,-10,49,-26,32,9,-64,33,71,109,-121,16,-42,10,-34,22,-112,5,69,50,-23,22,-17,-7,-23,8,47,107,38,34,34, /* [357][0][][] */ -20,-5,-55,6,78,-100,40,11,62,66,54,19,15,51,21,-40,11,-27,3,45,43,8,-14,-39,40,50,-30,80,-43,-7,-26,29,-63,-35,0,-88,-1,-4,33,3,-19,-18,-67,43,30,22,-29,1,22,3,77,-52,-21,-22,44,45,18,-75,-44,35,39,15,7,32,-74,-19,-38,-38,-69,26,2,7,-31,-54,91,8,24,65,43,-42,-4,-62,14,-31,-41,43,-29,-33,17,9,-51,-93,-54,-22,45,-17,-56,11,-14,-4,92,42,7,24,-7,36,49,-45,18,-27,119,-127, /* [358][0][][] */ 26,27,24,28,0,-16,30,40,-2,-45,1,31,-29,12,-39,-45,12,-63,-24,-8,21,14,15,-7,-11,-42,30,39,14,-36,56,-18,-18,9,31,19,43,25,-51,15,-45,12,8,7,-25,13,-30,22,-14,18,-9,-34,-24,-29,-88,-49,-74,9,33,34,-7,-19,-36,-11,2,-35,-6,41,46,-5,2,12,36,16,107,20,74,-13,-27,15,-20,2,-127,77,-88,36,37,-3,-5,-72,34,30,92,16,12,42,-46,-8,-39,21,7,6,10,-22,-50,-64,-15,-57,30,72,-24,-84, /* [359][0][][] */ -35,20,-77,-64,-79,27,79,-105,27,-43,-45,-44,-16,37,-14,75,18,3,20,65,-19,-73,9,91,35,50,-68,0,-10,-17,-49,3,3,14,44,54,-37,-30,59,-56,-20,8,19,-1,4,-25,-9,-51,32,-3,6,-41,-11,-58,-18,-59,100,22,50,20,-1,83,-4,-51,-26,-72,-44,-24,-64,127,59,-81,59,-32,54,27,-7,56,55,21,-6,-24,19,-50,6,18,-88,-15,-21,-11,-37,-32,-97,97,-7,15,36,40,41,-12,-18,11,17,74,-60,20,-3,28,-2,30,-21,4, /* [360][0][][] */ 18,30,-75,127,43,-6,-61,-6,-4,-11,-45,72,51,-34,-1,-1,-2,6,35,-11,-22,-27,35,94,-3,-43,7,41,24,-11,-38,-22,-50,-6,-28,-61,21,-38,-105,-3,41,32,-33,31,21,11,82,-45,-10,-14,15,42,38,-22,-38,-8,-39,44,11,-24,47,56,7,-16,-4,-6,-15,45,22,6,24,-16,5,22,-18,35,-51,2,27,-35,7,-20,-76,21,-6,-7,73,45,5,95,-36,16,17,-30,-13,-29,44,-38,-62,-49,-51,-62,40,60,13,-57,31,-11,-4,29,36,-7, /* [361][0][][] */ 50,-28,-24,66,-63,-12,-26,-9,-64,-56,-25,17,10,-38,-24,-16,29,-28,25,-45,-52,7,-46,-41,46,11,19,-2,23,-57,27,-31,-5,-25,21,28,-10,47,-28,-16,-28,11,-2,33,33,43,-32,-11,22,2,32,-31,10,-10,-40,-82,-29,-42,57,-45,-15,-7,41,12,-16,-18,-9,127,-19,-39,11,-50,-47,-26,-17,31,10,-15,-15,29,32,13,-18,-30,-20,-11,26,-3,-4,20,7,62,4,16,27,-16,1,-67,-12,24,35,23,18,13,-24,-1,18,-16,-8,-37,-20,-42, /* [362][0][][] */ 4,-40,-4,-61,-5,-5,-73,-28,103,-127,-73,50,18,-59,-36,-9,-103,104,48,-15,-9,-78,-93,2,63,-51,-28,92,65,-24,-49,-8,23,-15,25,60,16,29,-47,-72,65,-14,19,28,14,77,46,54,16,66,-27,18,-31,-68,-44,60,-27,-47,77,-97,0,1,-78,-39,35,-88,-48,29,72,-7,-9,-35,-23,113,9,42,62,-27,-63,32,88,96,0,20,28,-86,51,-45,-69,10,-34,14,55,32,-115,38,0,42,14,-76,12,5,-6,54,-93,-48,32,40,51,25,-21,-19, /* [363][0][][] */ 11,-64,34,66,-43,46,25,-4,81,-46,-34,-35,18,85,-25,42,36,-35,31,21,11,-69,-82,45,41,-42,-63,24,76,-20,95,-18,-114,-6,-27,-46,61,9,95,92,5,13,27,-41,-37,1,-4,11,111,-67,41,-32,23,16,-35,-35,-15,-36,-20,-6,49,16,47,60,-56,93,34,-78,61,-50,22,75,-118,-32,-74,-18,-21,127,46,47,-42,-119,-25,-27,-102,-24,-93,48,5,-29,46,-41,-73,-55,-57,-40,-12,0,-15,-42,61,68,114,48,110,59,27,-78,6,-66,13,47, /* [364][0][][] */ -3,-21,9,1,-14,5,-34,6,-62,5,-14,9,-3,-5,8,15,-40,12,43,23,51,-67,-60,-51,-7,-73,46,27,-12,-22,22,-54,-27,-3,-37,-21,-22,22,-37,43,13,15,-33,-8,8,18,-5,2,60,9,29,127,-35,-58,-58,34,11,8,12,20,17,23,-5,8,-14,-2,-47,5,27,-27,20,-13,-24,35,-20,-2,30,67,-15,-72,-7,38,-90,38,-18,-32,50,55,-27,-9,-21,44,12,-23,30,-29,34,-30,-25,9,59,-14,-29,32,-31,-22,-24,-94,20,16,4,-15, /* [365][0][][] */ -3,-54,-97,5,-127,34,-56,-13,-13,8,-26,-36,-45,21,18,24,-33,-83,-25,-50,-14,22,26,-33,23,-76,46,11,13,-50,38,-29,-16,0,-63,40,60,-12,-11,48,-11,29,-76,-15,5,13,-8,36,20,-53,-35,-20,38,-68,-30,-78,-86,54,45,34,-3,-89,-11,-29,5,-17,43,11,33,-45,-27,13,-22,-34,-50,37,39,-11,-46,-2,28,-55,-48,59,-17,1,59,-2,73,-47,0,-14,-33,-34,16,39,-33,-54,-21,-54,-49,4,75,55,9,-73,37,-25,25,39,-19,-1, /* [366][0][][] */ -69,71,28,56,-71,-45,-21,90,49,-43,-14,60,-127,-3,26,35,-40,69,26,13,10,-46,96,-7,36,28,35,53,-42,-43,-2,-58,-57,7,-29,-15,-98,11,-50,-62,-28,45,32,11,7,31,76,21,-46,7,-39,79,0,-46,8,-27,-16,11,-18,33,53,38,-26,-11,64,-69,-58,56,-30,-78,-25,44,21,-7,60,5,-14,-29,-15,-8,-50,-69,-100,-8,-12,49,20,-43,-109,14,-37,3,34,-13,-65,10,-22,38,-22,-47,28,39,5,80,-76,40,78,-83,4,64,12,-95, /* [367][0][][] */ 6,45,-18,9,21,-25,-46,-9,-57,-21,-12,-40,-25,24,1,-27,-16,125,54,-39,36,-30,-28,-16,-19,33,-18,52,76,41,-13,-28,61,-32,56,28,64,-16,22,37,3,56,-20,63,-82,73,36,9,-57,12,-32,-50,-60,-51,-32,21,-25,-18,6,-127,95,-9,-100,-38,60,-20,-75,45,58,-43,12,7,-54,28,111,36,-28,15,-5,14,-49,69,-85,26,0,35,-13,-8,-10,-25,-20,-13,-6,45,-10,35,-21,23,-64,-7,-57,-8,-2,-12,21,4,48,4,24,46,-83,-22, /* [368][0][][] */ -57,-30,-17,52,-13,7,36,-127,-27,-13,-51,36,-44,76,-55,-35,-35,23,-67,-50,65,-15,0,33,93,116,-58,0,3,31,-110,-63,52,15,28,-22,-1,-70,60,-5,-52,-1,51,-43,16,2,-9,-61,76,12,21,42,18,22,-39,38,-46,-50,38,51,37,-79,-101,21,-41,-53,-105,-65,-75,15,-15,77,67,-16,53,-20,-35,45,1,-29,88,-56,-72,13,-69,106,-117,-46,-8,-43,-41,-28,2,31,38,75,27,-57,-8,66,32,-20,-32,-22,-17,35,-47,86,85,-37,-2,-83, /* [369][0][][] */ 58,-30,-72,15,-38,-12,-30,-44,-15,-71,-97,47,9,-22,18,-28,-75,1,36,28,13,-65,103,76,28,-81,27,91,23,-38,-81,-9,-104,42,-13,4,44,-31,-90,45,-67,28,-14,-39,-127,81,28,2,-24,-20,81,60,22,-27,-54,-30,-7,30,108,-6,-43,-43,-9,-14,-84,22,-48,-16,66,40,12,93,-79,33,-109,42,-49,-11,17,-6,-5,5,-41,29,61,0,-89,-71,45,5,40,-80,-84,18,19,-66,-18,-29,-26,-89,-3,-23,-55,28,-69,-119,-5,-79,8,54,-7,83, /* [370][0][][] */ 18,43,-7,-56,12,-24,-18,-29,7,-79,-27,-79,-74,-34,-32,-52,-71,-41,-1,-11,61,-62,-9,-64,73,-110,-32,10,-25,7,100,-64,34,-24,-2,-29,-61,-78,-120,45,15,75,14,-38,-17,34,2,-16,23,-19,-12,29,-12,-35,25,-60,-29,54,-22,-72,77,-33,-89,23,-2,48,-56,23,6,-127,62,16,-39,20,-4,36,-19,-47,18,-2,-36,-12,-33,-61,-55,-20,-18,-73,6,-71,-2,-56,-60,64,-27,-44,-46,-35,6,8,82,34,10,17,25,-3,42,-90,12,87,-6,-62, /* [371][0][][] */ -9,-45,-58,-11,-27,17,25,-56,-13,-86,32,103,13,18,10,5,-23,80,-14,-78,-59,-25,-2,0,74,-27,-40,-27,-39,52,120,-45,-2,-16,127,-34,-77,-23,-17,17,-85,43,38,-50,-20,37,-25,-5,29,-11,-44,-114,25,-48,49,-47,-2,60,-23,-44,6,26,-7,49,-2,-1,-21,20,-44,-40,101,-16,6,3,27,34,-38,-18,69,-15,1,11,14,-26,5,39,-69,-56,16,-42,16,1,62,6,48,3,-52,-3,-20,-26,23,-81,49,91,28,-9,26,-58,-42,11,41,13, /* [372][0][][] */ 53,12,10,-49,-54,35,-16,24,83,5,-80,42,-12,-21,35,-53,-21,-5,6,-10,40,103,55,-16,44,2,4,68,56,44,-7,-16,-6,44,25,1,47,28,-79,-12,81,127,-27,51,-55,64,28,9,-1,57,16,24,-1,-78,-66,-7,-22,40,48,-19,14,56,-43,-70,29,-19,-39,-21,-25,-49,-58,42,-38,74,55,-36,12,-9,17,-6,23,65,3,38,-38,-36,-7,-23,-7,34,-15,44,-2,-20,-24,4,-35,25,-65,-78,4,1,69,24,-28,2,8,-66,-14,-4,4,23, /* [373][0][][] */ 25,-39,-14,-10,-59,-10,16,25,31,49,-80,73,6,-29,-70,17,-70,22,-44,49,-44,4,-26,47,46,-60,11,26,79,-10,29,-127,-53,-73,-94,66,55,-38,-52,14,-54,-9,22,-3,42,52,66,62,-28,90,34,5,57,-30,52,-94,-6,-36,-7,17,17,66,-24,7,26,-93,77,20,22,-53,-42,65,15,14,-61,21,-5,70,-59,11,-3,83,-60,82,-20,-25,-4,-95,-10,97,-44,-39,-8,16,65,62,-126,-14,1,-102,-21,-28,21,12,14,-20,76,-67,-66,55,-39,37, /* [374][0][][] */ -23,-24,-44,-39,-36,-45,-54,40,-1,-14,-12,63,20,-57,-80,-11,-113,10,50,-52,24,-23,-1,58,8,-8,-13,38,-11,12,33,-16,-48,-38,-44,-44,-51,21,-30,40,-16,39,68,28,-76,4,-7,-27,15,23,14,83,-21,54,-99,0,68,-19,-21,2,-51,16,30,31,46,25,-14,-25,85,-2,-25,-58,17,68,-44,38,-64,34,-74,-30,-28,3,-59,2,27,44,48,17,-9,27,-32,52,8,45,16,-127,15,-77,48,-67,76,-67,47,49,27,43,-40,-16,19,87,-14,28, /* [375][0][][] */ 90,-88,35,-70,44,-28,8,-19,60,0,65,46,52,-47,-67,-1,25,-75,-47,-8,46,45,-74,-11,-31,12,32,39,-19,79,-22,5,11,-38,-66,10,61,-70,18,-41,-33,-74,5,43,-27,-17,-11,-49,42,-20,56,50,-3,67,-56,-6,-25,-58,-127,68,-45,-58,-18,104,-41,-40,-74,23,-34,27,1,47,-39,-59,62,4,3,110,46,-12,-53,-31,-35,-11,-25,9,-20,-111,-50,-87,-44,2,23,13,56,60,-1,8,-25,55,42,6,-22,-70,18,38,-18,43,-22,-22,45,-20, /* [376][0][][] */ 88,-109,-6,-16,9,24,-114,49,20,33,-20,-40,13,118,-109,23,-9,-4,-14,-55,34,-14,27,46,60,29,-81,110,88,7,-55,-3,-5,51,-87,26,15,42,60,-35,36,-23,15,-53,-8,-127,7,-77,124,-16,-8,-2,-20,6,9,57,17,-12,9,19,28,28,-63,-48,5,17,-30,3,-51,34,-10,-4,2,2,47,-64,41,26,8,18,53,-66,-31,-95,-65,-29,-32,-17,-50,-62,-64,-70,-10,59,14,22,54,24,20,-33,-4,8,-58,-61,35,-26,28,67,36,-20,-50,30, /* [377][0][][] */ -53,-2,29,-17,-61,-39,33,20,3,-24,39,-5,-58,109,-23,-1,-24,8,48,-57,-13,-16,68,-30,63,35,-15,80,48,127,-55,14,-55,67,-51,39,-97,81,-20,-28,37,46,49,-3,1,-22,32,51,45,34,-88,25,8,-15,-40,35,0,51,-9,-127,28,31,27,-43,-12,-63,-2,63,-18,47,63,-12,65,11,19,39,-43,-40,17,14,39,33,-73,-48,-1,69,-37,-14,8,-49,2,-75,1,10,-71,-74,49,-29,-13,36,-10,1,76,9,-9,59,63,-54,10,39,5,-89, /* [378][0][][] */ 46,-6,18,72,38,28,34,2,-17,-9,3,16,35,-15,-34,-10,-53,9,68,44,15,-52,-43,5,-12,-7,127,28,11,-3,19,-51,7,16,3,45,-67,11,-37,-28,-56,-12,9,-12,-25,-19,55,-28,19,-16,39,13,-1,-4,-22,-14,14,-6,-5,44,-71,16,-19,37,-33,-16,-37,33,52,-24,48,-39,8,-30,-59,5,26,-14,-9,-22,66,22,-89,59,-21,-11,17,59,4,-20,-32,39,44,36,-13,-40,68,-9,-24,-3,0,-18,16,4,-34,-24,-11,-36,-26,43,-14,-42, /* [379][0][][] */ -24,82,3,-13,-75,-6,81,-22,6,5,-101,-11,-15,1,-22,-43,-25,73,-15,-27,-91,-33,-32,-61,40,-22,-9,48,13,91,44,-68,-71,-34,-22,52,23,-8,25,47,-3,-14,-75,-71,-18,-15,83,-14,97,31,-51,69,-126,-58,20,-60,-89,-49,-14,-29,6,24,13,-66,29,-33,-16,11,46,6,26,-41,-103,-18,6,4,-27,85,3,-77,75,36,-111,7,-53,-127,-10,13,16,-106,-25,39,-39,51,-19,-63,50,-21,17,-49,39,32,-17,-64,-23,-17,1,-49,-75,1,-61,88, /* [380][0][][] */ -100,72,29,-56,-34,9,-38,49,64,67,3,45,44,84,-16,36,18,-69,80,-35,46,-51,16,-92,-40,-61,127,38,87,42,92,-51,-11,-93,37,43,-81,-13,-58,-1,-36,108,-86,-17,-3,-20,5,30,6,-30,-36,38,45,52,-34,-100,-2,27,-19,-47,70,53,-30,57,-6,-14,19,10,-120,20,66,-76,0,3,6,109,-44,29,-26,-67,23,-12,8,-4,41,54,-36,-12,-36,29,12,25,42,41,-7,114,10,-13,-69,-44,31,6,-2,11,-5,-49,-24,-29,-78,41,-16,-117, /* [381][0][][] */ -77,-39,-80,-36,1,-44,-3,52,84,-48,-71,127,-82,32,3,35,9,6,17,-55,-19,-37,10,36,23,-41,36,75,59,16,106,-29,-15,-75,-59,39,-56,26,-24,104,59,-25,15,-67,-2,-8,93,58,29,-2,3,30,-39,48,16,-35,-60,15,-63,6,-1,-87,6,49,-62,3,54,56,91,66,54,-34,4,14,-17,39,15,20,20,-124,-25,-3,31,16,101,7,126,-46,-64,14,-47,-6,43,59,54,-29,-121,8,-54,-54,9,-20,-4,-29,-7,-53,23,-76,-59,30,34,10, /* [382][0][][] */ -2,17,-15,12,-2,11,4,-30,2,35,-71,35,5,60,-27,25,-12,-22,57,-17,-40,-69,-9,-38,75,-15,11,22,-11,-48,23,-69,-43,19,29,-22,16,13,-3,4,41,-10,-127,32,-42,38,43,-20,-18,-24,27,-38,18,-31,-7,32,-9,-5,8,-3,32,-27,23,8,0,14,-44,7,-19,10,10,50,-2,34,23,45,-42,-26,-50,5,24,-7,-1,20,-47,-22,12,8,30,10,38,-5,11,-51,-27,24,-51,13,-29,-11,19,2,-17,69,6,27,26,-3,7,3,84,40, /* [383][0][][] */ -14,-2,25,39,-2,31,-20,-44,-32,-17,-32,34,-5,25,-27,-37,-5,-34,40,-3,-22,24,-37,-12,29,49,-5,-44,-21,-1,72,18,14,-14,47,-36,20,19,-18,39,-6,4,-68,-32,-55,64,60,16,-38,40,10,36,-27,15,29,-20,-61,-5,-6,-11,-94,5,31,-44,27,-40,7,36,-20,-27,52,-28,19,76,53,53,-35,4,-50,-60,21,-19,-18,25,-127,32,29,-19,-34,26,47,-87,48,-44,-53,-46,-20,-11,-40,-32,60,-1,37,-16,-32,50,32,-63,-27,-56,25,12, /* [384][0][][] */ 30,-48,-53,-61,4,91,-21,14,0,-1,-31,86,17,16,-37,-55,-41,110,30,46,78,-46,-33,31,-32,-111,-11,93,-18,-3,-3,-39,-107,-55,18,10,7,-12,-48,-38,-45,67,26,75,109,80,63,74,36,-66,-67,61,-27,25,-11,-95,34,-71,51,-9,-8,15,-33,20,-30,-58,-27,9,29,-51,50,37,48,44,-46,7,14,90,-66,-66,-18,-25,-98,114,-97,-11,11,36,32,-14,35,25,2,-76,-28,9,36,44,18,-124,-25,51,127,117,-1,-42,87,50,-52,32,71,-22, /* [385][0][][] */ -26,-38,44,-1,-108,-127,-72,30,70,4,-74,53,-76,-47,17,69,-11,-101,0,-102,-19,-67,17,19,56,-21,5,19,13,-2,-10,-63,-38,3,-33,-39,-104,-22,-61,41,88,20,60,66,-56,-30,50,66,-22,37,-5,44,73,21,20,22,-20,76,73,-45,-52,-43,-33,-1,14,-39,43,-13,30,6,-35,-20,2,61,-18,80,-64,-22,8,-120,-77,30,0,-36,-8,119,31,-23,-50,-21,-53,-36,34,10,-8,-16,-47,-14,28,-19,34,-14,39,75,-19,-50,44,-4,-88,89,-29,42, /* [386][0][][] */ 21,-55,-43,37,38,-8,-27,53,-1,52,-42,11,-40,2,-68,-27,28,64,53,27,-55,-43,81,2,-33,-83,-22,34,25,41,-35,-15,-42,-72,6,85,51,27,15,8,14,-26,-77,40,-28,31,-17,93,26,-6,36,-5,-4,-55,-22,6,-18,-6,-14,28,9,-54,-21,9,26,55,45,-1,95,17,20,1,-5,113,13,-12,-99,13,-47,-21,62,-48,-59,-1,-18,61,-9,13,-34,-67,-52,-31,-57,-31,-55,-29,-58,-37,40,-31,41,-22,47,80,0,55,127,-41,-30,36,31,42, /* [387][0][][] */ -21,-33,-60,-13,-51,-10,-40,-41,30,23,-49,12,-46,4,0,-41,12,54,-38,6,-37,-5,5,-96,-13,43,61,25,-30,4,-62,-100,75,-44,127,99,10,60,2,-20,-54,7,-43,17,-105,90,-7,-37,0,-43,127,-6,47,-49,-58,-18,1,-12,31,0,-66,17,18,86,-38,-10,-92,23,-36,33,40,36,-51,-3,17,48,-35,-29,25,-125,27,48,21,-9,-54,-32,45,20,-62,-17,-64,10,-18,15,-15,20,-10,21,-121,70,-15,-51,-7,34,-105,-104,107,-11,-59,-53,21,57, /* [388][0][][] */ 22,-44,-28,20,35,-18,37,-19,45,-69,-28,-34,23,3,42,7,38,-55,66,53,46,20,-76,75,84,24,55,90,15,-13,36,48,-119,-25,-42,-26,-38,29,-25,-47,-86,-68,-22,-40,75,-25,-49,41,-38,-5,7,-5,54,5,30,24,60,-45,-14,12,-5,9,-10,-34,-70,-48,-67,7,-58,81,29,-20,-127,-53,-26,39,-41,95,16,40,-48,-38,-24,-65,-35,6,-30,2,-34,-8,-41,51,-107,0,-25,49,-46,-40,57,-1,32,48,-46,-29,-43,13,-2,-1,14,33,71,-4, /* [389][0][][] */ -21,-9,-9,-8,-80,-4,-56,55,80,0,-68,54,-81,7,15,73,-57,-5,64,19,-19,17,-31,-37,33,-50,-35,47,127,46,21,-91,30,25,-51,-39,-66,71,-25,-20,-73,118,-71,-79,56,-11,100,44,52,-60,34,11,11,-69,1,-102,12,30,-7,-78,15,-102,23,-63,-55,-103,-4,94,-7,-34,68,-11,-37,4,-79,-7,-30,-46,-48,-24,13,-31,-93,-16,12,54,24,78,8,81,-25,26,30,-26,-89,43,-21,78,-84,-57,39,66,72,108,0,2,27,-21,29,14,19,-63, /* [390][0][][] */ 21,-8,-13,31,-20,49,25,23,41,50,-9,-49,43,53,-33,-50,-42,18,-28,27,75,63,-36,51,-1,61,-2,24,52,-13,-22,-35,-33,3,-37,-21,1,39,4,66,21,-23,-32,21,36,30,5,5,60,-24,53,63,-10,59,46,44,3,-127,0,74,-27,54,31,28,-19,-1,-37,-17,23,-49,8,-42,37,15,-31,-21,12,-3,-42,-25,5,-35,-6,-34,-16,105,-7,45,-46,-3,0,11,-47,26,2,48,-56,-55,-41,-9,30,-13,42,13,-29,69,-8,-6,35,7,-50,-12, /* [391][0][][] */ 62,44,-35,-12,2,-98,6,-47,68,17,28,23,21,-25,53,-26,49,-25,-32,-18,19,-26,43,-50,56,-39,-81,44,34,100,-10,10,-8,-53,1,-75,58,-38,-32,21,76,-21,-2,12,13,-55,-51,1,73,-56,-52,-45,34,26,11,-51,-20,-101,-112,14,-23,35,-65,32,-89,16,-28,-62,43,33,-8,-89,-60,-6,56,-30,-15,-3,102,35,41,-22,4,-57,-23,65,-71,-45,-29,-64,46,49,17,-9,-127,55,-8,-19,-53,20,94,-21,-48,53,26,59,22,25,32,-13,-16,-15, /* [392][0][][] */ 67,-7,-11,-12,19,42,14,-25,67,24,-48,22,108,11,0,29,-4,-1,28,1,37,9,8,24,38,15,-55,62,4,13,-36,1,4,-4,73,-51,32,-38,12,29,25,15,-50,-6,-52,2,-30,-25,-3,-7,-55,-9,24,31,84,-15,-14,-30,-71,-11,-40,92,-45,40,-127,28,-15,-38,45,23,-16,-14,-11,1,-4,-33,12,62,-20,31,13,-53,7,0,-65,23,-50,-6,-8,0,69,-57,10,-11,17,-8,50,-48,4,-1,58,10,-39,21,-53,4,-10,49,25,-55,61,-29, /* [393][0][][] */ -24,-41,-14,0,10,-10,-56,38,26,7,5,-10,10,28,-29,-23,-22,30,70,-22,-7,-29,-30,15,-6,-41,9,87,12,46,1,4,18,-8,-1,28,10,-16,-36,-48,12,3,-37,41,6,13,127,5,-37,-24,31,64,-34,-87,-22,11,28,-61,-31,23,-26,23,-34,18,-26,-16,-49,7,-17,20,32,17,-45,16,-26,8,-24,-50,20,2,37,30,-41,86,-51,-105,11,30,18,3,24,-16,36,-52,-34,16,-89,13,-35,-14,-27,-42,11,3,-14,41,36,-22,7,33,-13,-13, /* [394][0][][] */ 0,-18,-6,41,-45,13,-12,-44,34,9,-18,10,127,11,25,26,-20,11,5,-69,-26,-53,4,23,17,41,-23,-20,-11,37,62,23,15,12,-8,-25,-5,-54,35,34,21,45,33,-18,-85,36,41,4,-30,-8,-11,-27,16,21,6,29,-23,32,-19,40,18,92,-32,90,-8,-45,-22,43,-86,21,49,1,-9,-23,24,-28,3,58,-24,28,-17,25,-15,24,-39,28,-18,-22,13,-3,23,-60,-33,-27,40,12,-73,28,-4,44,15,-25,-5,-5,-93,78,-41,-13,33,53,22,-21, /* [395][0][][] */ 72,18,22,-9,14,13,-42,-2,-43,34,-30,-38,-20,41,-33,27,-57,15,45,41,-85,33,-9,-59,26,71,47,-33,17,-18,32,-74,-31,-14,-11,6,-34,94,-19,-52,-4,66,-73,68,5,-8,-18,-1,38,-52,-19,-3,-48,0,-27,28,-16,-24,44,8,-5,-48,33,-12,77,-33,-52,97,81,-22,25,-87,-17,54,-12,-11,4,-58,-19,-33,13,12,-50,-60,20,37,-38,-40,-79,-38,3,-43,78,62,24,34,-21,4,54,19,-9,-127,42,85,-49,-16,47,-4,42,93,-76,-8, /* [396][0][][] */ 6,-15,-3,-10,-83,-38,8,14,30,1,-14,44,-51,-49,-47,-11,19,-17,64,27,-43,-25,14,-38,-3,-102,-64,16,26,65,2,25,-25,32,-68,9,-73,-26,-127,42,11,73,-60,-18,-3,16,69,10,2,-9,56,14,45,27,-5,-27,32,1,44,-70,22,-101,48,-1,-13,-9,-28,-24,0,-24,1,-62,-7,2,-3,18,-2,-33,-44,-102,-23,23,-14,-9,-24,23,-26,0,15,21,-6,9,16,11,-34,-47,-81,85,-24,-125,13,18,65,-14,14,-11,-1,-12,38,36,43,-5, /* [397][0][][] */ 49,-15,-13,-35,30,73,16,-10,88,-104,-40,-98,45,66,-24,31,81,-33,37,43,51,43,12,59,2,45,-45,64,33,-12,52,-4,10,-15,-40,45,-32,-6,-22,48,-47,-11,66,27,18,25,-64,19,51,-50,-5,8,63,38,43,-56,-65,-52,32,124,56,-63,-13,-10,-21,35,20,-56,74,55,-74,-43,41,91,1,83,-22,38,62,-54,1,-64,16,-37,-9,88,-31,49,0,-49,-55,-1,-60,45,127,4,26,38,-3,-53,35,-100,-2,-44,-79,25,-14,30,7,39,35,50, /* [398][0][][] */ -6,29,-71,72,-23,25,-25,32,45,12,-29,46,20,-4,57,-49,-12,-36,113,27,-38,-95,34,-42,23,-28,38,25,65,54,-60,-36,-43,-18,71,31,-32,35,-25,16,-50,6,-102,21,-107,27,10,-100,-102,-62,39,27,58,73,-35,7,-5,-66,6,-26,-116,66,9,8,-82,-4,-83,7,5,117,-30,-15,10,10,-19,13,23,-18,-60,-51,6,62,-40,84,-20,-70,54,-15,18,-8,18,-86,-3,-47,-32,-10,-56,-3,6,42,2,-127,13,35,-3,-1,-29,-23,-64,9,65,2, /* [399][0][][] */ 5,6,11,48,-24,-29,30,-71,5,18,-2,18,-5,2,25,45,66,-1,93,14,7,71,-30,65,-19,63,7,-23,36,-6,-41,15,10,8,21,-26,10,13,11,9,10,9,14,17,16,-25,-28,-21,-10,-21,-46,5,-14,-47,28,-30,40,-31,-16,20,20,16,3,21,-5,38,10,22,21,-3,81,-35,-34,-21,32,17,25,74,-8,12,27,-7,-13,-1,-29,9,8,22,-127,-3,-7,-11,7,34,-32,42,3,-28,4,-30,-16,-11,6,3,22,8,101,-21,68,-12,-45,31, /* [400][0][][] */ 70,-2,11,-12,6,14,-35,-15,-29,2,10,-50,17,67,-9,6,-86,21,33,58,-42,-51,-58,-1,-10,-10,-29,-19,-26,17,31,-39,-36,-40,-59,-20,-14,50,-10,51,-22,20,14,23,-6,31,18,-19,46,-47,-77,34,-87,63,-62,17,31,33,-39,44,-13,33,9,-44,127,-75,-88,26,37,-16,71,-30,-45,1,28,24,-30,65,-81,13,-2,-48,-51,-9,29,-47,23,18,-6,-6,-23,25,-20,18,-39,36,-6,-8,-47,-43,-10,-14,32,20,-88,0,36,-30,20,-36,-41,42, /* [401][0][][] */ 37,-73,11,41,10,7,-21,-26,45,36,2,-11,-13,41,-25,55,26,-29,-79,-58,8,47,66,69,33,20,-29,15,45,66,-93,29,35,54,-52,7,50,-53,47,-39,-78,-45,-22,-16,-48,18,-52,38,82,-42,-67,2,-28,7,19,-8,19,20,-37,-1,-22,-29,-27,34,-25,-36,-82,25,21,22,-99,2,-28,-74,20,-47,-13,58,25,-88,7,-24,-10,-58,-59,-21,-46,-35,-77,-36,-29,-57,-21,34,7,127,-31,-56,-47,16,-15,41,-29,31,11,3,-87,28,-4,-67,13,-20, /* [402][0][][] */ -56,-4,-16,74,12,-24,-49,-70,16,-46,11,13,14,8,11,47,54,-12,74,-7,51,-23,3,55,9,0,-17,-71,9,41,-21,4,-19,20,29,-27,12,-18,10,-7,-54,9,31,10,32,54,-60,-5,-9,34,53,20,4,-4,-14,-4,21,-27,0,5,69,55,-4,14,-51,-43,88,40,-32,63,12,-53,45,-1,-1,10,-44,-4,-2,25,19,6,-35,58,-43,52,-58,-41,7,36,17,-44,-9,-38,-9,127,-47,63,28,0,-9,-10,-48,-27,57,97,49,-10,91,-26,6,-8, /* [403][0][][] */ 42,-96,-61,29,12,6,12,-21,12,-8,9,-33,56,-35,-17,-28,19,-28,17,-4,29,-7,1,4,34,13,-62,-54,16,58,35,17,-29,3,-26,-50,80,47,36,1,11,-38,-34,-25,29,12,6,49,-26,14,16,-17,68,12,96,-4,-7,5,-59,-30,-42,-16,25,-36,-26,-4,-4,-20,-31,127,-13,-43,5,-28,46,-1,26,46,-45,-5,28,74,-8,-40,-18,81,-58,-32,23,-21,-29,-86,-11,-79,-9,8,4,7,-4,62,35,6,53,-25,-66,51,16,19,37,-41,27,-73, /* [404][0][][] */ -25,-81,-19,92,22,-37,37,7,18,-55,-13,6,5,-15,29,29,12,-48,49,52,-4,11,12,-11,47,53,-66,-21,13,90,29,61,-19,-27,-37,-13,127,23,-14,-6,-11,-26,-20,-72,-38,-37,-73,18,15,-7,12,32,54,6,44,-24,54,-71,-31,-39,-59,-3,37,2,-6,21,9,-1,77,43,-59,-40,9,-28,-29,-43,18,6,-25,-24,57,-22,-35,-25,-35,21,-37,-79,-15,20,-38,-70,8,-13,20,-11,8,-25,36,-15,26,-45,-41,53,37,9,-18,-40,57,25,17,-8, /* [405][0][][] */ 28,-7,1,0,-58,11,-7,32,-107,-5,12,15,-53,61,-1,-63,-14,0,-20,-18,-40,-21,127,-16,53,16,48,21,78,107,-4,-21,8,35,-50,8,-50,-39,14,-17,48,42,42,34,-11,-51,12,-10,76,-54,22,50,14,63,42,1,13,11,9,-82,-18,-22,55,-30,-47,-29,-9,-34,95,-18,18,-15,26,102,15,2,-77,6,9,-18,30,-19,-69,-32,-21,-1,-52,-39,57,-42,-14,-7,-44,-3,-8,-77,-45,-48,17,73,-21,-20,99,-6,-46,24,20,-29,-23,72,23,-75, /* [406][0][][] */ 18,-55,53,-26,0,13,-63,-3,-33,-3,-106,13,-15,-27,40,1,3,-15,34,-3,3,-24,-47,14,28,60,27,37,-15,-15,-46,56,-42,10,83,127,0,16,24,1,-35,10,-59,3,6,41,62,-25,-39,-28,-9,38,12,-39,-33,20,-12,-32,-26,4,-91,3,-40,-28,-20,-31,-55,27,-27,40,-33,15,-85,2,25,-5,-49,20,-23,-19,25,17,6,-2,20,-45,-17,36,26,-21,-16,33,34,48,18,11,20,52,-67,7,-23,-28,17,-31,-36,-18,81,-13,-86,22,40,46, /* [407][0][][] */ -80,-111,-28,-35,-24,-31,-37,20,-34,-68,-38,65,-62,84,10,26,-40,66,23,-44,15,-36,39,11,-22,-64,9,104,-6,81,127,-60,-18,-17,84,-37,-113,-46,-125,-28,-111,-49,58,72,13,24,-9,-2,71,19,13,-22,33,8,-96,-46,-41,-21,6,-47,30,-53,-30,77,-27,40,-42,-11,43,12,97,-29,9,27,12,33,-37,-39,32,-45,35,-29,-45,24,3,66,-14,33,-98,9,73,31,26,49,-1,-65,-74,-49,-2,-43,15,-47,23,48,-29,19,51,-34,-45,0,3,-31, /* [408][0][][] */ 125,17,9,40,37,49,-1,-89,-70,-29,-32,-14,70,-28,-36,-70,36,49,60,22,33,-127,-32,-62,31,55,6,-14,55,-33,61,-5,-18,75,-17,-23,-2,30,25,117,37,62,16,108,-30,46,57,-1,34,-121,-85,21,77,42,-9,-4,-53,67,11,-31,-96,-21,35,-51,30,-79,-14,65,66,-36,103,-71,-35,19,-89,-3,-72,11,-46,18,38,21,-19,19,32,20,-39,-65,103,45,9,-59,9,103,-11,-93,42,-55,-11,-32,-72,-65,11,43,-42,-9,22,-65,34,49,71,4, /* [409][0][][] */ 23,-44,-25,52,-13,58,-44,-26,-28,-42,-46,-2,8,-28,41,-15,37,-21,1,-100,-11,-8,46,4,45,-45,17,30,7,9,-21,-54,-37,80,13,127,26,21,-18,21,8,-1,9,14,-31,14,-31,-89,13,-4,71,-17,49,-39,-60,-62,-78,-1,27,-60,-93,38,6,27,24,-20,-37,30,24,18,-10,70,-109,-10,-16,43,68,22,27,15,41,124,28,-7,79,-40,49,13,19,25,-33,8,91,-50,38,-10,35,-7,-81,-17,30,-23,13,-10,-37,-23,0,-10,-54,83,2,64, /* [410][0][][] */ -33,17,-56,64,24,58,-38,-40,44,14,37,-49,-40,-3,-7,-28,4,-4,75,-14,-74,-27,57,48,75,-45,8,-9,19,-11,-14,-102,-23,62,18,53,-82,40,2,24,9,10,-8,12,-127,38,78,-32,-55,28,62,-31,1,46,-25,-1,-82,87,13,45,-25,51,-9,-12,15,-62,-24,88,23,11,39,-11,3,-40,-3,76,43,34,5,73,13,55,-27,-18,-4,12,66,-14,49,-18,-45,16,75,-57,24,11,15,-17,6,40,42,-34,63,6,-77,-15,-22,24,56,93,-34,74, /* [411][0][][] */ -6,-61,-1,124,-32,31,-1,20,71,-39,-103,42,36,-50,-51,-93,21,-1,-14,-78,-12,24,-3,2,82,-15,71,76,14,-70,-6,11,-65,25,-55,35,53,8,-20,-37,-64,19,14,9,30,84,18,-15,33,68,42,0,33,-31,-45,-9,17,-1,127,-37,-28,-16,6,32,19,6,-31,58,-24,33,-60,66,2,110,10,-10,-106,-35,-7,25,23,31,-86,24,-53,-9,-7,-24,-6,24,9,23,23,19,-46,46,-63,23,-70,-29,-34,18,47,21,-8,8,26,-27,-9,35,7,54, /* [412][0][][] */ 23,-78,-127,-6,47,54,-7,-16,23,-22,-4,21,104,74,-45,13,-16,35,-14,33,74,28,28,88,17,18,-39,-12,41,-4,-69,21,-63,-76,-23,27,13,-55,6,-6,-69,-27,27,23,-13,4,-60,-75,122,-106,-21,47,-2,-32,16,3,-22,-55,-72,54,53,108,3,15,-29,4,15,-27,74,39,-54,2,-6,44,-29,13,27,43,37,-8,54,3,-112,18,-88,29,-98,-3,-22,38,68,7,4,35,31,-50,50,54,22,-25,45,18,-20,-43,-12,18,-55,-16,4,-11,5,-22, /* [413][0][][] */ 72,-4,33,-54,-58,18,-28,-46,-19,-31,-65,-47,16,-17,-40,-16,8,0,12,4,-39,-14,-36,-45,-12,-71,71,-34,59,-56,26,-71,-17,-31,-41,36,-22,68,67,-9,-21,98,-35,23,-80,25,11,-48,68,-1,23,127,8,-20,-44,-17,24,15,12,-12,73,-75,26,17,-24,-59,-37,21,10,-25,25,-70,-119,26,27,-32,-57,32,-66,70,-9,-12,16,-1,2,-80,2,47,-33,75,-47,-28,-61,-16,-18,-66,-77,14,13,-3,54,51,57,21,-48,48,67,13,65,27,-69,60, /* [414][0][][] */ 19,-48,-35,48,8,-49,8,-69,89,-5,4,-28,41,59,78,89,74,-5,84,-55,94,43,3,77,-19,9,-45,-38,15,38,31,-49,-60,-31,-7,-43,12,-74,-73,15,-33,19,96,36,23,14,55,-43,20,17,-36,21,-39,11,19,39,-22,15,-55,15,-13,1,49,101,-12,-39,7,-3,-26,51,-37,-10,-17,19,58,18,-28,70,72,7,-16,-4,12,-30,-9,38,15,56,-127,29,3,18,-36,0,69,62,-55,-60,-78,-5,12,-65,-51,17,36,27,-12,7,15,-85,-58,22, /* [415][0][][] */ 64,30,-29,8,6,22,3,19,6,23,-26,42,-9,53,54,-40,-37,59,-31,-33,24,59,127,7,9,36,20,62,-5,41,73,37,-32,22,72,-11,18,38,-53,10,25,104,-41,83,15,70,-37,-53,13,-99,44,29,-28,28,-80,-52,-78,-12,-39,19,1,-23,-24,3,69,72,-75,75,31,-91,6,-33,-13,34,99,-26,63,-25,-14,2,17,8,-15,9,44,64,28,32,-18,-2,-40,64,59,49,68,17,-106,-45,12,-15,15,-52,-21,5,-35,10,78,-33,-56,-7,19,-41, /* [416][0][][] */ 29,-6,-17,24,10,29,-60,28,-19,-127,-1,-31,31,28,-22,17,-115,-77,41,-46,-9,-7,-14,-39,12,-100,-25,88,81,34,16,-44,-7,28,9,-17,9,-60,-48,-89,-6,46,11,-30,9,4,-7,-92,-21,-22,-1,21,11,-38,-77,9,37,-23,-19,-61,-6,-60,-63,10,3,-36,-61,-16,72,-65,81,51,-7,36,24,46,-9,-11,-73,29,1,4,-36,-21,-27,90,41,39,60,-52,-50,50,38,-85,17,16,-68,-34,-52,-54,-63,14,-44,71,13,-28,48,57,16,-3,-38,-50, /* [417][0][][] */ -48,22,-81,-60,-24,28,-60,13,55,54,-22,23,48,26,74,103,1,108,-44,-20,46,-67,12,-37,0,-3,13,24,56,-13,41,-13,4,5,-50,-33,21,52,-56,73,-39,-3,-29,-8,28,-18,-9,7,47,-34,9,-17,-45,-50,5,-49,-16,34,18,-51,-61,-123,-1,-21,29,-75,-45,69,67,-72,30,-61,2,37,-81,1,118,5,27,-52,82,98,-2,0,38,58,-30,-35,60,81,33,-40,70,23,-43,-16,11,32,8,-17,8,-16,16,127,-53,25,31,-6,38,76,-31,18, /* [418][0][][] */ -120,-91,-28,66,30,-34,-11,75,22,19,80,-11,13,41,24,59,-44,-34,38,21,97,-67,44,-107,41,56,-84,-81,116,124,-13,41,46,-69,-38,-64,-8,127,31,-2,-37,68,-43,53,0,-99,26,-36,-3,51,-28,-1,40,33,13,17,-33,-16,-18,-13,-63,-20,64,-13,-32,-64,17,34,-42,67,-5,34,-26,53,20,66,21,37,-63,-28,26,-16,-109,10,29,66,-99,-83,4,-29,-7,-46,16,-21,-92,-30,-17,11,3,-15,-35,-23,21,2,-27,48,28,-52,113,31,44,-100, /* [419][0][][] */ -4,-24,15,-68,-61,-39,-69,-9,17,-38,-20,-36,5,3,13,-16,-46,-54,-23,-36,-106,-49,-49,-71,-64,-5,-9,33,-38,4,0,-39,19,24,4,25,-74,-81,34,-56,-44,-14,-77,3,-24,-21,42,23,4,-29,77,63,16,2,2,-30,-72,-70,-8,-13,10,-72,-1,-29,-3,-99,-56,-32,16,-73,24,-43,-32,8,48,73,-38,-52,-45,-127,-22,-55,-37,81,34,12,93,-39,-21,-22,-27,46,-2,84,5,-35,-11,-105,-10,-26,43,24,56,11,-84,-27,4,0,51,99,-6,-38, /* [420][0][][] */ -10,71,45,-3,-59,-30,25,7,-34,-35,-104,68,-60,-12,26,41,-20,63,40,-38,10,5,29,-45,39,-31,-19,8,32,-18,-20,-43,-107,71,20,-1,-15,-72,-33,18,-8,37,-55,-32,-41,127,31,-9,-12,0,9,100,-22,-48,47,-34,-62,-14,-17,29,-12,16,-29,6,-31,-36,6,-7,-7,30,2,38,14,-34,5,0,18,10,8,-31,59,18,-100,71,-50,33,-26,-14,11,65,44,-45,-1,-15,38,43,-50,24,20,28,8,15,-23,-55,-103,-51,-7,-82,0,28,31,-25, /* [421][0][][] */ 69,-72,-96,66,10,1,2,-1,81,-10,60,-16,48,-60,28,80,3,-3,23,36,43,30,-60,55,104,-2,-38,0,7,1,-86,-65,68,26,7,20,41,-57,-68,16,6,-38,-28,37,-59,-21,-8,-90,18,-6,1,-23,1,18,53,-26,-15,-12,-37,-51,21,39,-29,14,-103,8,13,6,-33,-35,13,-41,-63,9,88,52,127,19,32,13,32,-114,22,-34,-35,-75,21,-2,-39,-24,-26,-36,-84,-16,117,2,38,-33,-20,-62,-34,12,27,-17,56,38,17,17,44,-30,28,12, /* [422][0][][] */ -70,49,-10,6,-65,61,35,-75,88,-23,-12,-50,23,51,32,27,1,82,24,57,23,9,-59,23,41,52,-53,17,34,18,68,39,-29,16,53,20,-35,-44,-34,49,10,62,29,-51,27,-44,52,-4,66,-72,92,-18,26,53,27,15,55,-80,-11,-5,36,-35,-53,51,-4,79,-22,-4,-38,24,-2,66,-87,-5,55,-7,-59,7,-38,9,4,-82,39,-41,-1,-9,-127,18,-36,-18,25,-46,11,-24,-91,31,-53,-4,48,-9,37,12,104,21,6,112,-56,13,29,-74,25,2, /* [423][0][][] */ 99,9,-127,-24,-25,-36,20,78,-42,-6,76,93,-19,-46,35,-28,-15,55,-26,48,29,25,89,-53,5,-58,-24,68,55,45,98,-21,-23,123,59,41,-46,15,-106,-4,12,110,-76,-21,43,59,28,29,-1,-52,66,8,-14,5,47,0,13,-70,-8,-41,-11,-69,-105,-6,119,30,-126,67,41,-101,-38,-65,11,95,-40,-26,44,43,25,-27,4,117,-46,-8,84,-71,55,-57,-6,-41,-78,-71,56,11,17,-44,34,-2,57,20,36,-68,52,83,17,17,39,-126,-27,40,14,20, /* [424][0][][] */ -38,96,-7,-98,-1,-2,-46,-29,-15,-29,-126,-58,-44,52,-73,-59,-71,-5,5,34,2,-116,47,-46,127,-21,25,-19,12,-60,-17,-88,7,40,-48,27,65,10,-13,57,-55,25,-14,8,17,-16,30,56,76,30,-29,65,-12,-39,1,40,-59,-10,-2,-14,31,-71,11,-57,17,-20,-16,85,106,-30,-3,27,24,24,39,56,-5,-10,34,-13,-14,-58,-102,34,-26,-24,34,62,61,-24,-59,11,65,-18,-61,66,-101,-32,-44,-7,61,68,105,32,-13,-1,57,-106,17,32,4,2, /* [425][0][][] */ 28,-127,12,-10,20,18,15,-5,-6,-46,-2,4,13,44,53,31,78,-9,22,-8,36,6,-48,70,-19,29,-33,-33,10,45,-34,-15,18,9,25,-27,21,-61,35,-5,54,5,-2,7,-9,9,15,-50,36,-35,-10,11,36,11,-3,0,-25,9,-70,60,-14,-31,9,-13,-41,-58,55,11,12,65,0,-31,-53,-3,36,-39,23,18,-16,-48,21,-9,4,11,-23,10,15,1,20,28,10,-63,-35,11,7,71,82,9,8,19,-11,10,29,13,-13,45,-25,36,38,33,14,-24, /* [426][0][][] */ -17,-117,1,-8,-13,-53,10,-2,-22,-32,-35,-20,0,7,-46,17,32,-57,-29,-1,48,-34,-7,-45,43,79,-95,-21,7,-5,60,7,-65,18,-127,-27,3,-103,20,45,-94,-18,19,-90,23,-34,10,-48,22,-52,83,-3,-30,-2,113,-3,-27,-44,-7,-32,42,-7,28,4,32,-19,-11,58,-47,-9,9,15,46,9,1,6,61,-8,-8,9,30,31,-34,-50,-39,13,-119,-81,43,35,7,-71,-8,-55,53,6,-3,15,44,-7,31,-33,-14,-74,-115,74,39,66,52,3,-6,-80, /* [427][0][][] */ 12,2,-75,-77,5,-21,73,-107,46,-73,-63,20,61,9,31,7,79,8,70,4,-56,86,4,26,-14,50,-45,1,-45,64,13,68,-75,59,1,114,-7,15,2,-43,-123,81,-88,-24,-43,71,-59,21,25,29,12,-16,68,54,-50,70,41,-100,35,-26,35,1,35,49,32,-98,-66,-2,60,113,-115,3,-64,1,-61,9,27,-4,-76,2,49,-17,31,-7,8,-1,-88,50,-43,20,-15,-25,6,64,-52,11,-23,43,68,22,20,-30,19,34,19,59,-2,127,73,5,6,-21, /* [428][0][][] */ 41,-49,59,30,-57,-9,-31,-3,-39,-28,42,32,2,-33,-63,-21,25,-8,8,8,-65,13,-8,42,-32,11,17,4,-3,-23,34,-82,55,52,11,38,-83,17,1,22,-61,44,-21,37,-49,108,67,-26,4,33,0,39,26,-50,-8,25,15,-9,8,-36,-83,101,-18,-99,71,-40,-5,90,-30,-11,-6,5,36,16,47,4,27,16,-45,-37,20,74,59,17,-95,55,66,-43,-58,78,22,3,38,90,-27,-49,-1,22,-40,-17,33,-48,59,57,-98,-18,18,-127,-54,-60,2,-1, /* [429][0][][] */ -28,-42,-28,9,-70,86,8,-51,-22,-51,-35,-101,47,74,-17,39,-78,15,49,36,-17,-24,52,124,21,-4,3,-43,-18,28,2,34,-70,-69,-3,-91,-37,12,-111,127,-36,32,94,-5,10,-7,-59,-93,53,-54,-16,-110,-39,2,26,-5,22,69,42,94,88,92,-55,31,-85,16,-43,-42,-87,22,98,-74,-44,13,8,72,-62,53,33,41,-14,26,37,64,-60,95,-114,-17,-3,-48,-53,-25,-81,13,-24,26,15,-24,61,74,82,21,17,65,53,114,-122,-48,48,-23,-14,-80, /* [430][0][][] */ 55,-64,10,32,9,30,-33,10,92,-24,-11,-19,-50,32,-28,35,22,62,-32,36,-63,-27,55,1,-50,-76,36,-41,-16,35,2,-42,-92,3,64,9,41,68,-17,3,-80,21,-76,-7,23,90,26,-40,21,-5,60,8,-28,-40,6,-127,7,36,-58,-11,0,31,-23,-20,-19,-42,-54,-11,115,-34,-63,25,-38,53,14,9,-21,48,-48,-34,-30,-61,18,66,-12,-88,-5,23,27,30,2,12,-60,-24,-17,-39,-32,-1,-62,-2,36,15,41,34,-24,25,-18,-51,-39,-10,-27,10, /* [431][0][][] */ 17,69,-5,21,88,-16,-8,36,-59,56,-40,-8,34,65,-28,-20,1,-31,-20,-19,-72,41,11,-14,127,-10,-1,52,46,-46,-27,-47,28,18,9,55,-37,-23,20,-35,3,1,-46,-10,-39,49,76,-71,-48,37,14,-61,-63,-10,21,-55,-115,64,-77,43,1,61,-88,-108,-59,-17,-12,32,-7,-63,17,40,6,52,82,38,-49,43,58,-38,24,23,-11,27,-37,73,46,29,47,-89,-37,47,53,74,50,21,-12,10,-60,-5,-11,6,-10,-11,-68,24,42,-4,3,36,88,23, /* [432][0][][] */ -22,12,-20,-32,-63,-22,-41,28,47,-13,-4,21,-96,-12,5,30,-65,-102,60,-36,44,-68,120,-56,-34,-55,-33,-48,59,-59,29,-5,33,-7,26,-22,-5,63,-48,9,14,17,-56,-3,-54,-40,-2,5,-37,-29,-8,34,0,74,-31,-103,-16,42,-24,19,3,3,33,6,38,-9,-4,7,67,-68,-1,-27,6,89,17,127,-28,-15,-56,-71,10,-53,-40,65,-29,49,-60,-19,75,-26,-16,-14,-48,10,-63,-11,12,-89,-79,-94,74,22,-13,6,-64,6,69,0,-8,-8,26,20, /* [433][0][][] */ 0,22,-2,5,-12,41,-29,-10,39,33,24,-31,9,27,-31,64,-44,53,-4,5,18,-51,14,3,11,-17,-56,-4,36,4,-15,36,5,21,-60,23,12,62,16,12,-18,-48,9,-63,14,22,-43,18,22,-14,13,-32,-4,34,43,-4,62,11,7,-79,32,43,-73,1,-28,-33,-2,37,1,-16,-11,33,5,-20,36,9,-1,127,-44,-17,19,-18,33,24,-26,26,-16,5,-66,-46,22,-40,-8,24,26,44,54,2,20,-37,13,41,-18,7,-28,36,27,-2,13,-18,-29,5, /* [434][0][][] */ 35,-7,-1,-53,23,-26,28,-32,18,-41,-22,25,57,62,-14,56,30,-14,120,86,58,20,3,-1,-82,105,-56,41,-4,38,-93,35,7,-62,7,28,33,-31,-5,-7,89,46,-37,-1,70,-33,28,-39,108,-85,101,37,-38,35,18,58,100,-49,-83,33,31,-30,-66,-58,-11,10,-55,-29,-26,66,13,-86,-32,-22,96,127,-51,23,-16,-4,23,0,34,-79,8,18,22,-78,-19,-67,-27,58,-32,40,-24,91,73,-1,-11,14,-20,-48,21,24,13,-21,17,59,6,72,-56,-18, /* [435][0][][] */ -17,1,-30,-45,-45,13,-70,50,-69,-17,-29,1,21,24,-47,20,2,41,14,-16,-1,-34,3,-7,-43,-80,95,43,34,55,63,-24,30,28,14,80,-80,10,-54,-26,-4,30,-38,-46,-81,31,44,13,-37,-65,-41,31,38,-43,-29,37,-33,16,-63,-16,-25,-32,-127,-19,-26,3,-45,11,95,34,40,-16,-99,16,4,-1,69,37,-54,-6,10,-32,-54,-3,-43,42,-17,-13,61,-79,36,51,76,7,-37,21,41,-64,67,56,50,-7,-19,-4,27,-38,-41,-37,-39,87,22,-59, /* [436][0][][] */ 7,12,95,63,5,60,47,-91,30,50,-46,-17,-38,-15,30,27,-3,110,56,7,-91,-104,6,109,31,16,27,7,26,44,69,-16,28,-41,-37,-13,29,55,-37,-20,-92,36,33,-47,5,-12,22,73,34,35,-25,-12,-37,-78,-56,-66,24,15,-41,-121,-28,-14,15,-23,47,-42,-54,85,86,-127,-23,-20,18,56,10,-32,29,86,-79,-8,-50,-61,-118,23,-74,-44,-52,-55,22,29,-55,-90,97,18,-12,99,11,-47,12,3,54,-102,24,58,13,-30,10,-77,56,106,-55,31, /* [437][0][][] */ 29,-78,35,36,27,19,24,-31,58,-27,-16,6,14,-36,20,25,7,3,50,-38,-24,3,14,29,32,-12,56,25,38,-11,54,-4,-65,28,-8,13,-91,7,-15,26,-27,-4,-25,12,-1,41,-40,7,-4,25,33,16,24,0,-9,-22,-29,37,-2,68,-95,1,68,-65,100,-4,-43,42,37,8,44,-41,-89,-27,46,34,-49,92,-41,-19,-69,-66,-26,13,22,46,54,-118,0,-3,-62,-47,-18,58,-31,3,2,-24,-13,-127,-26,18,38,7,-23,0,50,-15,-25,-35,10,-54, /* [438][0][][] */ 29,18,-27,1,-47,-34,82,-127,42,1,-9,-33,6,-22,29,0,-19,39,6,-9,62,-108,27,-18,41,9,-8,33,6,53,-36,18,-58,16,27,22,-40,-64,31,49,5,-8,-27,-25,-26,12,37,16,-14,-3,8,-21,40,52,-26,49,-37,39,9,-49,9,16,-2,-45,-50,-29,22,-9,1,-25,29,-73,-18,-12,24,44,33,-23,-24,14,42,5,-64,41,-22,68,-69,-35,12,-105,-12,-35,-33,20,-47,9,-35,-5,5,75,-5,-80,40,37,-19,-5,-66,27,30,40,18,-8, /* [439][0][][] */ 20,-2,13,-18,-53,-86,58,-4,37,-57,-26,-84,5,-19,17,35,23,-27,-14,31,9,-38,-25,10,127,109,38,-94,-9,54,34,-21,-42,39,-47,-30,33,16,-4,-13,-5,-28,-30,36,-86,29,-10,-26,-38,40,73,-65,14,-25,8,-12,90,-38,-17,-57,33,20,10,-8,-24,-25,-81,-48,-55,90,-11,18,-31,-76,84,89,-44,22,26,32,0,-2,24,-46,-10,66,-2,-26,-25,-109,3,70,17,92,-28,60,32,22,-24,104,-23,31,-8,-73,48,69,33,-9,41,116,-5,42, /* [440][0][][] */ -62,0,26,37,-32,-42,-53,127,-14,-11,-15,83,-22,37,-78,-27,23,-109,-30,-51,-10,-40,-15,-81,70,15,-29,-42,55,34,73,38,-30,-26,-54,-28,9,113,-26,1,-67,1,-27,25,-30,43,12,-33,38,75,113,49,-16,70,-30,-1,8,-5,93,-5,-64,-19,34,-116,-5,-31,-2,106,-2,-8,-112,-39,-19,76,-23,-20,6,-17,-63,2,5,-13,-81,-20,24,29,14,-23,49,25,61,-4,14,-2,-63,-6,-89,-47,14,-67,69,-24,50,24,-46,10,106,-41,11,31,38,-63, /* [441][0][][] */ -19,56,14,-8,-41,-11,-22,79,-48,7,-12,15,-32,35,11,-25,-25,-12,-29,-36,-22,-60,18,-45,-16,29,60,36,32,-6,-22,-59,-53,57,32,-2,-44,-31,12,102,105,45,16,-61,-127,9,20,29,64,-34,45,68,-10,31,83,15,-98,82,20,2,-18,74,70,-19,47,-83,26,47,10,-3,13,-3,23,67,4,31,-50,-9,-15,-37,34,75,-57,-17,-8,76,-39,-78,-37,68,-100,-4,-10,31,0,-14,38,-51,-49,57,20,39,45,16,-83,93,31,-24,29,39,-24,-8, /* [442][0][][] */ -48,75,-59,-16,-44,39,-9,37,64,6,-25,-19,-11,-9,34,-6,-44,-35,-14,-30,16,-30,-29,55,9,-15,-60,16,-11,-11,22,4,16,70,27,-9,23,43,-47,52,-43,20,33,-30,10,18,54,-53,9,-7,7,10,52,-16,-44,-19,12,-6,7,-34,-22,-127,-56,-35,9,24,-64,29,82,-11,-11,40,-19,45,-51,-26,-55,27,-6,-76,-5,28,1,14,10,3,23,43,43,20,-27,-17,6,40,-4,-55,3,-10,-72,-42,-49,-47,3,27,30,-54,58,-21,-4,17,-4,-16, /* [443][0][][] */ 41,10,-12,36,-43,9,-12,-102,90,75,-19,-110,41,2,38,60,-34,22,-2,9,85,17,-56,46,127,62,-4,-39,34,-16,20,-28,19,12,-60,-41,5,77,83,86,21,-15,-13,-17,-12,-67,47,10,32,-52,-65,29,-18,-14,64,24,-12,-15,2,-33,47,19,-8,-11,-93,-18,-29,36,-12,-21,-57,-4,-87,19,0,2,36,67,-3,9,-37,-27,8,-37,-39,9,-44,62,5,3,32,37,-68,-28,-65,-1,-6,-23,-3,-28,36,19,-22,34,-52,18,-5,13,32,-79,14,20, /* [444][0][][] */ 10,-4,9,96,-3,-16,2,-28,-8,-81,-27,-30,-53,-6,-54,-24,55,-26,35,-9,60,-4,-35,36,-67,33,-23,-37,-7,21,-13,33,-21,-18,-15,51,67,9,58,-15,-46,55,-5,14,16,28,10,-35,11,58,46,1,-41,-20,-33,-38,48,-7,53,28,21,-44,-24,44,-59,6,-3,-11,-38,42,15,-9,5,22,27,-55,-8,31,0,-30,-22,-39,-14,-38,-36,33,-65,-17,-14,-6,29,-58,-17,-26,-45,74,-43,-13,-62,54,16,-65,-16,31,35,127,15,31,91,9,-24,-40, /* [445][0][][] */ 86,49,-1,41,-12,-44,-8,-57,-8,3,-45,40,46,-12,-11,3,-1,19,74,-67,-127,36,12,-6,-69,-35,9,-26,79,79,-64,-38,30,66,60,103,35,-26,-94,48,36,-29,-26,-15,25,89,5,52,35,-48,-14,-31,51,-114,17,-21,-45,4,-24,-24,-27,-27,7,-22,-10,-119,-77,27,44,39,-27,42,-89,-35,-92,88,-55,18,33,-83,-5,42,-40,32,45,-35,39,16,-52,11,42,-2,25,-26,2,-8,6,36,-6,57,47,-32,4,-1,-121,-60,17,7,-3,56,-45,4, /* [446][0][][] */ 20,94,-58,-87,-54,28,-6,-74,-23,-7,-32,35,10,71,-19,-39,-3,13,60,19,37,28,74,40,22,-127,-47,0,62,37,-45,-51,-26,-27,-83,28,-13,89,-98,-21,40,11,-68,0,-9,1,-20,-32,3,21,-24,72,-78,-9,-84,-35,40,39,6,-24,-18,-48,-46,-22,-3,-80,-50,82,-7,18,41,-51,-21,43,22,-79,44,-7,-4,-65,0,79,-32,-1,0,-80,-11,55,-10,25,-31,56,103,66,-62,-26,-1,-35,67,-61,47,47,83,-18,2,27,69,-62,13,116,-16,38, /* [447][0][][] */ -16,24,-21,10,6,-6,-9,-7,40,32,-36,4,12,104,-41,2,54,7,-50,16,8,40,83,92,-9,78,14,-17,3,41,-43,39,30,26,-27,86,3,-43,44,15,-59,23,1,-29,26,-7,50,-50,53,37,15,-46,-60,60,56,-21,10,-25,37,25,32,-16,-51,19,-71,-20,-43,0,-20,-8,8,-64,28,31,89,6,40,31,58,-56,48,-62,18,-9,-35,19,-51,-3,9,-127,8,-37,19,75,73,66,1,2,9,60,54,-10,7,-55,20,-3,-61,-4,19,3,48,2, /* [448][0][][] */ 67,1,46,2,11,-116,-62,-85,6,24,-19,80,-37,43,-118,-22,-36,15,-10,-27,19,-32,28,-13,29,-85,21,52,-45,41,-18,-28,12,-16,-45,-12,-13,-91,-73,16,36,60,-16,105,19,-2,34,17,-14,-8,-93,75,-24,-6,7,-41,-21,-64,-73,-11,-33,-60,-72,45,10,-64,-113,44,4,3,43,0,-21,12,61,-2,-42,38,20,-61,76,4,-29,20,25,-127,14,2,-16,81,-30,72,115,-78,9,11,-107,42,17,-56,97,-89,-16,54,-56,76,6,-12,2,0,-9,-65, /* [449][0][][] */ 38,-47,29,19,-3,51,-9,-71,-36,-10,-11,-13,41,13,9,-13,0,-50,-55,-35,22,-11,-4,59,-7,46,-70,-35,-36,53,-12,24,18,-14,-67,19,-53,-3,-15,-53,-16,44,-31,35,-68,-20,-18,1,-22,10,100,-18,48,9,-45,-17,37,-127,-42,-103,6,-18,-13,67,-11,53,-23,-43,-23,-6,54,32,-42,3,38,-46,3,88,40,28,16,46,39,-81,-9,39,-24,3,-75,-48,40,-27,3,11,48,22,-57,1,-5,-9,80,16,62,-5,59,52,62,23,18,30,-54,-26, /* [450][0][][] */ 73,31,-33,2,-48,-8,-91,27,-62,-19,13,-47,0,48,45,-2,-96,-11,33,9,-43,-50,-3,11,-81,11,-21,-49,23,-53,-52,-12,-2,-16,-22,61,-97,76,-15,22,77,127,-9,27,-28,-8,37,-39,43,67,-2,73,-52,-9,-2,-8,2,117,-54,1,-26,15,-53,77,58,-16,-51,51,-1,4,125,-67,-15,26,29,20,34,44,-14,-38,92,105,-37,-43,1,27,58,-6,33,22,52,13,-52,3,16,-26,-15,-4,-14,50,6,32,70,-17,-42,-29,27,-49,37,94,-24,38, /* [451][0][][] */ -2,11,18,-39,15,-1,-5,7,-24,36,-22,-31,-48,15,16,9,28,16,70,-2,52,-110,-64,33,-7,17,61,20,-13,-28,34,-51,-93,57,18,28,-44,25,-36,5,-92,-6,10,10,66,-47,40,30,5,-64,34,89,-51,-68,-49,-15,12,-18,18,16,22,-3,-9,9,-8,-13,-18,28,120,14,15,11,-11,32,-12,23,-30,-23,8,-22,19,5,-88,45,45,1,-48,-6,18,-33,-59,-3,45,43,-18,-38,-21,-23,-20,-1,-2,-54,28,-14,-14,-27,81,-127,-67,50,-38,-8, /* [452][0][][] */ 86,77,-59,80,8,-52,-51,53,-27,68,-52,51,67,-55,-37,12,-44,30,96,-18,-106,-9,-11,1,22,12,-42,54,127,-25,-7,-39,-15,36,-11,53,-38,-38,0,68,4,42,-20,106,33,46,122,13,33,-93,59,47,58,41,-11,46,-4,-54,-30,50,-53,95,28,2,-15,-19,-50,67,-71,6,75,-50,17,44,-73,55,-25,-7,-37,-49,34,43,-60,25,-31,-37,67,5,124,-16,23,-37,44,-29,-72,-49,-36,3,-35,-50,4,-75,98,51,-18,-84,13,105,-25,23,99,1, /* [453][0][][] */ 17,12,17,-21,-5,-34,12,3,8,9,-10,-34,-10,4,17,5,2,19,30,34,58,-11,-16,-8,-30,-66,28,-4,8,1,29,-56,-25,2,-21,51,-47,11,5,-6,-24,-20,7,-34,-127,48,-35,-3,36,37,7,57,-1,-42,-24,-16,-54,-18,16,-14,35,-1,-23,-30,-61,-9,-8,-7,43,19,25,-3,-16,53,22,39,50,38,-27,-51,27,-53,-40,69,-39,-47,22,35,-9,-44,-14,18,-26,10,20,-29,10,-5,-6,11,11,29,16,-44,-44,-41,37,14,-24,46,-17,26, /* [454][0][][] */ 34,7,5,44,18,-127,49,-46,99,-30,-36,-68,3,15,-9,-44,41,-69,35,18,100,59,25,-28,3,1,-35,-39,-29,54,13,79,-69,-13,-29,-54,25,-20,-11,62,-5,-19,-40,-24,21,17,25,-8,17,-37,53,6,28,-11,-22,7,-32,-50,23,57,-36,20,-1,31,-37,21,6,-12,-2,-16,-62,4,-19,-24,-3,-47,-18,22,11,-3,19,-45,-5,-15,15,71,-99,-38,-19,16,-53,-66,-57,-24,-26,-35,-55,-6,-4,46,42,-56,1,-59,-65,38,40,-17,64,-75,11,-65, /* [455][0][][] */ 15,90,-10,-29,-127,13,-11,-10,-46,35,-54,36,27,30,-41,-28,-6,-8,8,-12,-8,16,9,-42,22,-27,21,-6,-28,57,22,-35,-59,-59,-18,2,15,35,-32,-16,-4,98,-28,23,-79,58,11,-35,-8,-38,25,42,-45,-20,-51,-56,30,23,-17,-51,25,56,-23,-31,59,-6,34,12,10,0,0,-85,5,-28,-20,63,-22,-50,-38,15,-18,62,-3,-27,-19,50,13,-98,-19,7,-5,39,-45,67,-16,-5,62,35,15,-52,12,-29,5,38,-1,33,-32,-42,23,84,-38,-43, /* [456][0][][] */ 77,-4,-54,75,-19,25,3,-41,17,16,-45,-29,38,-33,-19,-38,22,1,-6,-76,-11,0,6,46,20,-15,27,-11,53,2,-1,5,1,69,-9,17,-1,24,-16,38,39,53,-36,-24,-26,-4,127,34,49,-121,-98,25,-19,-71,-22,3,-79,71,-2,1,21,-2,-24,49,-45,17,1,31,55,-21,-16,-24,-74,-35,18,11,-40,20,-32,-21,3,22,-58,2,-30,-6,12,64,57,-15,-57,-49,5,32,6,18,46,-33,-7,82,49,1,-17,27,-41,-30,-19,-6,-112,58,29,-10, /* [457][0][][] */ 23,-21,-73,54,-69,-41,5,-21,-35,9,-54,-8,83,-43,-55,25,47,-27,16,-32,38,1,-41,-23,-45,2,6,76,48,77,23,-54,-32,82,-40,-7,39,-1,63,-35,-20,79,-26,-1,-6,-12,-16,-15,75,44,-14,-20,60,-26,-55,-9,15,13,2,22,-31,-47,33,0,-39,-20,61,29,-15,45,36,-54,-17,-14,-25,-65,127,-9,-45,-73,64,32,-48,-96,-72,55,-3,38,25,-9,13,-54,-52,-6,-22,5,63,-34,23,31,52,-40,3,11,24,47,6,1,67,-12,-23,-28, /* [458][0][][] */ 5,52,-45,4,10,-43,2,-44,40,-26,1,-124,22,-28,11,26,73,-26,8,84,41,-6,-15,-16,-9,66,-5,-27,5,34,-26,20,-2,32,6,7,-3,41,75,-3,-1,-13,-37,44,-15,-22,10,21,-2,-25,35,-18,29,-52,116,-44,-58,11,-20,56,-8,-5,31,-31,10,-64,-39,-25,67,47,-79,-57,-6,-2,58,-14,-3,17,64,-53,-30,17,-18,-93,-12,-1,-20,-73,-21,-127,-60,24,16,-6,-37,-22,7,-19,-15,32,24,-22,10,-54,-37,20,26,15,30,-15,99,-18, /* [459][0][][] */ -30,11,-11,-53,-51,10,66,-27,69,-39,14,-28,26,8,15,46,33,38,12,-20,25,7,-48,46,14,37,-39,14,-42,22,26,33,-4,9,63,35,-30,-57,-52,-16,5,11,31,-127,-9,-34,34,48,30,22,22,32,-17,-60,47,-22,29,-3,32,5,18,14,-69,54,-3,27,-28,27,-64,-9,7,-29,-26,-17,11,29,-40,36,46,1,17,-11,-29,-41,-44,-13,-55,18,-29,-31,49,-73,-19,33,-43,18,-33,-46,31,12,43,-47,46,42,12,32,-18,-16,-19,10,17,-1, /* [460][0][][] */ 58,-19,-12,67,-44,10,18,-18,11,-32,-29,15,26,-6,74,-19,35,-39,18,-46,37,-33,64,-1,-8,10,27,-52,28,6,103,-37,-42,-7,-16,-42,-15,-9,22,-54,-38,64,-43,-20,-97,29,16,-49,46,38,29,13,-38,65,-23,-72,-31,-29,-5,-124,-74,-36,54,10,11,11,7,-3,-19,24,27,-88,-55,73,19,18,-7,47,-7,-80,-26,-80,-25,39,47,-13,49,16,-72,-7,6,4,-15,46,15,-56,0,-127,-4,-24,53,16,-22,106,-53,-25,10,-14,-87,56,15,-11, /* [461][0][][] */ -54,4,-79,60,-87,-35,36,40,-49,-5,6,32,-60,75,44,25,18,4,5,35,-93,-97,33,98,-29,-9,7,-2,-59,-89,-29,-127,-68,58,54,22,-67,12,-7,21,36,31,22,32,-67,16,6,-10,-34,35,23,37,14,-37,-7,-65,-81,37,34,21,28,44,38,43,-58,-84,-27,25,-32,-9,68,43,-33,-3,21,62,51,56,28,-82,-22,43,-73,34,-24,-45,53,-8,57,-33,31,30,35,-39,79,-6,-17,-38,2,4,-36,-19,90,-8,27,9,46,-3,59,127,51,39, /* [462][0][][] */ 34,-47,-56,54,45,-23,-7,-65,88,18,10,-9,50,9,54,-29,55,23,-19,62,2,16,18,86,20,12,-11,55,27,34,63,47,41,91,-18,5,10,35,-28,14,-62,22,-5,81,10,85,78,-47,8,-33,12,-33,28,75,67,-33,23,-28,2,127,51,33,-43,-9,-61,-45,12,28,6,8,11,-48,15,38,-31,-9,87,21,65,-53,-59,5,69,-24,-40,8,-20,30,20,38,27,-125,0,83,-36,-18,27,50,48,-29,-7,33,105,49,-48,52,-47,-19,124,-14,64,-35, /* [463][0][][] */ -2,-20,-24,-19,-33,61,82,-99,61,-20,-74,-64,77,18,14,51,13,99,64,76,5,-17,-127,72,75,-5,7,29,18,47,-26,8,-4,7,38,-23,-32,-9,-14,62,-33,-4,-21,-45,-45,68,-90,42,4,-3,-1,-23,-13,6,6,-26,44,-37,27,51,58,2,-62,-19,-24,-81,-69,-32,33,-13,-14,-6,-27,-28,17,14,-57,89,-18,41,-15,-77,-67,-7,-69,67,-89,24,-21,-42,27,-9,-7,18,-7,30,63,-7,-17,-2,4,13,-53,50,5,12,-37,0,6,-81,16,-45, /* [464][0][][] */ -20,44,-40,70,-15,22,-42,14,-44,-43,26,-24,-37,35,-73,28,0,24,26,36,-39,-19,76,-25,-118,-65,111,-23,12,53,57,-85,76,-6,0,33,-54,75,35,-32,-41,83,45,-7,-32,-19,-21,18,-6,-22,-25,52,53,10,3,-25,-46,-1,-41,8,-28,1,34,11,-7,16,-23,47,-33,9,2,39,-92,41,-25,65,82,11,-105,-127,60,9,-53,119,-2,62,10,-64,-59,-63,-30,62,35,27,-71,-8,-10,-83,-27,-53,-46,-34,-78,34,-49,2,7,17,43,22,51,-76, /* [465][0][][] */ -106,-38,-27,-73,-83,-50,-48,12,54,24,-54,25,57,-15,-16,-40,61,-75,-36,-24,62,96,-53,36,85,16,10,77,-4,13,-7,49,23,-54,-5,-2,21,6,-12,61,-23,11,34,-5,46,-48,-4,-4,17,-14,73,-12,11,28,32,-25,-39,-33,-127,31,-3,-43,45,55,-17,17,-6,7,0,109,-8,-48,-13,-38,-32,-26,5,40,-70,-69,14,3,57,-83,-3,47,11,-46,-118,-81,-12,-52,32,71,34,-7,-17,-17,-19,-17,17,21,-1,-17,-27,-4,-55,-66,-24,-50,51,-112, /* [466][0][][] */ 17,89,27,-27,-79,-32,26,30,-2,-62,25,68,46,6,-47,-15,-3,1,0,-45,-15,1,42,-44,-52,-60,-27,-15,-55,55,-11,-8,-41,57,53,22,-38,12,-17,14,17,42,-127,-11,-21,49,-10,29,-6,25,64,5,51,35,-23,-30,-35,6,77,-79,-76,-6,1,25,25,-67,-9,4,10,-13,-55,-71,72,-7,-5,58,41,-81,-4,-26,24,122,-17,-14,-4,98,-30,-105,42,-76,-46,-27,-10,-47,-38,-51,-17,-60,40,4,-43,-75,16,-33,-108,-6,23,-10,-2,29,37,2, /* [467][0][][] */ -38,-40,-26,-8,-8,-6,36,-36,44,-5,-18,-68,5,98,-21,-8,68,-65,-10,-24,48,12,-12,-2,-13,14,42,52,-39,44,-24,13,21,18,36,68,41,-4,12,-18,25,14,51,22,-38,65,18,-21,34,44,34,-49,-20,33,-6,-59,62,3,24,30,19,8,-64,-53,-54,40,-17,-9,-2,0,-22,-12,-18,-31,64,58,53,-29,7,-30,-3,-20,26,-27,-127,-22,0,-35,-3,-109,-15,23,-49,39,-26,73,-24,-30,5,105,17,7,6,-10,-15,43,9,-10,-1,17,16,1, /* [468][0][][] */ -19,-50,-48,45,-16,28,22,46,-48,-19,-47,-5,16,30,-3,60,-50,127,32,-51,10,-60,-21,37,19,-14,-25,23,8,-13,-43,-40,-95,30,2,4,-40,43,-9,21,-61,66,44,24,19,47,-16,69,42,-24,-55,31,-81,-14,8,-96,-15,87,-41,-3,-9,-19,-40,22,-27,9,-49,-42,-21,-5,82,45,-9,-32,-14,3,-82,74,66,-13,41,11,-114,17,-53,44,-48,-78,41,45,23,-64,-2,-3,-40,-2,36,2,-63,-54,-72,82,45,68,-18,-9,26,7,-30,55,-1,-35, /* [469][0][][] */ -23,-1,-49,-54,-11,2,19,11,31,-4,-38,46,-64,61,-2,-23,18,71,-22,-55,-40,24,26,55,-76,-127,39,-21,25,69,-24,-42,43,-22,49,51,1,57,-6,20,-75,1,-42,64,-23,25,62,43,-21,26,25,-42,-94,17,-12,-68,24,21,-16,-67,-36,-3,-80,-89,12,15,-90,18,-11,56,23,-28,-81,50,-20,62,-56,-1,-42,-26,19,50,-39,27,-43,-31,47,-85,12,-42,15,-43,-2,22,-85,6,-7,-59,13,47,20,-3,-13,42,-9,15,52,3,-44,39,78,19, /* [470][0][][] */ 42,-24,-59,16,4,37,10,-38,16,-16,4,-11,39,0,2,4,82,-21,3,50,127,-21,-18,0,22,38,38,6,54,-21,31,-10,5,21,-78,52,117,-68,40,61,-22,-77,4,22,-13,-10,-89,46,18,5,-10,22,71,-32,-11,10,-65,23,3,36,27,5,71,-12,6,8,17,18,45,41,8,-15,16,22,50,-4,31,-27,-9,-72,46,13,11,-6,-95,39,18,10,-4,39,-52,1,-34,25,45,66,5,-17,-60,40,-3,-60,17,-39,21,6,37,51,8,-53,-11,34, /* [471][0][][] */ -42,-77,-52,-29,7,4,-24,1,53,-1,72,-3,71,121,69,102,74,48,88,-3,42,-23,-72,50,-26,64,-43,13,125,-16,16,33,14,-26,-35,-32,35,-52,-1,0,-16,-33,-45,11,24,-10,-1,-74,80,-55,-5,9,-46,27,-2,-16,19,28,-32,13,38,-6,19,-33,15,7,31,15,-6,-25,72,25,40,-70,54,107,106,24,-18,7,-15,-47,-59,-33,-13,48,-2,-32,-92,-23,-57,-35,-68,22,22,108,33,-19,12,-92,-66,-78,-14,49,10,-30,24,15,65,-127,-77,-19, /* [472][0][][] */ -3,20,-40,-41,11,34,-110,-18,43,30,-28,-20,-2,102,-30,47,-11,21,-101,18,-6,-47,54,127,122,58,-89,24,5,11,-40,67,22,41,-50,47,-31,-46,38,120,4,-40,46,-77,2,-20,58,-12,55,6,60,21,-23,-10,74,-17,-40,-7,15,-4,100,114,-18,27,-23,75,-8,23,-7,-29,-47,-43,-59,25,-78,-13,14,46,-25,60,76,1,-84,-53,-67,-34,-28,-60,49,-77,-17,2,-37,29,30,-17,32,23,-18,-50,70,-52,-14,-91,47,48,-17,12,0,-11,17,42, /* [473][0][][] */ 34,10,-103,-18,-37,-11,27,-97,-7,-1,-8,7,44,0,27,68,12,20,3,-21,83,-10,-28,20,33,63,-14,0,57,-7,-59,-22,-8,-3,-6,47,-4,22,-4,-12,73,-58,-19,26,11,-33,-28,16,29,-13,47,-22,2,-27,45,-10,-13,0,5,45,-38,-5,27,-8,-23,-22,14,10,-50,-50,22,-10,33,-28,-16,66,110,12,3,-23,65,81,7,-6,-37,51,-23,11,-6,10,1,-63,26,-14,27,-49,50,-27,55,59,61,-33,0,17,-2,-25,-54,-1,127,-39,-15,9, /* [474][0][][] */ -12,36,-40,-27,40,0,68,50,72,40,15,-18,28,86,16,5,8,21,17,3,127,54,89,20,-11,116,7,86,22,52,6,-55,-35,56,81,-39,18,-25,21,39,-10,-16,16,-67,-29,-3,-4,-101,108,44,-1,14,-5,0,6,8,-3,-80,-4,96,0,13,-55,15,54,9,-40,-23,-56,50,-63,48,8,-24,79,15,15,49,46,-21,102,30,39,17,-19,44,-61,49,-19,-40,-21,-11,7,19,-42,-10,-24,-77,65,28,73,36,21,-69,-37,19,-50,8,108,-40,67,16, /* [475][0][][] */ -27,35,-13,92,-54,9,-1,38,11,-64,50,-5,-18,-21,-66,16,-70,25,-52,-127,-35,-51,55,5,32,33,79,12,-2,-13,15,-16,-28,-27,-12,-7,31,34,-12,-18,-42,72,55,49,54,-26,19,13,57,36,38,69,15,0,37,-93,38,13,-56,-49,-26,53,26,-11,-19,-52,36,22,-25,-44,10,-55,-35,78,-19,-8,-6,104,-27,3,3,52,-15,-10,-32,-20,38,-10,-13,0,39,50,21,0,-60,32,-4,-35,1,-79,83,24,21,83,39,-32,36,7,-18,61,49,-13, /* [476][0][][] */ -66,-108,-68,22,72,-3,62,-9,10,56,22,1,13,39,14,67,34,32,6,13,76,-6,-31,17,28,77,-40,66,18,-13,-6,-42,7,30,-19,18,28,15,33,24,-57,0,30,33,-9,-38,-74,-19,59,6,21,-41,1,-28,18,-32,-2,-77,-34,18,-11,9,32,-15,15,13,32,13,1,-38,43,-26,73,7,9,-2,93,-12,41,-19,127,19,-1,-57,-34,-11,35,21,-67,-3,-8,-67,6,37,4,2,22,17,-26,7,-25,-47,-3,12,-42,-15,-19,-19,71,-35,-9,-54, /* [477][0][][] */ -1,10,-45,26,-4,-16,-9,-29,-9,20,-48,-10,-16,20,21,27,-11,27,1,16,7,-17,54,-5,21,-25,-17,30,1,-10,-19,-127,23,8,13,-4,-58,35,-32,-21,29,-41,-72,-3,-30,7,3,15,-11,-57,-28,19,6,-74,7,-5,-12,66,-13,-12,-2,6,3,-41,-7,-90,-29,57,20,-28,-19,37,-75,53,18,43,6,19,-14,-79,56,-9,-4,23,-19,-29,20,38,3,12,14,9,36,-24,19,23,3,9,-45,3,69,-14,-10,22,-18,-10,-55,-55,14,-4,15,80, /* [478][0][][] */ 21,73,18,3,-34,77,-6,-45,4,-69,-40,14,-22,20,-52,-41,-48,33,-61,-35,-100,-35,67,-31,73,-69,16,43,87,34,-4,-20,18,4,42,-20,1,-18,-44,53,44,24,-82,-6,-98,36,32,22,42,-127,-27,10,23,54,-6,-33,-11,42,-75,5,27,9,-25,-14,-20,13,-23,-20,9,-5,36,6,-19,-8,-32,39,-2,-39,3,42,32,-38,-30,-68,-41,-9,-7,-49,33,22,12,2,23,42,-94,-23,-42,-24,-35,24,26,-27,64,-9,-15,-44,13,2,-24,73,74,61, /* [479][0][][] */ -10,-17,67,-64,-17,-40,-116,-1,-72,7,-49,-89,-13,-4,-27,-28,-80,-45,-29,-74,-34,-52,-70,-63,14,-7,55,2,47,48,-65,-45,11,-40,-5,-30,-127,-85,-55,46,66,68,-37,51,-64,-41,60,-36,79,21,94,107,41,20,4,3,-35,-16,-60,-63,-26,-47,39,-19,-2,-24,-24,-30,12,-59,63,-4,9,78,56,50,-4,7,6,-115,-44,83,-86,-60,36,-11,-8,16,-3,-64,17,10,62,49,-41,-45,-38,-70,32,39,41,-61,42,-8,-51,6,23,-53,28,80,-65,-17, /* [480][0][][] */ -54,6,-19,-34,-46,54,-35,72,-39,-127,-23,45,-50,46,-28,8,30,-14,-31,-84,-5,-3,-39,2,32,-56,42,-49,-8,-23,49,12,-59,-8,44,32,23,39,-25,-42,-53,12,-50,-6,-51,13,3,-15,49,18,23,21,-17,20,-47,4,21,25,51,-37,25,-16,32,1,-51,-57,-24,10,-6,11,43,-37,39,102,37,92,-1,48,-13,32,34,15,12,29,0,41,-36,-85,10,29,16,13,35,-14,-40,9,-23,-58,-2,-43,21,12,-40,2,10,69,32,16,2,-22,19,7, /* [481][0][][] */ 28,-29,-9,23,-8,119,-20,-19,-33,-22,-42,46,-17,10,-27,-50,71,21,30,-47,69,-28,10,14,-71,17,62,-2,-3,-15,43,19,-49,-35,4,-25,9,-33,-28,-4,19,94,48,-36,53,46,-17,3,85,-39,48,108,-41,-16,-44,-1,-24,-19,-30,25,-50,-32,51,23,14,-116,-28,127,56,59,6,-17,15,-23,116,-14,17,83,-36,-54,6,33,-85,34,-18,1,85,-33,42,-27,4,9,104,37,-2,-35,46,-77,-46,-57,-50,16,53,-69,14,35,-50,-39,-5,101,0,-45, /* [482][0][][] */ -60,-68,43,-18,3,24,60,-110,-10,-27,-97,-97,-2,13,53,41,32,-9,30,46,127,-37,58,27,28,124,-46,55,20,22,-105,-83,24,115,40,37,33,-62,61,47,8,-24,51,-79,-5,38,-16,-6,36,7,49,-28,80,48,-38,-15,-1,-25,20,24,33,-29,-32,-73,12,-47,21,-8,47,24,22,110,-14,19,111,0,9,-81,-73,-86,56,27,27,-70,-95,83,-69,0,50,-85,2,14,6,20,-48,123,15,-41,63,-2,23,-30,12,-13,-67,-17,67,27,78,15,-1,60, /* [483][0][][] */ -13,8,-39,-4,0,8,-2,-50,-16,0,-6,-17,-16,9,-44,19,22,37,-6,16,-21,-18,-9,-6,-49,19,-7,-44,-6,-12,127,-16,-26,38,22,20,38,11,-11,2,-56,48,-4,-62,0,24,22,5,3,-49,-42,18,13,-53,-58,-34,-52,-23,36,-19,-29,11,57,-19,29,-9,-35,39,88,-24,70,19,-41,36,-59,10,-22,62,-8,-55,34,-40,-52,69,-24,-40,-86,21,-14,-4,-59,29,40,-48,-28,-83,34,3,-21,5,53,-40,-28,34,11,-3,58,-66,6,2,-42,-29, /* [484][0][][] */ 25,-47,-44,-29,-38,-28,-26,48,-2,64,-102,-32,21,29,-18,34,-27,29,11,33,42,-20,-2,37,127,-82,46,48,2,-26,-24,-12,-49,-29,0,90,24,41,-16,-48,-90,42,10,-39,32,56,85,-45,34,-6,-28,1,2,34,-104,37,-25,69,90,24,-42,-3,-82,13,26,-1,-36,43,29,48,-82,-24,-94,1,2,20,-37,-43,-34,-11,16,-52,-8,31,81,-14,-21,8,56,-33,-69,9,-45,-11,-45,26,-8,-20,-21,19,-1,44,79,94,-35,54,11,-88,15,12,9,-56, /* [485][0][][] */ 2,-20,24,74,-9,-31,-5,-28,-35,-47,62,14,40,18,-51,-101,-30,-44,24,7,29,-87,31,-36,-42,-78,-29,-34,6,127,45,-38,-9,-26,37,-14,-8,0,24,-38,-43,26,27,60,-10,3,2,3,-9,-9,-32,73,58,41,-81,-74,-18,7,-42,-81,-62,26,-41,18,49,-41,-72,-29,0,-6,44,-34,-2,46,2,50,-13,43,-42,26,-32,33,-67,15,-30,7,60,-91,-34,46,13,12,-28,34,-45,-36,30,-72,9,18,9,20,-20,56,5,71,27,-15,6,49,33,-21, /* [486][0][][] */ 108,-51,-30,81,13,-113,3,2,59,-88,5,93,-2,13,34,-35,6,-87,-39,22,22,21,21,61,125,35,-104,43,2,14,-30,-4,28,20,-82,-35,4,44,28,-12,-12,-12,-42,41,-7,4,-64,74,58,44,-52,-74,40,8,60,55,30,-117,-17,35,6,27,-65,3,-69,47,24,-40,-99,4,42,-80,-82,68,24,-2,112,-27,30,-56,-40,-41,9,3,-72,50,-57,-10,-17,-4,127,56,13,19,-125,16,-66,-16,58,-58,21,68,71,-29,35,21,-10,-47,92,-28,57,-14, /* [487][0][][] */ 48,16,1,-82,-16,2,14,-5,52,-62,-9,34,52,7,-4,-5,29,6,12,23,45,-73,-64,27,-46,63,-7,-51,44,8,-69,26,9,-46,74,9,22,-9,-12,43,100,-17,51,-1,-34,-3,-47,-43,61,-82,79,0,-10,16,70,-19,31,-10,-27,64,64,107,-85,0,52,-11,6,26,-35,91,31,-95,-28,-27,34,127,-4,39,47,28,-29,54,41,13,35,56,-63,-87,-12,-40,2,-28,-13,27,-69,21,72,8,13,-11,46,32,51,28,-5,39,-43,-20,0,24,38,-5, /* [488][0][][] */ 33,8,-17,19,-22,-16,21,-55,54,26,79,-34,68,-5,81,50,66,0,40,12,51,30,29,15,39,38,-22,57,18,64,3,15,8,-70,-48,-24,117,6,-54,58,-60,27,51,-31,-52,-17,-39,-25,-24,-23,65,-38,29,-35,-22,11,11,-79,-85,-127,-17,45,2,50,-53,-18,5,-77,77,-2,-17,12,-30,-23,48,-13,7,-28,55,-38,2,10,19,-1,7,-60,-15,50,-7,-33,22,-49,7,10,49,-11,-30,-25,-66,28,-27,-4,8,2,45,-29,50,-33,6,23,-68,-87, /* [489][0][][] */ 1,49,-47,-4,-22,19,19,8,55,60,-15,0,-110,93,-20,17,-26,72,79,26,11,-26,82,-41,-88,-35,19,8,-1,33,28,-8,-37,8,70,-24,8,12,34,-40,22,84,-45,13,-59,30,16,-43,27,3,-44,15,-16,-8,-87,-70,22,-15,-32,-27,-20,-41,-17,36,70,-127,28,56,20,-42,33,-44,-65,9,89,52,6,33,-71,-15,26,-43,44,19,-17,-13,-21,-37,28,-16,21,40,-25,14,11,76,-80,-9,-19,65,25,36,-29,29,-41,42,-34,-7,-31,-31,-31,33, /* [490][0][][] */ -8,-1,4,92,45,52,47,-58,56,-86,-4,21,34,42,-28,-15,-21,-20,-15,38,70,-24,30,71,5,20,-24,22,-20,19,-127,-49,49,16,-44,-1,18,-53,-6,-4,-33,22,-28,-57,-86,9,-65,-22,74,50,-10,28,-24,17,-19,17,66,14,3,4,29,12,-110,14,-19,-35,14,-49,15,-34,-13,-5,11,-34,65,30,85,-27,44,-11,-72,-40,8,-17,-61,40,-57,1,-68,-63,27,26,39,62,-105,97,-67,-31,-31,58,-18,-37,0,-30,40,8,20,5,74,20,-62,-10, /* [491][0][][] */ 12,-15,15,1,-35,-25,14,0,-42,-15,-14,13,-33,-34,9,15,-75,-14,42,-3,-67,-33,11,1,8,-7,-32,33,-24,49,-8,-18,9,3,-28,40,-85,15,28,-15,19,75,8,-20,5,24,127,39,20,10,15,-8,-23,-5,-8,7,-42,22,-23,-44,-7,-15,52,9,-24,-64,18,32,-2,-51,5,-82,16,2,2,52,26,-12,-43,-58,29,42,-72,-15,-61,6,15,-30,-28,-6,-14,32,-40,30,-3,-30,12,50,17,6,28,-70,18,-2,-33,3,8,28,36,60,-7,-34, /* [492][0][][] */ 22,59,-33,45,-16,42,30,33,49,-4,23,5,-28,50,-74,5,16,-9,-14,-44,-34,-57,95,-38,-19,-4,1,-44,-23,-74,62,-20,-24,-17,-52,71,44,-7,41,57,-19,81,-59,-34,-46,12,30,-61,32,71,-3,8,-16,-51,-19,-97,22,-33,-27,-28,-17,-63,79,64,15,42,-2,-46,98,-55,87,-48,-43,15,127,60,-16,-15,-11,-40,0,-51,-51,10,17,-7,70,-14,28,-10,64,-93,-24,54,86,74,-85,-68,-21,-35,-65,-73,77,38,-22,36,16,-8,-38,95,-47,30, /* [493][0][][] */ 35,-21,-58,8,-44,9,31,-36,28,-34,-25,27,46,8,-2,17,0,19,56,26,7,-30,-65,89,52,-12,-61,9,83,-52,-46,58,-91,-67,-6,-41,42,24,26,118,6,-15,96,127,32,40,77,-21,88,-61,109,-79,-95,6,20,40,77,-37,-6,62,89,51,-92,48,-83,-11,-47,-99,21,-11,10,-61,-26,-5,4,8,-3,87,15,-24,-17,-28,-10,31,-114,8,-82,64,96,-7,-16,-9,-44,-52,-21,-39,36,31,38,-16,8,24,60,38,65,6,-8,21,22,3,62,-73, /* [494][0][][] */ 1,-75,-66,-25,11,-22,2,-33,5,54,-17,28,2,-10,-19,32,24,-35,9,29,26,31,-26,46,25,-29,-4,66,-22,0,2,-95,-41,1,20,9,4,7,127,6,11,7,-66,-30,-68,32,11,-25,22,-4,71,5,9,64,-1,60,-55,-70,-30,-50,2,31,-42,14,-19,30,28,13,-21,18,1,-40,-31,-29,-10,-37,7,95,-38,33,36,-15,34,16,-51,-18,8,19,-33,-13,17,-84,-4,-30,6,-2,72,-9,48,-24,93,56,54,-39,1,-7,-38,36,2,8,59,17, /* [495][0][][] */ 74,-32,-34,-16,7,-55,-18,-12,41,30,43,4,17,16,72,-8,66,-32,-38,20,72,1,-25,-15,-62,29,-25,88,15,43,17,27,9,6,-63,12,-58,-32,-46,14,-14,6,-11,30,-25,22,-1,-57,-5,43,64,-31,25,26,-38,4,-41,-104,-10,-26,-7,-8,-51,93,-17,2,-31,-8,19,34,-27,47,-60,-17,-5,6,83,13,3,-30,36,76,66,-127,30,17,-22,28,-110,-70,-25,41,-2,36,47,-13,-53,-68,19,49,27,7,48,26,53,-23,4,58,15,-17,-11,-92, /* [496][0][][] */ 9,43,-14,-5,-15,-14,-16,26,-50,-37,-42,11,-93,-7,31,52,-39,-52,-4,-16,17,15,-8,-14,127,8,-43,32,5,-52,-12,-63,-4,34,-28,38,-66,-46,-40,54,-9,-3,-52,-2,20,42,-26,-18,49,-22,24,12,7,-42,3,55,10,4,39,1,-43,-15,-35,-72,-4,-87,10,18,-24,-37,23,-32,49,61,80,16,12,-9,-23,3,69,5,-44,54,2,1,-39,-18,52,1,14,-34,-61,-42,79,-17,-37,-1,-40,-43,-18,44,-25,-3,3,-1,70,-71,-12,50,35,-1, /* [497][0][][] */ -43,-10,-73,-37,-71,39,30,-25,37,32,4,-85,43,23,-54,34,127,-4,57,23,73,49,-10,-17,-79,12,10,38,-21,9,-29,4,-18,8,-4,18,80,87,7,38,-5,60,-11,19,19,-34,-60,-3,55,-64,114,71,25,-120,-39,-38,33,35,-65,38,22,10,16,2,14,11,-12,-29,-62,34,-21,72,-34,5,-20,21,17,1,-6,25,7,32,43,-84,-49,65,-17,24,-44,38,-10,-62,80,10,-78,81,-11,-25,8,34,-3,-54,41,-6,27,-9,101,9,81,37,-21,20, /* [498][0][][] */ 25,-69,-109,11,-35,-45,-45,-113,76,-17,17,-3,50,-27,24,-11,-50,-11,-35,11,64,-67,86,9,59,-3,14,58,3,68,-23,-39,60,-20,28,-89,57,-39,-28,31,46,-23,22,-19,-26,13,-24,-42,47,7,-10,-13,64,21,91,5,3,5,-127,74,41,5,-80,47,-66,6,-51,-72,-72,52,3,-1,-27,-10,22,-34,72,10,94,1,-36,16,23,-52,-61,70,-38,24,-31,-58,0,60,28,1,-4,40,-52,14,-53,-16,3,-65,-4,84,44,47,29,33,-11,29,2,-27, /* [499][0][][] */ -36,-66,-1,-54,57,87,-13,-79,30,-26,-33,-54,105,17,33,63,52,-30,111,-29,7,79,-28,94,25,3,4,2,44,46,-55,29,-16,-1,89,90,47,32,27,-8,-22,-45,-11,-44,-10,50,-33,-75,39,8,-13,-85,127,-30,6,-63,17,-30,-26,-25,31,88,37,23,-3,-47,-28,-20,-3,54,-64,-85,-90,11,-35,25,14,60,-25,-1,28,-4,79,77,-48,-9,-69,-27,-36,-27,-20,-43,25,27,-67,-27,107,-8,2,-36,12,-53,20,-17,-25,-34,-44,25,15,-42,101,40, /* [500][0][][] */ 66,-29,-71,-40,13,-9,63,61,1,76,-100,32,31,57,-10,-49,17,-4,25,27,-35,21,35,13,-16,-18,96,32,-10,23,30,-37,-21,80,-2,61,52,57,-51,-37,-62,54,30,33,-67,90,46,62,-20,-2,-20,-21,-46,-51,-81,-73,-31,-32,22,2,-45,-39,-43,-44,115,37,27,47,65,-9,-72,1,-7,53,-22,42,67,-8,-5,23,16,11,-16,44,12,-25,19,1,-7,4,-39,53,-20,45,7,19,3,-39,-7,20,4,-3,-11,66,-13,1,91,-127,17,26,-29,-33, /* [501][0][][] */ -5,-20,-8,97,-15,-42,62,-46,24,-9,35,-13,57,23,44,-24,-21,-18,-44,-59,-4,30,9,29,17,97,-11,-52,63,53,-13,9,-12,80,-82,-40,44,-36,44,66,-5,-30,-49,-86,-30,-10,-14,2,-80,-25,34,1,54,18,64,33,-1,-88,-32,12,-42,13,47,-46,0,-16,38,-18,-2,43,-29,16,13,-43,-20,-48,-11,73,-45,-100,-46,49,25,-12,15,46,-41,-8,-76,-38,-30,-46,20,29,-11,41,-16,8,19,53,29,-30,17,-4,-23,56,-51,-34,127,40,-2,-65, /* [502][0][][] */ -32,39,-25,-55,-65,-47,79,40,41,-45,29,45,96,-49,16,36,50,54,11,-42,-41,2,-65,23,98,24,-57,12,-22,3,14,48,59,89,73,59,4,-44,-22,1,-15,44,87,-74,-96,1,9,34,93,-104,-8,28,-21,-99,51,-54,-6,-55,-10,41,-17,26,-127,59,-30,38,-17,-14,52,12,-18,-21,22,-107,-15,-32,-20,87,101,24,58,-43,58,-51,1,28,-39,-39,-29,-21,-26,-28,6,28,-44,25,40,-26,17,37,54,-25,-32,55,-90,52,-10,64,1,-50,65,47, /* [503][0][][] */ 48,-35,-9,58,7,48,14,-114,74,2,5,-49,23,-22,50,54,31,-42,9,-20,-8,5,1,65,19,3,24,-57,-57,-43,-18,0,24,70,8,32,-48,8,-45,58,13,-44,-12,17,52,-21,47,-124,-18,20,9,-48,83,-9,48,28,-58,-3,-82,14,2,-3,-9,61,-53,-15,12,-1,23,50,9,-1,-102,-14,16,65,56,48,-16,27,46,-48,94,4,-61,23,-5,57,-8,22,-127,-26,-29,68,50,16,111,10,-57,57,-22,-26,-66,-10,35,3,80,55,45,37,36,55, /* [504][0][][] */ 19,-37,-44,30,-66,7,-79,51,-39,-33,-56,107,-21,-48,6,4,12,-29,47,-111,-63,14,-9,-27,27,3,27,66,23,-21,-12,40,-52,83,-14,30,7,18,-19,37,20,60,-23,84,-32,45,26,-40,-13,-45,25,93,91,-48,22,6,42,1,25,7,-36,-6,71,42,13,9,-5,-16,-5,10,50,-17,12,76,-2,25,-18,23,33,-11,21,17,4,31,-4,-20,3,-28,23,127,9,-82,-21,79,4,-41,25,-34,9,-55,-60,-33,16,20,27,-33,66,13,-19,35,31,21, /* [505][0][][] */ 13,-10,36,49,29,12,46,-49,-8,-127,66,15,49,41,19,-26,30,-15,-8,-34,43,-11,30,36,-24,-22,-35,7,-29,57,6,11,39,-8,56,35,57,-53,-6,-11,-27,-26,29,-97,7,-26,25,-12,80,-5,23,-22,57,54,12,-19,-17,6,1,59,37,41,-39,2,-43,21,10,9,47,14,1,-117,3,46,-3,-55,33,-28,-45,-1,25,31,-6,-26,-42,31,-80,-92,-51,-18,33,3,-10,65,-14,-1,-17,-81,30,-36,12,21,71,49,43,43,24,-21,46,40,69,30, /* [506][0][][] */ 32,-1,-56,8,10,-31,-55,-20,8,-20,-6,31,-55,59,44,-11,39,-21,28,-34,25,-6,19,11,-33,59,55,-10,17,-26,16,-35,-18,1,35,6,16,44,-50,17,30,62,-1,112,-12,10,-1,-44,28,-61,58,-2,-58,17,-28,9,-68,-1,0,6,-4,8,-6,77,22,28,-25,14,-40,-32,39,-42,24,3,83,127,-34,23,44,-78,-30,48,-2,-13,52,-66,20,60,4,-59,-59,56,52,64,67,31,-72,11,-26,-45,1,-53,32,-10,16,-41,71,-32,-33,-12,-56,-39, /* [507][0][][] */ 37,13,-62,18,72,8,28,-15,19,-11,-84,66,14,11,50,-64,25,-22,15,-3,-30,29,49,44,7,22,26,38,40,-14,32,18,-55,25,-41,8,-7,-14,-80,11,-20,-3,29,90,17,95,25,-7,39,-51,14,38,15,11,-28,-4,-22,-14,33,-5,-12,6,43,10,69,-37,-22,-13,127,20,-40,18,13,42,50,33,-33,63,1,-41,-31,-43,-92,40,79,-8,83,43,43,-43,-80,19,26,-16,-7,37,-56,18,-13,-75,-65,-19,74,25,-2,-56,11,-1,-71,68,40,-91, /* [508][0][][] */ 38,57,36,-21,-102,-51,-14,-79,54,-107,-59,77,10,-63,1,-20,-14,27,-6,32,-10,-15,85,-127,5,11,2,-49,-52,-29,-31,8,54,55,-43,23,-13,35,-72,18,39,8,-83,-53,-14,102,63,-20,25,-5,59,-23,110,-84,18,-12,-67,52,77,-69,-37,-70,-32,-61,32,-43,-75,93,-56,43,-84,79,-21,28,-12,98,-13,0,-58,-14,100,16,24,-78,-38,-27,-8,4,-20,-23,-23,-74,61,53,-15,78,-11,77,-43,-6,19,-45,70,-57,-88,-86,4,-91,-25,13,7,-5, /* [509][0][][] */ 27,-33,-41,82,52,-11,4,7,-6,15,20,0,-17,69,-22,51,-7,114,57,-34,25,-39,5,-55,-12,-9,-19,72,-46,-12,-63,1,-10,-16,43,51,-91,6,31,-43,-9,-69,-70,27,-67,101,24,1,-8,19,17,29,-88,-43,-27,6,-13,-21,-20,-51,17,-57,-54,-21,-3,32,-73,7,52,-9,32,46,-84,51,92,59,-31,25,-45,27,-46,-14,-34,42,-9,-78,-17,23,5,1,-49,-20,-27,-88,62,47,3,5,0,4,-17,20,14,127,-60,-58,65,4,0,-14,43,-102, /* [510][0][][] */ -10,25,0,-29,-24,32,-14,-23,-27,-35,30,-1,-9,26,25,60,33,-11,-12,11,9,-29,-11,-37,36,25,-39,31,40,15,6,21,41,-15,1,-39,12,-39,13,46,7,-1,25,-3,34,37,18,-28,43,-33,19,-20,64,-66,-24,-32,3,28,-127,22,73,51,8,-44,-35,50,13,-10,25,-7,-27,-32,10,10,9,-1,-22,9,26,40,-4,16,30,2,-52,64,-48,-102,-10,1,-50,2,-53,38,-70,3,-16,40,15,18,-8,26,72,12,46,52,-55,10,25,57,80,9, /* [511][0][][] */ 45,-39,34,34,4,-57,-81,-29,-127,12,-121,1,-50,84,-74,-18,-1,11,-5,-49,93,-80,72,-37,38,-23,-34,47,119,20,-69,-73,90,2,-16,67,-88,-10,23,-45,-58,33,-52,13,-77,-27,124,-9,11,6,33,32,-71,-16,6,-56,-104,19,26,-52,32,-65,20,35,-33,-28,-24,2,2,-31,42,101,-50,-17,21,-41,-125,8,16,-74,-14,-33,-27,-80,-18,-66,-48,-51,-40,-51,-21,-48,-16,37,123,-23,-71,6,-48,-9,34,24,-3,27,-103,54,-44,-72,-4,4,-58,-29, /* [512][0][][] */ -41,43,-7,89,-57,-40,-12,-11,-18,22,42,-14,-40,38,11,69,-8,12,6,-11,-16,-73,71,-23,5,-39,33,26,17,23,21,-50,0,13,41,21,-61,-19,46,-26,-11,44,-23,-3,-17,29,27,-19,-30,-63,6,-22,43,-41,16,-26,-25,42,-55,-48,-19,29,1,-12,-40,-33,22,71,17,-43,54,-6,-15,-24,-9,75,7,-19,-75,-16,21,80,12,-8,-9,13,55,-20,27,-80,61,39,-26,-8,21,60,-127,19,-49,60,18,-28,80,20,-43,-17,-30,-4,-33,74,58,5, /* [513][0][][] */ -1,20,-34,30,28,31,-35,-26,4,-2,-76,32,42,88,-6,11,8,53,22,3,67,-83,27,-16,-11,-5,16,32,-24,21,34,12,-7,-26,-6,2,25,48,37,90,-21,-4,7,9,-32,33,11,-45,-71,-11,-5,-10,-39,-38,-50,-5,-6,4,3,8,55,29,71,24,39,4,-58,-7,81,-12,36,84,-25,26,-9,16,-33,14,-41,-57,47,71,-42,94,45,-4,-22,-16,-49,-2,-12,-63,-17,12,3,-69,-42,9,-13,-33,-29,-90,-28,-4,-26,13,35,-127,-34,-6,-44,-53, /* [514][0][][] */ 14,22,-51,-3,39,13,-68,114,42,-13,-16,75,-76,44,-27,-18,-54,24,-3,-6,-41,-4,59,-22,26,-42,-26,16,-7,5,4,-16,5,49,51,40,21,89,-57,-71,21,26,-71,56,53,6,14,-9,6,-13,-38,-25,29,63,-15,-53,-77,17,38,18,-11,12,-68,-81,67,-71,-10,35,45,16,-11,-22,-7,1,24,33,40,-23,-5,55,62,-25,6,7,32,73,1,-60,33,-53,21,25,9,100,-94,44,0,53,22,-98,-2,14,127,87,-62,21,54,-27,-42,14,65,0, /* [515][0][][] */ -59,13,-59,-8,-76,13,3,-12,9,19,46,3,37,27,15,68,37,13,36,51,61,60,-22,33,3,32,-2,57,-25,16,85,-57,-77,10,-22,-46,-20,25,23,-24,-36,-40,-11,-26,27,-52,-67,-13,0,3,38,5,-18,-32,44,-10,-51,-31,-22,41,34,32,34,-7,22,-78,-18,46,7,37,-21,13,-19,-46,-54,1,33,32,-57,-61,-32,-7,-2,8,-69,51,25,64,-127,-31,31,28,-14,-13,-3,35,40,-22,69,-29,48,20,4,20,-69,0,-42,-11,49,-19,-6,-12, /* [516][0][][] */ -24,-24,31,88,-66,-4,-20,36,15,-42,19,57,-13,37,1,-77,11,-22,3,-42,-44,-16,4,-27,-44,-63,58,-21,-27,66,17,12,-49,-3,69,58,-10,46,-2,-7,-69,-13,38,94,-37,59,-8,5,-2,-36,27,8,11,46,-11,-43,31,-30,26,-127,-31,9,-22,30,-37,38,-71,30,-30,11,16,-31,-33,33,11,38,-1,35,-42,27,38,60,-69,23,-66,-36,57,-42,-16,27,32,36,1,40,-46,-17,-3,-55,3,-23,-17,34,-59,6,-27,3,35,-2,-35,21,75,2, /* [517][0][][] */ 13,51,-25,-30,-49,58,-5,-13,11,17,-11,25,-37,13,44,18,-33,-49,22,17,-34,-40,16,59,67,-71,1,30,-10,-11,42,62,-66,53,-24,40,69,14,-102,-36,-121,-19,-64,-46,20,127,37,-108,-15,-81,88,-31,-18,-30,17,-58,-30,56,-19,41,-2,-83,4,-37,74,-28,-98,40,41,24,13,10,-29,3,-23,71,19,20,-61,19,23,-40,-55,93,61,18,64,-1,47,50,-68,-20,-5,60,90,7,61,9,14,-26,-57,-6,-47,-16,-18,-45,83,40,-2,61,45,13, /* [518][0][][] */ -61,13,1,37,-44,-60,-72,56,-78,14,27,-19,1,3,-8,-8,-22,-51,19,15,-90,-51,-1,-10,10,-55,-18,85,13,79,42,-52,27,37,21,15,-72,-68,19,-49,-5,14,-51,64,-31,33,41,54,-3,-34,-22,34,-10,-115,-32,-30,-73,-44,-37,6,-30,-29,3,36,67,18,24,116,14,-103,15,-50,43,52,73,43,33,3,-21,-39,-68,-32,-37,2,-14,12,54,-64,-21,-127,7,-1,25,24,48,35,-9,-12,57,50,45,-7,41,76,21,25,-7,3,31,70,100,15, /* [519][0][][] */ 36,25,-4,-19,-27,-4,51,-77,54,-53,-21,-15,35,-87,-12,-8,35,-50,76,17,33,70,-33,-9,0,-42,1,-25,21,127,-54,6,-34,8,-10,3,-1,-12,65,45,-8,-20,-20,25,-17,-5,56,8,34,45,27,-21,106,-40,14,2,-61,13,-37,33,16,-14,14,60,-17,-75,10,-11,109,-44,-59,-48,-58,-71,7,-14,9,25,15,8,-6,-75,-12,-63,-70,-10,-13,-44,-27,-72,-43,-65,-41,37,48,-43,4,-34,62,14,-44,-2,-10,-50,-50,39,38,38,50,-50,53,-31, /* [520][0][][] */ 3,-3,67,29,34,53,-8,-31,33,1,-19,35,-6,41,26,54,66,-38,2,-57,11,49,-70,32,59,43,-37,18,13,67,-41,32,5,17,-42,-23,-30,-14,48,20,12,-9,-65,8,-6,24,-3,-18,40,-53,-12,-6,0,19,8,25,20,-19,-21,16,-18,0,-50,-65,-32,29,44,-3,-11,47,9,-14,-12,-23,68,-35,46,19,16,-53,-18,-29,8,-41,-39,19,-14,-32,6,13,9,-58,-2,54,-25,127,-25,-42,14,-21,-10,-5,53,31,-16,31,-39,10,-13,-30,-13,-7, /* [521][0][][] */ 39,17,17,6,23,42,18,-5,-14,-15,-49,-24,54,28,-30,-18,-30,17,4,-13,-46,-49,30,17,40,6,70,22,64,54,-2,-63,-27,13,-10,12,-75,-13,-27,-11,-14,57,-14,3,-71,34,60,-68,-33,-39,18,44,20,-4,-7,9,-28,-3,28,-23,7,7,-11,-62,-10,-2,-11,-10,36,24,-32,-36,20,15,-26,21,-65,3,3,-64,-43,-43,-7,19,-30,12,26,43,13,-21,0,0,14,52,37,-43,13,3,34,28,26,8,71,77,-75,-38,-16,-14,9,127,28,-18, /* [522][0][][] */ 90,-6,-33,-3,-50,17,35,-11,127,-26,62,-53,9,3,-22,55,40,54,-18,-38,16,27,7,-13,36,0,-11,-10,24,17,-21,63,18,-93,-24,-31,91,-19,16,1,48,-16,22,-13,-67,15,-18,9,59,-17,7,-40,-55,2,-1,24,-45,-16,-59,-12,63,39,-32,53,-27,62,-45,-46,65,-7,-84,2,-109,-40,62,18,19,-19,55,-19,22,12,-31,29,-21,-8,-21,-36,-39,-109,-19,-22,4,38,-7,7,28,-57,24,5,50,-8,-15,39,28,8,87,14,9,19,-24,-33, /* [523][0][][] */ 11,-16,0,-61,39,-29,-73,13,-23,33,-66,-24,34,101,-66,31,127,-10,37,-21,96,0,56,3,36,46,-51,27,60,5,90,92,-17,-6,-7,83,80,-6,23,63,-68,7,-17,-63,-4,18,-46,73,-3,-18,-10,-17,-58,-112,8,95,6,-67,-18,22,47,5,48,-29,8,-12,49,28,-99,98,-118,1,-53,32,15,1,52,6,7,-64,-1,9,19,38,-2,-12,-65,-30,-3,32,-102,-92,21,-33,23,67,-29,-29,77,120,10,1,48,-22,-33,108,34,-22,83,3,73,-19, /* [524][0][][] */ -33,-30,-3,26,-38,-61,-23,70,-3,-30,12,20,-35,52,2,-68,73,-28,66,-54,-33,-2,97,-65,-10,-30,-55,33,49,79,7,7,-31,66,7,-72,-93,-48,-19,3,-30,34,13,42,28,20,19,50,20,-18,-27,31,-9,-5,-18,-63,-7,77,-54,-27,-73,58,13,-66,19,27,-1,16,-39,-83,20,-51,3,-13,58,-8,-29,11,4,49,54,58,-43,-20,1,27,-26,-46,51,46,30,-7,-46,-12,-90,-57,-13,-50,-53,28,42,1,32,44,-35,71,60,-96,-59,71,127,-43, /* [525][0][][] */ 27,-42,26,-14,-24,-19,-61,25,-12,-32,7,20,7,42,54,31,11,-43,50,-57,51,45,36,-65,3,17,13,-49,40,47,15,-49,-44,-56,11,4,42,-1,-40,-104,-23,50,-7,-23,15,22,-8,-47,79,-81,26,85,-23,-15,-47,-74,7,86,36,21,-53,-66,33,-16,2,-24,31,9,30,-13,62,-39,-26,-26,-2,86,51,13,-13,-57,45,-11,-59,112,-11,60,47,6,57,-16,5,-7,-15,-45,-17,84,11,-20,-64,-54,21,48,18,-14,-79,-127,74,-30,0,-4,-23,-11, /* [526][0][][] */ -35,-85,38,68,-49,35,10,5,38,-27,11,-77,70,39,-32,46,-51,-20,92,-18,93,7,-83,64,89,-4,-5,-21,39,-35,29,-52,-43,7,-14,-58,24,-24,53,17,-58,-44,25,-60,-9,-43,-64,-51,40,-6,27,-17,21,-52,-34,-67,48,-85,11,-22,23,45,-23,-10,-37,21,3,6,-50,-16,30,25,19,-28,-18,-25,17,41,-2,-53,34,-3,-6,2,-51,10,-94,40,16,-44,44,-31,10,-19,-41,32,81,54,15,-21,127,-8,-19,-2,-25,-36,35,32,35,-29,-20,-8, /* [527][0][][] */ 42,9,-22,-46,0,-25,-55,16,-32,6,-15,62,61,3,-77,-35,-6,12,28,9,-58,-55,-39,-3,49,-8,9,46,39,74,8,2,60,-18,11,-24,15,51,-56,15,1,58,-99,55,-52,41,47,-41,-37,-94,-52,67,15,-2,-29,19,-12,28,-54,19,-51,56,57,-26,18,-120,-1,73,-31,1,-32,59,-5,8,-59,-29,-26,65,-9,-35,-17,127,-42,-41,1,-24,31,6,5,23,-33,-101,83,-2,10,-31,91,43,67,12,13,6,47,-2,-50,38,-23,-1,-10,-36,16,-85, /* [528][0][][] */ -34,4,-31,24,72,-26,-2,56,36,22,25,-39,30,-7,33,2,69,-17,7,7,15,-24,-46,33,5,-57,-1,-45,54,87,-1,30,6,10,-6,12,-13,55,-45,20,-10,-1,-43,43,-40,-27,2,6,-20,-3,21,-10,-36,9,10,-30,76,13,-52,53,53,7,-95,35,21,15,-18,44,-11,81,-32,-35,-11,59,-21,29,37,43,24,-1,2,27,-35,-34,0,72,-14,-21,-36,-9,28,-69,-32,-10,-127,18,3,-103,32,31,-45,-10,-56,44,-6,44,18,60,57,107,-18,-17, /* [529][0][][] */ 53,-36,10,-11,33,40,-20,-4,8,-26,-78,15,80,-47,-72,-64,-12,5,79,-34,67,-50,-49,-46,76,-27,-40,24,-16,-13,62,-22,-51,-35,-46,18,42,69,37,8,-59,45,0,59,-12,18,33,-47,-4,-79,39,41,-44,20,-55,-86,-7,20,3,15,4,-37,64,52,39,32,-15,14,7,-16,87,-26,7,51,12,4,-117,-35,-97,-127,-51,21,-38,-9,-1,-15,49,-1,28,-24,25,-34,-19,83,40,-16,-36,13,-5,-48,-47,-59,69,0,3,18,50,-16,4,31,6,37, /* [530][0][][] */ 52,-19,46,-23,-13,15,-84,-3,77,-51,-50,26,-31,-40,-12,-60,-88,19,3,3,-23,8,-28,-31,-13,7,36,-12,68,-75,-21,15,30,-69,-10,81,-9,25,-4,28,32,-10,-38,63,-61,-2,13,-10,58,-58,18,4,60,-75,6,41,-57,-32,-16,16,-11,34,-22,50,24,-65,-11,-9,15,39,-20,14,7,35,49,58,-93,29,36,-31,4,28,-23,-14,12,-41,5,-31,-6,-37,-101,32,75,56,15,38,-8,76,-49,-36,-11,-85,78,1,-127,-23,101,46,-57,18,-49,-68, /* [531][0][][] */ -15,-4,-27,35,-24,-20,-5,102,45,2,27,6,-3,-13,24,-26,-20,-2,10,-10,-43,-74,27,-17,-17,-52,27,127,-12,26,-9,19,-3,37,-26,-2,-39,62,-121,-47,9,52,-28,13,-42,20,18,15,8,37,22,1,-3,-39,-15,-14,-21,-37,-17,-54,28,-6,-27,14,84,-19,-27,90,24,32,-9,-64,52,66,2,38,56,-29,-22,22,53,27,-80,-41,13,33,70,-15,47,-8,-9,19,-8,-17,-20,15,8,-36,49,44,-20,-65,0,73,-53,-4,11,-15,-5,35,-42,-40, /* [532][0][][] */ 110,-50,50,19,-4,-14,-20,-10,54,-67,-86,-53,40,-5,18,-19,-5,-56,85,-15,40,-17,-17,21,53,20,50,20,76,-33,85,15,34,-18,-19,72,-36,77,31,-57,-24,54,75,38,-127,-12,82,72,-56,2,-51,61,41,-82,-73,-59,56,13,93,-59,61,-21,-21,-64,-9,-36,-57,1,35,-2,-14,60,-91,89,33,50,-35,28,-87,14,-12,-49,-29,-15,11,-13,14,44,81,-27,40,-7,-46,-11,-7,29,-55,-45,-55,-35,-3,-12,-5,21,-44,-17,34,5,-66,-2,-26,90, /* [533][0][][] */ -28,39,-31,-15,-34,9,-9,-63,-39,14,-53,41,41,30,-79,-7,-101,68,46,-4,-81,-24,-14,-36,127,-61,35,39,23,10,-50,-22,-33,17,58,11,6,-37,49,-13,46,24,16,32,4,51,74,-83,-35,21,-44,-54,-10,-10,-47,-5,42,-27,-56,-2,31,4,-59,-6,-5,-49,-117,31,-27,35,-12,9,-6,38,48,55,-13,51,-77,74,98,-21,-6,7,3,13,-15,7,-6,-17,-44,66,98,-43,-14,19,-73,59,-43,-33,4,-45,7,51,-51,-58,37,21,-75,-17,-42,-62, /* [534][0][][] */ 18,53,16,-35,21,-55,52,42,-18,35,8,34,-56,20,-53,6,2,-64,-29,-14,20,18,-16,44,30,37,-16,-56,17,-23,-41,36,-38,64,-40,37,16,110,41,103,-91,90,45,68,-7,-7,45,34,32,5,10,105,29,-127,-99,-34,-5,54,16,-51,-28,-6,-47,6,-4,-56,-34,-12,84,-48,-34,33,19,39,13,-40,-84,-37,4,102,125,6,-21,6,-17,60,-67,-16,28,41,14,-43,13,-19,-20,6,5,2,-79,30,50,-68,30,72,5,41,4,-50,11,54,-34,-16, /* [535][0][][] */ 100,23,8,65,38,29,2,-24,72,-81,-38,-9,-7,-56,-64,-72,51,-7,31,52,-103,6,16,22,-1,-65,84,26,-16,95,66,11,-5,69,-10,86,-1,42,-99,-66,-78,-34,-52,-15,42,53,23,48,21,14,-66,12,61,-30,-33,-85,-86,58,4,29,-25,-105,22,14,-11,-90,-89,97,127,-50,-49,-18,44,53,17,-21,82,-62,42,-10,53,-87,-5,-10,28,-22,54,0,-34,1,-89,5,84,-12,-66,-32,34,-34,45,2,-32,-101,60,11,-52,-46,121,-24,-17,112,47,-64, /* [536][0][][] */ 22,-48,70,5,49,3,-66,3,-106,62,26,-43,-69,75,-127,65,11,22,20,-40,-26,-18,-33,-7,-5,-38,53,26,-43,12,-1,-25,-3,79,21,99,-55,-33,5,-45,-15,-6,-21,36,-10,54,-14,-63,-3,31,-16,16,-60,-59,18,-13,-23,26,-42,-36,-7,-25,-24,-75,-15,-33,9,85,34,-125,50,-8,31,51,71,8,45,61,-48,1,109,-17,-51,5,9,16,13,31,-7,-47,5,-26,42,-25,44,66,-7,-15,-80,75,37,-53,6,56,-61,-11,4,23,2,69,11,35, /* [537][0][][] */ -37,16,-54,-34,10,56,6,5,5,-14,18,57,5,59,8,-4,59,-58,-35,-72,-76,39,3,-8,25,-61,-40,47,-21,-31,42,18,-97,52,-35,42,29,16,-23,-24,21,-3,-92,22,-99,23,76,-75,-4,0,-28,39,1,-42,-17,-66,-25,72,-21,22,-13,-3,0,-93,14,-52,7,26,64,-15,27,-5,32,14,25,56,27,3,26,4,21,-9,-5,2,26,7,57,14,58,-33,-69,-29,88,-15,1,20,31,-57,-37,-30,-43,44,30,-26,-40,-15,3,34,-30,127,35,-22, /* [538][0][][] */ 50,60,-8,-38,70,-54,-16,25,78,-12,9,-24,10,13,-33,-8,16,-6,-38,-10,24,54,20,72,-12,36,-31,15,-36,-19,-48,-1,36,48,-27,-4,57,36,31,26,1,57,47,12,24,-11,-21,3,67,0,47,2,-27,-73,79,-53,-49,-56,12,35,40,46,-127,52,31,72,-3,23,-1,-31,-65,2,-71,-24,8,-21,9,14,94,1,42,17,30,-35,-16,40,-3,-17,-38,-122,-29,-16,-20,5,-75,68,-37,-23,31,1,69,36,65,-51,5,32,107,24,47,20,65,58, /* [539][0][][] */ 88,-50,43,19,31,79,-39,10,26,-48,21,40,127,39,-37,26,121,-48,-125,-101,-19,97,-2,50,87,49,61,71,28,41,-103,-24,23,100,-97,44,4,-23,59,-58,47,69,-57,-13,27,-47,-52,-66,35,-55,42,-28,116,8,52,-47,7,-41,-66,28,-13,1,-81,-1,-58,-43,15,-50,9,-42,1,-10,46,5,-9,18,99,-11,51,39,33,-83,-16,1,-72,60,-68,-10,-19,-24,31,-9,70,47,-59,76,-31,-43,86,8,21,5,51,114,-40,-6,-28,93,51,-28,44,-58, /* [540][0][][] */ 15,-14,-8,7,24,-88,-45,8,-27,31,-86,-5,-46,82,-34,2,46,-55,14,-102,14,20,16,-72,91,-27,21,13,22,17,7,-35,17,-7,-21,-35,-28,32,8,30,-13,25,35,9,-46,-16,17,-10,24,-40,9,63,-65,-61,-18,-38,0,5,16,-36,47,8,-6,-17,-55,31,-54,24,6,-127,-16,-13,-24,-3,54,23,-58,13,66,21,-7,36,-60,-43,-24,-41,49,4,47,54,-5,-33,-25,-46,29,-2,-41,-26,22,-16,79,-1,-25,59,17,-23,65,-58,-2,49,-32,-64, /* [541][0][][] */ -17,-30,3,-52,-27,14,-39,38,127,-62,-18,-18,37,-35,-51,50,-58,-44,30,62,38,30,6,-4,-2,14,-5,41,-50,28,-33,4,-25,-40,-13,4,-12,16,-57,49,-11,-26,43,-18,-58,-22,69,-64,26,98,39,-37,-20,-12,69,-15,4,2,-15,10,67,124,-16,-1,-21,20,34,-32,18,74,-59,-62,-36,3,39,-3,26,55,-77,-4,-25,3,11,62,-51,-13,-39,-54,-22,-63,-12,-16,-82,26,-51,-11,23,-26,52,-32,-27,42,10,-7,-8,35,-19,16,2,-10,40,-60, /* [542][0][][] */ 80,28,5,-22,-31,-1,-22,-58,-42,47,-6,-4,13,2,-15,-23,10,74,14,9,-35,-88,-43,-11,32,-41,60,42,-38,65,63,-38,-62,3,9,71,14,-77,-6,-29,2,-26,-115,-50,58,48,70,36,43,-108,-34,83,-58,-58,1,-84,-13,56,6,57,6,13,-98,-21,2,-49,-127,20,-18,-37,17,-74,-52,-33,-59,40,46,34,-32,-26,9,72,-30,37,11,-99,18,52,69,47,-39,30,75,12,-56,-45,47,20,22,-31,72,28,46,90,-5,-10,17,-34,49,85,61,-12, /* [543][0][][] */ 71,-36,46,9,-7,20,-27,14,-27,-42,-49,49,35,-20,-24,-27,-37,-2,16,-31,-17,-100,-31,-41,65,32,22,31,-26,-21,-3,-29,-45,-2,-4,3,28,-16,34,-22,-14,-16,-3,8,27,4,6,-69,33,-95,27,23,-68,0,-26,11,-21,-61,47,55,-74,-4,-23,-18,55,-42,-102,-1,26,10,-6,-34,3,22,-33,-4,1,-33,-7,-8,12,-4,-33,46,52,3,-8,3,58,5,-86,43,45,60,-27,-52,40,-18,-19,-30,-16,-46,11,34,-34,-25,25,-22,-23,127,10,-70, /* [544][0][][] */ 49,-20,-39,10,-36,3,24,-67,68,-93,4,46,4,23,12,-86,-51,-31,26,-20,46,-46,42,31,7,-24,12,2,15,-11,52,-10,12,-20,-45,-18,51,-17,-37,96,-8,28,13,14,-15,31,-16,65,41,-27,-46,-35,5,-56,-53,-23,-37,24,51,-41,-6,-2,-5,-30,79,25,-26,-32,127,33,47,-24,12,27,-21,96,-36,50,-9,-40,63,-67,-32,43,-27,4,2,39,25,10,1,3,33,29,1,-14,28,45,-33,-22,23,16,20,0,-99,-78,-7,-2,-10,49,-12,-40, /* [545][0][][] */ -73,-81,-18,-1,-18,22,-86,-20,51,-15,-99,-81,-12,60,47,55,123,28,37,55,102,-17,2,18,-16,11,50,26,30,95,72,-14,-56,-15,-14,21,10,-62,-35,103,-101,63,-10,-43,-12,46,-21,-12,-53,14,34,-80,42,57,42,-4,-33,-85,-87,-40,26,-67,-127,93,74,102,-31,-57,21,74,-31,49,-40,51,-96,22,-47,85,-48,20,69,-67,-55,-27,-20,19,-63,7,-111,-91,31,46,-52,54,-14,38,-16,-68,78,81,92,-15,-67,82,54,22,13,-23,45,66,87,-17, /* [546][0][][] */ 35,46,33,14,-45,-70,29,6,36,-24,-22,70,-3,-54,16,-79,-4,-56,47,68,38,-27,20,-24,127,-28,18,63,-8,-21,33,-17,-123,41,-26,-15,-48,9,-90,-81,-45,64,-73,98,-33,74,22,-44,-25,86,-52,72,-5,32,-5,-30,-12,-3,86,-25,24,-3,-44,-7,-61,-31,-79,31,-18,-48,44,-16,0,21,84,66,71,10,-2,41,36,10,-48,51,2,-30,-14,25,-1,20,11,67,-19,9,56,-13,-36,-4,53,-7,7,39,15,-64,-36,-11,18,-2,-35,54,81,-28, /* [547][0][][] */ -87,12,11,-64,7,-15,-58,13,-25,18,-66,-14,-81,34,-1,75,33,-1,50,20,84,-47,14,-41,41,-16,21,-7,42,-54,10,-18,-110,-40,-107,11,-22,59,-68,70,-96,27,-10,-23,-11,7,30,-32,52,-45,-65,62,-27,-7,-48,37,-51,-22,49,-22,28,-32,-23,-47,64,-30,7,-3,127,-41,-43,-6,-24,31,2,59,-47,-11,3,-34,-22,-39,-39,-40,-5,-43,-115,32,3,84,-84,12,2,-10,-2,54,-53,59,-19,-12,-27,-27,85,0,-81,-24,0,-80,-52,61,-29,-10, /* [548][0][][] */ -30,103,-8,61,1,-13,-34,-14,26,-14,-55,-3,48,51,-91,-30,-9,-54,23,-59,-127,-92,79,39,11,-55,7,-40,22,76,-5,5,-5,6,-9,-34,-32,65,72,-45,-38,57,-79,-6,-47,16,30,-9,-10,-52,-62,47,25,-61,-19,-45,-7,26,-40,-85,-21,23,51,-27,-71,-59,15,77,64,36,-55,19,-90,16,5,23,29,-12,-45,-66,-92,45,-4,-58,14,-82,47,-76,2,-61,-31,-58,9,23,39,34,-42,6,-8,30,-22,3,17,1,-10,3,-37,-75,-32,43,61,1, /* [549][0][][] */ 88,15,3,-54,-15,7,40,76,-21,-41,-127,98,70,64,-74,2,7,-20,7,-52,2,13,52,21,46,-42,13,95,38,-6,8,-83,14,-11,-29,77,21,75,-63,-18,-27,-26,23,42,-87,-36,-14,66,-11,33,-56,-21,-11,-58,-73,-4,-108,12,-49,-49,-74,21,-26,-61,47,-119,53,65,37,-22,45,12,-2,52,12,-31,1,11,-11,-51,17,50,16,39,-24,-32,-7,-59,20,36,14,-37,78,85,62,-2,-24,-78,88,-4,25,3,-51,36,32,-60,-21,-72,64,67,22,-47, /* [550][0][][] */ 31,-5,-13,11,20,23,-46,41,-39,19,-29,-8,16,24,-11,-77,-21,18,-47,-32,-25,-11,-16,11,31,59,18,32,-2,-16,11,-39,-12,118,25,79,-1,26,-4,-60,-30,-1,-54,61,12,11,33,-73,-60,-3,29,2,-64,45,15,-73,-82,4,-1,-22,2,-52,-30,20,50,14,-127,50,7,-45,18,-13,2,9,1,-21,-54,11,30,-58,0,41,-10,-46,40,7,46,15,-21,-28,-65,33,26,48,67,37,-42,-39,-36,25,32,47,1,66,-57,4,65,-15,-41,33,45,-11, /* [551][0][][] */ -9,25,-75,-28,-87,-11,-19,96,-11,33,-29,-18,-63,68,34,71,-11,17,26,-36,-70,-28,17,68,-18,-11,-28,47,-86,-1,-7,-52,-57,34,19,-4,-22,-14,-97,-22,-35,12,-101,79,-25,6,61,-57,-7,-44,6,-7,34,-55,-29,-13,-3,50,-32,48,-84,60,-62,6,-74,-127,-38,64,-16,-76,55,31,-22,44,30,-3,35,30,20,65,33,-28,-27,62,-53,-52,20,-25,33,34,-13,-36,-21,-60,14,37,33,-33,-9,8,-43,-29,-13,-20,21,-33,2,13,69,65,78,43, /* [552][0][][] */ 66,-3,17,-26,16,-21,-63,-31,6,-59,24,11,-58,21,48,18,18,-32,-15,-37,9,-62,-19,-41,-25,-23,-9,-37,59,-5,-9,-11,2,-35,-38,24,-49,54,-25,26,41,43,-36,16,-41,-38,19,10,14,-61,-3,-9,-21,-31,-24,-27,-20,-21,10,-19,-19,23,-9,14,20,8,29,28,69,6,3,10,-3,-58,47,95,13,-29,40,-57,-9,13,-26,17,11,-14,38,-20,-16,47,-127,-35,6,18,61,-3,-2,-32,5,-30,-48,-37,11,-31,-55,-47,23,-7,13,96,-45,-26, /* [553][0][][] */ -21,36,18,2,-19,-23,-38,0,20,1,1,-4,-29,20,3,-34,22,5,34,10,-9,-33,19,14,69,-40,63,22,-25,12,32,-27,3,-30,23,46,10,-20,-34,69,11,-45,35,-16,4,-11,45,-56,-5,-2,56,21,-46,3,6,5,15,11,-29,37,-13,35,20,14,-18,22,-64,-3,-26,84,33,-28,-6,-23,-35,47,-71,29,-14,-58,56,1,-71,63,12,-32,45,52,-31,-57,-12,30,20,-23,-8,13,-35,-12,-35,-22,-35,-127,0,40,-3,-9,17,-19,-27,35,-4,7, /* [554][0][][] */ -12,24,-49,72,16,0,35,-17,-13,47,-14,30,56,26,5,-40,-118,-3,77,40,5,-29,-55,-101,123,-18,20,47,127,61,41,-14,41,-13,8,27,-42,0,6,-31,-32,-4,-84,-28,19,94,56,-63,-54,59,19,-15,35,-39,-7,-61,-35,-87,-32,-25,-73,53,-73,-54,-33,-23,-62,67,-9,-50,30,-28,-9,-70,-31,-15,-34,-6,10,-37,30,45,6,-39,55,-40,104,-6,-10,-103,-8,-4,-12,50,-29,-3,-48,25,49,-40,11,42,10,2,-62,-8,-30,-15,-41,-2,-2,0, /* [555][0][][] */ -14,-110,-72,-4,-98,31,37,23,-30,52,-72,-38,-50,17,-78,-39,23,-30,99,-5,7,-8,-9,-52,23,34,-34,69,79,-1,-33,-46,-57,-29,8,2,56,36,39,68,-14,33,-3,-6,17,-66,-52,-61,82,47,85,42,5,-79,-81,81,2,-21,62,-5,19,-14,80,67,-49,96,42,-96,42,98,-67,12,-58,91,14,-15,-29,9,23,-70,-28,-57,69,-5,-96,62,-26,43,-49,-110,-10,16,-98,-27,-95,-55,-93,15,64,60,122,53,59,51,83,17,24,15,127,3,108,-45, /* [556][0][][] */ 101,4,-6,27,-49,-17,84,57,-56,-3,-34,20,58,-32,-81,-4,-106,-6,114,58,33,-38,-6,-20,32,-127,64,35,32,50,-4,-64,47,-35,-29,66,-117,53,30,-73,-108,42,38,42,-35,42,84,47,6,31,-1,86,31,63,-51,-91,69,8,18,-47,-42,5,-77,30,-99,-65,-32,-41,16,-11,80,-44,-13,5,-72,62,14,-9,-8,-53,11,38,-100,-12,-28,111,70,-2,46,-3,80,-19,-44,-30,-41,-28,15,19,-41,-22,3,-69,29,-46,-39,-19,0,-18,-27,61,-4,-59, /* [557][0][][] */ 14,-40,-26,68,-30,90,-24,-39,-16,-60,-97,20,-38,-30,-57,-13,20,-44,-44,-21,-59,27,127,47,-46,-97,-2,-28,19,79,15,3,50,5,-11,34,36,31,-44,119,11,80,-6,-81,39,40,-7,-25,4,-37,-10,-8,49,-83,19,-4,-37,60,-14,-32,12,27,34,29,-1,-96,-104,-35,106,97,29,-60,-35,-3,100,76,-20,-12,-22,-62,54,-37,-82,48,-27,-19,127,87,47,-75,5,30,89,-42,17,-30,-65,-50,-44,-67,-9,24,-4,5,20,16,-14,-108,-61,123,46,35, /* [558][0][][] */ 64,0,-19,78,86,9,22,-81,1,54,23,12,65,3,0,-21,2,-14,-51,-5,47,53,-20,-1,71,20,-55,16,86,9,-64,-1,82,71,-13,58,-4,-30,62,10,-74,40,-5,8,34,-12,-28,-37,-12,66,-29,-49,80,34,33,-2,-13,-84,-35,20,15,73,-37,-12,-53,5,-36,12,0,-22,48,-7,29,32,58,37,16,11,60,-13,61,4,6,42,-25,127,53,-41,-45,10,-14,-5,0,52,-50,29,24,-32,27,-53,2,-13,-11,-41,-16,-15,-6,44,12,-12,70,23, /* [559][0][][] */ -18,-50,-112,18,-26,46,62,-92,-7,-17,-127,94,-84,-48,48,15,-50,29,111,12,0,-24,110,-45,16,-36,44,79,3,30,6,15,-3,-58,-19,53,-23,-2,-65,21,14,44,-66,-87,-34,69,-61,7,51,-6,47,-2,109,5,-47,-75,-3,47,-74,-77,-22,-11,-34,-9,-88,-41,6,18,65,27,85,-125,13,-65,14,61,91,-90,14,-31,96,13,-33,22,33,63,72,-2,107,-42,-30,80,-5,26,50,-40,-37,-35,-10,-33,-11,-68,-22,35,7,-77,65,-85,5,42,-61,-45, /* [560][0][][] */ 54,-82,23,-5,-79,-17,-4,13,-50,-56,-48,-53,-24,7,-4,21,-36,11,13,-2,-38,-72,-30,-41,32,86,22,-4,-49,0,-70,-127,-4,-2,51,-9,-4,11,-4,-48,68,8,-63,39,-32,1,-17,-2,26,-12,-60,1,-41,-31,1,35,22,102,23,35,-108,-31,-24,-69,65,-48,-86,1,64,58,82,-37,-75,-18,61,27,-31,43,-40,-12,-32,-47,-27,29,7,-40,49,20,-22,-7,-18,21,12,56,-36,53,18,-12,3,42,-44,-8,48,13,-65,-36,110,-39,38,59,15,43, /* [561][0][][] */ 82,-8,-49,33,-43,9,53,-60,-14,-5,58,23,-28,36,79,3,92,-34,30,67,79,-9,12,14,-10,45,20,-35,5,127,65,-41,-77,-22,-70,10,40,19,-52,-42,-5,-17,-11,2,-57,-20,-17,-39,-33,-4,-8,-43,-5,51,-17,14,30,-63,-8,-79,32,-47,-19,21,-31,16,49,56,3,45,-24,-40,-10,50,17,8,-10,91,-47,-12,14,8,51,-33,-11,33,-41,10,-17,-81,9,11,5,-34,0,0,32,-19,17,71,46,-27,-38,-13,21,36,-18,34,26,22,8,49, /* [562][0][][] */ -30,39,34,20,-8,37,36,69,-26,63,-1,25,4,-32,45,-8,-40,19,20,-57,-32,-93,14,18,19,66,3,65,11,41,26,-117,-5,3,38,1,-13,-15,24,-26,-5,-19,22,-33,20,-34,37,41,41,34,-34,127,-25,-73,-5,-6,-24,-46,-11,2,-10,3,67,29,48,-58,-9,97,22,-10,8,-103,-24,59,-36,17,-7,24,-24,-75,37,33,-58,25,-1,10,63,-89,-63,45,-47,70,19,46,-37,-28,15,-69,20,8,44,-82,-2,81,-36,37,44,-26,22,88,37,16, /* [563][0][][] */ 0,-16,19,43,50,-2,-78,37,18,-42,98,4,45,52,23,-54,8,-6,50,-29,-26,-72,30,-75,-29,-56,-68,-92,3,82,23,20,13,32,98,-37,-27,-25,-36,-37,-13,3,-42,-2,98,127,105,-7,15,-29,-17,-23,-13,26,-16,-87,-62,115,-68,-34,17,69,59,-89,-51,-57,18,84,10,-50,53,-31,-62,-46,37,51,-104,31,-35,42,82,65,-47,4,-12,-34,60,-14,92,11,-34,-66,-76,-22,-51,-4,18,-26,-3,31,6,37,41,57,-13,38,66,-34,-5,91,105,-41, /* [564][0][][] */ 116,2,29,-6,-78,-88,16,56,-27,4,-21,50,-36,-26,68,-40,-6,-49,-31,-27,-119,-23,-38,-7,-12,34,-1,87,70,-59,8,-95,7,80,30,127,-84,-16,0,-16,-29,78,-88,32,-104,-18,12,-102,-48,48,18,62,-51,22,-16,24,-110,-51,80,-40,-103,1,17,43,-38,-2,-92,9,13,-26,-20,-23,-120,57,22,-11,-2,49,4,-43,43,-23,-40,92,16,26,12,-22,-4,23,-101,-49,37,102,50,-38,1,-74,-30,29,-29,-90,-27,-34,-104,38,100,24,34,-12,16,64, /* [565][0][][] */ -12,-54,-9,-18,4,19,-45,42,-49,-2,8,12,22,-13,12,33,-6,43,38,-11,48,-27,-61,-7,86,5,-14,6,15,18,68,-127,-16,-14,-5,-32,14,-7,21,-25,-11,28,-23,-28,38,1,57,16,51,-21,-36,-4,-33,-62,-9,-29,-48,14,-2,24,3,8,27,25,-9,-55,-2,103,-11,-44,15,-33,-37,42,-51,31,10,-34,-30,1,36,13,-38,25,25,29,31,-31,21,-40,51,9,-16,2,-14,54,13,26,11,-45,-15,5,55,29,-23,-45,46,-20,-13,42,-2,25, /* [566][0][][] */ 22,3,-6,-16,-90,31,-68,-8,41,70,0,-42,-25,-14,37,48,22,-37,-19,-34,-26,60,63,16,33,0,-48,3,74,-5,-15,-81,-14,-6,-9,51,-67,48,7,52,-24,9,-26,-71,-16,-56,22,14,47,-101,-57,56,58,-54,-12,-32,-95,127,22,-56,10,42,-37,-2,-17,-7,-37,24,-39,-50,7,92,-112,1,12,2,-29,-44,-66,-12,27,-5,8,-29,29,39,1,71,5,-53,-53,9,9,21,-66,-9,-40,-64,-70,-15,42,-38,-8,47,-31,-81,32,-48,-19,34,7,53, /* [567][0][][] */ 74,-5,-3,95,15,38,-79,4,2,-36,-89,12,45,-23,-50,24,24,17,88,27,-52,39,33,34,-40,-76,-7,56,46,17,38,-43,-111,127,-54,60,22,-61,-76,54,-47,0,-60,-6,26,77,-5,12,42,-45,64,99,73,-108,0,-77,-19,23,-28,-51,-13,42,10,34,-27,7,-44,-37,53,-93,-19,12,-15,74,-50,53,71,-9,24,-60,35,126,-47,16,-5,-7,-14,60,-28,124,12,-56,-30,-90,-56,-60,-1,59,-16,-47,23,-21,-40,7,-83,-86,8,-19,-14,45,-62,25, /* [568][0][][] */ -5,-63,-5,8,55,-41,-47,43,83,-4,33,40,75,-35,0,-25,8,43,-39,28,42,77,-16,12,68,23,-32,83,-17,69,-102,-22,15,-27,-43,23,48,6,37,-46,-23,9,-39,-67,-35,15,-31,34,38,46,-37,-56,66,0,38,-43,-8,53,-22,-71,-7,43,-68,57,-55,38,11,47,8,39,-101,-50,-47,53,-4,-43,-49,0,51,-69,10,40,22,22,-88,27,-107,-82,-42,-81,32,-18,-11,81,-30,63,2,-43,-33,23,39,72,-2,-61,-18,-49,-26,-77,40,-52,60,-127, /* [569][0][][] */ 73,44,34,-47,-21,31,24,-54,64,-34,11,86,25,-51,16,-43,-9,-3,-34,-36,-50,-2,-30,-117,-1,31,-1,85,4,44,-15,-38,-48,-25,13,85,55,-54,39,105,16,58,-41,14,-70,-24,5,-42,14,-33,11,127,-43,-56,15,38,-100,-73,-21,-19,-29,111,55,32,-28,-74,2,34,-13,48,11,13,-55,-34,53,47,47,33,23,-107,56,-15,-62,55,-39,-17,-4,64,25,46,6,-8,118,-8,-28,-35,-26,-53,22,-21,13,-93,-49,-33,-102,25,90,-39,-49,-6,-62,41, /* [570][0][][] */ -8,-14,-57,-54,-2,-67,-27,58,65,10,-30,49,-83,83,-38,-42,5,4,38,22,11,-79,14,-104,52,-60,87,-4,82,-50,25,-59,-31,-65,-6,3,-13,80,0,-39,-81,48,30,92,30,-58,57,26,-49,-55,63,-23,-47,2,-2,-6,-32,-1,50,63,-56,-11,-20,16,-9,23,10,74,-8,-51,-16,51,-81,-43,10,98,-58,-5,18,-23,15,-73,-98,51,-40,26,16,-40,21,-1,-77,-24,3,2,-12,6,-127,-22,-65,8,-2,1,-49,56,-108,10,42,-89,2,-47,109,-25, /* [571][0][][] */ -10,-34,-65,-28,-27,-30,-1,-127,2,4,7,21,38,-9,-13,-22,4,-82,-16,25,64,12,-35,-35,84,16,-2,26,17,31,11,39,-2,-26,-65,7,17,6,17,5,8,6,22,-17,15,-38,-11,-2,-35,-10,70,-68,65,-36,33,-16,-11,-49,-80,-10,-26,29,4,19,-17,-83,-62,-32,-40,18,23,-33,8,-46,-25,15,-26,23,-27,44,49,-55,-3,-82,-24,3,34,7,-8,-66,22,18,78,-11,56,25,-51,-9,-10,4,2,7,-3,14,-98,16,-7,-39,-10,9,-14,-92, /* [572][0][][] */ -3,15,-24,96,32,-17,22,-86,-36,10,93,-93,-42,117,-30,96,42,-4,66,-10,33,-11,-17,60,-62,63,6,-69,-47,27,-46,8,76,60,74,90,-28,-32,31,-90,-62,-6,49,45,-45,-23,1,-42,-16,16,38,-13,109,-19,19,5,-2,-5,-33,14,18,-16,-42,-7,-58,-19,-25,60,35,33,33,85,-39,72,34,-9,58,127,44,-60,3,-39,102,-48,-55,17,-2,34,-57,-12,47,-85,-7,-5,11,53,35,-43,-81,30,58,-2,29,27,2,0,-46,36,102,13,49,48, /* [573][0][][] */ 51,-40,-44,60,33,-40,27,17,55,-32,-18,24,63,15,34,88,127,-37,89,-8,53,29,-113,69,50,96,-5,5,49,-48,-12,-6,-20,10,12,-50,-21,48,-32,-7,-45,-4,-67,-25,-2,-71,48,12,113,-106,15,34,-42,74,-16,17,75,-9,-64,48,106,-91,71,-11,-20,18,-6,70,-59,59,-11,-74,-27,-86,77,33,-38,-21,11,-48,-25,-68,-3,0,-15,81,-17,18,34,9,0,-49,-30,61,-40,90,41,-25,-26,-101,-7,28,18,20,57,16,12,24,57,-47,15,18, /* [574][0][][] */ 17,12,-47,-46,-46,-5,36,10,49,86,-5,-47,-16,76,-11,36,26,-44,56,-3,91,-48,18,-39,77,-2,54,-46,77,49,99,5,-50,46,34,96,-97,78,-19,54,-9,57,-38,19,-65,-7,79,1,-3,-68,-50,43,-32,-34,-29,-44,-30,6,59,25,-10,-6,-77,-127,-26,-19,66,91,81,-35,21,-77,-31,-68,50,43,-5,-38,-92,-21,32,-30,32,-15,38,18,91,46,100,-124,3,-19,-50,49,30,26,-88,4,38,83,43,-55,-44,35,-57,-78,-17,-37,-58,29,22,17, /* [575][0][][] */ 21,-64,19,-35,2,-7,-32,-73,-2,72,40,-2,-2,31,58,69,29,8,41,21,78,-55,-85,18,12,16,-49,4,-4,15,14,-36,24,-13,-61,-12,6,25,34,35,27,-57,-8,-60,-7,-46,32,2,79,-66,36,2,-55,2,-2,17,-20,2,-67,-37,80,-16,-14,-35,39,32,-26,25,2,-38,-6,-34,-47,-53,43,-11,-25,127,-6,12,31,23,10,-14,-42,-27,-36,-5,-30,-36,-22,-68,40,7,-14,36,71,-31,39,40,-19,27,26,-1,12,69,-39,17,-32,-16,9,39, /* [576][0][][] */ 9,26,-2,-53,-72,-73,-33,53,-59,-9,75,44,-9,-34,22,19,-40,14,69,22,-43,-36,-24,2,110,7,-7,76,22,-29,-23,-76,-74,52,9,9,-46,-10,-88,-62,11,23,-48,65,-63,-2,-56,-29,15,22,-7,-66,50,-121,13,25,-77,-99,127,-38,2,43,24,50,50,-69,-69,34,60,22,-22,41,-57,74,11,20,15,52,76,13,-14,81,-14,78,27,-3,69,16,28,9,-21,16,6,-67,50,10,39,-30,-20,-60,-8,-8,62,29,-53,85,17,-93,24,47,5,91, /* [577][0][][] */ -4,-103,-5,8,-62,-69,14,15,-60,-1,-8,80,-1,-42,-57,7,-51,-11,9,-10,-12,-4,26,22,37,-8,61,49,14,-2,104,-72,-104,-33,14,-20,-31,-31,-67,-32,-17,75,-17,31,-57,20,-65,-19,-29,23,-48,21,127,-29,-34,-28,-20,-59,18,-53,-56,61,27,28,53,-16,-39,-31,12,-8,-26,45,-3,31,-12,63,-18,17,-8,-46,-55,-7,-12,63,-13,20,6,16,-85,22,12,18,17,-17,79,33,12,-17,15,-36,36,-17,34,8,-34,27,16,-47,37,-1,7,24, /* [578][0][][] */ 29,121,31,25,60,-36,-70,90,-14,-31,-25,-2,-35,119,-46,-111,-101,-24,-87,-94,-71,-15,19,45,36,23,-13,13,-22,-59,11,-72,31,55,-32,69,-3,54,13,31,-12,61,85,-37,29,62,43,-34,50,-22,-29,62,7,1,-7,-57,-81,69,-42,56,-33,-9,-64,-87,-34,-88,-47,127,24,-36,-21,16,72,48,-20,-83,-4,93,55,2,116,-36,-96,-52,-18,34,-52,-52,-3,13,-23,69,3,61,5,33,-113,62,-83,47,7,47,-13,63,-54,21,32,-93,-21,-8,20,40, /* [579][0][][] */ 47,-19,-62,110,-9,-19,-29,56,81,-11,-53,-11,13,-26,17,85,13,-16,69,-29,-67,-18,68,108,75,29,-16,84,-21,92,-9,-16,-28,11,-11,-14,-1,-32,-98,-47,2,29,26,-1,-35,-38,22,-52,39,50,3,-12,-30,28,-5,3,13,-76,-39,13,44,7,-48,98,18,117,11,13,-11,-52,-32,-97,20,87,66,19,22,-29,-13,-26,-11,-100,-27,-78,-44,11,-54,45,-25,-29,51,7,-35,2,-56,7,23,-38,58,8,105,-68,41,66,103,127,62,21,63,-8,88,97, /* [580][0][][] */ -37,-34,33,-9,-45,-71,-22,-19,55,56,-76,-30,-26,59,-61,-10,-43,-40,8,-35,53,-79,55,-36,-56,-5,18,-56,45,28,1,-39,-12,27,-51,-14,-16,42,-7,95,-102,97,22,4,-11,35,119,-21,-3,16,-3,58,38,-9,-127,26,-45,-12,86,5,24,-6,-19,4,-15,-86,29,20,42,-13,-5,-25,49,37,-35,32,-75,-2,-19,7,-13,31,-14,48,17,97,-33,35,121,62,10,-32,38,1,13,-62,-17,15,60,47,50,-109,36,-1,-14,40,10,-39,-25,98,-19,-81, /* [581][0][][] */ -13,-21,-38,35,42,8,-48,70,27,-1,-16,34,-41,39,61,15,2,3,54,17,-25,-28,54,6,20,-16,-18,26,31,16,7,19,-7,35,46,-46,-29,2,-13,-20,-8,38,-23,19,-30,29,58,-25,-39,-32,-1,5,29,73,-13,-53,-4,50,-56,34,-127,7,71,-66,-7,14,-22,23,-12,28,-42,-35,-12,43,33,-1,-29,49,-41,-48,34,28,-29,50,45,-41,-19,-9,67,26,3,0,1,-1,-70,-62,21,-30,-55,-16,-7,-53,1,6,-9,-20,21,-23,-1,48,75,-64, /* [582][0][][] */ 29,30,-29,25,-81,-112,-6,-27,73,8,-22,1,-52,16,-12,12,62,-62,-19,-10,25,-32,63,-40,-64,-103,-4,-64,-35,14,-52,-72,-52,18,4,30,23,90,-3,-39,4,-35,-86,0,-24,24,52,-80,-8,-2,39,20,-49,-77,-103,-78,19,41,99,15,-46,4,-1,-16,-28,-6,-33,72,-24,-66,-28,40,-100,65,-13,2,22,-28,-18,-85,100,39,45,21,55,-110,7,52,10,22,-33,-5,5,31,19,102,-121,13,-65,16,-24,23,127,-1,57,-10,-13,-49,2,90,36,45, /* [583][0][][] */ 49,-36,-31,-5,18,-39,-26,-31,108,81,42,-63,42,-1,30,31,55,-11,-9,-50,118,-19,1,12,-9,53,-30,-28,37,-8,-68,81,75,-6,-30,11,64,26,5,86,39,-85,-1,53,-6,-19,-51,6,18,25,56,-89,115,-99,15,23,-3,12,-46,-25,-34,-25,-13,9,-8,-14,-51,50,29,3,-79,90,-26,68,23,47,-2,120,-39,-65,39,41,101,34,56,55,40,45,-19,18,-49,-127,-35,14,7,-11,-23,47,-78,6,52,-7,62,69,50,13,-5,33,61,27,5,-2, /* [584][0][][] */ -23,-115,-107,-4,93,59,99,-107,26,39,-6,-88,119,-26,-28,1,17,-88,67,63,50,44,-72,88,54,34,-52,66,-25,39,90,44,-35,50,-60,-72,94,31,38,12,-79,6,10,79,24,75,-19,-57,-3,35,-36,-85,100,76,5,-60,-18,-31,-57,37,-31,44,12,8,15,29,34,8,-4,31,54,-67,70,17,24,-55,65,-15,-29,-19,127,35,39,16,-94,83,3,30,6,52,63,-74,-37,57,18,-17,46,-69,-48,77,-29,-89,27,-51,-56,22,64,-69,26,-36,28,-62, /* [585][0][][] */ -2,3,18,3,9,29,-127,16,-56,14,9,-42,-18,3,-71,41,-27,36,68,28,-21,-18,-12,26,-16,4,-42,17,27,-40,-32,23,-9,-29,-8,99,-40,2,9,49,36,25,-67,33,-52,53,-1,-56,6,-55,9,17,-5,-24,-6,-12,-14,37,-42,-8,3,44,-29,26,41,-37,-1,29,1,-37,28,25,-33,21,72,19,-37,20,-30,10,-23,23,-25,-3,21,-1,-11,1,-20,-7,-38,44,-3,7,46,45,7,32,-54,-51,-4,-54,2,-7,-17,0,21,-2,16,43,-62,4, /* [586][0][][] */ 13,-6,27,-32,2,79,-29,37,-43,-53,-60,-37,27,-12,-52,-38,25,7,115,9,-28,-5,-31,-109,-21,-8,-12,14,77,-3,-5,26,-56,54,20,58,-6,-29,6,53,1,-44,-44,4,-24,26,-6,-56,21,-41,81,69,70,-76,21,-39,-65,51,-17,-20,-127,29,79,21,6,-43,-3,-35,61,75,4,-30,-7,28,0,54,-89,-43,52,50,113,4,-3,-11,6,41,10,-71,66,-1,19,-61,43,21,-43,14,37,34,-33,-80,-75,-70,-31,6,-78,-22,77,-25,-19,94,29,-42, /* [587][0][][] */ 17,-65,64,19,4,-14,-12,34,14,-75,-80,-64,44,-36,-22,-68,-91,-54,43,-8,-70,-92,-127,-35,20,-45,25,30,-5,-15,-3,7,47,-8,-4,14,48,63,-22,-33,-28,7,-63,99,-49,77,38,-34,-5,54,5,47,25,-82,-34,-27,18,-43,12,-59,29,38,-15,-11,27,-20,-19,6,63,-31,-6,-46,36,78,0,43,-63,25,-59,-51,11,-20,-64,-23,48,-23,51,28,10,-9,17,-7,5,11,-80,-64,25,-86,-4,-53,0,-7,-13,-35,-66,-63,98,3,19,49,10,-11, /* [588][0][][] */ 73,-84,24,58,-35,52,13,-83,121,-11,-24,-66,31,-20,12,104,63,22,-7,-1,16,-17,-25,70,23,28,-40,49,-24,2,-74,67,26,31,-111,60,2,34,-87,-34,7,38,55,2,16,7,-11,-22,33,-44,23,-61,127,-31,22,-42,-49,27,12,-58,61,-15,49,20,5,24,14,-35,31,-5,-35,-3,1,-10,13,-9,9,-15,-26,25,-7,-71,35,-46,-58,34,35,-12,-93,8,-2,-49,34,25,21,84,92,-44,-2,-63,-51,-54,32,34,14,-51,60,48,54,69,-28,13, /* [589][0][][] */ 44,41,-26,127,-39,-15,-4,0,36,-55,-18,78,33,-22,-92,-107,-52,18,-6,-33,-5,13,86,42,29,-33,27,-34,15,-61,113,2,-39,27,52,-40,57,-48,18,19,8,93,-18,42,49,87,93,55,23,47,-37,-46,-10,-55,35,-89,-66,3,10,-1,4,37,27,29,-17,38,-112,83,15,-30,93,-27,-49,77,16,47,-122,34,33,-62,2,-19,-68,20,-20,44,45,-34,11,9,-22,6,9,-6,-19,-31,-8,-26,-23,-34,42,-48,64,84,-45,-3,25,4,-30,7,31,4, /* [590][0][][] */ 51,-21,-49,73,18,-14,30,-127,26,26,-4,53,78,-43,26,-45,53,-43,5,-17,6,51,-6,72,12,39,-16,-18,70,98,-31,4,10,88,-20,45,-19,-19,2,15,-21,21,-25,24,-12,61,-30,-40,-35,-62,60,28,54,8,24,13,26,-62,2,-26,16,68,-9,57,21,46,-34,-37,53,23,43,6,-55,-50,-33,-42,39,22,38,-38,33,78,38,-27,23,-1,-49,78,-55,19,-38,-42,30,24,-63,-32,22,-19,-51,61,4,-19,-33,16,-6,20,-67,8,31,32,-10,-36, /* [591][0][][] */ -61,-2,-87,101,-44,1,-32,50,28,11,-48,-48,58,9,63,114,103,76,28,-4,38,51,-98,72,33,92,29,42,95,-21,50,-70,2,47,-33,-37,9,56,-7,5,-35,-23,-9,29,1,-49,-48,-5,-12,62,50,-127,47,6,17,-24,33,-95,-10,-41,61,-36,-18,-16,-11,34,-22,57,-77,38,2,-8,-57,40,8,-60,49,28,1,-27,-1,19,-25,-37,-81,-30,-45,69,39,44,28,-8,30,-41,-43,54,23,26,-28,-3,37,3,35,28,39,25,-25,15,55,-27,37,-64, /* [592][0][][] */ 28,17,-43,76,22,-42,37,-30,-30,62,-67,-38,88,38,-79,-4,-25,33,68,62,37,-104,-55,76,1,-18,-20,68,30,13,25,-73,31,25,-8,127,-62,39,-1,-18,-35,19,-4,27,-18,-2,-10,20,12,9,8,53,-31,-59,26,43,11,-74,22,-22,73,-4,-90,104,-5,34,-70,22,-7,74,-24,-8,-32,51,7,5,68,62,-14,-71,70,-21,-18,-10,-45,-41,-33,12,-67,-39,-66,-18,-89,-33,-25,-29,69,-15,82,74,25,73,-11,-36,-19,114,-26,-27,78,-34,36,-29, /* [593][0][][] */ 26,-53,-127,33,17,-10,-74,64,-50,16,-26,74,54,44,18,62,-62,34,56,-53,-31,-90,75,-4,57,-29,31,47,52,2,42,26,-93,-61,26,43,-40,-33,-16,-83,-60,9,35,-22,-28,-8,33,-37,-51,-56,15,-5,71,28,-54,-42,-63,11,-22,-9,-18,-52,-48,73,-99,66,0,15,-15,-70,76,90,56,35,-5,51,-60,-87,-61,-64,-16,-101,-66,-2,25,16,-92,-3,17,-26,-39,-13,-8,-64,-63,-56,-19,-17,-43,44,5,-105,54,126,-45,-16,123,18,-17,20,12,-4, /* [594][0][][] */ 75,-66,15,-17,-83,58,-13,-55,-61,10,10,28,-8,-49,86,58,70,13,79,-85,-12,56,52,74,0,2,78,15,14,-15,2,-69,-21,14,-2,56,-13,-109,-9,-31,34,64,-57,-6,-59,-55,13,43,55,-127,30,37,-37,-61,2,19,-43,86,-42,19,22,-107,33,-27,17,-76,48,13,53,-5,90,-19,-119,-12,54,74,-52,-9,-93,-52,24,23,-48,14,48,36,110,24,45,-46,-27,-96,-2,-28,81,76,-85,-104,-40,32,-16,-24,45,35,-106,-5,18,-2,-20,108,-69,12, /* [595][0][][] */ -59,28,-54,-35,1,-54,-41,6,116,18,96,45,31,-31,53,-8,-7,-56,9,9,-46,22,-14,8,8,-17,60,-32,28,45,0,-54,-16,-5,-11,-22,60,1,-36,-14,-38,5,62,73,14,3,54,-110,-25,94,5,6,17,33,45,18,82,-15,-27,76,21,21,-102,6,-78,4,7,-11,-26,125,-29,14,-34,-27,49,2,49,74,-12,9,9,-21,-26,12,-122,18,-84,-54,-63,-79,-127,-9,-45,-11,-3,40,-69,-90,60,-2,-4,75,-67,-55,-45,-29,12,73,-1,52,17,43, /* [596][0][][] */ -21,68,-25,62,-14,-3,49,-61,19,-16,-90,44,-7,67,-1,-13,-23,34,-10,-25,9,-67,28,10,10,-24,-12,1,-3,-42,-28,-8,-24,-12,-32,8,22,3,-37,78,11,23,-6,17,17,76,19,-32,-57,-61,60,40,-117,-13,-4,-30,15,2,-21,17,24,23,4,-42,-20,-13,-74,-14,26,-14,127,41,-3,11,-9,54,-71,24,-46,-43,28,46,-44,-23,-99,-66,39,-1,-35,39,-6,20,26,-52,24,-23,-4,10,16,-37,0,-57,15,14,-28,45,-50,-41,7,60,-38,-18, /* [597][0][][] */ -8,3,-44,127,38,-22,-21,0,-49,22,11,5,-73,14,-6,-74,51,47,66,42,-8,37,5,25,-79,-68,49,-48,7,44,-23,9,-79,27,27,22,-20,12,8,38,-23,35,-88,28,-6,115,55,35,17,45,81,-13,-50,-21,-76,-16,60,4,23,60,-54,52,-75,-19,70,-15,-105,3,-14,-98,12,92,-69,13,84,60,18,40,0,16,50,41,-59,-2,14,-4,-6,3,-10,39,-69,27,4,28,-62,-30,-12,-74,-97,17,31,-33,-17,11,16,102,-10,-83,3,57,-75,32, /* [598][0][][] */ -23,-5,-70,19,9,23,-58,45,74,-19,3,-17,-37,14,10,40,-7,28,67,-64,18,14,37,58,6,12,27,27,-50,-87,67,-12,-127,-46,60,-29,-13,68,-115,70,-8,28,-57,1,-35,-3,86,-60,-45,28,18,-13,11,-29,-30,-20,9,44,5,10,23,42,32,19,-2,23,-64,37,-62,-19,21,57,-6,106,55,7,-83,28,-28,-18,22,19,-67,70,-23,10,-30,46,-34,-69,36,-23,-41,-63,-39,-48,-75,-32,-121,-51,36,-122,58,-18,12,23,-29,-105,-25,-26,-37,35, /* [599][0][][] */ -11,-30,-78,-33,33,2,-33,41,-49,-6,-24,8,-27,22,-31,-22,-79,1,15,30,7,-22,-8,9,80,-61,8,-23,-53,2,-31,-127,-38,61,-5,-4,-36,38,-56,-15,15,4,-84,92,-56,45,-23,-58,9,53,38,15,-23,-40,-52,11,29,-1,64,-8,-4,96,12,-19,-19,-32,12,-29,76,-9,29,32,-74,35,52,29,-81,-19,-50,61,40,-58,36,60,-51,-41,43,3,-27,43,-82,12,-43,-45,39,19,-15,-34,-32,-22,-14,4,-8,-26,11,52,53,-16,50,5,68,69, /* [600][0][][] */ -17,-39,-26,26,-40,-23,-27,27,0,-79,-12,37,-55,42,4,19,10,-23,77,-80,38,-55,-30,-13,-39,-21,24,54,121,1,-14,-94,-17,-8,-8,-19,89,-71,-18,-39,-12,-6,-13,-20,37,54,-5,4,98,0,-60,-1,-45,-33,-32,-29,9,15,18,-68,7,26,28,-45,-48,-89,63,13,-3,-8,44,-42,43,-29,107,81,25,13,33,-12,42,13,6,37,31,24,32,-22,-33,2,-80,-3,-61,28,38,89,-58,-47,-41,-51,8,9,49,78,-67,-127,47,4,-29,-30,-77,-117, /* [601][0][][] */ 35,-54,17,34,27,-12,-7,-66,71,14,-49,52,18,123,-95,25,15,18,-125,31,48,22,80,54,118,40,-117,73,-47,8,-33,-33,49,-3,-51,28,37,-74,26,-67,-62,46,42,-3,10,-22,19,-44,4,-1,52,-81,-27,44,75,25,13,-40,-59,59,25,-56,-40,16,-55,2,-51,-9,-60,-18,-26,32,78,103,71,17,47,40,56,0,1,16,27,-6,-55,127,-66,-13,21,53,52,15,74,18,-3,32,-8,-2,-42,-38,52,4,17,-43,-33,62,8,31,100,41,31,21, /* [602][0][][] */ -38,24,-50,17,-113,51,-8,45,-12,-83,1,85,-42,-22,2,6,7,46,-23,-86,-127,-22,-14,7,6,-14,46,16,45,2,47,-61,4,13,34,40,-11,-33,21,-24,-40,7,2,-28,-44,-16,-3,40,18,-11,-69,-50,54,-43,-46,-28,-33,56,-24,2,11,35,26,-6,-50,-30,-26,63,-13,-43,86,-61,-41,22,31,37,35,25,-2,3,26,-16,-17,45,13,2,-26,-117,-37,-10,-66,15,34,-36,-78,-5,-15,-70,-32,16,4,-4,31,24,30,-62,16,-4,-43,-6,12,-23, /* [603][0][][] */ 14,-18,-32,-42,-84,-41,65,-15,51,24,-25,34,-52,9,21,56,-44,21,59,102,-93,-18,68,1,11,-54,-65,43,19,33,-47,-27,-26,-8,22,-30,23,46,16,9,-40,68,-101,2,-61,18,-41,37,74,-112,9,65,39,-51,-4,-72,7,-22,-75,-87,-76,85,57,1,-5,-22,-36,-50,27,-127,96,-61,-27,-18,49,96,-12,9,-41,35,19,-59,-13,69,-13,-49,35,-25,-7,83,6,-56,-42,-41,8,8,-47,-25,-41,-108,-30,-10,44,28,-12,-65,24,-22,-26,1,-20,-2, /* [604][0][][] */ 57,-7,-59,-97,-46,69,9,40,-3,-53,-8,39,-37,5,34,58,-62,21,29,-31,-10,-45,-18,-3,-2,-126,-19,46,12,12,26,-87,-70,9,-3,53,14,35,-39,-5,-1,3,34,22,-127,81,60,-48,47,13,12,50,-10,-48,-72,10,5,26,-64,10,15,11,-65,-7,-16,-47,-27,16,86,44,-4,-29,-34,22,-40,3,11,3,8,25,-2,-12,37,119,-73,-33,33,-50,4,-8,23,22,-5,-14,-32,-40,-16,28,19,2,15,75,-9,18,-81,-99,-42,-16,-74,11,78,95, /* [605][0][][] */ -47,54,-43,-23,15,6,-67,39,6,-26,10,18,19,-18,116,39,7,43,36,49,58,-65,44,-52,95,-63,71,95,15,27,100,-127,-119,-13,-3,-6,-35,-8,-47,-57,-87,3,-24,17,7,24,76,-76,43,26,7,19,85,17,-13,58,-39,-13,11,25,20,7,-6,-8,-3,4,-72,48,-6,-17,-42,11,28,16,-32,58,6,-13,-114,39,69,-3,-75,54,63,64,-28,58,-33,-51,4,94,47,17,-39,79,-76,-17,41,-41,-21,-32,60,11,-66,-18,-95,-13,-94,66,-21,-62, /* [606][0][][] */ 127,-25,55,56,33,1,-6,1,95,-19,14,-34,52,-15,-39,2,-43,-11,-31,-15,-10,-2,12,34,-1,39,-1,88,-6,6,-3,25,52,49,23,71,49,-9,22,37,27,13,42,19,13,78,6,-8,5,19,-9,-91,12,65,42,-34,-3,-51,-3,46,-16,35,-32,6,-52,12,18,55,28,62,16,-49,-12,56,21,-38,50,-30,-19,-6,41,-32,70,0,-80,9,7,-27,-35,1,-34,-14,-48,63,-22,-2,44,15,22,1,4,10,39,58,-17,48,-10,-3,32,-67,43,32, /* [607][0][][] */ 17,-48,24,-27,7,-28,-40,3,-9,-13,43,60,12,37,31,32,52,-18,-15,-51,33,1,7,40,2,-8,-127,-21,19,-21,3,-14,16,19,-2,5,-20,-13,19,53,-46,3,0,3,-20,23,-21,0,33,-35,4,-25,9,-9,39,24,4,-28,-24,20,-50,27,-20,15,-19,-28,14,-30,12,-24,-9,9,-4,-6,-5,-24,-13,29,35,-2,9,-13,58,2,-6,-2,-60,-9,-16,36,13,-48,-29,19,17,29,25,14,-37,-6,34,14,20,25,-24,31,14,9,46,3,47,50, /* [608][0][][] */ -29,-61,-40,53,14,-11,-32,51,-5,-72,-8,-43,2,73,-5,127,-5,-29,-20,-22,-9,-44,10,34,-11,41,-26,55,17,-42,2,-6,-15,9,-47,-14,18,-38,-21,-32,5,-3,39,-20,-73,58,24,-60,-30,-12,101,-26,-21,-36,-4,-5,31,32,15,-9,35,-7,-27,48,18,19,-53,-3,26,62,38,-36,-41,-30,-1,-22,-22,17,8,-33,-77,22,3,-4,-23,23,-107,-48,-18,22,-44,8,-68,11,1,-22,-14,58,21,-30,-33,20,-29,45,1,43,27,38,108,29,17,19, /* [609][0][][] */ -34,-23,10,38,-35,-17,-28,43,-2,-13,16,7,-62,18,-3,38,-32,13,18,21,-44,-19,30,0,0,28,-10,20,45,32,4,-9,-11,5,-3,25,-12,5,22,-17,56,-23,-48,-19,-28,-13,-33,35,48,-18,20,-1,-11,48,-19,13,-16,-2,1,6,-42,-24,50,16,6,-25,-7,40,28,3,-11,-25,-30,38,-14,-15,12,-4,-29,-4,14,-12,-5,63,-12,49,-41,-21,-11,-5,-9,24,-15,20,3,-12,-56,28,-6,-14,-7,-32,40,34,6,127,-22,7,71,64,-2,24, /* [610][0][][] */ -64,61,-54,-1,-61,1,-59,13,121,12,8,76,-37,-22,3,79,-76,-3,102,52,-31,-10,-11,59,14,127,-21,28,40,-32,-7,-7,-22,-11,31,45,43,64,-42,66,-14,107,-103,-15,-20,31,46,-70,-33,-107,-25,-3,35,26,-76,-3,-4,20,-12,-38,-21,48,32,45,-37,-122,59,44,-22,-34,73,18,46,45,8,54,-21,55,-10,-23,22,53,16,111,-21,-20,-8,51,59,38,39,-88,21,-36,-2,6,-49,56,48,-121,-30,-104,60,-74,-3,-35,-1,-23,-34,-21,-55,-8, /* [611][0][][] */ -12,-4,-59,1,-54,11,-13,88,18,46,-15,72,33,24,99,-40,-69,64,-36,-127,-30,-3,71,60,36,27,24,90,71,-2,39,-43,-90,116,17,55,-69,10,-16,-23,3,34,57,-1,-4,-13,22,-72,12,9,69,36,39,85,40,-54,0,11,22,-75,-46,-70,-84,50,81,16,-75,-14,47,-14,-7,-9,43,-57,-10,22,0,65,-18,-15,41,82,-42,-61,86,6,26,41,0,-59,-10,38,40,49,41,46,-33,-36,14,-9,15,-65,124,36,10,17,49,-92,-26,11,4,45, /* [612][0][][] */ 41,-42,-23,-35,23,21,11,-36,6,2,26,6,93,-36,-54,16,87,-31,17,-62,51,64,-50,76,103,-35,37,54,13,88,97,-24,-19,17,-42,16,24,53,8,60,22,-56,19,10,51,59,-42,112,52,4,7,-65,110,12,-23,12,27,-10,-79,54,84,-42,-24,59,-34,-94,10,-49,27,56,-15,16,35,-31,56,-23,74,30,2,-26,-40,-69,-77,29,-58,25,31,13,10,-127,29,-33,5,34,-15,45,-37,14,33,57,-33,38,25,5,57,34,35,-37,-16,55,51,-103, /* [613][0][][] */ -101,-12,-58,14,12,3,18,-47,-24,6,50,-35,37,33,32,39,38,20,90,16,29,-36,-62,-63,50,-20,-10,-27,58,33,16,-17,-27,-72,0,-45,18,32,25,74,-74,-30,57,-86,36,-85,-96,-31,29,-36,7,9,53,-30,20,-50,55,-79,-104,23,27,-43,-25,-28,-105,-28,11,-52,17,92,76,1,-6,-113,46,4,2,113,51,-56,18,-21,31,-72,-48,98,-37,36,-127,-117,-39,-11,12,60,-23,34,-11,27,-89,-8,100,56,-74,64,-12,-17,0,-53,-14,-16,-63,-81, /* [614][0][][] */ 25,58,-26,32,42,-75,-6,-58,53,-45,-84,-30,93,-50,-2,-127,29,-20,41,-12,-29,-14,9,79,83,72,-1,0,16,44,85,-87,35,35,-54,28,4,9,26,-3,8,59,37,1,2,54,47,-18,59,73,-124,44,3,-62,-80,-86,-52,26,68,63,2,11,-94,-13,-11,4,-26,51,-6,-45,-68,34,21,79,54,9,-59,43,34,-35,59,5,-83,19,-20,55,-87,51,26,10,-16,30,35,-10,-37,-65,-3,1,-58,-35,8,-45,-25,-63,-61,0,56,-4,-61,-1,69,-79, /* [615][0][][] */ 14,18,0,20,-88,33,6,-63,46,-95,-45,-28,-15,-12,-36,-22,-67,-2,43,-51,-20,-52,24,-8,41,-24,-86,-5,-1,9,40,-119,-34,35,41,-31,30,-19,-76,73,13,-10,-71,-37,46,-10,89,51,42,-36,-38,-31,-29,-127,33,-37,-50,27,72,-14,41,-83,-63,-41,9,9,-62,-35,54,35,-13,10,-45,6,38,40,-96,-13,-71,4,55,-87,-25,36,-30,17,-76,58,55,59,-64,-23,-48,-58,-24,-11,-6,22,-83,-76,14,-40,7,125,-83,-48,51,-31,-21,38,-7,51, /* [616][0][][] */ 35,-79,-46,65,52,-72,-40,-76,94,10,27,2,5,7,-23,65,-38,-75,-42,52,16,60,60,71,27,1,-4,40,-54,22,-26,-9,26,75,-23,56,54,-51,-44,-1,49,-45,22,-51,-4,20,27,-1,-2,23,-5,-20,53,30,69,9,50,-1,-74,8,9,40,-83,-26,-18,47,-22,67,-67,-42,-6,-50,9,32,25,69,127,-38,4,-1,-1,-57,19,31,-40,5,-62,-52,-87,-35,29,-17,40,-5,-79,64,0,-53,81,-13,29,-2,28,-28,-75,-11,16,35,86,-55,-36,37, /* [617][0][][] */ 73,-68,24,11,6,-61,-9,-40,12,-23,-11,-8,-10,33,8,-18,-9,-23,-27,43,127,15,23,-3,36,25,-90,14,-21,21,-1,29,-30,-18,-33,-10,30,-16,7,-22,47,-13,-29,-36,29,19,7,4,36,-5,-30,29,-47,39,22,29,-9,-21,0,-25,19,-31,-20,-1,-13,31,-27,-2,-29,-32,30,-48,16,17,32,36,63,-3,-45,-18,27,10,48,-34,-22,16,-79,-47,43,7,35,-35,17,-1,7,60,-25,-14,31,42,25,19,76,-32,0,35,-7,-62,8,-34,2,-33, /* [618][0][][] */ 40,-10,-39,65,-4,2,-15,-8,-10,-19,37,-38,-4,40,59,-15,4,-8,11,-43,-12,-7,0,22,39,14,10,-3,25,23,11,-39,-8,95,-28,27,-23,-4,13,-45,30,-35,-54,-7,17,-7,20,-30,-30,27,27,16,-4,-29,16,-24,-46,63,0,-2,-96,-19,23,-44,-8,-36,-45,16,61,14,14,20,-37,-7,-13,53,52,64,-21,43,72,57,-26,64,19,-49,6,34,63,13,-87,-20,82,-52,11,-49,41,-66,4,16,-24,-22,19,-1,5,1,12,-27,-18,127,29,-10, /* [619][0][][] */ 9,-48,-52,3,7,64,22,33,7,4,12,-28,23,50,-127,89,-28,56,22,38,22,-44,-48,70,-22,50,54,60,-5,19,28,-6,2,-61,-20,103,-51,75,4,0,-43,24,-49,10,-45,-31,-76,-32,9,-27,-8,18,68,-19,-4,-19,-4,-17,-33,-28,-34,22,-6,31,32,-61,-7,2,-1,-30,-19,51,41,46,10,-11,24,39,-3,30,-20,-75,-9,17,-65,57,-9,15,-118,-36,-25,28,-9,-2,12,88,49,12,-16,-6,7,-62,-35,61,-18,-43,18,-21,21,1,-10,-43, /* [620][0][][] */ -24,-42,-52,23,65,6,-41,65,16,-8,17,-19,-9,29,28,12,-39,-88,17,69,12,-36,-25,14,-11,-4,21,33,66,22,-21,28,-41,15,-43,-11,-25,22,-95,4,33,12,8,52,-27,-58,0,-74,66,15,23,-43,12,81,8,73,42,-12,-46,47,-7,-21,-82,-7,14,39,-4,51,28,0,-52,-60,42,75,58,24,18,41,-17,50,-6,-3,-33,-39,-11,127,8,-34,-32,-68,-81,-23,-116,43,-40,-12,-10,-7,-35,24,54,-45,-85,12,-17,25,-15,23,71,64,-10,1, /* [621][0][][] */ -37,-8,-20,27,-2,1,29,7,34,45,10,-20,45,26,-17,5,-4,35,1,2,-29,9,62,0,35,-9,83,55,56,21,79,-25,-40,-51,4,-2,56,24,-46,-59,-38,30,-31,12,-13,-9,87,-29,68,17,3,30,53,-10,40,-95,-48,34,-30,13,7,81,73,11,-92,17,-25,4,30,-10,-53,49,-16,82,-2,3,7,23,-72,-33,26,127,-20,-10,-50,-111,23,31,24,-39,46,15,26,-50,3,-37,-66,-38,-50,-54,67,-39,109,79,0,-9,28,1,-35,4,43,42, /* [622][0][][] */ 37,-31,-7,34,-22,-49,18,-29,81,42,-46,-2,67,3,10,56,-2,-104,1,80,20,49,-22,-6,-5,-19,-30,97,-4,55,-42,8,30,73,28,-11,-7,-5,26,-38,-8,3,-18,-18,-38,3,1,-55,-5,29,18,-10,46,72,26,-52,27,-15,-27,19,34,5,7,-57,-113,14,-9,-23,-32,-13,-20,-86,38,34,-1,-20,127,26,20,-17,-2,-64,-8,-57,-101,64,-28,-2,-11,-2,56,-39,23,-55,-14,59,28,-87,-26,-17,38,-39,35,-14,-43,12,-12,44,6,-34,10,32, /* [623][0][][] */ 29,39,-114,-38,-55,32,-43,74,-19,-26,-5,2,56,-35,-57,4,-63,28,-2,-89,-11,-66,-80,-46,78,-20,52,-5,61,15,-73,-4,-48,81,-2,83,8,11,-9,-64,-26,9,-127,81,84,70,38,30,-21,5,44,16,14,-126,27,13,-28,7,24,-38,-40,-69,-53,1,55,-74,-48,11,22,-24,-35,61,-119,-7,-73,22,27,-4,-39,19,-5,62,-39,43,-2,-63,88,-94,34,-16,-59,-7,9,71,-44,-72,34,-21,25,9,-29,78,1,70,-13,-14,10,-93,15,-11,64,-9, /* [624][0][][] */ -47,-11,-72,63,-15,-51,28,-38,54,34,15,47,7,22,30,-38,55,32,-51,-41,40,-15,-10,2,6,41,10,-22,58,-10,-35,49,2,55,1,-14,-56,12,6,-23,-57,17,-47,-17,-19,35,21,49,-1,-55,127,-40,-10,20,22,-12,97,-109,1,-8,-3,10,-57,64,47,75,-65,-62,-68,46,-56,87,-38,-23,-24,26,20,74,48,-29,56,124,26,-104,41,17,-20,-47,-127,-61,-44,-68,66,-2,-32,102,-12,-27,23,43,3,-39,-6,14,46,-30,-18,-13,92,-22,36,27, /* [625][0][][] */ -22,-16,-92,-41,23,-14,-39,-103,62,-104,-46,-13,-11,-7,1,10,-2,14,-30,-48,-10,41,13,20,-30,-13,-7,-39,-15,11,-54,-49,53,-53,71,7,11,16,59,-27,-67,20,30,-75,-40,19,-112,-30,65,32,102,1,45,64,98,-2,-23,-55,-105,7,4,22,-9,49,-40,-52,-5,2,-13,-1,-69,71,-73,-97,-47,-23,-12,111,91,19,32,-37,-5,13,-50,54,-46,-17,-127,4,-92,-73,-29,3,43,-2,19,-37,-20,28,83,-11,13,-17,-83,3,65,87,12,24,-56,43, /* [626][0][][] */ 82,8,1,77,-18,18,88,3,68,35,-49,60,19,-11,28,-27,-7,46,-24,-37,60,-39,119,70,10,-17,18,59,-11,-2,-46,-46,-94,45,12,11,5,-44,-32,76,-7,84,-68,-11,-127,85,10,21,15,60,-4,42,-43,3,-60,-13,-75,35,43,9,-42,4,-53,19,2,19,-36,9,-48,-15,46,44,-50,42,13,39,2,-10,35,-23,21,-15,-11,110,14,-20,-54,-21,13,67,3,-34,-35,-4,-53,-8,0,-86,-22,-57,-36,18,3,-30,-66,-65,-7,-4,-37,87,82,34, /* [627][0][][] */ -15,92,-41,-14,-47,-8,35,-25,-8,7,-100,-83,-7,11,-22,-8,-12,8,57,30,19,2,-25,9,-5,-62,-19,-14,-8,13,27,-38,-42,43,-74,56,-3,32,6,88,-63,71,-6,21,-77,-4,85,-40,81,-2,11,127,69,-56,-92,-5,-43,-13,27,-71,34,28,-15,-32,5,-46,23,-2,87,0,-45,-12,11,18,31,12,-35,36,-90,-23,-42,-20,-77,-8,-32,-38,-92,79,1,17,2,-1,21,-7,-50,-82,-42,38,-8,-12,32,-17,-58,-35,-67,-32,35,-92,53,15,-31,-84, /* [628][0][][] */ 84,-36,34,30,-62,60,-67,-40,70,-57,33,100,54,25,7,-42,33,32,42,-41,26,-22,-8,20,4,-11,35,-8,-12,-65,22,-15,-33,5,-63,11,10,50,-11,-29,21,15,-60,24,48,9,6,-63,46,-15,66,-22,-55,-22,32,12,10,28,33,55,4,-25,64,46,-2,-6,-101,9,6,14,123,20,-15,13,3,28,-92,58,-14,-75,-49,45,-10,42,26,-25,120,17,-13,-58,4,-1,-5,73,-6,-9,-40,6,-3,-35,30,-29,112,63,-19,0,42,8,-127,16,-38,85, /* [629][0][][] */ -10,-13,7,-73,-91,-46,-8,-4,127,-50,30,50,-29,21,36,16,23,7,-28,8,8,17,-51,0,-5,22,-41,-35,30,37,6,30,-17,-2,-18,-14,0,7,-12,-29,-44,64,14,-14,-19,-5,33,-8,12,21,42,-5,52,3,2,67,12,-31,-2,-26,-17,-50,15,0,-48,-61,-40,4,1,115,-19,39,-96,-25,-24,2,40,63,32,10,-36,35,-16,1,-2,-24,-43,-1,-79,18,-51,-13,-12,-6,-13,44,-51,44,25,35,7,4,9,-17,7,67,18,60,70,-41,-10,-18, /* [630][0][][] */ 28,-28,13,22,31,6,-10,-8,127,26,-19,-25,22,-8,13,55,10,-16,9,-30,4,-26,-33,29,24,-29,-73,26,42,83,-24,68,-55,23,-79,22,-17,-41,47,31,35,-69,36,31,-48,20,45,-10,49,-11,-25,-11,41,26,0,-19,52,14,-37,-45,-24,-1,6,38,-4,32,24,46,23,-8,-34,-29,-40,-60,9,4,29,27,-48,-6,19,-35,-9,6,-17,-15,-1,-54,-46,-33,-40,2,-49,12,-28,0,6,-22,6,-29,-41,26,17,13,50,6,-57,-11,-20,-68,9,30, /* [631][0][][] */ -101,-36,4,14,29,5,-127,6,-1,1,43,-2,44,19,-5,-17,71,-55,68,-96,83,5,7,-11,9,-32,-39,53,24,87,-82,21,-51,-24,15,-19,-45,17,31,-6,3,4,-87,27,43,-18,24,23,116,65,-23,-46,-5,-56,10,114,70,-46,-1,-18,111,57,-55,17,-20,46,55,-37,-97,67,-43,-33,23,41,57,36,13,-32,39,-82,43,97,-33,85,-24,39,-78,-120,-62,-70,-62,-67,-86,-7,-17,34,-94,-61,21,63,30,-45,61,-15,-47,121,-15,4,49,12,18,-6, /* [632][0][][] */ -20,14,-50,-22,-8,42,-53,-48,-100,-23,27,93,-64,87,-48,4,-20,92,6,-114,24,-22,127,-101,3,-67,-44,90,55,-14,40,-36,-46,8,18,-8,-89,-6,-53,35,120,-10,24,68,-50,-37,-5,-115,59,-96,-52,65,35,44,-116,4,-87,-66,-75,-13,-17,8,-88,16,-99,-67,-16,-111,26,36,118,48,12,-48,87,7,-34,96,18,35,42,-56,-56,9,-78,29,-19,70,-25,22,-51,104,67,-95,-75,38,-28,31,-89,105,79,-13,-23,-21,-85,27,-28,-65,40,-27,-103,-98, /* [633][0][][] */ -17,31,-16,-3,-50,51,7,9,-31,-46,22,25,-69,-29,-18,0,-2,34,-16,-15,-58,-39,-33,7,17,13,7,-2,34,32,13,-9,0,-17,54,40,59,-35,-44,33,7,30,-31,-7,-48,77,31,-32,-4,-6,-17,3,-32,-41,2,-50,-52,25,-54,14,15,29,-4,-13,15,-48,-11,20,10,-13,-55,-10,-15,52,3,5,1,-27,-8,-6,52,29,-65,0,-18,8,30,-127,45,25,-1,33,11,-2,7,39,5,-23,-45,16,7,-54,-22,-3,-3,11,-10,-39,12,21,48,38, /* [634][0][][] */ 69,10,-38,15,57,-89,-51,6,62,52,57,-28,54,71,22,7,57,-15,-46,-24,107,18,-3,50,94,17,-21,64,2,11,57,65,45,-31,35,29,43,-9,29,25,19,-49,-13,52,-58,-36,-11,-3,-23,-13,-60,-31,-29,-44,106,-5,27,-127,-83,38,34,44,-51,10,-78,36,-54,57,-32,-22,-3,-78,-59,41,43,-5,-1,4,108,-71,-13,18,26,-6,-29,45,26,13,1,3,55,-24,43,-73,-35,46,5,90,-9,-27,99,-43,-28,-7,-50,17,23,8,79,11,57,-28, /* [635][0][][] */ -29,-37,-66,-13,45,24,-47,8,13,40,5,-32,10,20,-88,15,108,-27,40,15,77,-42,7,-2,51,33,-3,33,13,-35,-25,53,-57,-4,-1,-22,11,54,9,78,-66,-25,-52,7,51,-8,-127,-22,23,-62,16,4,19,-1,33,-24,-36,0,-59,36,50,-30,27,2,-6,6,1,26,-18,-9,-4,67,-15,-10,31,23,60,15,-22,-37,-66,0,-25,-94,-36,32,-7,11,-27,-49,-33,-21,-22,-36,80,56,-35,-45,-37,43,-12,-75,9,-74,-47,41,-15,-45,40,-86,-4,-5, /* [636][0][][] */ -1,-88,-29,35,-39,-37,-49,39,-76,-4,-20,24,-73,91,-122,68,33,24,32,-16,-2,19,-1,20,-7,-5,62,-12,-2,2,-72,-65,7,29,43,40,-49,-106,-48,-53,16,-22,-71,91,-85,52,53,4,58,-17,-19,75,-32,-85,-69,-1,13,9,5,-61,-15,-36,5,48,-2,-36,-26,22,-19,-77,18,64,-27,58,126,38,8,-41,-53,-20,9,-74,-46,48,-127,-120,-23,-22,29,29,-32,-23,11,-21,81,122,-67,-81,-8,55,2,-41,82,-45,-63,43,-28,-101,12,0,-32,5, /* [637][0][][] */ 32,-74,19,107,14,40,-93,38,33,-56,32,1,-42,-38,-66,10,9,89,21,-29,4,-110,-11,20,-24,25,51,-58,21,-19,39,-26,8,33,17,40,71,-1,-8,-16,-26,28,35,71,86,43,71,-33,65,-59,59,-4,-65,-32,24,-20,-31,31,52,36,-8,27,96,20,-35,-41,26,73,-77,2,25,4,-22,-28,-3,52,-40,60,-26,20,85,10,-127,33,64,20,14,-14,55,69,-42,-89,27,-30,9,68,39,26,-74,-40,19,50,61,71,23,4,-8,11,-21,47,-6,17, /* [638][0][][] */ -4,-32,-76,-10,-24,-36,71,33,3,-5,7,14,-83,49,4,18,-19,-66,-33,-49,-41,-47,36,6,45,-39,28,47,54,-33,27,-127,-17,46,-28,7,7,54,3,22,-30,89,21,28,-83,-10,-33,-56,-3,0,-2,113,-3,-23,-32,17,-103,-43,102,62,21,1,92,13,-66,-40,22,34,-53,3,8,-20,-34,48,-26,31,12,-37,-16,-69,6,-8,-18,41,15,-44,-31,1,8,39,-7,-52,41,6,55,-41,-56,-48,36,-21,-11,-19,17,-7,-3,58,2,-17,58,0,0,11, /* [639][0][][] */ 5,16,-18,-21,-5,42,-100,-35,2,-51,-127,49,-17,-10,-46,-42,42,66,29,71,-34,-34,-49,65,47,-53,59,-42,14,16,3,-43,-53,-5,32,49,55,11,-3,67,8,54,-108,-22,16,93,62,8,7,-44,16,62,-5,-14,-30,8,11,-26,16,-50,40,41,-41,-54,57,-89,-35,-3,22,22,-62,-2,-73,28,-32,30,-26,34,-39,33,27,10,-29,51,58,-66,-12,24,2,61,-104,78,24,8,-60,-28,32,57,38,-45,24,47,103,42,-41,18,14,-7,-3,25,17,-8, /* [640][0][][] */ 17,-15,-49,44,-55,33,52,75,-25,67,-45,-25,-36,66,26,39,-91,8,-2,-102,-46,16,66,48,33,15,-19,83,27,40,-8,-96,-48,70,-40,77,-103,-5,28,62,88,-10,-22,-37,-33,-2,44,45,31,28,50,31,20,-26,17,42,-74,11,54,-50,-62,-5,11,-36,16,-9,-18,30,-19,-92,76,9,12,21,33,68,8,-31,4,-86,-72,-3,-91,31,-77,69,67,-43,38,-4,-48,-55,40,16,66,-40,25,-100,-13,-9,-17,-43,75,-24,-55,44,8,-13,-8,127,-6,58, /* [641][0][][] */ -29,-57,-1,83,-4,29,-23,-101,-46,-87,24,75,-33,6,43,-35,10,-55,28,26,30,4,-3,11,45,70,-41,-5,39,20,21,28,-13,-63,-38,-12,2,-4,-20,-26,-72,9,77,-56,0,-68,-53,15,16,-11,0,14,73,15,53,-8,-24,-75,-29,15,29,10,83,4,-45,-7,-51,11,6,69,0,-66,-55,33,4,45,4,32,-14,-22,24,-83,-14,-25,-36,61,-11,-90,-127,4,-101,23,28,15,-26,-38,-5,-104,4,12,40,-33,-63,65,13,-19,3,-47,-3,-33,74,-37, /* [642][0][][] */ -18,52,-29,-47,22,19,-53,6,31,60,-6,-34,44,-10,-27,43,-37,14,-5,-27,-77,-19,25,-17,-7,-73,-54,127,36,-12,34,-16,44,-32,61,89,39,-28,-92,-25,39,63,-30,-67,-59,49,33,29,-39,-8,72,15,4,-114,-21,-76,-10,-5,-14,-80,33,-19,-65,-63,2,-11,-49,0,-1,-54,-45,-75,-65,4,47,50,-14,10,-4,-68,-35,97,-1,9,-8,7,8,33,92,-61,71,-2,-103,12,52,61,-17,59,-94,-13,17,-32,15,37,-47,-8,42,5,-12,-16,-4,13, /* [643][0][][] */ -3,27,-78,-61,-81,1,24,-35,24,-27,-35,-68,82,10,-40,-15,-58,-52,-22,-93,-25,56,-82,-56,51,48,51,-19,-30,-14,16,-15,-44,26,-39,19,107,9,-62,87,-9,29,-11,43,-12,30,-37,15,-4,58,107,-127,26,64,65,31,70,-90,-49,92,9,-14,-4,36,-61,-30,-16,28,78,-3,-32,-66,-30,-68,-25,18,42,33,37,18,-35,-4,-27,31,-94,116,55,-6,-30,-101,-48,38,-20,104,26,4,-18,-55,-75,57,48,1,52,20,46,-11,53,-12,86,52,-72,42, /* [644][0][][] */ 89,-67,41,-3,2,7,-33,14,8,4,-15,-57,-2,-53,15,44,-77,1,24,82,-23,-55,-20,19,15,-23,28,40,-8,-34,0,-28,-54,0,-2,110,-55,12,-30,-14,-16,48,4,-8,-97,28,12,20,-91,-18,2,-23,-1,19,-69,-31,-60,-43,7,-74,0,18,-24,-10,58,-49,-33,70,13,-22,17,28,-1,28,15,-23,0,-11,-43,13,6,8,-18,13,26,-49,-18,18,22,-52,-31,-19,-33,32,17,42,-12,-8,-14,33,14,9,1,-13,-68,-31,127,-65,-22,-23,1,16, /* [645][0][][] */ 64,-13,-127,-11,25,23,-17,16,25,1,-19,-6,65,113,-27,88,-37,38,68,13,77,-30,59,77,22,-14,-43,45,7,0,-24,-6,-98,-22,-3,-2,-44,-22,-22,34,-24,-1,21,27,-10,13,47,-33,52,-71,16,10,4,37,11,10,-53,77,-34,23,0,-4,-5,30,-89,38,-36,-20,41,14,-10,82,25,24,-3,0,-56,21,27,-48,-13,-82,-64,7,-34,53,-120,3,4,15,16,-79,-50,-79,-15,-40,38,-40,-69,21,8,-40,8,-52,50,-19,9,-53,35,-25,32,42, /* [646][0][][] */ -58,-82,-29,64,12,-9,-71,-26,4,-61,-8,82,7,35,-72,16,-50,32,19,-50,-82,-5,3,26,75,-14,26,-17,0,-1,-15,-100,16,-5,40,10,-33,-49,5,-90,-32,35,-11,-13,16,8,7,21,31,14,-21,-19,30,10,8,-7,63,4,46,-92,6,4,-21,-68,-19,-66,-4,7,-5,-62,-50,54,-17,85,90,32,-36,40,-70,-10,12,-34,22,3,25,-16,-56,42,10,45,-7,-78,43,-7,33,83,-14,31,-72,-28,60,12,92,127,-37,-98,39,-31,-11,31,7,-25, /* [647][0][][] */ -9,37,36,-23,-50,14,59,-44,92,-42,48,36,-45,-53,45,23,-21,-65,-16,-96,41,-23,-6,-80,41,-27,-47,-58,19,5,10,-51,-1,73,-10,28,-69,25,-29,7,-92,54,7,6,17,34,29,14,21,-43,30,76,81,-18,-62,-93,5,51,14,-63,-50,1,8,-34,-15,-26,11,12,-10,-11,127,41,-29,21,-52,-23,-96,-45,-21,18,63,11,4,13,-40,7,33,28,-70,122,34,22,-53,40,25,89,2,-27,-90,22,-12,-77,-20,23,-36,-24,47,-18,-40,33,28,-80, /* [648][0][][] */ 28,0,-22,39,-13,28,4,-44,2,-22,18,-42,23,21,26,19,24,8,-21,56,28,31,29,37,9,53,-127,-25,24,45,-31,63,-14,32,-68,-26,13,45,-10,5,41,-15,-39,14,21,6,-10,-2,5,-3,77,-11,-17,28,24,-10,23,-57,-5,-66,-6,-22,15,-13,12,67,-53,20,29,14,-26,50,-10,-52,19,-2,74,-8,31,-26,80,34,18,-90,9,44,-42,-7,-60,1,-68,-55,67,-3,-22,-36,-4,15,-3,46,-9,-38,2,-8,-40,37,27,-60,84,2,-24,-18, /* [649][0][][] */ -23,-1,-1,92,2,-75,-23,10,-71,-2,-53,-43,-17,68,-61,-25,-32,7,1,-25,-75,-17,25,63,-5,23,96,51,18,87,-56,-22,35,127,92,81,-22,64,1,1,4,3,28,42,-4,21,19,-52,-42,-14,3,18,-32,-72,-116,-46,-9,-15,15,30,20,-5,-43,34,-22,-73,-86,-27,32,-52,-38,28,-18,8,-7,47,36,-10,7,20,66,15,-50,33,13,1,38,48,76,-11,-14,23,97,-49,-6,17,0,-50,-50,46,37,-43,35,12,-16,40,-40,-7,-1,28,18,-45, /* [650][0][][] */ 63,-4,-35,-35,34,-99,-50,-83,-4,10,28,45,55,-7,-16,11,36,-26,-3,-2,81,15,18,-33,61,51,-56,50,-4,7,-4,5,-32,-13,-82,-55,22,-75,-27,25,46,-12,23,37,4,-17,14,61,0,-29,-22,21,36,4,127,22,29,-55,-54,-50,-24,-33,8,-24,-53,-33,-62,-8,52,-8,-13,1,9,35,34,-31,29,13,-33,11,10,47,52,-63,-13,50,-21,-38,-13,59,7,30,33,-73,-59,16,1,31,-20,23,75,-11,21,45,9,3,9,14,50,-26,3,0, /* [651][0][][] */ 27,6,-56,-87,1,-92,-76,-47,50,-54,58,34,47,15,23,-10,74,7,11,12,25,41,-4,-21,14,28,6,27,63,15,43,-3,22,-75,14,-41,0,8,3,26,-7,10,85,44,15,19,38,-65,94,-35,116,-62,-66,-47,106,8,0,-79,-40,64,79,89,-118,43,-57,-13,48,-73,9,30,-53,-98,-38,-17,5,18,-47,127,57,-10,-70,89,36,8,-41,83,-49,-27,9,-85,-13,73,-5,-11,-26,31,22,34,9,-1,72,5,-12,-35,-40,20,-14,38,-48,35,-12,-3, /* [652][0][][] */ 31,18,-4,13,35,-25,11,83,35,-7,-117,59,-4,46,27,8,-48,-54,-27,-75,-13,20,65,43,127,11,33,10,61,-39,10,40,-8,25,9,30,36,89,16,-28,-15,13,30,27,-5,-13,-12,-53,17,51,7,-9,-3,24,-48,-31,-52,23,11,-7,-68,-76,7,23,-13,23,-40,58,-5,-59,19,5,-43,55,15,45,-16,-3,-31,-3,0,-17,-25,14,36,23,54,-21,0,-46,-23,92,57,35,45,71,-45,-58,29,-89,29,-34,30,85,2,8,-1,-25,-35,33,30,-31, /* [653][0][][] */ -31,30,22,52,-14,-12,57,18,-34,9,1,-1,-57,-1,-7,23,-36,44,-25,20,-127,-31,30,-17,-45,23,0,-7,12,19,63,-23,-18,12,17,32,37,56,73,-3,-16,-13,-37,-66,-50,-22,-18,10,26,-26,-45,4,17,-45,-13,-40,6,-36,-56,-56,-80,10,65,-11,-1,-12,-11,-2,45,-53,62,-37,12,10,31,31,-23,53,-33,-71,57,-48,1,24,-81,20,0,-12,-38,-52,-61,19,-32,-38,-10,16,1,-48,-22,-11,22,16,34,41,-36,-4,55,23,5,40,46,56, /* [654][0][][] */ 40,42,-106,68,-50,29,127,-74,47,58,46,23,61,-26,-20,12,47,-31,45,42,78,19,27,73,-25,-16,-64,-42,4,33,-21,21,-47,-25,-11,-52,89,-7,92,-17,-19,-18,25,25,17,51,3,-37,33,42,17,-55,-86,38,-29,-76,-11,-19,-19,39,84,34,-69,-67,-105,-30,-72,17,80,50,38,-77,-12,-94,94,-80,70,18,68,-87,48,-63,-9,-30,-46,60,-48,-24,32,-2,-26,-52,-68,25,7,27,37,-30,-48,72,-25,42,-10,66,-24,95,45,-36,52,3,44,38, /* [655][0][][] */ 16,-91,-76,15,-29,-47,16,36,-42,-10,-51,-3,74,-3,-34,30,40,-55,57,-47,22,111,-30,34,44,41,-95,36,116,68,-31,-23,32,-6,-68,33,-27,-33,15,48,-41,14,35,57,0,56,-24,-12,35,-32,-41,-60,31,15,-113,-11,53,-35,-59,-86,38,56,50,50,-46,-26,5,19,-4,-50,32,-71,8,33,-15,-23,-21,52,-59,77,52,-122,25,-20,-93,38,-11,16,-43,15,63,23,-127,27,12,-59,64,-40,-1,44,69,-2,3,-11,64,-8,4,-100,76,-62,-17,77, /* [656][0][][] */ 16,56,-11,15,-7,-65,-31,-1,-44,-87,-17,101,-27,29,-24,-11,-8,3,22,-18,9,-41,0,-114,22,-33,54,-44,19,-66,66,-113,-69,12,30,-58,-52,19,3,-25,4,9,19,24,44,50,21,19,78,6,-9,44,13,-38,9,-8,-25,-18,28,61,-38,13,-1,14,-80,19,-62,-23,62,-18,20,-21,-32,4,1,124,31,-28,-25,-77,12,-46,-12,47,-37,52,40,-49,-76,-7,-55,92,14,-37,-1,18,-62,38,17,52,-3,31,38,13,-77,-127,-27,-50,-3,-21,32,-35, /* [657][0][][] */ 9,-127,-100,91,19,33,24,21,61,11,-35,-30,23,32,4,87,69,-53,29,20,94,-13,-96,57,0,75,-45,-40,12,1,63,49,-18,30,39,-43,-56,-19,-32,49,10,21,-85,-39,0,-32,10,-34,28,-92,-5,13,-60,95,84,61,34,71,-49,31,33,-59,-51,2,-54,4,33,-14,-64,-9,6,-15,-4,-44,92,44,-23,53,-53,39,5,-53,-55,-51,-66,106,-63,-26,29,-18,-27,-54,-79,-96,33,51,-1,17,-68,-25,-8,84,-75,101,2,45,-43,-20,19,16,-15,-14, /* [658][0][][] */ 52,-95,-30,-7,-40,-23,44,-12,38,-43,2,76,12,2,18,-7,-55,-5,1,0,82,27,30,63,46,19,-94,13,5,20,42,-17,0,-35,15,-13,60,-32,20,-14,41,-38,-9,16,-6,5,-33,53,5,-7,-48,-26,63,32,2,50,99,-24,-55,2,-51,-9,-46,31,-90,0,-12,-26,-63,-18,35,-81,-64,35,30,22,50,13,22,23,-13,-22,24,-3,-35,127,-43,-5,29,-51,72,31,-13,-6,-33,46,-37,-66,55,74,93,17,56,53,48,28,41,24,47,-47,59,-11, /* [659][0][][] */ 44,46,-33,-3,-20,7,8,3,20,-92,6,45,-47,6,12,-52,9,-2,18,-41,74,-124,-48,46,-15,10,36,-18,3,-41,127,-10,-26,-9,76,42,29,-11,-85,46,-54,-31,-38,34,-91,10,-31,-18,-38,48,-10,15,-49,-15,-69,-87,56,15,47,-4,31,68,-2,-21,-27,10,-21,53,26,4,71,-18,-16,26,95,81,-7,76,-28,22,-47,-55,-60,102,5,34,-72,-48,-4,-2,3,35,15,34,26,-7,60,-32,-19,-70,-26,-84,-38,-14,-30,-12,-11,-22,-42,10,-57,6, /* [660][0][][] */ 19,-114,-25,-30,-39,66,11,54,-39,24,-94,3,-3,67,-4,-36,-75,-13,-37,-36,19,11,42,-13,3,0,-3,26,48,4,26,-32,-22,15,-20,10,7,-18,0,-51,-127,21,43,-22,-13,21,54,-23,34,-44,28,25,-74,46,1,-81,-84,88,65,-36,-88,-81,-26,-35,-62,-21,29,66,75,-32,-34,22,-13,4,-44,-5,-38,88,-70,33,23,-33,-88,9,-91,18,-44,-11,24,-7,43,-7,-62,70,25,9,-38,-33,8,28,73,-15,5,48,-23,-39,67,-51,-44,-12,-49,45, /* [661][0][][] */ -9,58,-7,23,23,-80,-16,-17,21,-57,-8,127,-84,-18,-18,-42,-12,-29,-51,-2,-20,-26,58,22,67,-70,-43,55,64,-58,54,-54,-5,-44,-48,-56,-45,-28,41,83,-24,44,11,20,-36,40,63,18,27,-23,67,61,41,64,40,-101,-15,-29,-28,36,-7,-22,6,8,-11,-4,24,-11,49,-91,23,-48,-38,7,47,57,-38,31,5,12,20,-24,-42,-52,-1,-32,5,-101,-28,44,-39,-21,33,41,42,-58,-107,7,-1,-75,81,53,52,20,-5,-2,30,-14,-11,68,56,42, /* [662][0][][] */ -73,-55,-6,14,-104,100,38,-12,127,-44,-71,-25,-1,12,-28,22,-22,-71,72,58,9,64,4,41,22,59,-27,32,-41,96,16,118,-75,39,31,60,-30,32,118,81,-4,34,-42,-98,-103,5,-90,-1,66,68,-34,39,20,-56,64,43,9,-75,15,-63,-3,10,-12,32,29,39,-18,-65,67,115,-46,-35,-61,-37,58,-54,16,13,-38,-39,-55,-78,37,-45,-98,50,-46,24,-23,-88,96,-34,40,97,-48,53,-5,-29,57,-41,53,67,68,56,37,94,-59,34,14,-32,97,-116, /* [663][0][][] */ -20,-42,17,15,14,34,9,-20,14,18,2,-87,-42,56,52,62,-22,-58,20,37,60,8,19,31,17,38,-1,49,-37,0,-75,-43,-8,86,17,33,-4,38,102,-39,-97,-13,8,12,-18,-31,70,-99,-8,-19,40,4,18,-33,32,-64,71,-26,-6,127,-28,-57,-50,-15,-14,60,-58,8,32,12,-33,34,-50,-20,55,-69,42,107,42,-85,31,-82,71,-60,-54,-29,42,46,-63,-59,-23,-26,-36,77,5,62,-4,70,-53,-11,19,11,20,14,-29,10,7,1,18,-55,39,45, /* [664][0][][] */ -55,-17,-107,-50,29,-106,2,24,19,13,4,-13,-5,49,15,-43,22,-55,34,15,32,-6,-76,-26,36,-9,-14,44,82,9,-69,56,-29,-3,35,-11,12,21,69,10,-3,-38,17,3,27,-50,-37,-13,24,-72,15,40,-4,2,15,41,11,-95,-78,25,-18,-30,-44,43,-32,2,20,-23,8,67,-54,-22,-27,-28,27,-35,-79,127,75,-33,-14,15,-8,-45,-16,36,-33,-65,-46,-110,-31,24,-40,25,18,38,-32,-27,-9,18,87,36,-28,1,-8,55,35,-34,18,-55,23,-28, /* [665][0][][] */ 12,-17,-53,40,1,59,14,-17,45,48,10,-78,36,74,-30,-11,-60,14,6,19,79,28,-10,27,14,14,-17,18,-79,-3,27,-49,-66,-4,-28,-57,30,40,-30,-6,-41,-43,42,18,-32,-41,17,-63,102,12,17,0,-1,21,-26,-4,7,-17,-60,74,-9,30,-53,24,-31,-45,-6,37,-28,24,-25,17,-26,33,-43,-9,43,44,39,-7,-47,-11,61,-33,-16,127,33,57,-78,48,45,-15,-42,-31,-47,19,-27,-74,8,35,51,15,34,15,23,10,18,11,112,-24,-18,9, /* [666][0][][] */ 6,-36,-47,9,60,8,-20,-63,85,8,27,0,127,67,37,21,54,61,23,-22,32,-55,-24,121,102,38,21,58,-16,30,53,48,-4,-38,41,-7,-5,-12,23,44,-33,-5,7,1,-67,62,-48,19,-8,-62,-36,-26,41,1,-1,10,56,5,-23,100,46,126,-59,20,-10,3,-65,-26,4,-12,8,-59,-21,-10,-14,-21,-12,86,0,57,34,31,59,14,-39,66,-77,-38,-7,11,11,-35,6,6,-37,-2,78,-10,28,9,21,-62,-5,23,-51,-20,-87,-1,46,-84,67,-62, /* [667][0][][] */ 7,11,4,-50,-108,28,-37,16,31,-36,-33,-48,-42,17,23,-68,-47,-56,47,-49,60,-23,14,-36,-15,-64,-9,98,5,15,50,43,-50,60,12,-25,-103,39,28,32,-81,34,38,22,31,46,28,-5,86,22,-23,-34,55,13,-71,-8,0,46,-51,-38,-44,-55,44,-35,57,40,0,71,15,-3,15,-30,22,-7,-18,-5,-59,13,-127,-29,47,46,-7,-26,-30,21,-11,51,47,-77,5,41,-22,23,-6,20,14,-3,-9,59,101,-34,41,-39,-25,-25,63,-13,-49,-28,29,-55, /* [668][0][][] */ 0,41,42,-23,41,-82,59,-21,47,15,13,-35,-53,-30,43,-62,13,-25,17,-20,51,-100,7,-22,93,-50,-7,6,-22,15,-21,-10,-85,-31,-21,32,-15,10,-2,39,-65,-12,-127,25,-9,15,20,46,-38,-22,-6,83,58,-5,-25,7,-6,-50,-24,23,-19,-55,2,27,-56,-17,-28,7,-64,52,107,-39,-33,12,53,81,19,2,-17,19,75,4,-99,27,-7,-51,22,-42,0,9,-7,-59,-24,-38,-26,8,-70,-17,-19,-88,-5,28,28,25,18,-3,84,-20,-4,8,77,-5, /* [669][0][][] */ -42,-5,10,33,-6,-15,8,-27,3,-13,-61,61,-65,57,28,45,-17,-22,-53,3,-47,61,8,-46,23,2,-23,-28,60,15,-8,-65,41,56,-17,2,-6,22,-81,34,-81,-24,-23,17,-39,42,-15,-57,75,-14,-10,-43,29,-29,-72,9,41,-9,16,-70,-65,13,-18,-63,59,-32,3,8,6,-24,-24,-31,10,6,13,37,65,-19,0,-18,76,6,-59,-52,41,-30,75,47,-39,-34,-25,-12,127,29,25,56,-35,43,-35,-67,8,22,14,75,-42,-38,-7,16,15,7,-1,-68, /* [670][0][][] */ 45,25,-29,-42,-53,-2,46,29,1,-98,-85,-27,-91,21,-26,-76,-54,-96,-18,8,-1,-113,-1,43,61,-14,37,54,10,-62,38,-11,-35,56,97,54,-8,-11,-9,44,-13,35,109,-31,9,53,55,-89,79,54,60,0,-55,-114,-103,-94,-49,44,127,-11,35,-30,-57,-87,-97,-69,4,13,14,45,-8,7,28,35,56,12,40,-77,-2,-8,35,12,-13,43,2,108,-54,-26,87,-106,14,12,-48,41,63,-79,-21,57,75,45,108,-5,11,-23,-31,-14,86,-76,-46,25,-17,-97, /* [671][0][][] */ 30,-18,-21,-29,16,48,-24,-27,-57,12,-12,34,1,-4,-61,31,30,36,27,-36,-1,-40,45,37,-6,-25,79,60,-40,-3,-37,-26,-19,-18,18,60,3,3,54,-36,5,2,-58,10,-52,63,10,69,47,-22,-66,31,22,-63,0,-12,22,24,20,14,41,-5,-28,-22,32,-18,52,-2,4,-26,-29,49,22,3,15,59,33,21,-30,-4,16,-4,-30,35,-27,-46,12,-31,-24,-20,-10,23,-21,31,32,84,-37,-24,-36,-46,-26,14,83,44,-127,-37,59,-8,-33,45,18,-18, /* [672][0][][] */ 4,-77,85,33,23,-68,-41,13,-25,15,-51,59,-90,127,-12,0,36,-71,-6,-49,-23,11,-17,-71,68,28,-17,12,16,31,-39,-45,-83,64,-30,4,-37,-8,-5,-20,-9,6,-70,-19,-19,47,15,-62,93,-19,-45,59,-47,-2,19,-38,-35,31,-14,11,-35,-73,-32,-85,-20,-35,26,28,-7,-10,34,-22,35,-52,84,4,29,75,-10,-32,41,-42,-46,20,-20,26,62,75,80,-40,-19,-19,68,35,-3,73,-45,-10,-45,53,-6,82,40,-16,-51,-10,22,-7,-53,23,48,-26, /* [673][0][][] */ -25,-96,-94,-35,-7,-6,-40,88,-76,14,103,16,-4,28,-30,17,82,-45,36,29,-5,-36,-78,39,48,97,-101,-2,-4,10,25,67,20,-37,-93,94,62,-119,-17,42,102,-26,-81,64,-100,-27,9,-24,43,16,101,-5,32,-49,12,13,-62,-45,-127,98,48,35,11,-78,25,-25,67,-34,43,89,-50,-58,-15,90,75,34,17,27,73,13,-18,-12,-11,32,-84,75,-75,-57,37,6,-102,-49,-38,-24,85,22,57,67,43,-18,11,-45,55,8,13,107,30,70,39,42,74,60, /* [674][0][][] */ -25,9,-4,-29,12,25,127,-65,78,-104,20,18,51,44,37,38,45,7,84,1,28,29,21,20,-48,-2,-88,-6,-55,57,28,5,-68,7,12,-3,32,29,-17,23,-3,36,-28,-46,-30,-16,7,-4,71,-24,29,-39,70,-20,-58,27,32,-3,-12,45,50,-59,-9,37,-22,11,-28,-66,15,20,-45,-4,-19,51,-12,13,64,-12,4,14,89,-9,17,22,7,14,-59,-26,40,46,40,-124,-19,19,-65,48,-18,-11,26,18,-60,-87,42,18,7,6,20,4,28,19,-7,7, /* [675][0][][] */ -48,-4,-19,-15,-12,-62,-59,127,21,-44,-39,-19,-43,40,0,-16,32,-29,76,24,-67,-37,28,-62,13,-22,-18,103,12,10,6,17,-57,17,61,68,14,52,-38,-13,35,-20,-66,47,-83,31,-21,10,-12,-17,3,70,22,-80,-33,-4,-3,-44,12,3,-14,-14,-3,-9,-9,-40,-42,-20,-19,8,-13,-47,-44,89,76,57,10,19,5,-34,-15,-9,-24,11,15,4,12,25,74,-40,20,19,-15,-102,2,-44,43,-6,41,-32,19,-37,23,-7,12,29,56,6,-38,-1,82,-38, /* [676][0][][] */ 2,55,48,3,-35,35,-15,-18,24,-23,-38,4,18,2,-31,14,18,-20,106,-18,-82,-7,-53,-11,-38,8,7,29,58,41,11,26,19,-6,55,4,-68,-46,-36,13,0,81,-127,-48,7,19,65,-51,33,-23,-40,81,21,-24,5,-15,1,55,-64,4,-44,-30,44,-94,25,-41,17,88,36,71,-13,-47,-29,63,86,-12,-7,-26,-73,-116,-25,-33,23,13,-10,4,81,-14,25,13,13,-30,48,79,1,71,-50,-36,-11,-43,0,-60,6,16,-21,5,-6,4,-92,9,49,-30, /* [677][0][][] */ 44,-25,23,21,-5,-37,-11,-21,35,-78,-7,66,12,-127,22,-110,6,-33,126,-44,52,-56,-26,-12,7,-52,33,-15,98,19,27,-16,-64,-17,-31,-21,47,3,-1,60,-4,-4,-32,87,-92,10,19,-86,23,95,-1,27,-32,-28,-36,-38,-24,-10,49,16,0,5,24,-18,-40,-7,22,24,39,-49,73,-24,-2,54,15,55,-50,56,16,-21,46,-4,-77,116,28,9,1,-16,4,-5,-15,-74,-19,53,23,-28,-28,-3,7,-29,29,23,17,-48,5,-55,1,-8,-72,19,-50,23, /* [678][0][][] */ -37,-33,-101,72,-90,45,-14,-54,24,36,-10,-127,90,-2,-2,47,53,24,-19,-11,17,66,-23,47,7,56,59,51,30,21,42,-27,3,63,-27,29,34,74,-3,38,2,1,32,-37,61,-76,-76,-19,35,16,1,23,83,-78,-22,52,-36,60,-37,18,37,-1,58,-6,-5,7,-34,-8,-21,-5,-57,-26,-62,-4,35,-17,72,28,-14,-18,8,67,14,-6,-55,-35,-28,68,-31,-1,-31,-39,39,-3,-60,30,40,-46,48,7,63,-14,39,14,61,63,-69,-28,95,-44,19,-71, /* [679][0][][] */ -25,-38,-33,29,-3,-4,73,-22,21,-92,36,45,-17,4,36,24,50,20,20,-20,-32,77,-68,34,-37,23,24,-32,-15,78,-70,12,56,1,29,27,-12,14,-6,-47,-32,5,18,-10,-3,-24,-15,20,30,70,11,-52,24,-11,-10,7,4,1,-59,16,127,-49,8,26,-32,-41,5,5,22,-10,-40,-86,-32,-6,-3,-10,26,70,19,-13,13,-45,8,14,-56,56,-20,-79,-27,-51,-13,-20,56,47,-96,32,34,-52,33,-33,61,18,16,15,62,-11,23,40,32,16,58,-50, /* [680][0][][] */ 0,63,21,-109,-27,-22,-38,80,-35,29,-84,13,36,121,33,19,-41,-73,3,-28,33,-9,7,13,70,-54,105,56,21,45,38,27,-35,25,-43,32,-88,83,-76,4,-80,100,74,47,-13,-55,67,-80,22,-36,-8,41,70,33,21,21,-19,-4,-7,12,-28,-17,-60,-70,-55,-70,-69,31,84,-40,7,-6,-42,-15,-19,14,-12,36,10,-24,31,127,-1,-66,114,6,39,44,71,-62,0,32,58,23,68,-9,-58,-38,19,50,117,-81,68,-32,1,-49,-28,-89,-88,-21,18,5, /* [681][0][][] */ -16,-28,9,-23,-40,17,-80,37,57,-20,28,61,-53,98,-24,-19,-11,-83,-26,-73,30,-55,15,40,37,2,-52,38,-25,-42,90,-19,13,50,7,65,17,121,4,75,-79,63,66,-43,-66,-32,36,18,73,27,-38,127,2,7,-45,-60,-32,15,93,12,-105,57,39,-58,7,-126,-19,88,15,-36,3,38,22,-32,0,-27,-56,55,-21,84,34,33,24,6,-2,83,1,-19,10,21,12,-44,28,18,39,-39,-75,3,54,-4,105,14,-10,56,23,-19,19,-54,-84,23,-11,34, /* [682][0][][] */ -49,-10,35,11,-55,-5,13,-58,-32,62,-54,-46,-32,22,49,19,57,-17,-7,-2,0,28,-49,50,22,6,-27,3,55,9,41,-6,-50,-2,-23,-18,-12,29,70,127,-58,-8,-25,-19,9,20,-47,-10,25,19,0,6,55,37,-37,-8,-30,-43,-13,-13,-27,31,-36,-3,-7,90,24,-50,57,-33,-15,56,-12,-41,31,0,5,71,7,0,28,-15,-29,6,-56,6,-34,-27,0,-35,-1,-89,-45,-33,-45,0,-41,41,-7,-12,32,-18,-10,-5,25,28,16,-30,48,-22,45,20, /* [683][0][][] */ 13,8,-86,52,24,23,-21,74,11,-6,-36,12,29,-57,-102,-67,22,51,16,-47,13,-57,0,44,127,62,89,71,73,11,-14,-26,-42,34,21,36,-10,-34,-19,-8,14,13,-47,-18,25,99,10,27,76,-66,-51,112,-67,11,8,25,-4,-95,15,-73,-10,33,18,-1,74,-16,30,32,72,-79,21,-13,66,33,48,27,-4,81,-5,-4,11,21,-30,48,67,-7,73,-14,66,-19,-37,-88,31,16,55,23,36,-45,14,-55,-54,32,28,90,9,18,4,-13,-41,69,17,-101, /* [684][0][][] */ 47,-48,-12,107,-2,113,-29,-19,58,-92,5,21,-38,-91,28,-30,-52,-10,127,27,-67,-63,-113,65,49,47,-15,-16,30,-51,-5,21,-94,26,19,80,-9,10,-116,7,-4,17,-44,-84,-21,-68,96,-123,36,-80,103,97,-46,-21,29,-46,-41,119,-32,2,46,-63,28,4,38,-49,-51,19,-37,-15,35,31,-85,22,26,34,-115,79,-18,-22,32,-44,-21,16,91,-25,41,34,52,31,-58,-84,10,-30,-7,-32,51,-24,-57,-80,-81,-27,-28,-20,5,-2,66,-10,40,125,-15,-4, /* [685][0][][] */ -49,0,-46,34,-101,27,12,20,34,-127,-69,-34,-52,64,-13,58,16,7,-42,-29,-58,-18,-21,-1,-19,30,-8,-44,126,2,39,-38,23,-42,34,-13,-2,66,-45,-33,-76,29,-60,-18,-5,28,67,-38,41,26,-19,16,-41,8,-87,-17,39,54,47,-57,15,-67,53,-7,-20,-35,23,-20,62,-81,-38,-99,-61,62,45,-9,33,26,-91,-25,-10,-5,-38,83,-10,-25,-37,20,68,-13,-41,54,6,1,-115,1,14,-21,8,15,56,59,105,67,11,3,31,4,89,77,46,-32, /* [686][0][][] */ 44,15,-29,-81,-48,-22,10,-7,34,-48,-58,-30,8,28,49,-6,38,-39,31,-7,13,-33,71,27,-21,-108,1,94,-43,-39,-8,16,-44,2,11,102,2,-4,-6,-9,-35,-33,-22,22,-127,12,2,11,2,14,-41,42,9,-121,-74,-27,16,3,77,6,55,-49,-25,-71,-9,-20,-52,-2,21,16,-33,-5,4,4,14,120,60,-14,14,-40,16,-2,-39,11,-3,9,0,16,62,-38,-16,34,-15,100,39,-22,-39,-21,-27,-12,2,6,-11,-42,-41,-39,50,44,-53,89,-32,14, /* [687][0][][] */ 7,35,-48,15,71,-85,3,-22,81,61,-34,-23,83,-30,-30,28,21,-39,37,-39,92,-25,4,6,13,47,-9,-86,35,17,-27,41,-26,-13,-17,-58,57,34,3,41,1,27,-44,48,1,-22,84,9,-45,65,22,-22,27,-15,-7,35,16,-3,-17,42,-33,37,-24,14,21,-51,41,20,19,68,-55,20,2,30,-5,47,25,13,-49,-3,4,-25,30,-2,-21,58,-7,4,-14,-10,0,-127,-59,-24,16,30,-35,-23,40,66,-8,-99,34,-32,-23,6,-23,14,83,-44,-4,-71, /* [688][0][][] */ 52,-36,48,24,35,-2,1,-21,127,26,-17,9,46,-7,28,21,-20,-35,-4,-12,-19,-12,-28,32,-14,8,-66,83,81,72,-43,51,-28,30,-15,-38,54,0,25,24,27,-66,-52,22,-23,16,-47,-9,-1,4,-11,35,68,46,89,-75,23,1,-62,-27,-73,-56,-34,69,-63,20,-4,93,34,51,-67,25,-59,-46,23,-1,-6,108,71,-30,1,-42,67,-64,8,24,-3,7,-115,-35,-34,-50,18,33,2,71,-19,13,-32,12,63,70,42,36,-47,13,-4,74,18,-93,-11,-27, /* [689][0][][] */ 56,-107,-76,60,-59,-47,-79,14,-55,-11,-42,49,-5,-18,25,-98,29,-12,62,-84,-30,78,-15,-29,-6,-34,65,88,28,-58,24,-30,-14,-25,64,27,61,-24,-47,23,5,-3,11,58,-10,24,2,19,25,-32,-27,46,13,-57,-39,-9,16,48,69,-18,-12,32,18,-15,-62,22,-50,57,-20,-20,2,-32,-39,97,-3,49,-127,94,-5,-110,27,93,-28,-25,9,20,25,39,42,23,55,35,-82,-27,-68,54,16,-51,-107,12,73,-86,-3,-23,-27,-27,99,-20,-71,-47,-65,-31, /* [690][0][][] */ 31,-28,-99,63,-40,26,-23,-14,0,16,-35,115,19,-41,-20,-14,56,-21,12,-34,27,-21,42,63,-21,51,4,-13,7,-80,-31,22,-120,25,-12,103,-13,-4,-12,76,3,41,-65,24,-85,60,-35,-20,19,10,-6,-2,17,-25,6,24,-127,15,-14,12,-67,52,51,57,37,-22,-73,65,-38,65,-1,-14,-76,15,-11,-5,54,-40,-58,28,-11,-6,-44,35,53,-67,-2,-13,21,25,-63,11,62,36,19,-58,-2,9,-71,-67,-27,-83,34,44,4,-8,-12,7,-83,79,-10,28, /* [691][0][][] */ -58,78,-45,37,-111,16,-12,-44,31,71,-29,-21,3,60,33,4,3,-3,-13,-25,-13,-19,-18,-63,-25,12,18,-11,-18,0,28,-24,-55,-40,-24,-3,22,38,-8,65,-14,24,-29,-18,18,-14,52,10,-11,8,31,62,-3,11,-62,-23,-21,-9,-15,20,-68,12,58,22,-23,23,1,90,3,-81,22,-34,-71,-58,-34,-22,15,-25,-46,-85,-10,68,-34,16,35,-32,-1,51,-90,35,-36,-26,57,37,-39,-37,-2,-92,-53,22,-13,-127,-2,-15,-26,-39,36,-54,-35,69,-27,3, /* [692][0][][] */ -59,28,-38,-16,24,19,25,43,34,38,-40,-53,34,23,8,98,16,-8,31,24,46,0,13,59,30,82,-20,13,57,69,31,21,3,40,9,-36,33,-31,-19,4,-3,43,-41,-4,11,-43,66,-76,44,106,51,-16,-53,21,-14,43,41,-91,62,-44,-2,21,-30,52,67,35,-26,-52,-15,58,-48,-4,32,60,6,-21,-8,-36,-24,-33,49,-12,-7,1,6,45,-67,-49,-17,-57,-15,-77,-67,66,49,-16,12,-19,79,17,-8,-62,-1,68,-21,127,83,-4,16,4,-39,81, /* [693][0][][] */ 7,2,-24,-10,23,-20,15,-18,57,7,-14,-25,-22,27,-12,13,24,-11,11,51,24,-10,-104,77,51,7,-10,-23,5,-3,46,-13,-55,19,-89,4,-16,22,-12,66,-46,7,17,89,1,-27,14,-45,0,-43,121,-127,38,-12,24,15,80,-90,-30,38,52,-38,-11,3,-11,-82,-56,-68,125,-3,-56,-21,-51,41,-32,-6,35,61,7,52,-37,-67,13,-8,-40,48,-12,47,35,38,-36,-29,6,13,-48,-62,6,30,6,9,-17,3,2,16,-2,34,17,1,73,27,18,-79, /* [694][0][][] */ -31,50,-73,79,4,-44,-3,45,120,42,-52,47,8,23,32,-15,-61,56,-64,-41,-5,-25,5,21,60,-25,77,52,27,45,61,9,85,66,54,-14,66,-2,-22,12,-27,4,-51,-7,34,28,1,-14,-49,3,-79,-6,-14,-40,-12,-32,1,80,-12,19,-84,-6,-44,46,-19,-20,-57,72,-65,-36,27,16,-20,18,-44,18,9,-33,12,-4,84,30,-32,-19,26,10,-13,22,80,33,31,-26,72,35,-127,7,-82,-48,-50,-38,-34,-28,21,-14,-97,3,-44,-18,25,45,92,-7, /* [695][0][][] */ -10,-1,-34,25,27,-34,-67,19,-67,-5,-97,39,-2,86,-60,-52,2,-18,104,16,-51,-59,20,-44,-22,-56,-37,13,-41,4,-23,-89,-13,-36,-11,-48,-34,-35,-4,-27,19,-27,-32,-6,-5,34,72,5,-6,-7,-25,25,-65,1,-69,5,11,-27,-40,33,-38,-38,45,-20,-42,-52,-83,3,-41,-7,51,-25,-1,33,42,58,-72,42,-27,-24,43,-29,-10,25,-40,-28,12,-28,56,44,15,-15,23,-72,7,19,-21,53,-8,-1,72,-2,-21,127,-16,67,22,-44,16,44,115,13, /* [696][0][][] */ -18,6,-50,-35,5,5,-61,-17,31,-23,-47,8,27,-31,-40,44,-12,-68,70,9,-8,-15,-89,55,70,87,-64,87,52,7,-45,-26,51,25,11,2,81,-25,0,36,-10,27,28,8,20,38,12,-53,33,-14,42,-67,-21,-29,-29,15,92,-61,-62,-24,45,-39,2,24,-38,14,-58,-5,-21,-37,29,-52,40,-15,39,-10,23,53,-35,-32,4,5,-37,-16,-43,40,35,41,22,-62,26,15,0,8,50,-61,66,-4,57,-30,75,-40,-77,-17,127,-4,11,-4,62,-25,19,0, /* [697][0][][] */ 11,63,36,-36,-53,20,-61,34,96,-38,4,12,-4,-25,-25,48,-67,4,23,-55,10,-26,-91,-87,-23,-38,-3,-22,46,-50,-48,-37,-34,59,-8,28,11,11,4,47,-27,80,-107,61,43,-1,62,-43,35,-35,101,54,64,-20,-28,12,-32,35,23,19,-80,-36,-14,-21,2,-60,23,127,13,-25,-13,51,-38,-46,-23,-28,-27,-34,-39,-71,61,43,-23,10,-13,-32,56,26,-53,32,-46,-33,72,12,-31,27,-7,81,37,49,-43,-2,16,-15,-15,-8,62,-23,15,-6,39,-18, /* [698][0][][] */ 16,10,26,74,-42,2,-64,67,-62,-19,-38,-44,10,24,-56,9,-74,-43,-26,-102,13,43,-10,93,-24,-22,41,15,55,-44,-19,-2,-42,27,-14,46,-67,82,-49,19,-31,29,20,72,7,28,18,8,-9,44,-54,81,-50,-63,-87,-51,78,42,24,37,-9,38,-127,-36,-75,-25,31,58,-42,-47,45,-31,74,40,21,54,100,42,-77,23,41,9,-26,-109,-37,27,28,-28,-14,19,7,-14,-11,-38,66,-2,-122,-5,5,36,35,-57,50,73,-39,-40,2,-36,-23,7,-56,52, /* [699][0][][] */ 93,68,-42,13,38,71,46,-24,-71,11,-122,28,-50,88,-54,-88,54,94,12,-45,-59,10,39,-1,66,-35,49,0,51,27,-60,-61,7,28,-39,112,-96,24,34,15,3,24,-47,-66,-123,-2,63,63,95,-40,-76,47,-16,-74,-58,-12,-127,3,-38,-99,37,98,64,-90,-3,-31,55,43,120,-41,-35,16,-26,-38,-41,25,55,111,29,27,100,33,-125,-1,8,-48,-3,43,-66,-12,-106,59,60,27,-58,2,-10,-54,-54,5,50,9,41,-44,-29,58,-9,-16,57,69,-88,-29, /* [700][0][][] */ -72,-10,-127,-9,44,-97,-12,-25,85,-40,-17,-74,-32,-17,58,-13,108,-10,-71,9,87,-53,-89,59,29,34,-60,46,56,80,-83,-33,8,59,-21,-30,-24,23,-47,7,29,11,-16,9,71,-49,-53,6,44,-4,-10,7,12,17,-38,-17,30,-90,-22,67,71,-117,3,32,17,-92,-24,53,5,27,6,-75,-65,9,-8,-46,58,62,32,-5,80,0,-124,-44,7,24,-77,-11,-13,-70,-120,-14,-59,48,8,-30,-21,-52,46,-3,32,34,-44,43,97,77,10,29,58,-47,71,-18, /* [701][0][][] */ 86,36,4,51,-7,-61,-35,43,26,-22,1,127,9,14,-80,-15,22,-12,-45,-60,-7,-10,90,9,-13,0,-74,60,-83,-58,-53,-26,18,47,-27,-11,73,-51,-2,-62,5,-5,-12,65,4,88,37,-2,29,1,-58,-20,-11,0,-41,-56,-104,43,38,38,-38,-24,-71,-19,-16,-21,-60,101,-68,1,31,-10,-33,15,79,41,-14,-17,14,-38,38,29,3,27,9,-15,-18,-47,88,32,-67,-21,58,-11,-3,30,5,17,-29,-90,24,-24,47,67,-18,12,-24,26,-23,-25,87,52, /* [702][0][][] */ -81,-58,33,60,43,92,32,-100,83,-41,1,-85,43,62,-35,127,51,-71,8,-21,-16,97,-11,121,-3,66,-126,28,35,-91,71,62,-45,60,-45,-21,-84,-19,13,100,8,-76,127,-46,13,-46,-75,-89,-8,50,69,18,118,-97,-17,-23,-85,-3,-35,5,-18,7,-17,109,53,107,-91,-32,0,-15,51,19,-86,33,-2,-37,-69,38,-61,3,56,-21,12,-45,-37,57,-82,85,-14,-25,-88,-57,-43,47,-18,3,45,-66,-69,-65,-44,-85,30,-7,77,-4,68,45,51,-40,7,13, /* [703][0][][] */ -18,-1,-19,-36,17,9,-55,-20,-9,-71,119,20,81,81,46,-6,45,-22,16,-7,117,-127,22,-17,47,60,22,-74,34,-28,49,43,-91,-36,-69,82,90,77,76,18,-22,-18,67,13,29,-73,-42,-11,86,-40,68,-61,14,-20,79,-24,-23,-64,-97,23,36,42,79,-42,-59,-16,13,58,71,38,124,-64,-25,-30,51,109,25,17,28,-18,61,11,-67,50,-64,90,33,21,-36,-15,-18,-51,13,32,24,62,-14,-48,-44,49,-2,67,-64,-31,17,-42,67,3,28,-61,-21,27, /* [704][0][][] */ -69,-21,-18,-17,31,-51,50,-9,-16,-18,-32,-31,18,108,3,86,-16,-1,20,-39,10,-30,2,16,-77,42,-91,13,90,48,-40,11,49,-14,-120,-71,4,-33,44,-15,-22,20,-28,5,7,-8,17,9,54,-12,11,-28,45,81,16,-49,105,-71,-101,-7,-50,-3,61,-54,6,15,54,-12,22,45,-8,103,-32,-9,-28,-72,53,107,-93,-27,-5,14,-79,37,-3,88,-127,-65,-103,9,-30,-101,-40,95,20,-50,50,15,19,-11,15,-74,50,13,95,55,40,-20,59,-3,-75,-7, /* [705][0][][] */ -64,-38,-13,29,0,65,27,22,55,57,12,-88,-72,110,-22,-9,31,11,14,19,87,25,43,31,-23,98,-6,12,-4,-67,89,-12,6,61,-36,34,16,73,16,48,-66,17,-3,-3,1,-15,-2,-127,51,-25,102,-61,42,22,58,-44,29,-66,19,54,-42,-59,-46,16,36,75,-70,-69,97,-40,-74,27,3,18,72,7,35,110,17,-90,60,-24,120,-27,-47,-3,-16,48,-62,-30,-53,23,-81,36,18,8,-19,57,17,72,70,-18,39,-24,-34,17,-55,19,30,-114,-9,18, /* [706][0][][] */ -25,26,6,7,-116,21,31,11,44,-89,-50,0,-44,3,44,99,-9,64,-17,-106,6,15,17,-6,11,20,31,-17,9,-23,3,-79,-85,20,-7,-44,48,-10,-96,79,-20,-16,-1,-47,-47,88,50,15,83,-100,-3,48,-72,-61,-41,-127,-70,103,54,-2,30,6,-54,26,-15,-15,-23,3,-1,14,-5,19,-35,-34,16,63,-39,-43,-1,25,-30,24,26,16,-41,-2,7,-90,-21,59,10,35,-26,63,-51,18,-33,67,15,-39,10,15,64,-28,-20,-80,19,-36,-90,80,28,-17, /* [707][0][][] */ -11,-92,-50,13,16,-3,35,13,20,-24,13,50,15,-1,61,-32,-2,-108,-12,79,-40,-13,-18,61,97,41,-39,48,58,94,-26,33,16,-35,-28,81,44,10,35,-63,-42,-70,14,25,-44,-77,-30,-3,49,-16,25,17,37,70,85,-12,-30,-49,-127,-80,-16,32,32,-28,-40,-50,56,71,-25,115,-38,-74,64,-16,33,-8,13,25,81,30,78,30,67,-74,-48,28,-7,-92,-80,-73,-50,-35,14,69,38,26,32,-21,48,-27,31,-41,18,46,-39,11,-13,-16,28,2,-2,-116, /* [708][0][][] */ 23,-42,15,93,33,64,-36,-49,37,-29,-24,0,-44,-44,-59,8,11,29,67,13,-80,-4,11,57,-11,17,35,-37,-32,-13,102,11,11,-15,52,19,-23,35,-18,30,-36,96,12,-40,-20,1,25,-27,64,-19,18,0,20,-48,48,0,-77,-6,-8,-52,-7,-12,-18,33,35,-35,-28,32,10,59,-42,-14,-40,66,61,48,4,32,-27,55,-6,1,-8,-13,-1,-16,7,13,-6,-15,13,7,33,-38,49,24,31,56,-127,10,38,-24,-14,23,-110,-13,20,4,-68,61,-6,27, /* [709][0][][] */ -82,50,-93,-16,-54,19,-48,38,85,66,36,17,-27,2,62,78,-47,26,41,36,13,42,-79,31,41,127,-8,74,-9,47,25,13,-67,14,29,-32,23,106,-63,13,-35,64,24,16,18,1,65,-7,43,-12,8,4,-16,51,7,-1,11,-110,-71,-18,-40,75,46,20,-41,-41,52,80,33,50,-33,-28,0,40,11,-44,13,37,-2,-74,-23,80,48,24,-39,8,10,83,-120,-82,-22,-17,-55,39,-20,14,14,-4,-22,-36,-44,15,-17,-17,26,32,-7,-47,28,-76,-68,-16, /* [710][0][][] */ 34,18,-14,59,2,-13,-3,-44,3,-66,-50,8,42,-63,-26,19,-18,28,46,34,-68,3,-43,62,33,-36,82,-5,70,10,-31,-19,-34,37,-7,1,14,37,-127,66,28,50,-3,10,36,26,58,57,10,25,-14,28,86,-103,-36,3,-37,4,20,-13,13,-46,18,1,-46,-40,-23,25,31,-27,-10,5,-85,15,5,4,-20,-5,11,-29,17,-21,-92,43,1,-50,-5,-4,-15,32,-26,-2,52,-23,12,-53,45,39,-5,11,24,13,-6,-17,-59,-40,42,-48,-27,17,-16,0, /* [711][0][][] */ -69,13,34,16,-65,-80,-15,31,90,-24,-15,-46,-1,44,-22,26,21,-77,15,-29,54,-16,-4,-32,28,47,-62,15,-12,75,11,56,-53,62,-46,27,47,42,49,39,-57,-22,41,-42,5,-43,-9,-10,25,23,-11,17,56,-16,-36,-1,32,-39,-4,5,35,-18,-32,69,-55,43,14,-2,17,-4,20,10,47,-21,-38,-46,-10,7,-22,5,21,-27,3,44,-43,43,-127,6,78,12,21,-55,-46,-14,-40,-15,-90,0,69,22,-16,12,22,-2,30,70,59,8,67,-60,37,-57, /* [712][0][][] */ -16,84,25,43,-37,50,94,-21,-6,64,52,19,71,61,-83,-30,-57,-38,0,-20,-72,-35,34,-35,44,-69,52,47,-50,98,34,-68,-24,-20,-82,-13,26,60,17,-62,-7,35,-46,41,-53,-1,52,-123,7,39,30,-4,-61,-68,-72,-5,-16,-8,15,-65,11,24,40,53,71,-30,-59,27,-17,45,70,54,-12,0,4,43,-98,26,-10,-23,-43,73,10,19,-26,75,70,22,20,0,37,-64,11,117,54,-29,-40,-76,86,-77,-20,36,62,41,-73,127,53,-24,-65,106,-51,56, /* [713][0][][] */ 15,49,-5,-16,-114,-69,42,33,-23,-5,-70,70,-74,-31,-56,-11,62,-2,98,1,10,-40,-22,-85,23,-2,51,83,7,-5,-24,-28,-79,8,83,110,-13,-34,-94,36,-52,69,-26,90,-22,63,-67,-22,20,-37,18,70,36,-78,-35,-36,-112,-25,-34,-46,-29,12,-37,22,-100,-30,-59,49,4,-42,17,39,-107,55,39,19,91,-72,-12,28,47,21,6,49,-70,-127,74,-42,35,71,73,17,-1,10,75,-31,-43,-40,72,26,-14,-12,17,-19,-4,28,-57,-71,35,31,88,-29, /* [714][0][][] */ -38,-111,-4,-29,-25,-32,-31,-20,49,-73,30,-8,-21,-3,35,47,13,-69,11,-25,102,17,27,34,23,32,-28,46,6,17,2,42,14,39,-50,-61,-10,-19,-15,-25,15,-59,-21,-70,-4,-31,1,-48,90,-42,35,15,-5,-12,-37,44,4,5,0,41,51,-36,38,16,38,68,5,-44,-46,39,-8,24,-62,27,74,59,36,-41,-14,-127,29,-13,-3,42,27,45,-32,-38,-39,13,-93,-105,-63,28,34,16,-65,-99,-24,-8,-37,-21,26,-3,-34,-4,12,-11,3,-19,-37,4, /* [715][0][][] */ 26,-2,6,17,-21,24,-20,-13,35,18,-21,-14,7,8,-64,70,-38,-39,14,54,30,-41,25,-58,-20,-48,-1,51,-30,-36,20,-47,4,-5,10,10,-85,55,-33,-33,-14,-1,-13,59,-45,-12,-18,-109,-18,-11,56,-9,50,-1,-49,-48,-19,-13,21,0,14,20,19,-4,-25,-25,0,-16,-43,-37,-10,35,41,49,-25,34,-2,-11,-50,-50,7,20,17,-21,28,24,37,44,-22,-8,-51,55,30,3,20,39,-32,16,-127,46,23,-35,32,24,-106,9,-22,-23,-81,-4,20,-9, /* [716][0][][] */ 14,46,-33,8,20,4,6,-53,-15,36,-40,-24,7,66,-99,-21,-35,-45,-52,-38,-16,-77,41,7,8,-80,15,0,8,7,11,-50,18,-25,-17,-10,33,-14,-13,-20,-2,74,-16,-39,-64,27,127,-33,-50,38,-4,82,-58,-52,3,-39,-90,48,-21,-62,69,-14,43,-41,-72,5,-37,58,45,-58,50,24,37,0,28,-6,-30,-43,20,6,61,-33,-17,21,-85,-67,-25,-34,20,11,-77,-61,-55,66,-19,-40,-14,6,6,35,41,55,94,0,-75,71,35,-33,-5,14,-93,-23, /* [717][0][][] */ -36,-37,-77,50,8,-36,-40,42,-5,-45,-59,-78,-3,15,-32,73,114,-43,-18,36,120,-127,-88,47,92,64,0,-16,-17,56,38,15,49,45,-62,-40,-10,84,-3,2,-63,31,-14,-2,73,-75,-80,4,-17,-36,62,-36,22,-96,-37,-1,60,-79,-58,111,38,39,-51,106,5,-23,-20,-32,65,-69,22,-28,-13,-6,-96,-36,50,36,69,52,113,-76,-68,-17,-46,38,-12,22,6,32,-68,27,-16,-54,-64,6,-111,-5,-28,10,-8,22,-79,101,19,91,68,-57,95,63,117,-106, /* [718][0][][] */ -19,-59,-9,49,20,-25,57,-115,-21,-43,9,-88,37,-27,33,-16,-8,-95,86,-35,113,-30,-63,-17,32,-3,-5,-56,-46,55,19,-84,-48,3,31,-14,76,-60,-6,11,-64,9,-8,42,-58,43,25,2,31,59,15,86,67,4,-81,-6,-39,2,0,118,48,-2,13,-16,-80,-12,-20,-45,-49,61,-57,50,-6,97,7,10,88,6,24,-103,18,-26,-42,36,-98,29,5,-5,-43,18,4,39,-47,-54,-17,38,9,-118,-8,73,18,-30,60,8,23,25,-3,-86,127,12,15,14, /* [719][0][][] */ 76,-23,21,44,-11,-30,14,-39,4,-74,-6,-25,10,-17,66,-19,81,76,4,23,127,0,-19,60,33,96,15,31,6,-14,21,-20,-37,20,-60,59,15,20,50,-40,-30,-1,-37,-53,17,-15,8,30,-49,53,34,-54,-24,43,85,89,17,-27,-19,-53,54,-31,-36,-4,10,1,-66,12,8,48,-40,-9,-65,-14,34,-66,-47,79,-62,58,96,12,-27,-64,-39,98,-82,37,-10,-26,20,13,-5,4,-43,106,8,-19,-33,102,-33,4,-21,-37,49,85,34,6,8,65,9,47, /* [720][0][][] */ -16,19,-71,54,-39,-38,9,29,-31,-30,-56,113,-17,-35,23,57,38,44,118,12,-11,-60,-3,44,24,-27,0,5,-3,-72,36,-65,-127,31,28,-43,-31,30,-30,59,1,61,-25,88,-80,37,25,-52,-93,-21,55,16,16,-51,-46,-42,-66,12,34,33,-5,5,4,35,-91,-4,-21,33,-90,3,124,-2,46,-9,18,15,66,-31,40,-52,87,22,-91,52,-18,-25,6,3,-47,52,3,-103,65,-50,34,5,-26,82,-4,-50,36,-94,16,2,46,-29,-12,-36,-54,37,38,14, /* [721][0][][] */ -65,54,34,15,-61,-3,-87,-77,-59,-37,-8,-15,-9,-19,-90,67,-51,-47,52,-42,-69,-70,-17,-14,-54,7,90,53,48,72,24,-2,71,16,24,66,13,21,-75,14,-50,124,-13,11,19,47,79,-85,6,-8,-36,-8,3,-110,-27,-72,-20,54,-75,8,18,43,-49,56,-21,-61,69,66,47,-2,-4,-97,37,-28,3,-24,-59,-11,-58,38,4,31,-29,-59,12,-23,27,42,14,-19,8,8,64,-55,63,94,-67,-13,2,43,-62,-127,-64,73,25,8,-35,26,0,99,10,-62, /* [722][0][][] */ 58,4,11,-29,18,-104,32,13,-48,24,-12,76,-19,-34,49,-36,19,-37,26,31,55,-76,36,20,127,-80,-13,112,-49,-53,-58,-68,-55,7,-43,1,-73,41,-44,-2,-46,62,-79,93,-4,48,-33,-33,58,-2,-21,24,35,-7,-13,-43,-96,-54,71,-27,-35,-26,-2,-34,-37,-64,-41,6,-35,-33,-11,-60,-3,68,83,-9,70,-32,24,5,48,42,-8,31,-13,-21,-2,1,75,43,3,-14,-4,-17,76,-56,-42,-23,19,-45,4,-5,17,-20,-15,55,57,-60,-4,4,33,-31, /* [723][0][][] */ 20,27,43,29,-84,23,13,-85,54,-81,-33,-19,66,50,16,-14,-49,29,53,-45,-18,20,42,120,-80,-105,-34,7,10,-110,18,6,44,-91,26,7,8,23,26,23,-98,85,-64,39,-35,-50,17,-54,57,8,65,-70,83,-74,-55,-70,32,-15,81,-32,-108,22,69,87,19,-81,-43,29,-26,-93,-50,-16,9,73,-87,83,-33,-39,-48,-12,12,17,-40,58,-22,-76,-83,10,-46,86,-5,-56,-4,56,-33,3,-41,73,-26,-64,61,-61,127,-68,17,-107,24,-18,-81,63,-40,74, /* [724][0][][] */ 19,38,-17,24,54,25,34,-11,0,-33,-118,22,-38,35,-30,-47,-2,11,-16,-43,58,-39,61,62,28,-20,-58,8,6,-32,-14,-59,-31,-6,-75,84,-10,-24,26,10,11,-13,-38,22,5,127,-22,-45,90,-68,0,24,-55,13,-21,-6,-13,-10,11,-33,-28,-20,25,63,31,-69,49,-11,65,-51,-2,-30,71,44,83,73,-15,61,46,-3,4,-63,-100,98,67,-51,34,52,-5,-20,21,60,42,62,19,80,-103,-33,-56,-21,-71,59,56,16,24,75,-36,-50,-61,82,14,-59, /* [725][0][][] */ -15,-21,-20,29,35,-17,-59,1,8,-12,-47,71,-4,-4,32,-3,39,26,80,8,10,34,42,-41,-31,4,79,-3,9,127,120,-71,-84,80,-4,-13,-41,-88,-99,-61,-59,58,-70,5,42,-17,-14,25,4,-102,78,-22,27,-33,-54,-45,-33,-3,-38,-17,-3,-40,-51,-45,-24,-5,-42,-17,101,38,61,27,-20,62,-38,40,58,23,66,-18,98,69,-6,48,26,1,-32,57,56,100,-32,6,116,-4,-7,7,31,51,1,54,21,0,-9,37,-57,-64,61,-55,-2,10,-63,-52, /* [726][0][][] */ 30,-91,101,8,-42,75,-25,81,9,28,18,69,-26,-4,-41,-46,31,25,31,-74,31,-32,40,-26,-44,30,50,34,-23,13,-25,76,-5,-34,-62,46,-19,-84,-5,30,38,111,-67,44,-19,58,62,-25,93,-17,11,75,-33,81,56,11,-29,-8,-38,18,-65,-122,95,36,6,-45,0,82,32,14,-1,-43,31,55,121,30,-16,16,-75,-34,-34,73,-125,16,-21,20,88,-127,76,-8,19,-65,-6,68,19,44,-25,-64,-69,-45,-84,25,84,29,-27,113,9,-3,-30,103,-35,-60, /* [727][0][][] */ 24,11,24,6,34,2,-23,21,-29,-39,-56,-1,24,74,-127,-75,-49,78,26,-15,-72,15,35,-13,26,-31,22,3,21,-5,-81,-80,66,-37,13,49,-28,-24,-36,-22,-1,67,34,57,-44,16,52,-11,49,21,-53,1,-53,62,-35,-45,11,-20,-54,-19,-34,6,-76,-9,-1,-35,-92,0,-86,-9,0,-4,-48,-7,-4,5,-8,-28,23,-33,7,-24,-31,41,-57,-56,29,-42,-56,1,-13,56,7,57,-26,22,-62,-69,-22,27,-28,-14,10,2,-42,52,-47,-73,6,42,-18,-12, /* [728][0][][] */ 66,27,-44,10,0,24,-26,-63,21,-127,-24,65,102,43,18,0,-7,-64,70,46,41,25,-18,90,50,51,-46,10,61,13,-15,51,16,-32,-15,-8,63,33,-7,82,-5,-9,88,-4,44,27,26,-26,-24,-109,55,-121,15,54,-60,9,45,-73,-14,61,23,-21,20,27,-32,37,-41,-96,61,72,2,-49,-83,-27,-54,5,-54,20,-47,-9,-14,-67,3,-57,-20,6,-38,53,8,-20,-13,21,15,-3,41,-89,-45,3,43,-50,11,0,-24,30,-16,-2,-32,-41,-9,44,36,16, /* [729][0][][] */ -1,34,-1,-32,9,21,4,-45,-90,0,-11,5,69,30,-35,-28,-50,12,4,-4,2,-113,-50,-47,65,-19,10,-14,82,-32,105,-86,-7,1,-37,15,-14,-25,42,26,-21,-3,-114,-7,-34,22,-15,-48,45,-8,40,51,11,-91,10,-54,-94,-33,-9,-12,34,4,38,-41,-80,15,25,23,62,13,13,-29,-29,-32,-30,38,-32,-46,-11,-8,53,-9,-1,2,-127,-32,53,2,14,25,-90,13,-85,5,45,-39,-24,-6,3,34,8,44,21,-26,-91,28,-3,-25,-4,16,23,51, /* [730][0][][] */ -117,-16,-85,8,6,-46,46,-4,48,-10,31,127,22,73,-4,63,72,58,74,22,-27,26,-38,-37,3,-29,-44,-17,88,57,16,24,-81,-33,5,23,20,-9,-13,41,36,36,-70,34,-6,3,71,6,85,-69,75,-32,-33,21,14,97,77,-76,-82,-50,58,-12,-60,26,-61,-28,36,-52,23,8,30,-29,-50,-36,72,92,55,34,86,20,16,-74,44,6,-49,27,-78,-21,-17,5,9,-57,-41,-43,-61,4,-99,91,61,-4,-18,8,79,-16,57,28,-41,90,108,-66,-1,-32, /* [731][0][][] */ -6,19,-40,87,-17,16,55,-112,48,-47,80,4,50,21,-42,-16,-24,32,-17,-33,-25,-66,41,51,-53,-14,-83,23,-46,111,-41,-46,13,50,2,-92,28,-81,22,92,-9,15,30,12,42,28,-23,21,10,3,-25,-86,30,83,22,-47,31,29,7,75,43,83,-106,-15,-99,22,-74,-64,53,52,85,-49,21,44,107,-40,59,80,60,27,-41,-5,29,-2,-127,93,-94,-67,-18,-30,23,14,-52,55,-78,4,-98,16,-9,-48,52,29,88,21,28,61,-24,-6,14,-52,89,-9, /* [732][0][][] */ -46,28,13,-20,-59,-20,5,26,-37,-16,-32,65,-3,126,74,47,-28,21,21,1,45,-54,45,-26,-15,-43,17,21,127,38,35,-71,-26,-25,-60,-59,-32,41,-92,-64,-54,23,-48,-48,38,-1,-8,-43,75,-67,-23,84,-75,1,-9,-37,23,25,1,25,2,-66,-19,-27,-11,-79,-118,13,16,-37,-9,17,-105,65,-41,22,53,-39,-4,-125,36,-1,-68,0,8,-16,-81,45,-9,72,-16,-29,17,-8,17,-52,39,11,42,-95,66,21,36,20,-88,-90,10,-35,22,69,-26,-16, /* [733][0][][] */ 33,-9,-1,51,-4,7,-61,57,11,-61,-34,98,94,74,18,-30,-56,13,-4,-48,93,-100,13,25,-47,-24,-22,23,32,-26,41,-6,-70,-76,-33,55,63,4,18,-42,9,84,22,29,21,13,55,-27,-24,-80,-6,42,-15,69,-58,-33,26,18,-21,-11,-8,-18,28,-20,9,-17,8,32,46,27,117,35,10,49,28,-15,-74,35,-42,-59,-9,66,-24,127,-1,23,8,15,27,46,-40,-44,-32,52,29,-26,-11,-70,-5,-40,-62,0,73,54,59,-7,-26,-30,-76,-33,-57,-54, /* [734][0][][] */ -22,59,-18,-1,15,12,-1,39,27,89,8,4,-13,64,66,47,10,54,-15,-25,-30,-5,28,-30,22,68,44,62,85,58,97,-40,-32,31,-110,50,-58,109,29,-6,-16,22,26,-76,-49,-68,68,60,80,-47,-30,100,-45,-14,-18,-13,-1,-3,-1,-81,-69,12,58,-45,-22,-44,-15,63,69,8,-58,1,-16,-15,7,4,32,23,-76,-56,31,32,-55,-54,51,-10,-4,68,-55,16,-127,56,-14,16,-40,32,1,-31,-50,7,74,-14,-42,40,-45,-10,-23,-79,3,2,-44,-28, /* [735][0][][] */ -2,43,-28,-80,-74,10,9,-30,76,-13,7,105,-19,37,42,-50,-35,86,-82,-36,24,1,-13,-38,51,-100,49,24,32,0,113,-57,51,-40,86,6,62,-76,-114,18,10,37,-13,-20,-76,53,51,-123,-11,24,21,-57,-74,-2,2,-69,-57,51,-24,9,29,14,-86,7,-8,12,-77,-34,28,-50,0,-85,-114,-12,26,127,4,-13,8,-110,68,20,11,50,4,-21,28,-32,40,-58,2,54,27,32,25,20,-58,-31,-9,-27,-33,-66,7,3,-13,32,1,-5,-84,47,-8,22, /* [736][0][][] */ 7,-3,66,74,-127,80,17,29,-18,-101,22,50,-8,99,37,-107,38,12,-38,4,12,-8,42,-61,18,-93,103,-33,37,25,62,-17,-47,2,0,-20,-12,43,-84,-63,-31,20,-29,-29,-96,86,4,-39,54,10,16,-8,41,24,-30,-58,-13,-35,38,-40,-63,24,81,-86,-52,20,21,87,28,15,-10,-90,-11,75,89,67,-13,93,-38,-22,-22,-9,60,9,-35,62,9,-104,-38,-33,56,104,-85,89,-40,-52,-33,-35,-52,-29,11,21,-22,-26,-44,-46,-12,-21,-95,-56,50,34, /* [737][0][][] */ -49,-43,-102,-94,-113,-6,-6,-10,-26,30,-59,33,-24,38,44,10,-50,64,-31,-32,-27,-2,-30,47,45,-21,15,107,101,3,-15,-46,-127,-24,-5,-26,-86,-30,-71,81,-57,-2,30,-8,-11,-2,23,41,59,11,-104,93,59,52,-75,39,-83,1,-19,-5,-7,42,-6,24,5,13,-26,-34,113,-52,-17,97,25,94,-83,39,-79,91,-92,7,53,-34,-21,50,-24,-4,-87,52,-38,15,-59,25,26,18,-126,-30,-86,-39,-22,-30,53,28,22,-12,45,-52,-3,-66,-114,65,45,-21, /* [738][0][][] */ -2,-27,-12,-38,-58,-15,74,4,-34,24,-117,49,3,39,-24,-20,-35,-20,-2,5,69,30,127,-17,2,-40,12,64,19,-32,49,-34,-79,16,10,-17,65,38,-40,59,-38,45,57,37,-37,19,33,-74,28,-27,-72,10,-52,-26,-49,-98,-10,9,47,41,-28,-55,-54,-90,80,4,-58,-32,70,-21,-37,-2,7,1,-2,68,13,48,6,-19,65,-16,-29,37,-5,-19,-24,17,58,8,-33,-22,6,22,57,-23,-34,14,9,-51,101,15,-18,-20,-52,33,30,-36,-31,39,65,58, /* [739][0][][] */ 11,-24,-42,2,-91,-15,26,-41,-4,24,-30,53,-7,16,-24,-41,4,-29,77,-31,15,70,-5,-52,-10,-1,26,73,15,-27,-24,16,18,-85,-20,9,10,9,-40,75,22,29,-29,1,-61,47,-11,2,-31,-24,-13,-31,-18,8,-3,4,-32,25,19,-6,-50,63,-2,22,42,-8,31,59,2,0,20,-18,-43,15,16,5,-76,19,-43,-105,-27,-4,3,41,-7,-8,39,-4,-37,-7,-15,-54,8,57,-8,-52,-28,-45,-12,-33,-9,13,-22,-41,-48,-49,18,-64,2,22,-25,-127, /* [740][0][][] */ 14,-63,29,-3,33,-77,-28,59,74,-49,-16,-35,-56,-59,64,127,-54,12,16,-73,34,-76,-6,50,-40,-20,54,15,91,-24,-24,-74,-3,-47,-5,-21,-74,48,-33,-12,-20,101,32,56,-58,-3,27,-53,-6,33,81,99,13,23,2,-119,-34,68,-23,-46,-77,11,-36,7,40,-17,39,54,26,10,10,13,-32,23,-64,50,-22,75,2,15,-16,37,16,-42,32,-68,-30,-36,-24,63,30,-59,-43,-13,89,32,-59,53,-73,-2,55,-24,39,67,2,-63,73,-15,-27,-25,-32,42, /* [741][0][][] */ 34,-72,-64,46,-62,-14,-53,5,-124,-32,-26,71,11,7,-6,-45,21,-49,8,-89,30,38,-7,-63,7,55,71,-49,54,-30,-5,5,-20,15,-11,-6,-38,4,-56,-25,-45,-9,2,5,-4,76,-37,36,11,-21,1,35,0,4,-92,10,-15,26,57,1,-39,-74,83,-76,-18,-62,-27,87,33,21,-62,-38,18,81,23,16,-35,22,-57,-49,17,39,-65,-70,-38,13,2,-56,55,68,28,92,-32,-12,-30,58,44,-47,-23,59,127,33,6,84,4,28,4,-33,9,-2,6,-54, /* [742][0][][] */ 25,17,1,-50,-13,-76,40,-74,57,53,32,41,36,-41,-65,17,52,-59,-35,36,95,21,2,-31,51,18,-67,-16,3,50,77,27,-54,27,-89,-10,32,-112,16,75,-20,23,-8,-23,-31,-23,22,-12,19,-32,30,-25,14,-40,114,62,3,-92,21,-122,-22,-12,-81,3,-32,21,-53,-27,-32,-45,92,-68,-34,65,49,-42,11,41,93,16,82,-46,15,-113,29,27,-88,28,18,24,25,-127,-28,37,51,21,-13,-88,38,90,51,44,15,31,-48,29,71,23,89,10,-42,-75, /* [743][0][][] */ 54,-44,-35,87,-23,5,-2,-119,-9,-19,-1,-26,-18,-32,48,-45,-10,-43,85,-51,-4,6,-66,0,-31,-65,65,-9,-70,60,85,-34,12,26,75,24,11,20,-120,-23,28,8,23,-79,-73,91,-10,3,17,71,30,75,52,-17,-77,-44,-43,37,23,-18,-77,-46,70,-115,11,-63,44,82,31,-84,-34,-28,4,55,-9,90,60,87,-83,11,-2,0,6,48,-40,-6,64,-42,67,-4,6,-6,3,-76,-53,-14,44,-127,18,-11,82,43,40,-47,-71,-80,-7,-99,121,28,-42,-7, /* [744][0][][] */ 17,70,54,19,29,19,26,-39,55,-46,-39,-11,-29,-31,-42,-17,-97,-14,50,-69,5,-108,83,51,41,-46,-34,24,0,19,22,-41,-51,-59,23,3,-19,-25,-8,61,70,24,-1,41,-54,-29,106,-15,-59,44,-7,-11,-3,9,28,19,10,2,-23,-36,37,-19,69,-2,30,-18,-26,-29,105,-19,58,20,-54,78,40,49,-78,-17,25,-71,-36,-20,-127,50,-29,53,-21,24,67,-74,24,-39,-62,-17,-34,-9,-79,-7,-1,-99,38,-61,20,-11,20,44,22,-17,19,42,-26,20, /* [745][0][][] */ -64,-13,15,-39,-31,12,-54,6,26,9,-28,-81,-41,79,35,55,42,-5,26,27,60,-127,-84,-14,-17,40,4,26,37,16,41,-42,-20,38,-31,42,-34,84,68,121,-1,-35,59,-44,29,-79,62,-58,-7,-17,33,-61,25,-62,-1,56,49,-65,-12,-96,69,5,-62,-27,-17,-51,-24,-3,47,119,-37,27,-120,-40,18,-21,15,55,-5,-28,-24,19,-19,-100,10,23,-10,21,5,-69,-44,-19,-26,59,-36,36,-31,-35,93,123,-7,18,19,-40,-18,48,21,30,23,-36,-12,-55, /* [746][0][][] */ 71,16,28,-91,-49,79,-91,44,-45,-32,-44,75,-111,23,-67,33,-4,-6,-63,-118,-36,-16,-88,5,40,-30,30,-61,39,-102,32,-35,-37,17,-27,77,54,1,-62,37,-69,-44,-54,19,13,41,-83,-29,16,-43,39,15,8,-2,40,-94,-106,30,-93,25,-74,-2,-73,-67,-51,-95,74,65,48,-65,-1,49,102,84,-65,-27,-27,111,-17,-7,127,26,-43,13,-59,31,-11,-121,-8,-53,72,11,-44,52,5,114,-1,-3,79,-5,-49,-80,-17,37,-88,-105,102,10,-34,45,67,20, /* [747][0][][] */ 116,102,-66,-23,67,-48,1,99,74,75,-40,56,97,-55,-11,13,-14,6,73,52,0,-25,68,-33,18,6,82,107,58,-21,-23,-82,35,52,51,-15,-35,-52,-41,-50,42,94,16,-25,-38,57,82,-73,-28,2,-9,-12,14,50,12,-20,-37,19,-42,52,-52,32,-57,-30,14,-16,-22,100,21,23,1,-22,28,111,64,-9,-18,-27,-41,-26,43,-13,-18,92,14,36,72,18,127,-80,-59,-36,-10,58,10,13,68,30,-64,-22,6,-71,59,55,-58,11,8,53,-82,20,33,4, /* [748][0][][] */ 19,29,3,-28,1,-71,-41,57,32,-93,12,37,6,-11,7,-50,18,119,-21,39,44,-46,40,9,-32,-67,-32,72,-33,49,27,-103,-29,66,-25,-43,3,-9,-73,-32,14,59,41,-27,74,1,59,37,79,-10,-33,29,-49,29,-5,-40,-58,-31,0,-61,-39,-18,-83,-2,31,-13,-87,6,100,-21,28,-46,64,93,18,3,14,2,27,-48,79,51,-24,19,-3,-42,-32,38,-2,5,-27,32,-12,69,-75,5,47,8,-40,22,61,-57,9,-45,-31,15,127,15,-99,62,30,14, /* [749][0][][] */ 14,-19,-21,91,-27,-14,-83,-34,92,-52,63,-13,27,10,49,5,56,-60,60,-16,127,-54,-63,56,39,44,-5,-7,18,-43,15,3,-22,12,38,-58,22,94,-6,-95,-28,13,50,47,41,-54,17,-111,45,16,-2,4,15,-5,-42,-55,37,8,12,13,27,-21,15,69,-68,24,-19,28,-35,24,-11,-12,-32,-24,-5,-22,-42,6,-36,-47,12,9,52,-5,-42,84,-66,61,-28,-3,46,6,-56,26,-10,68,-7,-40,6,-20,5,-58,1,-15,32,-5,3,36,-3,-56,-22,-72, /* [750][0][][] */ 31,-4,-17,3,-20,10,-20,-46,47,106,33,-62,-54,-21,26,30,-79,62,27,81,16,22,-39,-31,12,-49,-16,-2,3,30,20,-43,21,-27,-27,46,-63,-38,24,-95,-24,50,-68,12,-57,87,103,4,-61,-110,-24,-26,-48,-6,-10,-122,-61,10,-44,-27,-36,-7,3,-48,26,-36,29,87,44,-96,26,-27,3,-25,-32,-31,-8,61,-124,-41,31,-24,-26,-60,8,0,101,71,5,-54,24,-24,-63,48,-9,55,-85,-5,-55,-3,-51,-26,25,32,-127,-12,55,10,24,43,16,-83, /* [751][0][][] */ 8,-11,-32,7,30,-6,-35,20,-2,-11,-54,17,4,80,-127,-22,1,34,-25,-5,75,5,8,2,-17,-36,73,1,45,-4,43,-9,40,-28,-47,62,-29,-2,-15,-50,-9,14,0,56,-23,-6,77,62,-5,12,6,47,-39,1,-44,-19,-2,-10,31,-98,-12,25,-9,31,-9,25,2,12,-21,-27,-4,-7,10,34,6,58,-51,-1,21,-30,-22,-21,-35,56,-79,-25,32,-54,-53,-5,-2,19,5,35,3,42,-54,5,-27,19,36,23,-14,7,-12,-9,29,-28,-32,42,15,-38, /* [752][0][][] */ -13,-58,-46,3,-31,89,-52,-31,50,-45,23,5,36,21,41,55,28,-5,-2,-84,17,19,-58,94,59,26,-34,-12,72,78,-90,-16,39,70,22,-25,-35,-25,31,6,50,-66,-47,-34,34,-14,-58,-62,82,-92,-33,-60,34,38,-3,0,58,23,-80,-4,110,22,-67,-72,-36,-40,-35,-20,-13,62,-4,-3,-72,-12,7,14,-7,38,33,-34,-7,-10,69,0,24,41,-36,-38,-22,-52,-72,-41,28,5,-106,127,65,-49,1,-35,16,82,10,51,30,-47,-14,61,22,-53,115,77, /* [753][0][][] */ 18,-33,2,37,-35,-20,-56,47,16,66,-67,-22,28,18,51,46,-46,-14,-19,-31,-28,-57,-23,-6,95,47,15,23,23,-14,-79,-2,60,3,-40,74,-17,18,2,-50,-44,55,-54,45,-68,-31,127,-96,-30,-24,-26,88,22,-122,-48,-80,-123,17,76,-22,-7,-40,-125,-18,-12,-30,-56,13,6,31,-17,90,-26,11,-38,-20,-19,36,1,-75,-7,15,27,-54,17,-41,-3,49,41,19,45,1,1,4,33,1,31,85,-60,5,104,-49,45,29,-49,30,1,-2,-48,20,13,10, /* [754][0][][] */ 24,29,-63,-43,-57,28,-50,-31,-60,-34,-53,-40,73,-5,-9,-19,-103,48,76,53,19,-41,-46,45,49,6,87,-3,50,10,30,-33,-33,-33,-12,8,-3,92,15,22,21,94,9,8,-79,0,127,4,39,29,-22,109,-40,-60,-14,19,-55,19,52,-17,-3,-52,7,-48,55,7,-63,9,54,-13,25,-50,-20,109,-36,-8,9,79,-54,-9,-39,-22,-25,-42,-61,-5,1,-5,37,-71,-31,-1,40,26,-73,-97,10,19,16,-1,93,-85,-42,-11,-7,-33,-19,-51,-3,68,21,16, /* [755][0][][] */ -91,-40,1,-4,-10,55,-71,-41,-35,-97,-51,11,-28,111,-3,30,-29,-3,-17,-32,-114,-49,-13,57,40,-103,34,47,-98,127,-23,-25,-20,37,15,41,10,-57,-17,-9,-70,-58,21,-64,-3,40,63,-59,21,16,-88,-33,-69,2,-113,-14,54,68,15,11,-37,-8,1,-48,34,-19,-117,25,-59,35,83,-24,-84,-9,-65,11,-20,-80,-62,23,100,-1,-44,-61,79,3,35,0,-69,49,-19,-28,86,33,-90,17,-53,-115,-1,-14,-3,-97,38,75,-8,66,34,-53,-41,72,25,72, /* [756][0][][] */ 50,37,-70,-35,-46,-17,-94,-68,43,18,-103,7,-36,-29,-78,-72,-37,25,-26,5,28,21,81,-27,116,-67,17,70,101,-17,-59,19,56,-120,-49,30,6,21,-38,-1,69,57,-53,70,-60,8,25,59,20,-32,12,-63,70,-10,27,-55,-127,-30,-22,-49,-24,5,-35,-14,-37,-6,8,4,19,-44,-32,-16,-29,87,-39,10,15,-14,-80,-1,34,13,-94,-20,-19,-65,7,-102,-15,-35,-20,99,59,-30,23,-40,-72,55,-26,-30,34,-40,66,9,-2,-57,56,-49,-50,-30,-21,19, /* [757][0][][] */ 46,56,-23,-33,-8,-127,-7,-4,14,8,-9,21,23,15,-18,-49,1,-25,52,3,-15,5,27,-79,-13,-86,-7,73,53,56,-7,-12,21,-72,10,-21,-20,-12,-13,8,38,51,28,21,-33,-7,-17,52,2,-15,-23,35,-6,63,-57,-30,6,-4,-65,-33,-42,-43,-8,-14,-27,-87,-47,26,26,-31,-21,-19,-71,26,29,38,-22,25,36,-8,-35,36,-104,-7,11,18,43,-29,22,6,46,65,-59,-34,-7,-33,-33,-22,-49,17,40,-41,-3,66,-50,11,90,-29,4,-5,13,0, /* [758][0][][] */ -7,-43,-77,66,59,69,6,-66,95,46,-18,-7,24,63,31,45,-6,-32,-16,-12,-13,52,49,122,33,24,-2,43,34,39,-61,20,-5,54,-65,-19,16,-24,-82,35,-13,-30,22,38,79,-51,68,-60,75,-40,17,-6,122,87,62,20,-25,-1,-66,35,-22,1,-38,127,-43,-36,28,-33,9,99,-30,-33,52,36,-10,18,46,28,11,39,17,-47,43,75,-49,20,18,62,-31,-7,-46,-81,22,61,-28,31,30,5,-48,-18,8,-18,-30,1,18,10,-38,74,62,-58,63,-42, /* [759][0][][] */ 35,-46,-82,35,0,78,98,-94,14,3,-93,-97,36,5,9,120,59,50,102,15,-21,-17,19,46,120,-17,-5,-18,-31,108,53,-20,-127,11,-39,17,-54,-7,20,-8,-52,-39,-49,26,-23,-11,-7,75,89,-53,-9,-14,100,49,52,-27,37,6,-28,-23,46,27,19,74,-74,51,14,61,-60,-26,23,2,0,-43,31,72,29,-20,49,8,-84,-16,-4,-48,-104,31,-93,35,50,-12,8,41,-44,-9,-71,10,-25,47,-36,17,56,-9,-41,-50,38,38,15,26,31,-71,42,-8, /* [760][0][][] */ -2,-24,33,-26,-53,57,-46,-6,-8,-57,13,11,-10,19,-14,22,-7,9,4,-57,12,6,-127,58,31,39,-48,-4,63,1,-6,2,-5,15,27,7,25,22,-51,59,8,-3,2,-27,-53,-1,-23,-28,59,-54,1,55,4,-10,-18,2,28,20,-34,40,111,-5,-60,72,-28,-7,-3,-22,-4,8,14,29,10,-34,-23,-10,-28,47,-34,13,-6,-3,78,-1,-54,50,-36,-54,-32,43,3,20,12,-8,11,28,-54,-24,52,74,5,-5,-18,-5,5,43,7,-6,13,17,-1,36, /* [761][0][][] */ -58,8,-29,10,-3,-75,-90,-12,-32,7,23,16,-102,-7,-5,-61,-4,-21,62,-62,-11,-58,32,-71,-40,-26,-42,-24,-4,79,-87,-27,28,5,17,18,5,31,-2,50,-4,-5,-56,33,-121,45,-2,32,-44,-7,21,-7,-81,-44,-53,-24,-28,7,-9,18,69,-52,-65,4,-52,-36,-29,25,55,-6,21,60,-34,8,20,75,-70,-14,33,-90,-9,6,-107,-35,-64,-24,51,-46,-22,-15,-124,-3,69,-18,-23,-36,53,-127,-65,10,38,18,26,20,-22,-37,26,-57,27,33,-73,62, /* [762][0][][] */ 30,14,-35,2,-33,-87,24,-24,18,-99,-98,-14,-9,-21,-29,-53,-28,-36,32,-47,35,-28,-68,5,-90,-37,22,17,65,56,63,-56,-27,127,-57,66,-41,-71,6,5,-102,62,-2,16,48,27,45,35,69,71,23,40,53,-38,-115,21,39,50,68,-15,27,4,-21,-8,18,-42,-23,72,42,-24,23,-5,15,-19,-94,-12,33,-9,-59,19,115,97,28,24,14,-10,-5,44,13,-9,-12,47,55,-9,-18,-71,10,8,-18,57,17,-82,-60,-4,-34,-32,13,-123,6,68,8,-31, /* [763][0][][] */ -28,79,11,-20,-8,-5,22,-37,44,0,26,23,49,3,-51,39,43,127,-16,3,33,52,7,-43,12,-63,-29,-31,33,65,9,19,-44,-4,25,17,32,-24,-8,73,26,0,-15,-11,43,12,-55,-32,25,-53,35,72,-22,-48,85,-12,7,-49,-121,23,103,37,-100,20,28,-6,-4,-11,21,-11,-76,-54,-45,-37,40,-22,-33,95,26,40,-35,13,14,-19,6,44,-17,-59,-17,-47,13,-35,-59,8,-28,-2,-46,8,37,37,-17,-7,-43,0,-49,106,22,-17,35,-65,-25,-30, /* [764][0][][] */ -24,-18,-22,-68,7,44,-82,57,-60,31,-20,-15,-17,36,-35,-13,25,23,6,-27,-68,-40,2,-14,0,-51,5,62,49,6,30,15,-34,33,-64,107,-34,51,-64,34,31,-8,-20,58,-127,68,-16,56,-27,-26,63,5,55,1,18,-54,-9,56,-66,-61,16,-4,-19,-13,51,-13,44,-48,12,28,20,-23,45,-11,13,69,-34,90,4,-48,-22,40,-29,-22,-47,-2,-26,-123,13,-42,10,74,10,28,-5,11,8,-3,37,-18,-23,-7,12,-18,-64,20,27,-56,-26,37,37,19, /* [765][0][][] */ 63,-2,-112,-24,-113,48,12,-40,-59,-73,29,57,-4,64,-67,-38,-80,70,15,-41,-107,7,34,26,16,-13,-9,-48,-36,19,-14,23,62,-39,39,82,-80,6,-59,37,115,15,-4,-11,-51,72,33,-3,41,47,11,-27,-22,-95,-68,-93,-99,64,18,-36,-54,70,-32,61,-79,-40,-48,-48,-24,6,86,-84,24,-13,-26,57,69,-99,-18,7,46,82,-60,42,-118,-75,-10,-117,50,-20,-50,-8,2,30,12,-127,53,41,55,82,31,-123,124,8,-34,80,-18,-8,8,32,-7,-18, /* [766][0][][] */ -32,-24,-56,37,-41,-20,28,27,23,-17,6,-21,-14,34,66,3,-76,16,7,-8,3,-50,-103,28,86,42,-79,39,-13,43,-32,-14,42,-51,-10,-42,47,-52,88,-51,-34,-4,-77,58,-9,-40,12,-20,37,-12,24,-75,-80,5,17,3,-62,-35,-127,85,82,41,-34,-49,-27,-44,-44,-9,-8,-2,16,-67,-49,-45,41,10,0,38,10,-40,9,-41,40,-44,-48,93,-11,-43,-48,-9,20,-1,-19,23,-24,51,-53,29,55,-37,-15,41,-17,88,56,79,-12,14,68,-2,101,3, /* [767][0][][] */ -96,99,39,-76,-72,-16,14,1,61,3,-69,-43,-87,51,41,41,-8,38,28,-127,93,-96,54,-33,29,-21,-8,-57,50,65,-29,-37,-11,75,-36,18,-106,48,38,65,26,12,75,16,-21,-66,39,-33,65,-102,-97,124,-7,-45,-101,40,-6,79,12,-91,30,-22,-51,-17,29,-80,21,72,39,7,-6,5,-68,-7,8,37,-19,40,20,-3,74,67,-30,-22,-45,-7,-24,-15,42,81,16,-42,46,29,-38,53,-13,-99,7,60,-6,-5,38,-22,-37,-20,9,-63,12,-34,-35,-39, /* [768][0][][] */ -28,-13,7,-4,-20,3,8,-56,21,24,-28,7,13,-17,7,76,7,-18,5,18,16,24,20,-6,-27,-16,-127,18,-6,17,-21,-14,13,20,17,-38,-12,-26,-8,32,-22,-1,9,-55,15,16,-35,-69,22,-23,27,10,-26,3,19,-23,-20,15,-36,13,13,-55,-23,-10,-62,-40,-12,22,63,33,-44,28,-19,13,32,-61,-21,68,-24,-44,4,-43,12,-43,-21,-5,-17,-24,2,14,-1,-76,-67,-5,28,28,19,-14,7,3,25,27,-11,34,-21,3,-23,64,18,4,26,20, /* [769][0][][] */ -18,-42,-2,15,-65,-45,-12,-1,67,1,-49,45,-105,-23,-12,94,0,-90,9,-73,-85,-43,-18,3,103,-49,26,17,96,15,-37,-71,23,-22,-1,12,-68,44,-127,15,6,18,-20,27,-36,-40,79,-40,27,-43,-33,36,-13,47,75,-41,-29,82,-44,-58,-36,-21,-15,-83,11,-67,63,3,11,4,-17,-34,22,44,34,57,36,52,-59,51,-2,-6,2,-37,-16,42,80,-22,-60,43,39,-39,33,-31,81,91,-43,-32,-53,-32,-16,-59,-62,50,-100,-37,-31,-12,-59,8,-67,7, /* [770][0][][] */ -41,-66,-62,-34,-21,25,58,10,65,-27,-41,19,-10,4,65,74,88,11,8,-9,41,56,36,47,56,12,15,48,55,22,-3,-38,10,22,-80,-13,56,50,-92,16,-24,49,59,-9,19,23,-85,58,58,-11,-5,-62,9,-25,8,7,34,-83,-3,0,95,-15,38,29,-4,-49,24,-85,100,127,-53,-91,6,31,12,21,97,53,41,13,43,-28,18,51,-47,-5,5,50,-52,-25,-69,-12,-15,70,86,14,34,19,50,-33,-20,65,25,69,65,23,55,4,91,49,-12,-7, /* [771][0][][] */ -13,22,8,2,-26,29,-27,46,31,-59,-17,0,30,53,-22,13,-32,26,-27,48,-6,-61,10,-11,0,-73,-29,6,48,6,127,-73,-14,-1,2,-59,-22,6,60,30,-23,59,19,-19,2,70,85,-75,-21,6,-25,1,-60,-6,-55,-87,13,63,-32,-10,-4,71,20,-18,80,21,20,51,96,-13,-17,-7,-7,50,5,26,13,19,-31,-106,-29,101,1,-30,-5,-14,-78,-62,28,20,2,47,5,88,-38,-61,-47,0,2,-89,27,-45,23,-10,-34,56,48,-38,-31,11,-22,40, /* [772][0][][] */ 46,-28,-71,-41,-34,-22,-35,39,27,-85,-14,58,-26,59,0,-4,-38,-14,-51,-15,-6,2,18,-6,26,23,49,-44,35,-66,14,-41,34,9,-71,46,15,7,-39,-26,-42,0,-26,4,0,-34,-55,-126,10,12,89,0,2,10,4,-26,-66,-15,51,-27,-16,-14,9,-6,-5,-35,18,34,-43,20,24,-79,-19,32,76,21,-45,45,20,26,-13,20,-32,1,34,-2,5,-17,-22,-3,-127,30,22,89,64,22,-13,18,-15,-28,-24,-65,0,74,-96,-68,47,-7,-45,-8,-67,45, /* [773][0][][] */ -20,15,-21,11,1,-37,-38,-10,13,58,-21,26,-127,14,66,-52,24,-17,2,69,47,22,1,-15,13,-35,-14,-12,2,-17,13,-9,-95,45,-37,13,-19,48,-41,84,-99,23,6,32,4,41,86,34,14,-31,-40,86,39,10,-60,-33,-4,-4,37,3,-50,-17,-32,-27,41,-5,-20,37,66,-15,-34,56,8,-9,7,-2,-24,42,11,37,55,22,-52,-43,5,37,-66,28,4,8,-47,-27,-45,-9,47,-46,-67,-9,-16,10,46,33,-35,-17,-74,9,33,-121,-94,42,44,-14, /* [774][0][][] */ 11,31,23,-27,-38,-12,42,9,12,-17,-41,80,-49,2,58,-69,-54,32,-19,-53,19,2,19,7,8,-3,-22,27,43,3,20,14,-81,127,3,75,-17,4,-41,48,39,76,63,18,-50,41,34,-15,-2,15,15,32,8,-107,-57,16,4,-21,91,-106,-55,-34,-18,3,51,24,-83,-54,-8,16,-8,49,9,-18,49,4,-98,45,20,2,75,88,0,-22,39,74,-71,30,-1,25,14,-68,-20,47,25,44,-54,-13,-63,14,13,4,40,57,-16,39,67,-57,-47,21,-9,46, /* [775][0][][] */ 38,21,13,64,-50,-40,49,-103,-17,20,4,45,-19,-50,33,-79,-72,-63,-20,-28,98,-49,24,-10,-17,-44,-80,47,37,-84,9,-47,-11,73,-49,-34,-72,-25,-13,110,-35,14,35,43,-61,-6,14,-58,-21,32,23,57,54,-9,-94,-28,-65,-2,127,33,-61,15,-100,-2,2,-22,-23,40,47,-64,38,-7,5,26,-61,25,-23,1,-22,-35,63,-4,-44,37,-36,94,24,-27,-100,76,-62,12,83,9,13,-55,29,-41,-83,18,41,-88,-24,-28,-96,-84,47,-125,-71,11,-5,28, /* [776][0][][] */ -2,-16,-26,38,-35,-50,14,18,40,86,-38,-89,64,20,-33,27,62,-18,8,32,0,6,2,73,36,-23,44,72,67,87,19,26,-42,55,-84,-35,11,87,118,6,-86,3,-64,9,12,-47,-47,39,126,-46,-58,68,25,-27,7,-14,40,-2,-78,-81,28,99,-29,15,-79,3,-50,1,31,12,-12,-58,-57,-55,-41,-44,80,94,-31,39,22,1,43,-108,12,-68,32,63,-32,-76,-89,-84,-51,10,-16,-13,12,-37,-7,37,127,2,9,70,97,19,-71,6,17,-70,-1,40, /* [777][0][][] */ -46,27,13,51,-46,-88,-43,-2,16,-34,-27,6,5,-46,-24,34,-65,-29,16,-45,-32,-53,13,-46,-48,28,-4,-63,9,8,29,-39,-4,-33,-9,-18,1,18,-14,3,47,36,-21,15,4,-2,44,-24,-35,20,-7,2,4,17,3,-27,-22,23,-20,-20,-17,-19,55,52,4,-36,3,59,12,-54,-2,-29,17,16,41,57,-13,12,2,-11,30,37,-32,-25,21,17,-14,-11,-70,33,-52,-3,48,-6,11,21,-127,-22,-47,2,2,-21,58,36,-1,29,39,-2,24,39,-11,8, /* [778][0][][] */ -13,-21,37,61,-13,10,-127,20,-12,-32,27,-43,-64,-19,0,10,-50,50,6,-50,-41,-66,0,33,19,47,43,-39,-14,-43,-9,6,31,47,40,25,52,84,10,-15,-15,40,59,30,12,19,32,-40,-24,12,58,-5,8,-50,34,-27,-38,41,-40,-77,-24,10,-19,-12,7,-46,26,31,15,-34,28,52,30,36,4,8,-6,49,-3,32,48,74,-36,-28,15,2,-6,-29,-17,9,25,-49,74,-37,-13,22,22,22,-37,-7,44,-24,1,50,-41,-3,35,-40,-6,34,37,-44, /* [779][0][][] */ -13,-68,-17,-60,6,-49,-81,54,85,91,-24,89,13,40,46,67,-23,20,-27,-6,91,-52,76,18,10,11,54,42,3,-63,72,14,-33,21,-55,40,28,75,-53,127,40,58,-24,6,-77,52,106,-47,-5,6,-2,20,-66,1,-12,21,-102,37,32,-101,25,52,-6,20,102,35,23,101,-52,-58,-56,64,4,63,67,121,21,13,-75,-61,-61,78,-63,77,-18,-29,-43,-17,29,35,-85,-110,52,-63,69,38,-2,17,32,-120,-17,-29,23,0,-46,9,-32,-26,-21,16,-36,-7, /* [780][0][][] */ 0,10,9,29,-116,-13,14,-15,-30,0,-47,81,-66,16,98,-91,-20,45,44,-23,-54,-37,-48,54,111,-55,33,27,111,-46,34,-24,-37,-7,38,33,5,3,-36,106,44,18,-45,9,-106,49,-11,-32,20,-63,-2,3,23,16,-110,33,4,-65,68,-101,54,-9,-23,-67,-22,-4,-118,-12,14,-76,18,78,-83,53,-9,42,-52,45,44,44,71,-30,-102,-49,-2,28,-28,61,-33,-66,-34,-25,-4,-76,1,-59,-2,-7,-34,-43,81,21,33,-68,30,51,-71,-127,36,-16,12,82, /* [781][0][][] */ 40,65,-18,13,-12,59,-7,-45,73,1,-34,37,46,-32,-127,-58,-75,58,-50,-52,1,-61,118,32,-6,-64,9,56,65,22,17,-2,10,55,35,-22,26,-59,-66,30,31,59,44,-19,2,60,28,6,-16,-83,-29,-23,60,36,-3,-67,-33,64,-29,24,37,22,-62,30,35,-37,-106,4,51,-10,30,-14,42,80,54,-16,-6,6,-43,28,36,-26,-26,39,-45,-9,12,-41,25,13,28,12,-1,6,-48,20,-103,-25,-41,-78,27,-42,52,35,5,-76,-1,-81,-41,63,36,-6, /* [782][0][][] */ 18,18,-52,-56,4,39,-35,-3,16,-65,-74,23,36,113,5,-85,36,8,28,-25,40,0,31,22,-2,-36,-9,93,56,79,31,-20,-13,3,-26,5,-28,102,4,-46,38,44,20,-11,-70,45,88,3,-29,-81,-106,-12,-28,-12,-127,-13,-52,48,-42,14,0,21,-34,-76,31,-55,29,-48,39,-69,-24,-35,24,-3,71,25,41,-6,39,46,55,62,18,-4,-6,-92,49,8,53,79,-75,-7,8,40,-84,-21,-24,1,35,28,-57,60,29,53,-68,-9,57,-41,40,38,18,-7, /* [783][0][][] */ 44,-25,-24,1,-5,-15,-30,-35,52,-39,53,-26,46,-50,-11,-41,-23,-22,-7,-24,63,-27,-2,4,12,-4,-52,0,93,127,-66,43,-17,51,-11,-12,97,-25,-15,8,50,-15,-8,37,57,9,12,65,14,58,-8,7,76,-54,43,-45,46,26,-62,-29,18,51,28,-12,-14,-79,13,-22,84,-9,0,-63,-62,-27,40,-44,-14,26,28,-5,-3,9,-20,-49,7,45,-33,-41,34,-49,27,32,-55,-4,-61,-32,3,-96,51,11,9,72,13,76,5,8,-23,23,81,-20,16,10, /* [784][0][][] */ 13,38,2,-30,-71,-36,43,0,-24,-24,-42,32,-48,-54,-20,6,-46,20,-27,22,-111,6,-23,19,3,66,-6,-4,-27,45,-52,-34,-81,-20,22,65,61,7,17,-33,47,57,-37,21,-85,54,21,33,1,-24,-80,29,-27,-89,-14,-6,-72,-7,-11,-96,-45,67,-51,-13,-4,-38,29,-35,0,-31,76,-11,-11,-22,25,-1,20,5,-25,2,116,18,-2,127,-2,-3,-46,-18,-25,39,-23,-50,-24,27,6,-35,25,-15,29,-34,7,-54,-12,26,17,-68,54,24,-24,32,65,-10, /* [785][0][][] */ 15,-80,0,16,-20,-19,-38,-72,-44,-34,44,22,-25,34,73,44,43,-53,14,-18,31,59,-64,-38,-14,32,-33,14,95,50,-84,50,-71,-35,-102,-18,33,-5,-32,12,88,-3,30,17,-5,-68,-36,-13,63,-93,74,0,43,-51,-42,27,38,4,-127,7,-26,-54,21,0,6,1,0,30,79,21,79,-9,-14,-45,-22,31,43,33,0,-6,-19,88,34,-72,-15,48,49,-10,-96,-53,-87,-20,63,2,4,-7,28,47,88,50,-10,-10,-9,-7,24,-7,-13,13,100,62,-88,-101, /* [786][0][][] */ -83,17,-24,-89,-25,16,-32,-126,85,-83,-28,-34,32,108,-66,66,30,32,-82,-24,43,13,-22,100,28,2,16,-53,-84,95,20,46,-55,24,1,-14,80,-86,-11,29,-6,53,43,-95,-22,-2,127,-57,91,-7,69,4,-58,13,22,-18,47,20,66,32,108,18,-77,51,-25,5,-69,-57,-79,-11,6,17,-43,-8,23,35,22,20,21,-1,-24,72,15,-16,-5,82,-120,-39,-12,35,14,-40,28,-4,-71,78,-91,-7,82,18,36,-38,1,-30,7,-10,19,-50,-17,-18,-6,-44, /* [787][0][][] */ -29,-70,-55,-44,56,12,-33,68,-48,62,-59,8,-9,66,-40,-12,25,1,-41,-42,-29,-36,39,19,73,-47,-7,66,-18,40,-58,-59,-50,107,20,65,-3,127,49,-52,-35,6,-19,102,-68,48,10,1,7,-3,-37,-37,-90,-2,-48,-61,-12,30,62,19,-44,30,-47,-9,70,5,-28,85,65,10,1,34,26,72,25,2,-12,31,51,-26,70,31,-31,41,-2,-72,14,-34,-69,-15,-65,29,49,67,51,-28,-25,-4,-85,3,1,27,4,26,-88,15,12,-50,-46,-5,25,70, /* [788][0][][] */ -97,31,-2,-10,44,72,-98,-30,-22,-35,-37,-45,47,106,-3,51,71,-9,44,2,70,1,6,68,-19,-4,-30,-33,9,38,-94,77,59,-24,-32,74,-12,31,-52,83,-44,41,-26,-25,109,-42,48,-80,119,-4,-29,-98,63,-90,-37,15,-8,-44,-75,-20,43,-4,-84,-18,-85,6,57,88,59,56,-29,109,-85,44,-24,-58,-15,64,-10,-7,41,-1,31,-11,-6,-46,-4,18,-71,-7,-43,-98,24,51,-4,54,38,-44,39,-11,19,54,36,23,81,127,-114,-7,-34,34,-27,-9, /* [789][0][][] */ -39,32,-17,-26,-95,-65,-13,-10,64,-19,25,29,-14,17,19,-12,34,-63,35,-58,52,-71,41,-19,-27,-77,1,10,54,30,-13,-50,-12,-14,-34,9,-53,31,7,13,-82,47,28,32,10,-56,56,-12,23,-8,25,43,37,-50,-2,-43,33,-1,68,-47,-48,-38,-57,-12,-43,-27,-38,-10,-33,-3,31,-13,-4,63,-42,53,2,-127,8,-98,-5,69,-32,67,40,28,-13,-30,28,-2,-13,-66,-2,60,-17,0,43,-40,-55,1,-83,-77,-3,-57,-7,-55,10,-4,-69,66,-4,12, /* [790][0][][] */ 50,3,-20,-59,50,-27,56,-127,7,-29,-42,21,-10,-46,114,28,9,-41,78,-17,93,45,47,-44,11,-5,-44,31,-13,109,4,12,-71,8,-53,19,-18,-38,-33,31,1,-51,-10,-71,-45,-31,-4,12,23,-22,5,51,88,-5,0,61,-16,-7,-15,19,-10,-57,16,26,-47,-13,-15,-70,52,37,-52,-52,11,-21,-13,-43,50,61,35,-2,67,13,49,-61,-2,0,-19,-51,-16,-58,12,-22,-6,-27,42,17,-4,-106,-12,56,28,-39,6,54,-2,13,-18,41,16,10,-43,-7, /* [791][0][][] */ -27,13,-11,13,-51,34,7,-35,7,3,44,-18,-19,-22,-9,-10,28,-11,-19,-30,11,18,10,24,-7,4,-43,-27,-26,14,39,9,-12,-50,-61,3,24,-10,22,51,0,-12,48,-8,17,23,-46,21,24,3,36,3,27,-26,53,7,1,-69,-91,17,-46,18,24,31,23,-116,-6,-48,48,45,-42,-40,-16,-47,37,-41,9,127,35,-1,-40,-3,-8,-5,-34,50,21,-40,-45,-38,-33,15,37,15,39,-13,-25,-25,-56,-30,34,-15,1,40,-10,83,-8,-13,38,-24,-43,-55, /* [792][0][][] */ 12,-103,-38,27,0,10,-12,-23,45,-6,8,-39,13,77,-55,1,-62,-48,-6,74,58,18,-94,93,20,45,-78,53,4,-25,-121,-13,37,-15,-19,57,40,-18,36,-70,-5,71,-19,-25,14,-81,-26,-91,41,-20,21,6,-33,54,-32,72,85,-72,-58,-9,-10,-14,-59,-62,-24,49,-26,-5,-81,-7,-18,-46,32,-33,30,-31,50,52,-40,-38,53,-48,-13,-52,-87,99,-61,-33,-99,-21,-127,-29,8,47,2,119,10,-56,-33,5,20,-13,-85,-29,-23,13,121,64,24,-85,-28,52, /* [793][0][][] */ -14,-23,22,22,-25,59,-24,10,6,-52,-13,23,9,69,-70,36,79,-10,-17,-36,-17,68,-92,55,23,6,34,69,-5,-14,-44,68,17,27,-53,46,17,-42,39,-4,-1,-22,-30,-1,36,-12,41,-32,38,-12,87,-27,6,0,32,9,-43,-67,3,18,-16,-49,-86,-37,-97,-23,-39,-24,8,-5,0,-11,-10,-22,-5,-6,17,34,46,42,15,-48,-45,-31,-79,2,-32,13,-30,-32,0,-21,35,34,8,127,-3,-4,45,-48,7,42,32,56,33,27,-10,97,14,20,25,-69, /* [794][0][][] */ -19,31,-118,-22,-98,-120,-33,38,1,-14,4,-44,27,-23,-9,38,127,-90,-40,-49,-61,-43,-29,48,-3,46,-112,75,5,49,-21,8,63,-64,9,13,-27,49,30,-37,-80,44,48,-24,59,34,-64,8,-8,-76,73,-41,10,-55,26,-56,-70,-85,-73,43,14,77,-60,101,-110,-58,-7,32,-83,19,-34,-68,-28,-34,-34,40,60,-7,2,24,80,55,89,-23,-31,-104,24,-32,21,-31,-65,-5,-117,30,52,30,-49,9,-26,5,5,-61,28,87,60,13,-3,-109,37,29,38,36, /* [795][0][][] */ -15,-46,-64,46,-15,-8,-31,4,62,-33,-81,55,-35,-8,-22,-7,20,-2,18,9,-57,-16,-17,46,12,35,27,0,32,23,98,1,-105,14,41,-2,41,18,-50,-16,-22,23,-85,-16,-77,59,-16,45,-37,-7,57,1,-35,-92,-127,-12,0,59,61,7,31,7,96,51,32,-8,-73,2,48,-32,-21,-12,-54,94,-31,-16,-61,8,-4,59,16,-10,-35,-19,45,13,37,-46,-100,72,-32,32,27,-64,-7,-21,-68,-101,-32,7,-9,-115,8,81,-10,9,16,-106,24,23,-52,11, /* [796][0][][] */ -33,46,-103,46,-35,20,-103,-30,1,-10,-2,38,0,-14,-68,-36,-44,-77,67,-66,-48,-89,88,-73,49,-114,-41,76,76,91,-84,-81,-42,-90,6,5,39,23,-2,37,102,4,-23,33,-72,-73,127,-99,-56,-17,11,79,-50,-1,-50,-31,-76,-11,-20,36,-34,-53,-37,29,-98,-53,-54,41,-27,68,-27,46,-5,-32,54,34,-69,-105,-49,-96,56,7,-72,-49,-16,-70,11,-37,20,-56,-89,29,66,-61,16,-39,-63,-47,-60,-6,19,-82,-48,70,-38,-39,-8,18,-85,62,-19,34, /* [797][0][][] */ 26,-13,-72,78,6,-5,-5,-6,35,-5,-69,-3,-4,-18,41,-44,-10,-67,-9,-22,-44,-23,11,16,30,-89,18,-3,56,5,-22,42,-45,127,-17,57,1,55,-42,43,-99,6,10,22,-54,62,53,-99,-15,-32,61,12,25,-45,8,-57,-7,32,4,-11,-51,-12,-29,-64,-16,-105,22,36,29,4,-22,-11,47,-42,1,-5,-2,39,8,1,37,35,-69,17,47,14,73,54,109,-6,17,0,81,4,9,4,22,55,-4,11,-37,-17,-37,-27,10,10,28,6,-10,115,44,-28, /* [798][0][][] */ -8,17,10,-41,-13,4,-31,18,31,-91,-61,48,-51,-9,27,16,39,43,40,17,-49,-3,-36,12,21,26,-5,-28,8,39,4,-20,12,-5,5,-12,-4,-17,-127,-51,-32,25,-28,5,10,59,21,-28,21,13,39,39,-56,41,-27,-16,-5,27,-46,20,-3,-2,25,-91,-17,-13,-57,-5,49,-49,-63,-16,-9,54,24,8,35,5,31,2,23,-4,-5,38,17,-3,-7,-48,0,43,-28,43,18,15,-60,5,-13,20,-52,-37,44,-16,11,0,-6,-20,-14,-71,8,52,37,24, /* [799][0][][] */ 18,-104,-24,28,40,-73,-27,-47,38,-54,20,-8,25,-24,6,68,-68,-60,70,69,75,-6,45,9,-44,-6,-26,22,-12,87,-111,-27,23,2,76,-27,-14,-87,35,-69,35,-63,-7,-109,-20,40,-46,39,-26,-2,-31,81,86,-25,39,46,22,67,-67,48,19,-21,-76,-2,-38,-32,-20,-16,48,-41,-39,-39,-70,55,33,-2,30,112,-22,-52,-72,-71,-3,-76,-86,117,-88,-32,-86,-127,56,-14,-44,-23,-10,67,34,11,96,-28,123,122,115,70,29,33,-40,12,36,-23,-9,0, /* [800][0][][] */ -44,-14,-61,-24,18,-36,-4,-31,70,2,52,41,20,-35,24,-12,127,-38,7,104,46,46,-40,30,35,-59,-5,56,-70,74,21,4,-20,36,-61,-61,4,-7,-63,-18,-113,7,68,67,37,-12,26,-28,1,-22,17,-17,-20,-86,23,-111,15,-44,-38,67,52,66,-86,26,15,-45,-24,3,-16,-81,-14,53,51,19,-36,0,65,79,51,25,-27,-20,-41,-36,-44,36,22,22,-96,-5,-53,-44,3,-18,-71,76,-18,-84,10,21,-22,4,-10,-56,-57,75,41,-72,33,5,24,-51, /* [801][0][][] */ -17,-49,-11,68,-20,-45,33,-10,8,6,39,69,38,37,-45,-99,30,-111,-16,-15,57,-86,33,-21,80,-51,7,22,96,90,99,-43,13,-106,-84,42,7,-1,20,33,25,-37,56,-20,4,-1,52,61,-88,14,76,5,20,26,-23,-105,15,-37,-48,-115,-53,37,78,-113,-84,-53,55,-21,35,31,17,-51,-34,96,11,41,-83,77,-58,-14,-51,47,-34,8,-83,-82,71,-57,65,-38,49,20,3,1,-56,-48,-73,-86,0,-32,127,16,29,35,42,36,50,-101,-107,125,17,61, /* [802][0][][] */ 34,21,-15,-15,-103,-85,10,-13,-47,-42,-10,6,-24,-23,-12,-38,-28,20,27,-72,0,-18,57,-79,-32,20,1,-65,-33,-43,-66,8,-57,-5,-6,61,-6,-37,1,34,60,18,-21,21,-4,105,10,6,87,25,49,-34,102,-37,-42,9,-81,13,71,-5,-104,31,6,5,-10,-63,73,11,24,29,81,31,-19,2,35,55,4,-42,11,28,38,36,-20,31,23,-4,46,-71,-28,24,-14,-26,-80,21,13,9,-63,12,-37,27,-2,-20,41,7,-6,-18,25,-127,-18,-36,-6,-58, /* [803][0][][] */ -99,8,-19,-70,-19,-22,-60,-2,56,50,90,-3,1,57,-7,54,124,20,-41,-37,37,-48,-44,15,33,-4,40,29,35,-4,47,94,-56,-18,-51,-36,83,52,-28,127,12,-6,16,-92,-4,-13,-12,45,81,-12,42,-67,28,-52,-20,114,-40,-94,-81,-26,48,-41,13,-44,-57,11,54,15,102,-31,-32,20,-53,40,13,10,64,93,-47,-87,9,10,-1,22,-7,-26,35,1,-81,-46,-86,-75,-1,-15,-2,100,-5,-19,29,50,30,55,33,29,12,21,-72,25,64,20,-70,-41, /* [804][0][][] */ 12,3,47,9,-8,14,-42,46,-11,19,2,18,20,32,-23,25,-21,-9,7,-37,-81,-40,59,-15,6,-30,-3,41,35,20,20,-33,4,35,-11,17,-11,-70,83,-64,-5,-17,-19,24,-11,9,31,-19,15,-20,-34,35,11,34,20,-44,-35,18,-14,18,-12,29,24,-118,-38,-56,-7,-13,8,25,-10,-65,16,55,26,14,57,14,-34,-41,3,-7,-17,-18,1,2,33,-43,21,-23,14,15,29,13,-13,-19,-15,-29,-28,-6,25,-38,103,127,-62,-7,-15,-26,13,31,24,45, /* [805][0][][] */ -84,-8,-20,65,-10,-16,40,-18,17,-33,-34,-39,13,66,67,-21,-14,-50,68,18,69,-87,-67,-34,12,39,-68,2,98,84,-40,33,24,18,60,28,-22,56,58,-39,-46,-47,-4,-56,13,-42,-37,24,36,-35,-43,-13,18,35,51,-18,-9,-68,-45,-79,50,29,82,-28,-38,15,-41,-46,100,-14,19,15,10,17,64,1,-60,59,-24,-36,66,-34,71,-93,-127,11,-68,-10,-30,20,23,-45,-56,-32,-83,-56,47,-88,20,-12,120,-9,29,4,-46,60,31,-32,12,-9,-6,-71, /* [806][0][][] */ -23,93,-29,29,-43,18,-6,3,33,6,56,-10,0,63,-20,-22,-14,-4,6,-30,-18,-43,-13,-22,34,-32,20,-32,-29,31,-12,-46,-81,7,28,-11,59,87,-12,-19,-5,19,-89,32,1,2,18,-32,-29,25,22,12,-41,20,0,-5,1,-20,16,-39,15,-17,-17,-44,-12,-42,-3,127,39,-34,1,49,-68,-3,40,64,8,17,-14,-26,54,-12,-9,61,-13,-65,59,-1,-21,5,-40,-26,4,25,-17,29,-70,-29,31,-3,-16,51,-35,-52,-5,-16,71,-30,-14,26,15,31, /* [807][0][][] */ -8,-25,-37,42,-16,-3,-27,16,19,-24,45,-21,-27,64,-56,97,-32,-107,37,-30,-61,-5,30,32,22,-42,35,63,86,-7,5,-61,-29,4,58,3,-94,127,31,-53,17,77,-19,45,-89,-10,-33,12,-34,47,-30,-27,-2,-73,3,-1,-9,40,41,-51,-68,2,-34,-69,-18,-1,82,40,-5,-44,41,-11,54,47,102,63,10,30,-82,-6,-9,-64,65,2,-8,63,57,-48,-67,-6,-100,18,-28,-34,65,51,-25,-35,-22,-43,-11,-66,-77,110,-36,-75,81,33,-24,28,-81,19, /* [808][0][][] */ -38,-19,7,-24,-67,30,-6,-25,103,28,-17,-26,49,-39,-31,124,-2,9,-3,50,39,12,71,34,0,38,-101,46,12,38,-16,-11,-5,13,-40,36,-15,-7,31,10,-9,21,22,-64,-41,-17,-9,-21,50,-85,40,-26,-35,10,27,-74,10,-16,28,-61,127,24,-86,-16,-6,-25,-2,-19,-46,54,-17,20,5,-22,110,40,-11,107,-44,-2,-19,-8,68,-20,-25,15,-34,2,34,-24,64,-73,-10,-6,9,76,52,-14,-74,-76,-22,106,5,43,-53,43,1,84,-42,17,28,7, /* [809][0][][] */ -38,6,18,-46,-80,-48,83,-15,-31,-44,-82,-56,-24,105,-8,30,-26,37,-38,26,-88,-17,40,-2,-54,-56,-25,-6,59,-56,109,-76,-14,-18,93,10,-10,-102,-75,85,-17,69,-27,-83,-73,55,-5,-86,29,49,6,-2,85,-49,-80,-7,-41,-27,81,-43,-86,-85,-10,17,23,-4,-43,-30,1,28,41,18,-127,50,-43,124,-18,-18,-97,-34,12,-15,-53,112,-11,-32,-56,40,-1,-6,-108,-42,-109,-111,-44,45,18,46,51,16,67,28,80,-47,-68,-9,50,3,67,-25,63,14, /* [810][0][][] */ 42,-14,-92,-50,-18,-19,-3,91,24,-26,-56,45,29,-10,-2,-35,-18,53,42,-57,48,85,47,51,38,14,56,100,24,-45,-27,-65,-127,24,24,-33,44,-19,-61,73,-27,92,97,7,-51,26,79,-5,32,-59,-87,51,-102,-57,-38,8,-9,-33,47,-20,35,71,-72,-67,10,-13,-43,17,-15,9,-61,41,-25,66,-6,-2,-73,57,35,-57,-31,83,-41,8,36,-36,-67,25,-7,-27,-18,-14,-11,-40,-40,-65,-20,-43,-35,-44,31,-29,-27,8,-65,-4,41,-17,-78,29,-7,-49, /* [811][0][][] */ 25,-1,-6,3,8,-23,32,-34,13,77,9,-15,35,-10,-45,69,-20,30,5,14,77,35,-4,73,-17,16,-25,15,-21,48,25,-59,-10,7,-30,-29,40,-49,-23,30,-34,-5,28,2,-3,4,49,-43,74,-3,-26,-30,27,33,6,-37,22,17,-13,117,29,23,-15,13,8,-40,-49,21,24,-53,37,18,26,48,-23,54,57,42,-40,12,52,-37,-24,88,3,127,4,53,-40,41,-12,-1,-96,-33,-66,-6,-37,-76,-26,71,5,-57,18,-7,-63,-6,30,4,97,-10,-1,-50, /* [812][0][][] */ -68,61,27,-30,-110,69,-48,54,64,-16,-40,43,-58,122,-46,5,-102,-18,-20,-46,34,-15,18,-22,-28,-87,5,52,120,-6,66,-65,-69,88,-56,45,-3,34,-78,-41,-123,7,15,8,37,52,31,-87,-10,-67,81,95,21,42,-93,3,42,93,94,-23,66,-83,-25,-49,101,-45,1,106,43,43,79,66,90,74,-90,33,-14,-24,-123,-127,8,-44,-57,42,21,122,-96,-23,-73,57,-108,48,36,88,-34,-36,14,-52,32,49,-9,36,-6,17,-125,-58,71,6,9,45,-44,-126, /* [813][0][][] */ -43,-19,-39,94,-15,-17,-28,26,-13,-55,-4,-13,-13,2,-33,8,-80,-60,24,-75,-79,-60,92,-24,14,-1,16,14,-23,-7,-10,-7,51,39,30,40,-70,-31,33,-89,12,67,31,47,-11,-10,-7,-61,49,-18,7,83,36,-25,31,-83,-13,-3,-121,-53,-70,-26,66,-47,11,11,34,14,-30,-23,49,-71,-41,92,70,-26,24,46,-58,13,23,-57,-25,25,1,64,90,-24,-27,1,-61,-12,13,21,63,-19,-46,-127,-52,-77,6,2,5,106,20,28,-6,19,0,17,-1,-69, /* [814][0][][] */ -20,6,-9,40,-10,-49,6,-14,63,-13,-70,25,-13,-14,-69,22,-85,-20,-34,-26,-127,-32,5,-42,61,-59,15,26,-5,55,-49,0,-21,57,-35,29,-9,71,-29,-25,-17,27,-17,21,-77,-48,89,-21,-12,27,12,-39,38,15,38,-16,47,-20,-52,-90,-18,-45,2,-89,-25,-29,-6,11,-11,19,-29,50,28,6,3,53,3,-50,-32,-19,-9,-41,-26,-31,-5,20,7,-25,-11,-7,13,19,33,8,-30,16,-52,10,-72,-21,38,6,8,-15,-109,-42,37,-12,-8,7,14,69, /* [815][0][][] */ -17,-3,27,40,10,-23,-4,-109,57,-13,13,-3,53,-3,-66,6,-8,-39,14,26,31,-57,-109,11,-3,9,-61,8,30,-28,-45,45,-21,-91,-20,-28,31,33,45,114,-3,-30,44,38,1,-57,26,-15,9,-5,87,-70,-28,-4,-46,24,36,-35,-37,58,14,19,15,127,8,3,-53,-39,5,-36,0,15,-96,19,-13,-2,-33,2,-97,-30,-7,-10,0,-22,4,-12,-29,6,-81,-29,-33,-13,-61,16,-57,-49,-62,-22,-30,19,33,-73,41,18,63,41,7,-13,-24,-23,-83,-33, /* [816][0][][] */ 25,0,-9,9,7,5,-9,-34,22,72,-30,-47,24,127,-50,44,53,-79,-16,-16,-16,11,-51,78,59,-40,-69,35,25,114,-92,102,67,46,-32,-17,27,-13,11,-50,-36,8,-46,-38,-73,-25,42,63,57,-63,-44,6,17,-25,-3,-30,70,-26,-69,33,12,-54,-38,-13,-31,-43,-24,87,-2,81,-96,20,-113,-47,57,-31,58,21,60,-96,-44,-45,57,-88,-101,-20,-35,-35,-96,-44,-56,-103,-8,20,-9,104,16,-40,10,46,-9,58,17,-29,5,56,-47,-9,1,11,16,20, /* [817][0][][] */ 0,-29,-10,-7,1,38,-25,-11,-54,-67,-23,46,-32,-31,-34,4,-6,-14,43,-54,-24,7,24,6,-27,-16,-11,-15,39,10,24,-26,25,37,-21,28,-30,-45,-49,20,21,34,-37,-24,2,14,6,-104,58,-127,51,5,25,-70,-6,9,13,43,-31,16,25,-22,21,-18,-66,-55,20,-13,10,-4,39,-20,-11,2,41,54,2,2,-20,8,40,20,-29,28,-11,22,116,44,-1,10,-83,27,18,6,26,23,-4,-5,-41,-21,-41,18,34,26,16,25,-10,34,-17,30,-64,0, /* [818][0][][] */ 10,22,-11,11,-9,32,-1,-71,-3,-34,-36,15,-10,-10,-63,-33,-33,6,-10,48,-53,19,41,16,27,31,40,48,-1,-46,-6,-29,43,12,30,44,20,14,-36,-11,-17,33,-22,34,-7,26,15,24,-6,10,-31,23,8,-47,43,-30,-34,18,-79,52,-12,5,2,-2,0,1,-64,54,-24,-42,-31,7,25,114,35,46,34,12,-19,3,11,-57,-1,5,-54,-8,72,-40,-51,11,-35,53,60,-13,14,10,0,6,-51,-40,11,-25,12,17,-127,9,71,-43,0,-17,8,-20, /* [819][0][][] */ -1,14,30,48,-33,-18,-95,-33,-33,-11,-100,9,44,31,-13,-5,52,-22,109,-29,7,-14,79,-53,3,-38,95,-23,90,-30,81,-6,-43,-97,25,43,14,10,10,-5,-19,24,-62,9,-3,14,-66,28,65,-89,10,10,9,-62,-39,-41,-42,-59,-21,-13,-6,37,127,6,-25,-25,16,33,20,31,29,-24,-55,64,17,13,-52,10,8,-65,7,94,15,-66,-37,23,74,52,29,70,-2,33,-35,7,-21,42,-10,24,-22,-42,101,-66,30,-41,15,-10,75,14,-92,6,27,-44, /* [820][0][][] */ 32,-5,41,8,38,-12,-17,127,-54,58,26,-42,24,51,-26,-28,-30,1,-9,-2,-42,-27,13,58,100,6,40,78,49,-41,-1,-77,-12,82,18,48,-56,55,34,8,5,98,-41,42,-23,-61,13,-14,-18,-4,-39,21,0,-109,-19,18,-77,16,34,47,-24,34,-55,-56,40,-2,-14,59,34,-32,32,41,-46,68,51,2,-25,-1,24,4,-9,-71,9,59,-5,39,50,-24,-58,-19,-81,-65,59,23,9,-29,28,-29,-21,38,64,11,65,-7,-32,34,78,-47,24,2,0,46, /* [821][0][][] */ 68,-117,-41,56,-57,-6,-115,-73,-2,-1,-65,79,-30,-19,-51,-36,-55,65,41,18,20,-44,-3,45,-16,-29,17,36,51,1,-48,-70,41,11,-60,98,44,2,49,-59,-10,-20,-108,61,21,54,9,-38,83,-77,20,55,60,-19,2,21,-9,7,17,-100,-18,2,-14,19,79,-12,21,-33,47,-58,8,45,13,-20,-33,-14,16,43,-53,-25,44,20,61,28,-74,-54,-68,23,10,30,-63,9,-64,26,-55,31,-7,33,32,6,-8,105,127,25,11,29,28,-8,19,-36,-5,-65, /* [822][0][][] */ -70,14,-4,-30,0,-61,-70,43,43,21,17,43,-95,-27,-40,47,-14,-11,-23,47,-21,-76,67,-25,-31,-48,-11,6,32,18,42,18,19,-5,-22,-12,17,12,7,28,30,-28,-13,49,-24,-25,-62,4,-3,8,-23,32,81,66,17,-8,-9,2,6,-11,-66,-56,43,14,60,-92,-73,42,93,-8,-25,-75,-18,-11,4,38,3,0,-1,-4,-26,38,-85,44,15,65,-9,-90,-19,-59,-70,35,38,30,1,-25,-93,15,-52,-79,16,-57,64,18,-44,127,3,0,-24,53,5,18, /* [823][0][][] */ 27,26,-40,-32,-43,-47,-64,-9,4,-70,-39,-9,12,-30,-44,-6,-5,-41,36,55,-54,-69,-58,-68,92,-41,-13,-11,15,-7,1,-71,-28,23,-59,-35,23,46,-84,-63,-19,-17,-98,6,8,54,12,1,21,-17,78,28,24,-20,-5,-1,6,-37,41,-55,36,-4,12,72,38,-127,12,47,-42,-60,-44,-26,-111,12,-11,65,-31,-6,24,14,49,18,-18,43,8,-87,67,12,-32,70,-16,-3,-29,30,-29,19,0,-19,-31,14,37,84,17,10,-39,-53,21,-3,-1,37,3,75, /* [824][0][][] */ -45,-111,-5,35,-19,-22,-39,59,12,17,-12,120,49,35,-20,-27,11,-6,22,-29,18,-12,21,17,67,-15,49,75,110,-31,-31,-6,-104,-33,19,6,-36,9,20,-13,-47,36,-22,0,-35,14,-38,-73,52,67,-34,-40,-17,18,-53,-11,10,-45,17,-41,-110,40,28,15,1,19,8,21,38,63,-68,-14,6,76,91,-4,-59,35,-31,-72,-52,59,-59,63,4,-80,28,-33,-17,3,6,-3,13,70,84,-53,-42,-5,38,-127,45,-34,97,-13,12,38,-3,-49,-29,16,30,8, /* [825][0][][] */ -40,-69,9,78,44,57,-80,-13,11,26,7,-70,-58,94,-113,-77,-79,32,-14,-65,-73,-32,-10,57,-24,-3,81,58,35,46,75,-17,106,-13,45,81,25,107,14,4,-19,35,-30,54,-30,65,39,-20,-38,74,-30,1,2,-36,-8,-42,29,-10,9,-105,-60,58,-36,43,46,5,-44,6,-65,49,-37,102,40,106,61,91,-29,-23,-127,-1,114,24,-9,53,-48,-32,22,-100,-42,14,-33,-102,44,-79,-57,-40,6,-87,-33,13,-11,-64,96,17,-43,-53,-6,-9,-38,1,-9,-52, /* [826][0][][] */ 59,-18,4,57,37,-86,-21,-8,21,10,61,69,77,6,-55,-60,-11,-52,-22,-20,12,-13,14,-28,31,39,-22,9,-11,97,-81,10,-15,10,-27,-40,59,-36,25,8,-26,-30,37,27,3,8,-24,-10,-3,28,-3,-39,75,75,79,2,66,-107,-74,51,-55,63,19,-24,-69,31,-7,18,-17,35,45,-30,7,12,58,-21,-21,42,11,32,1,-51,-46,-2,6,64,59,-109,-127,-52,-59,23,-33,56,24,59,-8,-63,-6,14,54,5,69,-11,-18,-4,20,42,31,-15,58,30, /* [827][0][][] */ 19,-27,-14,65,-9,-24,6,-8,-45,-25,-52,8,-57,-2,18,-2,12,9,-5,25,-27,-25,43,-44,11,-29,-7,20,-31,14,62,-120,-30,30,15,-18,-127,-22,-58,-55,-42,7,-65,-56,-82,39,-22,-41,-52,4,56,-43,9,-51,32,-27,-58,-49,-17,-42,2,-31,26,-4,44,-41,-49,38,-38,24,-13,-6,-16,26,73,38,10,-12,-7,-47,-13,-2,4,-24,-7,39,28,33,-28,-30,-28,25,12,19,63,6,-3,-68,50,-9,56,-7,12,-33,-56,46,9,-39,-10,45,2,-10, /* [828][0][][] */ 41,-8,-97,74,-11,-6,-30,14,-40,-24,28,36,3,31,-21,39,-23,16,-6,47,13,17,-6,48,17,28,8,-8,23,-27,23,-127,-7,31,2,41,49,1,-25,-75,45,23,-105,28,22,-32,22,8,17,3,16,10,-25,7,4,39,-30,-30,52,4,10,8,-48,8,-23,7,-50,42,-37,-63,55,-79,13,44,28,53,28,28,42,-66,-2,-11,43,31,-25,66,-52,66,-18,-23,-17,8,-30,43,-5,25,53,-22,-5,70,59,-20,9,9,7,-39,73,22,-1,50,29,-17, /* [829][0][][] */ 55,-16,-40,-32,-12,-43,-38,-16,83,-3,127,-7,-6,-28,-58,-1,91,-63,-7,16,7,34,-5,9,-7,11,59,50,-63,44,5,15,-15,-44,-33,-1,-40,11,-52,0,-29,-1,-1,30,-17,-55,-41,27,0,-4,39,-47,-5,15,35,-30,-31,-5,-80,48,46,-39,-71,125,-13,-77,-51,5,-2,48,-57,17,-12,-15,23,-21,-40,57,19,-15,-39,-46,-22,-51,-3,7,0,-81,-121,-80,-68,11,24,8,7,-37,35,10,38,22,8,33,12,-33,-28,32,25,33,12,-18,5,-66, /* [830][0][][] */ 12,-9,-21,21,38,10,-23,15,-16,29,-21,-24,-23,76,-4,-31,-13,18,-12,-12,13,28,-43,-14,-61,-31,-9,14,-34,-31,49,-56,-25,-11,1,60,-35,21,-2,22,-42,-2,-6,32,-94,106,-11,-41,-23,19,24,-46,1,48,-127,-28,-16,42,-10,-14,-3,-28,-77,-50,26,49,-41,27,28,-37,32,37,-2,18,39,34,-32,18,-26,0,-69,-24,-30,-11,-29,4,44,-7,-58,-64,-25,-35,-45,9,-1,43,-26,-27,-47,1,-7,-45,-7,36,-48,-36,51,-4,-32,-1,9,25, /* [831][0][][] */ 19,27,-55,10,-11,19,-44,-5,95,35,-41,-110,27,-27,-54,6,40,13,-30,-10,37,15,-13,6,20,31,36,92,0,20,-48,52,15,-41,-46,34,-10,75,36,41,-8,-17,-13,-61,-71,-56,-10,-32,25,-23,17,8,-9,-10,14,11,34,-44,-28,-66,49,84,-38,31,-16,39,3,19,-19,-20,-127,49,10,-24,-30,5,13,100,-35,-53,36,49,14,9,-38,19,6,7,-39,-75,9,-48,-72,-12,1,-16,-42,8,-52,-3,73,9,11,-20,8,32,40,15,9,-50,-38,-33, /* [832][0][][] */ 0,-29,-81,5,-6,-66,20,3,82,39,-20,26,-8,39,22,-1,107,70,-24,-10,48,58,-21,8,-76,3,-1,39,23,39,-15,-27,-26,-10,-77,-27,39,-57,-36,13,-38,-8,41,67,0,-50,2,-57,4,-20,102,6,2,63,-53,-40,58,-88,-12,12,3,-21,-61,64,-15,13,-12,-23,59,38,-54,-5,-45,-37,-5,7,29,80,60,-18,-47,47,29,-25,25,26,-47,-26,-127,-2,-61,20,-49,66,-11,0,-63,39,49,6,52,13,7,49,55,26,46,-24,53,-18,-56,-51, /* [833][0][][] */ -24,30,7,21,-17,-2,-4,16,100,118,-83,15,-63,-19,59,70,35,-50,11,-31,-42,-37,37,28,25,-26,-36,23,-13,8,16,-43,-9,9,-12,12,-18,44,-20,79,0,25,-67,-75,-106,-11,100,-40,-15,-47,-16,80,34,-21,46,-71,-49,99,51,-29,-111,-39,-30,-43,-51,-117,42,16,12,60,-53,-56,-5,3,24,15,-44,-23,-71,-58,-6,-79,21,-7,-29,-9,-18,36,26,21,22,-72,9,-35,-16,9,33,20,-54,-66,23,-52,-23,-62,-125,-20,3,-40,-127,14,50,-43, /* [834][0][][] */ 31,13,-22,24,-6,-1,-72,-44,-127,-5,-15,-7,-43,-34,-64,78,13,-47,101,16,-32,-4,3,-53,-75,-86,-60,-27,-4,-35,-17,3,-55,22,0,59,-62,-5,-7,92,15,35,-52,66,-86,38,-4,-28,36,5,56,98,-25,-81,-66,-10,22,-8,-59,-38,-29,52,-19,33,1,-26,60,2,122,-34,-20,-15,-6,-4,18,50,-48,36,-68,52,7,-4,-85,20,-95,-54,-32,45,-26,62,-84,56,12,-52,-40,32,62,25,-15,-30,-3,38,49,5,-74,43,-15,8,2,19,-81,-38, /* [835][0][][] */ 41,32,-13,-26,-17,-19,-107,26,112,19,101,-64,86,11,-17,-29,30,-22,-49,-88,-26,58,30,65,-3,12,-31,127,34,56,-33,45,107,-11,-17,-7,67,4,-28,28,-12,0,87,70,-4,-49,-51,-124,83,-33,-10,19,88,-35,-4,3,-20,-67,-81,-24,23,2,-114,127,12,48,-69,-60,7,-36,-10,32,-37,48,18,-10,74,93,53,3,0,36,52,-75,-13,-6,-29,70,-88,-97,-9,29,33,17,26,-32,7,-26,50,37,74,22,35,66,59,-10,-17,-45,65,20,-15,-23, /* [836][0][][] */ 10,-49,20,17,-36,-42,-13,43,-15,-10,-51,19,-54,-19,2,80,-47,-21,-10,28,-27,-16,65,-9,41,-70,-6,96,-32,-80,10,-89,-31,79,-24,36,-68,51,22,6,-10,-59,-1,35,-71,23,29,-127,-22,0,1,18,37,-41,-43,-49,-33,0,16,67,-12,-18,-5,-21,34,2,-10,96,-68,-15,-10,56,-22,42,1,-4,4,-12,37,8,42,-16,-35,-2,45,45,52,20,-11,45,-43,6,13,-1,54,69,16,20,-87,-43,44,4,102,23,-30,53,63,-39,7,26,-5,24, /* [837][0][][] */ 69,21,-65,4,-18,-7,92,8,-26,-64,-12,-10,22,-45,24,-35,-1,-6,65,16,-16,3,-66,-15,-48,-61,32,34,25,6,25,8,-26,12,21,105,-22,54,44,-10,-34,26,-123,55,-127,16,37,23,-50,-54,93,61,-28,39,20,-37,-58,-77,-41,-42,35,-13,65,6,-43,12,1,-8,-8,10,46,-96,-57,18,-10,33,2,54,-98,-93,46,16,-65,44,-35,6,45,73,108,-36,10,-59,41,-33,69,-81,24,-84,22,-43,-33,-10,-63,10,22,-32,100,-15,-17,74,45,1, /* [838][0][][] */ 9,-2,-45,35,46,-9,37,-24,17,36,40,0,58,-8,-32,81,121,12,-25,31,61,41,-16,62,-41,-21,-6,15,8,-2,2,56,-36,10,-60,-35,46,17,-30,42,-48,-24,49,66,16,5,-37,-33,-11,-11,62,-12,101,12,21,-42,3,20,-42,80,-8,-19,0,-22,-35,-20,-79,4,61,-54,-92,12,-31,-9,0,16,-10,52,-25,10,44,-32,15,14,12,24,-35,-40,-56,-39,-127,-2,-14,26,-17,-28,37,12,-30,-85,-27,30,-13,-17,-32,23,28,37,15,-33,-6,-60, /* [839][0][][] */ -37,21,-96,31,-5,-23,63,-105,6,17,60,16,3,-47,-65,-5,36,-22,82,79,16,60,-83,46,7,24,52,-15,18,79,9,8,19,15,22,3,74,-75,-34,119,-36,-64,-10,44,3,46,8,-66,43,9,45,-66,-47,-16,61,-25,-52,-52,-62,-29,63,19,-24,-8,-120,24,-7,-31,74,-43,33,-56,21,-10,59,24,52,-40,11,11,127,-77,-7,-36,-90,-21,-25,32,-30,-52,-51,-50,-39,-20,85,-47,6,10,-17,61,42,-56,-27,23,36,85,-23,51,36,-33,-56,-20, /* [840][0][][] */ 46,5,-1,6,-127,14,-46,41,45,-57,-34,25,-58,15,-23,7,58,-68,70,-67,-88,-46,9,-28,-39,125,-87,-17,6,48,69,-21,-21,-30,52,-1,-7,-1,-24,-84,31,5,-96,-46,-96,12,63,-40,34,-8,-42,-30,-50,-48,-92,-29,19,49,44,-51,-26,48,114,-83,28,-125,-43,82,73,43,-39,-56,32,52,80,74,23,-47,-91,-59,-23,21,6,34,6,-25,-5,-81,-33,36,-108,35,33,-78,40,-11,24,-34,-71,4,-28,-23,7,36,-77,17,-4,51,-11,93,12,62, /* [841][0][][] */ 18,-23,13,6,-14,-49,67,-33,-45,44,19,33,-8,38,-2,-42,56,6,46,6,19,-40,41,0,24,-42,34,3,17,1,92,-51,-127,-10,4,5,-28,2,28,-69,-47,23,-42,19,14,76,-46,-75,-29,74,-24,8,-57,-80,-64,-49,-5,-33,41,-63,-46,35,49,-39,-41,-15,-65,72,-41,-57,-9,-10,-7,17,94,78,41,-2,-9,-70,58,65,22,-18,-64,-59,-13,42,61,-32,46,67,-10,-12,83,105,-122,-59,-16,63,46,-2,96,68,-54,16,24,-41,-75,-4,-23,-6, /* [842][0][][] */ 15,52,-64,8,21,-55,57,-31,48,-56,-43,106,-25,4,-27,-17,-51,-43,31,-37,-18,-78,86,-26,-4,-36,-80,13,-21,-39,-42,-74,28,-87,-75,-47,-11,33,17,32,35,4,-3,2,-86,-11,3,-42,4,3,16,47,-45,25,33,-49,-65,16,-35,-56,-18,-21,-62,13,5,-87,27,-45,-21,-21,37,-17,-35,-4,56,-11,-44,26,-10,-20,46,-39,17,-9,12,12,4,-8,-21,18,-1,-27,65,-28,31,-57,-16,14,-25,-78,93,36,-7,10,-35,-127,52,-31,-8,36,24,-81, /* [843][0][][] */ 33,12,-2,-59,8,-35,-36,-57,-29,-55,-5,-17,-29,40,-6,-6,10,8,3,-32,-67,6,-35,-51,-24,-62,-4,49,7,16,-46,0,79,-98,9,1,-90,39,-64,19,-48,24,-41,29,-76,25,-21,41,43,-68,-19,49,-47,47,-49,-25,-53,-11,-50,17,69,-63,-59,-29,57,-50,-26,43,-21,-111,-27,45,-127,-11,103,49,-41,10,35,-64,-88,-78,10,29,-3,-20,32,23,-67,8,3,-17,-4,40,39,60,-56,-95,20,-32,62,5,-20,68,-88,30,50,-115,-35,10,9,-45, /* [844][0][][] */ -56,-7,-11,78,-19,86,9,-119,-16,-33,37,7,2,118,59,-13,127,-96,25,34,-13,49,21,39,47,57,30,-26,55,79,28,-67,-88,29,12,-46,37,32,75,2,6,12,42,30,-8,20,-4,-86,19,32,56,-29,-1,1,12,8,20,-22,40,36,-7,-9,-13,-14,-27,92,27,-11,43,9,-42,25,-21,2,117,32,23,35,81,-104,-33,-24,8,-105,-96,-5,22,28,-30,-98,3,7,-2,52,-123,93,9,-41,30,16,92,-7,44,9,0,48,-23,3,2,-14,75,16, /* [845][0][][] */ 40,20,78,44,19,-31,-20,-16,45,29,-29,84,-57,-23,-32,35,21,-106,9,42,36,-31,54,38,61,-2,-35,49,-72,-53,32,75,-122,36,-8,42,-60,6,-60,38,2,61,-112,118,-44,116,42,-29,-110,-12,-4,68,-29,-62,12,18,-19,-82,47,-10,2,47,-65,12,-17,6,-66,65,-12,-2,38,105,40,57,119,30,10,6,-28,-16,-11,-3,-2,32,-47,-41,-31,72,46,73,55,-4,-10,-84,40,7,16,97,-22,-13,55,-86,35,-35,-69,-6,78,-41,-47,28,127,-10, /* [846][0][][] */ -27,-11,-13,5,-11,11,-80,41,-14,-6,39,6,-47,52,10,-4,29,0,29,-27,-27,21,-12,6,16,45,-8,46,61,65,21,-40,31,24,-26,7,40,47,-43,-33,-36,-6,-8,-58,61,12,9,46,16,27,-51,4,-42,-89,9,-8,43,-13,-34,-81,36,-6,0,-28,-22,-44,27,112,49,-17,48,20,28,102,60,-37,-52,4,-17,10,127,-36,-107,8,-45,-5,-27,-23,-13,-19,0,-44,32,-25,-112,14,-21,33,-109,3,-21,-8,40,25,-51,-52,6,-42,-13,-7,-51,14, /* [847][0][][] */ 107,-53,-59,64,20,-2,-5,-35,21,-37,46,22,63,39,-63,34,14,-2,-49,-27,42,20,30,81,-15,26,-45,12,-46,-45,-37,49,33,36,-33,37,34,-34,-8,-47,60,6,-18,54,-11,-72,12,14,36,16,-17,-26,10,14,49,32,19,-9,-58,-6,-9,71,-41,-28,-81,-39,-45,49,-43,-12,32,-26,-26,75,67,74,127,25,62,29,17,-54,17,-12,-26,34,-6,-61,-11,17,-13,-12,20,-13,-8,55,-10,-11,12,-4,25,-34,31,-5,-24,-2,-2,44,49,-41,-3,25, /* [848][0][][] */ 32,26,-50,-10,39,23,30,-14,25,-46,11,-58,77,-35,22,-17,1,-29,49,-41,0,35,-9,45,50,-18,-25,44,34,98,25,50,-8,106,-33,54,53,5,-37,-17,47,-19,33,32,9,12,40,-115,74,-61,73,-80,-18,14,51,37,61,-75,-50,7,80,-31,-21,17,-38,-103,-8,21,-13,43,-45,12,16,-7,43,-4,-26,59,29,14,-32,-17,43,-2,-57,45,48,98,30,-127,-49,48,-28,97,7,44,14,26,-16,64,-9,38,-14,9,79,58,26,91,17,41,13,9, /* [849][0][][] */ -42,-87,-90,91,-18,61,-40,-103,86,-1,32,-10,-5,39,-14,45,103,-34,10,11,54,76,64,31,28,50,18,34,10,98,-10,-89,-55,-32,-53,-59,78,30,-59,61,-17,23,62,-36,-16,-13,21,-103,43,-15,17,-11,86,51,-25,-22,-4,-29,-104,-22,7,-23,31,66,-23,84,2,-65,29,5,31,59,-92,12,30,-67,34,-5,19,-10,80,37,-6,-51,-9,2,18,79,-88,28,-20,-74,39,12,-5,-11,-19,-21,-127,-62,-52,20,-124,-19,41,46,-22,29,42,33,-25,-38, /* [850][0][][] */ -48,41,-66,83,-59,-49,-38,-12,-12,68,-58,-17,0,38,14,42,24,20,46,63,-16,33,3,-61,-48,-30,51,34,47,-37,82,-115,-30,-13,-14,11,10,92,-77,72,20,76,-92,-2,17,-34,56,-27,-13,0,32,16,51,-38,-90,-3,-16,19,27,37,-2,-1,39,84,-36,6,-1,32,-83,-64,52,-18,9,10,-53,48,0,-51,-14,-127,36,49,-37,16,-33,9,-1,28,17,49,48,-46,85,-85,-50,48,-99,36,-110,50,31,-64,23,-14,9,-15,20,-99,-1,67,-6,-21, /* [851][0][][] */ 25,21,-8,-51,1,14,-72,32,-55,-15,-29,-17,4,16,26,-73,-69,12,34,-11,44,-127,-23,-46,-6,32,26,44,-45,-36,30,54,25,88,55,27,-3,-55,-25,58,-74,7,71,-60,22,46,-24,-52,-9,-96,102,-6,0,-10,-94,11,-30,-18,5,-65,-30,-7,-56,-8,28,13,-103,0,81,-42,48,-19,-5,28,12,33,-43,28,-48,-1,25,29,0,70,15,-45,-75,-36,38,5,-42,14,0,-3,19,-76,17,4,-48,42,30,-65,-15,-31,-30,43,74,-67,-11,54,-20,-52, /* [852][0][][] */ -35,-42,22,53,9,16,-54,34,-44,59,-58,31,-4,67,15,76,15,71,19,-2,-52,-34,64,42,90,42,-84,127,28,-37,4,-49,-10,41,0,-21,-42,59,-42,29,33,29,-38,-50,-17,-29,93,-24,-16,-41,32,46,14,-41,-30,-63,-87,74,-4,-92,35,-12,-26,48,30,44,-70,55,24,-28,29,69,-26,17,62,10,-70,-34,-41,-18,-50,-36,-13,-81,-3,-42,-102,-4,23,10,-32,-54,88,-68,-10,-39,32,91,-90,-11,50,11,57,24,-31,6,69,-65,11,54,17,34, /* [853][0][][] */ -88,54,26,-19,15,-64,3,-48,95,36,27,12,8,-45,-39,1,-4,-11,-13,-91,-10,-103,-25,-109,68,8,31,-29,54,77,-19,-82,70,34,-18,32,-27,45,16,-9,-113,-50,-83,-8,-6,21,66,-41,-20,45,16,-9,35,-21,43,-57,48,-72,11,-78,-63,-50,-75,15,-62,-22,-2,-11,-38,-17,18,35,-21,67,4,74,-4,-33,-55,-18,85,68,-3,67,-18,-15,55,-54,-12,-11,0,-127,-24,-22,-11,60,-83,-32,-117,-48,-17,37,14,-9,-26,34,-7,-37,0,23,6,19, /* [854][0][][] */ -45,19,41,114,16,55,-71,32,-85,-54,11,4,-35,42,-54,-54,-23,4,6,-97,-91,-83,49,-31,-33,-85,127,55,62,63,-48,-5,32,13,56,46,-41,-24,-66,-24,-82,1,7,68,57,95,-24,-46,52,-16,46,-16,37,40,32,-92,1,-9,-47,-18,-16,66,-14,-61,-106,-5,14,32,-27,52,-32,-45,3,55,3,48,-50,20,-84,-53,-5,36,-18,-23,-55,19,80,-34,27,-36,11,82,-10,90,-56,80,-50,-2,-88,11,21,-98,36,-2,-13,-2,-24,-11,-80,40,101,11, /* [855][0][][] */ -52,-2,-22,-38,-44,-85,-4,58,35,-40,-48,-14,10,70,-29,5,-25,-69,5,7,44,59,-41,42,65,56,-19,46,32,-30,18,6,26,4,39,-21,-25,-22,54,10,-9,-14,35,-71,20,0,20,-28,14,-23,22,55,-38,-33,2,-12,-7,-28,-46,90,8,6,-22,-5,-47,19,0,18,-20,15,-25,-13,34,-38,-27,-63,8,69,46,-77,-15,49,7,-19,-24,84,-127,-10,-56,-29,52,-7,4,46,18,41,-44,77,9,42,89,79,31,12,19,32,-6,-44,66,-27,64,-37, /* [856][0][][] */ 111,36,-9,87,-2,-44,18,1,25,-60,24,57,4,-40,-81,24,-35,-36,67,-14,-12,-12,64,3,32,5,69,64,-17,-81,-9,0,81,65,-29,5,1,-86,-38,-6,33,-2,-61,56,9,82,71,-36,-13,-77,-65,91,81,22,42,-25,-72,-21,-16,-4,-73,29,-58,-107,18,-28,-21,32,-84,-2,86,-26,42,75,92,26,60,7,35,-25,-18,-6,-7,127,0,35,51,-59,106,-9,-11,15,31,3,-14,17,8,9,-121,-65,-25,-63,73,-20,-56,-31,101,52,-33,7,77,-71, /* [857][0][][] */ -40,-23,-11,-53,12,-7,-21,31,-11,17,-30,23,9,-5,-56,59,17,21,51,-95,-54,-4,-14,77,3,-22,-9,56,21,27,95,-100,46,-59,-9,38,-99,10,-31,-42,-116,40,-11,81,11,-14,127,-27,18,-25,37,24,-21,11,-47,-34,19,62,-36,-11,28,-3,-10,-5,-14,-45,-7,5,-22,-69,50,-7,7,26,-15,25,18,-13,27,-83,-35,-10,-22,-20,-13,18,-24,-8,39,39,35,4,57,53,-32,-15,35,53,-54,-31,53,0,45,30,-22,-43,-18,0,52,97,28,-10, /* [858][0][][] */ -42,29,25,-47,-32,-1,26,50,-13,-68,17,25,-32,-21,47,-17,28,-72,13,-96,-28,-27,-13,-51,18,7,74,54,57,17,30,-19,-20,26,66,127,-38,53,32,19,-55,70,-21,-31,-41,-52,-13,-10,39,8,-20,75,94,33,-63,-71,2,4,-4,-80,4,68,12,33,-82,-32,2,77,-14,-9,55,-59,49,24,-4,69,-30,32,-3,7,88,45,61,-30,21,-15,47,-25,-48,-19,-46,34,111,-91,0,-8,-65,-89,10,-12,-4,-81,-40,26,-19,12,19,0,-9,13,-27,8, /* [859][0][][] */ 15,-35,-48,19,10,-3,22,50,-11,-16,-67,15,8,4,-22,8,7,17,1,-6,5,40,32,-1,84,-1,-1,12,2,-54,-24,-41,-43,59,3,29,39,9,-6,0,41,54,-93,29,-7,-5,12,-25,9,36,-13,16,10,-32,-9,31,-61,38,58,-19,1,-40,-15,-34,2,-61,13,18,-58,19,34,23,2,127,58,20,-59,34,28,-10,36,17,3,-9,19,65,2,43,41,69,-19,5,12,25,26,15,-39,-38,-67,10,-35,36,12,55,-70,63,51,-33,-23,13,-16,48, /* [860][0][][] */ 58,10,-102,58,8,-57,58,111,-81,69,28,98,-56,9,46,-32,7,72,36,-4,-41,-48,78,61,52,56,-31,30,-13,-73,-3,8,-67,67,-6,27,-35,64,-54,-9,-16,53,-45,86,24,-9,-20,15,-21,50,39,24,-84,-79,68,22,-45,-45,41,-89,-21,-26,-57,26,-5,-3,-118,41,-6,-64,22,46,-80,37,39,41,47,87,37,-71,-11,55,-94,8,39,3,34,39,15,-10,30,-42,-28,-67,101,26,-43,-52,-7,24,-31,-34,26,85,10,78,127,-82,74,28,72,21, /* [861][0][][] */ -14,-4,53,20,-15,-37,-17,25,-86,8,22,-6,-4,72,-127,-6,-111,11,102,-24,17,22,-30,-2,-25,-40,-20,37,45,81,-21,-43,-18,21,-26,41,1,-43,-12,-105,-17,-15,-49,33,-27,33,53,-14,27,-12,-30,45,7,18,-42,-10,57,16,-9,-21,-83,-44,-62,-43,-13,-44,-6,19,37,-66,15,25,-13,66,25,21,29,49,-51,9,48,-18,-44,56,-58,36,27,-2,-32,-38,-17,-41,42,15,68,66,27,27,-3,20,0,-19,-11,-20,-32,-60,40,-17,71,13,16,63, /* [862][0][][] */ -29,-23,-3,50,46,28,18,-92,13,-71,-49,-48,71,94,-51,10,78,55,-5,11,122,-11,-22,-3,4,24,32,18,-23,-42,-35,-31,-12,-25,95,-23,100,74,14,26,-127,17,-50,-53,19,-18,-78,-48,38,61,62,-13,27,-19,18,32,-9,-36,-19,81,26,12,-35,19,-43,7,-20,-33,-62,15,-94,102,-28,44,10,31,-2,18,25,-83,78,11,70,-16,-57,-4,-46,9,-53,61,-44,-70,11,-20,-43,51,13,-56,5,91,49,-9,103,-33,-70,36,-20,5,37,-33,-14,22, /* [863][0][][] */ -7,3,-44,-17,-63,-11,9,11,-48,53,-63,-12,-58,56,-17,-51,-67,57,9,-11,-127,18,37,29,60,23,69,79,-2,6,-83,-43,20,-37,48,47,-32,-1,-72,18,-14,45,-37,-51,-45,12,-13,19,70,-60,31,28,-15,8,-20,-91,-72,50,3,-51,37,-14,21,36,-56,50,-68,-4,30,-18,46,24,19,71,60,50,-14,24,4,-61,24,-3,-58,25,-25,-46,-22,-3,-10,-58,30,3,-19,-52,-12,-118,52,-19,-72,8,82,-10,54,-53,64,76,3,-95,16,-21,-12,-38, /* [864][0][][] */ -10,-37,-28,-12,-34,-27,-68,58,93,18,-39,95,-36,97,-34,-41,-68,-17,-41,-127,53,3,-1,-38,49,-12,27,32,61,-34,56,28,17,18,-16,-31,34,86,-7,-5,88,61,-20,-23,-85,-18,95,-57,-15,29,-23,1,-22,-3,6,-27,-13,-22,19,-122,-52,19,3,-21,-13,-16,-54,-54,14,-47,-56,2,-37,21,85,60,-69,-26,7,17,1,-16,31,-3,-46,-88,-73,-20,45,100,-27,-44,16,-14,17,-33,-17,20,-67,-56,52,39,-34,85,-100,68,25,-58,-16,41,-20,5, /* [865][0][][] */ -16,-91,-44,-10,33,-28,24,-88,38,-29,-36,-14,21,-22,99,-10,86,30,28,0,127,23,-41,-1,63,83,-79,35,71,88,-11,-29,-8,62,-37,-61,-61,-37,-53,-20,32,-50,3,33,19,-1,-81,-7,106,-9,-67,-19,-8,14,7,6,11,46,-46,-8,92,22,91,-50,36,-41,-14,-4,2,16,65,-69,4,-33,105,1,47,58,13,17,-21,-12,-41,-29,-31,90,-52,19,-35,-21,-40,24,-63,66,-41,91,20,-15,-32,-34,-32,33,-41,77,2,-22,26,-32,26,-12,29,2, /* [866][0][][] */ 80,-18,-36,-68,-20,6,-84,-11,17,-56,81,-29,112,11,-15,18,48,-14,-63,-12,30,25,-14,71,75,-3,32,-4,-1,38,19,16,-75,52,-24,33,55,-3,29,32,13,-56,39,-20,-18,-20,15,29,56,-8,-4,-95,55,-100,69,-15,-65,49,-51,20,50,108,-115,-8,25,19,6,-12,50,42,-84,-5,-73,-56,3,-54,24,66,-7,16,-56,58,-51,45,-48,-11,-8,-21,-24,-29,-20,2,18,60,-15,-10,-41,-47,127,53,5,86,-7,-34,-54,-34,74,11,49,-10,22,-39, /* [867][0][][] */ -45,-97,-67,-5,0,12,-101,-11,-65,-34,77,43,39,-1,-14,46,127,26,84,-13,11,-31,-70,124,36,62,35,1,96,41,6,38,-42,-66,9,15,47,-88,-36,22,-22,11,-53,3,17,-20,-46,1,52,-13,82,8,27,-16,50,15,60,-89,-47,-57,80,25,-71,38,-109,-12,-39,-100,-80,15,-52,-26,22,-9,-4,31,-34,-2,73,16,21,37,-9,-36,-74,-9,-76,14,-4,41,-1,41,-23,31,22,87,34,16,-127,5,8,-30,81,67,60,40,36,57,40,-40,-57,-26, /* [868][0][][] */ 13,-27,32,60,-68,-37,-15,-7,51,-84,-59,10,-53,22,72,32,57,-18,15,33,9,50,-45,25,0,127,-57,-69,29,-17,-21,-12,-32,20,-50,-25,-31,57,14,45,-32,28,13,-22,-16,8,10,-41,17,-35,11,35,-21,-17,3,-6,26,-43,-53,49,32,25,37,-18,-49,3,89,3,-3,124,-9,-23,-5,-48,40,-44,-54,34,-13,11,-35,27,-18,-94,-18,16,-40,27,-62,-59,50,-34,47,76,-6,55,-35,52,-8,3,-27,-29,76,-17,24,74,38,-40,10,31,-36,-19, /* [869][0][][] */ -48,-44,-47,55,-39,-77,70,-21,31,-55,55,-4,6,-11,-5,-62,20,-50,-12,29,-27,-21,-43,-51,60,91,-32,-4,85,27,38,16,-16,-90,-22,-9,43,-22,11,-35,-2,36,13,24,-2,-29,-23,-21,25,-21,-11,85,41,4,67,-72,-22,-103,-74,41,-29,10,63,5,-76,-54,35,-31,41,-16,-43,-49,29,19,-12,13,44,47,62,-4,59,-44,-38,-47,9,7,-61,-56,-8,11,-25,-35,10,-57,12,-38,-44,-38,25,23,83,-13,16,44,-19,17,64,5,127,-28,11,-69, /* [870][0][][] */ -55,-68,-17,-27,-34,-44,-90,-20,95,-32,32,-47,11,38,55,52,-84,-44,2,-70,19,42,-46,119,12,3,-127,3,6,-51,-49,-6,-37,54,9,42,-14,-97,-27,61,-46,-90,-11,-82,-41,-27,-57,-3,87,95,-37,-19,64,-10,-26,33,30,1,7,31,51,-24,-45,62,31,0,-13,-41,-32,-24,22,47,-32,86,15,21,29,23,-43,-122,52,21,24,-9,-27,53,-10,-1,-12,-95,16,-9,-83,18,-7,-34,-59,-36,-40,-22,-1,-11,73,22,94,84,12,5,74,-33,-42,93, /* [871][0][][] */ -44,-24,-17,-57,-35,23,61,40,127,-98,36,55,70,15,35,-71,6,-7,-20,-15,39,19,-46,-1,8,8,-34,72,-81,94,-30,6,-24,29,22,64,50,-30,-17,-59,-66,-31,59,27,-67,19,-77,-60,122,10,94,-66,40,36,-79,82,-18,-104,26,33,14,86,-3,12,-18,-53,-24,-65,-78,59,-35,11,13,8,93,75,111,21,119,2,80,3,9,43,-51,4,-30,-62,-35,3,-82,16,-2,64,4,11,34,-34,-17,50,-28,-74,-26,-82,-24,91,39,35,22,-63,59,67, /* [872][0][][] */ -51,-31,8,18,-51,-41,-10,33,-56,-22,61,89,-54,99,20,57,-49,-20,44,38,-30,8,23,6,79,-51,-47,49,7,-25,67,-127,-105,-34,59,-80,-56,75,10,-17,-15,24,13,-29,-11,18,0,-95,28,43,-9,-54,14,19,-21,-27,-42,-8,55,30,-79,54,30,-56,112,-25,2,116,-36,14,22,37,-51,-7,-6,108,34,50,37,22,35,70,-73,50,14,51,28,5,-48,11,1,-70,91,-48,21,38,-57,15,-40,-36,29,19,3,-35,-21,57,7,-85,39,12,42,22, /* [873][0][][] */ 28,-23,-15,29,-52,-23,-1,-68,2,38,-47,36,19,9,23,-55,48,45,50,-25,8,-8,-23,-14,-43,-64,73,4,13,7,-11,-9,14,-30,103,16,-36,22,-43,17,-74,-25,-40,44,-2,43,-22,-8,-34,-50,71,29,-12,-12,8,-64,7,39,-1,-9,23,31,27,22,34,-24,-64,26,-11,12,70,-22,-127,22,-44,31,-21,-23,-12,-38,38,33,-18,18,-40,-54,12,31,-1,28,-43,-63,-23,30,-19,-58,25,-111,-9,-19,-22,-25,10,60,-48,59,58,-13,-84,-40,-20,-11, /* [874][0][][] */ -20,79,-35,20,20,46,-48,-94,-42,-108,-73,59,28,22,-46,12,-127,48,64,-53,7,-82,89,38,75,-54,-57,-17,23,46,1,-51,8,-100,36,49,21,-49,-42,29,-1,52,43,-55,-19,-25,-19,-26,-33,-78,53,-25,67,-57,21,-16,-3,-36,-45,8,3,-64,-39,-34,16,-24,-44,-30,41,12,67,39,-77,49,-35,63,-115,-64,-89,-17,2,-34,-29,-47,4,15,-2,4,15,4,7,39,-46,11,13,24,-24,2,-23,-76,15,-111,-37,20,-60,-52,102,-13,-52,5,-55,-25, /* [875][0][][] */ 7,-68,-47,83,-52,-45,10,-3,7,17,-35,-4,-36,39,-16,68,-19,-60,11,27,-75,-36,-41,24,9,-17,-127,14,-20,58,25,-34,-30,-31,-59,16,-9,-23,20,-15,19,-26,-1,1,-97,-8,-9,-15,10,-33,12,-48,62,8,31,13,7,-113,-37,-6,-59,1,29,62,-2,-13,31,12,-33,-9,-52,-24,10,-26,-12,-1,23,30,34,-74,-34,-73,58,-54,-39,60,-65,-22,-42,16,-46,-3,4,-14,37,33,-22,-29,4,18,64,-26,15,7,1,40,35,30,75,-26,7,48, /* [876][0][][] */ -48,-2,72,-32,-127,-45,2,-12,76,-77,53,66,-72,39,25,-21,71,-38,-9,-57,-27,-64,9,-73,-35,-75,-9,-13,5,14,-8,22,-40,-32,-5,-34,-108,-9,5,71,-30,59,8,46,-17,3,75,50,14,34,-7,-14,73,32,-13,-90,-34,-17,7,-91,-87,-14,-26,-42,23,-5,-18,-1,23,21,-11,39,-70,-7,16,12,-27,56,-14,28,0,17,-12,-43,29,1,35,-83,-29,-1,-7,-19,-4,38,-39,32,-69,8,-34,-20,66,-28,107,33,12,41,-37,-24,-71,41,56,-74, /* [877][0][][] */ -19,6,-34,40,-39,-66,21,51,42,80,52,64,-70,-52,123,78,-86,19,-32,64,30,-42,48,59,84,-50,-54,95,72,-84,3,-34,-53,-15,27,42,40,36,-44,-29,-22,10,-36,68,-14,-46,62,-22,-34,9,54,76,-62,-52,15,-127,-33,-44,75,-73,-78,-21,-41,17,-15,25,-116,74,70,-99,-45,-10,-121,-63,-21,123,122,-2,-31,-36,-28,28,-78,-3,34,-67,8,81,-66,12,-21,21,10,-101,98,42,-93,1,-33,-125,-80,-65,81,53,-32,-10,-17,-27,-43,49,6,28, /* [878][0][][] */ 30,-20,-8,18,-33,-18,-51,-24,-8,1,6,-16,15,-51,70,52,14,-20,37,42,-18,-26,-61,32,4,127,-34,39,22,-20,8,-54,-35,-30,-2,42,38,-13,12,6,57,63,-24,32,-25,-45,81,11,-4,-47,-27,-3,10,-29,9,48,-20,-48,-62,50,-26,33,25,9,3,-7,22,30,36,35,-7,-57,-3,13,-11,-33,10,15,-25,5,2,5,-1,-16,-83,8,-53,18,-3,42,18,16,-32,11,-3,19,8,51,58,49,23,-19,13,-6,9,25,33,6,88,25,1,-3, /* [879][0][][] */ -38,71,45,-9,-85,-17,5,-1,-62,-26,2,29,-122,61,28,57,-13,-9,-69,-51,-60,-50,-71,52,-41,-42,-26,29,-8,-8,63,-62,-50,77,127,-16,-31,64,24,68,-44,13,29,4,-97,-44,50,-43,28,35,70,25,10,-28,-21,-34,-48,50,17,16,-41,-20,15,-56,-3,-2,-24,13,87,-38,61,27,37,24,0,34,-79,59,-43,-30,42,-6,29,-39,9,-38,-14,-53,31,-29,-104,-26,0,-84,-70,27,-34,-55,-61,38,61,5,-50,-16,7,54,58,5,21,71,73,77, /* [880][0][][] */ -73,-7,-50,33,-29,-53,-35,24,114,-44,-43,-113,21,-36,-15,73,2,-94,-49,6,-15,-35,-73,-8,24,10,17,-16,-46,86,-16,13,-31,34,-85,-24,-33,-16,-30,15,-5,28,-74,69,42,-49,59,20,-31,80,7,-73,30,-67,39,62,106,-77,-127,-5,41,32,-2,18,12,-43,-14,-35,6,-12,-14,-61,-105,-34,-11,-20,25,25,21,13,-21,-29,-57,31,-32,68,-24,23,-14,-87,-61,51,-66,27,-81,0,-40,-69,72,22,26,20,-2,52,58,-4,28,64,111,42,33,-33, /* [881][0][][] */ -9,35,27,-72,-14,-46,-31,-79,-46,-65,25,-3,39,-38,-32,-17,-84,5,28,-8,19,-76,-26,-69,-8,-56,-9,16,39,-16,5,4,-4,-24,-53,-73,-7,4,-11,34,-67,46,31,2,27,-5,-25,14,11,45,72,5,21,62,-1,33,15,-14,-57,-5,-63,-62,-22,-10,29,-125,-96,37,12,3,38,-13,-59,9,24,24,-54,41,-21,33,10,-14,-98,10,24,-22,94,-16,-6,-63,-68,21,2,-23,14,-22,-36,-1,-33,-2,11,35,3,26,-127,3,76,-59,32,-13,2,-29, /* [882][0][][] */ -31,10,47,117,-77,43,14,-54,106,18,10,-55,-64,-29,6,75,-10,58,24,-55,-85,-39,-49,26,-1,48,38,-28,49,-10,42,-119,-10,11,2,-44,14,8,-15,-1,-33,94,-40,-27,-6,20,74,-46,30,9,9,42,-62,-40,34,-8,-119,61,-32,-71,-41,-30,39,-1,-14,-127,8,111,-25,-25,-15,-9,-95,-17,60,33,24,85,-48,30,35,-9,-48,-12,-31,-70,21,25,-71,51,37,-111,56,-43,59,50,-76,-4,-14,4,59,-19,-22,19,-10,-19,48,0,-62,-23,-1,6, /* [883][0][][] */ -65,-97,-109,-48,-83,-1,-68,72,5,-56,-29,73,13,81,-38,-14,-58,16,60,-98,4,-5,72,61,80,23,34,122,76,-34,23,-32,-75,-54,88,-29,-90,28,-35,-30,-94,30,34,49,-50,-49,7,-39,-28,-41,-60,0,91,17,3,-96,5,22,47,-82,22,102,-51,20,-113,-9,-19,-15,-34,-61,-64,77,36,78,-6,29,-50,42,-80,35,7,1,-14,-31,-22,42,-9,72,-25,-17,-31,60,15,13,27,34,-60,-6,-82,22,61,-79,26,85,-1,-46,62,-51,-127,-31,-10,-22, /* [884][0][][] */ 34,28,-67,41,-66,27,74,-30,8,-15,-20,-24,20,-14,-59,-77,22,-30,80,-15,16,-16,-57,28,-14,-14,31,38,59,-66,26,27,-23,-35,-58,11,32,41,-50,78,-50,74,-3,33,23,59,91,24,116,0,42,-26,-77,-61,14,-28,-64,17,86,-25,36,-9,6,38,59,-51,3,-37,127,-19,-22,8,-13,-21,-7,32,-38,47,26,-59,-28,-20,-112,92,37,-45,121,39,49,-39,-36,-48,64,45,3,-15,-43,38,-9,3,14,19,50,-5,-15,-34,14,9,-42,115,72,-110, /* [885][0][][] */ -33,-14,-19,-119,-38,-97,-43,33,-26,46,-30,31,12,29,-21,-11,-29,-89,-39,-16,-74,39,5,-54,-3,-60,121,125,51,-50,0,-16,12,-85,-2,77,39,9,-18,-30,-41,55,-22,-2,-45,-9,8,22,-39,-29,-16,5,3,-4,-2,-56,-50,55,-8,37,-40,-39,-70,50,-45,12,43,93,-4,-64,59,14,23,-9,56,43,-6,29,-39,-121,61,-52,-53,-8,-45,90,45,-92,-73,-112,-33,56,12,-21,-11,-25,33,-118,-83,-32,-1,2,-49,27,-125,-64,127,-65,-27,4,-68,-70, /* [886][0][][] */ -45,53,-21,-69,-63,15,-26,5,56,-80,-73,-47,-86,84,-20,60,-78,-13,-38,-97,-40,-23,-14,27,12,-9,13,10,-2,45,12,25,23,110,-42,48,-102,68,-32,78,-55,-4,30,6,38,-20,8,-110,75,-15,-16,63,39,-65,-127,-29,2,79,13,-50,-18,5,-4,18,43,-16,-54,0,7,-93,79,11,18,-1,-88,20,-39,-34,-31,98,52,-21,28,10,34,83,-55,15,57,48,-55,11,45,73,9,3,-49,-16,-30,52,23,-67,2,-30,50,88,55,-32,14,60,1,3, /* [887][0][][] */ -7,-102,-28,-18,-46,25,-18,-46,32,9,72,-21,46,51,19,55,-17,28,20,37,39,31,33,86,5,2,29,-28,-34,28,82,-35,-9,-58,-95,25,0,-76,-78,-55,4,4,-105,-127,22,26,23,-61,64,-6,51,-38,-25,-23,65,22,-21,-73,15,-7,20,-64,-13,41,13,38,-27,41,-48,-27,24,25,-105,65,63,40,42,49,-43,-104,1,-71,26,-20,-74,1,-51,41,-51,-90,12,-40,-58,-10,-21,38,21,-79,73,-12,96,26,62,-48,-34,15,18,-15,66,-27,-7,35, /* [888][0][][] */ -38,-54,-32,92,-1,38,-74,28,72,-27,45,-49,2,29,16,55,28,-83,76,71,2,-32,35,-40,-31,67,2,1,32,21,-57,-18,-31,53,-10,21,-54,49,-33,-21,-13,-34,5,-28,-51,-18,33,-37,23,-42,127,-15,47,42,41,21,9,-76,23,-13,29,-25,3,-3,34,-71,17,13,10,117,-60,-11,-25,-32,7,-5,24,13,-13,-20,-52,17,46,-80,-15,4,-60,17,6,-102,-123,-32,-29,18,-40,-57,37,24,16,62,-48,-31,18,47,-56,30,-39,83,95,31,49,2, /* [889][0][][] */ 37,-23,24,-6,-83,-4,54,-28,93,1,50,59,-28,-2,123,37,19,-19,37,-5,8,-13,65,1,-18,-115,-19,-25,10,-11,-13,-12,-51,74,-71,28,-55,60,-93,-7,-45,127,8,66,-18,1,107,-8,4,-18,1,5,87,-3,-36,-76,34,-7,47,-99,-18,-60,4,-43,-3,-15,-29,57,-12,0,-11,6,-28,-29,-42,-11,-26,48,-21,0,-23,47,-38,46,-10,-27,52,27,0,24,38,-19,27,44,21,50,-74,-10,-10,-49,13,30,68,32,-11,-8,-40,-32,-106,32,26,-12, /* [890][0][][] */ 31,-67,-111,89,-31,-72,-52,89,17,32,-59,89,-17,-20,29,-39,19,3,-46,-110,-41,37,33,58,92,96,63,59,50,-53,25,-58,14,107,-16,-13,-24,4,-54,41,33,109,-8,-56,30,29,58,-50,-42,5,43,41,97,-5,3,-15,-40,42,82,70,-95,-2,-42,-57,-27,8,-58,55,-68,-50,-75,-37,-53,-30,-11,-9,0,54,-49,47,61,70,-82,28,-57,52,-123,-73,127,11,-58,15,11,-6,-80,5,16,38,-72,-66,-15,-2,102,-46,-38,-25,-37,-47,-22,74,61,-64, /* [891][0][][] */ -19,87,-16,-98,-65,-2,-2,42,-17,-61,14,14,-50,3,-58,59,-2,15,-77,-58,-16,14,18,-58,71,-20,36,9,28,-22,75,-41,-9,20,-57,17,66,-9,65,13,-19,19,-4,8,-74,-35,-3,-17,7,-71,-13,39,-5,-63,6,-21,-53,10,-93,-17,-25,6,-39,21,-46,-10,11,7,20,-127,8,12,-39,-5,-20,54,0,-9,-3,32,48,-13,-21,31,2,-20,19,-106,-31,-26,-31,-34,50,35,-26,-4,-21,-42,6,-8,-33,-16,-45,32,45,-34,42,-18,5,20,-30,5, /* [892][0][][] */ 34,-6,-69,-60,-17,40,126,-40,48,37,24,83,85,117,48,82,64,2,58,-70,2,62,-32,23,-43,-42,-125,102,-35,2,-1,-32,-81,-3,-31,70,81,28,74,8,-52,-53,11,5,-67,6,-64,-60,46,44,45,-36,84,33,-20,24,28,-83,-55,0,-72,16,-1,5,-93,8,4,-34,113,-17,8,-19,-31,-2,9,-55,63,127,52,76,11,-27,42,100,-98,23,21,-45,-33,-25,-51,-90,-10,23,63,35,48,-83,44,17,-46,22,-49,-63,44,-58,2,58,31,-26,102,-25, /* [893][0][][] */ 23,-33,-31,-29,4,-13,-18,-83,-23,-29,-65,5,68,-48,-56,-55,23,61,72,-17,-52,-52,3,3,23,-55,20,-3,-12,41,-1,-57,-18,52,18,-48,-97,-45,-6,-41,-127,31,10,56,30,64,4,-20,20,9,-36,-1,-1,12,-25,-70,18,13,26,-37,16,13,-40,26,-44,-38,-56,72,-47,-12,2,-11,10,-29,-12,18,-68,-42,-66,37,41,31,-23,26,-41,-18,51,-4,40,46,-17,20,-78,17,0,-47,-45,-72,-62,53,18,-15,-1,73,-109,44,55,-52,-10,29,6,-16, /* [894][0][][] */ 1,20,-45,-88,-51,-79,24,-41,2,-21,50,23,-68,-14,29,42,22,60,65,7,-77,16,28,-34,-23,35,-51,7,3,92,-55,-15,-10,-9,73,26,-20,14,-58,13,-41,-20,-39,11,-35,-14,-32,33,30,-53,-48,-15,36,-14,-28,13,-19,33,28,-22,24,-19,-26,23,-14,-66,-7,2,33,-85,18,-18,-45,-33,27,127,-65,21,-10,-46,-4,13,-54,73,-10,28,12,-22,-55,-54,-44,35,33,1,34,20,-46,-68,-12,-36,-35,-59,43,-28,-79,-19,22,-13,38,16,-35,57, /* [895][0][][] */ -33,-13,-10,8,-42,48,35,-14,52,-14,-9,-8,-29,67,33,38,12,27,25,29,-19,-29,-55,1,36,-31,-61,15,23,69,-21,14,-77,8,-11,21,-63,36,3,57,30,-6,92,45,8,-38,4,-27,21,-38,23,-51,10,84,-24,-41,30,-65,-52,-14,-32,56,-80,9,15,17,16,-25,75,52,-30,-24,-27,-13,30,22,-6,59,15,49,-32,10,41,-51,-33,40,-28,-29,2,-15,-13,-30,-7,61,-49,-17,21,19,76,40,24,-45,9,-8,43,127,-24,3,-7,-29,88,-49, /* [896][0][][] */ 20,-43,-12,45,-73,-24,31,32,5,-87,21,3,-90,30,93,-116,39,-70,70,-35,-23,-6,-24,-12,87,-38,5,35,15,-27,-15,15,-62,13,12,8,2,31,-40,-15,-127,4,-109,12,-80,71,-59,-39,12,48,-1,-8,19,17,-51,-65,-98,44,39,19,-48,24,85,-122,-37,7,-16,43,-15,13,-1,39,-23,71,75,31,39,16,42,-28,50,28,-52,44,0,-56,-3,-39,62,-13,-14,31,-23,-75,34,-31,-21,-109,-21,17,29,13,-38,-85,1,45,13,-42,-20,-23,77,-21, /* [897][0][][] */ -6,64,18,-52,-11,43,-22,27,-71,15,25,75,-9,60,-11,36,39,67,-50,-27,-53,-31,47,5,58,-62,-34,1,38,-2,61,-28,-52,36,-32,25,37,20,-33,72,-5,26,-65,-7,-42,71,22,20,81,-94,-44,-7,-20,-70,16,-91,-49,15,-57,-4,-33,-11,-2,-67,-26,-67,53,-6,127,-65,74,40,-33,9,22,11,0,53,46,-25,41,-40,-21,15,-81,-38,3,-63,20,19,-11,-39,-18,-14,-24,-24,-42,28,9,13,12,5,36,-40,-41,-11,-16,-60,3,45,-2,87, /* [898][0][][] */ -11,-15,-61,1,-32,-13,-7,-127,89,5,-5,51,20,25,-31,-10,-8,-24,-14,-7,14,19,40,9,66,27,21,-22,21,13,-38,52,8,-63,-37,-77,0,-16,3,25,48,-6,21,56,-8,-36,17,-32,33,-31,21,-29,-13,-19,75,10,-37,0,-45,38,33,-13,16,53,-25,29,-79,-43,-2,34,-7,53,-28,-5,42,18,-7,60,-31,-8,44,-36,21,-30,-41,-25,-37,-6,-29,-2,-24,-11,40,-32,26,0,1,61,15,16,11,-36,6,13,-51,-2,-40,27,9,-27,-2,-41, /* [899][0][][] */ -59,39,20,-18,1,-30,1,-35,14,-11,-20,17,-47,-13,-29,27,-113,29,15,54,-27,-76,24,-36,-8,-7,-37,4,-11,23,-24,-54,44,-63,-15,-22,-4,28,21,-38,-16,63,-10,11,-42,-18,14,-34,6,41,-21,-6,-30,36,-1,-60,-52,-38,-38,-62,49,15,29,5,39,-39,-44,0,18,-97,-29,0,-24,-24,96,40,-14,3,-22,-27,39,-12,-52,18,-38,4,-10,-56,-53,-27,-47,-24,25,5,26,-4,61,-51,-48,-66,17,-14,-36,-15,-127,1,51,-4,10,61,-58,-17, /* [900][0][][] */ 119,-28,-12,10,-4,46,3,-49,-42,-30,-49,-42,30,-72,-46,1,14,14,83,0,13,-13,-20,-21,-30,9,27,67,25,-52,42,-17,-15,16,-6,118,-5,60,-11,25,29,42,-61,89,-52,31,-1,-3,50,-3,-39,-20,-23,-55,-1,7,-46,71,3,6,-16,-41,48,29,49,29,31,46,72,-3,9,-26,5,91,-13,-1,-59,-54,-49,-18,23,19,-54,-7,-8,44,-12,-29,15,-31,-5,-12,15,36,17,59,26,9,-37,-16,-54,-127,-12,0,-39,-19,17,36,18,37,-32,-21, /* [901][0][][] */ 51,-4,71,-52,-46,15,-80,-58,21,-37,-58,-69,-18,62,21,40,53,-8,-1,18,-20,18,2,-34,9,36,-55,45,-3,18,-58,41,-58,-17,-127,33,24,-21,29,46,2,6,41,7,-17,-72,-3,-9,38,-32,-4,26,41,-28,-17,-45,-15,-104,-59,-2,1,-32,-25,-5,-36,-17,-38,-29,51,18,-61,49,1,-78,27,-34,24,23,65,-18,-42,-12,33,-124,-19,-39,-110,-29,-11,-42,-32,40,63,40,-26,14,-27,-29,22,44,92,-10,95,2,4,57,13,28,11,84,-37,-6, /* [902][0][][] */ -52,8,13,-18,2,-33,30,-57,93,-78,34,-40,123,-22,-35,35,-26,-41,40,10,0,-5,-51,3,19,9,-6,17,20,17,-41,72,-19,-42,-10,-18,28,18,-39,11,-5,34,14,59,11,-66,-34,-8,38,0,127,-15,46,24,32,38,44,-42,-117,89,-23,-66,9,63,26,-80,-88,24,27,25,17,-15,-67,-40,8,-11,-16,14,1,31,-39,-98,6,20,-70,-25,8,-35,-7,-59,-85,-17,26,21,58,-32,-62,50,-6,45,9,-10,-20,-34,-30,9,44,23,41,12,37,14, /* [903][0][][] */ -31,23,-126,5,-49,-23,-50,-41,35,-109,31,27,2,13,2,22,61,62,-16,-60,-27,-72,-36,98,16,66,-28,-29,-10,48,103,18,-66,99,27,41,-5,-11,-29,-13,-5,16,13,-48,-11,82,-3,47,88,16,47,-20,-51,-28,17,-6,-6,44,0,-7,89,85,-37,13,-52,-19,-4,38,52,89,10,-42,62,-75,43,-14,-16,78,42,57,-5,-17,1,-43,-17,47,-110,-127,-32,5,-14,19,-60,-12,52,41,-18,15,-2,60,-28,30,-94,-61,29,48,3,1,34,-41,48,-16, /* [904][0][][] */ 53,63,-2,-70,-42,43,0,-34,58,-11,-12,53,10,39,14,53,-8,22,32,-43,5,-26,31,-32,-5,-66,-29,-1,-59,34,-31,-88,-75,95,-50,16,25,22,-103,-6,-35,11,-11,25,-9,73,64,-51,-12,-3,28,28,-19,-12,-46,-60,-23,56,-27,-51,0,-127,-13,11,17,-82,-35,11,23,54,95,11,-10,37,-19,75,0,-12,8,17,32,30,32,80,12,-21,-54,-56,9,82,74,-73,23,6,-5,4,5,-1,78,-67,-30,24,10,48,-40,17,-5,-46,-29,56,71,-26, /* [905][0][][] */ 22,-67,-19,-51,24,-3,-39,-21,59,15,32,-1,70,41,-58,10,31,-35,0,-26,1,-49,3,1,113,0,-14,63,-17,60,-40,44,25,-30,-80,6,22,-17,1,-33,-15,-27,-16,63,-4,-39,-23,-7,26,13,4,-39,64,39,62,52,127,-27,-114,55,22,7,-30,-10,-79,-56,14,-2,-65,-12,11,-17,-5,35,8,19,26,41,24,-47,-36,-31,-15,0,-20,93,41,-34,4,-59,1,-8,14,2,5,77,-63,22,-39,47,12,-1,20,-12,6,-42,-13,49,24,-2,14,13, /* [906][0][][] */ 33,1,-31,41,0,-9,-10,-10,20,1,-5,-16,-7,-51,-32,103,32,0,51,2,61,-41,-21,-47,-35,6,-52,-5,-35,13,23,17,-26,-25,-103,38,29,-5,19,8,-3,-8,-66,-1,-38,60,-22,12,-33,-23,38,33,80,-41,14,-38,-13,26,14,-25,-54,-21,-5,43,-29,0,76,41,3,12,77,48,70,-29,24,8,-70,11,0,-80,-12,17,26,-92,-68,94,-49,-31,-17,44,-24,-38,-79,-49,-24,90,-109,33,19,127,6,-40,6,-13,-26,-5,97,-12,64,-5,-14,-33, /* [907][0][][] */ 75,-79,-15,21,47,61,62,31,-10,-34,22,-11,47,18,-95,-38,70,4,-11,-41,0,58,8,53,-22,63,-5,2,-49,60,-32,-13,3,20,-110,49,15,-63,-16,-5,-31,38,-64,-14,-23,64,12,23,73,5,34,4,45,37,47,39,4,-4,-42,71,-30,34,26,22,-29,-36,-2,-17,-31,20,-54,-17,35,8,50,-9,78,10,8,-59,-2,-3,-25,24,-51,37,-69,-74,7,-10,31,-32,-20,114,-36,34,-10,-1,19,-13,-40,77,2,-41,6,127,49,18,90,-27,55,-78, /* [908][0][][] */ 58,-115,-23,39,4,-77,-28,-60,-88,14,-30,23,62,-1,-50,-18,23,40,107,28,23,-65,16,-63,41,-99,-3,24,-1,-20,-14,-88,-67,20,-56,-14,-4,-22,87,-75,-48,9,15,62,40,3,74,7,60,-8,-6,-36,-45,5,-119,-106,-33,-25,-26,38,18,-69,47,-42,-52,-48,7,-19,-51,-39,20,-64,-98,86,15,-19,-11,-15,-127,-75,-24,4,-21,67,-68,-57,61,15,106,37,29,-6,-12,-17,-43,-6,-69,-45,-14,-48,31,37,77,92,63,35,55,3,45,99,98,7, /* [909][0][][] */ 89,-33,25,40,5,-43,-17,-24,19,-35,63,6,37,-8,-9,-12,-18,-29,-31,-22,38,57,-50,59,80,13,37,2,5,-10,35,8,26,54,8,12,14,25,59,-31,-67,-40,-25,33,10,-26,-26,45,3,13,-7,17,35,-26,19,11,21,1,3,122,27,-4,-48,-8,-50,-18,-50,38,16,21,2,-65,-52,-30,-18,-12,18,34,63,-28,-50,6,50,2,-60,93,28,23,-67,-8,37,-29,35,53,-12,-17,31,-20,127,24,14,62,37,39,-18,20,-4,-4,83,-33,74,-79, /* [910][0][][] */ -49,-68,-50,10,3,-9,50,45,80,12,-9,57,50,43,56,27,18,-7,42,-20,33,-10,31,25,9,10,30,-4,52,50,21,-6,62,-28,-33,21,101,-25,-6,13,-39,1,-4,-13,5,26,-24,1,24,-75,62,49,14,39,-42,-42,94,-93,19,8,-6,-8,-7,19,-33,58,-36,0,56,63,53,-24,-4,6,-45,83,16,-14,51,-58,41,-13,59,81,-26,-3,-64,-13,-64,22,4,-25,-57,127,18,8,3,32,31,-43,-25,-26,-34,-3,-20,-12,-2,27,11,35,-8,-42, /* [911][0][][] */ 48,12,-35,-13,12,26,-5,91,-7,-34,-25,21,-39,-5,-11,26,-5,-19,38,-52,-66,-71,-2,-9,26,-41,-26,77,17,22,19,-19,-68,26,-33,48,-21,-11,6,50,34,9,-28,25,-61,43,127,-10,24,-50,8,41,27,46,-13,17,-13,17,-82,37,-24,-31,-2,0,-66,5,-21,69,-49,9,16,58,-37,25,-37,38,-1,0,-11,52,10,-5,-36,16,-28,5,-11,-32,53,68,18,-49,-21,-45,8,-3,-12,-58,-63,-29,28,-14,7,15,62,-55,50,29,-8,67,72,94, /* [912][0][][] */ 89,-35,0,-46,82,-33,-52,32,127,-24,-28,-27,39,-39,-24,58,-37,-71,16,10,7,20,-108,72,56,-8,-73,35,21,7,3,71,-76,15,-46,8,23,90,27,-43,62,-18,-7,43,-49,3,37,78,41,43,-29,5,4,-8,45,-6,7,-4,-99,21,-6,20,-23,14,-94,-13,7,57,38,20,14,-26,6,-13,-28,-22,2,73,38,-13,14,-13,34,-53,-29,35,8,-13,-13,-30,16,-84,-37,-56,4,30,-64,-31,53,5,8,92,17,-57,-45,-54,108,55,58,-65,72,-48, /* [913][0][][] */ 86,12,-9,-52,31,-4,-44,9,16,-19,6,-94,103,14,0,25,17,-93,26,-100,35,-29,-29,5,6,56,-40,120,75,16,-1,48,68,-35,-20,6,-4,26,36,-12,52,17,-5,34,-74,-55,14,-13,60,-66,-74,-44,52,-127,-99,-4,-16,-67,-60,-36,111,52,-12,37,61,-4,-37,-32,-9,23,-61,13,-114,72,5,-15,9,3,8,-92,-3,34,-5,-3,-72,-14,-26,12,10,-60,7,-34,-47,-34,26,-11,1,-22,-21,18,32,-21,-32,23,60,16,-29,-15,11,10,-31,-6, /* [914][0][][] */ -33,16,-17,46,-89,35,-73,-22,-5,-27,14,14,-59,2,-24,3,5,1,-50,-5,-53,-1,-15,26,-19,-11,65,-36,14,-18,127,17,-38,-25,27,53,68,21,-3,-60,-28,46,-20,2,-25,22,53,-41,25,54,18,50,63,-4,-93,29,-6,60,6,1,6,2,83,87,-12,-71,-66,-36,-3,-32,-10,-73,-33,105,-37,-14,2,54,-10,40,35,43,1,51,8,-47,-63,9,-75,21,-11,29,77,-70,2,59,-98,-79,-59,-16,-49,-22,80,59,37,49,-40,-26,24,81,-26,-2, /* [915][0][][] */ 23,31,-43,60,-34,5,-17,-11,-21,27,39,28,-16,9,47,-33,-82,59,40,46,-7,-30,71,-16,6,-7,33,35,15,-19,43,-127,-6,12,-12,14,-16,27,-29,-74,61,65,-21,-30,32,25,-1,-48,-48,-15,36,-18,1,-46,10,-29,13,-42,41,-36,-21,-41,-20,3,12,-91,-43,54,59,-28,35,9,5,28,-13,11,9,-26,-9,-53,-12,103,-15,-15,2,64,28,11,6,-34,57,1,32,-31,-11,30,-24,4,9,46,-6,-22,45,11,-77,7,30,-53,-6,51,-45,-15, /* [916][0][][] */ 24,-53,16,50,8,-4,-33,-19,21,5,-43,-14,8,23,11,61,-11,58,-23,23,-19,-69,48,23,14,-2,38,46,-12,-3,27,-96,-16,-8,47,-25,-56,-17,26,-66,-17,49,24,37,-16,66,127,-50,-28,-26,29,19,-39,-58,-31,-70,-72,73,20,22,1,17,-51,2,-3,-33,-30,20,16,19,23,17,-6,51,-46,4,-31,9,-43,-44,-3,5,-42,93,-21,-50,21,-14,30,55,6,-35,-14,12,9,-2,12,53,-41,-12,31,39,-4,99,-74,-2,19,19,-10,93,9,-36, /* [917][0][][] */ -37,-63,-7,-25,13,41,-126,-48,-11,-79,12,107,37,-58,-45,-8,-51,39,48,2,-58,-67,2,21,101,-27,25,127,-15,75,98,-90,29,-5,46,-2,-61,-30,-85,-78,17,30,-25,-39,-63,-17,19,-68,-2,6,38,-9,23,5,-61,-37,-85,-4,-50,-14,27,-2,-49,64,-27,1,-83,-42,-29,-5,80,49,7,-52,4,-16,-75,-26,-15,41,39,32,-40,-26,-25,34,-7,18,-21,11,-30,52,25,-23,1,20,-16,-8,-20,-53,17,-56,-15,29,-29,73,7,-35,-45,61,29,-47, /* [918][0][][] */ 21,61,31,38,42,9,54,-25,-63,-22,-59,22,62,3,61,-39,-33,-12,-3,-24,-19,-67,-61,-15,6,-103,88,-50,-4,4,-61,-8,11,40,22,71,-42,-30,-127,60,-61,27,19,60,-63,70,-39,2,-1,50,44,33,62,41,-65,-65,-44,24,-66,16,32,-20,-104,49,-84,-85,-26,36,14,-36,41,-6,-32,13,-40,34,98,58,24,38,123,38,-99,-22,47,-62,17,-19,25,22,51,-73,77,8,39,-30,15,-105,11,-44,-45,7,-43,54,-68,7,-1,-78,57,48,0,-2, /* [919][0][][] */ 105,4,-116,71,51,-12,13,-89,69,-21,-1,-7,-30,-15,7,-50,22,-34,37,-22,-12,-20,35,103,127,43,-42,38,25,-30,-52,21,-34,-76,-30,-39,89,-43,-46,13,21,-71,-35,109,74,-10,66,-26,46,-110,45,36,-60,62,90,75,15,-109,-20,120,50,-50,-60,59,18,-17,40,31,-25,68,6,60,0,-10,78,8,0,33,89,-38,27,-26,8,-22,-37,6,5,-13,-37,-84,-114,-90,0,67,59,46,26,20,113,-14,-24,-79,6,21,49,52,38,98,55,-20,53,-17, /* [920][0][][] */ 94,8,16,30,-30,-1,3,68,-102,32,28,49,-17,-37,-10,-46,-127,27,10,24,-40,-21,17,76,-5,-12,-17,95,21,-46,20,-51,-30,1,5,86,-34,3,-6,-9,-21,-59,-11,101,-82,14,-7,-25,-25,27,0,40,-25,6,-59,-3,15,-85,-25,-6,-20,34,-58,-11,11,21,-75,13,83,-93,94,10,35,61,13,67,17,69,-58,8,53,-1,-82,11,-32,111,15,30,-31,-23,35,-3,-24,-43,19,-8,9,-39,-36,-11,24,-38,28,-27,1,-9,-4,-46,1,8,-45,63, /* [921][0][][] */ -17,-61,-2,-25,-84,-23,9,2,-45,-15,-6,80,-6,27,-23,0,28,6,-32,-31,-26,11,29,-36,92,-74,68,74,13,-19,42,-80,-52,33,18,15,19,-82,-31,12,27,50,19,13,-80,127,67,-59,-24,41,21,16,-14,-15,0,28,-94,17,13,45,8,86,44,13,89,19,-33,16,-33,23,-50,75,-51,9,41,9,-4,40,-13,10,-21,86,-37,4,46,-27,21,4,-29,52,-73,-16,24,-54,68,59,-28,-12,-16,-42,-17,0,32,23,-86,82,11,-28,76,-19,-22,50, /* [922][0][][] */ 55,65,-12,12,-28,27,-25,-57,-13,22,-34,-11,15,39,-36,-36,-45,-61,-28,-10,49,-21,19,20,-16,-39,-48,19,0,-66,65,37,-2,44,40,-1,48,2,-71,57,-49,6,-32,46,-50,99,-35,-56,-21,48,127,-47,-19,-56,-49,-97,-113,67,36,-76,12,-13,-69,-12,65,21,-17,82,91,-80,29,23,-3,30,7,-11,-23,-43,-62,-13,8,84,13,14,-12,-17,-68,-44,-6,51,-74,-26,-63,-4,55,-60,15,42,-8,1,25,-19,-43,3,-117,10,-19,-85,23,-28,-37,34, /* [923][0][][] */ -83,-35,50,-34,-127,-20,24,-2,15,-43,-37,-5,-82,76,-54,42,85,-54,12,-36,19,53,-115,1,36,70,-127,-22,11,27,16,27,-50,53,-86,0,-4,34,47,13,-36,73,0,-49,19,0,-12,-18,10,20,70,24,0,-3,-62,7,7,10,8,10,46,41,60,55,-7,-27,-25,73,-35,-32,26,-12,-28,-15,-25,-55,24,-12,46,-18,59,48,-29,18,-25,47,-21,-34,-25,48,12,-76,36,3,52,36,-45,1,19,31,-30,-28,-2,-48,60,71,11,-15,85,-35,4,-74, /* [924][0][][] */ 17,-24,-80,12,-67,29,-29,-4,-40,-17,20,13,-6,42,-11,-32,-38,-71,-38,13,-54,0,-39,21,12,24,-12,9,-19,-24,80,18,-4,14,53,24,5,-10,-34,54,25,23,-2,52,-12,14,26,-56,46,7,22,29,-21,-25,-19,-20,0,41,-7,13,-53,61,33,12,-3,-23,-25,-1,-79,12,-5,-63,13,38,28,3,-86,3,-45,82,127,-15,-53,-15,-10,14,23,-39,-4,70,5,-43,-43,46,15,-49,46,-103,-22,36,13,-72,72,29,-56,81,102,-8,-79,15,-58,62, /* [925][0][][] */ -33,-8,-59,-40,7,-11,-32,77,-65,-73,12,-12,50,2,4,-6,-127,-40,26,-10,15,-50,-62,-3,11,-10,-47,66,-38,18,-68,-65,-2,60,82,-16,55,-56,-8,-56,-8,0,-28,19,14,54,-15,-118,76,-13,-5,7,-56,47,-93,-11,-12,74,-77,14,-35,-32,-15,-17,43,-21,-112,26,56,-46,23,-43,-35,-3,109,26,-38,19,-52,-20,20,58,-23,73,-5,-42,-26,93,98,-17,-32,68,-26,49,12,66,23,7,-121,-41,-81,-79,-35,32,-51,-29,107,-4,3,22,38,11, /* [926][0][][] */ 30,22,72,25,-36,-92,7,13,65,48,46,24,17,11,8,-28,7,-36,41,-70,-29,16,8,17,-14,-53,3,37,-62,40,-29,46,-72,30,7,74,-52,-42,10,-22,-53,-32,-19,52,-54,83,57,-11,40,-84,-79,88,41,17,-17,-4,20,17,59,-36,-87,-62,-57,-83,-101,41,33,40,-41,68,110,41,24,27,82,58,45,39,21,38,69,-10,-51,30,-3,42,63,-29,36,17,-41,-43,10,31,42,54,-43,-35,-85,-28,27,-5,-12,-1,-61,-35,97,19,-18,-25,127,-4, /* [927][0][][] */ 84,-12,-36,-49,21,24,-37,5,35,-100,-7,75,-29,-28,60,-11,12,44,27,-48,37,-24,-51,-9,102,-8,-14,9,79,23,74,-26,-54,-45,16,93,6,-60,-54,38,102,25,-58,-26,-85,85,105,80,34,-44,-127,54,-91,-83,-36,9,-55,49,-19,19,21,96,-61,-34,50,-54,-47,74,26,14,20,-39,-72,14,47,25,58,8,-59,43,33,76,-14,58,6,-21,-9,-14,24,-36,-22,34,15,-14,-62,57,33,48,-35,-93,-53,-17,30,-4,-27,-28,-47,28,-104,29,13,-40, /* [928][0][][] */ 44,-75,-80,23,-64,-19,-2,-1,-47,-35,8,64,29,-26,33,-36,105,35,19,-47,34,-27,-84,87,54,72,-23,-5,44,-15,4,-48,-60,42,-1,27,5,-67,11,-53,-1,30,-36,14,71,-6,-27,77,52,-81,21,10,-40,-45,62,-8,36,-127,-19,52,56,53,22,29,-24,24,-17,33,-17,49,-5,5,-48,-75,6,-24,-30,92,45,-46,-22,37,-66,25,-57,59,-29,32,-15,-3,-12,55,-26,53,10,49,35,0,-2,34,35,-1,-27,31,22,47,-50,71,25,24,37,45, /* [929][0][][] */ -6,-53,10,-11,-72,-30,22,17,-20,-3,13,105,-71,-34,42,-57,57,-22,54,22,44,-12,-20,-23,101,-84,-42,28,35,-47,41,-19,-114,14,-11,10,-25,35,-26,5,-57,55,-127,46,-43,51,-52,-29,-7,8,-6,-5,17,-17,-43,-56,-36,-79,68,6,-81,-37,6,-23,-55,-62,-8,-28,-66,-42,-19,-29,-21,6,58,37,93,20,41,-15,57,74,-32,48,-2,-36,-44,23,23,73,13,-107,-2,15,37,-28,-20,72,18,-42,-9,-31,-27,-15,13,51,11,-30,-42,33,81,37, /* [930][0][][] */ -29,51,108,-67,-50,-41,19,47,20,-43,41,32,-96,39,-21,10,4,-7,8,-97,-21,-24,-62,-73,-19,18,-14,-4,21,69,0,12,-12,127,-62,58,-67,1,-59,14,-35,67,-26,7,28,79,-10,-37,49,-22,39,24,64,-2,14,-19,-4,-57,42,-83,-10,-5,28,-66,-4,31,-24,34,49,-35,40,-3,-28,-4,21,0,26,17,-41,-60,102,94,-54,4,-14,-11,58,77,-5,4,54,-7,-4,27,18,45,-108,2,0,42,-53,-55,-7,-7,-72,18,-35,-28,19,-39,18,-22, /* [931][0][][] */ 10,-48,6,7,42,74,-39,25,18,-62,4,-5,-22,-24,7,5,14,-6,35,9,-3,23,15,31,113,4,54,-13,-18,57,33,-47,2,6,75,19,31,8,62,-8,-12,-43,-42,-61,0,30,-16,-3,10,-66,-4,42,4,26,26,-3,-64,46,22,42,8,-23,43,-34,85,-42,-48,80,-30,72,21,-30,-49,7,44,127,-14,58,-95,-2,3,13,-35,54,27,10,29,18,-8,-73,-78,-19,16,-15,25,65,25,-4,-26,-119,-38,-70,-17,5,-60,5,82,-16,-67,-27,15,32, /* [932][0][][] */ -48,11,3,59,7,-27,-48,60,49,-10,-1,15,-82,-25,-17,79,-45,-28,8,-18,-54,-76,-8,62,-1,15,14,-14,-23,1,10,-126,-47,28,60,-32,-58,109,29,11,-14,54,58,-3,-22,12,68,-28,-1,11,8,70,10,10,21,-4,-25,-2,-5,3,-70,44,0,-39,-16,-127,2,126,1,-32,-35,-30,-30,11,-46,41,60,53,-50,-30,37,-15,-45,61,10,-80,11,20,-26,-19,-52,1,56,-44,10,-33,-36,23,9,-4,51,-18,-63,46,1,-21,14,-31,58,38,-3,56, /* [933][0][][] */ 19,10,-7,-55,25,-10,-35,-54,37,13,62,26,78,-5,-22,-8,5,-41,-6,-18,49,23,3,-9,10,-7,-13,115,-22,69,-20,-30,-26,-28,-30,-4,62,-44,-7,32,23,-10,-23,-16,-24,-14,-17,-8,-2,-5,-8,46,71,-29,18,-10,-10,54,-28,77,-23,6,-40,66,7,-26,-43,5,12,-9,-9,-58,-3,-31,8,-23,23,50,-28,-24,-18,22,6,-60,5,114,-32,-32,-23,-127,42,28,49,-25,-18,54,-47,-41,5,48,-11,-1,15,-20,-44,-4,9,-4,48,19,-13,-98, /* [934][0][][] */ 56,-30,57,33,-22,-28,-36,86,2,-14,-26,-1,-8,-1,-45,8,-96,18,16,55,-47,6,4,36,29,13,-22,70,10,-51,35,-39,-16,29,-19,-6,-14,29,6,-1,4,127,-22,75,30,-28,64,-78,19,17,4,28,-11,-17,25,-7,-28,17,11,40,0,89,20,51,8,7,-22,35,-4,-33,-20,-32,20,95,41,23,-45,-25,-10,-40,7,23,-34,-21,-45,71,-25,38,-57,92,-5,35,-28,4,-36,-27,-52,-22,-76,-36,-8,14,64,30,-32,49,84,-8,-29,-24,52,9, /* [935][0][][] */ 51,11,-18,-48,-28,-57,45,-59,110,-90,-15,37,36,22,74,108,127,12,51,24,64,72,93,75,-26,-30,-57,20,-97,88,50,95,2,-19,-60,-23,53,-60,-23,-60,-41,20,-10,4,-9,18,57,14,72,-2,99,19,-11,-32,15,52,-21,-55,11,8,-27,21,-51,4,3,-31,-72,-34,39,-10,10,-6,-104,12,-21,-7,86,-17,-2,-53,23,-26,65,38,10,-73,-74,56,-55,61,35,-25,-5,46,20,108,-49,-37,-43,-28,-49,-66,-71,14,65,86,29,3,80,7,-40,32, /* [936][0][][] */ -77,44,-38,-12,35,-19,10,-28,-62,7,-87,64,28,29,-14,20,-40,-20,109,-16,67,-35,69,-37,47,-69,19,11,58,37,33,-127,-27,-111,-86,-87,-51,-21,-56,-45,-5,21,11,33,25,1,-19,-34,-6,10,-54,71,79,-33,32,-21,-14,-12,-11,-5,-65,-25,-52,4,-48,-86,-7,-36,55,-5,-2,43,-6,49,17,26,-3,4,6,-35,18,65,-86,-33,-13,30,-40,-31,-21,38,2,0,26,21,-4,20,-31,36,-63,-52,23,-41,-31,5,14,-67,24,-75,-31,45,-30,-39, /* [937][0][][] */ -4,-68,-7,1,30,-28,20,34,-45,8,-42,57,-38,111,-12,2,84,-70,82,85,13,38,-115,-43,-26,24,-44,60,-25,23,-23,38,-81,53,25,71,21,-60,42,-73,-79,9,-19,-27,-10,38,72,-25,15,-40,31,3,18,7,90,3,-20,-109,-58,28,-28,-77,25,-28,-68,91,-37,-4,-12,-20,-85,-20,-13,-9,0,-13,11,37,-9,-71,-53,-75,-57,16,-127,-10,-41,-59,-17,-47,24,-26,-15,-5,-7,40,4,42,-14,55,67,2,39,14,13,94,50,-7,112,-25,111,-38, /* [938][0][][] */ 4,-3,6,-16,-13,15,-22,51,28,-2,14,30,26,-18,82,31,-86,0,-27,-73,-57,-19,4,5,72,-55,19,17,-34,-3,39,-70,-30,13,38,82,17,48,-54,-69,-44,20,63,76,-48,-55,11,-98,-30,32,-9,-22,-6,45,-75,-21,13,40,-10,-1,-15,-52,-65,41,-12,-13,-83,127,-30,-26,97,10,-58,1,40,68,-23,-26,-7,34,-16,44,-39,30,35,81,8,19,1,-73,-2,75,21,106,36,95,-68,-75,-16,14,-52,-101,35,14,-27,-5,44,25,-73,93,-33,1, /* [939][0][][] */ 19,-23,-37,-10,32,14,9,24,-2,48,34,-8,-72,100,-70,8,-36,70,-10,92,99,-81,41,12,-13,12,108,-24,5,-17,89,5,-76,-16,48,84,46,-24,-24,-66,-65,15,-51,32,-68,119,14,-34,-98,-34,16,47,28,46,-35,-76,-16,-42,-23,-22,-120,17,-17,-64,84,-34,25,35,19,-5,4,42,58,42,57,26,-70,11,-127,-38,58,-65,50,77,-84,41,-87,-25,-25,-30,0,39,32,-44,75,127,-47,-82,-40,80,-8,-69,-99,-4,-61,-17,35,-12,-76,-30,77,9, /* [940][0][][] */ 3,-20,-39,40,-93,-23,38,-40,12,50,-76,-106,8,-5,-4,48,75,-26,13,84,44,-30,-27,21,14,-12,-19,10,-34,89,-17,-44,-41,43,-36,3,-38,62,121,-1,-44,65,-5,-19,-51,-9,-4,59,81,-85,-23,13,-26,-21,-82,38,-13,-15,-91,-44,-1,24,84,11,-30,-23,36,28,71,42,19,-72,-97,-87,31,-82,2,36,-31,37,-61,13,-14,-127,-63,1,25,9,-26,-79,-69,-57,-54,10,6,16,26,-72,21,48,20,9,-34,-20,60,53,2,-41,55,-29,-7,39, /* [941][0][][] */ -8,-35,-3,23,10,46,104,-44,32,27,9,23,39,55,3,71,52,-50,31,1,27,14,38,80,10,75,-13,-24,-54,-10,-19,86,-14,60,-80,71,-24,59,59,-30,76,33,101,24,13,-67,66,-48,45,-53,70,20,56,33,-20,-57,122,-23,-126,-29,48,32,109,35,20,-15,-28,-3,-40,19,84,-76,-16,-65,57,-32,14,28,-82,-27,29,40,6,-24,31,39,32,-5,4,-53,-13,-64,-70,127,2,0,9,-39,-49,-20,-59,30,5,47,17,58,58,20,-16,-64,-28,46, /* [942][0][][] */ -9,-51,-5,-6,-111,-53,-79,-2,17,-27,-12,-12,-47,43,72,26,18,-53,61,27,74,33,3,8,-24,16,27,57,24,-43,28,19,-62,43,-2,-78,-66,25,32,83,-49,5,82,16,59,-18,-8,-2,103,24,12,-33,36,-22,-23,11,12,7,53,-19,25,-30,-24,93,54,41,-5,-38,47,38,12,56,-22,11,-30,11,22,3,48,-75,23,36,-9,-127,2,107,-119,21,6,-75,-35,31,-22,8,4,-12,9,-38,42,114,107,33,-11,56,-1,19,13,-24,64,-15,10,28, /* [943][0][][] */ -10,27,26,-107,-8,-5,2,31,19,4,-14,36,11,26,8,-21,-45,76,37,41,-15,-30,56,-56,-22,-40,27,19,-3,39,48,-111,-51,5,89,100,-7,-30,-88,-23,-33,44,-8,36,-103,52,-30,-127,5,18,41,-20,-26,-4,-50,-52,-55,22,-45,30,-20,39,-56,36,-5,35,-70,-24,-2,24,-41,-81,-35,28,51,86,11,-24,20,-27,35,10,-17,28,12,-48,19,-3,41,-31,32,65,-14,27,50,47,-22,11,-14,8,13,-24,11,-1,-40,78,-9,-37,-67,42,46,37, /* [944][0][][] */ -56,-46,-15,46,29,-45,64,-48,12,10,40,-81,42,-10,12,-49,19,-121,34,59,16,73,-19,89,119,42,-96,32,34,-33,-56,21,-17,88,16,-36,-33,96,19,61,-42,35,26,30,4,11,30,-11,38,39,-50,-21,-23,-16,-51,64,13,-32,12,33,30,94,-127,-56,-65,32,-44,-15,-61,-16,49,59,59,-10,18,-61,-42,23,99,38,62,10,-73,-20,-101,74,-37,-41,-20,75,-30,5,-91,-43,-10,-51,51,-51,-59,75,76,-18,-34,-109,-63,47,77,-57,44,19,37,-83, /* [945][0][][] */ 4,-59,5,33,-43,-1,-20,10,25,22,-22,11,2,59,22,20,27,36,-26,23,-16,64,3,6,-29,39,-61,66,43,74,-37,13,-91,12,-54,12,10,-73,56,2,9,-1,0,-49,35,37,46,29,32,-5,30,26,-20,41,96,-24,-11,-23,-24,-41,-31,0,51,22,6,35,-5,-21,60,46,-53,-23,18,-34,23,-61,-14,18,-65,-127,-24,91,-34,-30,-58,10,-12,-82,-53,-39,-2,22,-65,-6,-42,-38,-56,21,-10,13,10,15,6,8,7,119,0,-17,30,14,21,-31, /* [946][0][][] */ -76,31,15,12,9,26,-59,-61,9,81,-65,-21,-8,118,-12,7,26,40,4,-49,-95,-107,-10,-5,-63,-98,-23,40,6,101,4,-74,-10,7,4,51,-85,7,66,60,-112,43,-29,-53,13,21,11,-22,-55,-78,44,68,-17,61,25,19,-38,26,-15,-45,-43,0,-43,-36,-40,-77,-40,35,-41,-7,-11,65,-24,-43,44,73,24,-55,-46,-81,-3,1,-31,-17,54,-91,25,-31,-16,-26,-35,-74,61,4,5,-5,-42,-127,22,14,-31,-34,9,-31,-91,28,-57,-70,-52,23,44,-27, /* [947][0][][] */ -14,-40,30,-18,-9,46,-45,56,27,-4,-49,69,46,-5,-73,-23,-22,-38,29,57,-28,-37,23,-34,-60,-15,17,8,-59,-59,-41,-12,-70,-45,-6,86,-9,8,-25,21,-63,30,-49,27,-66,15,46,-127,-48,-8,63,60,52,52,-5,-102,7,-12,-44,22,-55,38,-25,-35,-20,-67,-40,37,4,27,-24,36,45,64,-38,38,-30,33,-62,25,32,85,-10,7,-25,-14,-15,-69,18,79,43,-29,28,38,-18,-40,70,-3,23,-20,53,26,82,-27,-31,35,-64,-31,-92,48,-21,-8, /* [948][0][][] */ 55,4,-97,13,5,23,-7,16,-71,17,64,83,4,22,31,-26,45,40,-7,45,9,4,98,30,49,-67,78,13,47,-11,40,-42,-76,-24,4,67,19,0,-33,-107,-3,4,-91,-15,-31,-4,12,10,-39,8,50,-11,-5,-30,-5,-28,-3,-48,23,-77,4,-36,-36,7,127,50,12,66,31,20,-14,-21,-3,124,-26,58,22,48,-4,-11,59,52,-32,-2,-23,-9,-20,-48,-14,9,6,20,46,-16,10,29,-37,-59,75,5,-37,-57,0,74,-13,34,79,-80,-6,27,-33,5, /* [949][0][][] */ 122,22,34,16,16,-5,12,2,-11,-32,-43,65,66,34,-112,-95,-73,15,5,46,-55,52,79,-29,1,-107,44,46,25,72,16,-120,68,14,54,72,26,-40,-22,-26,-48,56,30,8,34,127,65,-66,25,29,-1,-44,23,43,17,-87,-80,54,-36,-9,-40,26,-71,-32,-79,-37,-26,13,36,-5,19,-53,-7,1,-3,-34,41,-38,-2,-97,44,58,-38,32,-35,38,40,-18,1,6,-2,50,-39,86,-16,-54,54,-31,-24,7,24,28,64,-8,-54,-87,10,-28,-13,-7,65,-52, /* [950][0][][] */ -63,-29,-23,-59,1,-32,45,-76,19,-26,10,-67,-5,4,-47,10,58,11,-1,31,-2,-31,-127,-10,20,97,2,7,-8,-5,-103,-30,16,10,-32,66,55,16,63,2,-76,-19,25,48,-17,-47,14,-18,-7,-5,118,23,17,-36,67,91,-5,-3,-19,27,3,-72,-20,20,-43,-11,-22,-32,10,67,-31,-21,-54,-43,82,12,-11,30,34,-76,17,-54,-32,-10,-34,-64,-5,-78,-61,-105,-20,-14,-7,-13,-6,24,22,-66,-8,42,21,51,1,-12,-56,-17,52,17,27,-40,-8,-6, /* [951][0][][] */ 11,-73,5,16,85,-41,26,-35,38,12,-89,-18,18,25,-50,88,28,-21,65,105,67,35,-26,-38,31,30,10,45,1,30,-119,76,-73,127,-11,59,-15,-13,1,-60,-48,-23,-35,25,-6,-52,3,-60,21,-23,-31,69,71,70,112,43,58,-21,-98,16,79,-123,-1,-52,-48,-43,-25,10,-20,-3,27,-16,15,6,45,-24,85,111,55,-28,39,-7,3,60,-75,-6,3,65,-13,-40,-18,-34,-48,-35,-18,124,7,-16,-49,74,-4,112,-32,3,-56,46,-24,72,79,-21,71,17, /* [952][0][][] */ -57,-29,-39,-86,20,-57,-40,-30,21,-5,-86,47,-52,64,-54,20,63,-34,-52,-75,-45,-24,-6,-16,-4,-68,38,79,-29,5,-44,-17,-20,-61,-49,-9,-34,5,-18,18,-49,-41,-6,49,-34,3,22,40,-16,-59,35,104,12,17,10,-87,-67,5,-42,-20,-16,-59,-6,-40,-23,-20,-13,-7,17,-64,-4,66,4,-22,-48,56,-8,51,-2,-29,2,54,-85,-8,-18,-64,29,-63,-1,-18,-6,4,127,-10,20,0,-32,26,-32,-36,84,35,84,49,15,31,-29,-33,6,107,2,-9, /* [953][0][][] */ -41,-16,-81,-10,-85,-83,-30,-39,16,-14,81,-12,-31,-21,-30,-53,1,-61,-19,20,-17,-38,-30,-127,55,-47,76,17,37,-71,-5,-68,19,-5,-41,15,57,19,-23,50,-67,-24,-100,52,-21,11,6,-35,18,-15,71,-31,35,-83,2,-46,-50,38,2,96,25,-59,-7,75,-25,-38,-40,44,64,-61,45,32,18,-24,20,51,13,-20,-49,-55,38,-43,-41,88,-21,-115,121,-7,-102,-19,-95,-13,87,-26,94,16,-37,-5,-58,-10,-11,12,27,37,-55,-77,62,11,-74,23,30,-23, /* [954][0][][] */ -6,-6,49,106,52,-107,-19,50,0,-13,53,11,-25,29,47,-49,-56,15,54,10,-46,-21,78,9,16,-87,-43,56,68,82,17,-102,-15,-18,1,23,104,-80,-33,-70,46,7,-57,-17,-23,-4,127,-17,-24,68,20,37,-26,9,45,-41,-34,-24,20,-23,-24,3,-29,69,105,-43,22,65,19,39,0,9,-34,90,21,85,49,48,18,-15,105,48,-25,15,32,20,88,-14,1,-29,-40,65,-2,-34,25,-3,-44,-107,73,-39,-12,-34,-4,-10,-11,-46,75,-28,-24,61,-10,33, /* [955][0][][] */ -3,-39,-71,-7,6,-67,56,-62,10,22,-32,59,-59,-71,-17,-70,-56,-10,23,63,-44,-41,-36,-127,88,-39,26,57,71,46,-57,-102,3,-87,-19,-8,-5,42,-23,11,-7,-5,-81,33,-3,-22,17,-23,-47,-13,42,31,36,6,43,45,7,13,-66,-10,30,-73,-27,29,18,-90,-52,69,71,-77,68,-8,-72,54,69,-33,-58,78,-53,1,72,-18,-107,83,-9,-18,83,20,-39,16,-43,-75,-79,1,30,-88,-31,-42,-37,-22,-39,-7,-37,17,-6,-112,112,-20,0,-5,-43,28, /* [956][0][][] */ 46,-2,-24,46,52,-78,-3,-60,11,40,3,-1,48,27,38,-7,62,52,-39,-9,120,63,87,72,46,87,3,-52,10,78,-34,22,11,108,1,10,-20,-21,11,63,-41,-26,15,-27,12,39,-7,-30,45,10,49,-29,-14,-5,39,54,22,-48,-2,3,12,-22,-92,3,36,41,-85,-31,-84,23,-49,23,-27,64,0,-11,83,61,91,-116,83,85,13,28,31,127,-103,40,-52,59,-53,-74,40,36,-4,-20,21,20,-105,109,24,-72,-46,-93,-13,34,-11,-52,106,-46,53,-31, /* [957][0][][] */ 2,42,8,-12,-60,-16,19,-27,16,35,-42,26,-33,4,-9,-70,5,119,7,-19,14,36,12,49,-14,3,-8,-14,-11,-42,59,4,-56,12,110,-3,23,-22,6,103,-41,110,-17,-83,-85,58,35,24,-31,-27,24,-14,16,-31,17,-24,-39,44,44,2,-24,-5,-85,18,-1,-44,-65,82,-4,15,10,-14,-33,-11,13,66,-127,11,-22,-7,32,2,-49,84,15,43,-42,32,20,-64,-25,-5,-63,-67,-18,40,-2,-59,-116,96,48,-53,59,53,-55,21,39,-105,-7,-6,-37,26, /* [958][0][][] */ -33,6,28,-15,-48,6,1,57,-31,-12,-127,16,-107,37,-30,43,-65,-30,32,-61,-45,-10,-9,49,-25,-39,-23,44,1,-27,27,5,-51,8,-38,22,-6,-5,-11,48,-89,-24,-31,-20,-76,95,0,29,15,-6,31,42,36,-5,-54,-47,-59,9,-5,43,-23,-23,9,14,-4,-31,-39,33,-19,-49,30,53,-15,9,-31,-14,19,-25,12,-23,-13,-10,-57,32,5,13,8,-66,40,84,-16,-36,-9,10,64,6,44,-34,-5,-26,-18,23,42,14,-32,29,-40,-73,60,78,-38,-78, /* [959][0][][] */ 78,-41,-34,49,100,16,-34,23,-1,7,42,29,32,67,59,-5,40,53,-66,7,62,21,49,107,95,25,-50,11,6,-13,-8,-36,14,8,-18,-4,77,28,19,-23,-2,-18,44,18,68,-42,18,-28,26,49,46,-15,-47,47,127,-22,-47,-8,33,10,31,-14,-53,49,4,51,-17,75,12,34,-36,-10,6,50,33,-23,-27,68,0,20,38,-1,3,-53,-58,25,-48,-7,-69,-53,-67,47,-20,63,53,18,-42,-35,57,25,13,35,32,-3,-6,54,68,13,21,1,11,10, /* [960][0][][] */ 25,25,-35,21,48,65,-31,127,-42,-13,43,33,-26,121,-96,-69,-8,-45,-60,-93,-13,1,57,-5,83,-58,31,34,1,30,11,-29,-52,26,-48,36,33,94,16,10,66,46,17,46,-94,-13,-15,-97,52,24,23,-2,29,-28,-37,41,36,12,33,-62,-8,56,13,-79,64,-82,-17,53,90,58,8,-35,25,91,54,11,20,-13,18,98,44,3,-23,-28,7,33,-48,-52,29,45,-34,-22,77,58,45,-75,-32,-33,38,4,-58,-24,41,-12,-101,108,44,-29,-1,58,-36,56, /* [961][0][][] */ 53,74,-60,31,27,-53,-127,-8,79,27,-15,-2,-54,-48,12,-61,-65,17,-32,112,-12,-54,-29,-74,112,-20,53,83,50,-23,-57,-62,13,18,37,27,-47,-34,-13,24,41,37,-21,91,-100,6,40,30,1,38,-21,-57,54,-71,28,9,-81,11,-33,-9,-24,55,10,-64,52,-57,-99,37,67,8,-49,60,-34,86,-11,50,49,25,39,-4,88,-45,-117,5,76,-3,29,-120,-2,-53,-53,103,70,-15,-67,-9,-40,20,-122,-25,41,-47,54,-42,-33,-21,-15,-59,-99,-35,21,-22, /* [962][0][][] */ -108,47,-68,-64,-24,2,-12,8,105,-41,-40,16,8,7,-18,48,20,70,11,30,17,-6,-59,101,-5,31,-38,-10,12,19,-10,47,24,83,20,76,62,-2,-89,41,-71,-56,8,30,5,45,-11,-62,48,-12,56,-116,-42,-35,-15,-83,85,-16,-16,28,27,44,-77,-40,-23,-15,-98,-48,-31,36,27,-127,0,6,-15,4,72,-3,-28,-56,63,60,59,8,12,43,-21,16,0,-21,35,-7,-57,28,-100,14,14,20,2,-23,-70,-82,-13,-45,-25,14,-8,49,114,-9,36,-62, /* [963][0][][] */ -21,64,-11,0,-104,-7,27,75,21,-30,51,11,7,33,2,-23,-27,3,9,-69,0,-29,20,8,17,-46,10,10,-25,-60,-17,21,-19,17,95,58,-5,71,-22,6,-83,14,-14,127,43,18,5,2,46,-4,23,2,20,-34,-29,-77,66,-32,-9,15,-63,30,-67,22,-41,-17,5,27,-39,-54,-2,-25,-69,25,-38,24,16,17,-27,53,50,34,20,51,-2,30,15,-32,-3,-16,53,17,-23,69,-1,-25,-3,-50,18,-8,21,-43,58,59,20,-13,44,-44,-54,33,16,-16, /* [964][0][][] */ -35,-76,5,-56,-102,-94,-17,-43,51,-13,21,43,-1,-45,33,-33,97,12,-6,46,42,2,-41,11,65,55,-91,-21,9,96,-86,13,-127,-11,-96,47,0,-50,2,-18,-64,-23,108,57,92,-53,15,55,24,-7,37,-44,127,-99,63,-62,-37,-71,-39,-71,13,113,-7,68,62,-106,66,6,40,5,-13,-60,-40,-33,49,10,-20,22,-4,123,-49,76,9,-9,-32,-16,-71,-93,-55,-22,-108,41,-70,94,-69,14,-5,53,85,66,-38,31,-29,-12,59,114,32,13,83,19,101,39, /* [965][0][][] */ 47,-26,36,-78,18,17,-90,-63,-104,-39,-6,-10,13,13,-45,44,33,-14,47,-56,-110,-15,-83,11,44,-59,26,25,83,106,12,-73,21,-79,-62,43,-24,62,45,-11,45,42,-105,61,-54,55,111,60,-20,-23,-104,-24,-2,-127,-32,22,15,24,-37,-43,74,63,-52,-22,-3,-87,0,15,3,54,-17,88,-105,-14,69,-1,-29,54,-17,-38,2,52,-20,55,-42,-105,51,-23,-65,-13,-105,-5,-31,-46,22,63,-42,25,-1,14,-40,9,-27,30,-121,-7,68,5,-38,73,-46,52, /* [966][0][][] */ -56,-2,-18,-11,32,-6,-48,82,81,-18,99,68,16,48,89,53,-39,-77,4,-101,51,-45,14,-31,-66,-40,2,92,60,-27,110,-18,88,-7,-7,-9,-23,-57,20,-57,77,90,12,-82,-35,9,7,-45,-12,-100,54,63,67,64,-110,-38,18,-26,-84,59,-120,-14,41,-127,33,-69,38,30,22,-71,32,56,-107,68,58,-4,-94,4,-40,-123,-44,47,5,106,63,86,-4,-46,-22,47,-96,11,-125,24,-28,-10,-51,24,-49,-105,75,-42,-70,81,-122,45,4,-85,-16,-24,16,-83, /* [967][0][][] */ -16,5,-22,-64,24,-5,-81,19,-56,0,-25,-19,-62,24,26,13,-1,-32,60,1,84,-56,-75,-68,-28,41,-10,28,27,25,-33,-127,-51,-7,-1,-13,5,-58,56,69,-87,2,-41,-44,-4,-12,-20,-60,38,12,-17,68,20,-28,-19,3,-46,-21,26,-23,-2,-75,-43,-2,-15,-62,-44,29,49,48,-9,62,-26,-31,74,51,-22,-80,-103,42,83,-40,-84,34,45,-66,-30,-19,-49,-8,-77,-17,-9,36,67,14,-12,-54,-17,-40,-67,-29,-49,-5,-124,25,40,-43,-21,-4,-29,0, /* [968][0][][] */ -30,-13,-32,-75,28,23,6,-34,99,-26,44,-24,80,24,59,14,11,35,-28,30,5,-15,-19,57,-18,12,-22,27,-64,19,-88,-30,28,-40,23,7,-48,-2,-3,0,6,-22,51,-12,-57,42,-33,-71,8,-24,26,-52,-16,-20,57,-2,19,36,-35,44,65,91,-84,-16,-43,-10,-40,-27,-26,-15,-58,-127,21,28,-33,38,63,52,-8,-8,-5,31,22,2,-13,72,-55,-64,37,-43,6,-49,33,60,-110,-35,54,1,26,-6,63,0,13,11,-44,31,-58,-9,36,-15,82,-36, /* [969][0][][] */ 9,-31,51,-40,-50,-45,28,25,-8,2,17,103,29,-4,69,-28,67,-36,63,10,12,-54,17,-16,6,-40,-12,43,35,-11,-28,-19,-97,19,-9,50,3,-23,38,-22,-64,56,-35,4,-4,-26,-10,-49,61,-9,11,22,16,-47,-19,-60,8,30,-3,24,-43,-27,48,-42,-34,-17,-13,69,-53,55,16,-33,-31,36,65,54,22,-61,21,16,42,28,-42,67,28,-39,9,13,-20,37,-2,-63,-13,73,64,8,-72,7,-39,-46,-64,35,23,44,-9,-11,2,-70,-127,37,27,-34, /* [970][0][][] */ 51,-28,16,32,53,28,-74,-72,74,-18,-33,23,125,47,-17,7,7,-7,-68,-8,58,-17,17,48,120,96,-4,29,3,-43,-110,-67,71,58,95,-19,-17,-77,5,-24,-47,67,-24,-3,2,-19,-64,66,-29,23,-67,-42,97,53,120,0,-59,-27,-127,33,23,63,-106,62,-48,-25,-72,18,36,25,-54,45,14,82,52,66,2,72,-18,64,-18,-57,30,24,-111,120,-5,-37,-79,34,44,47,18,66,12,51,79,-10,-7,-1,116,21,3,110,-34,-10,-33,46,60,1,48,65, /* [971][0][][] */ 76,-75,5,108,12,-8,-23,-30,97,67,5,-40,-37,19,16,-62,15,48,39,30,21,-23,31,51,48,14,-10,-43,71,72,67,-20,3,70,75,27,34,93,-32,38,-33,-11,-2,24,-1,36,-23,48,12,19,17,46,50,24,48,32,-28,40,37,34,-101,5,121,-5,74,-66,-29,98,39,95,-34,-40,31,105,32,55,35,-14,-42,42,81,78,-35,-3,25,43,127,-72,60,-14,-21,-95,17,-50,-81,-59,6,-65,-110,38,-25,-67,45,36,-49,23,-13,-14,118,10,3,-25, /* [972][0][][] */ -20,-54,32,44,-29,29,-52,-6,-16,-54,33,-37,3,-48,16,-65,-67,-61,98,16,-53,-13,28,-21,-10,-32,21,-38,51,28,24,-19,-12,13,14,5,42,-1,4,60,-1,-28,-55,-35,-2,-1,-19,4,-60,-21,3,-20,26,-47,-5,-1,-1,56,-26,-2,-38,-23,43,-26,20,9,-45,-10,81,-9,40,-94,28,105,-59,62,-64,15,-66,-76,19,-11,-59,8,-28,13,14,-4,-47,-49,-62,-20,29,32,-72,-11,-9,4,-32,-40,-16,-127,3,15,-21,23,39,2,-30,106,-29,-35, /* [973][0][][] */ 43,-32,-48,32,72,-40,35,-127,17,-1,-2,21,119,9,18,-33,23,-26,56,42,80,-88,-53,-8,14,72,-14,36,45,105,55,26,16,7,-39,-9,30,6,10,-10,31,-80,37,6,3,7,64,24,-20,-11,-33,48,9,25,40,-27,59,-32,-39,-14,12,27,-34,14,-19,-53,-67,-27,44,43,18,12,-11,-5,-36,-59,-48,72,10,-40,-26,92,73,-42,-55,1,-48,2,24,-47,70,-7,5,22,7,15,61,-55,56,111,61,5,14,12,-4,-3,-29,14,-43,68,48,-12, /* [974][0][][] */ -35,99,5,-88,-17,-26,27,-5,-1,-3,31,26,-41,45,-23,20,-8,-12,1,37,17,-25,-65,-30,38,-24,54,-53,21,53,64,-31,-40,69,45,3,1,21,21,54,24,98,5,15,-29,47,49,-86,27,-10,-32,74,32,-50,-36,1,16,-5,-13,-11,-33,-40,-57,-79,26,-40,-92,8,127,-12,-41,-37,-102,-11,6,38,-23,-7,-6,-26,41,32,-59,26,38,-69,-53,-69,36,5,4,-29,3,15,4,-37,-61,81,17,47,-23,-88,-20,-74,-73,3,37,-62,19,-1,12,63, /* [975][0][][] */ 104,3,-48,13,-36,-52,-64,-48,127,-2,-53,-55,21,21,29,-10,16,4,-55,30,59,-1,89,-23,69,-34,-9,18,48,43,-16,84,8,-27,-61,-39,51,36,31,-11,25,-18,-7,19,-57,-49,13,33,66,-64,-9,18,24,-5,19,-6,-10,-38,-42,14,11,-12,-35,108,-30,26,-47,3,-51,84,-76,-41,1,15,22,-42,21,3,69,16,51,1,8,-105,-21,-4,-55,-44,-30,-79,-17,40,-14,27,-69,9,0,-91,-59,95,33,-20,-33,-23,49,36,-4,29,-7,6,-41,24, /* [976][0][][] */ -38,-14,10,-27,-28,86,-40,-9,-78,8,48,-28,-81,69,-84,-25,21,26,-4,-39,-8,-66,-12,-11,-3,-21,-14,64,-2,-25,4,7,32,-42,-41,51,-13,73,64,-38,-33,5,-81,127,16,-61,24,-42,27,-36,-30,51,11,-67,-22,5,-36,35,-11,-80,-29,86,33,-11,4,-47,-37,17,-32,15,-26,-33,12,5,3,-36,23,-82,-67,78,70,103,-65,21,-22,9,-28,-36,-65,37,-43,-78,84,125,-27,-42,38,-101,5,7,-51,-106,33,59,-59,-39,45,11,17,55,-18,-7, /* [977][0][][] */ 31,-44,-78,-5,2,-63,-53,-51,40,-45,-42,27,57,-23,68,13,29,-13,23,-22,59,-3,34,-6,-1,69,-31,-22,-4,114,-22,61,-17,-42,-17,63,73,43,23,-26,-108,26,-71,-48,-77,19,-53,34,-38,-4,34,8,21,-10,52,14,67,-111,-64,-61,-28,51,56,11,6,-2,23,40,34,44,-65,-1,-6,2,-6,-31,-32,-2,39,-63,40,106,104,6,-12,59,-127,-34,-2,15,-45,12,-19,-40,38,20,-67,-18,-74,0,5,-85,-58,-73,24,52,35,-2,49,-84,14,-12, /* [978][0][][] */ 34,-47,-78,-4,-72,2,-30,43,9,14,8,-50,-36,55,65,-46,-24,-47,117,35,-57,-36,-46,-37,55,-7,-3,90,-4,33,-3,-1,-63,1,-9,62,-78,32,25,15,-14,48,-83,21,-35,-41,-24,14,43,-27,28,127,-55,24,-7,-2,28,10,-12,-41,-34,-2,97,57,66,-16,-8,61,-1,18,39,-101,-40,17,44,42,2,15,-36,-64,7,3,-21,8,48,-35,50,50,35,-30,-86,-58,-14,44,-1,-73,21,-78,-41,-15,-26,-65,-14,-4,-31,-25,-4,-25,6,35,35,-8, /* [979][0][][] */ -32,99,-12,-28,94,-27,-53,-91,10,-91,-8,86,43,22,-53,53,-59,70,69,-60,-71,-73,5,-46,-50,5,-30,-42,30,12,39,-23,-18,-63,43,-13,47,101,40,77,42,27,-17,26,17,-49,-1,-55,-4,-3,107,48,-38,-3,-64,15,-41,15,-9,-53,21,-31,39,35,-71,4,-16,-29,97,-95,103,-24,-22,-37,9,114,-43,-9,18,-44,38,20,-25,56,9,-87,-45,-67,-74,20,-127,-32,11,-32,-21,-68,-57,71,50,-38,11,-61,24,12,-82,-44,124,-49,22,-8,-55,-35, /* [980][0][][] */ 67,-37,31,-47,-3,35,-21,75,-37,-22,-34,84,0,14,2,53,1,60,-2,-48,-25,-26,-8,42,34,-26,57,-10,6,-28,19,-18,18,-16,18,50,-52,-32,-63,-50,-6,-23,-94,-14,-3,-6,-8,-12,127,-69,9,40,7,6,20,-27,-30,42,1,30,-28,-56,-45,-44,31,-69,44,-44,39,1,-29,3,14,21,16,55,-8,-9,-25,28,43,4,3,7,-11,6,-56,-62,-7,-1,-51,2,-40,74,55,11,-2,-24,14,4,-63,-23,47,34,-123,-32,-32,-56,-33,82,-32,-35, /* [981][0][][] */ -22,-61,-49,-6,18,24,-59,15,84,-6,2,51,-73,72,39,42,14,28,27,-39,-38,-40,-36,4,34,29,-23,59,86,31,-14,49,-38,8,41,0,-16,127,-74,67,-22,14,-55,66,-44,-36,91,-20,26,13,10,40,-86,39,53,-60,-44,22,-50,-50,49,-29,35,-19,5,-47,80,46,16,-102,33,-16,1,-5,81,60,28,4,19,-47,26,9,-47,82,28,-79,29,32,9,-34,-68,-49,9,-15,63,-11,0,-29,-10,-68,-120,14,-21,-27,32,12,71,-26,-53,10,-20,-69, /* [982][0][][] */ -13,12,-29,2,-1,-4,31,-5,8,-55,20,48,-32,45,51,1,37,19,14,63,59,21,-14,-10,-32,56,-4,-39,32,9,30,-39,-17,35,26,36,7,-23,46,-41,-1,44,-8,-21,-53,47,-35,-67,-21,37,43,-25,40,-5,-6,20,18,-127,24,-50,8,-19,-19,3,18,23,-64,-70,13,44,-5,25,-30,-33,33,7,20,16,18,30,-2,-55,11,-35,-28,36,-50,-6,-66,-68,-33,22,-1,-5,2,65,-45,-10,53,25,5,-6,-29,28,-3,28,54,16,34,6,56,-6, /* [983][0][][] */ -53,-71,-121,73,-45,-20,-46,47,7,9,-24,-2,-7,45,56,84,82,-32,50,55,3,-30,-16,-44,-8,24,-29,44,32,44,-37,-69,-17,-13,-38,-29,58,42,-2,-45,-40,14,14,62,-40,-44,-39,-1,23,-32,-30,-32,48,-22,-107,-32,21,-36,-49,6,-30,-17,23,100,34,32,28,2,67,-13,22,8,-6,34,10,8,-28,55,15,-7,-15,-45,-7,30,-60,20,-101,33,1,43,-39,-68,-32,-75,-45,18,12,3,13,74,26,10,-22,13,82,34,91,-69,127,59,31,-11, /* [984][0][][] */ -79,-63,-23,-27,-57,-8,-122,12,-88,-8,-53,-13,-80,31,-100,67,63,-42,-40,4,74,-9,-12,13,0,-32,105,62,-15,-66,20,24,-35,-27,-15,75,-7,-5,-23,18,-58,-31,-120,62,-70,8,-27,-47,6,0,54,2,0,9,-89,-27,33,26,0,-7,-9,16,-23,10,-34,10,9,-22,-36,-91,-22,19,61,39,54,75,-10,-54,-127,3,29,47,-58,12,28,1,25,-32,-34,82,-74,102,14,-27,56,110,-43,-108,-61,10,19,-119,76,50,-85,99,-35,-28,-2,46,-93,-14, /* [985][0][][] */ -18,40,-21,-14,42,36,-95,47,3,27,32,-22,2,60,-36,-41,-17,-14,-39,-43,-80,-47,12,49,-1,-49,-1,60,31,21,38,-1,20,109,-18,28,-22,82,24,-16,-8,35,12,12,52,46,36,-55,27,-14,-60,-46,101,-94,-8,-28,-62,21,13,-35,-127,9,25,-85,2,-72,-52,104,90,31,15,-43,-17,-25,-42,-24,5,10,-31,54,74,16,-8,13,55,52,33,72,10,-29,-106,72,-5,21,-24,-65,-18,75,14,37,47,-1,4,33,-49,-19,44,-39,-5,-16,70,6, /* [986][0][][] */ 19,-70,-55,64,15,-4,23,-87,3,-6,50,-38,-2,0,-3,77,0,-50,29,23,-33,10,-46,23,64,-19,31,6,70,43,-65,31,-38,38,-65,5,-18,25,6,-43,-59,-15,-35,27,-10,-41,19,-127,28,-3,36,8,11,24,65,59,56,-45,-26,-46,120,-68,-42,31,-64,10,-11,0,7,-54,43,20,-29,-37,-3,2,28,73,43,-30,50,16,-16,-39,-43,16,-26,77,-12,-40,-31,22,-20,-42,53,65,-18,-27,-15,19,72,57,-26,-4,13,9,-9,81,39,17,51,-21, /* [987][0][][] */ 29,-33,-11,-20,22,6,-6,11,32,-24,23,67,78,109,-49,2,-4,-29,-18,5,46,40,74,31,22,38,19,43,-43,4,-64,-15,-18,91,-16,35,30,-14,41,-58,79,41,75,7,-63,0,-25,-27,21,37,61,-42,12,-31,-47,47,67,-5,-28,-24,-50,33,-45,-13,-28,42,-87,-1,-63,52,16,-15,-59,3,85,83,64,-3,96,10,-70,29,49,3,-56,25,-21,-71,-1,-77,30,-7,40,97,4,127,-37,-18,53,59,55,44,93,-32,90,45,-23,-60,13,10,-2,23, /* [988][0][][] */ -3,-7,-36,8,-17,19,0,-4,-4,-64,-2,-49,101,15,-82,23,41,-22,21,46,-2,58,9,49,-35,-11,-111,26,-40,-23,-38,39,-78,-7,-44,51,41,65,57,29,11,15,9,6,-11,4,-108,-27,-53,-67,32,78,2,-39,-6,-9,30,-53,-26,-18,4,51,0,-13,17,-17,8,-92,-5,53,35,-63,33,-127,19,57,75,16,-14,-101,-21,80,-9,-94,-57,103,-101,-51,-72,6,-37,45,51,-27,-46,-2,31,-8,63,-81,18,-31,48,-108,14,51,6,-8,107,2,-21,-18, /* [989][0][][] */ 1,-64,-126,-44,-24,-48,42,42,22,28,10,29,32,38,35,13,-2,77,-36,-21,69,-38,-63,29,86,23,17,72,-15,6,-25,24,-28,2,116,59,51,-11,-66,72,-58,-15,57,-82,-64,-10,8,-7,99,-14,-22,-18,-65,-22,-7,-59,41,-53,16,71,19,32,-17,-52,-57,87,-72,3,40,-15,5,-127,-2,-9,-41,18,65,87,84,59,46,13,48,-79,57,-14,-42,-108,-22,-57,-21,-8,2,42,-37,-9,15,7,32,18,99,15,-26,92,62,19,-84,-32,52,-49,34,33, /* [990][0][][] */ -30,-1,-44,-39,24,-23,-23,71,63,12,22,48,-74,35,-41,-33,36,12,-6,-6,36,-86,1,3,60,-13,57,-40,41,-26,-18,-17,-57,-26,22,-35,-21,109,-42,67,22,94,-81,80,-27,28,49,50,29,-17,51,-28,-78,-56,4,-4,-31,21,53,16,-27,10,-1,23,61,-21,2,94,43,-89,-60,40,-127,-3,6,120,63,-18,14,19,-9,-2,-53,75,43,-9,15,-63,-4,-72,-58,-41,-14,35,65,-48,-15,-8,15,-25,6,23,-27,47,4,-10,7,-93,12,-12,26,-12, /* [991][0][][] */ 12,-44,-6,17,8,-35,-40,14,-32,73,-50,0,-44,-30,57,18,-1,47,58,26,41,10,127,28,26,-1,98,38,43,-12,-38,-26,-42,15,30,2,-5,-15,-49,52,-4,57,36,-10,19,5,42,-7,38,-32,5,63,-18,-45,-5,-17,-27,41,27,31,3,-101,-39,19,35,50,-56,20,-15,49,8,-19,-19,38,-2,48,-48,64,-27,-5,22,-8,-25,-23,10,14,-35,-23,34,-61,-9,-2,29,-50,-20,19,1,-50,27,14,52,-115,31,92,7,-30,60,-39,10,46,-16,74, /* [992][0][][] */ 68,-47,-9,-20,20,-31,44,-2,71,-30,-26,37,3,-52,-51,-39,-66,29,-16,-23,-5,-18,-14,-13,68,-55,31,42,-5,56,-23,-65,59,63,127,57,-82,-44,-39,-37,-57,-10,-39,27,-41,77,25,41,-10,16,-100,26,9,-6,-51,-92,-39,47,26,-12,-100,-6,-103,-27,-69,-21,-58,63,-60,-54,-30,-83,-26,9,-11,52,46,-1,-2,-105,42,34,-13,26,-28,-45,36,-34,36,42,28,26,-37,52,-61,-20,-2,-37,24,53,4,-25,20,19,-41,6,-23,-80,0,-14,32,10, /* [993][0][][] */ -8,-57,-78,17,37,-47,-30,30,-22,-6,-37,112,-39,27,38,-52,24,-27,40,73,-47,7,23,-19,-5,-54,-49,24,-28,74,57,-93,-14,-4,-13,-65,-19,4,22,-1,-106,67,-92,-39,-45,79,17,-5,28,41,-11,-51,-28,26,-6,-106,-99,3,-112,-108,-46,48,67,-9,-13,-66,33,-8,42,-61,14,-5,-39,98,28,-43,52,38,-36,-117,11,-28,-11,10,57,-66,-18,-15,14,62,22,-63,-3,41,88,-117,-34,3,-26,-15,94,25,18,-19,7,31,-36,-29,-73,127,38,-22, /* [994][0][][] */ -29,-4,-20,-18,-117,0,-19,-37,-43,-53,-25,-72,-96,34,33,6,-30,-35,-8,-105,-32,29,61,8,-26,-62,58,6,54,-3,48,-56,-41,-6,10,38,-55,18,-27,47,-77,8,43,-31,-63,-43,3,-82,40,18,17,111,49,79,-34,-19,-15,21,56,8,-42,13,61,44,-71,-7,-27,-17,29,-28,-30,-92,34,70,-55,127,-5,92,-49,-17,14,19,23,-11,25,33,19,37,32,-60,-15,8,19,25,-14,-90,-48,-42,-11,7,54,-55,40,50,-3,33,-2,-5,-22,8,-30,90, /* [995][0][][] */ 29,-15,-38,39,-17,-30,-54,58,-33,-7,-64,2,11,16,1,-45,-64,15,38,-60,-39,-100,31,48,7,19,3,15,1,-34,-25,-49,-30,50,60,17,-4,9,35,-58,-7,0,-78,45,38,-50,25,-31,-42,-34,-32,23,-60,-9,-12,-81,-54,20,24,15,-78,0,60,-29,-30,-25,-63,104,-6,27,59,-64,-51,17,-25,-14,-73,51,-62,-54,20,-1,-35,-9,41,17,40,20,85,-56,-27,-7,-2,-31,-7,21,-15,-26,19,-74,23,17,-56,127,-7,7,2,20,27,-8,116,-8, /* [996][0][][] */ -18,35,55,26,-35,-81,88,23,-30,-28,14,-10,28,19,-63,-40,39,49,96,-64,33,-25,-64,23,-67,-36,-2,3,5,42,-67,-76,70,-6,46,77,-44,28,14,-25,-120,3,-8,56,0,38,53,25,4,45,44,36,3,27,-101,-78,0,29,84,-63,-9,-41,-84,-71,12,-75,-61,91,-42,-60,3,33,-81,29,-18,49,47,-25,-48,-58,27,111,-16,60,7,-100,29,52,-48,2,52,-66,14,-26,-51,127,-35,-19,-73,-5,-29,-43,33,82,-79,-40,-2,-114,86,-31,-21,-26, /* [997][0][][] */ 46,9,-58,51,-4,59,53,-58,37,-6,2,-26,127,-12,-51,27,22,-4,18,-25,51,1,24,17,-66,15,13,3,13,21,-51,38,-37,24,-27,23,59,61,-51,73,15,-13,-5,-37,-30,65,-50,30,-3,-16,64,8,-32,-38,26,-32,18,26,-5,-8,50,85,11,29,-11,-18,-27,-37,34,49,-14,4,4,-55,-38,23,-21,59,-45,-47,5,30,15,-22,-2,57,-39,0,-41,-33,33,-88,-3,14,-44,-9,10,2,40,-78,-53,-8,-32,-73,-57,-65,-24,2,64,-1,19,-9, /* [998][0][][] */ 45,-14,35,7,-42,-31,2,2,-15,-77,54,5,-1,78,-12,-56,-22,-49,-4,-86,27,-68,-46,-1,-74,-1,19,-25,43,-2,127,-19,-83,-36,-33,-19,-29,-24,-17,-28,-5,48,22,44,-51,-17,6,-33,48,54,19,44,-12,-26,-102,20,-2,40,60,-37,-99,5,4,-21,67,-84,-33,90,22,25,68,2,-64,63,81,38,76,30,-34,26,-9,60,3,65,9,51,40,44,-82,69,-13,50,47,54,29,75,-48,-29,-6,83,-6,-38,-41,36,-13,-41,41,-84,-51,-9,-55,-99, /* [999][0][][] */ 35,91,-55,-32,26,-21,59,-25,4,-46,13,47,5,52,6,-10,-26,58,27,-5,-13,-54,-8,-69,-21,-50,-8,-30,-54,10,10,-67,-1,-73,62,-10,-1,-1,-94,14,3,5,11,-13,-40,10,54,-5,40,-88,15,32,-67,27,-29,-78,-15,53,-50,-35,54,23,-9,-8,28,-44,-45,21,4,-76,64,-73,-28,13,3,104,-15,30,-29,-46,-19,-39,-27,13,-9,70,-11,-26,-42,-18,12,44,16,-53,-127,34,27,12,28,-39,45,-48,7,16,-41,-75,-2,21,-3,73,6,2, /* [1000][0][][] */ -43,-58,9,-33,-45,56,18,-55,-9,-34,37,-30,-47,51,-93,90,33,-51,-3,-102,95,-80,-116,81,41,6,-100,45,63,19,-61,-83,1,85,-16,88,-10,-25,108,11,-76,7,-41,-45,-63,38,6,-34,92,-13,115,16,-30,-10,-46,85,5,-22,-18,2,92,-3,-48,-27,-33,27,48,-4,91,-57,30,3,0,-27,39,-58,-5,-4,-13,-34,-24,-74,-51,-26,-114,23,-23,-14,23,-44,-27,-63,-48,-5,8,-5,115,62,127,-13,43,45,33,-43,6,-28,-38,90,96,5,52,-31, /* [1001][0][][] */ 96,-28,5,52,-49,-38,20,1,36,-31,-59,20,-80,-15,80,25,-13,15,-24,-41,-6,-64,73,40,-27,-106,-26,120,-46,91,105,-106,14,-32,-37,-41,-36,-53,-8,-76,-63,64,-27,-95,-46,-38,39,-28,84,-19,-36,111,29,-38,-91,-47,-59,-9,6,-3,-53,-63,23,60,9,-70,-3,47,-46,92,-27,-49,-65,-40,-38,14,-7,-28,-39,-39,82,23,-32,55,18,0,27,32,-19,66,47,-7,-24,15,72,27,-49,18,-25,-54,-57,-44,-1,40,-127,29,70,-26,-56,25,-96,31, /* [1002][0][][] */ 16,-25,44,-22,-41,-2,-13,-32,127,-13,-62,-21,-8,19,59,71,33,-15,0,40,2,10,5,5,-64,-3,-50,59,-62,47,30,-39,19,3,27,-15,-17,-33,-41,-12,14,8,23,-52,-62,-1,-36,-49,50,37,36,-1,-27,-13,23,-40,33,-79,17,-49,44,17,22,15,11,6,-41,-55,-21,61,-22,-72,-40,-20,50,72,-1,-5,-13,2,-21,-6,58,-12,4,-34,-27,-26,-54,-21,35,-11,-69,27,-19,81,53,-46,-19,-23,51,-20,-26,2,-41,38,4,45,28,-4,34,35, /* [1003][0][][] */ 4,75,-30,33,-7,55,-127,49,-89,-1,-6,29,-91,9,-58,-14,-10,20,-76,-57,-36,-108,24,47,-55,20,74,-46,-15,-24,60,2,60,65,34,103,62,-5,-77,-26,15,45,-22,-30,16,-8,83,-27,-11,-12,70,31,0,38,81,-56,-17,92,-60,-65,38,24,-50,-37,-65,-91,-63,29,3,-34,15,-67,-17,70,-27,15,-30,116,-12,-13,21,60,-59,20,30,36,-28,-85,43,-73,45,15,33,-16,-114,-11,13,-35,-76,25,-6,3,9,-65,-26,-21,24,33,-50,118,8,22, /* [1004][0][][] */ -45,-30,-3,-11,20,-10,-3,2,-62,2,-25,71,49,72,-76,123,-16,-9,2,-25,12,28,43,-15,-74,35,8,65,-8,46,15,29,19,32,63,-30,-28,11,73,-55,49,25,-116,12,-8,2,7,-116,87,-96,13,28,17,-18,-30,-31,39,48,-55,40,-72,-65,35,-7,-14,-20,24,40,-44,-49,58,16,-21,74,127,35,47,5,-41,-33,37,-64,-25,18,51,42,69,6,18,8,-45,-13,32,66,-3,49,-5,5,-51,-55,-41,-19,36,-7,-69,23,21,-4,-113,-9,10,-68, /* [1005][0][][] */ -6,63,-21,35,46,20,15,40,19,103,-92,-21,74,66,-95,7,-14,29,55,-48,-116,-52,13,68,-18,-41,0,47,-9,127,73,17,7,23,-111,31,-26,-24,-86,43,-105,2,18,18,3,29,44,15,26,63,38,67,21,12,-51,-36,4,-73,-50,-105,-90,13,-58,85,35,-46,-60,-15,42,-3,27,-27,7,-9,29,-12,-8,33,18,-98,-37,72,-3,34,-41,-46,105,11,103,-26,73,-20,26,27,51,-45,37,15,-33,-28,83,-24,83,52,23,48,-1,-96,-40,61,-56,19, /* [1006][0][][] */ -4,-31,36,50,-77,11,-16,-7,40,28,15,-72,27,14,60,-57,-13,32,49,20,-85,-106,23,-82,-14,-66,-18,-5,74,43,70,-13,-81,-30,53,-10,6,-34,4,16,45,49,-20,76,-81,12,44,22,-70,-68,20,-9,39,-12,-6,-19,-83,-8,4,-74,15,41,78,-22,41,3,-15,-55,32,18,25,-75,-14,127,48,-4,-34,-40,-70,-19,-25,30,-12,15,12,8,-55,-53,83,-67,57,-9,-70,-49,-41,-55,9,-88,22,37,14,-78,70,81,-38,36,47,3,-31,24,98,-47, /* [1007][0][][] */ 24,73,2,52,1,87,29,-58,6,-108,-55,37,0,35,-87,-59,-44,30,-31,-12,18,-10,71,39,69,-16,62,17,109,-87,-35,13,36,-14,-6,97,-20,-66,-7,49,20,-42,-46,47,-28,75,6,29,37,-73,13,1,29,47,11,-44,-101,30,35,-18,-36,6,-28,24,-15,-62,38,-46,33,-14,-34,7,76,119,13,56,-44,46,-29,-30,55,-74,-127,-47,-67,-16,69,14,2,-14,23,25,56,113,80,96,-62,13,0,-35,-38,-37,71,0,-24,15,-6,-47,-60,39,2,44, /* [1008][0][][] */ -29,26,-40,-22,9,31,-47,9,-2,-27,-36,-65,43,86,45,34,37,36,-35,69,62,66,-51,82,-19,21,-22,22,-14,11,30,11,-59,-4,-127,32,-6,16,-61,25,-77,4,45,-71,-33,17,37,-79,32,-31,68,-19,79,5,74,-90,3,-37,-61,64,22,-62,-72,-19,-20,63,64,27,85,-17,-91,1,8,7,-60,-78,3,32,-21,-15,-19,21,0,-89,-20,72,-88,20,-15,-48,-69,-19,-108,65,24,-15,-50,-7,-6,15,-63,-50,-88,-25,-11,24,90,-15,40,-4,-9,-8, /* [1009][0][][] */ 32,3,33,-14,-22,-43,31,-24,7,23,-20,51,-46,24,-60,-19,-82,-78,-29,-43,7,-87,-77,-67,127,-18,-67,41,-19,-75,-11,-77,-20,103,-20,-14,34,16,34,53,-70,49,-83,32,-43,6,0,-47,4,-18,12,50,68,-18,-27,-2,-34,-65,31,-62,-43,0,38,0,-20,-60,-67,4,15,-58,74,4,-34,-1,47,18,-30,-48,-43,-8,100,-6,-46,-14,2,-36,14,28,37,75,-29,-27,20,-85,68,-85,51,-9,-13,-25,92,12,-20,-63,-2,-15,20,-11,72,60,96,-25, /* [1010][0][][] */ 1,-41,-26,-8,-27,6,-45,65,-35,-12,-12,45,24,-24,-59,7,-5,-18,56,-26,-41,-26,43,9,-10,-3,37,86,5,8,-1,-127,35,14,2,82,-21,15,-57,-22,-73,3,10,60,-23,2,33,-10,58,5,9,43,61,-18,-14,-38,-23,-1,3,6,-11,66,-72,43,-45,-29,-2,18,11,50,19,62,-22,12,-40,14,29,-38,-12,5,30,24,-37,13,-13,-50,19,-26,-29,32,29,-11,-1,15,52,9,4,-36,-8,-17,10,-46,20,23,26,-18,-14,-27,-17,49,8,56, /* [1011][0][][] */ -44,-13,-47,30,-35,17,7,-13,-14,21,36,41,-27,1,11,48,-7,-8,28,-15,-50,-4,25,27,24,-29,10,35,-6,33,22,-72,27,30,-33,8,-39,6,-71,-1,-1,-17,-11,-31,-39,7,11,-28,56,-32,49,-20,-51,-36,-3,-24,-36,18,-33,-23,-12,10,45,-21,18,9,44,18,8,-21,42,-23,23,11,43,7,66,45,-35,3,69,-7,-53,-1,8,-5,127,26,-12,12,-65,-66,47,-33,94,10,-5,-31,12,-21,-10,3,51,-9,-22,-18,25,10,22,70,-16,43, /* [1012][0][][] */ 94,-87,-98,-45,8,31,-38,-55,-16,-39,10,4,101,9,37,-3,-61,-49,-10,63,89,-81,-109,74,28,35,-96,-5,39,-8,-51,-6,-31,-43,2,27,23,42,119,47,-48,7,-60,72,36,-68,58,-76,37,-86,40,-1,-53,110,-27,108,69,-24,12,17,-32,-23,40,51,87,40,-110,-49,44,-19,-27,27,0,42,-24,-33,-28,127,-87,-20,0,-2,40,-59,31,9,-61,73,18,22,-37,-19,-25,4,36,-62,35,-43,-6,-5,63,60,26,-39,9,63,0,15,-7,-10,39,20, /* [1013][0][][] */ 24,-31,-127,49,12,-87,-70,21,-21,-32,71,2,6,10,-25,26,10,-111,91,46,61,-24,12,-42,-1,26,-95,-42,41,37,-53,114,-22,-17,-64,-30,7,41,-35,-8,-5,-29,-32,69,31,-32,-6,64,29,-25,32,-70,24,-30,-15,1,80,-68,-22,38,21,-67,-5,60,-41,-7,21,32,34,-79,-25,-28,-24,-20,35,0,14,-18,-66,-7,22,-67,81,19,-32,82,-46,2,20,-42,-43,-25,-51,-28,21,-17,-44,14,-21,32,8,-39,26,20,14,15,-25,3,66,10,47,17, /* [1014][0][][] */ -22,-13,-38,-55,14,-8,-89,81,36,28,75,25,-2,64,-11,81,19,-8,-19,-38,63,-21,65,-1,88,-12,-18,67,59,43,35,59,-38,-18,-28,-34,113,2,9,25,-50,-17,41,4,49,-52,44,-36,53,-42,-2,-90,14,-98,81,-4,-24,-22,-74,26,-18,30,-54,13,-127,44,27,-2,62,-7,-47,6,-32,-16,-6,-38,51,61,-6,-6,38,-53,51,-63,-60,27,-39,-9,6,-54,12,-9,-12,-38,-16,-26,-24,-23,-11,36,51,36,-21,-50,5,-75,46,59,-1,-83,-38,-64, /* [1015][0][][] */ 56,-8,-90,52,-59,-66,60,24,-30,80,93,3,9,13,75,-6,48,-47,-65,81,43,63,-12,92,85,51,-35,84,6,-71,-29,14,-9,16,29,11,16,-24,-29,24,-5,63,-32,57,10,-21,-80,-39,-19,-5,77,20,-77,-30,50,77,43,-121,41,-64,83,15,-1,49,-11,-20,-73,29,-6,-73,38,-50,16,33,127,-40,25,57,78,33,65,-1,-4,-86,-62,46,-7,52,-3,-76,75,-24,-107,45,68,-1,-90,1,22,115,36,-6,51,7,-31,96,79,-87,59,58,41,6, /* [1016][0][][] */ -53,44,-22,-59,-23,-17,-90,-119,-57,25,-66,23,-35,42,-52,3,7,8,80,50,-77,-2,24,-23,10,-115,18,11,16,36,37,-59,12,-42,-12,39,-19,40,-80,0,26,49,0,-55,-108,-49,-55,31,41,-1,-27,-2,-69,-90,-16,-35,23,-32,-74,-66,21,-19,-49,-2,-42,-87,-25,8,62,5,-4,45,-127,-91,37,15,-43,56,65,17,20,14,-19,14,11,-98,15,18,-2,-64,-64,17,23,58,49,-23,-59,-77,-10,-13,123,71,38,26,-27,38,-21,-65,-57,65,-110,42, /* [1017][0][][] */ -60,-63,-86,-14,-31,-31,-2,8,27,71,35,60,25,73,-33,19,19,7,21,-17,12,30,-86,76,-54,15,-89,-23,-99,33,-11,15,-3,5,44,56,-65,-3,62,-92,-43,-81,52,24,-22,12,-5,-47,40,-67,90,-125,-58,79,14,-74,68,-90,-55,42,-7,-76,-92,-27,-48,6,-54,-29,60,17,3,-103,36,-14,-8,-50,-40,127,17,29,12,7,-46,9,-32,31,-38,-21,-40,-64,-74,18,-66,67,13,-35,57,1,32,38,16,17,-35,15,-26,35,-5,62,30,-24,112,-18, /* [1018][0][][] */ 39,-64,11,35,55,1,-127,26,15,-40,4,42,-35,31,10,-62,-61,-14,-32,-72,-111,-58,-57,74,61,-32,-20,87,-28,-16,-30,33,82,34,22,51,-3,-18,5,-36,10,-56,-47,38,-29,20,29,-20,55,-17,-40,40,-25,25,-40,-37,-71,-4,-68,-19,50,-69,-48,47,7,4,-79,20,49,-44,52,-11,44,1,93,-2,-20,-52,-26,-15,39,-28,-82,-14,17,-11,39,74,19,12,-15,43,43,99,44,88,-44,-65,27,-37,-24,42,-2,73,28,-38,37,1,-48,64,98,-29, /* [1019][0][][] */ 38,-3,1,73,-3,-14,-7,-4,-43,-10,-59,-19,-43,-21,1,-28,14,-2,24,-40,-17,26,2,2,59,30,0,-20,54,23,56,1,-50,85,-6,-45,11,31,-38,25,-12,-14,-50,27,-26,46,32,42,22,5,-2,-4,-23,0,32,14,-68,-17,26,-4,-117,4,73,-73,-33,-14,32,37,-34,-38,-19,-41,31,36,20,-33,-37,9,3,-15,39,29,-127,-28,-38,9,28,-12,49,30,28,-19,67,-26,-12,-32,-8,-78,-36,20,21,-45,34,10,-8,81,60,-23,17,68,67,-8, /* [1020][0][][] */ -14,10,-52,-44,-12,45,38,7,-5,16,-127,14,39,58,-13,2,-29,-20,-17,-58,13,-4,69,-21,13,-28,31,20,69,30,12,-45,46,14,-35,81,-31,46,-4,0,-35,40,-2,-26,-32,-20,2,-46,-17,-11,-29,12,13,-12,-38,-54,-49,0,-24,-49,-35,3,5,34,-13,-31,11,10,32,12,12,29,9,11,21,15,-54,-4,-2,-71,55,-3,31,-10,16,-36,70,-9,1,-10,-4,51,-5,54,46,5,-27,-27,-2,26,29,22,1,-40,-21,-1,-59,-47,-67,13,7,-10, /* [1021][0][][] */ -44,6,-29,-30,-46,-15,16,-5,-37,34,-127,-9,-61,9,22,-75,-35,22,-10,22,83,-7,82,62,-28,-31,40,-15,-13,-73,3,-33,-37,50,108,0,86,73,-36,88,7,85,103,36,-2,71,13,9,0,4,5,45,-45,-31,-22,-73,-49,-17,126,-49,29,-33,-92,18,-5,30,-60,-38,60,-43,45,-5,-29,25,39,67,37,-14,5,-30,20,43,-12,-27,-7,15,4,60,-4,-26,-80,53,-7,76,4,-17,15,-16,37,-14,58,21,33,12,-26,-38,51,-77,9,58,27,-18, /* [1022][0][][] */ -87,61,24,-48,-66,56,-29,70,25,-79,-93,47,-63,80,-23,-2,14,64,-6,-40,-16,9,6,-15,13,8,61,-1,0,38,-14,-25,6,-23,-4,43,-127,91,-49,27,-97,54,22,10,-3,28,46,-36,65,-42,-3,27,58,5,-57,-29,22,-27,33,-19,-5,-65,-73,0,31,15,-31,35,3,-37,36,60,-64,38,-10,17,-2,-31,-73,48,80,-25,-10,-84,-19,34,-29,-53,-7,43,43,-17,77,73,-65,47,35,-36,35,-7,32,-3,8,8,-45,-52,-55,-21,-25,41,63,-31, /* [1023][0][][] */ 96,-8,-78,-40,11,-11,39,21,14,-19,-14,89,96,-2,28,-26,33,2,-3,-23,20,8,-34,95,47,16,-67,60,-83,-13,-127,-18,80,-46,49,0,6,-10,54,-75,-38,-44,37,43,-24,3,-17,-21,66,-41,-13,-10,-34,41,-9,-61,7,-51,6,-6,-13,73,-30,17,-39,2,-2,18,1,-5,-2,-59,-65,20,-30,2,90,32,5,-44,84,7,1,43,-10,-25,-33,-52,-18,-27,3,-22,-56,83,-42,-48,74,-102,70,7,17,-32,-39,56,-14,-28,-50,-2,80,-6,71,-42, /* [1024][0][][] */ 68,36,-3,58,-40,110,16,-100,56,-18,-89,-6,37,16,-36,-90,-5,37,48,-17,35,12,-21,-35,12,-95,-66,-39,-7,-78,44,-53,-37,-13,-47,52,-4,17,-66,109,88,81,-109,7,-35,67,-32,4,6,-43,81,-10,48,-2,-58,27,-56,-16,35,-41,-21,-9,-3,-24,44,-58,18,46,127,-72,68,-19,-31,-57,18,58,12,-27,-47,21,17,29,-33,50,-106,26,86,-22,49,-11,8,-44,79,14,-12,-44,-45,8,64,-53,-51,-75,42,-39,6,-59,-55,-47,13,34,-36,23, /* [1025][0][][] */ 3,55,-45,-29,-57,-45,5,-63,-3,-8,-14,60,19,6,-25,31,-68,36,3,48,-93,-23,-19,-22,13,-5,8,25,-10,-44,-5,-51,2,-56,33,-23,-71,104,-1,-19,-127,26,-3,29,-65,-27,-20,-24,83,-60,31,79,-80,43,7,34,48,-30,-45,7,54,-4,-64,-21,-21,-76,-23,-8,18,-70,12,-37,-100,51,84,52,-46,44,13,-53,-48,-71,21,57,34,13,30,13,-86,-4,19,14,-50,26,-21,-58,-10,-7,-3,-73,-21,20,-29,19,-84,5,20,-87,25,56,-44,-21, /* [1026][0][][] */ 13,-19,-118,-24,-96,47,-23,127,12,-45,22,23,3,67,8,38,-78,58,95,-4,-31,37,-5,-50,-2,-90,13,61,26,-57,71,-39,-91,-75,96,16,-17,93,31,-9,-60,56,-16,12,-83,-56,-27,10,28,-85,41,-22,1,8,-68,-47,-39,-25,-56,-78,-11,31,0,25,33,74,30,-18,20,-24,88,-74,-76,57,-38,64,-17,38,-50,-69,-23,-66,-19,108,-52,-3,9,35,73,-123,60,-80,-27,-18,-100,-67,5,-77,30,-111,77,-53,56,51,7,-78,92,-9,-64,-49,85,-96, /* [1027][0][][] */ 3,78,21,2,-42,-2,-23,6,53,-59,-3,0,-20,-39,-49,-49,-59,58,-10,-42,-63,-29,-11,-23,21,-60,-5,19,13,64,-24,-65,9,78,69,16,36,-38,-10,5,57,16,-40,59,5,91,17,-11,-24,-54,-19,-1,-42,-7,-4,-8,-35,8,18,26,22,-14,-72,25,-50,9,-127,-27,50,4,49,-9,-52,8,17,31,-1,-14,-25,25,91,-28,-42,25,-11,-24,-24,-11,25,43,-22,27,10,-28,-29,-16,-59,-29,-14,-2,8,-26,2,54,-38,-8,-13,-33,-6,9,55,28, /* [1028][0][][] */ 48,15,-2,5,52,27,2,87,59,19,4,24,46,-15,10,-54,-31,45,-16,-20,40,0,58,-6,-20,-26,-1,84,31,78,40,-36,-16,103,-62,49,11,-8,55,-22,-19,42,8,-14,-51,127,-17,66,-12,-79,31,86,38,22,-2,-32,-11,13,-6,-49,-79,5,-54,-28,26,5,-54,-11,-10,-16,5,3,5,-81,36,32,-8,41,66,-64,40,102,-13,-8,21,47,33,-31,5,-40,-5,26,34,35,5,27,7,-74,-45,-18,-46,13,-23,-48,-18,-55,5,-70,-18,7,2,-8, /* [1029][0][][] */ -5,-64,-83,35,1,80,25,13,38,13,-77,3,53,44,107,55,113,10,68,82,20,-14,18,51,59,107,-33,15,22,3,-10,35,-60,-2,-52,30,9,13,-38,-13,-61,1,-1,34,8,-65,-3,60,20,-22,12,7,49,11,-11,31,18,-48,-54,-51,-10,-12,30,47,32,-92,1,10,27,127,-41,-40,23,-31,-32,-2,31,-9,-39,-25,1,32,-40,-91,-1,4,-25,16,-33,19,-30,-63,35,9,62,93,-1,57,-29,-15,-4,-119,-6,52,-4,21,29,77,-14,20,3,12, /* [1030][0][][] */ 93,39,20,-36,-99,-121,-36,30,-51,-21,17,46,-68,-52,43,33,-39,19,-59,-64,-11,21,-21,37,-11,28,-44,-47,41,50,-12,-44,-70,57,-15,94,-56,-2,54,58,34,-3,-46,46,-40,28,-33,65,40,-4,12,-35,29,3,86,33,-31,-18,-95,-43,-127,92,-80,-49,22,11,37,19,22,-62,61,-47,-24,84,-19,-15,-44,114,-32,-74,34,75,-74,65,-34,103,-2,29,-49,-109,26,-40,-66,-7,0,17,-28,53,21,32,-54,30,-19,-63,-26,-34,34,27,38,92,39,82, /* [1031][0][][] */ 9,-46,-5,-39,-21,27,-36,17,28,-84,-15,-19,-3,25,-38,-77,37,57,-12,0,28,-87,-3,-49,36,35,96,-46,-5,0,18,-71,-55,8,21,34,42,-11,71,66,-41,6,11,81,6,67,20,-83,3,2,32,-27,-97,-14,-5,-37,-14,66,17,88,-48,45,55,-26,46,26,-68,-19,32,38,54,14,-51,5,-2,117,10,-12,-35,-57,56,-50,-62,13,-19,-77,90,-20,-3,26,-87,66,-18,118,19,-8,24,14,-89,-13,-2,-116,127,-32,-51,-1,9,-46,-40,-3,-29,11, /* [1032][0][][] */ 4,33,-7,-47,-93,22,1,-74,71,12,75,-7,-6,-41,19,41,28,-17,18,105,-53,-41,36,-95,-65,-127,2,8,-9,31,18,-33,5,28,-4,-42,-25,51,-2,-11,-31,44,-64,17,-25,-27,58,20,75,-92,3,19,67,-44,-14,-94,2,42,-26,-59,-27,8,5,-106,-25,-5,-4,-31,-5,-55,47,-104,-57,73,-11,61,-36,80,-108,-43,29,26,49,0,-15,-5,31,2,25,-27,12,-57,31,48,-111,8,1,-39,-15,-78,41,43,67,23,-19,-8,-30,22,-99,-3,85,-6, /* [1033][0][][] */ 14,-39,-127,68,-18,-12,-56,-38,-93,-5,-6,63,-24,-16,16,-11,56,48,-36,52,-27,18,72,54,37,-58,11,-8,24,19,63,-25,2,23,5,43,-19,7,-101,-53,40,36,-40,-25,15,50,10,38,-21,39,7,-28,7,-15,26,-3,43,16,31,-51,-25,5,-37,-15,43,-24,-48,40,-14,-47,33,-68,-29,117,8,72,41,-20,45,-81,22,79,-55,-2,-38,-78,2,-61,6,-25,-26,76,47,12,-5,-34,-41,-56,42,39,4,-59,98,-9,21,69,48,-62,23,2,7,21, /* [1034][0][][] */ -22,-62,-17,16,44,26,-80,-2,93,-25,55,-81,32,79,32,82,7,-37,25,20,49,-38,-16,2,-18,20,-106,63,48,-27,-50,-20,38,11,-38,-57,-59,-16,43,-19,50,-32,7,-56,-20,-16,-2,-102,127,-22,-11,11,8,-54,-58,-25,107,-2,-62,49,-8,15,30,17,-17,33,68,39,-12,71,-10,42,-73,29,24,-73,-22,77,-90,-48,11,-43,-47,-21,-79,16,-22,-34,-113,-11,-66,-41,-68,50,-47,13,5,-24,-64,-53,13,67,-56,-55,48,21,46,-43,-33,-40,-5,100, /* [1035][0][][] */ 33,10,-21,-33,-11,26,54,-61,56,51,-30,84,43,20,110,13,11,81,65,-26,-3,-6,121,31,9,-11,89,29,21,47,-25,-102,5,43,37,24,-20,-58,-15,10,30,25,20,43,-42,32,10,0,31,15,-8,68,21,-48,28,14,-55,-5,50,36,-16,-22,31,-33,74,41,5,33,11,-16,41,35,31,15,82,65,-38,31,-86,-38,-31,-49,-47,74,-5,51,59,25,-37,-41,-46,78,5,31,61,45,-41,-127,-14,-100,-46,-81,51,100,-38,-49,103,30,-81,19,-22,-25, /* [1036][0][][] */ -22,-37,-17,111,-47,61,-77,-60,-3,21,69,5,31,-24,-18,-75,-92,-17,60,6,9,-13,-13,77,50,-50,-27,-33,-8,-64,-13,-83,48,-35,50,50,51,-5,-55,-7,-23,75,-82,40,39,51,47,-40,-31,39,-49,-74,-36,-54,5,-62,-13,62,-15,-62,-2,101,-38,-36,-18,-63,36,-9,41,-70,64,-36,11,-9,70,127,-34,8,-36,4,90,-3,-9,10,-3,9,59,9,-32,84,-97,69,-34,104,-16,21,21,14,-37,-67,-27,-69,21,29,-48,-26,68,24,11,43,-2,-27, /* [1037][0][][] */ -11,18,-34,-10,18,-12,-13,59,-3,-8,-35,25,-12,11,-127,-74,-54,-17,47,-61,3,-85,-37,24,37,10,34,-2,12,41,6,-16,68,70,32,14,20,42,-25,-33,-3,2,-14,45,10,22,62,-6,18,-71,-14,42,-68,-61,18,-33,25,-17,-23,4,2,-4,-52,6,-23,-22,-49,-5,-33,-9,26,11,63,-11,-13,23,-49,-1,38,-61,41,0,1,26,-16,18,54,-6,-12,-47,-7,-27,65,11,-30,-37,-27,28,9,23,52,50,-32,34,-57,60,-28,4,59,54,68,-65, /* [1038][0][][] */ 43,85,-66,14,-32,-26,35,0,-36,-43,-51,48,13,27,-33,48,-4,26,23,-19,-74,-21,16,35,-22,11,-16,2,18,-9,-4,-7,-45,-78,-95,3,11,-10,-20,-31,35,10,-127,3,-42,34,81,-17,48,-119,-32,99,-11,-8,-29,-32,-50,27,-37,12,-32,24,-9,13,-7,-39,19,7,-19,18,-39,-25,-19,-55,9,42,26,-28,0,5,13,2,-4,-14,18,-26,-67,-5,33,91,-77,-29,-10,33,28,53,10,4,-19,-15,-47,-11,-33,-4,-66,-52,7,9,5,17,-5,18, /* [1039][0][][] */ 75,-17,0,29,22,-127,16,1,19,-5,37,48,57,36,18,-54,65,-62,-22,-42,56,11,9,53,19,34,-23,27,21,29,-44,-12,9,-27,-13,6,5,-27,45,3,13,-75,64,41,2,-7,18,12,11,-40,-21,30,8,50,30,-7,11,-52,-18,-15,15,28,-19,-1,-45,-1,-6,13,-10,15,-7,-1,-21,20,38,-22,-55,17,38,-20,31,64,19,-43,-3,65,13,-71,-47,12,5,25,-52,-29,-48,-20,-11,-63,-31,9,17,-16,25,16,18,27,14,21,70,-59,-4,-67, /* [1040][0][][] */ 40,-89,51,78,-23,52,42,-4,77,-50,90,-7,96,58,-74,-26,28,24,-61,0,71,-10,59,40,-7,95,-5,28,-32,5,-32,93,-73,11,-95,47,117,66,34,7,47,-61,-33,-60,-70,15,-4,17,15,-3,34,-6,35,51,-51,29,3,-103,29,-32,-96,6,36,2,1,-49,-26,11,77,68,-35,-51,-17,-40,31,4,90,13,-19,51,-54,-14,61,40,-16,117,-23,-71,-5,-18,-24,2,28,-10,-82,15,-11,15,6,38,33,46,84,31,-33,104,-35,1,127,45,-49,11, /* [1041][0][][] */ 62,52,18,54,43,-44,22,-49,38,13,-41,-27,12,105,-78,-94,-9,55,-22,-87,-11,-76,33,-7,73,-72,-15,-7,50,96,17,-57,51,58,78,-4,-14,-56,-7,-10,-64,-30,-22,33,4,59,19,18,-12,-8,-127,22,-28,-32,-31,-103,-65,17,1,-13,-12,-8,-78,-32,-3,-36,-123,23,51,-62,-21,4,4,22,35,18,30,-11,17,45,50,-26,-45,11,-88,21,38,20,39,5,36,10,93,101,-28,63,-69,-50,6,38,21,-26,76,-13,-4,-63,-52,-112,-72,37,10,17, /* [1042][0][][] */ -35,2,-103,108,-31,-26,-16,42,-52,2,31,54,-60,14,11,17,18,-3,14,-22,2,-23,32,49,-18,65,12,-28,-2,-4,-31,-37,-38,3,12,26,36,3,25,-56,35,42,-26,-43,-13,42,-48,-1,-26,-47,67,39,2,-64,10,-24,31,-16,34,-75,40,-15,-62,40,-15,-9,-42,-33,75,83,46,29,-34,-25,31,36,-42,127,4,-28,-5,25,-33,-37,-9,74,-58,-47,-47,-61,-79,19,-21,-26,4,54,15,9,32,5,-8,45,-53,-23,6,-17,32,7,68,-12,46,-14, /* [1043][0][][] */ -8,-5,-20,-6,38,15,-54,-39,-18,14,19,25,31,52,-5,20,-9,26,34,57,24,-76,30,83,77,47,12,8,16,50,2,-46,-14,-11,17,26,-7,-26,13,-43,-38,-3,19,-39,4,-17,36,-75,8,7,-4,12,-12,39,38,-21,40,-27,6,0,47,9,-69,-33,-48,-4,-73,4,14,-9,23,-7,52,10,19,35,15,77,6,8,38,-16,-7,18,-19,32,-127,20,48,-65,-40,-1,16,43,37,-25,92,1,-16,-15,48,43,10,15,21,-11,-41,-5,-55,40,20,0, /* [1044][0][][] */ 20,-4,-59,115,-40,28,28,-37,73,-14,21,32,69,-10,-52,94,26,-8,7,12,-13,26,6,93,-34,-32,-27,74,63,-44,124,-59,-78,-10,-127,-24,11,73,-103,94,33,79,-38,-13,37,-35,23,-33,88,19,96,-11,101,-35,21,-38,11,94,35,-48,-20,-71,84,100,11,21,-25,38,-54,-51,56,-7,18,46,4,22,20,-57,14,-87,11,71,-4,-24,-67,-2,34,54,-7,63,-40,-97,-1,-43,-11,-31,-63,41,-125,-33,-36,44,63,101,-8,-29,-8,-25,-11,14,-17,21, /* [1045][0][][] */ 26,-37,-40,22,-31,-127,-37,-61,21,16,0,-36,-3,-3,-27,4,-26,-62,28,67,53,-21,10,-64,5,69,28,3,6,10,23,1,-16,-22,7,-53,1,16,-87,60,36,-24,16,43,-33,23,-17,46,7,12,107,-33,3,13,32,-11,62,3,18,44,1,-28,-101,7,-7,-24,-12,-8,-21,-5,24,-38,7,-1,9,15,46,23,-26,20,-50,28,63,-61,-20,56,-12,-69,-36,-91,48,36,-17,30,1,37,-29,9,-34,110,81,23,-4,-16,-10,3,-29,-70,32,30,-48,11, /* [1046][0][][] */ 35,-15,-50,23,-9,27,-5,43,-52,45,-78,-3,-30,61,12,11,-39,-50,-30,-32,-50,-62,-16,19,123,5,27,57,34,-59,41,-85,-3,11,-47,39,79,41,17,42,-4,-5,-38,19,-9,55,9,60,33,-47,-36,27,-51,-36,6,-38,-127,5,60,58,-9,-58,25,-18,-75,-14,-43,6,49,-25,-3,-6,16,-2,-52,19,-55,35,2,-83,-5,-34,-81,27,32,0,-1,9,26,-3,-9,7,17,68,57,-25,-17,-46,35,-43,36,30,77,89,72,7,-16,-61,-37,79,71,-43, /* [1047][0][][] */ -51,-18,0,16,-53,-45,-41,21,-2,37,63,127,-10,-8,88,63,-60,-1,75,-104,-40,-119,-82,51,-3,56,25,-44,24,27,-20,-32,-4,33,40,50,-78,8,-16,-78,-28,65,-9,5,-11,-14,63,-43,-23,-29,-86,61,31,-68,-52,-52,53,52,47,-111,-1,-52,-17,-41,-28,7,-2,29,-37,5,99,34,41,40,62,33,-24,-22,3,8,13,19,33,-19,59,64,53,8,-32,2,-34,19,-3,83,-9,36,-20,-62,-17,-13,-33,-54,37,65,-8,-29,46,2,-11,28,2,-123, /* [1048][0][][] */ 104,-45,-26,50,32,-4,43,-44,3,-61,-58,52,74,-12,30,-76,10,7,25,-78,-21,-52,-48,11,64,24,16,-20,61,10,4,4,10,24,45,33,-40,26,-24,22,-34,38,-15,40,-7,4,99,8,-46,-51,83,106,-1,14,9,-36,-36,29,-25,-86,25,-1,5,21,-9,41,-49,0,-66,-16,72,-9,5,-47,-21,-11,-127,105,-1,18,41,56,18,-4,-22,-34,57,2,2,27,13,-65,24,-2,31,-26,-35,-105,17,25,-1,22,-15,116,-67,15,41,-21,-65,51,-32,13, /* [1049][0][][] */ -14,47,-49,-27,-22,-72,13,-57,15,-52,-71,-7,-9,-20,-127,-55,-11,13,-14,-22,40,-78,-28,-83,22,-10,41,-46,-41,-31,-44,-26,10,-8,3,46,19,50,46,-17,-18,-57,-36,43,1,51,-26,-19,-16,-20,51,-3,-55,19,-80,14,-7,1,-59,83,-61,-76,-30,-12,-8,-42,-100,22,-51,-6,30,23,-30,-1,6,33,-90,-8,-42,19,58,21,-13,69,-1,-4,25,-20,-1,53,-84,41,15,-2,49,-56,-73,-15,-55,-19,6,-20,-55,60,-102,65,58,-45,0,23,77,5, /* [1050][0][][] */ 124,-17,-53,-20,-6,-58,-7,67,-15,-52,18,82,69,-41,52,-76,-6,52,52,-123,21,-1,36,12,-18,-31,0,70,79,8,18,-21,-19,49,-7,40,40,2,-76,-63,-8,61,41,110,7,28,68,8,22,-21,3,48,-30,-36,16,5,35,10,64,7,-12,-21,-2,-7,83,11,-68,32,-10,19,52,8,44,-8,-16,38,-68,6,23,-76,-4,63,2,89,57,22,-2,10,38,-84,-104,-3,-17,45,-15,12,-13,0,-40,-34,-61,-74,67,3,-37,36,83,44,-127,19,18,3, /* [1051][0][][] */ -21,-27,-46,-10,46,-94,-53,38,-20,-40,-5,43,-47,27,-55,67,21,-33,28,-30,-11,-12,-15,-46,10,6,20,-22,33,-24,7,-87,51,38,-100,-28,-19,-12,-60,-15,-25,15,-95,35,-22,47,-6,-53,66,1,16,8,-12,-24,-7,22,2,46,67,-7,-6,1,-4,-45,-12,-7,59,35,-5,-40,-30,9,3,47,127,41,6,-11,17,-78,-1,-27,-22,30,3,-14,52,-6,-37,-15,-85,31,15,43,13,43,-44,14,-78,-93,23,1,48,-12,5,-106,45,0,-14,-8,-14,17, /* [1052][0][][] */ 58,-44,15,12,24,79,-42,-96,-33,-76,66,-54,42,22,-28,54,42,-87,38,37,-25,7,19,30,-43,23,-51,7,-21,8,-25,-5,-70,-37,-6,-8,30,23,42,27,-14,-26,-6,-29,14,-60,-33,-101,3,-81,54,-40,53,60,23,-25,-50,3,-17,39,-7,-5,79,0,-48,-25,-50,-76,28,56,-84,-2,-69,80,-21,51,57,59,-22,52,-3,8,55,-52,3,18,-95,16,-7,36,-66,-16,37,-37,-67,-62,51,-34,-32,6,-8,30,-2,38,-38,85,39,39,117,35,56,127, /* [1053][0][][] */ -15,70,12,11,-86,70,-24,30,-8,14,-74,-2,-38,2,-65,-1,-26,69,-21,-67,-67,1,52,-4,48,-76,23,-13,5,30,12,4,25,-15,31,7,53,-21,-58,49,20,39,-31,19,-58,47,-15,-8,5,-31,-31,34,15,-37,-28,-95,-30,32,-78,31,-3,18,-74,33,39,13,-8,1,18,-25,3,-3,-25,54,-16,-3,-11,-51,-22,37,58,-51,-48,1,-33,-13,-12,-127,-21,47,18,-28,-11,40,-71,20,-25,-53,21,52,-1,-37,48,77,-13,-27,1,-41,-24,37,43,2, /* [1054][0][][] */ 15,-71,32,-18,8,-70,-38,-14,23,-9,-43,-26,30,-34,5,15,-48,-67,23,1,17,10,-82,18,42,18,35,67,45,17,-62,-5,-35,19,-39,10,-31,-32,91,3,-27,-22,-74,37,-25,-18,-23,49,17,17,23,7,50,-30,26,36,-20,27,-11,-12,-6,-43,9,37,38,-59,-89,10,15,29,-15,-13,-127,-10,20,-5,4,78,-18,-43,-10,4,7,-63,25,-1,-3,-4,-36,-101,10,10,-31,16,-17,-38,33,-65,26,33,2,23,37,-29,-60,-9,-11,-7,6,-13,-17,-40, /* [1055][0][][] */ 96,0,-21,31,-35,16,-7,17,19,-10,-8,1,33,15,-14,35,-13,15,-29,-10,-31,24,-3,58,20,13,-17,-26,-24,-17,-18,1,27,11,-46,58,-6,-3,11,24,-31,55,-26,-16,-24,53,-24,0,71,-59,-13,-17,59,-66,45,-4,-54,-39,27,27,51,103,-58,34,42,18,7,8,16,-24,-51,-16,-18,-29,-28,-48,16,19,-12,42,-52,-29,80,45,-1,57,-60,-26,-62,42,-36,-59,-51,40,-22,-20,16,0,66,15,4,30,10,62,-46,31,50,-3,127,-11,-49,-38, /* [1056][0][][] */ 23,-19,53,-38,4,-47,18,75,2,33,-17,70,-36,-5,32,41,4,19,-22,-66,-21,-6,40,53,22,4,69,44,-23,-27,-51,-92,1,57,22,86,-41,-78,-3,25,15,70,-12,36,-75,35,102,-75,-21,-23,-68,45,11,-97,-20,-35,-51,35,-22,-20,-84,103,-30,31,30,-6,-127,-7,-80,-4,38,54,-77,38,50,32,42,28,13,-113,-21,51,-27,-3,20,-85,50,33,-42,70,11,-49,32,40,76,40,-33,-61,-23,-52,5,-50,75,18,-73,-15,-62,-81,-32,38,-48,18, /* [1057][0][][] */ -16,59,-8,-8,-58,54,-127,-30,-94,-11,-100,-44,36,30,-72,49,6,-20,60,-33,-46,-10,-10,19,13,-3,14,-14,47,2,31,48,42,24,-46,-13,-117,44,-5,64,-45,58,14,-76,-26,58,62,29,31,-115,-33,-26,10,-100,-39,-12,-45,-29,-45,-20,35,-8,-9,-76,-66,-13,-79,26,57,-110,43,68,-109,-48,24,-3,23,-4,-30,24,39,17,-33,-100,15,5,81,82,1,-26,-30,37,-2,14,45,-64,-62,-30,-8,31,92,3,-20,110,-71,86,-35,-109,5,-42,-43,56, /* [1058][0][][] */ 33,102,2,-57,-85,-21,-19,50,64,-13,9,27,37,-3,25,52,20,82,-30,-31,49,29,41,21,-9,80,-25,29,43,28,-29,8,-14,94,63,32,-35,14,43,91,25,9,-13,-70,-93,89,-15,-17,27,-107,60,9,-12,-20,80,8,-39,35,-8,-57,93,63,-122,37,25,1,-19,0,-6,-11,-35,-51,-22,-86,70,-28,38,115,75,-26,-34,50,11,-28,0,93,-33,8,-30,-35,18,4,-5,14,-10,-28,-15,-14,-63,123,6,-6,-50,-20,-10,50,31,-58,127,48,28,51, /* [1059][0][][] */ -22,-98,-23,52,-10,-70,0,-127,-10,-75,5,21,25,7,0,3,-2,23,10,-64,1,-35,26,51,57,45,-45,-35,42,-7,-30,-53,7,-70,14,-80,10,-111,-10,52,-1,-47,18,-100,35,-3,-89,48,-29,-81,24,-37,57,-4,100,-11,44,-47,-21,19,18,14,-2,66,-73,27,-20,-52,-57,70,-13,35,-98,-47,10,57,-99,32,-41,-73,-9,8,-16,-43,-14,39,-73,-39,-96,13,-76,16,-47,-20,-16,-12,43,19,-21,5,91,-1,57,62,14,-8,13,-10,27,-4,1,-22, /* [1060][0][][] */ 73,-114,-119,54,-20,-18,71,-41,-4,40,-80,45,127,-55,-11,32,45,20,22,76,73,52,11,49,-14,21,-32,54,87,-62,19,66,-10,-5,-17,-13,14,-4,30,-5,-20,101,-7,79,-12,-50,-27,-36,-12,29,26,-97,106,13,13,-9,29,1,-27,-52,-17,76,65,52,-16,51,17,31,-16,3,80,-55,5,16,31,-36,-26,7,-28,-13,91,30,10,-55,-49,34,-2,27,-21,30,18,-57,-45,71,-15,3,30,-12,-36,-39,55,-56,-1,48,49,41,66,27,68,-48,-4,43, /* [1061][0][][] */ -45,18,-57,75,-98,-11,0,41,-22,41,-39,10,-27,36,-5,64,10,-34,34,11,-55,21,40,-76,14,-28,76,11,76,-21,57,-36,-63,-6,31,-80,33,12,22,22,-19,27,-8,-20,9,-8,-33,-7,44,-14,-6,33,-40,-10,-13,-40,-21,69,53,33,-59,13,89,-1,-86,10,25,46,16,-43,-12,-96,-91,11,39,15,12,1,4,-127,4,76,0,-63,-27,-42,6,-34,9,-29,14,37,13,-3,-94,38,-67,-35,-29,27,80,1,95,52,-17,30,19,-11,-11,45,10,69, /* [1062][0][][] */ 4,-40,-51,-34,30,-57,45,-3,-12,15,28,45,32,23,68,8,43,-7,42,-14,70,18,3,92,89,61,-39,5,36,-4,-27,-8,-4,-31,-3,79,-36,35,51,-46,-21,65,40,-31,-80,-92,-89,-9,19,-3,-34,-10,50,-19,35,66,-41,-58,-67,-127,8,20,-48,74,-2,-35,-48,-11,16,8,39,-3,-51,91,54,-44,24,61,58,19,81,51,25,14,-29,14,-32,7,-38,-87,-6,42,-33,-10,99,-22,-52,-72,41,-3,8,30,7,-2,34,77,1,-86,35,45,-20,-26, /* [1063][0][][] */ -34,13,-29,5,38,5,71,-40,16,28,36,-35,56,59,61,17,49,-63,49,47,0,-25,-127,-55,28,-33,65,49,103,-4,53,11,-88,-32,-69,-16,82,90,-56,92,-123,32,74,15,39,-26,-11,-27,36,53,11,-77,23,30,4,61,85,-102,-65,50,105,-34,-50,1,-44,-64,-63,46,1,22,-58,58,-99,13,85,-35,62,107,-17,12,-18,-95,-10,-14,-52,-16,51,-32,-52,-113,7,11,-86,-10,2,79,-73,-78,18,-1,-35,116,19,-3,-23,-7,-17,-53,56,-24,-51,42, /* [1064][0][][] */ 69,-40,-21,68,-49,-57,-42,7,-2,-48,-8,-2,59,-65,-33,-92,-23,2,-22,-2,0,-40,36,-25,40,-38,61,70,8,4,13,-7,21,79,81,-4,-20,-31,13,-60,23,50,-58,18,58,54,30,8,4,-70,-3,-10,20,-38,33,-93,-85,20,63,9,-32,-38,1,33,4,9,-69,59,16,2,74,-89,-72,-27,-55,26,-46,-47,-63,-18,89,50,-60,-25,0,-43,37,-73,55,-52,-127,65,17,39,-27,17,29,-78,22,0,-41,7,-4,53,-31,-25,67,1,-50,-23,39,-91, /* [1065][0][][] */ -6,-12,-69,54,29,-5,-32,33,39,7,-21,-22,-93,35,0,62,-41,22,9,30,-93,-56,46,15,41,-85,-27,27,62,64,-1,4,22,-13,-22,2,75,30,52,17,-31,-5,10,-19,23,17,23,31,-34,-16,-21,39,61,0,50,13,-22,83,22,-22,-127,-3,60,-6,-47,-68,-31,87,7,104,-46,57,-103,8,-42,18,-35,16,-74,-86,56,45,-75,42,67,2,18,-75,-46,-54,-80,-27,60,-14,-33,-37,-62,-76,-36,-32,-68,-46,28,16,-35,-31,-41,-66,-70,11,84,-19, /* [1066][0][][] */ 55,-89,-50,-15,-63,-11,-28,-11,55,-3,-8,28,-40,-7,77,16,69,25,-54,-13,10,86,-5,64,25,127,-55,-23,-13,-56,-42,-8,-14,16,24,52,25,12,25,31,-4,10,11,16,-32,52,18,-33,45,-82,-5,-82,36,-47,37,4,-16,31,6,65,-61,79,43,67,13,39,-37,26,-30,41,-71,-7,-62,-8,-50,-33,19,-15,-20,-37,85,28,19,21,-83,-1,15,-12,8,-22,-54,18,-37,-35,-87,7,-23,12,-45,-18,34,-21,45,54,20,22,9,-2,2,-33,55,49, /* [1067][0][][] */ 84,78,83,-18,10,-59,-88,-2,39,-23,52,11,47,-7,-24,44,63,-124,52,-120,75,36,-47,60,-41,50,-64,5,24,46,-30,44,32,-38,-44,-45,65,31,-50,-16,56,17,-46,64,-19,-50,34,-27,51,-67,20,-19,17,15,52,-62,44,1,-58,-13,21,-6,-127,59,-113,-5,-3,-23,76,60,-25,16,28,44,12,-37,-37,62,95,-98,-21,-33,51,-10,-30,35,-74,31,-42,-26,30,-43,-13,-16,-1,54,34,48,-70,-24,43,-28,-43,-61,-84,-1,-11,75,25,-60,-44,-97, /* [1068][0][][] */ -60,-17,-45,6,-2,-56,-4,-127,-23,44,-14,-41,-42,43,60,51,41,15,32,-16,88,11,-38,-21,26,41,-60,-16,6,41,-47,35,-2,-11,-5,-31,-56,-40,2,2,-50,-28,34,13,-24,-9,-33,1,23,-23,-25,-21,-16,24,-1,-1,4,-39,-70,-8,68,-33,-67,-12,-25,-42,-60,-36,4,11,27,51,-65,-30,26,23,-52,60,19,33,-1,-5,-20,-24,-10,27,-27,-32,-29,-18,-50,-5,-3,-51,27,36,-52,-61,-31,-26,1,23,22,65,33,82,-93,-10,24,6,14,-12, /* [1069][0][][] */ 36,-127,6,50,4,30,-20,-53,32,-5,31,-35,47,-52,-29,30,-6,-19,20,33,34,-23,-13,69,-48,21,-7,17,64,38,-33,41,29,-57,-72,103,50,-64,35,22,49,-47,-77,30,-29,6,-7,-44,-48,-26,84,-7,41,-35,-22,-77,-28,-39,-54,-58,-55,2,-47,106,-23,-1,24,-6,15,43,25,45,4,11,-35,-30,-45,94,-71,4,91,15,0,-24,-26,1,-81,-48,-62,9,-6,-39,-56,0,-26,-35,18,40,68,-66,23,13,42,7,43,76,43,34,12,-16,-2,-43, /* [1070][0][][] */ -66,-101,-87,47,-57,3,-42,127,51,-5,-9,-57,-44,58,-5,30,-12,32,45,19,-81,-68,71,-48,-26,-15,106,36,119,58,-15,-5,-67,23,109,-27,-42,-34,-61,55,5,58,23,-23,18,-71,-64,36,79,-40,48,29,-14,29,23,-11,24,59,-44,35,-46,-68,74,-8,-15,29,22,58,16,96,-10,-38,-67,40,20,13,78,12,-40,-63,16,-22,28,60,-9,-7,3,-42,-29,-70,-10,35,-63,10,-12,-70,-45,17,3,45,34,-54,40,115,30,49,4,-54,55,60,76,-38, /* [1071][0][][] */ 57,-78,-12,-34,-82,32,-17,11,94,-26,2,-41,52,67,-13,40,-11,34,-26,12,-34,29,-14,70,-10,1,-112,-15,52,-2,-2,71,-60,-55,-100,30,-25,25,-4,-27,52,-14,29,93,-69,2,-57,1,59,-127,15,-15,-30,37,44,6,30,-69,-46,-8,-35,32,-117,35,31,-38,72,-74,2,-38,54,-92,-30,-23,27,-33,-2,72,-2,-16,-10,-16,96,-43,-104,94,-32,-2,3,-26,37,40,-11,20,-34,73,-28,28,-4,-18,37,44,58,67,-3,30,47,41,25,-58,-57,25, /* [1072][0][][] */ -37,-57,5,45,30,-40,-37,27,23,5,-14,-44,-22,-4,44,25,58,2,17,43,93,-17,-1,61,30,8,-31,37,-24,37,46,-14,-40,8,-50,-28,38,-20,-19,-20,-68,6,49,-13,41,-72,31,-36,61,39,18,9,-13,6,-41,-25,38,-46,24,-3,49,-39,-15,73,42,54,-38,20,1,81,-25,29,-34,-3,-17,27,-10,-10,-30,-48,64,33,-43,-16,12,60,-85,5,-127,9,-36,-9,-66,13,3,-15,-27,-41,10,-22,4,-38,-51,13,-3,72,56,-1,43,31,17,20, /* [1073][0][][] */ 26,16,60,104,6,39,-14,36,12,1,-45,-11,59,21,-88,-57,-38,12,-61,-9,-7,21,-17,94,-39,49,56,31,-1,-12,31,-49,24,-18,-28,15,42,78,-4,15,-60,89,32,-7,-25,-6,40,-48,-2,37,9,44,53,-46,-28,-33,-105,30,29,20,-58,36,-2,-31,-21,-33,-32,-30,27,-48,-66,79,43,127,-28,-15,-40,-2,-26,-8,49,67,-37,30,-67,28,-23,-63,-100,68,0,-102,-2,10,-36,-71,31,19,-96,-42,-6,-45,22,-16,-52,-22,-2,-63,-118,15,-16,-2, /* [1074][0][][] */ -52,24,-23,-33,-15,9,-50,1,65,39,36,-6,5,-1,3,80,54,91,-23,48,119,-56,-30,55,-45,127,5,18,15,-1,43,35,13,51,-67,38,4,7,-38,32,15,51,24,-121,8,44,26,-73,53,-36,106,15,38,49,100,-42,14,27,-54,-81,79,-85,-123,5,15,57,-86,34,30,-13,10,44,50,23,-46,-65,-16,56,-48,-32,38,3,37,18,4,33,-98,-11,-18,-39,31,-30,-97,-1,-25,24,36,-3,-35,62,-44,3,-45,16,-25,72,34,30,46,22,-40,4, /* [1075][0][][] */ -42,-120,-6,52,-56,4,-90,15,-6,-61,114,11,-15,46,-7,-51,-7,-21,41,6,40,-73,49,-39,80,-68,46,-27,111,82,11,-16,-40,-41,-10,-40,-16,59,-43,-43,46,-17,-5,52,-8,-20,8,11,2,49,35,-43,40,16,50,-36,7,-15,32,-52,-64,12,65,-67,37,-16,27,50,11,-22,-28,-61,-23,37,77,66,-87,7,-19,9,-16,127,-55,10,-19,19,26,-123,6,-88,-16,73,-15,28,-85,-12,21,13,29,49,67,27,88,-26,-29,103,54,-43,4,44,45,38, /* [1076][0][][] */ -28,-8,-1,52,-14,-63,-42,-10,28,29,-18,22,29,-9,-76,-40,3,-4,28,-52,-5,-46,-1,-67,38,-65,17,14,7,61,-26,-15,-24,7,-14,-66,-8,-56,-107,28,67,37,-8,29,-34,-3,-1,9,-38,-3,15,9,40,-97,-16,-5,-15,35,-74,15,-93,-87,58,3,-32,-127,-5,44,69,40,-19,25,-8,15,11,-3,-39,28,37,-3,-11,-6,-77,-58,16,-37,74,-53,-58,-59,-60,6,98,-10,8,-37,-19,18,3,57,49,25,-41,44,-30,42,1,-16,-22,55,-11,-8, /* [1077][0][][] */ -11,-7,0,-7,-1,-125,-114,0,24,-26,9,20,-119,50,23,-48,54,-22,-35,-28,-117,57,-10,-103,-36,-21,-2,61,20,-28,62,18,-21,-46,15,-4,18,27,-35,6,-67,-33,-49,47,-34,49,18,33,7,-126,10,23,0,-22,17,-40,-83,62,-23,-15,42,-72,-65,46,-86,-47,-6,-9,27,-59,33,32,-83,-83,120,31,6,58,78,-15,-32,-45,-12,3,-4,-18,-8,-33,-43,4,-107,-9,55,-84,24,9,-127,22,-43,-28,-8,30,4,-15,-89,-78,81,-38,-26,51,-44,-98, /* [1078][0][][] */ -17,-43,-35,-52,17,19,-30,84,-5,-24,-14,1,-17,66,-72,59,41,20,6,22,23,-45,47,-38,37,-106,11,51,52,1,43,-27,-18,-18,95,44,-7,44,-32,2,-7,-20,-57,29,-28,83,35,66,63,-78,-2,16,-16,-127,22,-43,-56,56,-6,-4,73,9,-39,-55,-57,1,26,49,-6,-12,-30,-30,-15,2,4,10,0,0,-10,-82,-44,12,-35,19,-54,8,4,-28,46,-26,25,-9,-59,-43,-6,-1,-68,53,-14,30,52,84,43,2,-3,-36,1,-35,-87,16,60,-26, /* [1079][0][][] */ -67,40,-15,90,-10,1,-23,-38,-44,-55,-10,-9,58,-3,17,44,-10,-24,1,-115,-65,22,87,-11,-86,-127,74,-7,-29,110,-43,-21,52,56,88,108,-60,89,25,21,-60,48,-88,-27,17,20,15,18,-36,-18,-9,-18,102,-94,-21,-9,-30,-11,-105,-27,3,-52,-55,-19,-4,-1,76,11,58,-67,34,103,1,2,-26,47,36,19,-32,-46,110,27,-36,1,-42,77,-18,54,-15,-28,-22,-88,110,-11,27,38,-66,-46,-21,-65,-71,-29,-17,-14,8,-80,90,27,-16,43,10,-30, /* [1080][0][][] */ 33,-59,48,21,7,19,-12,-92,62,-4,-24,-11,48,6,-4,42,5,-41,3,-60,59,4,4,62,56,-42,-23,-34,75,-28,-52,27,59,6,-9,45,29,7,33,34,16,-48,-14,-1,-46,2,-27,-25,-22,51,-8,-109,65,-10,77,12,72,-100,-31,-69,-2,-23,-28,-23,13,3,-67,-36,10,127,-18,67,-103,-3,-33,28,-37,102,-37,-13,44,-50,-21,-36,-61,-8,9,-21,-74,-24,-1,-23,-12,-22,5,58,16,18,6,-65,53,29,-36,28,-24,-22,5,71,49,29,34,68, /* [1081][0][][] */ -50,-68,-22,108,-14,9,2,35,-60,13,-23,59,-24,36,-51,-78,-94,-9,-4,29,-79,-69,-13,-33,0,-62,-18,-40,58,58,58,-52,18,-36,-20,-16,13,18,7,-36,-15,-20,-93,127,-23,5,113,22,67,-10,-7,-2,-15,28,15,-3,-51,-26,-44,33,-82,31,8,24,72,-46,62,31,-16,35,-28,12,18,2,14,1,-21,8,1,-46,17,35,-90,6,-50,-3,1,-59,-54,63,-10,-17,28,54,-16,18,-34,-33,35,-15,18,-11,57,-15,9,32,5,12,-16,79,15,-42, /* [1082][0][][] */ 45,15,52,25,-34,21,35,-44,-39,-65,41,58,-40,64,47,-89,16,2,66,-39,-52,-51,25,-64,11,40,66,-58,-10,-6,61,-33,-27,-32,28,37,-22,33,-16,-14,-46,41,-4,-33,-92,-23,-10,-15,-3,-19,80,53,11,127,-42,-41,-30,-3,10,-32,-35,-45,2,-17,-36,-25,-94,6,14,18,13,21,30,21,6,69,61,10,-46,5,88,25,5,-6,-57,44,-22,-75,-18,-30,0,-20,68,-93,-10,4,-57,-40,-55,13,5,33,-21,-18,-20,63,-56,-23,11,35,-30,26, /* [1083][0][][] */ -44,11,-57,49,16,45,-55,65,-10,-19,5,9,-56,39,-18,-14,-21,-53,11,-35,0,-11,36,9,4,2,32,-20,49,-3,50,-8,-23,47,-34,4,-25,-60,-22,22,15,20,-15,-28,-49,22,-15,18,-13,-7,-23,18,-42,-50,-39,2,-11,53,15,18,-17,2,-41,-40,-31,-64,-23,35,73,-35,31,4,41,-18,59,-12,-59,6,-21,4,-11,-74,-127,-30,22,74,-30,-59,38,-50,-73,9,-17,-43,-46,-21,-46,3,-40,-14,11,28,-57,87,-21,6,33,9,-48,15,-14,-61, /* [1084][0][][] */ -6,28,-18,-23,-30,-69,-34,-42,127,-79,-22,-35,11,-20,28,-40,-4,-73,2,-13,21,-1,-10,-31,16,35,12,-10,9,8,-14,7,-42,-10,4,19,19,-17,-67,92,-45,20,8,55,-17,-46,49,-40,-39,21,114,-72,79,58,-18,53,53,-87,-92,73,-13,-10,-52,90,-54,-31,-31,-4,-31,44,29,4,-32,-11,-5,-14,-33,25,20,4,-31,-38,-23,71,-78,13,-26,31,-64,-76,-20,-3,-5,18,16,31,-8,22,-47,28,10,-39,11,-40,8,34,45,-13,6,-9,-10,19, /* [1085][0][][] */ -43,29,-39,-15,-16,0,-4,-14,62,57,-34,17,36,75,-60,-40,-3,-51,-11,-27,13,22,-35,49,67,82,-26,14,22,66,-48,110,29,15,13,49,36,-14,43,30,-3,-17,-23,2,23,-4,57,-72,6,-50,89,-13,-57,127,-13,71,-6,-77,-68,44,17,-30,-61,60,-49,16,-18,13,-14,42,20,8,19,-68,-29,-62,-36,22,-35,50,94,-69,-39,-18,-39,39,14,-16,4,-116,-5,-46,25,29,44,15,-16,-16,60,-37,80,-19,-5,54,24,59,-22,0,-1,-33,54,-40, /* [1086][0][][] */ -16,-57,-53,22,-67,75,-9,24,20,-105,-36,-2,-59,8,-4,-84,-2,3,55,-21,-44,-27,-40,45,61,14,32,34,60,32,14,40,-4,-47,84,43,63,19,-72,-39,-1,23,-20,-11,-35,87,2,62,35,38,-13,20,-58,11,-21,-65,-39,-23,-7,-3,6,51,22,-45,-23,-127,-19,47,25,-64,-74,-96,-28,72,51,20,14,62,-61,21,52,45,-37,75,-5,-44,26,-70,46,10,10,49,15,-21,-14,17,43,-26,-19,-43,40,18,-65,18,28,-42,43,-43,-29,28,38,22, /* [1087][0][][] */ -24,19,-5,-65,22,-77,30,-75,39,-55,-29,47,-23,-7,-22,42,59,-17,13,-4,59,-23,-90,-7,27,44,-25,-2,4,26,-32,24,5,-20,21,28,63,-53,-20,-23,-14,0,86,-8,-7,1,65,20,-24,-18,33,94,-4,-52,85,2,-42,-3,-56,28,127,107,-21,-29,-42,28,97,-10,-59,20,-78,-66,46,-63,14,31,-40,40,5,-11,-37,53,-33,49,-56,37,-119,-79,16,-50,-79,-9,-9,29,18,94,-53,42,65,19,76,30,72,-57,7,-14,18,-20,18,3,34,-77, /* [1088][0][][] */ 9,46,4,-43,-11,-47,-19,8,127,5,-7,-27,107,51,10,11,8,28,-76,-11,81,0,35,28,50,-32,13,-39,10,-21,-50,70,43,-14,-3,-19,110,-16,-26,112,3,-43,24,-60,-64,-27,-22,10,55,-17,-23,-11,-12,-47,37,-14,8,-53,-61,47,27,46,-109,69,-76,37,-25,-11,-12,-4,-38,-6,-110,31,18,11,6,88,65,30,-26,1,58,-32,-16,54,-75,37,-38,-37,51,-27,47,37,-95,5,-19,-10,-18,24,91,-4,37,30,-48,19,24,17,46,16,-70,41, /* [1089][0][][] */ -2,32,46,18,-26,-15,-91,-1,-54,-64,66,-21,-58,-20,5,19,-6,-48,26,-3,5,-90,28,-54,25,-23,3,-35,28,30,27,-7,30,-56,-25,14,-29,36,10,-23,28,93,-18,53,14,-31,77,-9,-21,-10,30,14,31,18,45,-89,-36,9,-48,-61,-3,-2,17,-48,45,-25,-20,-24,18,-18,8,17,-11,25,8,72,-25,11,-46,-23,17,103,-7,-54,-49,-18,-22,-78,-15,-117,24,8,39,19,-14,11,7,-16,-30,6,33,12,127,-35,-28,10,-44,6,-31,101,-22,-3, /* [1090][0][][] */ 0,-20,41,60,-36,-16,-19,-41,-34,-45,-37,-5,17,38,21,-67,4,30,-45,-20,-32,13,-46,4,-15,-24,21,-8,62,15,0,-4,-16,-1,-2,29,20,16,-43,-15,-71,16,-68,42,29,-5,6,-14,43,57,16,94,30,-10,-48,-10,-48,38,60,21,-43,-42,3,-12,60,-58,-30,86,-24,-14,-74,72,-30,102,-65,-26,44,-3,-45,43,60,83,-16,-2,7,-24,-43,5,-42,41,10,-51,127,21,-101,9,14,-40,-21,25,62,-26,15,-1,-10,1,-13,-66,6,36,-13,-50, /* [1091][0][][] */ 78,-71,6,-46,-52,-3,-40,-94,-127,39,-104,-25,-19,20,-29,15,35,-9,35,36,-4,-98,-34,-62,2,-63,44,42,30,-28,-21,-10,18,-6,-4,5,-74,-29,-7,25,-35,36,-66,-34,-60,27,102,54,14,-22,-5,-20,-10,-81,0,1,-52,58,-56,15,42,-82,4,-83,40,-76,-70,67,-12,-35,-6,33,-36,-29,-4,-28,17,62,-81,-25,-4,14,-41,-47,-36,-105,-11,17,56,-79,-81,-64,15,-49,37,41,43,-97,4,58,-67,61,80,63,-87,-1,19,-83,-10,16,-52,-32, /* [1092][0][][] */ -53,-63,-38,-33,-37,12,-77,34,46,3,18,40,-23,-5,-63,-22,-23,48,39,43,-48,32,-3,-51,104,-67,-55,20,56,104,-31,-127,-38,16,15,-16,-31,20,22,-14,-31,-21,-32,-13,51,39,15,-40,51,-43,-57,45,-72,-26,15,-64,-84,80,-58,-62,-2,80,15,52,22,-32,-28,-55,17,-71,-38,-51,3,19,-23,50,-1,15,48,-12,15,114,-32,-12,-66,-119,100,49,24,51,-11,12,-21,42,-2,-44,-23,2,-50,-55,-9,-8,17,50,-76,110,26,-1,-9,23,25,6, /* [1093][0][][] */ 26,-26,-7,35,-16,39,-13,-38,-30,-9,-117,5,-72,59,-70,-81,27,77,12,27,-71,-38,53,-8,7,-28,85,-20,38,71,17,-15,12,-48,54,127,32,14,-44,-36,-25,36,-23,24,-27,118,16,15,21,-38,39,76,21,-48,37,-1,45,34,-55,-52,-31,27,43,7,31,4,-78,-4,57,48,-81,37,0,98,34,58,-39,62,-91,-38,68,34,26,17,-10,-111,77,-15,-8,8,36,53,49,-48,49,41,-62,12,-114,14,63,50,119,40,-17,54,-14,-56,-18,-31,42,-16, /* [1094][0][][] */ 42,36,-3,1,32,15,39,-46,-27,7,-15,-29,62,-6,3,-15,40,17,36,37,99,10,-21,-3,-27,8,-61,26,-13,-1,10,0,-66,68,-44,73,3,-46,29,32,-70,41,19,-52,-19,92,-94,-13,-27,20,80,-7,45,-35,2,-27,-1,-62,-25,-28,7,-33,-44,10,16,44,-1,-24,93,-17,-13,-16,34,-35,-3,-23,-15,38,-31,23,25,-4,-88,-6,-127,40,-57,27,-62,-9,48,6,-96,-2,15,68,-16,54,2,70,-22,-4,-19,-44,-15,18,13,-38,58,0,3,19, /* [1095][0][][] */ -35,-49,-26,-24,-9,0,49,-43,36,51,19,25,37,38,-11,36,-4,-55,20,64,-4,-32,-61,28,76,17,-79,-31,0,58,14,69,8,-20,-49,66,6,26,53,-46,-51,-62,-15,-17,-47,-60,-33,-3,-31,-35,17,34,51,55,-47,-1,15,-79,-127,-59,-30,17,74,28,-58,-72,-11,14,-48,82,63,-68,-18,-77,-30,-40,-20,-1,1,-29,6,20,40,17,-16,45,-22,-35,-61,-66,-52,5,-15,75,27,-11,8,-40,-2,19,-36,-76,30,64,39,62,-3,11,74,-3,69,42, /* [1096][0][][] */ 42,86,-55,-11,-9,43,40,-5,-15,74,-63,14,53,78,-66,-15,1,68,-13,-22,-11,-20,-9,12,-13,-63,127,65,36,-16,-67,-44,2,-85,-29,61,51,1,-1,-17,-19,31,-13,49,-90,68,30,-2,1,44,17,-6,-96,-67,-43,-79,-3,8,-53,-20,18,36,19,32,-8,-27,-38,41,46,-41,-24,-3,-60,55,35,18,-37,12,9,-30,-13,73,-37,28,-44,-38,-26,-46,3,-13,11,31,-38,50,57,-11,5,-21,-19,33,-23,-49,66,38,-26,63,60,-17,-40,-11,-89,18, /* [1097][0][][] */ 19,-8,-54,-44,11,-57,15,-3,-3,67,1,-84,127,14,-6,0,118,-77,0,-66,66,-7,-48,31,31,15,23,53,27,82,-29,18,-4,-49,-57,-24,62,-17,55,80,36,21,-51,-45,7,24,-31,-20,1,57,24,-89,10,-51,-37,55,-19,-45,-58,-28,26,57,1,-11,-15,-31,-8,8,37,16,-55,-20,-104,20,70,-38,64,11,20,-29,62,52,-9,-3,-16,-76,-28,30,-6,-83,-13,-34,-80,34,54,-13,3,-35,39,-42,116,41,56,-23,113,21,31,-48,-28,21,-16,-53, /* [1098][0][][] */ -3,58,48,-70,-1,5,9,67,-75,-48,-16,23,-16,52,-56,21,-33,-52,-42,-55,6,-99,16,-35,-20,14,-54,-31,28,-11,51,-39,-11,54,27,-22,-67,-14,55,51,-59,88,21,-32,-37,-17,16,-34,53,-25,45,85,44,-23,-65,12,-62,58,-22,-3,-63,48,16,-37,-31,-70,-28,92,-37,17,31,39,21,25,34,-11,-78,-79,-84,110,127,-2,-97,-44,5,31,-42,-25,19,47,-78,-83,-17,-32,38,14,-2,-36,-69,82,8,-4,0,17,-126,76,6,-8,-5,46,-33,40, /* [1099][0][][] */ 2,10,-44,44,-9,8,19,-13,-54,-60,-28,36,8,-43,-89,35,-10,54,74,-15,-49,38,-26,59,5,-27,104,18,31,33,17,7,-10,113,3,49,15,-3,-34,-30,-18,4,-17,67,23,93,28,35,6,-8,127,98,11,-93,8,-35,-12,49,-85,-10,55,46,-9,92,6,2,-36,-2,30,-36,14,38,-41,-51,22,7,-57,31,29,-7,-1,55,-77,-1,-16,-43,73,51,76,-17,-20,-65,79,-57,15,21,15,14,12,11,-27,87,52,21,-51,36,-20,12,11,-9,69,-43, /* [1100][0][][] */ -29,126,36,-28,-16,29,-3,-41,-3,-39,-40,2,-87,-1,-70,39,-52,-9,33,32,-59,-70,-7,15,-37,-25,4,-12,-1,-45,58,22,-89,14,28,-6,22,31,43,18,-59,67,-72,-7,-81,54,-10,-86,-58,-24,73,48,-5,46,-6,-34,54,-4,-75,48,7,-57,27,8,-6,-48,-92,6,73,-77,4,-46,-41,42,6,54,-94,27,-84,12,-1,-50,-38,74,-53,41,-42,-12,-52,97,35,36,-6,-78,27,47,-29,-18,-20,-19,15,-71,-36,29,-108,127,-34,-58,37,18,10,27, /* [1101][0][][] */ -91,21,-16,78,-75,-3,-33,55,48,-28,26,-2,-46,-36,10,-28,-29,-58,-45,-44,-127,3,24,-18,18,-33,14,20,59,22,6,37,-56,60,-15,-47,-1,44,-27,18,-39,-22,10,19,-38,24,29,-22,33,30,45,44,-12,-2,-26,-13,13,-24,-30,-6,-34,-13,4,-23,10,-29,-17,63,1,-2,-43,-7,-16,52,-20,28,-18,25,-63,30,-18,12,-11,-43,36,-45,38,-43,-6,-67,-38,56,85,-19,-43,-5,-32,-54,-26,-76,7,-3,20,40,26,-22,14,-27,35,87,20,-30, /* [1102][0][][] */ 41,-26,-17,41,13,-29,-3,-127,56,1,11,-40,21,-46,12,-42,21,-39,6,-18,28,41,-51,-17,32,37,52,25,104,97,1,31,-5,28,-41,-27,-10,23,25,93,-21,18,64,45,-44,70,-37,66,-55,60,77,-37,55,-2,-40,-1,36,-117,-71,70,-20,51,-62,96,13,1,-11,-3,1,66,75,-30,-41,-87,-9,-57,81,55,2,48,1,-8,-37,-71,-39,15,56,35,-55,-76,57,18,71,16,1,55,-67,-28,0,3,44,-25,22,40,68,33,-24,-24,55,26,-35,-37, /* [1103][0][][] */ -29,40,45,-10,0,0,-74,92,-91,19,-123,-47,-2,80,-62,-10,15,4,43,2,-14,-37,117,-12,30,-22,52,-20,-14,-31,-49,-79,-16,102,5,63,-1,109,48,-28,-75,44,-36,-63,-27,47,-9,27,-4,-35,16,70,-1,-46,26,-14,-13,18,36,38,18,23,31,-43,-9,-8,-20,42,113,-52,17,78,-44,18,6,68,-13,-7,-49,-58,21,-12,-73,-37,-2,-9,-44,-28,8,-31,-53,23,4,8,-94,-6,-73,42,-68,42,127,94,37,52,-90,81,2,-72,38,0,11,-7, /* [1104][0][][] */ -36,50,30,-30,-55,-22,-24,53,-13,82,57,-11,-67,17,69,25,-112,52,-12,-4,73,-79,5,-52,14,4,-11,91,19,35,76,-37,-27,53,-18,23,-28,14,-116,46,-83,22,34,-10,-1,-21,60,-25,44,-55,-30,41,19,11,19,-39,47,-39,30,-110,-10,-84,-127,-72,104,30,-57,-3,124,11,42,72,-13,29,-16,49,-56,28,-50,-81,28,57,13,-29,5,20,-91,37,-17,47,-29,-28,27,40,-45,-27,-2,18,-14,16,-1,29,61,-53,-40,36,74,-53,-98,78,-27,-16, /* [1105][0][][] */ 19,-41,13,86,17,19,40,-44,-9,-77,29,-35,127,61,30,-8,39,-22,17,19,5,13,12,101,-65,41,-20,33,-41,68,-47,-59,-18,27,-47,-46,28,4,71,-47,4,53,83,91,6,39,48,-67,49,-4,35,-90,61,103,-3,-94,14,24,-39,47,-40,47,29,-43,-62,9,-20,-88,87,6,-15,-7,-38,62,-1,-28,22,20,6,-54,-33,53,77,1,-39,66,-22,38,31,56,32,-22,-62,34,-115,-26,24,-83,-50,38,-27,75,3,-1,23,38,18,-78,29,17,51,7, /* [1106][0][][] */ -27,-28,-3,17,-43,-39,-47,59,83,-25,-54,-18,-6,38,-10,11,27,-59,-10,-34,15,7,1,8,22,4,49,14,24,34,-15,10,-41,2,-76,-10,9,29,24,12,-20,-26,-69,-29,-38,-7,-27,3,36,24,0,15,41,-18,-29,20,46,-3,6,35,-11,17,-19,16,-50,43,4,1,-41,44,-92,35,-22,-16,-21,-41,10,29,15,-44,-28,1,-1,-4,-32,36,-127,-22,-8,3,8,-31,-70,1,-39,-1,-48,-12,-43,-3,3,39,-13,-33,-2,40,-9,8,45,26,6,2, /* [1107][0][][] */ 55,-56,-5,17,-118,-73,-32,27,10,-42,-39,24,22,-55,60,-70,43,18,89,4,81,-127,-2,-27,25,-83,66,46,-59,-65,-91,8,-106,-30,60,58,-99,10,1,-17,-93,23,-94,24,-27,11,16,14,46,-74,-45,33,34,61,-21,-14,-57,37,62,-71,41,-68,18,18,-22,-43,1,44,-14,25,32,-39,-82,56,-17,38,58,21,-94,-15,94,-4,-6,37,79,-80,-12,-30,77,-77,25,8,-38,30,-1,-82,-8,-74,-40,-88,-29,60,70,41,-30,-23,-82,-75,3,-57,36,-37, /* [1108][0][][] */ -6,0,-2,-2,-43,7,45,-22,111,26,-34,-39,80,-8,35,-3,11,-10,-7,-8,27,-12,-33,59,31,26,5,89,45,19,-67,48,-71,-17,-115,-38,-2,116,101,-18,-107,-32,91,62,68,-120,-21,13,49,21,-25,-2,34,-28,-26,-33,76,-12,3,-54,49,9,-55,-2,-31,19,15,55,8,53,-25,61,-127,-24,-47,-58,6,110,6,23,31,48,-40,-1,-80,-57,-69,31,-95,-15,-96,-2,-41,48,-48,8,17,-22,-19,-13,94,105,34,27,-17,56,31,-12,29,-37,-44,4, /* [1109][0][][] */ 42,-127,2,10,71,-35,-33,-31,6,17,71,28,86,20,-66,-20,82,-33,15,-40,48,95,15,95,40,82,3,13,-9,87,-36,56,44,77,4,41,25,-42,-14,5,-57,28,-31,29,-27,24,-17,-73,35,-71,19,-18,28,-68,100,-11,14,-37,-119,35,47,80,-30,10,-56,17,-58,-114,5,-40,72,-19,42,34,45,14,70,69,107,-83,21,70,110,-32,20,64,-48,56,-7,-15,32,-18,122,24,-105,-24,70,92,-37,6,-12,-79,-35,-37,-43,76,36,25,100,-6,44,-84, /* [1110][0][][] */ -48,36,12,-2,-48,-41,44,-7,64,38,-49,-82,-127,20,6,3,-9,45,-24,-18,-37,11,3,-20,-48,-125,15,35,-54,30,-5,-72,-69,20,46,48,-37,-22,11,100,-77,61,-80,-12,-1,49,98,10,-19,13,24,60,37,-23,-127,33,-33,79,11,30,-21,-60,-79,-24,-45,-9,-99,70,25,-15,51,89,-90,-5,5,10,-109,48,-20,38,34,-6,-75,-4,-11,-28,-56,40,38,-2,-2,-62,-52,-91,-24,38,-35,5,-114,23,64,-63,58,84,27,92,34,-15,57,28,-4,50, /* [1111][0][][] */ 48,-55,9,43,1,17,-5,87,55,7,-19,-13,50,-3,-35,-12,-90,17,44,8,-23,47,-24,11,-20,-40,58,91,-8,-17,48,18,-48,-32,38,62,25,37,-50,-52,-28,54,-8,57,-64,39,71,0,5,28,12,-18,-38,-25,-58,-99,55,-15,-38,19,-25,54,-92,-27,-23,-61,-79,3,4,-94,-34,78,-16,127,9,47,22,25,-111,5,-15,-51,-40,76,-41,14,10,-7,-25,-28,36,35,-23,-81,-48,-30,20,-17,14,-30,-75,-52,8,50,-89,-44,105,-45,24,-1,-13,41, /* [1112][0][][] */ -16,2,63,83,-47,-22,-30,51,33,-81,38,54,-53,32,-36,-92,46,-94,15,-4,35,-14,5,-76,8,-37,-40,-53,-20,46,-24,16,-63,-21,3,12,-9,43,-98,-20,-109,32,8,33,-71,56,57,-23,-21,17,-23,-6,46,91,-15,-52,-56,27,45,-26,-4,-56,37,-77,-31,-23,-4,48,-19,-67,-29,-63,19,57,-20,-21,34,33,-71,-8,9,16,-38,21,-74,-35,-48,-39,72,-5,72,20,18,-47,-71,-11,-72,-74,-21,-78,14,61,67,-39,32,67,52,-50,37,24,127,11, /* [1113][0][][] */ 85,12,-14,118,3,2,-5,-38,17,-12,-51,36,64,-50,-43,-12,25,-5,13,-34,-41,31,72,33,-48,7,68,-46,108,54,6,-15,-66,123,-48,31,-22,10,-16,72,20,28,-47,35,6,41,82,10,-2,-75,32,68,24,-46,34,-2,-42,59,7,-29,-25,28,12,14,-18,-6,-11,-17,2,-19,29,-6,-9,-28,14,53,18,14,-6,-25,4,65,-68,35,-2,-17,3,96,7,49,-23,-46,127,20,-67,-33,-5,10,-17,21,-117,-33,1,-49,8,-45,2,4,17,110,64,-30, /* [1114][0][][] */ 24,-60,25,-20,13,20,33,-21,44,25,-1,-8,-2,-20,-15,-23,8,-25,9,18,68,-39,-55,-4,-28,5,5,47,13,15,31,-14,-4,-18,-25,38,36,-25,31,-2,8,-50,-22,-7,-16,13,-6,-53,-11,42,45,-62,34,25,-28,22,-10,-127,6,0,-48,22,-29,-19,-22,-14,-9,-24,-25,22,14,-22,-74,34,13,32,15,52,-19,4,60,-20,34,56,-44,-18,4,-12,-28,22,-18,-29,-33,-9,-3,6,6,-3,40,22,-5,38,-5,-51,0,20,-14,19,-1,19,45,32, /* [1115][0][][] */ -4,-7,10,60,-23,-39,-41,19,-3,6,28,59,21,12,18,-40,30,-41,76,33,53,-9,2,14,-16,-9,3,-33,26,19,3,-44,-30,-25,9,-46,-1,32,1,-34,-30,19,25,6,-1,1,49,-45,1,15,40,-3,-42,45,-21,-64,21,25,58,-18,-50,36,8,-63,-47,-77,30,70,-11,-34,38,-9,-59,-12,-8,27,-20,56,-20,-45,17,64,-51,127,11,32,40,16,12,39,15,-32,-18,2,-1,-28,-5,-28,-17,-9,18,-27,-20,-11,-7,-59,10,-22,-43,63,18,-21, /* [1116][0][][] */ 39,-16,-106,3,-3,92,29,21,5,-6,43,52,69,55,23,75,113,-25,52,3,22,43,38,67,22,30,58,-18,7,-33,63,-35,-122,-39,-108,0,57,60,-16,-8,-57,19,-1,-5,29,13,-70,81,55,-30,0,-69,7,-85,14,34,-47,-57,-6,96,45,24,45,89,10,9,41,41,-10,66,11,20,-19,-112,-6,7,107,18,-17,-119,-36,88,-5,-20,-80,36,-27,74,-108,3,-24,8,-29,97,94,26,-24,-45,112,-2,76,9,20,27,115,13,-17,21,65,127,20,-27, /* [1117][0][][] */ 45,-44,2,-12,-58,-53,-75,-13,-34,58,-12,22,-56,-15,40,33,-49,27,37,-49,-2,-29,6,12,-4,-8,5,21,12,-97,4,-34,-31,-34,43,5,-102,-24,42,30,-38,67,-81,0,-5,22,7,-40,26,41,8,-31,85,18,-41,35,-66,-1,40,-39,18,32,5,25,67,-19,7,83,-27,-1,-65,122,-23,37,-8,39,-19,53,-100,27,56,110,12,-40,38,81,61,4,-98,-34,-5,47,64,-43,11,56,-29,-4,-61,-6,88,-61,127,33,-12,20,24,-75,-86,-11,-26,4, /* [1118][0][][] */ -35,2,-102,-75,-47,-46,103,74,11,-70,55,10,20,17,-22,18,-2,31,10,-33,27,13,-26,33,23,97,-70,7,-20,17,-21,51,-35,68,49,38,98,8,19,63,-31,-44,57,-41,-58,-92,-29,-4,86,10,-54,93,-7,-115,-18,-20,-13,-49,-6,-19,-32,54,-58,44,-65,28,-20,-55,10,-37,-9,-22,115,-48,9,-6,-5,82,66,22,127,-16,56,71,-50,2,-52,-54,-42,-27,-27,-110,-66,65,44,-67,-16,-64,41,64,3,-21,-9,19,-14,29,35,40,-9,-69,28,-24, /* [1119][0][][] */ 12,-82,22,108,16,81,-3,-124,22,-59,30,-75,51,38,-21,4,24,40,104,-36,77,43,21,76,-67,-46,-3,-57,37,49,12,10,-6,19,-1,39,-5,2,30,68,-20,49,13,-93,3,-37,-117,-29,118,62,78,24,54,-31,-30,5,19,95,-18,26,46,-49,9,32,35,-46,-79,-33,-21,-34,-15,-1,13,-24,-42,8,71,125,-69,13,34,11,20,-46,-23,34,-65,-29,1,-39,-14,-97,7,1,-101,-43,101,-56,-87,-41,32,-33,47,67,-39,29,-46,-3,127,-17,-63,50, /* [1120][0][][] */ -29,14,-89,60,2,-127,-39,25,61,-49,-53,25,-57,-19,47,-3,14,-104,3,-2,-3,-73,20,0,-24,-77,9,-26,-35,103,14,-60,39,4,5,-54,-6,46,-81,0,13,18,-86,2,-51,90,3,-3,-2,14,-36,20,13,-54,-92,-41,-36,36,-3,-41,-22,-23,-9,2,-50,-14,-11,15,107,-45,-10,-12,13,0,14,27,19,-9,-20,-36,22,-24,-63,-23,-15,-45,-15,71,37,26,-111,11,-41,0,-13,-52,-17,-76,-14,-48,44,6,-32,36,34,16,0,-45,45,45,-45,19, /* [1121][0][][] */ 41,-72,-15,7,11,75,26,-61,12,-35,-71,-1,-21,-30,64,-21,37,-62,71,51,-39,-42,-25,73,-19,23,-61,87,21,81,-12,101,6,63,-14,-27,33,12,-106,52,95,2,53,36,15,41,69,-34,78,-41,63,-89,-24,8,85,5,-42,-46,-77,-27,-12,-97,12,12,32,-65,36,-22,76,38,-45,-43,27,80,77,-16,7,127,21,-36,-13,-52,21,-52,-27,-7,61,33,34,-77,-88,-54,20,-70,-12,67,11,-63,12,87,-15,31,11,24,69,115,26,65,30,48,19,-12, /* [1122][0][][] */ -7,-39,-18,25,-29,-65,-21,-57,84,-38,79,15,59,-1,-58,-47,29,-13,27,22,53,-77,-64,-36,-10,-44,41,80,11,39,-41,-24,68,0,-55,52,-4,33,-48,38,22,-11,-58,61,-33,-28,0,2,21,-51,102,-62,44,-1,80,29,64,-88,-44,33,-5,-35,-28,99,-87,11,-15,-25,-23,24,-11,-15,55,28,-31,-4,-44,39,49,-102,69,-7,-16,-31,-38,-29,9,-33,-120,-64,-59,21,19,25,-34,0,1,79,-127,39,106,-54,-18,-15,-37,12,18,12,14,-17,-40,-24, /* [1123][0][][] */ 84,1,-67,55,-102,49,8,-13,16,-42,6,61,17,-78,87,-59,-56,-17,44,22,-25,-32,75,-52,24,12,10,-31,45,-16,-9,-29,69,-54,66,9,56,-42,-21,-35,49,99,-52,-61,-7,38,120,-10,-22,31,-84,-29,62,46,-19,-18,-52,70,1,-3,-96,80,23,-74,19,-48,11,-27,14,38,10,-90,-21,69,-9,50,29,-6,-40,-41,70,17,-74,-24,-22,6,55,-125,60,-43,37,41,69,29,-78,-44,8,-76,-22,-57,55,-15,94,127,-55,6,16,-30,-22,-16,78,-23, /* [1124][0][][] */ -65,-5,-62,-13,16,-16,-85,4,12,10,9,-35,55,3,-47,55,-79,6,-16,22,-32,-29,19,-30,102,-20,82,127,14,110,13,-52,79,1,108,70,-16,48,32,-54,27,28,-31,-12,-37,-4,18,-26,-29,28,-101,-4,27,-42,-68,-8,-69,43,-6,18,-25,17,-69,-18,-45,31,-109,44,-45,-25,1,27,-49,62,9,80,40,-43,-70,-20,28,-4,46,-8,5,-8,7,10,60,-103,-21,63,23,53,-29,82,-61,-12,39,-14,-91,-71,35,46,-3,59,-38,-88,-52,-5,31,-76, /* [1125][0][][] */ -4,-45,79,48,-11,-36,-45,0,-63,-3,48,-19,-40,22,-70,21,-14,-8,55,60,-7,-67,-44,-46,-8,28,-3,-2,-41,-30,13,-31,86,-5,20,64,-5,14,-5,-52,-2,29,32,-49,17,25,68,-43,-63,45,23,-53,-32,-15,-9,-93,-35,-52,37,-22,-54,0,48,-127,-31,-34,-11,26,27,-81,67,-30,9,75,-33,49,35,18,-56,-78,80,12,-46,8,-106,-58,14,3,13,-81,-2,-79,83,-35,-39,81,22,28,24,16,82,-27,86,35,-111,-51,-16,-73,20,3,-13,-29, /* [1126][0][][] */ -92,25,-52,32,-73,-11,60,9,-22,-83,-19,14,-77,47,76,57,44,-32,-15,-104,-19,15,-47,20,55,20,9,-30,29,-28,10,-74,-8,45,127,-6,-15,-42,-86,57,78,-27,-55,9,-32,-34,42,-42,-22,-67,-81,58,17,-57,34,-19,-53,122,-39,45,39,-85,-9,-33,-43,-54,-69,7,6,21,89,0,-64,15,98,76,-48,4,-12,-84,13,-10,-33,69,33,-10,3,-24,-28,10,26,-114,14,9,-14,30,-34,-46,-49,-46,-85,-26,1,-37,-9,49,31,-89,-29,26,-9,-28, /* [1127][0][][] */ 82,-103,58,72,-73,-54,-69,31,-124,-118,-33,95,-10,2,31,-51,-12,-87,47,-18,31,8,-8,-8,28,66,-22,-69,0,-36,-60,-7,-27,32,-48,14,80,-13,-45,-22,-4,-45,-55,-45,-69,29,13,-66,-13,41,-47,127,-21,28,-99,-43,-37,60,90,-41,-123,-8,-23,-67,-11,-53,12,79,-36,-29,6,-34,-22,33,65,31,20,45,7,-48,83,33,-49,-12,-42,8,-42,0,58,20,55,-36,13,32,52,37,-41,-24,-29,-7,20,-45,-24,-67,-47,-37,65,-55,-108,-28,-44,-4, /* [1128][0][][] */ 76,-24,-18,77,-7,-11,45,29,-45,-40,33,62,61,-8,17,15,-8,-81,68,-120,55,-1,20,-34,31,-101,2,-4,-51,57,48,-25,-60,12,-64,22,-3,-18,-11,-55,-10,-12,-10,-36,-91,53,56,-37,4,27,-53,95,47,49,-30,-18,-1,41,12,36,-30,33,81,-98,-80,-36,22,82,-29,37,41,-76,40,51,-17,14,78,32,61,-34,55,32,-2,-8,-99,114,17,-80,-21,50,38,36,7,-98,16,2,-21,-127,22,17,10,-59,118,13,-28,-12,55,18,7,-13,-15,28, /* [1129][0][][] */ 37,3,-85,105,18,-126,-19,-3,-81,9,-31,5,-71,-28,45,24,-2,-14,69,24,-3,20,-29,-44,13,-47,-11,65,23,-26,-53,-117,-4,7,33,-70,-37,35,-20,-67,31,8,-28,15,29,67,-50,-65,7,58,-23,1,-75,-32,-106,-74,-53,32,51,-3,-34,-6,44,-32,-48,-84,-47,67,-2,-47,68,-45,-16,20,69,92,67,-54,20,-51,42,67,-111,-14,-64,70,31,18,59,127,23,68,-99,-21,33,13,0,-118,-75,65,108,-42,9,45,-7,-4,61,-56,4,63,-2,-60, /* [1130][0][][] */ 35,-34,-49,27,-22,-110,-38,-8,20,-56,-19,-5,-6,-72,-127,21,-97,-18,25,12,-15,-3,-43,-9,-4,-20,-47,48,53,12,-23,13,47,-38,-52,60,-28,59,-25,-41,41,123,1,1,-20,4,83,5,29,-19,-41,-8,50,-61,-91,-97,-89,-14,-14,-91,21,-31,-28,-10,-18,-16,10,16,12,-33,20,-30,76,3,51,24,32,-53,-95,-23,51,-29,-52,36,-61,-66,-41,65,35,-1,8,37,-45,-19,-70,-10,-30,-37,17,25,-69,-23,-18,64,-62,-53,93,-43,74,-59,-40,-107, /* [1131][0][][] */ 52,-26,3,19,3,-28,-56,30,49,1,-25,-2,49,58,-92,-44,-38,16,-30,-49,-26,-8,47,42,74,-57,-44,50,15,-7,16,17,16,37,0,27,2,-10,6,-46,38,0,17,24,6,48,42,49,-22,-35,-6,-35,-27,2,-23,-30,-46,-43,22,2,-5,-11,-66,2,-68,-30,-91,-15,-26,16,32,-33,10,41,24,14,-1,-30,-7,-1,16,9,-16,51,-24,-3,24,-14,79,20,29,62,9,-33,-14,54,-127,41,-50,-15,-5,-57,60,49,-7,25,37,-23,-10,44,57,5, /* [1132][0][][] */ -3,-103,-39,-22,24,37,-53,44,104,5,-92,-5,-4,86,5,71,15,39,-36,-9,-2,32,-6,-9,26,37,9,21,-15,80,-3,-65,-24,33,-68,-48,50,13,-52,-18,-83,38,26,-22,-37,43,10,-17,83,-22,27,-46,63,91,86,16,14,-35,-127,-12,14,-15,-2,46,-18,39,5,24,19,-31,-54,29,28,-45,-21,-1,52,97,-8,-4,9,-5,-22,119,-2,15,-35,46,-44,54,-29,-49,-73,-6,-25,-13,6,2,-57,-31,6,74,-33,23,42,-30,22,-37,77,-17,-17,-81, /* [1133][0][][] */ 51,1,2,-3,-81,5,5,72,5,10,5,38,-40,11,-3,-4,-126,-11,-20,-127,-3,-21,21,-18,33,3,16,-14,26,6,-4,3,12,26,-16,-7,42,35,-7,34,-17,19,19,11,-30,46,-4,-4,42,-12,-51,11,-4,-29,-10,-34,-14,42,20,-22,11,-3,-38,36,-19,-20,-4,-6,-57,-7,32,-13,-9,-20,-26,14,-24,6,14,14,20,53,14,-47,-36,44,-27,-32,67,68,43,11,-18,62,19,-6,-10,-31,10,-15,-3,42,45,75,-45,97,12,-2,15,67,-30,-13, /* [1134][0][][] */ 23,73,6,37,-60,-1,-108,-27,-39,-44,-58,9,29,31,-14,-49,-29,113,-57,-20,8,-51,60,28,-2,-71,-50,-21,26,22,9,2,54,32,54,24,-30,10,-3,-24,0,69,-28,26,83,63,4,-22,-28,-60,75,-37,45,-86,-76,-36,16,-24,83,42,-30,-116,-37,21,72,-8,-20,44,-21,-14,-8,16,-40,80,-34,-15,117,-37,5,-5,101,127,47,13,14,18,-81,-39,1,12,9,-30,99,57,-37,-69,20,59,59,43,53,-70,110,81,-33,30,-2,-109,-29,21,-48,13, /* [1135][0][][] */ -6,53,2,45,-17,-33,10,-21,10,-4,13,53,-61,12,32,-2,-7,-8,-13,-33,8,-50,3,43,-27,-84,-62,-65,-32,-53,44,-71,-54,33,20,32,-92,-28,-5,95,35,21,-23,-5,-69,31,11,1,3,5,-25,9,22,-53,28,-9,-127,29,-40,20,-19,36,-15,-80,-17,-17,66,46,50,-12,90,-22,-7,-40,79,7,-30,-1,28,-25,47,-9,-113,1,-9,45,29,31,30,59,-46,-42,-44,-17,49,16,-28,20,-73,-27,45,44,25,-30,15,28,29,-70,6,93,41,55, /* [1136][0][][] */ 53,76,27,-25,-5,-98,30,4,35,-54,-18,-16,-26,-35,-57,-73,-25,-17,-12,-35,41,-67,-50,-62,-44,-31,23,24,-32,-14,-18,-18,-26,-18,34,16,32,-23,-13,11,41,-29,-5,37,-5,41,16,-24,24,-45,-12,18,-54,-20,-32,-20,-24,6,13,34,-41,-41,-49,-2,-70,-42,-76,25,-1,25,16,-39,-32,-40,55,74,19,37,38,-43,89,5,-12,63,44,21,-78,-29,19,-52,-86,93,35,39,-27,-37,-52,28,-49,62,22,32,-29,-32,-127,3,13,-30,-11,19,72,14, /* [1137][0][][] */ -23,71,8,21,-24,32,-43,85,-28,-65,-52,27,-59,-3,-40,-42,-65,-3,-38,-33,5,-25,13,-10,54,33,75,-36,26,6,44,-61,-22,81,48,-12,-27,-2,-39,28,21,16,51,-18,-16,57,42,-47,25,-35,-5,13,-45,-51,-69,-44,-9,82,19,85,-45,-6,-127,-1,-19,-77,-117,-34,-22,-3,-37,-41,5,5,-5,61,11,66,47,70,107,76,12,28,14,6,-27,-47,45,42,-5,-26,43,63,0,-30,5,65,-70,44,28,-5,0,46,-45,82,21,-57,20,21,-1,32, /* [1138][0][][] */ 22,-33,-21,8,2,-31,12,-64,127,-11,44,-41,86,49,-32,27,12,27,-109,-11,102,43,2,48,66,61,12,-15,-31,-17,-74,-21,47,49,12,6,91,-75,-29,38,-1,-52,21,-70,-86,-3,1,23,-14,21,31,-48,-6,-51,58,61,-4,0,-20,0,-70,13,-93,7,-50,1,-41,37,-123,-21,59,-4,-54,-40,39,66,2,8,-18,-58,-29,-58,21,-20,-20,87,-24,-56,-73,29,28,-48,54,-10,-88,51,-44,-106,63,31,40,9,17,-41,-60,-1,-38,-57,104,-49,-40,-6, /* [1139][0][][] */ -31,-10,-12,-25,-30,-54,-2,-56,-6,-13,18,16,48,30,2,78,44,-45,49,-20,12,22,-23,55,-67,74,8,-42,31,64,-64,-33,3,3,1,-18,-16,75,34,-25,-24,41,-82,29,49,-2,52,-69,54,-43,-3,-41,-22,-16,-24,11,91,-7,10,102,23,39,-6,17,-30,-111,81,14,-40,56,1,13,-18,68,-81,12,36,80,-64,-97,31,35,89,14,6,23,-38,19,-127,11,22,48,-53,67,10,10,-7,58,47,16,69,-24,19,40,-15,28,-112,-24,-5,7,-36,-47, /* [1140][0][][] */ -45,-22,-44,-4,-3,58,-52,1,-35,66,-9,-23,10,80,10,5,76,2,47,-16,-3,-20,19,-61,-40,-82,107,19,32,-19,70,-17,-48,-66,-13,-11,13,103,-51,-15,-127,24,-87,51,-5,-1,-16,29,38,-61,45,-24,8,-19,-66,-98,37,-8,19,-29,21,17,40,2,61,13,1,40,28,-46,38,-1,-88,10,-54,82,11,4,-5,-45,-13,46,-77,-2,-25,0,-6,5,-56,73,-21,-27,-21,1,-23,9,15,7,13,-48,58,-60,21,-15,-38,-20,50,-26,-67,34,-54,-77, /* [1141][0][][] */ 18,-54,51,-36,-16,-15,-64,63,-13,-4,10,5,-71,-7,-23,-36,1,5,-29,-74,94,-66,-54,-62,-72,34,-20,14,42,27,-23,7,8,0,-95,45,-1,52,24,5,9,-11,-10,33,26,-13,61,11,38,-66,-32,63,-38,11,-28,-8,-14,11,-30,-84,11,-29,-62,-20,62,-5,-37,54,-28,-44,99,41,-26,9,60,38,-72,3,-43,-17,40,31,-81,-66,33,1,-27,2,19,48,-5,-45,-24,28,-9,70,-19,-60,-31,-16,-41,21,38,37,-15,-31,127,34,-58,33,-50,-28, /* [1142][0][][] */ 35,-6,-27,40,22,1,-38,15,39,-15,-76,-22,-12,-42,24,-37,-71,-3,3,21,-53,42,-35,22,47,4,-42,6,5,-80,16,-61,-83,20,25,10,4,-7,-50,-24,-20,85,-30,127,-17,6,5,-70,-73,46,58,-19,-21,-61,-30,-66,-54,42,70,-19,8,103,-53,24,14,45,-32,23,21,-11,-7,24,-25,31,11,-40,-14,-28,11,-59,-27,20,-6,101,28,-13,-20,15,-71,33,-74,21,-11,74,22,-4,-15,-21,-73,-25,-49,-77,65,44,-46,21,116,-49,-101,-9,-32,50, /* [1143][0][][] */ -63,37,15,-31,-127,-9,63,-127,25,23,-19,-17,-16,14,49,19,27,7,24,-36,82,8,15,43,-23,61,-63,-13,19,13,1,5,-8,36,-34,-2,-28,15,29,72,-25,37,97,-34,21,-2,37,-75,10,-7,46,-2,14,46,27,76,2,-61,29,-71,-4,-44,-53,-12,17,28,-26,-38,-39,27,-4,13,-40,17,-24,47,-23,51,-67,13,6,5,23,-36,-38,25,-74,15,-26,-39,-15,-80,-4,-19,-28,33,64,-73,44,26,-6,-17,55,-28,-38,43,7,59,37,-25,58,21, /* [1144][0][][] */ -27,-24,-6,-88,48,-19,-68,40,109,50,82,-70,80,21,4,83,-6,51,6,27,18,6,-41,53,-8,-37,-107,-23,-3,71,22,-4,51,11,-42,22,-12,-3,-83,-7,-91,-64,37,51,-48,69,-29,5,4,-100,18,-62,-18,-14,-48,-41,-36,44,-45,-51,67,72,-127,26,-19,-8,42,68,-47,23,-43,25,49,-50,35,16,-13,74,-12,-15,-23,5,63,-3,-38,3,3,-42,-36,-34,-39,-106,-49,41,-11,74,-5,36,47,65,-48,30,-1,81,-16,42,2,-2,50,-25,-4,-44, /* [1145][0][][] */ 81,-54,2,31,2,43,0,36,-50,-5,-61,-19,75,-1,-78,-17,-44,64,62,7,-10,-50,-50,55,-35,-14,28,98,-3,0,-13,-21,-42,-62,-7,39,-47,45,-8,-7,-14,57,-12,94,-60,27,49,24,-48,-65,4,29,-38,16,-9,-51,-9,22,18,-10,2,62,-4,70,111,-53,0,-5,39,-24,25,22,-31,127,-26,-12,-60,-19,-90,-9,11,-19,-91,31,-11,37,-36,-13,-30,65,32,-24,-10,48,-38,-53,13,-28,-24,20,-33,15,-16,-1,-35,6,96,-37,-23,8,-53,-50, /* [1146][0][][] */ -27,-50,23,-29,11,11,-30,-34,64,-41,14,38,35,70,31,-17,88,-51,48,-54,88,4,4,-19,-20,33,-106,-27,12,19,48,27,-42,41,-24,-84,12,0,89,127,17,-3,4,-86,17,15,48,-5,61,-113,61,13,1,-49,-3,-9,-20,7,-53,19,35,30,-17,24,-5,41,-25,-50,33,24,-103,0,-1,33,60,-7,-56,109,-33,90,7,-8,104,-71,9,8,-34,-41,19,87,2,-56,-25,30,-27,-9,2,28,-8,7,68,61,60,89,-50,66,-25,23,-36,-3,21,-21, /* [1147][0][][] */ -38,-41,-25,-16,5,18,-98,55,17,25,18,17,50,-3,80,111,-8,2,38,-40,45,-32,-30,127,8,61,33,28,89,-5,95,-29,47,-18,-69,19,-20,8,-60,0,9,93,45,-9,-65,-1,66,8,-75,-84,-56,53,26,-31,-3,-26,-84,58,-15,-82,-4,46,-52,22,31,-85,-70,14,-5,-125,-14,33,71,-5,51,86,15,10,-33,4,-5,93,4,-19,41,43,32,-1,35,-4,20,34,-50,-33,119,53,-95,58,-48,0,-16,-76,-11,101,-34,35,22,55,-16,51,-61,-30, /* [1148][0][][] */ 32,-89,-23,22,-19,12,-24,-127,17,53,24,-27,67,21,8,30,27,33,17,21,48,15,40,80,45,6,6,44,-29,-9,29,-34,-48,23,-73,-1,29,9,49,1,1,-11,-1,-90,0,29,-31,7,53,39,56,18,11,-52,-21,3,-19,-22,-17,-11,23,-15,-37,-32,2,-4,-17,-10,-13,15,30,21,-42,-34,27,-5,69,20,-39,-7,-70,70,22,1,-77,-24,-58,22,2,-54,-23,-36,10,-91,-62,104,27,0,46,-28,20,84,105,-39,4,19,-33,4,-31,-38,-36,6, /* [1149][0][][] */ 40,-13,-58,61,27,8,51,14,-15,17,-21,60,58,33,-42,-32,57,-20,8,-50,51,23,-23,-63,21,-17,20,19,0,2,127,-47,-42,-56,-58,-8,41,-49,27,4,-1,49,-70,3,-12,94,0,-12,57,39,-39,4,-77,9,1,-54,-48,7,0,-24,-71,-36,17,-37,6,29,49,47,28,1,76,-34,16,48,95,28,-50,16,11,-72,84,4,-32,-29,-52,28,41,17,30,46,-5,-113,-48,3,3,52,-6,18,-60,3,-58,-24,21,-26,-37,-21,67,-23,-104,22,-31,-16, /* [1150][0][][] */ 6,3,-44,7,11,4,-53,-16,61,-21,-58,-2,23,29,-13,32,-20,-24,3,-24,22,-27,10,-38,-10,-65,2,54,-14,25,21,-37,28,-38,-37,2,-34,10,-62,-33,-12,3,17,10,-73,-8,13,-16,14,-7,-35,-22,-19,-1,-127,-25,-6,0,-12,-34,22,-8,-27,46,-12,8,1,3,-18,-45,-19,37,-23,18,19,16,-45,-35,23,-21,11,-17,-18,-1,-3,-58,5,33,-40,5,-24,24,-26,27,-41,-28,-41,-16,-50,-15,10,16,22,11,-24,46,-5,-31,1,-13,0,-16, /* [1151][0][][] */ -48,-16,2,28,-94,-38,-25,49,74,-34,-14,74,8,7,23,-30,-75,10,-47,-127,-83,-36,51,11,48,32,-24,10,-2,-10,-5,-15,51,88,-82,4,-27,83,3,-1,6,5,57,-38,-36,22,54,-38,10,23,18,0,68,-10,-28,-7,28,39,49,-31,-72,-12,-56,33,-11,-58,-25,34,-41,28,-52,-21,2,-49,-25,44,-10,-15,5,-68,46,48,-25,-18,-13,73,-7,-27,-25,24,-33,-33,88,33,-25,-19,26,20,-33,-12,-26,-20,31,-37,-25,5,-8,-40,57,53,20,-45, /* [1152][0][][] */ -2,6,50,-29,33,15,-14,-60,35,-20,-46,49,37,-55,-23,31,-31,-27,-12,-58,81,-2,77,50,47,-29,49,42,41,-6,50,3,-46,-87,-7,43,16,-19,31,21,21,40,27,39,-48,-26,15,-28,-32,32,-22,19,35,-29,-61,-2,-56,-4,-30,-61,32,3,16,23,22,-34,-39,-36,64,-12,37,-19,-32,102,-11,17,-77,50,-67,-25,-15,22,-27,38,-24,-2,70,20,6,-45,21,8,20,-47,46,57,-127,-65,-18,-27,32,2,2,101,36,8,4,-50,-50,37,5,4, /* [1153][0][][] */ 15,11,-81,7,37,29,54,-19,25,30,-39,-19,-2,127,2,43,68,-13,54,-8,1,25,72,-17,-49,-5,36,18,-59,69,-7,-17,-44,-7,8,3,-3,56,-42,37,-15,23,7,-5,4,-2,27,-57,51,6,3,23,44,38,31,-15,26,1,-62,18,-37,-11,-23,82,-72,-47,-47,-47,-16,72,-67,-18,31,-36,1,-18,50,60,64,-50,4,16,89,-6,-53,-7,-35,-41,5,-61,49,-76,18,26,-14,28,61,17,-38,2,1,50,-30,-1,29,0,-31,10,19,-24,27,-44, /* [1154][0][][] */ 7,29,48,23,-2,16,15,-72,-53,-48,-59,0,53,1,-40,-23,-2,-16,33,-9,-9,-14,-47,52,-49,10,51,26,51,10,9,8,-14,-30,-31,56,-41,5,-41,9,-58,93,-7,-4,9,3,46,36,-3,17,38,11,18,-50,-60,-70,-37,-1,17,5,50,-37,19,31,-46,-36,-13,40,34,-18,13,30,12,127,-78,-31,-44,-41,-55,3,45,47,-67,9,-34,-2,-28,-5,-50,48,1,-2,35,14,-39,63,29,-20,-23,10,-7,-112,-15,26,18,-2,13,-11,-39,64,-37,-5, /* [1155][0][][] */ -17,18,-100,87,-39,4,-32,52,96,84,17,-40,-59,44,-20,29,-5,-16,70,31,-86,-59,48,-69,19,-117,-28,48,34,7,-4,-27,-60,-26,75,-2,12,31,-1,21,-27,-8,-26,45,51,12,60,30,16,-77,57,-17,59,9,-21,-46,-52,38,-57,25,-29,-65,27,7,-52,-58,19,-2,33,57,17,-13,-34,3,7,24,9,-42,-102,-84,-24,65,11,35,33,20,82,7,74,-127,36,-48,-18,-84,-87,-23,-46,11,-41,-10,-49,-100,101,-9,-24,-40,38,16,-21,50,73,17, /* [1156][0][][] */ 52,52,-16,-64,-3,-44,-51,-69,81,-82,-63,-2,8,27,-1,-4,-2,2,-19,-15,6,25,28,-27,-22,-78,-3,20,-3,-5,56,-49,-16,-64,35,48,-19,7,-81,27,-24,6,42,73,-60,-5,2,-57,-24,-33,87,15,-21,2,-44,-18,-52,-26,-44,21,23,-34,-11,79,-27,15,10,-10,47,8,32,-7,30,38,-22,44,-81,20,2,-56,-4,8,-40,60,24,5,-1,45,-47,-2,-41,-28,-13,-13,17,33,-7,61,-77,4,10,-127,24,-62,-42,-10,57,15,-87,12,-43,29, /* [1157][0][][] */ -48,53,1,-18,-43,31,-36,40,-33,-35,23,-34,-28,-47,-67,24,-69,-54,-21,-48,-76,-41,9,18,-5,27,28,61,11,-15,13,-51,-39,36,-33,49,-49,-11,-10,21,-3,55,-44,-49,1,-18,62,-19,36,16,-68,79,53,-3,-50,49,-98,35,-47,-13,-19,-12,-30,36,-13,-8,-59,60,-2,-77,12,28,-6,69,-3,-4,-42,-42,-127,-10,20,-9,-9,36,-26,51,-29,8,-3,-47,-36,31,6,-13,-12,-32,17,-93,-45,0,14,-80,-27,53,-3,-57,47,18,12,46,35,-34, /* [1158][0][][] */ 58,-113,-39,20,-53,6,-37,-48,-93,26,2,-39,22,-29,-23,21,-19,15,71,-34,-9,-49,-15,11,93,-10,45,73,-30,52,-71,-11,-9,48,-17,-19,-61,-51,12,-78,-28,-3,-31,24,9,51,-1,-44,17,-127,-14,13,18,-86,-88,-24,-6,89,-40,-20,61,-45,-21,-44,56,-50,4,58,13,-72,7,27,-13,53,93,49,6,-30,-50,-23,6,51,12,25,7,41,91,7,118,33,-64,11,30,-60,57,76,-35,-74,-5,29,-41,-18,60,63,-2,-5,14,18,18,91,-11,-52, /* [1159][0][][] */ 42,-54,58,-5,-7,46,46,-4,35,21,27,64,55,26,-26,57,36,-54,68,-14,33,55,-68,46,20,94,-45,-9,-19,-10,-17,21,-48,-18,-85,0,37,5,28,47,-27,-4,-22,40,9,-7,24,5,47,-27,61,64,-7,55,9,-15,35,-92,-58,67,-58,23,36,-30,-49,-4,28,-43,-26,41,27,-46,6,-1,32,-58,47,6,90,-64,-71,-39,1,39,-53,93,33,24,3,60,-13,-121,13,127,30,107,-83,23,12,-28,-19,1,9,7,28,9,43,-18,20,16,64,-69, /* [1160][0][][] */ 23,-41,27,-19,14,20,-5,5,-35,24,-71,-2,21,64,-53,-40,19,-5,25,-42,-20,14,7,-16,55,-19,-27,49,16,-28,-40,-18,-59,81,6,13,-3,1,10,-4,-52,-18,0,15,-20,37,1,-21,0,-7,-16,-17,12,13,-19,-8,-4,12,-2,5,-34,42,-21,-64,1,-29,-25,26,8,-13,9,36,35,-23,34,14,-25,37,-28,-13,42,64,-8,-7,-3,7,49,14,43,-18,-21,42,127,-10,-28,25,-19,12,-31,6,-16,0,-24,2,-28,3,-8,4,33,27,35,28, /* [1161][0][][] */ 40,29,30,3,-41,-50,37,-57,-107,32,-112,1,47,-9,50,-38,-12,58,58,10,-7,-42,16,20,48,33,53,44,22,42,3,-79,-62,5,-10,18,47,0,35,-54,8,33,48,18,41,13,-16,3,-7,1,-41,-6,-12,-31,-53,-28,-21,18,19,19,30,-71,15,-41,36,-51,-127,69,64,-32,-61,-36,-35,19,-27,25,3,47,-46,55,4,66,-30,49,3,35,-2,26,-20,8,-59,107,58,-29,4,34,-11,-44,-10,-4,5,-62,3,51,-19,47,43,-98,2,62,-20,57, /* [1162][0][][] */ -42,-24,-14,99,55,4,-9,-20,-46,31,27,-20,-21,-3,18,-35,-6,-25,29,-22,-11,-20,14,47,63,82,-27,18,31,22,-54,-60,-3,15,-3,84,47,11,86,55,14,-47,-71,46,-89,-58,-5,8,43,44,21,26,-22,-115,76,52,-39,-63,-86,58,48,100,-4,34,-62,-4,-31,15,39,127,-30,2,-4,86,32,-15,18,45,-8,-109,83,-9,-107,-22,-71,29,11,23,-65,8,-35,-34,6,-13,54,-10,37,-34,-25,0,15,-26,-3,-43,2,52,20,-12,91,21,26,44, /* [1163][0][][] */ -33,-7,-60,29,-38,28,33,10,-53,-81,19,69,-21,0,51,6,-26,127,62,-7,-94,-6,22,-43,92,-35,-21,42,-39,91,39,1,-22,-24,75,57,-52,-54,-51,-21,14,-7,-45,-81,-19,30,13,49,82,-44,-65,54,-37,-61,9,-25,-49,-6,-15,-14,75,17,-17,14,-63,15,-22,-7,31,39,66,-39,40,56,75,57,-80,-25,42,10,95,12,-39,10,-29,55,4,-60,19,-16,18,-16,-57,-40,0,-28,3,-34,-92,-14,-82,-45,61,0,-39,56,72,-87,-52,-51,-32,-6, /* [1164][0][][] */ 34,-10,-68,21,-16,-11,71,85,62,8,66,87,40,75,17,-34,12,-33,1,38,112,-70,25,58,127,59,-40,-26,-7,-19,66,24,26,-17,-81,-50,27,64,11,-25,6,11,-56,40,10,-9,28,-18,47,-50,-14,-30,-7,82,56,65,45,-48,-30,54,51,16,17,-17,61,-25,2,-3,-42,-11,13,-60,-41,3,19,15,-56,-7,7,17,-54,-58,70,-35,-37,121,-39,-7,-23,43,-22,-65,-108,115,-35,28,-34,-33,36,-57,-20,49,-8,114,-39,53,16,-7,37,-35,93,-33, /* [1165][0][][] */ -32,1,21,21,3,18,17,-23,40,38,34,-2,9,7,-9,42,33,-18,22,-64,-102,29,57,18,-13,-19,12,-12,-14,22,17,-8,-40,11,-33,-4,-12,35,-127,13,-39,50,51,40,-4,-41,80,18,-1,-23,-11,13,56,1,-11,-40,39,12,-15,-44,14,-14,-26,31,52,-49,29,18,-10,-20,50,55,-5,-25,38,63,16,55,16,-5,9,-9,-55,13,14,-10,19,-2,22,-62,14,-98,41,13,-6,37,43,-68,-34,-52,-4,31,42,3,-54,-38,22,21,-60,45,-10,10, /* [1166][0][][] */ -3,-19,-1,38,5,-3,53,26,-20,11,-5,24,53,3,28,-1,-2,-7,36,3,9,-62,3,-15,1,13,95,68,-25,50,-1,-41,-25,26,17,48,-43,28,-2,-55,-91,20,-43,12,24,32,47,-70,-11,-15,2,-1,-38,-8,-57,-7,53,-69,10,46,-50,-32,-43,-8,106,-33,-127,51,62,-52,13,11,-24,-12,-48,17,25,44,-20,-82,74,-21,-77,95,48,-26,46,62,-19,-29,-89,59,60,68,-50,-5,24,-8,7,16,9,44,-40,-10,-41,-80,73,5,-40,28,4,-24, /* [1167][0][][] */ 50,-36,12,49,-35,-10,-105,-50,32,84,3,68,-12,1,-15,55,-36,4,-21,20,31,-5,49,-19,47,22,4,-5,-31,-47,84,-63,14,-1,4,19,-18,-46,24,33,53,100,-1,-14,-23,3,44,-42,-63,-6,-16,52,-13,-19,-19,22,-98,65,-29,-90,17,-4,-33,29,44,-8,-64,50,-69,2,14,54,-49,92,-32,50,-46,36,-127,47,38,19,12,-86,34,49,12,2,56,36,4,25,-1,-68,19,28,-56,-65,-24,40,45,-20,117,111,-22,108,92,-6,-37,-8,-55,6, /* [1168][0][][] */ -44,-48,-17,19,23,22,-15,29,-54,-79,11,-4,-18,127,-78,-96,8,-66,-40,-93,-5,-75,39,42,21,14,-39,101,-49,-37,-88,-76,-55,77,62,41,31,44,78,-16,-43,52,39,22,7,55,-28,-49,10,-11,-19,-8,-21,-32,-80,14,-13,92,3,9,-120,86,-15,-13,4,-39,-91,65,24,48,72,1,-31,1,85,-37,-27,11,15,-16,69,80,-19,-1,47,-61,15,-54,27,-33,-78,24,-28,-3,67,-55,14,-15,-23,5,53,-26,-20,-39,-78,-34,51,-51,-37,-3,70,51, /* [1169][0][][] */ 70,-45,24,47,8,49,-57,43,25,41,-18,-55,-29,3,-17,11,-77,-28,26,-49,-19,7,-16,43,-16,-13,45,83,83,-5,75,21,-15,-31,-6,18,-72,41,0,57,18,69,0,46,-39,-42,-11,-27,40,-12,27,49,37,38,-17,-17,-70,76,-2,-5,-34,-38,-13,69,37,24,-8,58,4,2,52,28,14,-9,-18,-5,6,-36,-127,-11,54,-8,-15,-37,-59,29,-25,-14,6,-50,-37,-5,16,27,73,36,36,-30,4,33,-39,-74,91,25,-34,-14,42,14,-52,-11,-82,18, /* [1170][0][][] */ 21,-43,-13,-22,-44,-48,-119,52,36,-71,-43,-8,-89,13,1,101,-21,-64,24,16,-68,27,38,-17,-6,-49,18,51,-49,33,-29,4,-55,16,9,9,-8,33,-127,1,-109,-38,-13,12,-49,37,-16,-7,42,-13,88,-5,-12,-12,-15,-62,-3,21,16,-70,9,-32,-5,-9,-28,45,9,45,63,-36,-39,34,-95,13,-53,91,-19,-36,-35,6,-26,48,-38,-1,25,-39,8,30,20,26,-8,-34,-38,-21,43,27,27,-9,-80,-51,-14,7,10,-18,-50,-55,-1,-11,53,35,-51,-42, /* [1171][0][][] */ -40,9,-44,22,-68,8,13,-72,46,-68,14,15,28,9,38,50,-11,2,24,-127,35,-4,74,89,-44,91,-34,-21,8,-63,-55,-19,33,31,62,3,31,-45,-15,19,-59,71,63,21,19,22,19,-81,12,50,38,-96,20,40,-9,-36,31,10,-18,-10,-59,-14,12,104,-51,37,-27,-20,35,8,51,-14,-45,-7,-54,-35,-76,-4,-38,9,3,3,7,55,-66,40,-79,19,-79,-16,27,-49,-117,67,23,-17,-9,-22,5,-36,-8,-60,21,10,59,-11,4,-1,35,-34,19,-34, /* [1172][0][][] */ 61,-42,8,76,-20,-23,-12,-24,-30,-44,-6,-5,10,-62,-48,31,-4,42,13,61,34,16,-28,4,-41,-34,-19,23,-31,-23,32,-31,-29,8,-87,34,-3,-13,-19,-12,43,86,47,28,2,101,-19,-25,11,-28,4,35,-21,-1,-55,47,-94,127,13,-17,-126,-26,-2,-27,69,16,22,110,7,21,42,-33,49,86,31,-2,-70,38,-84,-48,106,57,-34,-30,-64,43,49,2,18,46,52,-60,-112,-20,-76,70,25,77,-88,45,-16,-80,44,-6,-46,-17,42,-3,-55,6,7,-55, /* [1173][0][][] */ -72,-7,-82,47,31,67,31,2,41,-1,-59,-69,9,69,-74,25,7,3,-18,39,39,66,21,20,-17,31,-51,113,-26,-27,42,14,-11,50,-15,-17,6,48,7,60,-39,-28,85,-20,-25,2,-74,-38,11,-14,-15,-45,53,-38,-56,-33,44,-37,-20,55,10,-4,-41,-3,36,-51,16,-64,31,0,-3,18,17,-16,-9,13,32,67,23,2,-3,-7,54,-59,-38,127,-25,-2,2,-5,15,4,3,99,-25,19,7,10,12,-5,-5,-12,40,1,9,89,12,-27,39,-3,-2,25, /* [1174][0][][] */ -23,57,58,-5,-29,17,14,66,29,45,-51,-37,1,43,-24,-29,-21,8,30,-68,-31,-60,-52,-75,-54,36,90,29,36,22,31,-36,108,19,81,43,-55,41,-19,24,6,67,-86,65,-51,-42,66,-8,16,-89,16,40,-6,16,9,-63,-3,13,-33,48,-120,0,92,-27,-67,-14,-66,48,24,50,51,-123,1,-6,-3,-24,-33,-18,-59,-101,55,36,16,23,-10,-15,115,30,7,-36,-10,-11,11,41,-80,-23,9,-53,-127,56,-9,-99,32,-17,-99,28,-9,52,-6,36,65,-79, /* [1175][0][][] */ -24,0,-59,61,33,-118,12,18,119,-33,104,-53,19,-7,2,-35,84,-27,-43,-28,96,-13,87,34,57,61,-65,1,-29,112,-27,0,45,65,-72,-42,11,-11,94,50,25,-35,6,57,72,-103,-1,-13,20,29,-72,69,88,12,92,-13,-48,-8,-76,-36,49,36,-38,15,28,20,-43,9,-72,54,-39,-34,-27,-31,46,-18,3,56,74,50,24,61,-108,17,-11,127,-40,-113,-33,4,46,-12,33,48,-67,-38,51,-70,2,-13,73,95,105,45,33,45,-11,19,120,14,77,-100, /* [1176][0][][] */ -6,-2,-76,43,15,-36,38,-21,8,0,-61,25,99,-30,-66,-18,-59,-12,26,11,3,22,-6,12,18,24,5,2,3,53,-4,-8,37,-6,-20,13,50,0,-14,8,15,3,-13,3,-18,34,-28,-15,-11,-19,20,-35,43,2,-34,8,83,-127,-19,18,-68,57,-15,10,18,-35,-32,-15,23,14,60,30,-10,7,-40,14,6,22,15,-12,45,26,-14,49,-18,55,-26,-31,-24,14,-7,-27,-23,-1,-32,-18,2,34,46,14,11,5,-18,-6,31,-3,22,-7,59,-5,17,-36, /* [1177][0][][] */ -97,-37,-6,-66,-74,-22,-54,29,-7,3,-10,-10,32,99,-4,127,87,-3,-24,-34,27,3,-95,21,29,-3,37,36,41,40,18,-101,-17,-1,-45,13,11,2,-29,-6,-88,47,86,-19,50,16,56,2,47,-5,38,-48,-64,-2,27,35,30,-15,13,-13,29,-12,-35,-20,-42,48,9,-3,17,76,-3,-8,-27,8,-9,5,85,8,7,-74,-2,74,-3,-3,-35,-60,-76,-11,-47,-7,-71,-28,-41,20,-8,17,-20,-10,11,54,-6,53,5,-8,0,70,41,-35,49,-88,3,16, /* [1178][0][][] */ 19,6,44,12,-7,18,-41,-25,40,29,-29,36,-13,76,88,39,12,-4,0,42,39,83,23,29,43,-16,20,39,67,86,-61,-12,-95,92,-25,34,-36,16,54,40,13,3,32,-17,-34,48,48,2,13,-13,-2,29,57,63,95,60,-15,-25,-47,-17,-37,-3,-41,-87,27,-7,-11,-49,59,37,-68,-15,-29,-6,16,-68,62,72,-25,101,47,22,-23,-92,-23,43,-68,26,-19,1,-56,-12,-22,97,-127,-5,-43,23,96,54,62,-15,-67,-19,56,2,-22,-6,63,19,86,-1, /* [1179][0][][] */ 6,54,-20,22,57,-19,-14,-18,-45,-22,24,71,-14,27,-78,-3,-20,-43,34,-59,6,-9,-7,-56,44,-81,-30,26,66,33,-9,-6,14,-37,-19,-25,-36,71,-51,-63,60,40,18,66,-124,4,29,-39,92,5,0,52,-71,17,-10,-64,3,-20,-9,-81,51,-8,-75,-19,-18,-31,-3,-15,26,-106,-10,-25,-55,18,127,60,-110,-17,43,-15,-90,-32,13,35,-69,-30,33,-9,-33,33,-69,8,26,11,-21,-15,-35,0,29,10,31,66,34,18,-87,-25,6,-70,-15,61,-49,-3, /* [1180][0][][] */ 18,73,-5,74,8,-39,6,57,-16,8,-50,127,-40,27,9,-27,-25,-52,-14,-15,26,21,27,7,27,-10,-21,50,45,-56,17,-48,69,11,-8,-16,26,-21,-26,11,-22,50,-6,-21,17,1,34,-30,5,12,-30,-4,50,8,3,-99,-59,25,6,50,-59,-3,-75,-48,-35,12,-22,36,-34,-41,-33,-43,32,-2,27,-19,12,-3,12,-28,51,-43,-20,41,-5,59,45,6,47,10,-28,52,65,56,-37,48,-19,-1,-34,-96,32,-14,-31,19,-76,-43,37,-5,-62,-5,66,-7, /* [1181][0][][] */ 31,-1,31,95,24,14,-12,21,-31,-19,5,23,16,-66,10,26,2,-15,-37,-64,-21,-16,-1,72,38,9,-28,19,77,-26,-42,-18,-61,64,-65,-34,41,-11,-73,22,7,74,-19,60,17,-13,106,-10,24,-56,-12,122,19,-28,0,8,-17,71,-47,23,10,4,-3,28,17,-41,2,41,-56,67,40,7,-13,-4,3,-11,-17,-16,63,6,74,-10,-127,53,-19,48,-27,17,-7,74,-11,-79,51,72,-45,45,67,-33,-89,-26,-97,-17,35,19,-33,-2,46,19,-87,81,27,-19, /* [1182][0][][] */ 31,-79,-40,29,52,-73,30,-65,17,-26,49,-26,117,-10,-90,-7,-31,3,-2,-43,-10,30,-25,26,-1,-44,46,-26,5,70,-2,-16,-10,94,-70,-24,77,40,89,72,-27,-47,-19,71,37,-23,11,12,76,13,-8,-9,-2,55,-4,16,1,-59,-25,-11,-108,3,-42,2,26,-60,-16,43,6,22,-59,-6,-80,-88,-9,-22,114,112,-61,63,77,-17,49,18,19,68,-93,-53,-36,37,-37,-112,30,12,-23,-77,70,-24,127,8,-8,-4,-52,-37,1,36,-13,35,80,-2,-22,-66, /* [1183][0][][] */ 32,-84,40,84,-1,50,-2,-63,-23,-3,42,-58,20,-26,-3,56,-3,-40,-3,-39,3,2,-40,94,-60,-8,-33,8,41,30,-60,127,21,23,-69,62,-14,39,5,-31,23,-19,-52,-1,-24,-20,-24,-102,88,90,51,26,47,17,17,27,31,3,-17,-68,7,-65,34,57,-18,42,1,-14,51,-19,18,-3,11,13,0,-35,24,36,-31,19,41,-13,-8,-91,-64,37,-50,-10,-76,-78,-1,-66,-14,54,11,8,38,-16,-25,-10,-69,-46,-4,1,-22,77,-3,83,86,84,-47,8, /* [1184][0][][] */ -14,42,16,57,-41,-30,-8,-18,-28,-13,-24,-5,-41,18,13,-44,-7,-83,76,17,14,-34,19,-40,-23,6,110,1,-6,25,-26,-27,47,52,-6,62,-49,68,-59,23,-23,74,11,1,-4,-2,127,-79,-3,-58,47,49,37,30,19,-89,-49,9,-42,53,2,-70,-32,-55,-22,-43,-14,52,3,-21,-8,-13,78,-35,-9,14,-55,86,-5,-26,32,2,12,5,-3,5,17,-7,108,-31,-31,18,71,5,-54,-25,9,10,-70,-12,23,-17,-71,-5,-66,-16,20,-6,-49,51,31,30, /* [1185][0][][] */ 79,-51,17,10,-10,4,-7,-22,76,34,-2,-30,71,-21,5,13,32,-29,-73,-70,127,-8,23,31,49,-3,45,9,54,56,-13,37,-1,7,-53,-49,66,16,20,83,34,-15,-8,-16,-28,-15,-6,14,24,-29,-22,-65,20,-31,51,18,11,26,-34,86,-11,0,49,-16,-25,50,16,27,42,32,25,29,-68,-13,30,-12,-16,2,-5,-27,-22,36,-63,26,-19,82,1,-17,-9,-57,-23,-109,-12,-26,-38,-6,-7,-69,-55,56,-13,57,1,-53,-41,24,-74,25,23,-50,32,-5, /* [1186][0][][] */ 103,-44,-25,-58,50,17,-35,19,14,-19,-20,-16,22,-57,-20,-26,23,78,22,-23,25,-28,-16,-18,39,-17,13,56,100,26,-35,-93,-10,34,-52,18,-38,-1,-54,-102,-12,3,-24,82,14,55,17,14,64,-127,-14,125,-34,-30,-55,-89,-89,34,-53,-84,48,7,-23,1,78,-84,54,5,4,-49,37,35,92,-31,29,14,22,35,2,-2,62,37,-9,56,44,-29,94,14,29,39,9,5,-7,27,-34,107,49,-16,34,30,-11,36,46,67,-62,-7,103,-41,19,70,37,-29, /* [1187][0][][] */ 49,61,56,-80,-64,-31,52,2,9,11,81,90,-23,-45,-19,87,-18,-44,36,-35,-40,-69,17,-48,-6,9,49,34,4,55,61,-35,-41,-25,62,-12,-81,-53,24,-25,-2,127,37,27,-62,17,37,-49,-105,11,-67,5,35,-29,7,23,-71,-28,-70,-18,-9,-12,36,-5,59,-46,0,70,53,-6,-34,35,81,32,65,7,22,-4,-66,-4,0,90,20,85,-9,22,-23,-24,-12,-21,-3,25,-29,18,68,28,-74,-5,56,45,44,-86,52,29,-84,104,27,-29,65,35,36,-10, /* [1188][0][][] */ 3,-15,-3,93,11,44,-32,30,-41,-61,17,23,6,18,8,-33,30,-42,5,-67,-18,-11,34,26,-7,0,31,-26,25,-10,25,-13,-38,16,-58,62,87,76,10,-43,-31,13,-41,-63,20,9,-13,8,9,54,11,22,3,-94,-25,-53,-13,11,-34,-77,-34,40,5,-66,-49,-47,1,35,39,-13,-13,-3,-16,13,8,-11,48,3,-43,33,68,82,29,28,-18,-81,-55,-26,34,50,-52,-40,77,-55,-8,-6,-5,-49,-20,7,16,-41,4,0,17,-30,41,-56,-3,127,-13,-22, /* [1189][0][][] */ -29,-8,-41,11,51,-48,-35,-2,22,102,13,4,55,50,12,31,34,50,8,22,0,23,-33,32,4,-22,-61,34,-47,7,-38,27,-14,-27,-22,19,-3,-63,-21,-4,-66,-35,-3,48,-19,-10,-29,-1,73,34,10,-19,-23,10,47,-25,85,-127,-59,-45,34,-82,-55,55,-79,-7,-49,-95,49,11,20,29,7,-8,37,8,-9,83,80,-92,-17,33,33,-27,-43,3,-23,1,-66,-5,39,-43,2,-30,31,26,29,44,-61,-52,42,-6,29,25,9,43,-33,-10,47,15,5,-60, /* [1190][0][][] */ -19,33,-25,-42,-49,-3,7,59,2,-6,-15,35,47,41,-12,86,-47,61,-42,-97,-90,-49,-5,-7,39,-57,-19,16,-47,6,53,-115,1,38,16,127,-52,-35,-52,47,-97,-31,46,-40,-6,13,66,27,97,-19,-89,12,-7,-102,-58,-25,8,60,-57,-3,-48,32,-73,-24,2,-56,-28,60,-2,44,47,-10,-36,-28,-10,64,17,-43,30,-13,67,-21,-7,24,15,-75,1,-15,34,-61,-31,0,55,55,-45,-18,41,21,24,24,4,17,1,-6,-21,-1,-21,-42,-42,20,47,46, /* [1191][0][][] */ 41,13,44,-18,-17,-54,86,-2,2,16,-42,-46,-31,24,14,-127,10,-106,-21,-2,-9,-15,2,4,40,-19,13,111,-35,-32,47,-42,-109,80,-8,-8,-23,33,15,35,-98,36,-10,65,-3,11,-12,-86,10,33,-2,-7,-29,-20,-84,-62,-114,-10,83,1,-34,-43,-34,-48,45,31,-65,-1,-68,41,26,51,-25,27,54,49,3,-23,17,27,81,-20,-40,71,42,2,-40,-40,50,34,-65,-22,-87,66,34,-81,38,-63,37,43,1,24,29,-92,-45,-50,112,-100,2,29,68,-15, /* [1192][0][][] */ 79,-33,-53,-13,22,-23,11,-32,53,25,50,-27,14,56,-71,24,11,-26,-5,-26,68,21,23,95,-17,39,-37,-12,10,-23,54,2,13,-9,70,-35,27,-1,-39,76,23,67,-31,9,-61,-36,-36,-10,5,30,25,55,-18,-27,33,15,-127,5,-38,-31,22,37,-53,119,-1,21,-68,28,-45,23,-5,34,-50,16,54,-15,6,34,76,-32,-12,-3,44,-2,-23,24,-82,49,-33,-15,11,0,36,-16,24,-11,-17,-62,-19,36,82,-3,18,-14,7,66,39,34,84,-20,-32,20, /* [1193][0][][] */ 37,-16,-27,66,41,-9,-27,17,20,-2,44,16,45,21,41,-61,22,48,2,-93,-7,9,6,-10,75,4,29,40,-66,4,58,-60,-30,0,10,27,73,29,-23,-66,-61,37,-15,14,58,35,67,-29,38,-5,-26,-41,-82,-69,0,-107,-75,12,1,-1,-25,16,-69,-6,62,31,26,127,-21,-72,-40,18,-33,34,86,2,50,-21,37,-29,-19,42,-19,-23,-1,-79,52,17,40,-35,-64,44,23,73,9,-5,0,4,40,-55,47,11,31,58,-13,-7,121,-43,-93,15,-10,-59, /* [1194][0][][] */ -22,-13,-19,28,8,20,-109,25,1,-18,-30,6,-68,-31,45,-42,-12,-4,-6,-12,24,-6,-39,-33,-10,19,51,62,8,-2,8,-25,35,-12,16,40,6,-3,-68,-9,-33,80,-30,-67,40,-17,64,-29,71,27,31,75,-44,32,-10,36,-25,51,78,53,-48,44,15,-61,-70,-50,-20,93,-8,8,-45,-19,-8,72,31,17,45,49,8,-13,127,45,2,35,-18,39,-7,71,20,-46,-34,32,21,63,-27,47,-17,-3,-97,-29,-30,-99,25,0,-3,-46,59,-32,-126,-57,-28,-14, /* [1195][0][][] */ 33,-114,8,7,6,42,69,27,29,58,23,-4,-24,33,-27,20,-1,-31,26,-42,60,2,5,55,27,6,-5,11,5,48,104,-3,-35,-41,-5,-16,61,-70,30,78,-127,24,15,-31,-38,-7,-22,-67,91,43,-16,-42,-4,23,-81,76,-70,-52,-23,31,14,36,-11,84,17,-9,-20,-27,-70,65,20,-59,-30,-42,-45,-29,24,-11,-53,46,66,-41,15,-18,30,40,-86,-2,-95,8,38,-36,-73,-1,55,-58,33,-45,88,7,21,-36,55,84,19,72,-10,-8,31,20,6,1, /* [1196][0][][] */ -2,-4,43,39,-69,-31,-123,4,-50,-11,0,6,-70,53,-6,-110,30,-38,-22,-1,4,-45,18,-127,11,-38,5,-25,54,64,77,32,-6,26,-31,12,-7,-96,36,14,-49,3,53,-30,13,62,8,34,-29,-30,-8,11,14,6,30,-68,-55,-31,22,-8,-58,-36,42,-69,-81,-40,-49,1,73,14,0,-39,27,-74,26,-38,-61,68,-3,-37,8,-28,-122,-41,-67,21,30,-47,39,-80,-7,70,-37,-40,-48,17,-30,12,-37,-21,53,-32,73,12,-62,-6,29,-57,-59,31,-24,11, /* [1197][0][][] */ -20,-45,-40,18,-19,-26,-13,48,-28,34,52,-51,58,-32,-27,43,80,-85,24,-39,52,-30,-69,61,30,18,60,0,50,56,-2,-9,34,-27,32,28,23,85,-51,56,-69,19,-45,62,-13,7,-127,-61,4,-15,55,35,48,-33,-48,34,33,-45,-81,-79,56,91,-71,92,-120,-18,-26,74,-8,-20,9,-63,-29,15,31,-13,20,25,13,124,-4,-19,6,-38,-96,-3,0,-47,-12,-14,52,62,-126,29,89,-6,-23,-18,40,36,31,-44,56,54,75,16,-39,-62,31,-56,-91,30, /* [1198][0][][] */ 3,-3,-87,75,-59,-67,3,-5,3,29,1,46,-11,30,-2,0,-8,-6,124,-9,85,-80,71,49,-71,31,26,-96,1,9,-48,-63,-30,-61,70,-49,-5,69,22,-32,-51,27,74,127,54,-8,37,-16,24,10,58,-13,-31,9,17,-97,32,57,-1,14,6,56,-100,62,-40,-80,27,1,45,120,72,-68,-2,-54,24,63,9,27,7,-34,-31,34,-7,13,-83,110,-60,-64,-60,-28,19,16,-72,17,-14,75,31,-5,71,65,44,24,1,18,37,23,-46,-6,58,9,43,-15, /* [1199][0][][] */ -40,-20,-12,-7,3,-22,26,10,66,-55,42,5,6,49,4,4,28,-71,31,27,34,-29,5,-14,7,10,-42,-19,2,13,1,-22,-4,-58,31,-47,32,42,26,-21,-46,11,-15,-3,6,-34,-39,-2,36,18,26,15,37,35,46,-36,42,-5,-45,-8,37,55,-7,-31,-30,8,34,-38,-12,3,-52,-60,-11,60,24,5,35,52,33,-15,-61,-12,53,-10,-14,60,-60,-46,-7,-3,57,-45,5,-25,-19,51,-5,-5,18,-29,127,39,64,33,-13,36,14,5,14,8,62,-10, /* [1200][0][][] */ 21,8,1,-30,-18,7,71,-95,16,-79,-48,87,-6,-14,7,97,114,62,81,-10,-50,111,-70,45,-4,47,-26,23,35,79,26,23,-112,-6,107,-15,17,-70,-29,14,-48,85,23,-96,-5,-56,-14,92,34,38,-2,41,8,-48,127,28,28,-32,27,33,12,-3,-32,18,-27,-75,-38,-12,-9,-13,-30,-92,-44,-15,32,-29,-5,60,54,48,11,-49,-5,-7,-28,-60,-66,-16,-106,64,-22,-36,-38,-18,-3,117,-78,-32,12,33,13,-37,-38,107,-88,70,25,37,58,-42,2,5, /* [1201][0][][] */ 0,34,41,6,23,-25,-2,66,8,22,-19,36,62,-16,-28,-72,49,0,-28,-37,10,-20,14,-72,9,-64,-8,38,37,53,-18,-88,26,-5,-71,-33,6,-38,0,-24,-42,-7,-3,1,-18,54,-15,1,42,54,-49,-37,10,-33,-49,-38,-4,-19,28,-50,-50,11,-22,-16,7,-63,-6,31,-19,16,-41,-27,37,-16,80,18,-45,9,61,-69,23,48,-101,12,22,-16,4,4,12,6,-13,41,1,73,-51,41,-58,-50,-127,25,-27,-14,18,-2,-50,9,-29,-29,-30,43,-2,-25, /* [1202][0][][] */ -53,9,43,-15,43,26,-47,64,18,-30,-15,23,-64,40,-79,-19,43,-37,56,-71,118,-92,22,-73,-51,27,-15,73,-67,68,56,20,33,-40,4,23,5,81,39,-71,3,36,41,99,17,-9,97,-92,64,-35,89,45,-6,21,-34,-38,-24,47,-71,-108,-21,25,48,41,101,28,-99,3,-29,46,-44,11,4,73,52,-14,-96,2,-44,-21,51,65,-103,-39,40,36,23,-54,-31,49,29,-22,-5,58,-35,62,80,-73,9,8,54,-23,56,54,-52,127,76,-36,-21,35,7,-79, /* [1203][0][][] */ 56,21,12,-50,31,-35,-54,-22,13,-112,20,23,54,7,-12,20,-62,-23,-1,-42,62,0,13,8,-24,11,-74,13,18,66,95,81,37,12,-17,-69,36,-27,-9,84,46,-3,-2,48,-17,-2,37,-28,84,-80,-12,-92,-16,19,-75,9,-33,-4,-103,45,90,11,-48,68,-59,-3,-57,-83,111,0,91,-56,-45,-12,63,-41,-42,79,-26,-4,-11,-127,2,32,-9,42,23,-14,-16,-10,1,-9,13,-19,-5,52,-81,-37,-2,79,34,31,-71,53,6,92,-60,3,25,40,-9,-65, /* [1204][0][][] */ 47,28,-1,-8,-74,-45,-22,-20,-2,12,-46,65,-50,23,-1,17,-6,-24,-9,-30,-13,14,-28,7,13,-14,-17,33,-3,-7,-56,-10,-101,127,-37,6,-42,39,-9,53,-56,66,-24,25,-71,60,5,-10,22,-11,8,49,65,24,-16,-32,-19,-29,4,-71,-46,-9,-27,-90,-44,-45,38,42,11,-27,26,-2,25,-41,-42,-15,8,61,3,13,54,2,-33,-22,-20,-44,48,46,-5,-13,38,-17,65,-61,-8,-13,-55,30,1,-8,24,5,-52,-14,-25,-31,29,15,6,34,82,20, /* [1205][0][][] */ 56,-3,-88,23,-16,-18,60,-89,-34,32,-63,-19,72,-11,8,-11,90,-12,35,116,79,-15,-54,-3,121,19,-25,-26,-34,75,91,-32,-63,-50,-45,15,39,-97,-63,39,-98,57,-23,48,32,-11,-90,-47,38,-98,-92,-106,27,-29,-61,-24,12,-90,-2,-12,56,43,8,-26,12,21,-39,-23,77,5,6,-28,-14,-47,64,-51,-5,19,4,4,85,-33,74,-39,-64,-22,-86,73,-98,83,-68,-13,-86,49,58,14,-67,3,42,82,7,-4,-47,34,26,127,-54,-51,89,9,8,-42, /* [1206][0][][] */ -5,63,0,-43,-71,100,-22,54,0,-4,-72,31,-73,5,28,-14,-50,54,-14,-74,24,-22,-20,-24,54,33,35,50,-21,-27,-27,7,-59,33,27,71,-40,27,-40,51,28,69,25,28,-35,115,41,22,54,-74,23,72,0,-2,33,-71,-41,82,-2,15,12,12,-61,12,0,-13,-58,-58,-73,-34,12,-2,-58,-35,-28,7,-32,-14,-13,33,31,67,-25,9,-33,28,-31,-87,8,33,40,-12,-32,127,-30,58,-19,-16,-11,-48,-76,-18,42,-39,1,-8,-13,-57,-25,85,29,27, /* [1207][0][][] */ 32,0,31,127,-23,-8,-1,-51,35,-58,8,-33,70,-55,-31,-9,6,-26,16,-80,3,-22,-3,75,0,-29,8,-5,23,5,-6,-73,-90,74,-7,-5,24,-18,-40,103,26,26,-41,4,43,34,67,-25,-24,25,-69,-3,-18,-102,-14,-5,-4,67,14,7,-108,22,-49,-41,50,-15,-17,15,-18,25,83,31,-75,-46,66,10,55,54,10,-16,49,38,-40,98,1,-24,11,75,-31,85,11,-19,79,64,-27,-28,26,-48,-11,-17,-26,-1,-14,-53,-4,-2,39,-42,-100,89,8,-18, /* [1208][0][][] */ 28,-6,-43,-9,3,-19,-93,29,79,-67,28,2,59,-36,-3,-6,57,44,33,12,7,43,-78,127,19,12,-81,72,-52,-21,0,-47,-125,4,-26,-18,-27,51,-84,20,-18,-45,-34,79,-24,-34,8,25,11,39,71,-37,3,-10,15,-23,34,30,-41,36,32,35,-20,38,24,-102,-15,0,86,47,-27,-49,-20,-22,-29,31,12,92,11,-40,-6,47,-18,-66,-28,40,-25,17,-49,32,-26,-48,40,-56,-49,-122,77,0,99,-4,-9,57,-28,-19,-70,3,62,-21,47,17,46,-89, /* [1209][0][][] */ 38,-23,39,9,4,18,-21,72,-58,48,-45,32,-14,-8,47,38,-14,-44,35,-58,-19,-18,39,-25,66,-15,77,37,8,-28,19,7,-59,44,-49,-19,-8,48,-79,-57,-61,82,-10,42,-26,-4,34,-36,25,-57,44,73,51,-1,-5,-75,21,53,-34,-61,49,-127,-14,0,43,-2,57,94,59,-48,105,37,11,0,-58,-8,-18,24,-27,58,79,25,29,-76,7,77,8,-8,11,-6,-32,1,83,-4,22,38,-21,38,-46,9,27,94,-25,114,-36,50,71,33,12,111,-21,-37, /* [1210][0][][] */ -33,7,-14,-35,2,-90,-10,-13,-43,49,-48,111,-27,10,-38,33,7,28,4,98,21,-59,104,-94,-5,-24,-32,20,-17,55,26,-10,-33,-43,23,28,-24,20,-69,-28,36,-44,-38,49,-114,84,-23,19,-23,-28,26,55,6,68,-6,-23,-89,-12,-18,-127,-40,-20,-118,22,-31,-15,-4,66,-52,0,53,11,70,9,68,75,55,-6,45,-53,39,32,-88,88,-53,67,-82,-48,26,4,-48,-117,-30,-66,36,53,-31,4,-31,29,38,-30,42,-62,-15,-68,29,-86,-33,-27,35,-105, /* [1211][0][][] */ 6,31,40,-80,-37,39,-42,-47,17,9,6,-66,-20,21,20,15,-6,79,-3,-24,-52,-33,3,28,12,5,-57,-2,36,29,80,40,-16,-25,-16,29,-34,-11,-59,31,44,62,-56,-22,3,108,32,-24,-39,-127,47,-45,13,-75,-71,-83,-5,45,-19,-49,21,-35,-69,-29,61,-6,-37,12,-27,-81,-11,-78,-98,36,0,5,-51,-12,-31,17,-16,23,28,24,33,17,-1,-37,52,12,-29,-21,-45,2,28,6,-12,40,41,-4,-40,-68,-24,63,-18,43,49,-23,-2,79,-21,-25, /* [1212][0][][] */ -2,63,-30,-1,-64,55,-41,63,41,-27,-11,-23,63,31,-6,24,-26,-18,17,-17,-22,-23,-20,-72,37,8,74,22,27,-58,127,-15,-21,22,36,22,24,89,-15,-4,-47,31,19,59,46,29,-6,-62,37,-25,-32,-69,-14,0,6,-92,24,2,55,-24,-60,-48,6,-75,1,3,18,71,27,-55,61,-5,-68,-16,100,89,10,24,-78,-53,13,-72,2,-20,-18,38,78,20,4,-99,-17,57,-10,35,6,19,11,-99,17,-13,-10,-5,20,4,0,-104,54,-3,-70,-3,17,45, /* [1213][0][][] */ 34,-43,9,82,41,64,-41,-52,85,17,29,-54,52,-10,9,43,2,-35,-19,3,24,68,23,74,55,-53,4,41,33,7,36,31,-66,31,-3,-13,-5,9,-11,108,5,-75,-40,-8,16,62,57,-26,5,25,10,33,9,32,73,-49,-27,13,-45,62,26,74,-56,-7,-38,52,-20,-1,-51,101,-54,58,-12,2,5,28,22,127,-73,-30,-16,1,11,40,-59,15,-14,-10,-63,-54,-45,-54,-19,-2,-61,40,28,-41,-3,-72,-30,65,5,-49,4,29,12,75,7,1,-6,71, /* [1214][0][][] */ -42,74,17,-56,-27,40,111,-40,16,-47,24,15,-127,-18,9,40,-77,30,25,46,88,-23,-25,-30,114,-43,-48,-10,86,-17,32,6,-101,-37,-57,-17,45,33,-48,78,-48,10,-80,73,-1,28,6,-14,-52,-100,-72,69,-17,-56,30,-115,-43,-14,4,-6,-50,54,-115,-67,2,-62,23,-51,12,-65,7,-40,36,-8,-50,34,-96,-3,-9,-36,29,57,6,24,19,-2,-33,-49,45,35,71,-73,19,55,-65,69,-16,13,29,-121,-1,-57,-17,26,-82,-31,-4,-58,-76,48,110,69, /* [1215][0][][] */ -29,-83,-50,-6,44,-40,-29,43,121,16,36,72,-9,127,44,75,17,3,-43,5,41,57,-21,17,-25,28,-57,97,5,4,33,43,-8,22,-87,54,67,5,-88,-38,-53,-22,26,-18,-38,-21,-12,-89,28,-75,55,6,-5,64,-62,-40,60,-49,-67,-43,14,10,2,74,7,43,-25,12,-20,44,-65,50,-4,25,48,-14,-18,17,28,-44,-41,-58,81,-10,-25,44,-64,15,-112,-35,-41,21,-62,21,-5,58,-12,-6,-43,6,-26,4,-84,32,-42,11,55,-69,21,-100,-41,6, /* [1216][0][][] */ 8,-81,-77,-51,2,52,40,-84,51,-38,13,22,85,45,-16,32,44,-29,-58,19,127,75,-38,7,-25,51,-31,9,-30,118,66,18,-53,20,-122,-39,100,68,-56,51,49,0,-44,-31,25,-103,-57,-29,66,-62,109,-27,12,41,-11,118,57,14,-46,-40,37,-67,70,8,44,-27,-118,67,-15,-6,39,-42,-55,15,2,-18,62,77,21,-35,37,53,70,-11,27,41,34,51,10,25,-41,-42,76,61,28,33,2,-30,12,43,41,-21,-6,-12,33,16,-15,4,52,51,-13,27, /* [1217][0][][] */ 81,-41,15,23,-15,-12,-13,3,-65,-2,-108,57,-50,12,-36,79,-22,-15,38,-32,23,49,-10,-24,127,29,30,-5,96,-21,32,-119,-67,-20,-11,23,-35,-27,-23,-25,-28,-2,-110,-18,-53,-12,45,-82,30,-38,70,-7,-81,62,-24,23,43,87,-16,32,-7,-98,-12,15,25,-45,-63,31,-51,-23,-6,-28,-11,45,39,74,-16,22,-64,33,26,22,-2,-16,5,29,-42,-1,69,26,10,14,24,12,30,54,18,47,11,-20,-50,-22,-5,23,-81,-5,-59,15,-54,91,-27,28, /* [1218][0][][] */ -14,-55,-104,107,41,62,-51,11,96,-21,32,-104,109,-21,-31,26,-34,-15,20,56,-10,-2,61,27,-40,-9,37,-33,14,32,-63,-4,-63,42,-6,42,-1,81,-16,47,18,-14,-86,-50,-29,0,-44,-16,40,-25,14,40,74,50,82,-7,19,43,-23,52,-5,3,2,29,24,-52,-32,-17,14,100,-87,-18,-22,-66,16,-37,73,29,-127,-7,-39,45,31,-87,-5,37,-74,-36,15,-86,-90,-75,-51,1,-39,-4,11,5,21,-17,-52,66,-35,12,-22,91,-52,-3,55,-16,45,-76, /* [1219][0][][] */ -40,38,7,19,-38,-2,-84,59,42,-16,14,29,-32,-45,-16,48,-3,-11,-9,-49,-70,-90,-53,-24,-76,32,-77,57,22,-22,19,-61,-37,34,53,55,-8,-37,3,53,31,25,3,-32,-6,-14,58,-40,-46,7,10,62,115,-23,3,-31,-18,35,-96,-2,-91,-50,12,-8,1,-17,23,106,43,-40,14,-26,-30,90,-53,-2,-108,9,-127,-67,-1,-41,16,25,18,-65,-13,-16,-13,-34,23,3,9,18,-71,-12,-2,59,-39,-49,52,-94,25,9,41,-32,81,-19,-1,26,45,24, /* [1220][0][][] */ 100,43,20,-5,-14,-12,-39,11,-31,46,-76,-64,-7,9,14,15,-38,106,11,-2,44,-73,-12,-24,30,-31,53,-36,24,-17,40,-63,-3,10,16,28,-105,13,-25,2,3,45,18,-17,-54,27,12,62,70,13,-66,107,-21,-9,-37,-28,-59,39,-43,7,39,-32,-76,12,10,4,-33,127,-56,8,0,-29,-71,12,30,25,12,19,-46,23,27,-72,-1,-22,7,-23,16,24,39,-8,32,-41,-7,24,-21,-32,3,-117,13,58,-26,27,-5,9,-70,-37,19,-85,15,19,35,-40, /* [1221][0][][] */ 30,-45,8,15,-66,-38,11,26,-74,14,16,2,77,-54,-3,-64,-52,-54,41,52,-19,0,21,35,127,-75,-29,118,-32,76,63,4,-96,-48,-21,-36,-74,-4,-12,-41,-76,-16,-47,-11,6,84,-35,9,-19,-72,48,84,14,-26,-7,-60,-18,30,26,-16,-49,-57,4,6,19,-9,43,26,6,-50,92,-77,39,36,20,53,3,-22,-38,4,53,51,-110,-62,28,122,29,14,114,-54,-8,-16,-50,2,10,17,17,-55,-5,17,-36,-65,-8,-78,-116,-60,85,-17,-9,27,-39,-121, /* [1222][0][][] */ -23,21,-22,-64,15,-4,-127,28,27,-53,18,26,-44,1,34,14,-9,-34,-1,2,5,-22,71,-39,38,-74,33,18,34,-26,16,-58,-10,-25,-1,6,9,-13,12,14,28,2,-21,48,-81,5,13,-1,-46,-5,-19,-1,-15,32,13,-10,-42,9,-25,23,-7,44,23,-6,-7,25,-30,23,12,-78,15,38,-57,22,51,86,13,25,-53,-2,-19,10,-55,13,-4,67,32,-49,-52,-33,-44,11,-31,-45,14,10,-58,-79,-24,-20,-16,-33,-45,44,-75,8,-17,-66,-23,-18,-65,-11, /* [1223][0][][] */ 33,40,-12,-28,-38,39,15,11,6,30,-3,43,-21,-39,-29,7,36,45,91,-8,29,-34,22,-48,-7,23,50,14,50,63,75,-36,-30,-40,72,6,-25,-43,-44,19,20,-29,-58,-39,-51,9,-36,-5,57,-2,-35,63,-47,-21,-21,-35,-59,32,-127,35,-33,45,-14,-1,10,-18,-23,77,45,6,35,-86,-47,-31,56,14,-21,30,-56,-5,13,-64,-33,-17,-29,-48,45,-43,7,-35,31,54,-10,36,51,-46,16,-46,22,-18,0,-33,25,87,26,-40,-9,-7,-74,21,22,11, /* [1224][0][][] */ 22,-40,-51,31,-26,5,-48,-9,1,9,-78,9,11,10,-18,24,-24,-1,-28,-11,22,11,-9,22,58,-16,48,-9,68,-47,-19,-55,17,-34,-9,14,4,-16,2,-15,17,29,-59,-10,-4,-9,26,3,-12,-2,-32,0,7,-5,-2,-4,-127,-6,39,-34,8,-23,-10,8,-62,-1,16,12,11,10,-3,-15,8,27,-22,-23,-35,-20,-18,-21,4,-39,-24,-4,-54,-5,-45,-5,-48,-20,-24,25,-23,60,31,-4,24,-26,39,-27,35,-11,13,1,12,-31,38,-11,26,29,2,-61, /* [1225][0][][] */ 59,-6,-39,32,-92,-25,0,-68,-35,-69,-93,70,-18,-23,2,-10,18,-47,37,-18,29,56,93,-79,46,19,35,16,-16,-28,-22,-36,19,106,32,53,-28,33,-111,53,25,10,-53,13,6,93,35,-59,14,-26,-17,-11,16,-75,7,40,-62,24,13,-59,-31,-124,-39,-65,-2,-55,-120,-53,-10,-13,8,-10,-54,48,39,90,28,59,-109,13,63,43,43,31,-3,-39,33,86,100,-11,18,-13,106,-50,85,13,20,29,-64,-31,61,48,-17,18,-12,5,-9,-127,-22,33,19,17, /* [1226][0][][] */ -16,-93,-72,52,9,-59,-34,51,-20,-62,10,-2,-16,127,25,-22,-60,-46,-17,-62,30,16,-5,12,37,43,-117,71,26,25,-7,62,42,6,-1,30,49,50,50,-51,35,2,4,39,-29,-114,-15,23,104,3,10,23,34,65,65,84,-76,-26,-43,-114,79,127,25,-52,-19,-14,4,-50,46,5,-12,-122,70,26,-34,-42,3,-23,45,35,117,-60,-21,-12,-44,73,33,-106,-87,-14,-25,-121,-75,91,-41,-53,32,-98,70,5,-35,-74,112,19,-39,29,23,-4,-1,17,-55,-60, /* [1227][0][][] */ 1,27,-52,86,-19,67,-41,9,-84,-60,-5,-1,-24,32,-33,-107,-36,-79,5,-71,-57,-93,48,35,8,-84,42,16,31,-48,90,13,-10,-47,-46,70,88,59,23,19,-26,6,-3,-54,-35,-13,1,-33,99,-29,4,45,-12,-11,-76,-73,-19,-32,-31,-67,-29,58,95,-46,-39,-31,-92,-55,116,-33,34,-81,73,52,34,23,-36,127,-38,41,29,-59,18,23,-112,5,71,-56,-61,1,10,12,-10,-68,38,-122,-23,-102,-30,-23,61,-39,98,28,0,-13,-12,-82,-53,98,-11,122, /* [1228][0][][] */ -9,1,34,55,-10,65,-42,-13,16,-58,-28,-12,44,-44,-33,12,-1,7,-35,-74,-101,-10,-41,21,42,13,-5,16,59,-50,45,-2,-4,34,6,-5,7,-2,-26,11,-1,57,13,-2,15,21,6,1,-14,-1,-25,-38,60,-127,-43,-44,-69,17,-18,-25,-39,-32,15,56,-4,-44,-55,25,44,-1,10,3,-32,57,-45,-14,-10,-16,-4,50,14,-9,-84,1,-9,27,-14,-37,-25,6,27,-31,61,50,19,-28,41,9,8,-32,-11,-111,23,26,-11,-33,0,-11,-62,52,19,-41, /* [1229][0][][] */ -42,14,8,-8,-97,-28,27,9,72,24,-24,23,-36,-46,-12,23,20,25,52,4,-42,32,-12,-14,13,25,14,5,67,19,-17,-13,22,32,65,34,-61,49,23,-14,-80,101,6,5,-23,-14,39,3,11,-18,-25,10,47,-3,-8,-3,19,39,-3,-55,-18,36,15,-40,-50,-43,-2,76,-14,-17,20,3,-37,26,27,9,0,26,-69,42,41,41,-4,49,-17,0,23,56,-7,21,15,18,-18,-45,-30,29,-127,-47,-33,13,-41,-24,-11,-5,-52,-2,51,-50,-13,-52,13,-63, /* [1230][0][][] */ -19,33,-18,-32,-44,-101,-13,28,-39,-47,-20,44,-74,-71,-13,-58,-56,-50,-10,12,27,35,35,-58,5,-30,-43,-3,53,-4,-48,-2,-57,-14,-93,6,32,-2,69,-48,-78,57,-114,-36,-13,20,26,8,62,-11,-15,18,66,-6,-15,-51,-40,63,28,-49,-127,61,-61,5,-9,7,-40,17,12,2,-98,-18,-66,-25,35,-21,-45,-72,-23,5,76,41,-65,-25,46,-8,-94,-53,-20,-14,-87,-38,-64,56,-50,-53,-36,2,-65,-69,-69,50,28,-59,-123,-104,-17,-126,-26,32,77,-73, /* [1231][0][][] */ 52,-67,-24,0,65,52,20,-66,30,-11,46,26,127,42,-4,24,60,-25,-13,8,28,69,3,112,24,30,1,54,11,19,-5,35,-38,63,-80,-1,41,-3,-41,-51,10,24,85,-4,40,46,-75,-94,35,-79,-7,-22,66,-14,-31,-23,-21,-15,68,64,65,30,46,-52,-22,-41,24,-30,117,-17,51,-43,61,0,101,81,100,51,-2,-6,-14,-21,10,48,-21,97,-22,39,-14,-15,-91,56,23,57,-46,26,72,-36,-22,-30,-6,-16,-35,-26,-65,-40,44,23,-7,-54,-31,-67, /* [1232][0][][] */ 21,-124,-69,44,48,0,32,0,6,-77,-11,31,27,83,31,22,31,-14,54,22,17,30,-58,70,-20,26,19,-16,31,6,-5,-16,-21,16,-97,0,51,39,-65,-50,5,9,1,9,-54,41,-59,-19,46,20,6,43,7,28,-44,18,124,-5,-48,-22,7,66,-43,-59,-13,27,81,2,-31,33,22,2,72,-52,66,58,100,37,34,-1,13,1,27,-21,-11,-3,2,-10,-97,-12,-63,18,8,59,-2,127,-10,15,-9,79,-43,-10,-1,16,54,-10,31,-15,64,-31,-28,-37, /* [1233][0][][] */ 28,-60,-30,-27,69,-67,-8,-24,27,3,51,64,50,14,-34,12,25,-56,22,5,48,19,16,-49,11,50,-36,29,-17,48,27,-19,-66,-21,11,-68,33,55,-57,22,30,-30,17,12,-8,32,48,13,50,-23,-17,45,9,-17,62,19,23,43,-18,5,38,44,-36,10,-60,5,-17,1,-20,-41,23,-19,-15,-19,38,49,15,47,49,-13,-11,53,14,-76,-6,63,-34,-34,38,8,14,-51,-10,-55,-23,19,10,11,-7,65,127,81,11,34,2,-46,-24,-11,29,10,7,-22, /* [1234][0][][] */ -50,41,-65,10,-27,-36,41,-81,21,-48,-43,57,-40,36,2,27,77,74,83,7,-4,15,-56,55,49,10,4,0,30,80,0,-59,-43,-29,52,-9,-19,-29,-79,8,-37,-5,28,-43,-65,34,-3,61,80,25,-29,58,-16,37,21,60,-2,-83,28,-17,98,-38,-68,127,-10,35,-30,-31,-5,8,-62,24,-43,15,50,-4,-8,107,48,-88,18,-52,67,-50,-91,-56,-35,-26,-74,-47,-71,11,-28,-3,-54,40,10,-76,68,20,99,45,28,-10,-9,26,-49,0,52,-125,-62,-32, /* [1235][0][][] */ 12,-115,-12,-100,14,-55,3,-6,-103,20,-67,30,7,44,-39,15,-56,-62,0,38,-3,-69,22,-63,117,-56,-40,21,15,87,72,-112,-61,39,-83,1,-57,-66,-48,21,-127,23,-3,-41,-8,34,40,-24,3,-1,-36,-30,-26,12,34,-68,-30,-20,42,-74,21,-5,-25,-4,23,-102,-7,43,-63,-70,4,10,9,8,27,30,-24,-18,21,1,69,122,-16,-74,13,-11,-48,4,51,5,-34,-40,66,20,115,-37,3,40,-22,-40,30,26,0,-11,-88,67,30,26,-67,80,-35,-67, /* [1236][0][][] */ -28,-19,-9,51,-72,-32,-69,21,4,-14,-53,3,-5,-22,-66,4,11,-11,70,-60,-80,-56,-39,8,-13,-53,45,-15,9,72,-14,-40,-10,51,-33,6,-67,21,-44,37,-37,71,-4,43,-40,26,62,9,19,25,2,34,-10,-54,6,-7,-8,36,-63,-45,-51,21,-58,60,37,-72,23,127,-44,35,29,-44,-51,-44,26,-7,63,-33,-90,90,21,-14,-49,-16,18,-40,50,15,-22,12,-54,-3,61,-21,16,58,-46,-18,42,11,-2,4,-72,47,37,-17,29,8,54,65,14,61, /* [1237][0][][] */ -9,-9,-12,-34,-3,20,-18,-28,-38,-9,-47,28,-12,71,78,-20,30,-51,72,34,69,-30,-23,34,-27,7,-19,0,85,1,-7,43,-35,23,-15,1,-41,66,34,5,-11,-18,43,34,47,-56,-30,-60,42,-44,-10,-11,-19,-54,-14,2,70,-61,-42,18,47,36,27,-4,3,7,67,60,36,40,49,-40,44,-20,-6,-40,5,17,-38,-16,127,12,-7,-2,-8,-16,-19,-1,-73,-79,-41,-27,-45,55,6,26,45,-94,-5,92,69,23,24,30,-16,2,-26,-16,-33,-68,-35,-7, /* [1238][0][][] */ 38,54,-39,-7,23,-19,-1,-20,-31,-39,-2,-41,50,29,15,-20,-127,-27,14,-10,-1,-93,-33,-26,14,-34,-38,24,-31,-9,37,-6,-16,-29,-53,-3,17,-1,30,31,-8,39,48,18,25,35,88,-37,-4,-55,-35,-20,-6,18,-60,17,-26,-12,-42,13,-18,8,31,-42,51,-13,-9,-1,88,-81,39,3,5,24,6,-3,-81,81,-30,-44,27,-18,-29,38,5,-1,-45,52,18,43,-12,-6,-58,-39,0,-75,-18,51,-65,-8,46,-15,-15,8,-33,68,46,-63,-4,11,4,12, /* [1239][0][][] */ -34,-48,69,39,-29,-49,-74,-19,25,-43,-72,65,19,-8,23,19,85,-32,101,-77,-22,2,-17,34,-7,105,75,12,70,84,78,56,8,-32,10,-43,-85,-71,11,-3,34,33,-17,14,23,49,68,-4,-7,-71,-127,37,-41,-59,24,-4,17,44,-115,-80,-114,60,31,-94,20,5,71,57,26,-25,33,-56,-81,104,100,24,-48,15,8,-79,15,68,-2,-2,8,-48,26,4,26,5,-45,-10,23,55,-43,51,-77,50,-118,6,43,-26,-10,57,59,42,115,-62,12,49,55,-96, /* [1240][0][][] */ -24,24,-51,-35,2,-15,-17,-93,-9,-13,30,-36,20,-72,-24,-38,-71,25,32,15,51,-41,89,-101,91,-10,29,77,20,78,-76,-7,-21,-15,-53,11,-4,-44,12,-9,28,9,-13,13,-8,-41,-30,20,54,-20,-50,-14,96,-105,19,14,-31,127,-35,-13,-73,-33,17,-11,-4,-99,10,34,72,38,93,-15,-31,36,61,36,-65,-14,19,-16,39,18,-114,-3,48,24,40,-89,24,-95,-61,24,104,-1,-51,-7,-116,-33,-52,8,-28,-46,9,35,-43,-3,31,-65,-44,7,43,-70, /* [1241][0][][] */ -65,2,13,-88,-87,38,15,-52,93,9,97,-30,18,65,72,26,50,-29,3,-91,-32,6,-61,73,65,55,-64,20,-81,48,-55,19,-68,74,11,42,-13,-23,83,-17,-50,-16,60,-91,64,-57,-3,-29,59,-14,3,-10,47,-40,-83,22,9,-20,-33,-43,-60,44,13,80,-40,63,-23,0,-50,-10,127,58,-85,-33,-23,-38,-42,40,-19,40,106,72,-29,-42,-40,38,-18,-9,-53,-53,-79,-52,-51,26,-47,-25,-43,-76,-40,37,9,-58,58,9,52,72,21,-15,25,-45,-9,12, /* [1242][0][][] */ 2,-30,36,-10,-39,35,-2,-1,127,-5,28,7,75,21,39,38,-2,-70,-3,-60,0,2,-4,39,23,24,-30,11,-19,10,33,-15,27,33,27,67,59,9,30,4,-45,43,26,-1,-58,-67,0,-59,-9,10,-32,-79,68,-13,3,-10,70,-44,-47,-43,-23,35,-30,3,-81,-3,-28,-22,-7,-16,7,27,-12,23,64,-19,42,-10,-25,-14,74,-25,50,8,-53,-48,-81,4,-7,-52,-3,-69,26,13,-4,30,-67,-41,29,-26,-16,40,-38,-51,12,-15,-30,23,-4,-32,11,62, /* [1243][0][][] */ -29,-27,-25,71,-68,-8,13,-10,-48,-22,17,50,-38,43,-29,11,-37,-49,-2,-127,56,56,26,-15,51,-37,68,-29,-6,11,38,-49,24,-47,58,-7,26,5,29,-46,-27,94,51,-4,57,25,31,-30,12,-21,-40,-41,-92,-20,-60,-35,19,99,26,-61,-54,34,7,35,-36,-104,-46,72,-64,-85,65,-36,-17,46,-2,69,-75,18,-25,-72,81,86,12,-45,20,80,-17,-21,52,-12,98,42,-49,-1,-9,108,-24,-19,-45,98,42,1,-2,71,-5,3,64,-10,-25,63,27,-101, /* [1244][0][][] */ -52,-25,-70,13,-27,-4,-17,66,-10,-17,21,14,6,-11,25,-58,-8,20,49,-35,-25,-44,-80,51,98,16,-28,98,29,15,-6,-65,-26,-28,49,-3,-25,-44,-77,86,27,-15,15,-34,-45,21,-4,86,59,-56,29,48,-68,-51,-53,-43,31,-63,39,0,20,111,-67,-33,34,-66,-19,-28,25,-53,46,-91,24,66,56,103,-65,112,7,31,-24,48,-29,48,12,41,11,-24,44,16,23,7,-24,-33,3,-24,37,49,-114,-105,-10,-25,-20,78,26,72,-3,-63,-127,0,35,54, /* [1245][0][][] */ -112,-3,-34,25,15,40,3,-44,44,-56,12,2,6,127,27,25,-1,-78,81,59,48,-94,53,-18,-85,27,-46,31,-66,57,-41,2,11,83,-6,50,-34,77,50,12,1,1,64,-12,34,-57,92,-66,64,39,-23,-17,52,21,2,-12,55,-79,7,-5,14,-26,-25,45,24,82,18,-39,-37,53,32,111,-73,-32,-17,-41,24,-4,-46,-54,65,2,57,-17,-45,-29,-9,11,-74,-31,-63,8,-19,55,-64,31,4,-90,35,-15,-26,36,25,-9,16,50,38,14,12,8,8,-57, /* [1246][0][][] */ 69,92,83,-9,-8,31,-61,-12,47,-127,-25,-46,36,-36,-40,-14,-101,22,-5,11,14,-96,-55,-41,13,13,-87,20,9,-10,40,-93,-28,24,1,-9,76,50,-39,-11,40,56,-46,21,-2,24,48,-4,4,22,-44,7,2,-14,20,-16,-11,29,16,-8,-27,13,-43,5,30,-90,-76,37,49,-36,6,-32,-2,34,-12,46,42,-1,-50,-63,36,18,-14,-7,10,-36,-61,36,-19,34,23,70,39,-18,-84,-53,8,-15,12,-74,-24,8,4,-7,-82,-45,59,-73,-39,11,18,51, /* [1247][0][][] */ 17,1,20,-73,18,90,34,-11,109,-52,31,-2,48,2,-19,72,54,67,0,-13,38,50,18,-29,-85,-27,68,26,7,-26,-34,54,-55,-18,-2,4,-25,37,76,87,52,-37,-9,-52,-56,-7,-127,-24,71,-74,47,-3,15,-24,33,35,-26,-20,-18,-14,19,20,-42,13,0,7,33,-9,28,-43,30,15,-108,-75,31,61,32,100,-10,-35,-20,-1,55,-52,-90,57,-10,-50,-65,-84,-94,34,-17,9,-81,50,47,2,123,-26,52,73,93,18,31,-18,35,127,40,-18,20,-76, /* [1248][0][][] */ -28,-24,-56,40,-32,1,-39,93,79,-61,0,73,11,115,-38,52,-127,-23,56,-1,20,-66,41,62,-21,-95,54,122,-25,28,71,-20,83,-46,-9,47,-49,37,-58,-87,-120,41,2,-19,-17,58,22,29,-12,-29,16,42,22,-63,-33,-26,14,-5,-34,47,-23,38,3,-10,10,-2,13,-5,-12,21,26,107,-6,32,-62,13,50,-74,-57,-49,11,-36,-69,112,71,105,72,-16,-97,18,-64,46,-22,2,7,30,-8,-31,-69,-115,-121,-97,-32,35,-2,-2,76,-50,-2,13,-16,-37, /* [1249][0][][] */ 7,52,-26,-10,-35,31,8,-24,76,-17,71,1,80,5,27,48,-63,-19,127,-23,67,37,-19,17,-18,15,-3,-59,94,17,-19,2,-42,19,-45,6,91,9,-16,96,-2,-67,20,-42,-15,46,49,-8,-10,46,74,-72,19,-44,-34,-86,10,-36,-22,87,-27,86,-7,-30,-14,-32,42,-67,104,31,44,-12,-2,-65,-29,25,3,85,-84,20,9,-45,51,37,-61,94,50,25,-100,-123,66,-53,-48,-9,7,22,48,-23,75,-41,-8,-18,27,-37,-98,-70,-28,22,19,-26,-55,-19, /* [1250][0][][] */ 68,-85,31,27,9,22,3,-39,44,2,18,6,64,53,-45,-42,15,11,-12,2,67,-66,46,0,-38,24,-27,-20,-38,17,0,-33,5,11,-24,36,101,6,-17,-19,51,37,1,-4,-2,58,47,-11,21,26,23,17,32,79,-29,20,-32,-38,7,-28,-96,47,18,-42,-15,-3,-30,58,8,24,29,-52,5,-12,-9,10,70,31,-56,-10,-17,15,28,63,-24,66,-15,-62,-12,30,7,-15,-58,-41,-91,-20,1,-43,54,37,-5,73,127,-12,-2,3,-26,-19,91,-21,14,1, /* [1251][0][][] */ 28,-37,-13,31,-31,-27,-87,7,-110,-59,13,70,41,23,-17,-42,14,-118,85,76,-36,-53,11,-84,47,-39,7,20,-9,65,11,-25,-19,-46,14,16,-67,-50,-84,-80,-25,-15,-23,-46,-27,35,20,-31,-39,-49,19,40,21,44,2,-61,-52,-41,-12,-62,-34,-22,63,-74,-103,-18,40,18,25,-62,-20,-82,69,127,-1,51,-26,45,-112,15,63,21,-51,-45,-82,-58,-86,-21,116,16,42,-38,6,-77,-5,-16,-3,-19,-2,-40,113,20,53,26,-16,-1,57,-46,-19,11,65,12, /* [1252][0][][] */ 3,-21,-2,6,28,57,-10,-6,17,-24,7,-18,55,107,-43,-13,23,25,-54,22,-14,-4,-4,-11,21,21,40,27,17,23,-75,-31,62,-9,13,16,26,6,-25,-1,23,17,38,32,-81,19,8,-47,68,-15,27,5,-25,34,-30,3,19,-48,-49,6,12,79,-127,27,-62,33,-81,-51,-36,-1,-17,42,-38,-10,52,18,15,32,35,-13,-17,-71,45,-25,-113,10,3,-34,-105,-15,39,61,23,50,-2,77,-39,-65,-44,81,51,56,13,-24,8,12,-73,-40,-5,-14,-15,20, /* [1253][0][][] */ 73,16,33,21,15,-29,-25,43,36,-105,-94,-21,-27,6,-56,-24,-68,7,1,-44,-3,9,36,-35,18,-36,13,78,-8,59,5,-73,56,-19,19,-8,-3,-5,-127,-60,-21,-39,32,25,-50,-64,-18,-6,18,-43,-21,1,-37,-24,-69,-61,-103,-36,-52,-92,-22,-29,-71,25,31,-42,-7,-63,35,-21,44,37,0,1,67,34,22,16,35,-28,4,-7,-53,53,-54,-39,36,17,-45,4,-9,-1,122,53,9,50,-3,-26,6,21,38,-1,9,7,5,6,-62,-20,-30,112,-10,-82, /* [1254][0][][] */ 52,-101,-57,4,41,9,-96,14,-19,-82,-43,102,-11,-25,-49,-78,-35,58,16,-16,49,-71,-18,80,37,67,9,3,51,-50,11,-6,-74,24,-5,-28,40,-28,-4,-18,24,-3,13,99,-51,-7,28,-127,64,-9,61,31,-31,-38,8,-72,-20,60,41,22,-39,67,106,65,-10,-31,-39,23,-13,-1,20,-14,-39,97,-7,10,-108,17,-26,20,44,50,-46,105,37,-69,-58,-73,29,-12,-65,-27,3,38,64,-41,32,-3,-29,-24,-31,-57,65,26,41,34,-61,22,-94,-44,-11,48, /* [1255][0][][] */ -30,82,63,-17,12,5,-41,-50,-2,1,-1,9,10,13,-43,23,-38,33,18,-96,-36,-64,-5,25,28,-88,24,-26,50,46,-34,4,38,-26,-81,27,8,127,17,-17,8,70,-48,28,-70,-22,56,-3,-6,-51,-21,82,35,-93,17,7,-27,9,9,-62,-37,-17,-42,-49,-24,-70,22,54,34,-50,-13,51,-85,-28,18,-20,-33,0,-24,-42,38,5,-28,0,34,-33,-27,-4,-5,-37,-74,-90,34,9,-26,13,11,-8,67,55,-48,-2,29,-62,-31,-45,9,-29,14,18,27,1, /* [1256][0][][] */ -44,48,-47,71,2,18,27,11,40,28,-34,-127,61,67,-51,19,84,-46,40,40,-20,-5,23,-9,-25,27,71,-22,60,100,-40,-87,-74,-8,-23,3,66,56,7,51,-15,18,8,17,-3,-22,6,-101,45,53,30,48,24,21,68,-28,40,-96,7,49,46,-41,24,30,-44,56,71,53,50,56,-88,-12,8,44,-21,-4,55,3,-17,-60,-33,-23,15,-95,-27,-14,-22,35,-51,-102,4,-68,-60,-8,34,-15,-44,-7,30,-22,77,-66,23,42,51,75,28,0,64,63,18,26, /* [1257][0][][] */ -35,-3,-22,-54,-99,-35,31,-19,36,43,-14,-1,-82,15,47,60,9,-66,64,-4,-16,1,-17,-53,41,-67,-53,25,45,-26,30,-44,12,53,48,1,-36,26,22,47,-46,69,-67,-1,-27,14,72,-54,-22,-56,-11,37,64,-33,-1,-33,3,-15,31,-48,-127,-28,-47,-88,-67,-61,-2,16,-4,14,51,-11,-73,-5,8,45,2,-7,-67,-12,46,8,34,30,-15,-46,41,29,31,-18,40,-43,46,-19,-1,11,-38,1,-39,-37,-16,12,-7,-5,-44,-18,-20,-9,-65,-22,62,-13, /* [1258][0][][] */ 69,-24,50,14,-25,23,-50,7,95,-26,15,40,-6,-55,44,3,29,21,39,84,-75,-34,-41,15,-6,49,16,-7,-20,-19,127,-60,26,-38,-50,29,22,-31,13,29,-31,41,-13,15,8,-10,77,0,78,-75,66,112,8,6,38,62,-44,86,14,26,-3,23,112,1,69,-66,-8,66,8,49,-18,-45,2,103,34,46,-21,9,-71,-83,31,43,-55,-24,-13,-23,78,36,-31,31,-67,-63,57,36,-18,39,-74,46,-104,-75,-20,-26,102,-14,-96,19,43,-29,-63,-44,24,-34, /* [1259][0][][] */ 8,17,21,28,48,22,-27,-63,75,-8,39,-38,25,0,-58,78,48,14,93,-68,-63,-1,-39,53,-9,19,27,-2,-6,86,-49,-10,23,4,-96,23,-13,-41,-57,49,-34,-48,27,53,6,12,127,-45,9,-59,36,9,28,-10,-23,6,46,12,-39,-7,50,68,-73,72,-1,-54,54,81,-60,82,-24,-31,18,-55,-28,-1,23,-39,17,8,-17,-20,-66,18,-7,18,-67,-13,-8,-26,-60,-40,72,41,-38,44,2,-23,10,4,-39,-10,17,-9,19,4,-4,80,31,9,47,-35, /* [1260][0][][] */ 18,-64,-50,17,1,-67,-12,-18,7,2,0,19,16,-41,31,-35,30,-18,-33,11,43,-17,25,13,7,-13,1,21,8,7,13,3,-9,-26,-13,15,13,-29,24,-35,-14,-7,18,15,14,6,-11,11,9,49,59,1,48,-9,19,22,-14,-127,6,18,-8,-9,-46,72,56,-38,11,21,-18,38,33,6,-45,-17,1,-1,8,73,92,37,56,27,41,-17,37,35,-25,-80,-70,-44,-43,23,-7,20,-21,45,-30,26,82,-27,23,18,2,36,70,61,39,-15,35,7,-36,41, /* [1261][0][][] */ -4,-28,-42,-40,-47,-51,-39,-9,29,-6,-6,65,-76,13,-68,12,25,-6,45,-33,35,17,-37,-50,78,-26,-14,17,12,-28,14,-21,-24,72,39,15,-13,87,2,-51,-14,8,-77,-33,-46,17,21,-21,2,-65,-20,64,-15,-96,-42,13,-49,-10,46,-50,-14,-20,-47,-127,-19,-22,-9,65,-49,-48,-10,13,-41,46,18,37,14,5,-65,-30,17,24,0,42,22,-46,24,54,29,-26,-3,-85,37,-36,-25,13,-2,41,-39,-24,85,23,37,19,-32,-32,-69,-41,-75,-37,56,-10, /* [1262][0][][] */ 3,27,-68,-27,-46,-124,28,-21,121,36,127,21,59,-3,-13,-12,31,-10,-3,21,113,13,-16,-14,56,20,-21,73,-28,33,29,70,17,-40,16,-57,74,77,10,-19,-3,25,36,71,-1,-28,12,22,27,-113,30,-28,-11,-12,27,-98,30,-61,-4,-15,15,13,-18,50,-88,73,-73,15,34,-29,23,18,-89,-49,84,-13,-76,70,78,-33,24,-21,19,-75,-37,-17,-33,-11,-31,-45,-75,-5,-28,-49,-30,-38,34,-9,2,-19,70,44,-26,-31,-63,-14,51,17,31,-61,65,-72, /* [1263][0][][] */ -22,30,-64,12,-30,32,-50,81,-50,-78,22,25,13,-29,-43,53,-73,24,10,-49,-60,-11,20,46,7,-26,-43,-24,-6,-17,-16,-56,4,15,-19,21,-50,9,1,8,-29,34,5,20,-40,59,127,10,17,-28,-50,34,20,-47,10,-40,-65,56,-52,23,7,40,-28,51,3,-51,-47,49,-59,-54,22,-8,-15,-24,28,0,-21,-21,16,13,-6,44,-58,30,-15,-18,-7,1,66,71,-19,-42,-49,62,111,12,60,35,-71,-39,-7,17,-6,10,-49,57,12,11,67,44,55,22, /* [1264][0][][] */ 87,47,20,30,-26,1,13,-28,-8,26,51,18,-29,-18,126,14,12,-10,-34,15,94,-56,0,114,36,37,-44,-4,74,-49,-54,-12,-8,18,-68,59,-33,14,6,5,-7,-10,36,111,-53,-9,27,-8,-59,8,45,34,-10,2,48,2,-76,-82,73,-64,25,42,-75,42,-11,-7,19,-28,18,22,62,-34,-6,20,12,-63,48,37,67,-26,54,75,-42,-40,-35,127,-2,52,-42,-107,18,-45,-63,52,53,37,-71,-68,-45,77,3,-15,30,-42,-63,45,16,25,-5,31,-37,6, /* [1265][0][][] */ -81,-29,19,15,17,42,-11,-21,69,-26,9,32,81,44,79,80,55,3,81,28,26,70,-17,78,-19,13,-14,7,126,127,32,-27,-11,-68,15,-73,93,-5,52,58,-16,21,-30,-16,8,-47,-22,-40,125,-17,-24,15,1,111,22,-11,30,-6,-8,73,87,66,48,62,-23,21,13,-52,19,41,-18,-98,14,37,-27,76,31,-6,-20,-71,31,-3,-37,17,-71,20,2,-29,-52,-3,79,50,-25,38,-100,58,-49,21,-69,-46,26,-16,5,-36,20,-2,29,-9,-17,25,68,60, /* [1266][0][][] */ 39,-7,-101,37,41,-71,-9,-53,-8,17,36,2,18,-23,4,-36,90,-54,-1,37,-3,6,-73,28,127,72,-78,26,-13,46,-122,23,112,-18,30,-7,-19,-52,-34,41,-25,12,32,96,-24,-32,23,-21,40,-57,-13,-14,-9,-30,-42,40,-7,-115,-72,56,90,64,-75,35,0,-22,24,2,-28,-30,-5,55,-12,27,69,6,12,8,18,9,71,-13,-16,-3,-47,19,70,-86,-56,-1,-38,-24,16,28,44,-24,16,-81,47,11,36,24,-37,70,36,53,15,-46,98,-9,-14,-70, /* [1267][0][][] */ -56,7,-82,86,-1,-40,18,30,5,-28,0,101,-56,25,58,12,-59,11,15,-72,10,-51,59,5,-22,18,19,-44,-8,51,29,-41,-78,53,-55,7,-39,27,-65,-25,33,28,-120,4,-4,127,-36,-33,-10,-60,-12,56,23,33,-72,-21,3,-72,36,-28,-28,-76,-37,24,66,-28,-52,57,76,-35,-9,-30,-2,29,78,3,33,28,31,-44,-68,-12,-69,49,103,-29,-18,16,24,-69,-55,39,69,66,-10,-8,-64,40,37,-123,-69,-10,34,42,41,58,23,-6,40,43,62,-94, /* [1268][0][][] */ 89,-12,47,-5,20,26,-115,-91,22,-125,-75,-115,19,17,-81,13,-56,-44,-47,122,25,32,-3,113,50,28,-53,8,4,30,-67,-53,59,50,-23,117,5,84,77,-58,98,-51,-27,65,19,76,-34,31,24,0,12,-77,-14,-34,64,-68,-26,-104,25,-23,38,26,0,1,-24,88,-38,-3,109,24,75,-89,-12,11,-7,-10,45,-1,17,-38,12,6,35,-71,-112,41,15,39,-127,-45,-52,29,7,74,-19,31,51,26,98,-34,-18,-67,-3,-7,62,7,121,100,77,-48,54,30, /* [1269][0][][] */ 42,-79,7,11,-9,-31,55,-52,89,31,8,-50,66,33,-25,1,-24,-35,-106,7,108,75,-11,58,125,101,-14,54,14,-24,-49,13,25,87,34,13,86,-87,-28,39,-13,-14,37,-32,7,54,-37,-35,33,38,78,-88,81,43,-3,12,35,-80,43,10,-44,-23,-81,-5,-11,13,-57,-2,-100,9,-11,-29,77,24,90,47,54,-54,26,-127,88,31,49,-1,-3,124,-35,-17,13,-77,-40,-44,29,-4,-127,-30,-16,-41,16,65,48,-52,15,-54,-72,0,8,19,106,-31,30,-54, /* [1270][0][][] */ 2,-63,-76,100,66,-15,0,74,-15,30,4,-12,3,-22,-20,105,117,-43,8,-89,79,19,-93,62,-72,103,11,-43,75,0,26,-24,-47,28,-26,-12,38,8,4,43,-11,72,14,64,-73,10,-46,11,75,84,-26,25,-2,-35,23,14,101,-39,17,-13,-43,-62,-41,109,-6,91,-52,-52,37,0,123,-36,-24,7,49,-34,58,102,32,-30,-1,-33,-32,-120,6,18,-9,30,-52,10,-18,-98,-91,39,56,15,-75,-28,-103,36,24,55,-74,127,85,28,-7,33,52,33,-80,20, /* [1271][0][][] */ 58,-72,-27,69,37,7,-5,-103,44,-15,5,26,124,46,52,-23,-4,5,-21,1,25,1,0,47,0,2,-15,19,-3,45,-14,38,-8,127,-18,-29,21,16,8,-2,8,20,-48,40,5,10,19,-33,9,-38,10,-11,104,59,19,60,11,-11,-21,44,-45,-53,-10,51,36,-17,9,40,68,36,18,-3,38,22,-89,-65,106,30,8,-32,33,31,96,34,-49,66,-43,85,-36,23,36,-24,-1,38,1,45,-16,-2,18,51,-18,32,-8,2,28,37,-46,28,75,9,28,-44, /* [1272][0][][] */ 5,-45,-105,-54,-75,-13,55,19,15,-26,8,42,7,14,-46,91,-13,-8,-31,-37,-12,-44,-32,31,84,127,-36,34,-9,13,-25,16,2,-27,-42,87,49,-64,29,-37,-22,95,2,-27,-51,38,-7,20,61,-49,-57,-89,-35,-91,-6,47,-6,-86,-16,-54,88,70,26,-7,20,-9,-4,3,28,-17,-33,-39,27,18,2,-19,45,28,49,4,89,12,30,-30,-42,-2,-92,-11,-33,86,-21,-49,-52,9,64,39,27,25,58,5,7,-19,-115,-2,-37,39,10,68,114,65,21,-36, /* [1273][0][][] */ 32,9,-37,19,19,-90,-47,19,27,44,-18,-29,-24,31,7,18,-54,3,-46,-48,41,-48,7,-45,33,-26,-43,-10,-3,-35,29,33,16,-33,-39,23,-1,-48,36,-28,-48,29,22,33,-16,6,24,-22,-23,-44,6,36,-43,7,-84,0,-27,12,-45,-34,-38,-18,-51,-23,-40,15,-67,-22,-23,-4,11,41,-13,-7,38,60,-43,-24,-19,-9,4,3,-33,1,10,-19,-26,-28,65,-10,-20,-23,-37,-22,-7,17,-97,-30,-57,-44,9,-24,-4,127,2,-41,123,-22,-16,9,22,-21, /* [1274][0][][] */ -15,-7,-32,16,49,-10,-5,-14,25,-8,47,16,68,-60,-47,25,-23,-70,23,-39,10,7,20,8,-26,-15,15,-2,16,54,5,-24,-17,127,-27,17,12,7,27,4,-45,-5,-48,-51,8,92,-14,-35,28,48,48,11,103,11,42,-22,28,-36,-37,22,-4,-18,-35,58,-7,-37,-45,-13,47,57,15,7,-2,-57,-33,-35,11,7,-4,22,36,-5,-28,-57,-27,-4,-11,17,-25,-62,45,-54,-21,10,49,-7,-5,7,48,-29,-31,39,9,13,-14,32,15,-32,50,-38,21,-85, /* [1275][0][][] */ -33,-38,-2,-53,36,-19,-12,-52,127,-20,28,-8,-16,5,68,-4,13,66,26,23,46,-36,-68,12,20,8,16,30,58,36,-1,38,-21,0,9,9,-72,16,23,37,57,-30,-19,-9,-41,13,24,-20,-5,25,74,-112,-11,45,-43,38,49,-49,-33,-36,-24,35,-30,4,11,30,-34,-61,34,80,-29,-5,-37,75,78,-11,22,78,-33,62,55,9,39,-14,21,11,-53,-35,-15,-13,-25,-9,16,-8,-96,36,13,-11,-24,43,25,-33,18,-44,21,113,-39,-17,24,-45,-16,3, /* [1276][0][][] */ 12,30,-6,-66,-50,-29,46,8,-2,30,72,96,-88,51,60,53,53,-60,-11,-127,-53,4,20,-18,-14,3,-71,59,-23,-75,10,-42,-61,104,39,98,-46,-55,-77,80,-121,49,-6,-26,16,-14,-17,6,11,-7,-29,63,32,-66,24,-14,-23,-44,6,7,-56,28,21,-19,-25,-29,12,52,52,28,83,45,42,53,-9,-36,31,8,45,-80,37,53,-36,97,10,-4,35,-8,-2,-31,38,-6,-39,-14,37,-26,-32,2,3,41,17,-48,22,14,-6,29,54,-64,-51,-11,42,51, /* [1277][0][][] */ 27,37,-61,124,16,-27,-5,44,88,31,-31,-8,-23,-1,5,15,-41,27,-8,15,-47,-127,108,59,-51,-9,-64,-25,-66,17,8,34,-36,7,-18,-40,47,55,-82,-12,76,0,-86,4,-31,84,88,11,-24,-1,-11,63,-51,-55,-8,-120,-78,34,-29,-83,3,-32,-29,36,-15,-30,14,119,22,6,-20,38,-26,-8,40,20,-6,12,-38,-56,-4,4,-41,8,57,10,-24,-63,62,37,-63,-31,-25,-44,-22,-30,-20,-10,-5,8,13,36,-57,-27,-8,-28,67,-43,-2,0,30,-80, /* [1278][0][][] */ 23,-38,-20,-33,-38,27,-26,2,-5,-43,-43,-7,-28,-40,-30,26,-3,8,-17,-33,-21,-26,-29,26,-6,27,-23,-1,-15,-38,-3,-66,-25,37,4,39,9,-60,-49,52,-18,64,-15,-53,-3,74,12,-6,6,-21,23,12,21,-62,11,-21,-127,8,59,-42,23,15,-33,17,-3,-10,2,26,-25,-38,19,1,-18,19,33,-2,62,-30,-7,-51,40,32,-53,40,-5,0,-13,-19,58,-13,-29,43,0,7,43,-21,-13,-19,-36,11,30,-50,-5,-9,-1,-38,39,-10,28,-5,10,-24, /* [1279][0][][] */ -13,-49,-92,61,-1,-4,48,44,22,45,25,44,49,-22,-43,75,-59,4,-11,-71,-31,14,10,-37,43,72,-40,33,22,-57,35,-127,38,-10,-5,53,6,-28,81,15,-43,66,-39,-13,-40,-43,41,-23,23,-4,-4,24,-31,-47,40,47,-79,-47,-79,-47,-34,-17,24,37,-15,11,-10,80,-22,-47,81,-42,-21,51,44,-31,51,38,-47,24,94,-45,-5,-62,-35,100,12,63,-45,17,59,-44,-22,-28,71,-47,-20,-38,8,-50,34,-64,-21,22,50,-10,103,-24,111,-37,6,-30, }; const TfArray<4, int> tensor_dimension6 = { 4, { 1280,1,1,112 } }; const TfArray<1280, float> quant6_scale = { 1280, { 0.00051694660214707255, 0.00055034342221915722, 0.00056086009135469794, 0.00072906736750155687, 0.00048941769637167454, 0.00058857648400589824, 0.00062142469687387347, 0.00075123866554349661, 0.00047001667553558946, 0.00068364234175533056, 0.00045783043606206775, 0.00052644818788394332, 0.0010010118130594492, 0.00054992630612105131, 0.00063359958585351706, 0.00062647263985127211, 0.0005667487857863307, 0.0008691026596352458, 0.00059573788894340396, 0.00073756236815825105, 0.00058146932860836387, 0.00050031341379508376, 0.00052463356405496597, 0.0006894859834574163, 0.00075646379264071584, 0.00072789296973496675, 0.00054015242494642735, 0.00073468574555590749, 0.00061733875190839171, 0.0005224955384619534, 0.00055897684069350362, 0.00055759248789399862, 0.00056897557806223631, 0.00069790612906217575, 0.00070310459705069661, 0.00052834581583738327, 0.00066764856455847621, 0.00060011324239894748, 0.00061121885664761066, 0.00057129148626700044, 0.00076515314867720008, 0.00058603886282071471, 0.00046937074512243271, 0.00064072676468640566, 0.00058212119620293379, 0.00060207402566447854, 0.00059421139303594828, 0.00068313063820824027, 0.00055729126324877143, 0.00079264509258791804, 0.00069821701617911458, 0.00063187850173562765, 0.0005647126235999167, 0.00048279925249516964, 0.00046648574061691761, 0.00057399028446525335, 0.00059914623852819204, 0.00060456950450316072, 0.00052505824714899063, 0.00070381496334448457, 0.00059080577921122313, 0.0006292612524703145, 0.00058197160251438618, 0.00041604161378927529, 0.00060500862309709191, 0.00066292303381487727, 0.00058248441200703382, 0.00058203755179420114, 0.00057694339193403721, 0.00073535018600523472, 0.00062705186428502202, 0.0003838607226498425, 0.00062948785489425063, 0.00057353015290573239, 0.00042768806451931596, 0.00050716864643618464, 0.00066038471413776278, 0.00063860457157716155, 0.00063293060520663857, 0.00048126571346074343, 0.00049336825031787157, 0.000468323880340904, 0.0005258866585791111, 0.00058116315631195903, 0.00056252157082781196, 0.00046604109229519963, 0.00045645592035725713, 0.00059629423776641488, 0.00045520294224843383, 0.00072648987406864762, 0.00072216684930026531, 0.00069784774677827954, 0.00064634485170245171, 0.00050361535977572203, 0.00056091800797730684, 0.00077592546585947275, 0.00053704436868429184, 0.0006228675483725965, 0.00060211791424080729, 0.00050896499305963516, 0.00063160614809021354, 0.0005854795454069972, 0.00046117711463011801, 0.00059112801682204008, 0.0005707817617803812, 0.00056075694737955928, 0.00066207913914695382, 0.00080566277028992772, 0.00071075966116040945, 0.00064223568188026547, 0.00067586859222501516, 0.00047545760753564537, 0.00049175787717103958, 0.00057255162391811609, 0.00072539318352937698, 0.00063322141068056226, 0.00063457567011937499, 0.0010084904497489333, 0.00069366901880130172, 0.00062598189106211066, 0.0005832099705003202, 0.00060798902995884418, 0.00067293649772182107, 0.00054059486137703061, 0.00083778414409607649, 0.00051894586067646742, 0.00063360907370224595, 0.00055358861573040485, 0.00045738648623228073, 0.00076667394023388624, 0.00074831821257248521, 0.00060477101942524314, 0.00056576344650238752, 0.00063868804136291146, 0.00046883977483958006, 0.0007407821249216795, 0.00064978981390595436, 0.00059012294514104724, 0.00060638436116278172, 0.00050631200429052114, 0.00056673004291951656, 0.00065395713318139315, 0.00057178869610652328, 0.00059257418615743518, 0.00054257398005574942, 0.00048233370762318373, 0.00052935193525627255, 0.00055472820531576872, 0.00053504051174968481, 0.00057881674729287624, 0.00072706880746409297, 0.00055136461742222309, 0.00051196623826399446, 0.00048404021072201431, 0.00071056507294997573, 0.00056366767967119813, 0.00070401543052867055, 0.00050648086471483111, 0.00057388172717764974, 0.00053386465879157186, 0.00052919058362022042, 0.00067462067818269134, 0.00052066525677219033, 0.00062402605544775724, 0.00069058930967003107, 0.00055934424744918942, 0.00078983366256579757, 0.00074187992140650749, 0.00062219740357249975, 0.00051196612184867263, 0.00070937088457867503, 0.00068288575857877731, 0.00064139690948650241, 0.00067565549397841096, 0.00045043884892947972, 0.0005175246624276042, 0.00050590006867423654, 0.00062062678625807166, 0.00063129072077572346, 0.00046135313459672034, 0.00060208252398297191, 0.00053804524941369891, 0.00056578294606879354, 0.00053472729632630944, 0.00073087913915514946, 0.00053156435023993254, 0.00053395103896036744, 0.00058624823577702045, 0.00063626357587054372, 0.00056469114497303963, 0.00070957792922854424, 0.00057765765814110637, 0.00080050021642819047, 0.00052663945825770497, 0.00051757553592324257, 0.00058313860790804029, 0.0004970927257090807, 0.00048818500363267958, 0.0006170819397084415, 0.00066168588818982244, 0.00050594884669408202, 0.00051035697106271982, 0.00056636513909325004, 0.00064039707649499178, 0.00059453555149957538, 0.00063529604813084006, 0.0006059992010705173, 0.00058726163115352392, 0.0007265982567332685, 0.00061751826433464885, 0.00064218038460239768, 0.00057036266662180424, 0.00054260290926322341, 0.00055916944984346628, 0.00051162746967747808, 0.00060626800404861569, 0.00067513762041926384, 0.000617641257122159, 0.00059660256374627352, 0.00068401661701500416, 0.00062828144291415811, 0.00080225191777572036, 0.0005971060018055141, 0.00051000731764361262, 0.0006458776188082993, 0.00046014657709747553, 0.00051724608056247234, 0.00068632082547992468, 0.00056712061632424593, 0.00052391074132174253, 0.00047383515629917383, 0.00057121878489851952, 0.00049298646626994014, 0.00059005594812333584, 0.00067231629509478807, 0.00048542532022111118, 0.00048904697177931666, 0.00052582664648070931, 0.00047227469622157514, 0.00048703601351007819, 0.00047727214405313134, 0.00073264288948848844, 0.00063253042753785849, 0.00060441752430051565, 0.00061490456573665142, 0.00056002347264438868, 0.00051159458234906197, 0.00059849943500012159, 0.000707796192727983, 0.00066010880982503295, 0.00065947865368798375, 0.0005511100753210485, 0.00060264248168095946, 0.00065862573683261871, 0.00047444808296859264, 0.00061485660262405872, 0.00051210378296673298, 0.00073516491102054715, 0.00058577978052198887, 0.00059505028184503317, 0.00068781001027673483, 0.00065240735420957208, 0.00059119262732565403, 0.00071332813240587711, 0.00067176437005400658, 0.00055465486366301775, 0.00052457512356340885, 0.00051819626241922379, 0.00057475210633128881, 0.00066023762337863445, 0.0009000494028441608, 0.00050512317102402449, 0.00059590314049273729, 0.00086083105998113751, 0.00069317716406658292, 0.00048857060028240085, 0.00067784736165776849, 0.00050747912609949708, 0.00075325986836105585, 0.00061355927027761936, 0.00044711740338243544, 0.0005460450192913413, 0.00050849688705056906, 0.00055207964032888412, 0.0008528376929461956, 0.00057668832596391439, 0.00052021158626303077, 0.00066635065013542771, 0.00054521113634109497, 0.00064685207325965166, 0.00084710528608411551, 0.0007639789255335927, 0.00058760511456057429, 0.00047075643669813871, 0.00043241155799478292, 0.00065534608438611031, 0.00061507581267505884, 0.00054280739277601242, 0.00067042943555861712, 0.00059708789922297001, 0.00070984510239213705, 0.00046783400466665626, 0.00066058046650141478, 0.00055436143884435296, 0.00072404730599373579, 0.00064822827698662877, 0.00087541242828592658, 0.00045996022527106106, 0.00056519079953432083, 0.00067108427174389362, 0.00077261636033654213, 0.00049832364311441779, 0.00057266466319561005, 0.00057878531515598297, 0.00063717219745740294, 0.00055594020523130894, 0.00047713459935039282, 0.00064922397723421454, 0.00043290469329804182, 0.00063550117192789912, 0.00067552586551755667, 0.00060292292619124055, 0.00046374881640076637, 0.00050131301395595074, 0.00044828586396761239, 0.00061140366597101092, 0.00064224260859191418, 0.00052762468112632632, 0.00057152786757797003, 0.00066178059205412865, 0.00059671368217095733, 0.00055424601305276155, 0.00056345452321693301, 0.00060810928698629141, 0.00061884179012849927, 0.00055765395518392324, 0.00081741355825215578, 0.00051037903176620603, 0.00057137955445796251, 0.00098533288110047579, 0.00056224764557555318, 0.00064389349427074194, 0.00061561411712318659, 0.00053459993796423078, 0.00056063162628561258, 0.00081890472210943699, 0.00068318407284095883, 0.00066079857060685754, 0.00064737268257886171, 0.00055060477461665869, 0.00053112715249881148, 0.00047964032273739576, 0.00073602329939603806, 0.0005711854319088161, 0.00061208161059767008, 0.00052250258158892393, 0.00048715475713834167, 0.00062019651522859931, 0.00067698187194764614, 0.00075379107147455215, 0.00062789610819891095, 0.00084334646817296743, 0.00044196209637448192, 0.00057183153694495559, 0.00072157831164076924, 0.00067098706495016813, 0.00051033694762736559, 0.00060222548199817538, 0.00049022742314264178, 0.00043312474736012518, 0.00055297795915976167, 0.00064343865960836411, 0.00057278218446299434, 0.00055399967823177576, 0.00063398689962923527, 0.00060488301096484065, 0.00068489304976537824, 0.00059097970370203257, 0.00072920561069622636, 0.00056714157108217478, 0.00056517892517149448, 0.00053619843674823642, 0.00075525109423324466, 0.00067144242348149419, 0.00051914912182837725, 0.00058206811081618071, 0.00054066628217697144, 0.00054859276860952377, 0.0006552466657012701, 0.0003977932792622596, 0.00070617056917399168, 0.00052790215704590082, 0.00069119955878704786, 0.0006531279650516808, 0.00071731035131961107, 0.00058717257343232632, 0.00067397340899333358, 0.00069432490272447467, 0.00049095746362581849, 0.00084746611537411809, 0.00074229465099051595, 0.00059881794732064009, 0.00083791889483109117, 0.00070150825195014477, 0.0007560720550827682, 0.00066379283089190722, 0.00079046585597097874, 0.00045686846715398133, 0.00046065659262239933, 0.00054349051788449287, 0.0006149753462523222, 0.0005892631015740335, 0.00057128135813400149, 0.00059336313279345632, 0.00067167816450819373, 0.00048987718764692545, 0.00056579674128443003, 0.00054286845261231065, 0.00052417634287849069, 0.0005204429617151618, 0.00060123257571831346, 0.00058255158364772797, 0.00062256539240479469, 0.00044416589662432671, 0.00047598074888810515, 0.00084820704068988562, 0.00074452080298215151, 0.00061379361432045698, 0.00051645218627527356, 0.00050254981033504009, 0.00060186645714566112, 0.00062052888097241521, 0.00050739670405164361, 0.00097385316621512175, 0.00062229257309809327, 0.00051539757987484336, 0.00047445643576793373, 0.00061298219952732325, 0.00059729820350185037, 0.00072758417809382081, 0.00052681670058518648, 0.00058895006077364087, 0.00072529877070337534, 0.00068844592897221446, 0.00073528377106413245, 0.00060358922928571701, 0.00049951218534260988, 0.00069918646477162838, 0.00044135266216471791, 0.00071305088931694627, 0.00061294197803363204, 0.00056572817265987396, 0.00047106199781410396, 0.00089012441458180547, 0.00061932753305882215, 0.00066945148864760995, 0.00058443000307306647, 0.0005818243371322751, 0.00074825913179665804, 0.00089841766748577356, 0.00055367790628224611, 0.00062633916968479753, 0.00048565980978310108, 0.00068157975329086185, 0.00053194531938061118, 0.00064349477179348469, 0.0006662814412266016, 0.00069447833811864257, 0.00058481580344960093, 0.00055096094729378819, 0.00086344225564971566, 0.00064225972164422274, 0.00073781330138444901, 0.0007754355319775641, 0.00054904015269130468, 0.00060443422989919782, 0.00076049502240493894, 0.00073086860356852412, 0.00063626124756410718, 0.00050112331518903375, 0.00070846499875187874, 0.00055686698760837317, 0.00052421237342059612, 0.00071427476359531283, 0.0005161627777852118, 0.00058561703190207481, 0.00054797728080302477, 0.00067090976517647505, 0.00074726890306919813, 0.00061560008907690644, 0.00064360216492787004, 0.00073359429370611906, 0.00053143111290410161, 0.00053406110964715481, 0.00083124812226742506, 0.00064581376500427723, 0.00070969737134873867, 0.00069189962232485414, 0.00050429056864231825, 0.00054061930859461427, 0.00057330151321366429, 0.00062260386766865849, 0.00063818605849519372, 0.00067748839501291513, 0.00060142710572108626, 0.00063258659793063998, 0.00064307131106033921, 0.00058675458421930671, 0.00047836994053795934, 0.00062031298875808716, 0.00083704659482464194, 0.00043870205990970135, 0.00055850460194051266, 0.00061453052330762148, 0.00055044633336365223, 0.00087456358596682549, 0.00064330035820603371, 0.00056521175429224968, 0.00053221546113491058, 0.00069676717976108193, 0.00079545984044671059, 0.00063000252703204751, 0.00070525967748835683, 0.0006507252692244947, 0.00058604805963113904, 0.00055005989270284772, 0.00070563209010288119, 0.00067256030160933733, 0.00076041946886107326, 0.00051151512889191508, 0.0005480067920871079, 0.00064920890145003796, 0.00059224630240350962, 0.00061210076091811061, 0.00059398193843662739, 0.00047078481293283403, 0.00056049670092761517, 0.00063761090859770775, 0.00064587563974782825, 0.0004757793212775141, 0.0006655172910541296, 0.00067624368239194155, 0.00051639560842886567, 0.00065365934278815985, 0.00060083286371082067, 0.00041015894385054708, 0.00056289014173671603, 0.00058004568563774228, 0.000536606356035918, 0.00046352253411896527, 0.00060163805028423667, 0.00053837127052247524, 0.00081324577331542969, 0.00091301766224205494, 0.00062312377849593759, 0.00057493604253977537, 0.00050896016182377934, 0.00051767443073913455, 0.00072414032183587551, 0.00046356115490198135, 0.00070461590075865388, 0.00078388693509623408, 0.00056071119615808129, 0.00056954415049403906, 0.00041100598173215985, 0.0007572895847260952, 0.00062632508343085647, 0.00044712069211527705, 0.00052919564768671989, 0.00055276794591918588, 0.00045655312715098262, 0.00077929202234372497, 0.00058942905161529779, 0.00057406356791034341, 0.00049719394883140922, 0.000803767004981637, 0.00058748718583956361, 0.00063141464488580823, 0.00047109884326346219, 0.00047261815052479506, 0.00053391041001304984, 0.00070650869747623801, 0.00055134628200903535, 0.00052612432045862079, 0.00049030489753931761, 0.00074742530705407262, 0.00058883934980258346, 0.00056388846132904291, 0.00064902700250968337, 0.00041843974031507969, 0.00061892508529126644, 0.00068974198075011373, 0.00046646973351016641, 0.00045827822759747505, 0.00046491817920468748, 0.00067239446798339486, 0.00062200840329751372, 0.00059504620730876923, 0.0004805167845916003, 0.00071445107460021973, 0.00051536725368350744, 0.00049116648733615875, 0.00060605892213061452, 0.00047755864216014743, 0.00058427336625754833, 0.00050755718257278204, 0.00070122157922014594, 0.00097992992959916592, 0.00070357299409806728, 0.0010074175661429763, 0.00053804466733708978, 0.00047690185601823032, 0.00058254553005099297, 0.00056193489581346512, 0.00050377630395814776, 0.00046812492655590177, 0.00052977056475356221, 0.00089084653882309794, 0.00074684474384412169, 0.00064399838447570801, 0.00061637966427952051, 0.00057695072609931231, 0.00065003469353541732, 0.00051068334141746163, 0.0006099145975895226, 0.0006408423651009798, 0.00048896815860643983, 0.00047054866445250809, 0.00062955718021839857, 0.00080769503256306052, 0.0008594609098508954, 0.00049569393740966916, 0.00045696538290940225, 0.00076474947854876518, 0.00057425140403211117, 0.0008720874902792275, 0.0004279983404558152, 0.00065194774651899934, 0.0006522017065435648, 0.00054957548854872584, 0.00045879097888246179, 0.00059866276569664478, 0.00058451818767935038, 0.00052462302846834064, 0.00067466701148077846, 0.00055302761029452085, 0.00056883838260546327, 0.00061797065427526832, 0.0007883379003033042, 0.00056909752311185002, 0.00077607081038877368, 0.00057541648857295513, 0.00054527749307453632, 0.00076268945122137666, 0.00048413075273856521, 0.00060346530517563224, 0.00065888278186321259, 0.00062956701731309295, 0.00058589491527527571, 0.00061081082094460726, 0.00053487397963181138, 0.00048846949357539415, 0.00051992357475683093, 0.00067287468118593097, 0.00061357388040050864, 0.0006352741620503366, 0.00050404469948261976, 0.00060880038654431701, 0.00056411157129332423, 0.00072182592703029513, 0.00050908571574836969, 0.00070577190490439534, 0.00054716458544135094, 0.00053844688227400184, 0.00070096575655043125, 0.00066910072928294539, 0.0005556962569244206, 0.00053602439584210515, 0.00064108078368008137, 0.00075272243702784181, 0.00050911091966554523, 0.00053755188127979636, 0.00087564770365133882, 0.00053113006288185716, 0.00048466536100022495, 0.00049616227624937892, 0.00069560582051053643, 0.00071249913889914751, 0.00054222147446125746, 0.00050094991456717253, 0.00059637118829414248, 0.00071864476194605231, 0.00073183339554816484, 0.00061246403492987156, 0.00059542001690715551, 0.0005726951640099287, 0.00072212453233078122, 0.00059431314002722502, 0.00061494053807109594, 0.00043900861055590212, 0.00045918513205833733, 0.00057859363732859492, 0.00053552258759737015, 0.0005563368322327733, 0.00061526015633717179, 0.00061969959642738104, 0.00056365859927609563, 0.00052562274504452944, 0.00067872053477913141, 0.00065970799187198281, 0.00064015691168606281, 0.00066648086067289114, 0.00053387513617053628, 0.00042975018732249737, 0.00061109563102945685, 0.00077784474706277251, 0.00056297954870387912, 0.00046115909935906529, 0.00050737062701955438, 0.00066608213819563389, 0.00049327441956847906, 0.00056357408175244927, 0.00053198094246909022, 0.00058132887352257967, 0.00056220922851935029, 0.00053927459521219134, 0.00043965017539449036, 0.00063997367396950722, 0.0007435703300870955, 0.00062567729037255049, 0.0005823442479595542, 0.00046503532212227583, 0.00047985624405555427, 0.00053718959679827094, 0.00057146954350173473, 0.00048229604726657271, 0.00054569280473515391, 0.00047084738616831601, 0.00051529437769204378, 0.00074814056279137731, 0.00057948287576436996, 0.00066049443557858467, 0.00050941272638738155, 0.00052171002607792616, 0.00058232917217537761, 0.00061671365983784199, 0.00044257481931708753, 0.00052554084686562419, 0.00050991954049095511, 0.00063438090728595853, 0.00055760040413588285, 0.00066523364512249827, 0.00050095946062356234, 0.00054776482284069061, 0.00048358220374211669, 0.00054020015522837639, 0.00051006104331463575, 0.00066083821002393961, 0.00051721569616347551, 0.00069311464903876185, 0.00084988243179395795, 0.0005638201255351305, 0.00054714101133868098, 0.00076896487735211849, 0.00061144656501710415, 0.00051310041453689337, 0.00056453014258295298, 0.00052516971481963992, 0.0009804602013900876, 0.00052832742221653461, 0.00059675239026546478, 0.00057931168703362346, 0.00061068398645147681, 0.00063374883029609919, 0.00052153406431898475, 0.0004729956854134798, 0.00056123663671314716, 0.00069306179648265243, 0.0007161093526519835, 0.00045708066318184137, 0.00046065679634921253, 0.00045605748891830444, 0.00057023135013878345, 0.00067141838371753693, 0.00071175349876284599, 0.00063044665148481727, 0.00054690742399543524, 0.0005128269549459219, 0.00063571863574907184, 0.00063438108190894127, 0.0007536996272392571, 0.00089242961257696152, 0.00047126540448516607, 0.000698370102327317, 0.00054314057342708111, 0.0005002781399525702, 0.00040895876009017229, 0.00056574511108919978, 0.00080486055230721831, 0.00046057216241024435, 0.00052570732077583671, 0.00046506250509992242, 0.00072129257023334503, 0.000604919099714607, 0.00073910225182771683, 0.00056416651932522655, 0.00071191985625773668, 0.00060091988416388631, 0.00066147604957222939, 0.0005010859458707273, 0.0004926915280520916, 0.00054987630574032664, 0.00035383712383918464, 0.00051015923963859677, 0.0006876136758364737, 0.00070826854789629579, 0.00047911627916619182, 0.00072904000990092754, 0.00066856015473604202, 0.00056428206153213978, 0.00058023520978167653, 0.00047645409358665347, 0.00063868996221572161, 0.00065481633646413684, 0.00053746410412713885, 0.00047507774434052408, 0.00060521741397678852, 0.00066127453465014696, 0.00058404909214004874, 0.00082691205898299813, 0.0007347018108703196, 0.00071134738391265273, 0.00055749737657606602, 0.00058637402253225446, 0.00061098195146769285, 0.000489522994030267, 0.00059131404850631952, 0.00056442676577717066, 0.00073039811104536057, 0.00065468123648315668, 0.00051366881234571338, 0.00051987968618050218, 0.000674002047162503, 0.00056864850921556354, 0.00056314573157578707, 0.00056203355779871345, 0.00065160240046679974, 0.00062462047208100557, 0.00061742617981508374, 0.0005454265046864748, 0.00051823339890688658, 0.00055528990924358368, 0.00052290374878793955, 0.00049238931387662888, 0.00047669920604676008, 0.00063897628569975495, 0.00045423512347042561, 0.00057001656387001276, 0.00060293235583230853, 0.00066893646726384759, 0.00047512329183518887, 0.00054168701171875, 0.00060472759651020169, 0.0005728222313337028, 0.0005177438142709434, 0.00054497254313901067, 0.00060459726955741644, 0.00057511916384100914, 0.00076615746365860105, 0.00059778732247650623, 0.0005741586210206151, 0.00056187144946306944, 0.00057144288439303637, 0.00064553937409073114, 0.00049971730913966894, 0.00063964020228013396, 0.00060909346211701632, 0.00047447127872146666, 0.00081464846152812243, 0.00055653479648754001, 0.00056584650883451104, 0.00064760539680719376, 0.00048115898971445858, 0.00042940097046084702, 0.00055179046466946602, 0.00046479079173877835, 0.00050582928815856576, 0.00048204968334175646, 0.00062921596691012383, 0.00055976299336180091, 0.00039894552901387215, 0.00070275721373036504, 0.00052998517639935017, 0.00054950284538790584, 0.00065777252893894911, 0.00069248594809323549, 0.00063060998218134046, 0.00053371419198811054, 0.00089960184413939714, 0.00069737009471282363, 0.00063272076658904552, 0.00067651760764420033, 0.00069707591319456697, 0.00061712984461337328, 0.00048776503535918891, 0.00069904857082292438, 0.0006565558142028749, 0.00056377204600721598, 0.00047015401651151478, 0.00072439084760844707, 0.00067846977617591619, 0.00063058047089725733, 0.0006151374545879662, 0.00063311291160061955, 0.00063009571749716997, 0.00060729030519723892, 0.00051713862922042608, 0.00046887120697647333, 0.00057277892483398318, 0.00049063115147873759, 0.00055574707221239805, 0.00061995157739147544, 0.00054236262803897262, 0.00076978182187303901, 0.00066270254319533706, 0.00052906258497387171, 0.00055272039026021957, 0.00049196899635717273, 0.00064147851662710309, 0.00059694645460695028, 0.00060168857453390956, 0.0006860041175968945, 0.0005849461886100471, 0.00060654029948636889, 0.00060229800874367356, 0.00055763061391189694, 0.00055253691971302032, 0.00053376308642327785, 0.00048818410141393542, 0.00053020223276689649, 0.00063796329777687788, 0.00071649765595793724, 0.00071268680039793253, 0.00056767504429444671, 0.00065864017233252525, 0.00074119906639680266, 0.00056219275575131178, 0.00064860074780881405, 0.00059101387159898877, 0.00048371369484812021, 0.00069566583260893822, 0.00053501303773373365, 0.00055352761410176754, 0.00053237308748066425, 0.00059508654521778226, 0.00050610618200153112, 0.00049882166786119342, 0.00047051848378032446, 0.00061205256497487426, 0.00065587018616497517, 0.00057153863599523902, 0.00049149291589856148, 0.00050872075371444225, 0.00062082888325676322, 0.0004887009272351861, 0.00051742122741416097, 0.00042030285112559795, 0.00061326002469286323, 0.00065366725903004408, 0.00067844940349459648, 0.00046186783583834767, 0.00049395690439268947, 0.00058331323089078069, 0.00063923950074240565, 0.00057559617562219501, 0.00058183667715638876, 0.00059735990362241864, 0.00059136189520359039, 0.00056496250908821821, 0.00050432694843038917, 0.00062312005320563912, 0.00058215658646076918, 0.00087876460747793317, 0.00055920233717188239, 0.00050165632274001837, 0.00060281064361333847, 0.00062799639999866486, 0.00060188665520399809, 0.00066048360895365477, 0.00056648516329005361, 0.00056003796635195613, 0.00061399734113365412, 0.00049913092516362667, 0.00053383316844701767, 0.00060577783733606339, 0.00055444153258576989, 0.00046768190804868937, 0.00075416016625240445, 0.00050933484453707933, 0.00063908577430993319, 0.00051703868666663766, 0.00046667267451994121, 0.00080232584150508046, 0.00053404917707666755, 0.00062001659534871578, 0.00048385749687440693, 0.00056056509492918849, 0.00052576523739844561, 0.00059522828087210655, 0.0005184789770282805, 0.00065139407524839044, 0.00079857016680762172, 0.00070669379783794284, 0.00071022787597030401, 0.00070890807546675205, 0.00053862889762967825, 0.00057627854403108358, 0.00063117133686318994, 0.00061699392972514033, 0.00063203339232131839, 0.00073478912236168981, 0.00060361024225130677, 0.0005555035313591361, 0.00059503637021407485, 0.00050828506937250495, 0.00057636585552245378, 0.0004290596698410809, 0.00061647698748856783, 0.00067880959250032902, 0.00072515697684139013, 0.00055616028839722276, 0.0006016987026669085, 0.00054428272414952517, 0.00057984498562291265, 0.00060296035371720791, 0.00052550487453117967, 0.00050822674529626966, 0.00062557222554460168, 0.0007294543320313096, 0.0007102157105691731, 0.00051668763626366854, 0.00048080054693855345, 0.00067971856333315372, 0.00072676461422815919, 0.00048362498637288809, 0.00075873557943850756, 0.00054075685329735279, 0.0005656509893015027, 0.00052441947627812624, 0.00058709434233605862, 0.00050084240501746535, 0.00065330747747793794, 0.00067202805075794458, 0.00058916577836498618, 0.00072159664705395699, 0.00066424696706235409, 0.0004620842810254544, 0.00053834251593798399, 0.00052413210505619645, 0.00059401779435575008, 0.0005783566739410162, 0.00063233333639800549, 0.00058800895931199193, 0.00056374544510617852, 0.00048201796016655862, 0.00054639845620840788, 0.0006494831177406013, 0.00052289752056822181, 0.00078122119884938002, 0.0005434824270196259, 0.00058927451027557254, 0.0005385552067309618, 0.00065108441049233079, 0.00056558562209829688, 0.00055512506514787674, 0.00052053277613595128, 0.00064493896206840873, 0.00057343608932569623, 0.00063791609136387706, 0.00054716190788894892, 0.0006535519496537745, 0.00060145964380353689, 0.00066355464514344931, 0.0007296985131688416, 0.00057838083012029529, 0.00066255993442609906, 0.00051933323265984654, 0.00069893948966637254, 0.00050917500630021095, 0.00065279245609417558, 0.0006202115910127759, 0.00055928039364516735, 0.00059692846843972802, 0.00046378854312933981, 0.00073289807187393308, 0.00062603742117062211, 0.00054636708227917552, 0.0006256367196328938, 0.00056774151744320989, 0.0006607910618185997, 0.00053118757205083966, 0.00069525826256722212, 0.00058490823721513152, 0.00047035174793563783, 0.00047677010297775269, 0.00062705721938982606, 0.00078398827463388443, 0.00052067881915718317, 0.0005650679231621325, 0.00044795521534979343, 0.00045159016735851765, 0.00048229977255687118, 0.00059068173868581653, 0.00054471363546326756, 0.001059928210452199, 0.00078151765046641231, 0.00059026177041232586, 0.0006006592302583158, 0.00062523462111130357, 0.00050848000682890415, 0.00054476136574521661, 0.00057688192464411259, 0.00051167805213481188, 0.00050277408445253968, 0.00055925094056874514, 0.00063393317395821214, 0.00051711458945646882, 0.00056106067495420575, 0.0005619970615953207, 0.00049214920727536082, 0.00047108528087846935, 0.00059640861582010984, 0.00057824735995382071, 0.00081922078970819712, 0.00051923835417255759, 0.00062889052787795663, 0.00061050016665831208, 0.00053080893121659756, 0.00049294059863314033, 0.00068757223198190331, 0.00057017389917746186, 0.00063482805853709579, 0.00061371136689558625, 0.00069354270817711949, 0.00062567443819716573, 0.00056267250329256058, 0.00063230091473087668, 0.00057849334552884102, 0.00075518625089898705, 0.00059944065287709236, 0.00082038558321073651, 0.00059971609152853489, 0.00056333531392738223, 0.0007496156613342464, 0.00063223222969099879, 0.0005471661570481956, 0.00059628183953464031, 0.00052266218699514866, 0.00052150740521028638, 0.00062167510623112321, 0.0009463630267418921, 0.00059918680926784873, 0.00051123194862157106, 0.00058094301493838429, 0.00060489313909783959, 0.00088677776511758566, 0.000559685577172786, 0.00055341381812468171, 0.00054025859571993351, 0.00065266137244179845, 0.00063405721448361874, 0.00067495537223294377, 0.00056166230933740735, 0.00078030209988355637, 0.00047907247790135443, 0.0004347849462646991, 0.00082189746899530292, 0.00065636035287752748, 0.00059752626111730933, 0.00052852946100756526, 0.0007139102672226727, 0.00054152403026819229, 0.00059812545077875257, 0.00064917060080915689, 0.0005756505997851491, 0.00074582704110071063, 0.00046732323244214058, 0.00058242439990863204, 0.00063621101435273886, 0.00077874073758721352, 0.00059493095614016056, 0.00061112258117645979, 0.00058267236454412341, 0.00060683570336550474, 0.00062711065402254462, 0.00067840400151908398, 0.00066369405249133706, 0.00060684693744406104, 0.0005315058515407145, 0.00073492922820150852, 0.00064508820651099086, 0.00072393694426864386, 0.0004506291588768363, 0.00054901238763704896, 0.00063119520200416446, 0.00050217611715197563, 0.00056299101561307907, 0.00057316996389999986, 0.0005957246758043766, 0.00055562908528372645, 0.00048787635751068592, 0.00064933043904602528, 0.00061448407359421253, 0.00058780686231330037, 0.00054883700795471668, 0.00052857591072097421, 0.00053712731460109353, 0.00056617130758240819, 0.00056392414262518287, 0.00054540199926123023, 0.00062956317560747266, 0.00053119548829272389, 0.00068545748945325613, 0.0007211251650005579, 0.00081286398926749825, 0.00042373119504190981, 0.00053273956291377544, 0.00043799247941933572, 0.00067789223976433277, 0.00068591308081522584, 0.00057581445435062051, 0.00057345954701304436, 0.00063264579512178898, 0.00075507239671424031, 0.00053148006554692984, 0.0005383105599321425, 0.00059494015295058489, 0.00084078498184680939, 0.00074226316064596176, 0.00043257905053906143, 0.00049935776041820645, 0.00058335310313850641, 0.00076138216536492109, 0.00051637791329994798, 0.0005594647373072803, 0.00075084262061864138, 0.00062394363339990377, 0.00070216745370998979, 0.00047974340850487351, 0.00063458539079874754, 0.00067733385367318988, 0.00050182774430140853, 0.00068955350434407592, 0.00053551542805507779, 0.00053882854990661144, 0.00058311631437391043, 0.00060713605489581823, 0.00056736194528639317, 0.00052941404283046722, 0.00070947979111224413, 0.00079449196346104145, 0.00052674562903121114, 0.0005476303631439805, 0.00066859566140919924, 0.00056171248434111476, 0.00060550478519871831, 0.00056576088536530733, 0.00043507767259143293, 0.0005682321498170495, 0.0003899477596860379, 0.0006170776323415339, 0.00062251661438494921, 0.00058604561490938067, 0.00063023623079061508, 0.00076632102718576789, 0.00075168750481680036, 0.00065797497518360615, 0.00056311953812837601, 0.00066692271502688527, 0.00056602794211357832, } }; const TfLiteAffineQuantization quant6 = { (TfLiteFloatArray*)&quant6_scale, (TfLiteIntArray*)&g0::quant5_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data7[112] = { 14344, -7439, -11423, 17029, -13506, -10574, -10148, 205, 4635, -6166, 398, 13400, 11086, 12470, -4965, 4078, 1841, -1837, 12549, -13428, 7818, -12066, -4689, 6422, 8533, 5554, -2747, 5439, 8339, 12487, 14893, -6976, -18914, 21993, -10117, 4677, 1062, 14114, -6556, 21186, -18104, 8429, -1284, 2958, -14021, 14183, 5929, -10506, 13919, -16913, 15948, 2332, 15773, 1999, -168, -7464, -1948, -3126, -6481, -1492, -4201, 7316, -9335, 8352, -14759, -1957, -9260, 13737, 8886, 5998, 19755, 785, -11417, 1251, 8556, 6255, -594, 10930, -2403, -11737, 9774, 13875, -10834, -16428, -4013, 17707, -3784, -23622, -10433, -8224, -10123, -8512, -15117, 6685, -10308, 8150, -4501, -22284, -2310, 4135, 11101, -2257, 11010, 3934, -7940, 13933, 11039, -2941, 4508, 9487, 11967, -2428, }; const TfArray<1, int> tensor_dimension7 = { 1, { 112 } }; const TfArray<112, float> quant7_scale = { 112, { 1.6331494407495484e-05, 2.2645013814326376e-05, 3.1129351555136964e-05, 1.9774548491113819e-05, 2.3848284399718978e-05, 1.4716047189722303e-05, 2.4543001927668229e-05, 3.0061688448768109e-05, 3.2638236007187515e-05, 1.6199894162127748e-05, 2.8011005269945599e-05, 2.1884345187572762e-05, 2.5415298296138644e-05, 2.2980382709647529e-05, 1.6635332940495573e-05, 2.3792865249561146e-05, 2.6773876015795395e-05, 2.24395735131111e-05, 2.035759280261118e-05, 2.6482101020519622e-05, 2.8825663321185857e-05, 2.8062437195330858e-05, 2.034255703620147e-05, 2.5549636120558716e-05, 2.2885671569383703e-05, 3.0337600037455559e-05, 2.4547187422285788e-05, 3.5242501326138154e-05, 2.0499586753430776e-05, 2.5576649932190776e-05, 2.1731184460804798e-05, 3.4619286452652887e-05, 2.201385359512642e-05, 1.7552418285049498e-05, 2.2945518139749765e-05, 2.0975554434699006e-05, 2.0928977392031811e-05, 1.5546098438790068e-05, 2.0424176909727976e-05, 1.7071839465643279e-05, 1.9335591787239537e-05, 3.6368197470437735e-05, 2.4152019250323065e-05, 2.0685400158981793e-05, 2.6112584237125702e-05, 2.8072339773643762e-05, 2.6788204195327125e-05, 2.5595920305931941e-05, 3.2201733120018616e-05, 1.8149219613405876e-05, 2.3422107915394008e-05, 3.0335118935909122e-05, 2.0767194655491039e-05, 2.0820867575821467e-05, 2.8402602765709162e-05, 3.617315087467432e-05, 3.172619835822843e-05, 3.0448183679254726e-05, 2.338779995625373e-05, 2.6774256184580736e-05, 2.5668299713288434e-05, 2.2328602426568978e-05, 2.3808090190868825e-05, 2.1253481463645585e-05, 1.7875830963021144e-05, 2.928407775470987e-05, 2.6582261853036471e-05, 3.0153911211527884e-05, 2.1261572328512557e-05, 2.2943280782783404e-05, 1.9091279682470486e-05, 1.9377777789486572e-05, 2.419713928247802e-05, 2.9422686566249467e-05, 2.0665796910179779e-05, 3.1403607863467187e-05, 1.9973997041233815e-05, 3.9130380173446611e-05, 2.1832678612554446e-05, 2.8276566808926873e-05, 2.9269322112668306e-05, 2.2038595488993451e-05, 3.8828664401080459e-05, 1.8592731066746637e-05, 3.0617356969742104e-05, 3.0745646654395387e-05, 3.1106268579605967e-05, 1.6141300875460729e-05, 2.5581492081983015e-05, 2.6261352104484104e-05, 2.4991411919472739e-05, 2.4601062250440009e-05, 1.9924056687159464e-05, 1.8837063180399127e-05, 1.6421054169768468e-05, 2.3881222659838386e-05, 1.9140939912176691e-05, 1.9089082343271002e-05, 3.2509986340301111e-05, 1.8661117792362347e-05, 1.8663753508008085e-05, 2.0984392904210836e-05, 2.9344260838115588e-05, 2.4770710297161713e-05, 3.418830965529196e-05, 2.6381843781564385e-05, 3.0838360544294119e-05, 3.3142983738798648e-05, 3.334296343382448e-05, 3.3133022952824831e-05, 1.5969775631674565e-05, 2.2612963221035898e-05, } }; const TfArray<112, int> quant7_zero = { 112, { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } }; const TfLiteAffineQuantization quant7 = { (TfLiteFloatArray*)&quant7_scale, (TfLiteIntArray*)&quant7_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data8[112*1*1*336] = { /* [0][0][][] */ -40,42,-16,-79,5,-29,-30,32,64,-31,28,-34,1,-32,-10,17,12,25,-26,15,-27,-83,10,7,-32,-8,64,18,39,48,28,-15,-22,54,-20,18,29,11,-93,-57,-34,-88,29,55,-6,20,-68,-25,-1,29,8,49,-36,21,33,13,-68,-67,-39,-16,-88,6,-30,-14,-22,-29,-23,-127,-51,-16,-47,6,-25,-62,33,-4,24,18,-17,61,46,-2,35,-9,37,-76,-9,20,44,32,-55,-12,14,-41,69,21,-9,-3,10,-34,-35,52,-36,25,16,43,-89,-124,-120,19,70,-53,-34,-11,-93,24,40,24,0,-36,3,-72,49,-31,-19,-76,14,-1,31,46,-18,44,-25,-14,-54,6,97,-24,-4,4,0,-70,-39,-42,-24,16,5,-71,116,35,44,-17,-86,25,-40,-20,27,34,-6,19,42,-84,-42,2,-87,50,33,-11,52,-22,-64,-10,-37,36,-35,7,-6,-82,-74,55,44,34,4,-70,76,-21,68,-3,-20,4,19,-27,-106,-71,-10,7,-88,-49,-28,-12,25,-37,12,14,50,-87,53,13,-2,1,-41,-91,-24,-6,-78,-64,16,42,-6,83,-9,-21,16,47,-21,-39,16,-40,17,-35,14,49,-12,-71,22,-14,32,36,-31,25,6,1,-41,-23,-72,38,-63,20,26,13,-13,-37,48,8,3,-13,-17,49,30,-56,83,31,-112,-59,9,67,29,29,-16,-8,70,-65,-26,-26,8,42,4,56,57,11,-16,-49,-12,-49,41,-34,20,18,-35,-8,9,-45,-61,-21,15,3,-65,-95,1,-57,12,14,-64,-44,31,2,-18,36,-16,67,-93,-75,-29,-28,-107,-41,67,30,55,24,-70,-25,-63,16,6,-21,23,33,49,-6,12,-43,76,-104,46,20, /* [1][0][][] */ 50,-9,-37,1,80,9,-57,7,4,52,97,-33,1,25,41,-3,21,45,0,-32,43,10,2,-5,6,32,29,31,36,-24,1,-28,27,30,-67,51,-12,-4,-9,7,-27,24,-18,-46,34,6,32,-21,39,-22,-38,11,-20,-43,-22,4,-18,-29,-24,74,22,-45,-19,13,0,50,17,32,13,-3,-17,46,80,23,-20,38,-4,6,-28,-16,-36,19,-20,46,12,28,14,-13,47,11,-28,26,70,9,-36,-11,22,44,41,-3,-30,23,43,-24,49,24,58,8,82,8,3,36,-27,28,24,18,11,16,-46,56,20,64,-41,18,53,8,5,-32,57,-44,35,-47,-1,56,-4,-48,-8,-10,127,60,-29,-4,-25,-4,65,6,-10,54,-3,-56,-35,14,30,-5,-15,-50,30,-41,5,22,19,52,38,-21,-5,1,32,-36,24,14,-45,67,40,19,58,65,23,12,-4,11,26,-12,-5,51,-51,30,-15,-15,2,-20,5,7,2,29,-69,11,-16,-20,-3,-29,19,44,-29,12,7,-30,17,-56,35,41,-23,63,24,-57,-4,-11,-26,23,39,63,-35,7,25,-35,107,4,7,11,36,55,17,-11,-32,-35,25,7,-35,-7,-1,14,31,-22,-14,-14,5,7,-4,-56,-1,-24,-43,-28,24,-13,9,-37,37,5,-34,-6,14,35,-16,-12,-26,58,26,-13,-34,36,61,-35,27,27,-5,-50,-5,15,22,51,30,12,-45,-5,24,25,-3,-11,-10,-67,18,-13,16,-19,-44,45,-19,120,-4,-28,-13,61,56,5,33,35,-9,-12,-11,-7,-38,8,43,-43,119,-3,-7,-17,3,23,0,33,-10,-11,-18,-20,-39,60,-7,-21,12,-36,-23,89,-17,-41, /* [2][0][][] */ 36,0,-49,21,68,-5,-21,10,-13,-12,69,29,0,8,12,49,8,57,11,-1,-6,-17,-3,-22,38,-19,-5,-40,36,-2,-3,13,31,41,-29,-34,13,56,11,-17,9,64,1,-39,-20,20,69,20,2,17,12,14,7,20,-19,-6,0,-2,-2,93,49,-9,0,1,37,3,6,48,16,10,-3,9,21,23,16,78,29,30,29,-15,18,-23,-16,57,-13,-25,21,-20,-8,6,-1,-47,98,36,-8,0,23,33,-28,3,-14,22,-48,40,-3,5,42,-2,76,-9,7,14,-39,-28,3,-9,-11,-1,9,15,-2,38,6,11,29,13,-8,7,1,48,-11,-34,10,-10,-1,-9,-17,24,119,-3,-4,-23,-33,10,-12,-8,-29,78,25,34,0,11,-21,29,-13,-20,18,16,-13,2,5,63,9,-14,-70,9,2,-21,17,-22,-29,-30,-3,-7,-2,25,8,-1,-10,24,5,-6,-26,114,30,14,27,8,29,-28,-25,14,-5,-12,-19,19,62,6,-15,35,-49,-38,2,6,-10,23,-2,8,39,30,44,-25,30,-13,-32,-38,21,2,-2,18,11,10,4,-8,64,-15,-27,0,-7,15,1,55,-15,0,1,-9,16,18,29,28,20,26,8,-5,33,-27,84,3,-28,-24,43,-11,30,-35,-27,-3,5,16,-20,13,6,-4,37,-25,12,-5,-38,14,30,42,18,-48,14,4,-34,-37,16,-16,47,-2,17,28,-8,12,12,-8,-13,17,21,-5,-2,-33,29,-17,37,31,18,111,-37,-11,10,-9,-29,3,13,42,23,40,-4,37,-14,-16,37,4,127,21,-17,-25,8,-12,-57,16,35,13,26,10,12,91,-21,16,-10,-29,13,55,12,-22, /* [3][0][][] */ -41,-17,56,22,-90,31,44,75,-26,20,-24,33,-7,93,-66,-66,-12,21,27,6,29,-18,-47,-23,-64,21,4,14,-45,20,7,-48,-107,28,39,-16,68,44,8,54,-9,-127,-28,-19,29,-54,-68,29,1,31,-37,-20,-46,-27,-29,28,12,-86,5,-40,-46,7,18,3,-52,6,6,-84,6,-67,-46,-13,41,-3,92,-44,-55,19,-5,-33,-7,15,31,-30,-6,-65,29,-26,-35,9,1,8,-57,48,17,-96,-33,-16,3,-60,43,-34,-59,-2,10,-31,32,16,-105,73,-12,6,-14,-7,-18,8,-49,27,4,-51,-27,-19,-5,9,-38,13,-42,-72,2,7,-7,71,45,-40,3,31,-13,51,-46,-8,-18,-49,39,10,-45,-44,20,-111,1,2,-96,-23,5,21,-67,-45,-10,77,82,47,-32,-60,-10,-36,2,17,-37,48,-14,24,9,9,-45,9,66,-26,-70,-7,-29,17,3,43,-14,-62,-45,-1,-62,-27,-57,20,-17,-75,14,-31,2,20,-93,-15,-47,-30,-23,10,23,35,-59,53,64,-28,55,32,-98,-81,-27,-12,-30,-12,-3,47,26,13,-56,-22,39,9,-84,-17,12,35,-22,-30,4,-24,-15,40,-75,-32,2,2,12,-14,-28,52,19,-53,0,69,-53,36,62,-16,-36,0,-33,-39,-59,28,4,15,24,-61,11,-4,-97,1,36,21,70,-50,-16,-7,-7,-32,-44,16,-22,48,-86,25,5,15,27,39,-52,-20,12,3,-59,-20,29,6,-14,22,-16,16,10,-8,7,-66,8,-45,-7,-52,31,-7,-33,22,-45,-31,18,-32,1,37,-55,-38,-86,47,9,-65,-11,-11,7,36,-60,-4,37,-9,58,-15,-92,-57,53,-34,-10,-90,-37,-13, /* [4][0][][] */ -8,-26,14,1,9,-1,13,-16,-7,13,32,34,30,2,18,-15,-13,-8,16,9,-13,17,-18,48,35,-1,9,-25,-1,8,-26,-24,39,33,16,-12,17,-31,3,-7,0,88,51,4,14,-21,62,-7,2,11,44,5,0,18,16,4,-35,-7,18,39,-10,-13,-33,17,32,8,-4,79,19,-43,35,15,37,17,3,67,-15,20,12,52,32,15,-4,40,-2,31,-24,50,46,40,25,-36,76,-17,32,5,-16,7,33,-10,21,-28,-16,-1,-7,6,34,-25,17,-12,-7,-13,3,24,42,19,6,23,32,-54,18,39,31,22,5,12,23,-19,-41,43,-2,55,-28,-14,-3,61,0,22,54,-12,19,-36,10,-23,28,38,-20,98,-14,13,-24,-29,20,-1,-9,-7,25,0,39,-41,5,88,-30,38,-3,-11,19,21,8,16,-32,27,-27,18,49,-35,-3,-11,-40,8,-34,-18,31,73,17,4,18,22,-37,-10,-43,33,-3,22,-1,12,127,-26,-1,-4,17,14,-12,34,-12,-21,-23,40,20,20,81,-26,23,-11,-12,-14,32,-28,5,-25,-12,-7,12,-21,10,4,-13,-14,40,34,-15,14,-21,15,-24,-11,5,17,57,-15,-15,22,-36,28,-31,-10,117,38,-4,6,16,-3,11,31,-8,16,-24,-24,-19,-27,-10,-29,96,-12,-36,10,3,15,38,28,32,16,0,-26,4,-26,-22,-33,39,-31,-15,11,-29,5,16,-4,-20,-2,-11,-21,14,12,101,5,-41,12,50,7,-9,3,-30,-24,1,-27,-6,50,37,15,-26,-7,8,-24,70,-54,26,-1,29,-25,-8,-4,-24,-1,111,3,-9,37,-3,65,36,19,-34,13,-15,18,-23,23, /* [5][0][][] */ 20,-4,-72,-47,85,-61,-7,-92,23,-19,68,56,-58,21,-33,-21,43,53,-75,16,11,-52,-5,33,-49,18,-66,-2,-61,-6,-12,-76,-16,25,43,-48,-45,1,82,-19,47,69,36,-12,-34,10,85,32,-53,8,6,22,-70,29,63,17,10,29,30,62,-37,-7,-60,25,54,-2,-17,97,64,68,47,-56,-24,53,-20,42,38,-21,-11,65,72,-42,30,43,-42,44,-62,54,-27,-15,-1,74,21,47,53,-22,56,-35,-48,26,17,34,31,51,-59,-34,22,41,127,-17,-13,44,40,93,9,-74,-32,11,12,-91,-64,39,10,-15,52,39,32,-29,-4,80,-34,-49,25,12,-13,-21,-92,27,61,-16,-20,42,16,35,43,-14,-12,107,-28,-15,-46,-6,34,-68,60,19,18,79,-21,49,21,54,-40,28,6,-30,40,-25,12,-29,31,-42,-29,-105,-68,29,64,-49,-29,1,-50,13,-4,116,-44,87,57,9,-39,-121,-28,-56,63,-31,4,-8,101,-3,47,-57,8,5,60,33,84,13,-40,60,-18,4,96,103,-19,-11,21,35,-52,83,52,-5,-19,-8,40,11,121,19,-23,52,3,67,62,-62,-68,-69,15,0,-47,-57,41,91,1,-61,-85,-3,16,-16,116,37,1,44,60,-76,58,-52,-3,28,20,8,-77,-10,-33,-76,30,44,-4,-27,28,61,24,-47,18,4,-17,24,-77,16,-46,21,-38,-25,91,66,30,20,-12,101,-17,12,-6,7,54,-2,11,32,9,-39,-2,121,3,29,-35,-6,19,-13,19,-45,87,-10,-83,71,34,97,15,-43,98,14,36,2,-33,53,-28,-84,96,-57,0,-13,-13,21,121,-46,-23,49,-56,20,-65,39, /* [6][0][][] */ 29,3,8,6,-39,-48,18,28,7,-18,-19,-6,0,12,10,-37,-29,4,50,-43,-4,3,-72,4,-4,-16,-39,-17,-11,-54,28,-4,19,31,4,1,32,19,61,-33,10,127,4,8,14,16,76,-9,-2,-43,0,14,-32,-43,28,-6,-19,-9,-1,-14,-33,-22,-25,-9,17,46,2,116,51,7,30,-31,61,22,-37,43,16,26,0,-7,24,30,29,69,-36,-26,35,30,-19,-8,-49,57,44,-3,-39,-19,-3,-44,27,-6,9,7,-19,-14,24,-26,25,4,-29,-5,20,24,-19,35,5,69,11,-63,-41,5,12,64,-69,33,-26,31,36,-16,-40,-55,-2,44,28,39,60,1,63,19,4,54,-27,10,-10,18,52,36,21,60,-12,-25,8,3,34,-1,-5,47,27,3,42,-15,-19,55,26,33,7,-18,23,-12,12,25,-30,5,-19,45,6,30,31,-28,0,-14,-39,-16,24,80,-13,-5,-8,10,-34,47,-9,-6,29,-64,15,-1,100,20,4,-20,-36,-11,-44,-26,4,-13,3,4,-42,-12,97,19,56,2,-32,-15,8,37,-10,38,30,-30,23,-1,-3,-25,-5,-40,-8,-43,0,-34,52,-13,40,10,-22,-39,-22,-17,-3,36,64,-34,24,6,97,-41,-46,-35,-30,-8,74,11,-2,-15,7,-29,20,13,-6,14,79,5,7,62,-35,29,-46,38,45,8,27,-18,48,5,0,-7,21,56,-35,15,-37,-12,10,-24,4,0,-8,36,-10,23,99,-2,30,43,-36,20,29,-19,45,8,-7,-21,10,30,29,30,-17,25,-29,39,33,-13,-3,-27,-24,-5,-5,25,-26,-15,103,41,61,-5,33,-6,-6,-7,18,-5,-16,19,-24,18, /* [7][0][][] */ 59,-28,8,3,90,-17,-23,-4,-7,17,42,6,-46,-9,22,16,-32,-18,-1,12,28,22,-25,17,-10,-9,-38,-20,-34,36,-21,18,26,-1,-13,0,9,28,5,40,0,-17,38,-11,-1,31,39,-41,-26,3,-7,-25,-18,22,-31,11,0,-38,40,96,24,-38,13,-5,-3,35,46,-9,-14,-11,33,61,2,18,13,7,-12,0,-7,-35,-17,7,-6,-10,-2,47,7,13,11,-14,-31,-27,83,-10,-22,32,-22,18,-3,15,-27,11,50,-18,-21,-9,-19,-21,84,-45,-29,-16,-24,7,56,13,-7,28,-3,-36,0,56,37,-34,57,-29,3,62,14,15,-21,5,-26,18,36,9,-47,-26,68,1,4,-38,26,-13,27,-14,-57,12,-28,1,5,27,-2,12,30,15,23,-8,5,0,-56,-2,27,33,-48,-28,3,7,-15,-6,4,33,-2,-6,-44,-28,-25,-2,-15,16,-9,-31,10,44,70,5,-7,35,16,-1,22,36,35,4,23,25,-4,11,19,-43,-11,-6,38,-8,15,11,-19,13,36,-33,8,28,-16,-2,27,-10,9,-15,14,-4,24,24,-28,-33,89,-4,30,-23,-37,-5,-36,-9,6,-17,28,12,-33,-33,-13,15,-9,-3,-18,3,18,29,-21,-29,-11,-13,-3,-2,-20,-48,15,-6,-32,4,46,-18,-10,37,-15,-24,18,21,5,-19,21,32,-18,31,-23,-5,17,26,-38,18,-13,50,-1,16,44,-18,-30,13,23,-38,28,-55,-12,7,-5,-3,-22,-30,43,127,39,7,-22,-7,2,-16,-43,-37,35,-28,6,-4,-2,0,73,-21,110,19,9,10,25,-40,7,12,-26,49,-9,10,23,47,29,-17,-9,-12,-48,64,-38,-47, /* [8][0][][] */ -50,-6,35,-3,-109,4,-11,-18,-27,-6,-127,12,5,1,20,4,-50,-2,48,15,-1,1,2,-17,-26,-32,0,6,3,3,4,-15,-41,-2,24,9,12,1,-33,-27,-8,-23,-15,8,18,-27,-68,13,-35,1,8,24,-13,-5,-13,-10,-42,-3,14,-108,5,-9,-3,-15,7,-4,-25,-9,11,14,-16,31,2,-67,14,-29,-27,6,-26,-47,7,-12,21,3,26,23,11,-42,-3,13,5,-25,-83,-5,9,-17,-22,-25,1,-25,16,30,23,-13,-21,3,-27,16,-75,1,-4,-22,-20,29,-2,19,6,-17,-28,-14,-27,-56,26,28,-59,25,24,35,-3,-34,-4,-34,-15,-7,-24,6,2,-12,-87,1,-25,-2,-32,15,-12,12,12,-6,52,16,35,23,-29,17,13,18,-6,-15,23,5,1,-29,20,-3,-13,-22,-21,21,6,-5,1,34,28,-26,-2,1,28,-11,-2,3,7,-25,-5,-86,-11,8,-19,-25,21,-11,-36,-21,0,21,15,18,-42,-1,-3,24,-22,27,-19,1,2,20,40,0,3,-6,6,-17,23,-43,3,-35,14,20,-26,22,-16,13,3,-32,-104,28,0,-3,23,-8,13,-17,4,9,-37,7,1,26,7,-19,18,14,-8,-25,-15,9,-23,9,-19,-12,-8,-3,5,2,-7,25,12,-19,0,-30,-17,0,11,-24,-16,-13,2,30,11,2,15,26,-25,-16,22,6,-45,29,-25,-14,0,-10,16,13,4,35,16,-23,18,7,23,17,-34,6,6,35,-4,-95,4,30,31,36,-20,-13,-3,43,-8,0,26,16,13,5,-57,-3,-85,8,6,-2,9,-40,4,26,-47,-25,19,-1,15,-87,-20,10,2,-31,8,20,21,-7, /* [9][0][][] */ 41,-59,43,-53,-26,19,31,-50,49,37,56,-36,-72,-9,-33,-4,12,69,101,-82,32,7,-60,68,-41,-13,13,-29,-66,-24,-31,16,-29,97,-51,32,35,-70,57,-58,-3,109,20,-26,-28,-19,98,-84,31,-31,-99,-9,49,-88,-27,-63,-75,9,76,55,-20,-55,-4,-1,-11,16,-38,102,-30,-29,44,62,-9,50,41,114,-26,-69,1,23,-107,6,72,90,63,18,35,38,57,-16,9,18,48,35,36,-38,32,-19,-4,-59,17,40,-8,-31,9,-27,82,58,27,-63,31,-9,47,-18,81,-10,-16,79,0,-71,21,-12,82,52,55,20,2,-35,-57,-16,-48,83,-34,-61,38,-5,26,-4,112,0,-11,6,-47,31,44,-19,-58,50,-26,-21,19,33,27,-38,-50,34,-10,23,3,35,-65,39,35,3,32,-107,38,2,11,-13,37,9,17,15,32,11,-27,16,11,19,-27,-23,-21,127,32,-13,-1,34,83,33,-35,-36,57,-82,-36,61,108,-36,55,-68,-62,44,2,29,42,-15,-26,25,-37,-8,119,38,7,-31,36,49,-21,-39,-62,-36,-45,-31,-29,-31,126,42,13,13,-14,-13,73,-29,-8,13,75,6,61,-72,-109,-45,-59,-23,-50,54,25,-12,124,-36,-35,26,-3,3,-57,14,-49,51,-38,24,18,33,50,43,97,30,-8,11,-6,-2,-25,-18,65,10,-13,-20,-1,-19,75,-42,-39,-28,-3,-47,-17,9,36,38,-43,22,-25,19,24,41,53,53,-14,45,-16,64,-95,43,37,57,-18,33,-29,-15,113,35,-2,45,18,-9,78,3,97,33,16,78,-28,12,16,-39,101,84,23,33,82,86,-24,32,1,10,-38,78,-9,14, /* [10][0][][] */ -13,28,14,-5,11,-37,-2,2,-31,-68,-66,-30,-25,-8,0,-12,-5,-6,-12,22,35,66,20,12,-36,-21,15,25,8,-6,-3,-31,-43,-57,-37,14,-38,39,-24,-8,0,109,16,-27,10,-10,65,-60,51,1,-31,34,-34,-19,7,24,4,-22,-50,19,-5,13,38,19,-8,-61,0,127,-8,-42,54,-42,42,-26,0,25,20,-30,-13,20,-6,-7,-21,74,36,6,1,-10,17,11,-7,-19,44,-10,2,22,-17,-20,-21,-3,-11,-20,6,-16,18,7,4,69,-19,38,-25,1,31,-4,46,15,6,14,-13,-33,32,68,-8,29,-20,-22,-6,5,5,18,31,11,50,11,64,10,-21,-23,-9,21,3,10,33,-15,24,30,-23,50,-23,18,-43,-39,-13,10,13,19,21,24,33,-17,-16,98,42,56,-41,-10,11,13,27,-23,-12,-30,45,8,5,-5,12,8,-12,16,11,-8,-40,53,-7,-56,-24,10,-10,-5,46,-6,-25,38,10,24,116,-30,14,-19,7,-21,-26,-9,30,-24,6,22,12,34,88,29,23,-8,-9,4,-10,2,-35,-21,13,37,1,-14,16,-35,15,10,-6,22,17,40,-30,-29,44,8,-24,16,-67,3,-29,-2,37,24,27,-10,88,-27,-4,33,38,-27,9,32,12,51,43,2,-6,9,-66,31,123,9,13,-48,-9,-55,16,-21,73,-25,-34,22,10,-30,-9,2,50,-7,-36,28,18,14,-21,22,-20,-4,-14,42,32,-14,93,47,-53,39,-19,-10,50,-15,1,-28,-19,8,-8,-20,44,-6,-34,-19,-10,1,6,-56,3,9,-92,-36,-4,-2,19,19,72,-4,-44,51,43,-15,35,-3,-27,-20,-55,0,13,-4, /* [11][0][][] */ -59,5,20,-21,55,-46,-39,41,9,12,28,-4,-4,21,-10,4,-23,-14,-12,-31,-35,30,-54,-14,-39,-2,12,-18,-25,35,0,24,27,-11,45,10,-38,33,-93,7,27,-77,26,-9,44,-9,-106,-15,26,-4,6,-52,6,14,8,25,6,-31,-7,34,-3,-10,14,-42,-19,-42,6,-114,43,-10,-83,-13,32,-14,17,-52,42,2,20,24,50,-9,21,-62,33,54,-24,-2,48,22,-46,-29,-42,-17,-46,-14,0,-9,10,-23,-29,52,12,-8,-17,-44,6,28,63,-22,-18,13,-48,-42,-23,8,32,9,-34,3,21,28,-1,-27,-6,-25,-4,-29,9,-28,1,34,23,25,-38,-20,-15,34,7,10,44,22,-2,6,-24,-16,3,-78,-17,-27,-1,50,28,-30,12,-45,22,-45,-5,-25,29,-71,-20,31,33,-18,5,-21,-42,-1,23,23,-33,38,8,-31,19,-27,-2,-8,13,22,-54,-35,8,-26,18,-58,25,14,5,-13,-10,48,-22,-10,-127,1,12,9,46,12,8,19,13,-12,11,37,-22,0,-119,-15,19,-18,-2,-29,-48,-69,-2,-27,15,-29,-74,-7,9,-44,1,17,15,-29,32,-20,27,-36,-2,-10,3,2,-13,0,-8,-39,17,-12,-10,-23,-121,-35,-44,-59,-34,-9,-26,-3,25,-50,3,-34,33,-20,8,-33,-99,-45,-71,13,-48,-38,30,20,-1,-15,-46,41,-1,-2,-34,-37,32,-20,-24,-1,37,14,12,-12,-16,-33,19,-1,17,34,-77,-8,4,-13,29,26,36,-28,-3,16,-3,7,31,-10,-42,-3,5,28,-17,-18,-24,20,35,36,-9,6,31,77,16,-8,-114,39,-32,-41,16,3,-20,-31,-14,5,32,-48,-59,4, /* [12][0][][] */ -44,22,52,8,-106,12,8,12,44,-22,-78,9,-18,-8,-28,-7,19,32,-40,-9,5,-6,55,-1,-8,15,12,26,-9,3,27,-31,-33,15,-25,-4,-72,26,15,-19,7,24,22,10,19,15,-23,-23,-48,-13,-1,7,-27,3,-36,4,21,28,-6,-92,-43,-39,3,23,-24,-7,-39,19,-14,-14,62,25,20,-61,8,-23,-11,-18,-36,-18,-4,14,-8,-13,23,21,-42,-13,67,33,-8,-10,-49,3,-11,-13,-27,-11,-13,25,-29,26,-7,0,8,-36,-6,4,-76,-1,-3,-22,25,-1,-22,2,4,-25,29,5,-46,-18,1,-23,-62,17,-8,-6,-8,-4,-11,2,24,-28,-4,-23,40,-6,-95,9,10,-26,6,14,-30,45,-27,0,31,21,16,-1,-28,14,13,27,-10,11,-10,-9,-25,-1,-15,20,6,-22,-8,24,8,-6,8,1,16,22,12,-16,39,-38,-19,31,3,-32,30,-50,-7,-15,22,1,-8,-18,-23,-17,13,-25,5,-35,43,7,-4,-3,25,-22,18,-4,-5,17,-6,-14,-23,-3,45,-71,29,4,3,20,-24,41,-9,-10,14,3,-12,-10,-127,-34,-24,-38,-37,31,7,8,27,4,-25,-48,-17,-28,20,12,-21,-51,-26,-18,-38,17,46,-3,0,2,22,17,7,5,-34,-6,-51,15,-11,20,-22,26,0,26,-21,31,2,13,-41,-24,-7,21,1,-17,33,-30,-2,-64,-20,-14,11,-42,3,-17,53,-6,-31,-24,54,-4,7,-30,4,-14,1,52,-6,-124,34,-11,5,13,7,-42,30,-25,5,5,21,35,-30,-16,-22,15,-82,20,1,26,-16,9,-22,-15,50,-4,-3,34,-26,-102,-16,11,-15,-58,13,-7,12,-1, /* [13][0][][] */ -71,-7,6,-15,-77,-40,-35,4,10,11,-71,16,-19,45,18,64,-44,-5,45,-6,9,27,-39,-26,1,45,-31,-25,-18,25,20,-2,-31,49,-10,51,-28,-27,-22,-1,-15,-105,-8,-28,-61,4,-80,14,19,-4,-29,5,-19,9,34,-38,36,-34,28,-67,7,-27,26,-48,22,13,-14,-94,-35,25,32,-48,-40,-37,21,-47,-16,-33,14,12,36,2,-16,-75,-58,8,-52,-23,-29,-10,-28,0,-76,10,-39,30,-44,-33,-40,0,-23,22,-4,27,-50,63,-47,12,-63,28,13,-31,-9,12,-3,-55,4,-3,45,-32,13,-41,-19,-26,-73,28,-2,-44,-33,30,-4,37,1,44,-28,-6,27,17,-70,11,-7,65,10,7,20,18,-59,-40,-77,56,-6,30,-62,-61,-45,-13,40,-5,-1,-1,37,-13,-6,-69,11,35,3,8,-45,-21,-22,24,22,-61,62,-8,18,-55,-33,40,31,-8,-44,-76,48,30,19,-25,-14,8,-6,-8,19,1,-4,50,-58,-14,-22,-4,14,-46,33,8,-16,11,-57,2,-13,-10,-98,-66,-27,-10,54,26,-1,47,24,-9,-40,-7,-37,-53,-82,26,26,41,61,26,1,-42,-3,16,-10,-23,-36,-15,-18,7,9,-22,-31,67,-51,14,-22,29,-3,29,-40,-2,-27,-4,19,-1,26,34,-52,-9,23,-15,-99,-9,43,9,4,-6,-6,-56,-6,47,-4,-43,-14,-55,1,-40,-7,19,-3,49,46,-32,-15,49,-25,4,-34,8,-17,53,-68,-1,-61,-36,31,-127,-32,-1,18,30,12,-17,36,12,-92,-26,36,35,43,64,-73,-25,-123,-28,-33,-18,21,9,-14,-15,-85,17,-36,-18,-25,-73,41,-20,16,68,-9,21,10,-22, /* [14][0][][] */ 79,-59,-39,45,-48,-51,-21,36,-49,12,-106,48,-26,-55,112,25,-13,-4,-17,-34,-11,15,-37,-39,-45,-41,27,-22,26,19,60,12,-49,41,-49,16,40,-34,40,104,20,109,-22,67,77,24,98,-21,28,-2,-16,-39,-48,-76,110,-58,60,39,13,-37,-55,-39,-32,-7,-8,28,40,115,33,-7,36,47,39,-22,-39,91,34,27,-4,-103,-12,-33,2,85,72,-2,-41,-57,57,-22,-57,41,59,-28,49,-51,38,17,-28,-12,29,22,30,-48,-37,24,41,-79,-80,94,28,-52,-10,-15,-76,-7,11,20,-40,33,33,48,8,-19,17,70,29,27,-3,-5,-57,5,-9,28,75,-41,34,54,10,-28,22,3,-35,-28,-2,66,-20,67,71,-50,-37,-33,-34,-46,-42,29,13,-63,-35,-36,-4,82,-11,55,-8,58,5,30,21,21,-31,-51,40,57,-7,54,17,34,48,-4,42,-75,44,10,-23,-37,-35,48,16,38,14,-25,-120,24,20,35,84,-83,37,63,-2,-59,2,7,-33,-37,27,7,-82,-68,110,-21,25,-87,82,-81,36,-52,-33,-11,104,33,-5,14,-46,-9,58,35,15,-6,31,53,-51,46,-24,9,6,-89,-66,-55,24,26,-15,83,87,-66,66,-39,-49,70,-27,33,-25,-7,-69,34,55,-25,-113,15,43,-55,119,39,-50,60,30,-37,-10,-57,-15,14,-16,12,-27,69,-9,21,26,63,-60,-34,39,64,1,68,-44,26,-48,-31,27,70,34,-56,12,3,-48,-28,19,-22,0,34,-24,5,50,69,38,65,-20,-55,31,-23,68,-71,35,100,-10,-40,-119,44,7,-63,40,45,2,31,9,-40,-25,-30,127,-8,-76,85,-29,-11, /* [15][0][][] */ -31,19,11,-19,-94,-33,-8,38,13,7,-127,-35,-1,33,-17,5,-33,-17,20,25,-29,22,5,10,11,10,-2,51,-8,29,-27,-5,-59,1,36,24,26,9,56,-29,11,12,-19,-30,31,9,-22,-24,41,21,3,-35,50,11,-3,-34,0,35,22,-67,27,-27,-3,31,7,-18,1,13,-6,31,33,18,-22,-63,-7,31,-14,45,26,-2,-36,-31,-30,-16,20,-33,19,21,6,-23,-1,26,-64,-35,31,28,-49,-28,9,5,-21,1,-14,-24,-28,10,6,11,-88,-26,48,-7,-18,30,-21,25,2,54,-20,-1,-13,-47,15,1,-93,-36,-32,11,5,14,-11,-7,-56,-26,-29,-19,-7,16,-108,19,20,-3,7,11,-12,-3,11,-24,-11,-36,29,-27,-21,24,-21,-13,-34,5,-26,13,-42,20,27,-11,12,14,4,-22,-40,34,-14,-5,-40,-12,-51,-8,-3,-52,6,-32,8,13,-56,-40,5,-29,-17,-15,10,10,2,-21,-4,-20,-81,-4,-19,17,47,27,6,4,25,23,-24,-8,25,-25,15,15,-13,-51,-1,19,-9,7,-12,28,21,-21,15,11,8,-16,-79,9,31,-18,26,12,-12,41,9,-20,15,-48,1,-40,-9,2,25,-3,-31,1,59,-12,40,22,-2,18,-8,18,24,-29,5,-1,9,-39,-12,-8,-6,13,37,33,-5,21,54,-22,29,-19,-27,31,3,51,27,29,30,-37,21,24,-45,-14,-5,-1,-33,-23,-27,8,39,12,8,-12,15,19,1,40,8,-109,-32,39,-10,-14,-14,45,1,50,13,-1,-26,6,7,6,-16,7,-114,43,-63,5,-19,-8,-7,-48,42,22,8,24,-29,-104,-38,10,-18,-39,16,26,19,37, /* [16][0][][] */ -27,20,16,29,-87,18,53,-18,-9,12,-68,21,-1,-2,33,-13,-5,38,26,33,5,-47,14,30,7,-22,-12,-31,-40,0,-42,70,-43,-5,-14,7,21,-11,63,2,15,84,16,3,-43,-20,31,-17,38,-27,-27,-25,-32,2,-30,-12,-36,-24,-18,-86,-5,1,-36,1,-15,46,-6,88,4,-27,-13,-55,46,-15,9,62,43,26,8,-29,12,-25,-3,34,17,28,-7,6,-28,5,23,-17,-35,35,3,-14,40,12,-7,-28,-31,6,-1,-17,-53,13,7,16,-49,-12,16,-11,36,31,-2,-17,33,-17,-4,-2,12,-8,-33,-46,-59,17,21,-46,19,-26,-3,23,-26,36,18,40,7,8,-127,-22,-9,46,14,3,39,42,6,38,48,37,-50,-37,5,-33,-14,43,-2,-30,8,20,12,61,-16,10,-15,34,-5,13,-6,18,16,7,13,-16,2,7,-52,8,-7,-23,-33,-11,9,-19,44,-32,13,-7,-36,-20,-13,-11,31,15,-42,20,58,-11,12,-5,-8,-7,26,8,2,-19,-32,29,-6,36,101,-8,26,13,27,-30,-14,8,-12,-9,6,-12,-12,-10,-93,-9,-13,13,4,-24,6,-1,18,-35,9,17,-17,-23,0,27,-20,-13,5,17,-11,-46,94,-11,1,58,-20,12,-28,47,4,44,2,-12,-21,2,18,-25,69,2,-13,-37,-14,-6,-13,-37,-14,26,-8,-21,10,-29,22,13,-23,-14,-36,-26,-2,29,38,22,41,28,17,-12,-18,-16,81,-6,4,16,-41,-110,3,14,-1,1,-4,32,-38,21,90,-21,-19,-2,-39,-31,16,11,-107,20,-20,8,5,29,26,26,91,-25,0,-2,-29,-70,-28,-35,-19,7,21,-16,-16,-1, /* [17][0][][] */ 61,17,-52,-27,26,66,-28,-39,35,32,52,-19,-13,28,-31,-34,-38,-54,2,-32,-10,30,-35,4,-3,-8,41,-44,-9,32,-39,-26,47,59,6,48,35,-20,-19,66,16,-38,-22,50,-29,-101,9,-36,35,21,-43,-45,-21,-39,-7,-37,-48,-47,-3,103,21,-9,-34,0,14,40,5,-43,-25,-43,-27,11,-55,50,-22,36,-21,18,-9,-39,23,19,5,-52,12,18,1,-23,-13,20,-6,40,13,11,50,-19,-27,40,10,3,2,-30,-5,8,6,20,71,41,73,-12,30,10,-5,-14,36,38,-49,-25,-34,-39,-53,-37,41,-4,103,-40,8,-3,-27,45,38,45,11,-55,-25,33,-23,19,89,30,-5,10,59,-5,-2,-60,32,42,34,10,22,9,-23,-38,-27,40,-8,17,-31,-29,-10,-43,12,24,46,51,7,-78,23,-22,43,17,-25,-21,-10,24,82,5,-48,43,-46,-33,-74,53,43,49,-7,2,73,-24,-50,21,-12,21,-22,6,-44,65,42,7,-29,-34,12,17,6,0,7,16,-17,7,-43,21,-58,33,2,26,-21,-3,-56,-69,57,-21,27,26,127,27,-39,-33,2,30,21,26,-14,7,-3,26,23,-16,-28,41,9,-1,16,-57,60,-65,-10,11,20,-37,1,5,8,-44,-39,-29,3,5,13,-20,-26,6,-48,36,-58,-37,69,21,25,6,18,-38,-16,48,21,10,-30,12,-3,-59,-13,-42,2,1,56,-45,-3,-29,1,21,14,50,-54,-12,-11,15,-44,60,28,-31,34,9,-59,11,11,0,24,30,-15,-38,-39,-6,41,-42,97,-56,31,-46,-8,19,32,26,-55,13,31,1,-49,79,16,-6,2,18,-14,20,-48,-35, /* [18][0][][] */ -52,3,-1,-73,-8,18,58,69,40,-39,-30,38,-20,56,-9,-18,-9,-20,-23,23,-17,-13,-2,50,-13,-39,-38,-19,28,33,39,-10,-10,0,-59,23,-40,-42,-35,32,29,-127,44,20,17,-30,-89,59,11,15,34,-11,-35,-1,-9,-5,-19,-20,-46,-55,44,-14,-34,17,9,6,-40,-102,26,-28,-26,4,5,18,-4,-77,22,43,-10,17,-26,35,-17,-61,57,-50,38,6,-30,36,-25,-11,-83,54,47,-30,13,-3,-1,13,-10,30,-33,16,22,-43,-40,-61,-49,-12,-49,-57,9,-25,-22,48,24,23,50,-55,-3,-87,10,-21,-57,-16,-13,-37,29,-43,13,12,-3,-2,41,43,51,-8,-26,-36,20,-70,33,1,48,-40,9,-82,23,-40,5,-33,-7,1,8,9,35,41,40,-53,-42,-92,30,38,38,-37,-33,11,-82,27,45,16,-49,42,17,-25,-5,-34,4,-34,37,11,-41,-100,19,23,32,-38,3,15,61,-32,22,40,-27,-65,-72,42,-15,26,-17,-72,-12,30,-16,7,3,11,69,1,-74,16,-20,-26,44,9,22,7,45,-35,20,-10,-22,19,-62,-49,-47,-25,-3,5,-4,-31,-42,-11,0,-39,-51,-67,-17,-5,-13,0,15,-10,21,46,-91,32,10,10,13,3,-25,-13,-8,36,6,-27,-49,-18,34,0,-65,48,-25,-24,-22,24,6,38,12,-12,41,14,-18,-24,-42,7,5,-25,-23,43,-37,55,-22,-12,-10,-51,-22,-7,-7,-23,-72,-29,-27,36,-49,-103,-15,15,43,-27,-31,15,36,-12,-65,57,-47,-13,22,-50,27,22,-63,-67,-42,-35,14,2,-45,-34,-93,-22,1,3,-38,-32,-94,7,8,48,-26,-82,-31,28, /* [19][0][][] */ 36,-21,1,31,15,-30,-3,9,-1,-3,36,14,29,13,-22,-55,13,11,10,0,-42,-9,-14,-33,-14,31,-8,-9,7,31,-10,-1,-27,42,7,-39,47,-22,29,-12,-34,127,-23,49,-8,-19,92,18,24,-29,5,0,26,1,31,-37,-12,-16,21,-9,31,-3,-1,3,3,-30,13,111,25,29,44,-4,12,12,17,75,-8,57,-12,-8,-33,-24,10,81,46,-19,17,13,-37,-2,61,21,37,28,-5,-24,1,22,30,-18,33,-33,5,18,57,-5,2,-26,3,-2,-14,38,19,-1,0,3,66,25,-29,-44,-13,-14,58,33,-8,-25,29,1,7,-22,10,24,14,15,-13,10,31,-17,-7,-11,-9,-47,56,-11,-13,12,-17,42,-16,10,7,37,34,48,34,-17,14,12,22,25,17,55,-7,71,42,-16,-16,-39,-1,12,15,0,-38,-3,-12,6,39,-38,53,0,16,29,29,54,25,-15,-25,-13,28,-5,-24,3,-13,29,3,21,98,1,-14,23,2,40,-49,16,-9,20,29,34,-24,-7,83,17,10,4,44,36,21,-43,20,38,-23,-7,12,-29,-7,-4,12,-3,-7,50,-22,-10,-19,-7,21,-30,-14,-17,1,6,-55,-10,4,-5,12,-32,62,-15,-3,-6,-10,18,37,41,-18,-8,16,11,-27,-4,63,-11,82,41,-11,-54,15,-48,-10,-46,0,-59,41,28,2,7,34,45,-28,-35,-16,7,-39,-19,-33,-10,2,36,28,-2,-50,27,57,-28,8,-24,-71,-2,16,9,19,1,-17,7,45,-9,78,-11,15,-21,-6,-17,49,-19,49,-10,-29,-33,-15,-17,-33,18,103,13,-22,57,-8,-6,41,40,1,-19,31,18,13,13, /* [20][0][][] */ -48,3,4,-10,-119,14,-43,-9,12,-17,-115,26,-32,37,-42,22,-11,-30,-21,31,-3,4,-23,-8,-40,-52,11,-59,33,-10,25,-15,-41,25,-29,4,6,-19,6,-28,7,-5,41,7,-48,-6,-10,-21,-2,-14,1,1,-16,-13,33,20,-44,-11,3,-105,-37,0,33,14,-15,-7,45,10,-15,-2,3,13,-38,-51,27,24,-37,20,-10,15,-9,13,-9,30,-2,-16,9,-32,-6,-22,12,-44,-71,29,-10,-3,8,-7,-5,13,24,6,21,-20,-4,12,-60,-17,-53,18,52,-36,24,44,-92,2,14,33,-31,-11,-49,-50,29,21,-39,-3,-10,-3,-42,33,17,-13,8,-8,-15,-5,37,13,-127,4,5,24,16,-9,13,26,-1,-22,-14,-16,-48,-45,17,73,-49,7,-63,-2,-11,-19,20,18,1,-18,-19,19,34,20,10,-22,40,36,33,14,-11,-30,-30,26,5,17,-4,-10,30,-68,-8,9,-47,-33,17,20,-28,-68,-24,2,-26,43,-2,12,-6,-8,-6,-6,-21,-38,8,0,16,-6,-1,-21,10,-33,13,-10,-33,-13,-2,5,12,6,5,3,-9,23,-126,34,-35,21,1,-17,-10,4,-1,16,38,-43,30,10,-15,2,12,-34,-51,6,-11,21,5,17,26,80,-6,-3,9,47,-26,-17,-11,-29,10,36,-26,25,45,-7,-7,-7,-25,8,3,46,-11,-34,11,9,19,13,20,-6,13,3,1,0,-12,47,-4,8,43,60,18,4,29,-17,28,-3,-11,-37,-7,-106,19,-16,-12,-20,56,-19,-15,-5,-1,-4,-51,38,-28,-19,-74,9,-95,-2,5,34,11,35,-30,12,29,-16,-55,26,-30,-80,31,18,-16,-26,38,-49,-24,14, /* [21][0][][] */ 36,21,36,23,7,-38,50,10,-1,4,-2,5,-2,31,-3,28,-31,14,17,-7,-9,-18,-27,6,7,29,-12,1,36,-44,-27,0,22,-4,28,21,-12,3,48,-22,-3,120,24,21,28,-18,77,34,9,-3,3,-17,25,27,22,-12,-21,-65,-4,-17,-38,9,-32,11,55,8,-5,127,-3,-27,36,29,15,-6,-5,86,31,14,48,-41,-3,-48,7,103,-21,-3,2,4,30,14,-2,13,14,48,16,-14,36,-13,-25,-25,-31,-6,13,-8,51,-8,19,-25,6,-27,-22,-23,65,-34,9,-20,-32,27,56,27,8,31,-4,-33,1,12,79,-30,-25,-20,14,-36,-27,27,53,7,1,7,-6,14,17,-1,22,3,-21,-23,-30,32,17,-3,9,-16,4,-33,23,26,39,-7,3,-12,36,113,-2,-26,22,16,-22,-13,-19,-18,25,-8,-15,-14,-26,24,9,2,16,5,-6,1,23,39,-25,28,-27,19,-14,45,25,15,-30,16,14,59,127,-18,64,5,-27,11,-12,-12,-1,10,-4,-29,-5,-24,100,-1,-21,11,12,44,14,-37,2,-8,25,0,-6,12,-24,20,-1,15,10,-55,36,-17,5,-30,11,62,-4,-33,27,-26,20,-37,1,21,-17,2,84,-14,13,-14,0,-33,18,-29,-8,-46,-2,39,17,22,24,4,100,7,6,27,-3,-25,33,5,37,21,-7,16,14,19,-2,-19,20,7,-27,-12,49,-30,-10,2,27,12,-17,16,-29,-36,90,2,20,-14,0,-5,17,16,44,19,-13,-26,13,-44,60,2,38,3,-49,9,55,16,27,-4,2,18,56,-50,21,-27,113,22,-29,-31,-20,-16,-29,-26,-5,-30,-3,47,-22,-33, /* [22][0][][] */ -55,31,8,-44,95,-8,-39,-20,-43,63,75,20,-13,44,11,0,-18,-36,89,27,-36,-38,-10,38,68,-33,-38,-14,-4,25,2,32,45,33,-5,80,59,11,-52,-37,9,-127,11,28,94,-11,-11,13,-24,5,-53,2,43,-9,25,-42,16,-7,44,94,-101,19,65,-26,59,46,23,-123,-52,29,-94,-31,-22,11,-14,-52,-1,97,-43,51,-28,10,1,-71,3,-23,-6,3,-43,30,9,50,22,27,6,-7,50,-10,-27,-3,-11,-32,-5,58,-33,-25,-1,-39,23,-71,-21,-39,-40,53,32,-10,37,27,-8,-38,-47,96,56,38,65,-1,-25,-50,-20,17,21,54,-7,12,40,-28,61,-12,52,37,-24,20,-1,-35,20,0,-4,-18,29,-37,2,3,-25,28,4,5,65,-5,-69,-61,3,-101,-48,33,-56,-58,-41,1,-38,32,79,37,-56,-50,-18,-51,41,34,-66,70,0,37,-52,36,-17,-39,-29,-14,-69,-7,57,23,-25,61,-72,23,-72,-32,-38,-31,-17,4,50,84,-71,-8,8,65,-30,-23,-59,-1,-2,-9,-77,-5,-23,7,15,-10,-28,23,-25,10,124,-51,16,-23,43,45,21,-35,-4,-39,0,42,-1,18,-24,19,-8,-108,-62,32,50,22,-109,-15,71,15,13,49,-30,-14,22,-36,-19,-27,60,-59,-2,-69,-83,-61,94,45,19,82,-57,29,3,-24,-19,32,36,-13,85,-49,1,-15,87,-12,-15,-1,-56,86,-16,40,41,-48,42,-5,-65,-29,-16,-41,-15,58,39,-20,45,69,49,-34,61,14,-88,-29,34,6,24,14,-40,3,70,55,24,-30,30,-33,9,-21,-83,13,-72,-41,45,79,-31,17,33,-27,-46,-25,7,-21, /* [23][0][][] */ -27,-14,-29,-14,-87,42,-7,25,15,-14,-91,-13,-16,35,-1,-13,-27,-18,37,-5,-34,-28,-31,16,6,-3,2,8,-17,23,-10,13,-36,-42,24,-24,25,0,6,-6,19,19,8,7,39,-23,-16,18,-17,6,-13,10,7,29,50,-34,12,-8,-29,-99,-2,-30,15,-24,-25,-25,-16,3,28,11,12,-5,-19,-66,-4,-19,19,-16,-3,34,30,-26,-11,-17,-31,14,-19,2,-29,-18,-32,10,-73,13,34,-27,-37,11,-52,-29,-2,-11,4,-15,-35,-7,-37,10,-127,-12,-7,-17,30,36,-7,-13,-14,-40,-4,-5,16,-37,-16,41,-63,-5,20,10,-32,8,-13,-8,37,15,-6,15,26,9,-109,-15,-9,-33,14,-11,-39,-6,-30,-44,29,7,-5,11,-2,0,22,-8,-36,16,7,42,15,13,40,15,-17,-6,48,-25,5,46,12,-14,-12,-39,-26,-7,-18,2,2,0,4,0,-2,-91,-10,-2,16,-3,-2,8,-20,-12,3,19,-20,-36,-12,-50,-15,-33,-5,1,32,30,4,-16,-12,20,46,-17,21,-54,-14,-2,1,-7,27,-16,-36,-25,-31,5,-26,20,-115,0,-38,-13,-21,39,-15,0,20,3,24,29,15,20,0,-3,-10,-31,2,12,23,8,-17,-5,4,-1,-9,24,-10,8,-22,-1,-4,30,-10,20,20,34,5,-2,-42,15,31,19,21,-4,0,-10,9,-36,14,-17,-1,-16,38,16,14,-14,-13,-31,36,33,-7,-61,43,-30,-25,15,21,31,17,-4,47,-103,14,29,-24,9,20,-6,-13,22,-18,-17,26,-6,5,3,-27,-10,-120,41,31,-40,34,-16,37,6,-6,3,-14,-22,5,-123,-13,9,10,31,1,-50,-2,5, /* [24][0][][] */ -49,20,37,-20,-59,-19,-11,10,35,0,-78,11,12,8,-20,-6,-16,32,-19,1,-44,-13,-20,4,-13,8,15,30,-22,-2,3,8,-12,65,4,-34,6,-15,-37,-51,-22,-76,20,60,-8,32,-101,-7,6,-4,5,-23,42,-30,21,-13,55,-5,22,-125,25,44,-13,1,-52,21,8,-94,45,48,-34,49,27,-73,-7,-62,19,-55,-42,23,-12,0,2,-85,-15,-13,-65,-10,41,-51,-7,4,-85,13,24,43,25,5,-11,24,-46,8,-15,23,24,37,-58,39,-93,-2,-19,26,30,-18,-42,-11,-18,-45,-76,-29,19,-26,33,23,-37,-3,-17,39,41,-18,-37,-1,14,-37,-26,62,-61,43,-114,29,-2,23,29,-23,-58,-17,-5,-61,-41,-22,18,50,-23,11,16,-12,-7,2,-19,27,35,-82,-48,-14,31,1,29,43,51,-32,5,37,-31,-1,-11,45,-48,8,13,-1,2,-3,-12,-67,-58,-6,12,0,15,0,-31,7,-2,23,53,-15,-110,-10,23,-10,28,-47,43,-29,22,-36,-55,30,-42,-45,-72,2,-19,32,-21,-10,45,6,-16,-2,1,-7,31,0,-66,36,-54,-55,4,-5,36,49,-6,-15,-19,-41,9,-3,8,-74,-53,20,-31,23,-10,10,-124,-33,-81,-4,-41,27,14,-7,21,8,-5,-18,-41,-4,-13,14,-127,-38,-5,-14,11,47,29,35,-35,-30,35,-17,-19,26,17,-12,-59,35,55,24,2,10,-25,46,-23,-10,23,45,23,37,-102,25,24,23,5,-104,-47,36,-55,22,-47,-30,-5,-28,-42,-10,33,24,10,13,-39,-23,-83,-5,10,-10,-62,-5,34,-12,-61,-10,11,13,-32,-76,20,-6,-11,-16,-24,-12,-1,-37, /* [25][0][][] */ 4,-15,-34,14,-78,41,4,-21,19,-17,-109,-54,-32,14,34,12,-38,40,1,21,18,10,-29,-35,-32,-5,4,15,-8,-28,18,38,-42,16,4,-28,-61,-17,23,33,10,72,9,-5,-25,6,13,31,-26,-4,-30,-9,39,6,-6,3,-18,-14,6,-83,3,29,-6,28,-15,-11,2,103,16,19,19,-5,-26,-42,19,1,25,-28,-18,-9,-6,-19,-17,21,-1,-31,-1,-4,-35,-53,-17,18,-82,-54,-23,-3,-11,43,32,-19,4,-31,-2,-12,-22,11,0,-14,-76,2,-4,-10,-36,23,-25,0,-4,9,-39,15,21,14,-42,25,-75,-5,37,-15,-5,39,2,27,16,-15,-2,-9,-10,-12,-127,-33,2,16,1,-4,-17,4,-46,21,33,11,23,14,-1,8,5,-13,-17,-9,21,-19,-22,35,11,-13,27,-12,18,-3,23,7,-7,-15,16,25,-11,-22,1,3,-34,6,5,40,6,-42,7,29,-7,34,-10,-8,-6,14,31,-3,9,41,60,-16,-3,36,21,-18,14,-18,-8,1,39,-38,-4,-5,89,-2,20,17,-1,-21,2,-9,4,3,11,10,-6,20,-85,33,33,-4,20,26,12,24,0,0,13,17,4,-50,-1,-38,-28,-4,4,37,30,-7,35,-19,-37,-55,-13,-8,39,-3,4,-23,-40,21,12,37,20,29,78,15,31,-29,-4,29,-20,-42,-18,-27,-9,31,-4,33,-22,8,-8,12,-35,20,22,18,2,17,17,-35,-14,-29,31,15,68,-7,-38,-6,35,-74,-42,-49,7,-6,-1,38,-25,15,52,22,-14,-3,-19,-37,-19,40,-101,13,-58,-9,-25,-4,14,-1,76,-16,-12,9,-37,-87,1,-41,-23,-19,6,20,-13,-27, /* [26][0][][] */ 47,-25,18,25,105,20,3,-9,-49,4,119,27,54,-39,11,-16,-33,31,-22,-27,28,0,-46,3,21,12,3,44,-21,49,42,6,49,-29,8,-33,-26,3,-78,-35,-13,-70,25,13,5,0,-34,14,18,-16,-49,-10,-23,18,-27,-2,6,-11,15,111,33,47,-4,-14,0,11,-24,-59,-19,-13,-76,26,-47,38,38,-8,27,40,63,-8,24,-40,30,-13,-18,-5,-21,29,1,25,21,33,14,29,8,-10,17,45,-11,-46,-57,22,-23,-2,-42,-6,37,32,72,-7,-24,24,45,23,42,-28,-7,-3,23,-39,-51,-9,-5,-27,52,-2,27,-58,20,-53,-24,31,18,-31,36,-13,3,-19,94,19,-3,-9,15,7,31,-22,37,-54,4,36,-15,12,24,16,5,49,-16,-3,-21,37,-20,-19,11,51,-15,-18,22,22,-14,-41,29,-39,29,4,11,-5,16,0,18,-26,-4,-27,36,98,-11,-36,-29,11,-28,-56,-35,-44,10,-40,-2,3,-32,38,12,25,-5,-42,-15,35,24,-13,12,14,-44,-44,-88,22,9,2,-12,-21,16,-31,-10,1,-41,32,-2,37,127,-18,13,-9,-32,6,34,-32,42,20,15,25,11,15,-12,-20,5,25,10,24,21,57,-58,12,58,53,-14,-25,-10,-38,0,12,-47,-66,31,-14,31,17,-84,2,17,-9,55,52,-8,21,-36,-24,25,4,20,27,31,23,5,-7,27,33,2,-15,40,-16,-2,-31,-9,-70,55,-40,-15,0,-24,-19,-16,124,-25,5,-26,35,-22,-15,31,-25,-42,2,-68,-10,3,7,-17,-27,124,-5,-65,17,-40,-10,-18,47,-26,9,-13,-35,-32,81,11,32,-34,10,-47,-66,-29,-10, /* [27][0][][] */ 6,-18,47,-5,-44,-14,-13,-6,-48,-7,-81,-36,-23,0,22,22,-2,-19,-31,1,8,-11,19,-16,-18,5,-24,9,14,26,7,-30,10,-4,3,-18,18,-31,8,-15,-18,-127,1,47,-4,18,-82,39,14,-9,-12,-16,27,13,-10,-28,17,10,-14,-52,26,1,25,-5,4,7,18,-74,-4,49,3,-10,21,-34,26,-38,2,8,21,-7,-22,14,3,-55,11,-37,-15,16,20,-6,10,22,-74,16,18,-12,7,-55,8,27,0,21,-2,3,16,-21,-42,-14,-44,-15,19,49,-40,-31,16,0,-9,-9,-3,-4,18,-23,27,-22,-23,-3,16,17,28,17,-20,-7,3,-26,-23,28,19,17,-100,-42,-14,-25,26,1,14,-22,4,-63,-24,8,32,-12,0,-19,31,31,27,21,-10,4,-10,-58,1,35,-11,-21,-8,2,-6,16,53,-18,21,-12,-17,-11,5,-16,-35,-1,-20,1,-19,-84,10,-12,39,-50,34,-11,22,17,2,6,-62,11,-98,9,57,-30,-9,-22,23,-20,30,-6,-29,-2,-14,-32,-109,-30,38,13,-23,-1,33,-33,-22,-38,2,0,10,-35,-50,3,17,-28,-11,28,-13,-29,-8,1,3,7,2,0,14,-35,-11,26,12,-38,-11,-30,-65,-34,-22,16,11,31,-15,15,-16,1,31,-28,-6,2,8,-21,-80,-15,8,17,-1,-19,14,13,3,21,11,-17,8,-8,-29,-7,-14,45,-10,-14,50,-35,23,-31,38,8,14,-15,1,34,-86,-18,25,22,1,-48,-8,5,5,32,34,-33,-26,23,-57,33,2,2,-30,15,-25,26,-83,1,24,-19,27,-14,-6,-2,-73,-7,-9,-9,-3,-52,39,20,-3,-33,-55,-6,17,21, /* [28][0][][] */ -43,-48,40,5,-1,-45,-20,47,14,12,-85,51,-21,86,86,47,-22,-42,15,-4,-5,35,-11,-1,14,25,-5,-3,-11,-9,-17,-16,-16,-31,5,43,-53,-8,-16,16,30,-126,-55,-12,-21,5,-119,28,7,31,-9,1,7,-3,-36,12,-29,-75,25,-122,-49,-24,29,-32,-31,-1,15,-90,-19,-65,-86,15,38,19,-14,-111,-3,9,-10,-11,-20,28,12,-119,-19,1,2,53,0,18,-50,-29,-91,21,25,-11,-33,12,-12,-7,16,117,21,19,20,-11,-77,37,-8,-14,-50,41,6,-7,-60,-31,-84,23,29,-15,29,-39,-29,-63,-63,48,2,32,-55,24,-37,32,-24,-15,-38,68,-37,5,-86,18,10,63,19,-27,-6,13,-36,-125,-11,33,0,25,-12,69,-14,-44,33,-43,-36,30,19,-108,-41,81,21,67,46,-74,10,-57,-2,-25,6,-5,-26,42,48,-23,63,13,11,-41,-49,-107,-22,-18,-1,93,-38,-19,59,8,-20,-55,9,7,-116,-26,12,24,-17,20,11,-112,-21,20,13,-20,8,-53,-98,-77,-63,-57,-19,-19,-8,39,-6,-73,10,-8,38,14,-77,29,-41,19,29,26,29,37,-10,-22,-15,-62,3,-43,31,-75,-3,-10,-50,-10,-9,-13,-109,-11,29,7,-6,-24,-6,-30,-65,-22,-78,-33,22,-19,5,24,-127,20,41,-19,43,-24,-3,19,46,21,76,47,-95,43,-63,24,3,45,21,26,-19,33,70,43,16,-8,95,6,-53,19,-102,-22,-4,-29,-23,-27,-42,29,-69,-17,55,54,-44,-33,-71,-37,-11,46,-7,-35,-33,39,-112,-34,-29,-1,18,1,43,12,-96,20,-10,-24,52,-78,64,31,-42,62,-42,18,39,-41, /* [29][0][][] */ -40,16,8,-31,-92,-28,7,11,-29,-22,-55,-29,15,5,-38,5,12,18,-8,-34,15,-24,-7,-8,-10,-37,61,-20,-9,-1,-21,18,-4,-25,-7,5,3,-8,-39,-5,-8,-29,-1,17,-16,8,-50,16,8,-14,7,28,-20,-16,-22,-20,22,10,-24,-112,1,3,-13,39,-24,53,-24,-14,5,32,5,-7,-14,-57,-15,-20,-33,21,-14,-21,9,-36,-38,-43,0,-11,11,-18,-13,7,17,16,-40,43,-10,9,-7,15,-43,-4,19,23,19,20,8,-6,-57,-34,-70,-37,-54,-11,5,-11,31,15,-9,-25,9,22,-17,-46,25,54,-85,45,43,-19,24,22,-19,-2,2,-20,-10,7,27,58,-110,25,-22,-6,-17,19,10,10,18,-16,5,38,31,1,24,5,-23,-25,-13,1,-18,-4,9,-12,-20,21,-22,-44,-41,-5,-25,31,-14,-26,-20,12,50,-4,-43,40,-16,3,-13,-29,6,-96,-26,-5,20,24,6,26,20,-32,-13,7,37,-6,-77,21,-12,-47,-52,-14,22,11,-37,36,-22,0,9,-11,-55,-45,-23,-15,-13,13,-6,-37,12,16,14,27,-15,5,-88,-40,2,41,-13,-45,21,-11,12,23,-25,-22,-20,25,8,8,-45,-37,-26,-51,31,33,1,-5,-29,29,28,-48,15,0,9,20,1,-22,23,-29,4,-32,-31,-28,-21,-56,-15,-6,20,3,13,32,29,-5,-20,28,27,-20,0,-27,-41,0,-4,-17,23,20,-4,-34,9,-4,-9,-25,-65,-33,-61,19,35,-104,18,7,39,-2,-9,10,-17,-5,-45,56,-11,-42,36,-35,-63,-8,-127,-10,22,25,12,-42,13,6,-19,35,-12,-21,-12,-100,-3,30,5,-27,-26,-26,-2,27, /* [30][0][][] */ 0,-7,14,-60,56,-69,-105,10,-52,-9,-15,-37,28,-12,-45,-41,-10,-7,-60,48,45,-20,5,19,6,-4,-18,21,-8,-1,-47,-36,-10,-25,2,-15,18,-19,-37,8,11,-124,39,58,-35,51,-59,14,13,1,-22,-39,-56,95,8,-33,-3,-1,-27,73,68,-9,35,25,18,22,-21,-107,3,27,-60,49,-21,3,43,-37,36,49,-17,-25,14,-73,-20,-103,7,22,50,-9,45,-34,-12,-32,-49,-15,21,10,6,-27,-32,-30,-24,5,-19,-58,42,-1,55,39,37,34,24,19,-26,17,50,-90,39,-19,59,-12,28,16,31,54,22,20,34,-4,6,17,-39,19,-36,-17,34,26,3,-44,89,20,-73,25,-18,83,6,-19,-34,-19,21,-31,-27,59,-68,44,-15,-2,5,16,-13,38,1,-67,25,48,-9,-18,12,20,13,-45,-8,-52,20,22,-36,51,-17,20,32,9,-66,-13,0,-47,-37,-40,-80,-11,-40,-44,29,-24,-6,23,-16,-29,-89,-11,-9,-18,7,-19,-25,-100,54,33,-4,-22,-37,7,-60,65,-56,-14,21,-45,35,-19,28,68,4,-5,-43,-87,30,34,-70,-36,-19,-18,-71,5,-19,0,-18,-33,-39,25,-22,-27,-9,-9,-17,59,7,23,-46,-4,-43,8,-58,-83,22,-19,-8,-28,5,-43,-1,11,2,19,-112,-27,-33,34,42,-59,-13,31,-39,43,-127,-5,4,-13,-6,0,29,-17,19,32,-5,-31,-18,60,-49,-2,51,25,56,12,-105,18,-42,18,-15,54,25,-21,29,-4,-39,2,-89,-20,-91,-18,-31,56,28,15,7,28,87,-22,9,-15,42,32,59,19,-63,-16,-35,-44,-23,19,30,-79,0,-43,67,-79,2,0, /* [31][0][][] */ 10,-23,-38,-1,18,15,-8,-15,-9,-27,-37,33,1,-8,-7,-24,6,0,43,-14,46,32,12,33,-44,26,35,5,-12,50,4,6,30,11,-16,-31,6,-16,10,-3,6,127,-17,-21,15,30,44,23,15,-8,13,-40,-30,14,-3,-19,-31,-24,-18,7,-11,7,14,7,-8,-32,-14,119,-28,-7,17,-31,-14,13,-14,77,14,7,3,10,-18,-30,-7,39,-4,1,-11,18,-11,-19,-56,-47,28,13,-8,-5,24,-2,30,14,18,22,32,-9,-35,16,15,-11,-13,4,-2,10,9,45,20,-43,-22,-29,-1,4,35,7,-14,-5,4,-10,5,31,-18,-9,-1,-10,14,11,22,38,-3,0,-28,-9,-22,-33,1,14,13,-34,-32,82,52,7,0,13,3,-34,17,10,-28,10,17,18,16,77,4,-10,-10,0,-13,2,-19,-11,33,29,13,-9,10,6,-9,27,1,11,-8,14,22,79,1,22,7,-21,-15,15,30,-14,8,-9,3,-16,103,-2,-16,0,10,-5,19,26,-8,44,-3,7,-9,40,102,25,2,-20,7,3,-22,7,-7,-9,-16,1,0,22,-39,15,7,-15,5,-6,-1,-10,-4,-13,22,-18,5,0,6,17,18,9,16,15,-3,13,91,2,-14,-22,5,-10,16,24,14,16,-5,-14,28,9,-8,-39,97,-11,3,-30,-18,-14,-14,-29,28,0,31,-1,-7,36,3,-19,16,4,3,-2,29,-9,17,14,5,32,-29,-19,-22,4,77,-30,-5,-28,-13,0,12,15,-18,24,-30,-18,18,-22,72,26,4,14,7,16,36,18,-17,32,17,22,20,24,25,6,112,-2,-26,14,5,4,-5,11,-9,16,-17,25,22,-27, /* [32][0][][] */ 67,20,35,46,51,42,57,-57,-63,20,29,37,-29,51,39,28,19,34,25,-51,-1,-14,46,-28,38,-69,25,64,-18,-42,40,-2,34,-34,-53,-74,44,-40,-47,35,-49,77,2,19,-13,-38,73,-2,10,-28,-16,-25,27,11,-46,24,-13,-12,-12,37,6,30,-27,65,2,-52,-10,120,-1,12,69,4,31,-6,15,40,-15,3,9,53,-2,13,0,73,-33,1,-21,39,13,-23,-27,-8,112,-4,-21,24,-23,67,22,31,90,22,43,62,20,5,27,-34,28,25,13,31,-20,21,39,28,9,-46,-7,22,30,65,5,-48,8,40,11,29,38,50,-22,63,-4,63,9,-83,-12,18,90,33,83,19,-17,-6,-25,50,-6,105,3,61,-36,-9,-17,4,-23,-41,-14,16,28,24,27,80,51,-50,41,-54,102,26,-60,3,26,-6,10,-16,-19,17,72,5,-29,35,10,18,-28,127,-30,28,-6,46,4,15,-12,38,4,-8,52,-53,87,-25,-8,38,12,44,-17,-23,-47,11,-30,-41,61,-7,105,34,-6,11,6,-33,-50,-36,23,-23,50,-2,-5,52,18,56,13,-26,13,-11,30,-22,28,-1,13,22,17,11,14,-41,18,36,-65,1,-12,-9,81,-26,-11,6,-32,-28,-50,33,-101,-21,15,45,-12,-5,-49,77,113,-33,-10,5,13,47,9,28,13,-34,-45,-20,-14,6,-6,52,16,50,41,-36,11,-1,-35,-43,-41,6,-49,-24,-6,33,67,33,3,38,-5,74,38,-50,-1,-4,70,-33,20,-13,35,-23,29,58,60,-4,25,21,29,-17,-47,18,-30,32,-13,30,101,7,-36,-53,-7,23,36,32,-11,-18,41,20,-10,-39, /* [33][0][][] */ -64,17,-23,-58,-76,-23,-25,79,43,40,-62,-6,-31,33,18,5,-20,-31,-20,15,34,-7,-4,-35,7,16,-30,-5,30,6,11,-4,-84,-49,-2,-19,-35,23,-45,6,50,-100,-9,-39,-82,16,-52,17,47,13,6,30,13,-9,-29,-17,-2,-36,31,-85,18,29,-14,-36,42,-23,-21,-92,-41,35,-53,42,-75,-53,28,-8,-52,34,8,-24,-38,86,-14,-65,31,-15,11,-70,-15,47,-53,21,-70,-21,-48,-1,51,-31,-31,-72,-13,-23,14,-18,31,28,-73,-59,-94,26,35,-59,2,-74,-60,28,27,-8,13,28,-32,-45,29,-13,-32,50,-14,40,-15,0,14,3,55,-32,-55,46,-65,-34,-37,-25,-29,15,-63,-57,-22,-34,23,-26,-6,-62,6,58,57,10,65,-15,45,-1,-3,-8,28,-11,29,3,13,-12,-39,15,23,49,-42,12,-55,-43,-16,-1,-56,0,-31,0,-13,-34,-29,-55,-14,-19,-31,-13,-91,-38,-18,-25,34,-39,-18,10,-31,-76,19,-29,-13,-11,-24,-61,17,-10,33,-9,-24,37,-89,-33,-27,-80,12,-57,36,-40,-10,-33,-25,0,-38,1,-127,25,48,-21,48,-36,19,15,-20,10,12,-7,-32,21,31,24,-22,-40,-22,-56,-2,34,-27,18,3,-7,-20,20,28,-47,34,-5,-8,28,21,7,-31,-9,-77,-65,24,22,-25,-39,9,-26,31,1,-39,-58,27,-6,12,-6,36,-44,-37,-10,-21,23,25,-20,-4,-3,52,46,13,-28,-5,15,-33,-35,-16,-68,-30,-31,50,-37,28,-19,-20,21,-62,37,27,20,45,35,-64,-68,-13,51,-11,22,-22,38,38,54,-42,11,-45,5,-3,-15,5,30,0,-45,-62,2,-10,4, /* [34][0][][] */ 13,-50,-37,-57,54,-27,48,3,-3,-11,97,-9,-15,25,-12,22,-14,13,4,-13,58,-23,31,-25,32,-72,-5,63,13,15,38,-20,42,-43,48,19,4,-42,-46,44,-24,-31,52,-4,18,-57,33,25,12,17,-25,-50,-34,-25,-19,40,1,33,8,79,17,1,27,-46,71,33,-32,35,6,26,25,-24,-68,18,-31,-16,-5,18,13,-45,-27,14,-15,23,-5,-13,-18,-47,-8,37,6,27,62,-37,4,-40,17,35,21,17,52,36,25,-71,-11,36,45,33,65,51,25,7,21,56,24,13,46,-5,30,36,36,85,1,-38,95,-4,-18,-46,-6,-31,-30,-23,4,-8,41,31,-20,-31,83,-20,28,-32,-13,-9,12,-15,-20,58,-65,48,-20,58,37,-17,44,2,47,13,6,-12,-23,-9,9,-52,77,30,15,-24,-15,3,-16,-14,31,3,-29,-32,-26,-20,-4,-20,-25,-33,-22,40,-17,-32,7,17,16,16,-2,16,41,23,21,5,21,-9,-14,21,-28,-14,-53,39,11,9,-8,35,19,-9,11,63,-6,60,-16,17,-23,-3,-2,-40,9,50,-31,1,69,10,-14,20,-63,-26,36,-29,-15,-34,24,38,-29,8,-27,16,5,35,61,-7,24,16,-10,-28,64,-30,14,43,-41,30,-13,-11,-52,-3,34,62,41,-26,18,-6,-37,24,-41,-9,7,-5,23,5,37,43,22,25,-33,7,41,17,-3,26,44,33,-17,-17,26,17,-53,-46,2,11,17,-12,41,-33,3,60,-54,-41,43,-45,-47,59,2,-11,-15,5,16,-22,14,8,2,21,127,-13,-28,-47,-32,19,-10,7,-49,86,24,22,-40,71,20,-45,16,29,-16,26,11,-4, /* [35][0][][] */ -8,-20,-20,-40,-71,-49,13,26,-32,37,-3,-23,0,7,-15,20,57,-11,20,-5,-41,30,-9,-39,13,18,35,31,5,10,50,-23,3,-5,8,4,45,-5,-26,38,49,-127,-16,19,-53,29,-109,14,48,11,25,37,35,9,-62,-8,-26,-3,-64,12,15,14,-41,4,-29,-36,-13,-105,14,15,-53,7,-88,53,-70,-36,76,-30,20,30,-6,0,18,-76,12,31,-10,20,11,26,-42,-16,-25,-32,-14,-10,-14,34,4,33,-22,-32,5,30,-25,-8,-67,-22,-47,17,5,-50,15,61,-5,13,-2,24,39,25,8,-67,-20,-23,-54,-18,54,-14,-4,-12,-35,51,9,-28,-59,-5,-24,-12,-69,52,-40,-27,-9,26,-12,-39,-9,-84,38,6,-16,23,-27,2,-1,28,-23,36,16,14,-11,-73,-23,-21,-37,-20,6,-8,-2,-9,-13,62,-10,-34,-5,-29,24,9,35,1,-97,-11,-31,-103,-1,39,35,4,1,3,19,0,20,-15,-10,4,-116,3,-4,9,-13,14,36,-7,26,-53,-33,-5,36,-23,-106,27,63,-24,4,-47,-9,19,9,-35,-32,17,-19,-32,-59,32,20,14,12,30,31,9,-25,5,4,11,5,-10,24,49,-7,10,37,-5,19,21,-112,-25,-7,-22,0,21,24,-15,18,53,-26,48,-49,16,12,-3,-97,46,-21,-53,-11,26,-6,2,25,22,40,-44,21,-32,6,26,-34,31,9,-5,23,-23,21,42,9,-29,-38,-15,-30,17,-112,-41,-21,-71,31,-39,8,0,-31,-33,5,14,49,-17,-65,-53,-12,31,-7,-13,-63,39,-82,-27,43,-17,34,32,-54,-4,-98,27,-12,-26,12,-18,-19,7,7,-22,14,-22,-21,-19, /* [36][0][][] */ -52,-33,35,-29,-127,7,-7,11,-23,-20,-104,21,-5,-5,-14,-63,0,19,-5,69,6,5,-29,-34,-12,23,46,-15,28,-33,25,-3,-73,-8,-35,39,18,63,50,-58,22,33,6,54,1,65,-44,31,19,-49,85,-6,-30,30,-10,6,5,18,63,-109,-8,-14,92,-4,-11,-2,-14,94,42,38,71,28,-4,-33,47,35,39,-64,-50,3,10,4,38,83,3,-7,-22,6,0,19,31,35,-122,-12,36,-38,-31,-11,15,5,16,-32,42,-56,21,27,-66,54,-81,-44,-10,-73,12,-24,12,-62,9,48,-30,-39,4,-11,-5,-59,-33,-37,14,10,7,42,21,50,-19,-21,-4,-1,-50,-53,-90,58,-15,75,5,3,37,60,-22,58,-30,-10,-69,-8,46,-16,5,12,-52,-9,1,-22,-15,61,15,-40,-57,5,66,3,6,29,-98,26,43,-16,20,20,57,-9,-24,-3,27,-60,20,-106,-29,-1,-35,8,19,-46,46,-46,104,21,86,-48,13,-28,41,-3,4,40,1,14,13,12,25,30,-55,14,112,0,-63,-15,-52,4,14,7,-49,-17,-46,21,7,-18,-92,6,11,-47,22,54,-6,4,40,31,26,24,-3,-39,60,61,-37,-56,33,53,17,35,65,44,26,-69,26,-11,27,26,-5,-54,-77,62,-3,-62,40,-18,78,-73,5,-22,-46,26,32,-20,13,20,-45,32,-54,16,-24,19,18,9,-23,-14,53,59,1,-45,-62,28,-19,-58,-1,-20,64,6,-61,8,-16,-109,52,65,-62,60,3,-45,-24,-72,54,-29,-19,25,-12,34,-90,45,-115,-12,51,20,17,-30,20,20,11,10,-7,8,-74,-67,10,33,66,-45,4,56,-33,-50, /* [37][0][][] */ -95,-45,21,-44,-21,-4,-23,-55,52,-28,45,44,67,63,-77,-21,31,-114,38,23,-6,2,-74,39,-59,-60,-75,62,-93,-25,3,-37,17,53,31,18,4,5,-67,-60,46,-99,-38,-85,29,17,-68,-18,-10,27,-84,35,6,19,15,42,-37,-52,40,19,-19,-41,-47,5,-13,-7,-26,-118,22,-11,-88,-49,-12,60,45,-112,66,-15,-62,-55,-30,-65,4,-74,19,-15,28,28,0,-34,29,53,-43,-23,-63,33,-34,-34,16,-53,80,11,50,26,-30,-5,-21,-31,48,-20,-10,-35,-16,49,-37,-61,-67,20,-40,-4,25,-26,-56,-3,-33,55,-27,49,108,-61,54,-34,0,-87,-43,-10,-93,-39,46,-20,7,-26,22,51,14,-63,5,-29,-44,6,-52,7,-7,-1,61,13,-42,-18,-5,-23,11,-34,-56,18,80,37,-40,19,-29,-32,-41,0,16,6,20,-10,38,-52,45,51,37,-38,-21,-23,55,28,-65,-55,-17,-56,-6,-85,17,62,73,-50,-98,-90,-51,-19,48,-78,-76,32,-3,-91,-11,-22,17,-90,-62,50,-34,-33,-33,14,22,7,31,43,4,24,4,42,-27,32,39,-30,-11,84,35,-67,51,9,-41,22,27,-42,-28,37,38,27,32,39,-47,22,-127,45,-38,-17,-12,43,1,23,63,-51,10,52,-30,0,-15,37,-110,-1,-2,-7,35,80,29,11,21,89,9,-47,55,-34,7,43,50,-23,67,43,-40,-34,-37,29,-35,-9,48,-58,31,57,-85,38,-98,13,27,62,7,-20,-21,-27,-12,34,37,24,-95,-32,48,52,14,-27,-50,-45,26,17,-31,-36,109,-43,1,4,-52,3,-8,-92,57,-61,24,-22,-67,-4,41,-16,-19,-39, /* [38][0][][] */ 50,-40,9,61,4,20,96,43,-67,69,23,-10,-9,-1,31,0,15,-9,-2,0,16,-60,-36,109,-62,-31,-27,-61,19,-44,20,-57,-77,-48,-46,28,-13,-18,57,36,-20,108,-41,-34,-11,3,101,45,-20,3,-22,14,32,50,19,23,-13,-20,-24,22,-44,-57,1,-16,49,53,-54,126,-11,0,49,-16,16,70,-17,80,-8,19,5,-39,-25,-5,58,50,-51,-7,72,36,-30,-51,-48,19,38,-24,-37,3,40,-21,-23,-21,41,13,6,-25,16,25,7,41,5,-15,-1,-28,22,-34,14,-37,-38,50,32,-34,-19,31,36,-5,36,-58,-31,-25,-47,65,39,-3,49,-62,34,-34,-1,-30,-36,78,-1,1,38,-58,29,47,5,78,-78,-5,38,-19,-1,46,-35,-16,22,13,-47,32,-43,104,-40,-6,-13,8,9,10,4,0,40,31,-2,7,-11,-14,59,39,-37,-6,-50,55,10,61,37,-42,7,-8,34,2,-41,27,-17,-24,8,25,114,-41,-3,7,25,-18,4,-7,17,-69,-26,44,24,23,127,-73,-9,-16,-10,-7,-2,42,44,-23,42,22,-38,-14,-17,-47,5,-11,-49,58,45,27,-40,-8,26,-8,-4,43,-17,-15,-22,-4,5,-1,-14,-38,81,26,-29,13,51,28,16,10,11,-27,15,-5,-12,10,-61,60,116,7,26,-1,-2,68,1,22,1,29,-18,-19,-13,31,-28,-6,-10,-33,-8,-24,6,-16,29,-26,-27,29,28,-17,-17,1,96,-31,0,-28,-2,-20,-54,75,-37,-8,-13,12,22,-6,83,37,-5,13,-13,55,74,-1,-4,-5,37,17,14,49,-61,17,96,2,7,36,22,27,14,26,75,-4,72,45,63,-39, /* [39][0][][] */ -72,-31,-32,-26,-104,28,-54,11,-65,-44,-93,-6,-32,-46,-18,1,22,21,36,33,16,24,-9,24,32,62,2,-48,10,-50,-44,-48,-72,69,-36,-35,44,-4,-17,-63,53,-31,50,-30,39,-35,-86,-6,60,-28,-11,-27,46,22,2,-11,-42,-34,-36,-103,9,55,40,-69,-68,59,29,-45,-36,55,-84,-13,29,1,-45,-15,-88,11,14,-23,21,25,32,-11,-2,-24,17,-78,15,38,56,-39,-127,-7,29,-116,6,-26,-16,26,-51,-11,23,-31,-39,-39,-84,-5,-26,-38,13,-94,28,-2,-47,-25,8,-16,14,7,19,-64,-64,-50,-30,30,4,0,31,13,-77,-11,-19,-10,24,30,-81,30,-66,-45,15,41,-28,-23,24,17,22,-27,-41,-36,54,7,20,2,-52,-38,-27,-54,37,60,7,-72,-25,-9,29,26,3,-66,16,7,5,-29,50,-40,28,64,-26,-35,7,24,36,14,-56,-28,3,10,-102,-25,-60,33,18,-42,61,-12,61,-39,-88,39,-23,8,6,-50,-82,-39,21,16,22,31,67,-71,-21,-23,-9,-13,-24,16,-1,-3,-7,-22,-102,16,-35,-15,-102,58,-51,-46,72,56,45,-21,-8,-2,-23,-6,11,6,32,-17,63,-40,-16,25,-48,-36,-25,11,33,-38,27,-13,-71,-7,-53,29,-5,17,27,-23,46,21,-68,55,40,-2,-53,27,-39,14,63,-34,-21,-51,-43,-63,-51,25,2,26,-22,-17,52,44,-29,-14,20,-14,33,-2,34,-60,-56,63,15,-47,22,-86,-38,-24,1,7,9,2,2,23,-3,46,-33,-28,5,-5,-55,-12,-82,66,-7,47,9,27,35,-31,-52,-12,14,32,20,-103,32,11,-33,-37,-4,-35,77,-6, /* [40][0][][] */ 72,-29,46,-2,62,46,3,-28,-21,-2,50,-76,1,65,46,36,-11,80,41,38,12,-45,-26,23,-9,105,16,-23,-10,-14,35,-47,22,14,-28,42,-38,50,46,58,-2,87,52,29,-2,0,94,-33,-32,57,-12,28,-12,11,-10,19,-25,21,-11,-4,-15,1,13,29,37,-24,-16,92,-14,-5,40,10,8,8,3,91,59,20,13,14,-7,23,-11,33,10,26,-22,-12,-21,-45,-25,-2,70,-35,24,-12,-7,-52,38,-26,64,50,22,80,-34,47,-24,-54,20,-25,40,-11,-15,-45,-12,-25,4,31,-92,13,18,40,64,25,83,62,23,-6,36,40,26,33,-14,-42,55,-31,-16,51,63,-55,-27,22,74,18,8,33,-26,27,-6,-20,10,-22,0,-21,-71,10,51,-69,8,7,14,61,27,8,70,43,-3,19,2,-47,-33,-31,-1,-18,-54,-19,11,4,-24,49,41,-36,-4,100,22,37,52,-33,49,-60,0,47,6,12,-14,-46,127,29,11,-16,-17,1,17,-15,-15,-11,-8,-16,-1,35,101,-6,-2,1,-68,12,25,0,17,11,-21,27,11,-24,69,-22,-67,-35,35,20,0,-23,79,35,3,-25,-9,16,56,10,-24,-22,-7,-9,-25,-22,69,-32,50,38,-20,2,10,2,-16,-6,-38,-21,66,-14,35,-6,103,25,39,-18,41,-37,44,29,39,-44,67,-37,-68,67,14,-39,-15,20,15,-21,23,31,-69,45,70,-9,7,-11,58,-41,39,28,71,-8,11,107,-12,-8,7,-2,48,1,-25,-33,32,13,-59,61,55,-14,84,0,14,-35,-12,-9,13,-6,-13,9,85,37,-33,33,34,46,-31,-40,12,-44,24,57,43,47, /* [41][0][][] */ 31,1,-35,-25,-37,9,-1,9,-8,3,-6,-38,-22,-31,17,-13,-26,-27,31,1,6,-36,15,-50,-9,-7,-41,-2,25,-13,-25,-18,0,22,-10,-26,-52,-10,-24,8,-30,-114,-14,-42,-3,-12,-46,-15,3,10,8,13,9,14,11,21,-31,-31,26,-28,-19,-58,26,-11,32,-16,10,-109,1,-28,-40,14,-22,-40,5,-93,25,4,9,-25,-36,-21,6,-57,-31,-13,-34,-19,-56,24,-3,40,-33,-6,-3,36,9,26,0,0,-5,-21,19,13,-9,-3,9,-3,9,-2,-37,-15,-24,14,-6,8,23,-5,23,-29,27,55,-6,-14,-9,0,8,6,10,-36,-17,11,12,38,-28,-30,-35,35,-6,13,22,10,-19,38,-5,10,-18,-110,21,34,-9,-32,10,-8,-26,-17,-18,30,2,-11,-27,-69,-12,35,14,-24,-9,6,-8,-16,-11,18,7,21,-45,2,0,32,21,-11,26,-13,2,-10,-2,-4,-19,-9,-41,0,44,20,31,19,6,-8,-127,-25,5,9,-5,14,-37,-26,3,1,27,-29,-33,-31,-117,-18,26,-1,-6,-1,-3,5,1,43,17,-22,5,-17,-9,6,2,13,-3,-31,40,25,30,-26,17,-9,11,-9,-25,17,-5,4,30,-30,20,5,-119,-13,-9,-1,10,19,-35,-15,-28,-2,7,-9,17,-3,15,-11,-123,-43,-20,-31,15,-3,10,14,27,-8,21,26,24,-27,21,9,26,-27,24,34,4,-21,4,12,0,4,34,-16,0,-11,-58,-4,10,8,22,6,-17,54,18,-6,44,-3,8,-35,-61,-8,11,10,-17,4,-14,16,-21,-2,27,5,-18,9,10,24,-90,-20,-45,10,-14,2,-9,17,-2,-10,43,-42,5,23, /* [42][0][][] */ 15,3,-21,17,-18,13,-11,-10,-20,47,-4,-2,-29,8,18,45,14,39,14,-37,-64,-3,-4,-26,40,-8,-5,-1,-20,-35,36,-27,-2,6,32,35,36,19,16,45,9,122,17,10,59,-42,108,-1,42,31,22,37,-9,-20,-36,12,-24,5,27,-8,-62,23,21,28,-24,4,52,127,13,-4,67,8,-27,15,-26,103,-42,60,48,-15,16,-4,53,86,12,-6,-28,6,-18,3,-16,-3,62,-24,15,30,10,-47,17,-10,-3,-7,41,27,3,-51,11,-4,13,16,-5,17,-24,-61,45,28,-41,-6,-35,-26,-27,18,-48,-2,2,-31,-13,26,-2,-60,-38,-23,61,-4,39,-1,-20,48,55,-35,-40,-12,-73,44,-13,1,-17,77,-4,55,-32,18,-40,-3,-10,-16,16,-5,11,-56,22,99,72,18,-29,-20,-20,11,52,18,36,-25,0,8,32,9,31,16,-51,-34,8,32,-7,83,-12,-40,-22,-36,-1,41,-6,-4,19,45,-17,-30,63,-25,13,-19,-33,2,-15,52,-15,35,-55,-7,-36,-49,105,23,10,35,-44,21,47,9,-55,-40,6,-24,-10,-12,-25,-11,0,-36,23,-23,-43,0,-43,-12,14,-25,3,-31,-12,-58,-16,10,-44,16,8,55,88,45,-57,-5,3,-11,8,-65,7,-25,-10,-44,-26,20,-17,-8,74,-17,39,-4,34,-14,-43,-38,-7,61,-22,12,16,-47,3,47,45,56,11,48,-9,21,9,-1,-26,62,-18,-10,-30,-10,38,27,10,-31,33,-12,47,0,40,38,-22,-11,-9,19,68,21,7,66,-38,-22,13,-6,5,19,9,-52,-9,11,14,5,80,-70,-29,18,-4,24,25,9,19,11,6,45,-9,56, /* [43][0][][] */ -35,25,-20,-69,-6,73,7,-25,23,11,-9,28,37,-50,-20,8,-6,-35,7,34,17,-37,-41,-58,-31,-30,16,-5,-17,41,3,21,39,-40,-80,48,-2,20,-13,-11,-27,-100,-14,-53,5,-47,-110,-37,39,-21,22,6,-2,-71,44,-7,-13,-17,-15,12,-39,-15,-12,-60,-34,-23,32,-127,-11,-42,-44,-28,0,36,-2,-67,11,-15,-33,24,-55,17,-28,-15,67,-25,3,22,-39,-15,-48,12,-31,-9,66,2,54,-22,-54,18,9,-20,-13,-14,-5,5,-6,42,48,-38,18,-26,12,49,-1,12,-18,2,-15,2,-26,-20,-42,-56,-54,38,-41,-24,29,-45,22,-18,35,-24,-45,21,-6,-9,-7,-8,-44,-2,-25,-20,13,-30,1,-64,-15,-24,-10,26,62,-4,22,18,22,-23,41,64,-17,-52,-64,79,82,11,-47,5,62,-52,13,-50,40,29,61,0,-18,18,-1,47,9,-13,7,-36,48,12,18,-48,56,32,-8,-3,35,-27,-50,-12,-73,16,40,-5,30,41,32,-26,-21,-26,-12,33,-4,-17,-78,62,-19,3,33,-7,30,46,-15,-2,35,22,-4,95,20,-35,58,54,26,17,-31,40,-1,9,10,11,21,46,43,-7,24,72,8,10,-85,1,-78,8,31,8,-15,-4,-10,-18,-44,14,-1,2,2,26,6,57,-98,-42,36,-52,13,-11,-29,26,-1,29,34,-29,-3,-55,-37,55,44,25,-44,45,-21,-55,-56,-11,1,-66,38,-19,-41,5,-74,-33,10,57,39,-38,21,-36,-21,29,-55,1,-37,8,-31,-15,49,-9,48,11,-15,-50,-38,-19,-57,37,59,4,-30,49,-97,19,-10,11,51,-21,-6,-4,6,37,-11,-43,-52,27, /* [44][0][][] */ 25,-2,9,66,10,13,24,-8,-25,-38,34,40,-38,28,52,-31,-1,58,34,-16,4,34,-6,-13,-39,-25,17,1,15,-32,-35,8,-38,23,-9,-22,28,10,-9,7,17,107,-32,12,-5,14,93,-2,28,12,44,-14,16,31,-11,25,1,-23,5,54,9,-34,-23,9,24,11,31,127,-27,-13,46,-20,-30,14,-11,69,-25,26,-11,28,-29,22,-21,52,4,3,-43,-4,-12,13,-22,-17,46,54,-14,-8,8,-2,-46,14,31,-18,16,-15,37,22,25,39,4,22,-6,31,19,-2,27,-38,-21,20,-67,-18,22,69,28,14,-3,28,51,-5,-42,33,33,-11,32,34,38,30,7,-44,46,-14,16,-5,17,-9,3,21,-23,93,-4,55,13,-40,3,9,33,-34,-61,-26,8,-23,13,86,-19,39,17,-19,-43,-2,33,-11,44,21,34,0,-15,28,-17,2,-12,-10,9,5,8,97,-37,22,30,-6,-33,-7,8,31,43,26,-46,0,119,11,22,-48,28,26,-14,0,18,42,6,-14,23,-1,99,10,-37,15,22,-17,-21,-9,-38,-23,-11,5,28,-9,31,-71,22,30,-35,7,-32,55,-39,51,-9,-12,-41,27,8,1,-5,19,-25,38,18,3,68,13,62,-33,-23,17,-39,5,24,63,5,49,-24,26,-4,-13,98,-21,47,8,35,40,-12,28,-23,-13,-30,33,15,-10,8,-8,-39,16,-16,-3,-44,30,20,-31,-15,-12,20,-26,18,-37,90,14,10,25,-22,40,-5,-3,60,-13,51,-10,-48,-69,52,-5,-10,14,-38,2,41,5,44,30,-43,-25,18,6,3,24,105,-4,27,-47,-67,51,5,18,-2,7,43,-24,-11,-14, /* [45][0][][] */ -11,1,-4,-21,-4,26,-36,31,-25,37,9,37,22,28,-2,-22,-20,1,39,8,35,-10,20,-24,1,21,-3,-22,35,17,-11,3,-25,30,25,-17,-10,5,-15,2,-30,-127,-20,12,-4,13,-87,4,24,-13,-18,-17,-33,15,13,34,21,-10,-15,25,-61,5,33,-41,-31,-51,-2,-92,17,12,-83,1,-47,7,-15,-88,-6,-2,3,-20,-23,7,-9,-50,30,-10,-21,-42,25,19,-13,-12,-26,-12,28,-20,20,-25,13,15,-25,-26,19,5,-9,-23,-1,2,-12,-15,-12,30,25,-19,-31,-27,19,-26,56,1,13,-28,-8,11,-20,-6,3,-12,30,-4,9,32,1,-33,2,-30,-6,-3,-28,-14,-28,-7,9,13,-21,-32,38,-57,-22,4,8,12,24,-1,21,-10,-30,42,-28,-15,18,-67,25,-23,-8,26,-7,0,-45,0,-29,-3,-55,5,17,19,-35,-10,-38,-4,16,-8,-2,-37,31,9,-9,31,-5,-10,-19,-30,-19,-44,21,15,-80,16,-16,-23,22,5,-5,-7,8,-11,-9,2,4,35,-110,-22,14,-50,-31,16,14,-12,-20,-21,-46,24,-44,30,3,32,19,-4,-3,15,-11,-63,-39,-7,-26,-40,-17,54,4,-6,35,-32,-1,-22,-1,-9,-74,3,-8,-12,38,-35,-5,13,-30,-21,29,22,19,23,7,26,-96,30,-34,-30,-32,-30,22,9,-18,27,38,7,-38,11,-40,30,-38,-17,-15,10,-24,26,7,-26,2,-35,-8,2,28,-11,-54,21,-4,-12,13,15,-2,7,0,11,33,-4,-11,-9,-69,9,-43,-17,-17,9,-8,28,-32,-18,19,13,19,10,44,-13,-120,-11,-12,1,-14,5,-38,5,33,2,36,-9,-49,-20, /* [46][0][][] */ -22,-44,-4,-76,-14,-12,-59,-24,-30,-24,-3,2,4,-5,16,-2,19,6,66,-30,-36,64,-5,-46,-6,11,56,12,49,3,-12,0,-68,-49,-13,15,-30,-11,-61,8,-15,-92,2,-6,-29,-1,-73,-26,-32,-24,23,35,4,4,26,-35,-36,16,-13,15,-46,6,34,17,2,-5,23,-103,-5,18,12,6,-6,33,33,-101,15,41,14,1,1,5,13,-54,5,10,-35,24,-13,-3,-4,-2,8,40,-9,2,-30,31,-24,-15,52,-14,-42,24,-18,-7,-7,15,-31,22,-10,-28,30,26,20,-12,45,42,-10,-48,-5,-71,4,9,-3,51,-2,13,-8,-45,-44,10,62,-11,-31,-24,-10,54,-2,21,7,-33,-47,-10,-95,-74,-28,-50,-12,-9,-48,35,0,22,-5,-7,2,-13,-16,18,-19,-46,36,41,-43,4,3,-17,13,24,-29,-11,-21,31,0,-35,6,16,-33,0,39,0,-11,-53,-37,33,54,19,34,-33,15,-2,47,-15,-29,-11,-127,-37,15,-39,7,-11,-70,-18,0,-1,-48,-22,-16,16,-121,-51,-27,18,24,-13,28,-4,-6,-19,-54,-14,18,-26,31,-21,-7,76,-14,3,3,66,8,34,-8,-19,23,16,10,-33,10,-19,-40,-25,4,11,-123,2,-60,38,-10,17,-3,23,-31,1,-4,-3,0,-47,23,-1,-122,-29,-33,-41,46,10,22,21,4,46,-7,0,19,41,-21,18,16,-18,-50,26,-8,-54,-46,-31,16,-60,37,-28,29,-25,-71,-2,-25,-11,35,29,-21,-23,62,33,-15,27,-11,59,-83,-4,42,9,36,9,-12,14,2,-26,1,43,17,-15,26,23,-101,-25,-6,19,-25,-17,-53,-5,8,-19,16,-19,9,26, /* [47][0][][] */ 54,37,-38,19,45,1,30,-37,-22,-11,30,-22,-36,22,-1,-28,-23,-18,23,15,25,7,-35,30,42,21,32,-34,-20,10,-29,-7,62,50,31,-62,23,-15,31,19,-29,89,40,-54,-8,-21,78,-21,37,19,-21,36,0,-26,1,30,-30,14,11,52,17,-16,-1,-12,-30,19,12,91,-37,-35,25,31,-36,10,-34,96,40,21,-32,5,30,-4,5,52,28,19,55,28,-21,17,40,-28,48,-5,-2,-8,-27,64,-15,55,-15,13,-24,29,-15,4,15,36,46,-24,6,22,-31,-25,-8,25,-46,10,0,27,-2,27,23,-34,65,-31,32,3,-45,-29,23,21,59,-32,12,69,1,20,97,-27,23,12,23,-6,50,-26,48,90,9,63,39,2,13,-3,-35,57,-18,-13,32,5,7,61,-7,5,-65,26,4,29,12,43,58,-12,-63,18,-6,-32,-21,-12,18,6,5,11,-1,93,-25,-9,36,16,-7,16,18,-26,-34,-24,-14,-34,76,9,-34,-39,37,-22,41,-2,44,-28,29,-44,10,10,82,12,8,-41,17,11,20,-9,9,28,-31,-39,-2,21,112,11,-56,5,-17,12,38,22,-1,-21,-18,-6,26,-25,12,12,-21,25,29,1,-23,-38,65,6,-34,21,-32,-5,-34,-16,7,-33,20,-29,-10,34,19,46,116,13,-4,27,35,58,-21,-13,-14,-16,8,-69,-9,27,37,2,8,8,-48,-20,30,-14,-8,12,41,37,-34,-28,-7,5,36,-3,-37,31,0,127,18,-6,29,-46,-44,7,21,-8,42,-2,-31,-3,-45,12,86,37,82,11,43,-15,70,-55,44,-16,61,-2,13,-41,33,36,2,-38,35,8,-38,-21,-26,-56, /* [48][0][][] */ -25,24,-22,-11,-117,37,3,-15,2,-43,-92,-12,-43,11,24,-23,11,-28,20,-33,-17,7,38,33,5,-2,-17,8,-11,-20,15,2,6,-10,9,4,23,-29,-13,2,21,-59,-8,5,-12,-38,-46,40,22,12,-7,3,-20,16,4,-5,-12,-55,-36,-67,-48,8,-25,26,-1,32,-34,-85,4,22,18,36,0,-60,-40,-60,-30,-51,-31,20,-29,16,25,-59,-76,30,-9,-2,5,-12,4,11,-58,24,-33,74,-14,-7,30,-11,-28,-1,-18,-4,2,7,-56,37,-52,9,40,-7,-51,-17,-54,-34,11,16,14,23,-36,-42,-6,-14,-65,18,25,12,24,14,45,-33,-29,-15,5,-14,-17,-25,-94,-19,15,5,9,-4,4,-50,0,-94,13,17,3,13,-13,-38,6,14,26,-41,0,-62,11,-28,-6,22,-13,-14,-28,-6,23,-49,41,-35,-5,15,-15,-18,13,-14,-67,14,9,2,-45,-101,9,-12,-7,16,-4,54,-20,14,-1,-14,-18,18,-61,-10,43,-3,-14,-2,-26,14,33,26,41,-4,6,13,-38,-39,12,12,-50,-5,-20,-32,-19,21,6,-5,-5,-13,-91,-44,-11,3,-2,18,-55,11,-10,-1,-8,5,6,-4,25,37,-29,-30,36,-25,5,24,-24,-12,-24,-4,-10,-21,-6,-34,19,-8,-6,31,-14,-4,-10,-24,-64,-14,-12,28,-12,21,17,16,-17,-21,-29,-15,-4,-2,14,16,-23,29,22,23,2,27,-20,-14,32,-26,29,35,-27,4,-17,-35,-1,-54,-8,-97,0,-37,-5,42,30,4,6,-62,4,58,35,-16,14,34,-30,12,-127,7,-52,-8,42,-33,15,-18,-67,40,46,29,-11,-65,33,28,-34,-18,-5,-1,-20,31, /* [49][0][][] */ 44,-50,42,52,78,32,38,-12,-24,23,43,-43,38,54,-69,33,17,-1,14,18,-32,-17,-20,33,3,-50,27,11,18,-82,-30,42,-6,-21,-28,-37,-27,7,18,50,2,92,-8,4,-3,14,82,-42,37,0,63,-34,-47,-6,12,-15,21,52,-71,65,2,-4,5,-43,-48,33,29,112,13,-42,41,59,49,65,34,75,-53,63,83,6,33,4,79,117,-42,31,13,-6,-23,5,17,-45,76,-21,-20,-42,-56,-59,4,0,15,13,26,12,36,18,44,35,61,41,-24,82,3,38,71,9,1,-1,-5,-57,-7,33,-21,54,72,-20,-51,50,-60,-74,28,-32,35,4,71,-10,-44,14,33,-57,44,-41,21,-18,42,54,27,59,-61,-78,-31,-8,22,2,47,23,-5,33,35,-28,32,36,-6,-29,31,10,-46,0,30,2,-32,-20,-44,81,-12,-3,-2,22,68,-20,62,-21,-20,95,-51,15,-68,71,-11,-37,-4,-13,24,-12,-41,-14,127,1,34,-6,14,32,5,-10,-36,-23,24,-10,-39,-32,82,32,70,-11,-20,64,50,-10,-59,25,12,-25,61,12,16,15,33,-13,-44,-62,-22,23,16,44,-16,-10,-33,-84,25,36,21,69,3,-54,-12,-37,117,31,-5,16,57,23,54,-18,-23,21,-27,-11,18,-29,-19,-19,55,-27,-43,35,-22,28,60,-30,63,3,-34,59,-76,-33,113,-8,28,32,47,57,-39,-70,3,43,7,-29,-63,-39,31,-17,104,30,34,3,32,33,-4,25,41,9,-8,-2,-13,48,46,28,0,66,10,53,78,-4,79,30,51,-11,15,-43,-18,-8,107,14,-9,62,-51,27,-6,-12,8,32,15,3,-4,6, /* [50][0][][] */ -2,-35,65,4,-40,4,-64,38,-29,1,-88,11,-22,-72,20,-51,58,-43,0,9,22,-18,-12,-10,-21,18,52,35,-25,-50,-63,24,-8,13,14,-63,2,-23,-7,40,-25,-20,-58,-43,-6,9,-69,-26,-31,11,-1,15,-42,-52,-11,-37,9,-42,-16,-104,16,39,3,24,-20,-33,17,-48,-19,21,-36,-22,-70,-17,40,-34,-10,-62,31,16,-22,-20,44,5,8,-43,34,-17,16,-3,24,20,-56,-21,55,-5,9,24,35,28,19,24,-20,16,-19,-36,-22,12,-38,22,49,-50,46,30,-25,11,42,-37,21,-16,-23,-26,-10,25,-113,40,-20,-22,-6,-57,11,-15,-15,-3,-55,-32,-2,-81,-61,7,21,4,20,33,-18,-28,-29,-105,8,-20,-17,2,-43,-9,3,-41,-31,2,-37,-5,-34,22,17,3,-9,8,-58,-60,-38,-7,7,57,16,-12,2,-23,50,-23,-3,-22,20,-27,-64,-95,41,34,31,32,-30,-28,-6,7,14,7,31,57,-59,-6,-25,-18,4,50,-33,-12,-11,-26,-23,9,5,55,-51,-34,-26,0,29,-13,-3,-31,-7,-9,-53,-15,8,-54,-79,-48,2,-25,-8,-22,-1,-68,-16,21,-55,-49,27,-9,-24,46,27,38,-56,12,-49,37,5,58,0,-19,27,46,-24,-36,17,-39,17,59,8,48,16,0,-59,73,35,-5,-31,-29,43,-26,18,0,-62,60,30,-4,-72,-19,3,40,7,14,28,54,30,23,21,41,-18,18,19,-17,20,-20,15,-14,-15,-127,40,29,-44,10,-19,15,3,-21,-3,-30,3,-3,-30,13,-65,-30,-114,-58,-18,14,-20,24,6,41,-15,-76,-11,-59,5,-102,-9,10,16,21,-12,45,7,8, /* [51][0][][] */ -26,-6,-42,-25,11,-7,-19,-21,-4,-3,50,-12,11,-5,14,-31,-12,-22,-1,-33,-12,-28,4,23,-7,39,-11,-33,-15,-3,62,28,54,-13,-6,21,7,37,22,-23,7,-83,47,9,-6,-30,-76,18,42,43,35,-33,18,26,26,-15,-20,32,-3,24,12,-47,-27,3,-15,-16,31,-115,2,14,-69,11,-8,-4,-37,-48,6,-43,10,-36,3,24,38,-76,-48,-18,39,-14,35,16,35,27,-25,29,29,-5,26,37,31,-19,2,40,0,2,-6,2,12,-38,19,1,43,35,-35,7,24,18,18,-1,41,0,-46,-54,-12,21,-11,-13,-4,-25,-7,31,43,-46,16,-1,-21,22,15,-9,36,-6,-15,-8,3,-5,11,-45,-20,-95,-16,-13,-33,5,-46,-5,-24,31,-42,-14,-15,31,-30,-101,-21,15,-27,-33,-18,19,6,-23,1,3,42,13,8,39,20,-22,-33,-25,-33,10,0,11,1,0,32,-13,4,37,-36,26,-30,-9,-18,2,-98,17,-37,8,6,10,-8,3,-6,-25,21,-43,-14,-39,-127,9,22,-24,24,-60,4,-17,-5,23,-30,-15,15,-39,11,29,2,-2,16,-4,3,-37,48,-21,16,42,-20,-24,-20,5,-44,1,3,12,49,21,-95,27,-13,-4,-2,-12,41,-11,12,-18,-34,38,10,13,15,9,-97,29,9,41,5,16,-15,-17,-51,-12,22,10,-10,32,24,-40,17,-19,-9,18,-27,42,2,-34,28,19,10,-31,-26,-17,-63,7,-30,11,31,54,8,-9,30,-43,0,-16,-9,36,-71,18,16,19,38,-24,-14,-43,55,-10,-17,12,-3,1,32,15,-116,43,33,3,17,68,22,21,-1,-55,-52,-10,-25,-17, /* [52][0][][] */ -65,58,-14,57,-56,-60,-47,-34,-32,64,-80,39,4,18,11,-17,12,39,-34,10,22,-44,11,-7,6,-3,57,26,27,-3,49,8,-36,-45,-38,30,-49,-13,28,6,14,-36,-74,-77,-39,43,-10,-21,39,-39,31,-15,46,23,57,-63,4,-21,-17,-124,42,-1,-17,8,-36,-58,-45,-43,10,-4,-83,10,41,-30,-9,8,5,-15,-6,7,28,28,-35,-21,65,-32,20,-17,-1,-23,-11,38,-28,-28,-40,26,-39,-6,5,-6,-66,-23,-14,0,-16,26,-10,-43,-103,-35,20,-52,49,19,0,17,14,-27,-6,19,-23,3,19,-19,-43,-3,-87,-25,24,9,-16,-37,-10,10,-30,18,-23,-24,-127,-27,62,26,34,42,-62,-11,-5,-62,55,-29,14,15,14,27,3,-4,-22,56,-46,-61,-28,-50,-38,26,9,-21,-33,27,22,-49,24,-4,-1,3,-35,29,41,11,57,47,-32,13,40,-61,-45,3,22,-22,-92,-57,-22,-30,-7,-14,12,-13,-49,0,-49,-14,27,31,-5,0,19,103,6,-26,28,5,-60,-60,35,-3,-89,-30,44,44,35,-36,24,24,57,-33,-107,-29,-19,-35,13,-9,-4,10,6,14,37,-35,27,37,-60,-25,-33,-29,56,48,-56,-26,-3,-14,-34,12,-75,44,-18,-24,-16,-29,26,-20,-14,-19,22,11,-16,16,-9,-27,-8,-22,-38,40,14,-31,48,46,-29,-45,21,5,-56,-27,-16,-59,-21,-13,-7,33,42,13,4,-25,-13,-7,-35,-12,46,33,7,-91,65,-23,28,2,-49,-11,27,-15,5,-35,-53,2,-13,-65,-5,-5,-89,46,36,-12,-17,24,-8,-22,-13,67,12,-43,27,-95,-50,29,45,-37,-3,-50,-17,54, /* [53][0][][] */ 20,-8,-21,65,6,-62,38,-60,58,-46,76,73,35,-38,-15,18,-44,-43,18,30,21,24,-48,25,-57,56,29,-19,-21,35,17,-5,5,31,39,2,-7,-16,42,56,-75,101,30,-60,-15,35,65,-33,-10,67,-2,-22,43,-35,15,36,-35,32,-52,-14,-36,32,-29,-28,43,-32,27,121,26,-14,24,33,25,30,32,98,-33,26,36,-38,82,-55,43,111,-30,-7,-19,-33,57,4,33,50,100,65,-17,-20,-82,66,37,-29,4,11,11,50,39,-56,-10,-49,55,-10,-2,-18,2,-2,-32,-34,11,-48,-23,-10,8,24,6,20,-5,52,-2,25,-5,27,-14,40,-19,61,-9,-2,49,-30,39,13,-40,-40,-10,-11,30,52,-9,51,-43,18,-30,-31,9,-30,-32,-52,13,-36,35,42,-13,64,-40,-42,-56,-74,-52,-63,-41,-27,-26,-26,1,-27,-13,-5,32,-20,-34,36,-24,-28,38,108,-5,4,-8,23,48,-25,-11,55,3,6,2,17,127,-53,10,-45,25,22,-44,0,-41,7,-45,-35,-49,-13,75,-3,2,-41,14,-53,-30,2,-17,-29,-33,-22,-44,14,-5,-12,-6,17,46,3,21,-25,-23,45,-56,47,48,18,-6,48,47,46,34,-3,-12,-12,47,-30,-18,17,-3,-59,-50,-60,-17,5,26,-30,-48,-44,-2,-15,87,-20,6,-20,-61,-53,-9,81,55,4,-26,0,11,-26,1,53,6,-24,5,21,-53,25,18,-15,-27,-15,9,-39,24,76,116,31,34,-13,66,75,-31,18,28,92,22,-36,7,11,69,55,24,-75,-65,-36,70,11,30,-51,-27,29,1,5,28,-56,107,1,12,8,41,35,45,12,52,22,-3,63,-4,10, /* [54][0][][] */ -14,-8,-37,67,-20,-17,-4,-36,-21,6,-61,5,-46,-39,14,-50,-2,41,-20,1,-12,24,6,27,-10,12,41,19,7,-22,-9,-19,-30,50,5,1,-6,-29,-27,54,14,96,6,29,3,5,63,-27,24,-7,-8,-13,33,22,10,3,6,15,-25,-41,45,24,10,-14,19,-37,-2,127,-31,-53,12,-4,34,-8,-7,70,58,-13,-4,-4,-14,-24,10,58,-35,26,-10,-37,25,42,17,-29,-3,2,9,26,-42,38,31,-18,47,12,4,11,-13,2,0,30,-80,-31,-6,44,13,20,-17,13,15,12,3,-29,-34,31,48,14,-11,-12,19,-5,17,-12,26,38,-5,-27,-14,-19,0,-8,-45,25,26,-2,-49,2,-17,45,24,82,-21,-32,-22,-22,-19,9,54,-9,14,-22,18,-1,-26,67,-33,-4,15,-11,15,-32,26,-2,-15,31,29,-17,-37,44,-34,0,-10,-37,-26,-7,-18,7,3,18,-5,-14,-32,-62,-21,-8,0,-41,-20,-1,91,5,1,-25,11,-14,2,-10,-23,-7,-1,20,-11,-11,116,20,-12,45,-36,-1,14,-1,-29,21,-17,11,-3,-46,-11,15,-17,10,2,14,42,40,-3,-10,26,-24,0,12,-34,-13,-3,-27,-41,-25,-22,-15,107,-2,1,-50,0,14,-29,-32,-10,16,-1,12,8,28,36,-4,105,8,40,43,28,21,16,29,-24,-10,-29,7,1,22,34,16,6,18,2,18,-34,13,-18,22,-2,22,5,5,-13,-20,48,14,14,4,-48,-20,-8,-14,27,23,5,-22,6,0,55,-32,-2,5,9,7,18,4,-55,0,3,-31,-10,-33,-4,40,78,-5,-24,28,11,-34,-20,18,-30,-9,-32,0,10,35, /* [55][0][][] */ 22,-10,24,6,7,12,47,-35,-8,-23,32,-34,17,-27,-5,29,1,20,20,-15,16,-30,-24,9,-7,5,-12,6,-15,17,4,15,-9,6,-8,8,-11,5,17,23,15,127,34,11,-18,4,51,5,8,2,5,-19,43,18,22,4,-16,30,-28,0,35,22,-38,-5,-24,5,18,100,-15,-19,31,37,-7,14,-26,52,3,-18,21,7,24,-2,-18,57,21,6,3,38,-4,-7,-17,-20,62,-26,-10,-8,-3,-6,-2,18,-25,-11,-16,24,11,6,-21,-1,1,-5,-24,2,-7,-6,-11,-27,-14,14,-9,7,-20,20,-3,6,2,31,-22,0,-6,26,18,24,33,10,4,12,-1,-9,30,-2,10,20,11,-24,2,24,-39,72,-27,0,17,28,18,-26,-14,15,27,-29,-6,19,10,68,-23,-6,-16,22,-10,25,-19,-16,26,20,-25,-3,21,29,13,-45,-8,-9,38,-7,-25,64,1,8,11,-15,-9,31,-22,15,-18,8,-2,-4,95,3,-27,12,11,20,-27,34,48,5,7,-12,6,14,83,-32,-17,33,8,-2,-11,8,6,23,6,-29,11,-7,-20,14,5,5,5,-31,-14,17,-16,8,-14,-2,-2,-6,15,-21,13,-32,-21,-41,-12,-21,70,3,9,-16,30,9,8,-26,-4,24,-29,-14,13,-29,-21,-10,67,13,-29,-6,-3,19,23,13,15,23,25,8,30,14,2,-33,20,-2,34,11,1,-22,-20,8,-11,22,-15,6,8,-30,60,0,-13,-29,-18,9,-20,2,-15,2,42,-8,16,-4,61,-2,-23,-28,-7,13,22,27,40,-8,-10,9,1,9,41,-17,79,-9,0,19,-15,21,17,10,-1,21,-25,1,24,16, /* [56][0][][] */ -22,19,-15,40,-41,21,43,9,16,-7,6,4,-5,14,-19,-2,-15,-6,-7,-30,7,19,-18,8,-39,-21,42,55,-31,15,7,-9,-25,0,-13,-2,-18,-24,13,-27,28,127,-13,-15,4,13,78,7,16,34,16,-3,-23,-20,-47,15,23,19,14,9,28,-15,-19,-3,-33,-17,-14,123,-29,-33,62,18,35,37,0,52,-25,8,-12,32,16,-19,-2,59,3,5,-32,26,21,19,3,11,49,5,11,2,-31,-16,22,10,-51,31,-18,6,4,-10,-23,-46,12,-25,-7,28,-32,10,7,-40,-7,-12,-16,-5,-25,1,4,-12,4,8,-12,7,-5,-24,-3,-28,17,-37,15,9,15,32,-23,-6,-3,7,22,24,51,30,0,56,3,16,-32,-9,39,9,-17,-23,-26,-37,30,-7,0,64,41,12,7,6,-51,-5,-14,32,23,18,-41,29,-27,33,-18,11,12,-15,2,-6,17,35,12,-9,9,24,-3,26,7,22,-17,4,28,13,83,9,-34,5,35,21,-21,-2,22,28,-27,-37,-12,8,79,21,7,1,20,-26,-36,16,-16,24,6,-11,-15,-29,-32,-34,10,12,31,16,-4,-33,-4,14,33,3,-7,-2,-27,15,-9,6,-36,-18,15,35,92,-20,32,-44,19,13,30,11,-3,-2,12,24,21,-26,3,-31,107,-19,9,-14,12,14,29,14,-15,-2,23,-22,23,-26,-37,-39,-28,-1,-16,35,-16,-32,-24,-2,-12,-12,-44,16,-20,14,72,8,13,23,-14,-12,22,3,-5,-4,31,1,17,-6,40,24,17,-25,-16,31,34,8,3,-33,-22,-2,-20,11,23,14,108,5,11,39,24,-41,-25,34,3,-12,6,15,-22,-8, /* [57][0][][] */ 27,-36,-21,0,71,20,29,-15,3,-9,86,32,-41,-24,-20,12,5,41,32,0,-1,-12,-9,32,-22,6,-42,-33,-25,-22,-53,15,-2,13,-2,0,27,-15,32,-4,-25,-27,25,-27,0,3,9,14,-11,28,21,-4,-29,-17,3,2,-15,47,25,115,-25,15,-22,27,11,-5,-11,-8,8,15,-8,17,-16,38,-28,-22,-6,-28,25,4,40,21,4,-24,1,3,-11,14,23,42,-21,32,57,6,-5,-14,-10,5,-11,-15,-10,-6,34,-14,-3,15,23,-11,56,27,-18,24,38,3,13,-1,-34,-7,1,-2,-8,17,-26,12,74,-15,8,-2,-14,-9,8,-26,-15,-16,30,9,26,1,97,23,22,25,-11,-12,30,-1,9,20,17,-4,-34,0,-34,11,-5,9,27,11,17,30,-14,-30,13,30,17,7,2,19,29,-21,5,-18,-10,-31,-24,-39,-28,43,-9,-9,14,0,16,83,13,-3,-14,15,33,-38,23,6,0,-5,-10,23,-3,-20,-2,-3,46,-30,-25,-31,2,-31,32,-1,42,-6,-40,16,-27,18,-26,-32,-2,-14,-21,-35,5,-34,-2,16,127,-29,1,-10,1,-6,-29,-25,38,-31,20,-10,53,10,-2,-17,-14,-35,12,-9,31,8,-2,-15,3,36,-5,-1,12,-21,14,4,-18,19,1,-18,-21,20,-44,-12,-3,20,37,13,17,-7,-31,53,-1,27,16,3,25,-2,25,-22,15,-27,-26,43,5,-4,16,8,-19,-22,-27,-39,-15,16,16,-22,20,115,-12,36,20,-13,-22,0,6,-11,-17,-14,8,6,2,27,44,-23,64,27,-2,23,-5,-30,21,-42,-15,12,10,21,-13,57,-24,3,-25,30,-13,-25,37,25, /* [58][0][][] */ 57,10,31,31,104,-27,28,-9,5,-2,120,-7,4,23,6,52,31,-11,6,35,-22,-8,44,31,6,-39,-40,16,-29,10,-17,-23,57,-19,29,-6,-3,-17,24,-9,9,22,16,-27,-9,-5,73,-22,21,2,29,29,-26,19,20,46,3,-2,31,100,-8,-16,-31,-10,-29,-13,25,46,-69,-20,-1,-29,-26,52,1,57,-10,-3,-43,29,29,6,-14,77,-59,-11,5,24,-14,-29,-44,3,70,36,21,31,23,-3,27,-14,-36,-2,-19,-15,-9,7,-6,-16,76,37,9,3,27,16,-1,-26,43,-55,-36,-47,-6,40,-11,38,65,-39,44,-11,-13,-11,10,-26,46,0,63,-34,-36,19,126,-8,-8,10,8,-5,48,-46,-8,78,-49,-29,45,43,14,-44,22,-23,48,-39,23,-31,0,27,35,12,-26,48,26,-19,29,10,0,32,2,20,-37,-32,12,2,15,48,31,-26,26,114,12,-26,-13,3,-1,-15,-31,-39,-27,-56,5,35,29,17,-19,37,-9,7,-29,-13,4,-16,-4,19,-14,47,38,3,-1,-49,-24,-22,-10,-13,33,-2,1,-2,6,27,127,-24,-49,5,51,-35,-9,18,-23,14,-17,-15,15,-1,-16,-30,17,23,22,-41,0,40,0,8,32,8,3,37,24,15,-6,-20,-13,31,14,-50,-5,3,21,-4,-26,7,4,-14,-42,25,32,-32,-8,13,24,20,10,43,29,-5,23,-53,33,-6,18,31,20,-3,19,46,-19,31,69,16,-9,19,7,126,-14,43,39,-11,13,12,-36,-31,0,-46,17,-9,-19,29,19,34,98,-16,0,-16,33,-15,11,7,16,-22,-43,-3,-28,121,-74,31,18,29,-52,1,-18,-40, /* [59][0][][] */ 24,26,19,34,-30,-2,-18,58,-38,27,-32,1,-28,-65,25,0,-8,48,17,-13,38,-6,-21,20,-18,42,-39,0,-14,14,-10,-33,-37,-34,-35,-23,61,-7,10,-34,38,127,77,48,14,-27,50,29,-35,0,25,-21,-38,7,19,7,-5,32,-19,-20,0,-54,54,-44,-17,45,-37,102,0,-41,62,26,17,-48,-18,13,-37,3,48,34,-19,5,-3,76,-6,32,-22,-11,3,17,51,35,-6,-1,-31,8,47,-21,-52,-4,-20,-2,-55,-8,23,49,-14,8,-49,-9,13,23,54,-29,-33,-28,0,2,34,-16,-6,-10,7,-36,-49,-2,5,-55,55,-29,-24,-30,-31,-36,11,-24,45,-49,-63,-43,49,23,-3,-14,35,37,-24,71,-37,-21,-6,-27,-37,66,-19,0,17,-12,32,-12,22,78,-10,-12,46,-36,-4,9,-15,-6,-10,5,44,7,39,-39,-11,29,-79,-31,38,34,32,-19,-17,17,-11,-5,-9,-20,-44,10,-16,-65,-3,28,97,-43,14,10,-8,7,-64,-12,-6,2,-15,-41,76,-25,90,-60,26,52,-1,38,14,-26,15,-1,-85,-20,-21,0,-43,-24,28,2,36,-9,-4,9,19,-53,-20,53,17,-19,-18,33,15,-9,41,-27,-18,30,74,14,8,-11,26,-12,7,30,25,-17,-55,0,-39,19,-54,74,108,-29,13,1,63,-20,-1,18,-61,-23,33,64,36,-25,4,0,17,-16,-83,46,-61,3,0,10,37,17,50,0,47,1,85,64,17,20,-29,-56,5,36,-29,20,-26,-1,36,-22,36,21,16,-24,-6,-10,43,53,-79,8,-38,-14,-32,36,10,-20,69,-21,-6,38,-17,-22,6,-1,36,40,2,47,3,-38, /* [60][0][][] */ -11,-58,18,14,-27,18,3,0,-15,-4,-68,24,-3,50,-1,-40,38,-31,-2,26,-23,22,-11,37,-7,10,28,-28,16,-2,10,38,9,25,-8,25,-7,-28,7,-5,-9,97,16,64,-22,-12,92,-22,30,24,-10,33,-6,-7,-46,58,19,11,-2,-22,32,-27,-21,15,-44,0,3,89,-20,31,87,20,33,-35,-55,54,-18,-16,9,41,24,42,-19,52,6,-43,36,9,62,-12,-11,-12,-46,29,27,-10,39,73,-7,-2,-16,7,-29,-18,-10,13,8,-2,9,42,-10,-7,0,-8,24,-24,37,18,9,8,-19,6,15,36,-65,64,4,12,-6,-50,-33,17,-12,37,-18,-31,-30,-39,-73,2,-26,-4,-3,-31,-9,11,19,92,-12,22,-42,-39,16,-75,1,40,25,-16,-10,14,-4,55,1,-15,19,27,-19,-36,-29,31,-30,-26,5,-40,-26,-11,-40,32,40,7,12,39,-11,59,-23,-31,55,3,-9,12,15,-10,-39,-8,-27,-36,127,6,-4,7,16,-28,-3,-2,-18,-60,22,-30,18,-4,107,-42,-28,3,-2,26,-12,8,-12,-9,41,-6,-4,-8,-35,49,-36,42,5,19,-30,8,-13,-17,-17,-4,19,0,20,-32,-23,-4,34,-36,-23,4,100,6,-23,7,15,-29,-12,2,-1,4,15,-17,-5,-19,-2,-19,114,-52,3,-22,32,16,5,13,35,-37,41,25,48,-32,17,39,45,-18,26,-12,21,41,19,5,43,42,33,-25,-72,28,100,19,4,-26,31,-75,9,-17,-36,-2,8,8,-3,-18,67,-34,-21,20,22,24,13,-41,-104,10,28,-6,-1,-9,6,23,104,-41,-27,22,-35,-52,2,-5,-72,-3,26,-14,-24,38, /* [61][0][][] */ 24,1,-44,13,-92,36,-38,19,-19,-16,-76,-18,25,37,3,17,-18,-8,72,26,-81,17,32,65,31,51,29,-26,-39,-25,-35,-1,-70,-49,-19,45,-44,-7,10,17,-24,57,-24,29,37,9,39,49,18,-2,-25,8,8,26,59,38,-32,59,5,-78,44,53,5,27,27,24,-17,87,4,92,88,28,-27,-21,-75,7,-44,13,-22,38,-37,-37,-54,45,50,-46,-27,-15,27,25,-6,21,-38,-35,18,-46,-52,-15,-32,-66,11,-17,24,-2,-22,-41,20,30,-100,13,-41,-65,-2,-10,-30,37,-45,10,16,-50,-28,-25,-25,-16,-36,-13,-7,1,10,36,1,3,-25,-27,-31,-33,-7,29,-55,-30,3,10,46,-45,-4,79,-11,19,11,2,22,-28,-33,53,-33,-39,-40,-11,-13,-8,11,97,-10,70,-31,-19,3,-52,-67,10,55,0,7,37,-26,-9,-55,38,47,15,8,-28,7,-9,51,-15,31,-14,32,39,-50,-38,-24,1,0,-30,34,14,27,-45,0,-54,63,21,54,-2,-23,34,-9,-46,43,45,90,22,32,25,13,92,8,16,6,15,-54,3,-73,44,11,-52,12,66,15,-41,3,-42,22,14,-23,-33,-31,-89,-8,-32,4,-26,-14,34,39,35,-8,16,-31,-52,18,-37,-29,45,-58,47,41,22,0,-55,65,-21,-1,-56,-31,-1,-19,-6,33,49,-36,12,-39,-29,-22,0,4,8,40,-2,-21,-67,-13,60,-39,34,18,-5,38,-8,65,-5,-17,47,0,-127,25,82,-14,-1,7,18,5,-61,60,-2,-30,-31,-47,25,-51,-48,-69,8,-11,9,-30,-42,-23,36,54,1,54,22,24,-69,17,-51,-14,-10,32,46,4,-50, /* [62][0][][] */ 33,-11,-25,32,71,-6,66,17,39,5,73,-7,20,-11,-2,-2,-20,4,8,50,-28,45,2,50,-17,50,-20,20,-56,-40,-40,26,-2,-4,-27,27,-13,3,-2,-7,-19,63,-34,-2,-24,7,43,50,-16,-33,-12,-7,17,43,26,8,7,1,-11,43,3,-25,-7,25,-14,-2,-24,73,27,1,-25,-14,-30,53,14,47,28,-9,45,16,-6,-18,-1,20,-53,-7,25,18,-32,-4,16,19,53,-5,15,15,20,-6,-12,1,27,6,-9,-13,-40,32,48,8,82,-13,-8,57,10,4,30,10,-8,-1,-44,-33,-8,73,23,3,81,21,-17,18,2,15,-20,28,-7,-5,10,-41,18,27,106,20,-23,53,32,-25,49,30,12,36,43,25,-32,-17,-40,-3,29,26,25,-17,-19,-11,-14,52,-6,2,-50,5,-12,34,11,-35,40,-22,19,11,-43,-10,0,-5,-5,-32,6,32,-22,93,-4,-40,13,-43,-19,26,3,17,-15,-36,9,-4,72,2,-1,-18,19,20,13,2,21,18,10,31,-25,2,65,44,-11,-28,27,-27,25,24,0,4,-1,-10,-11,26,127,-20,-23,24,-24,-13,-18,-15,39,31,45,-46,-29,-43,-12,10,9,-9,13,11,11,-38,38,7,-25,-1,-6,-22,-12,9,15,8,-30,17,-7,14,-34,3,63,-24,59,21,-51,11,41,28,-38,27,-47,34,35,-13,-19,11,-54,18,-14,-52,-2,-23,-18,-16,6,70,16,17,37,-8,83,-29,-59,3,3,46,-13,11,0,7,-26,-6,-3,-4,59,-10,28,25,18,21,68,29,73,-10,-13,-42,-41,44,15,22,81,7,33,-31,20,57,-10,-21,58,13,-10,-49,40,0, /* [63][0][][] */ 1,-36,23,0,-57,2,13,-75,34,-36,-108,-1,1,-44,-36,3,-17,-34,-17,26,12,-37,8,-7,-3,-39,36,-74,-48,17,-12,-11,-47,2,64,-29,-8,-16,-21,19,18,44,11,-28,-17,-106,30,-19,-8,-14,15,-20,18,7,7,-38,-18,-17,-5,-60,-28,-8,-19,74,-45,62,13,27,15,-30,55,-15,55,-66,-63,24,-60,8,-8,-23,-10,43,-41,61,-6,-36,37,15,-23,53,-55,32,-83,5,-5,-31,-44,58,72,-55,-13,-37,0,12,-30,25,33,67,-73,-33,-11,10,-40,-3,-43,-3,44,-49,65,5,-14,-50,46,-40,-72,-39,-15,-40,-4,-20,-79,12,1,-7,-8,-2,23,10,-91,-28,-18,13,-6,26,-47,-24,58,-34,3,-36,-2,-31,-18,-19,16,-49,-28,57,-2,-18,-12,62,-21,-43,-87,-36,-7,-24,1,-59,-73,-72,64,71,-39,-32,-36,55,39,-43,55,13,9,-43,-28,-6,-2,-40,1,-2,35,29,-10,15,4,-16,5,54,-4,11,-16,27,17,28,1,-49,-38,-62,25,45,32,-31,12,23,9,-2,9,-2,26,14,0,6,-31,-1,-67,-43,6,16,-26,14,-30,-23,18,7,-20,2,-43,-59,17,-16,26,122,-8,24,-17,4,52,19,10,-14,25,46,5,-81,-18,-2,11,-3,9,29,17,-29,92,-28,-39,-39,9,36,48,24,-7,43,-2,27,68,37,-22,-4,-7,-56,33,11,-30,22,47,-40,40,9,-23,8,19,-6,33,-8,11,33,-1,-127,32,-21,13,-28,-32,2,27,-61,91,43,-1,-2,35,26,-45,35,-116,45,-1,1,30,-7,27,16,101,-49,15,-10,37,-98,-10,20,63,-54,6,23,-27,43, /* [64][0][][] */ 47,29,32,-39,122,2,-42,-26,-10,-30,106,43,-22,-1,-23,23,3,-52,-61,23,-64,7,-54,14,20,-29,2,-7,13,-28,-27,-3,11,62,-38,-18,-25,-11,40,34,53,40,-9,14,-7,18,86,12,-30,14,49,-31,-4,8,31,66,-3,-15,54,127,-5,0,-33,32,34,-39,-25,40,7,28,-27,15,-23,-9,-39,21,-25,41,54,-37,3,-33,-53,54,28,-15,19,8,40,-79,-6,-58,95,-77,-36,-53,48,22,-17,12,26,-44,-27,-1,1,-23,-28,58,108,1,9,38,-6,-12,41,32,48,-39,2,-56,22,45,108,45,95,20,-10,51,-55,-12,73,-8,-13,45,32,46,22,25,118,-77,-41,-21,47,-34,39,-28,-35,69,-37,88,-24,20,37,36,0,20,61,11,70,-8,-4,-9,-85,30,4,51,-49,25,47,42,-14,-73,-19,2,-40,74,34,84,-41,44,36,25,4,98,83,30,-25,-9,-53,60,18,8,23,5,-38,13,63,-69,-35,-28,-7,16,7,39,-19,-80,22,50,-37,65,15,67,-18,-11,-14,4,11,2,-35,-19,8,22,51,22,84,63,-7,-8,-27,11,7,-33,-15,3,35,23,5,7,1,15,-5,-48,-45,-41,39,-14,-1,-57,24,8,-36,-34,-40,-28,-25,-18,-41,-12,13,31,-21,-19,38,-4,-44,-30,16,-6,-4,28,-5,14,46,-51,30,-14,25,-6,-24,43,-6,-15,-1,3,9,14,18,15,2,44,46,10,35,-19,-46,-12,-27,125,29,73,34,3,-45,5,-22,18,24,69,1,-15,39,2,99,56,105,-49,10,65,1,-26,1,-20,-21,8,-32,11,42,94,0,-2,-2,-11,36,-8,38,-34, /* [65][0][][] */ 62,13,3,25,14,-5,75,6,-10,24,-1,-1,25,2,-21,24,19,-12,21,12,14,20,8,-15,-2,14,-27,17,4,-2,3,-32,-9,45,-20,28,-15,-20,8,-15,18,96,24,11,-10,-26,87,-51,13,-27,2,-59,-22,-5,26,-9,25,-10,-22,33,-9,9,-16,-5,18,-7,-20,109,-33,-11,52,-14,21,-27,-18,70,-13,18,41,-30,24,35,16,104,10,-11,22,38,-11,44,-40,2,51,22,7,0,8,-10,-29,42,26,-4,37,-4,16,-45,43,11,66,42,-12,8,4,36,2,2,-11,20,-14,24,17,7,35,-20,1,-35,9,21,29,-20,-41,-11,-41,16,26,7,21,-11,17,0,1,3,-11,-38,-28,38,5,85,24,-20,36,28,-19,-1,0,-6,-9,15,-51,21,-26,88,-23,-2,9,16,-18,12,-38,-7,-16,-18,4,13,-42,-9,-2,-32,-34,-3,-56,-33,-55,61,18,-17,-21,-27,8,35,16,43,6,5,-15,-14,114,-4,25,2,19,-40,-30,-34,7,-11,-3,-9,-41,27,104,-5,-20,-27,-27,-14,-4,-29,-14,33,-18,6,-21,39,-2,-13,-19,15,-22,-9,-9,-30,-6,37,-14,21,11,-12,37,-15,-42,-4,-39,31,16,14,67,-17,27,9,-23,-26,-12,3,38,-40,10,-7,40,36,-20,-41,116,-9,12,-13,35,-34,11,-13,11,-13,45,-43,16,16,-43,-7,-23,14,13,4,44,3,-2,-18,14,50,3,-31,-6,21,95,-30,18,-23,30,61,28,22,37,-29,-13,-23,-12,20,63,1,39,28,2,0,24,4,23,13,5,31,-16,0,-19,29,127,46,17,-2,-9,26,5,-20,-2,-48,-34,65,-26,-33, /* [66][0][][] */ 16,-13,-22,12,50,31,39,-6,8,41,22,-19,16,13,4,6,-9,14,52,30,-46,14,-5,37,-3,27,1,-2,5,-12,-16,21,47,-44,-26,47,9,-19,38,14,47,96,-35,-54,-30,16,64,-14,34,-38,18,-1,11,4,-16,21,-19,4,23,28,-36,30,22,-7,38,-7,42,127,12,45,15,-24,0,54,-50,50,-3,-14,21,-12,-33,-28,-24,57,3,-11,4,11,-4,11,-9,5,55,32,32,-8,18,15,-1,-24,-7,3,-2,0,-14,6,39,-6,62,-25,20,22,-1,-6,29,21,-33,8,-46,-1,-21,43,-39,1,41,-10,11,42,13,7,7,19,-13,28,37,-11,8,-11,83,26,29,-2,19,4,14,-30,8,66,-36,-12,2,-22,-17,16,30,13,-12,-8,-11,33,-19,72,-40,-11,-18,-11,29,10,16,16,31,-17,-2,-51,8,-7,34,-23,35,49,-8,7,-2,114,17,-16,-15,-23,27,-29,-8,-42,-16,-23,25,-34,124,29,22,22,24,-3,1,-22,-18,29,7,41,8,-19,127,-8,24,-2,4,4,16,32,75,17,-7,-19,10,25,87,-7,-25,20,-20,45,9,-19,-20,-34,-44,-29,4,-26,-9,11,32,-54,-4,-12,-32,26,120,40,-13,46,-13,25,-48,19,-16,-10,-36,-6,-5,14,29,-2,73,-28,-13,41,42,-1,13,5,14,-11,-1,-21,-22,-3,11,19,-20,80,-35,21,3,2,-11,11,-25,30,31,19,19,2,74,-56,-37,23,16,75,33,34,7,-12,1,48,-31,-25,59,-20,-17,-50,23,-26,65,-28,98,7,-55,9,24,-16,11,-28,111,2,10,35,10,52,24,-11,-28,-18,14,33,-28,37, /* [67][0][][] */ -20,17,30,0,-20,57,-22,10,45,-8,9,-3,-20,27,-47,-20,-8,13,-22,18,50,49,9,11,-26,36,10,8,-27,23,-34,-11,5,11,15,-2,37,-33,-18,15,-5,-126,10,-11,-2,26,-92,-24,17,-14,-11,-4,10,7,34,-5,-35,-32,12,14,34,-21,-38,1,-24,-7,1,-127,-27,33,-44,-30,-20,-8,20,-96,-13,1,-11,-36,2,-61,-28,-66,13,-11,27,-12,24,21,-5,-17,-33,-3,13,-27,-30,25,-33,-17,3,10,19,-42,-12,25,-31,3,-23,19,21,27,-3,-7,-41,-11,-17,0,-32,12,4,-32,-3,-29,-20,-25,-46,9,-11,-19,8,-5,-2,-6,0,-17,-2,-13,-32,2,-12,7,-18,-27,9,-17,-21,-94,-12,-8,-34,33,3,7,19,35,3,-10,10,3,22,-43,-13,4,-6,-20,39,44,-19,-6,-27,-13,19,18,-11,-3,9,16,-9,26,7,-21,-4,-76,-34,-12,13,-1,27,11,-19,11,27,-44,-15,17,-124,-50,26,-30,3,2,-25,9,-10,-36,-15,-39,10,3,-104,-55,25,-26,-27,11,-7,9,-10,18,-31,-25,8,7,5,16,19,-7,5,2,18,-13,-23,10,-22,11,2,-32,-38,-15,-6,-6,-28,-1,15,10,-111,49,-20,-15,-13,29,-2,23,-16,28,-17,22,-4,-13,15,3,-71,-14,-22,-15,2,-27,14,-5,-36,4,-20,-14,10,6,12,4,-23,-1,6,26,-18,15,25,11,-13,-37,34,-12,-11,-28,-67,8,-38,15,2,-9,-22,-8,16,4,2,-11,3,13,-63,8,20,-18,-25,-16,-28,11,20,28,-30,-28,-27,0,9,-46,-69,-21,-9,35,-18,2,14,-12,30,4,54,-46,32,-16, /* [68][0][][] */ 6,-17,-39,-60,-41,-39,-45,-25,-15,24,-34,-39,-23,-35,19,73,9,-3,-10,-45,64,-43,-37,-23,65,-43,-12,-25,2,-5,4,-43,-54,0,-64,-1,-35,-12,-55,-42,-11,-127,-16,29,75,-56,-93,-45,14,-40,17,37,26,-21,33,-54,39,10,40,-43,-23,10,13,-52,-2,-24,-43,-116,10,27,-45,-1,-4,14,0,-85,-25,-47,6,38,2,30,23,-107,-5,16,66,-47,34,38,-48,-46,-47,-20,81,6,-1,-48,-35,4,31,14,18,87,-6,8,-63,2,-28,-34,-1,17,-16,-82,-49,-29,12,69,-15,11,20,12,4,0,-13,1,5,4,2,20,14,18,-17,-13,-46,15,45,7,1,61,-13,35,60,8,-36,-60,-25,-19,29,4,-73,-23,50,-3,16,-108,-38,2,-7,18,34,-45,-39,35,10,11,39,8,47,47,21,28,-26,-7,59,-4,2,-1,37,6,-60,-42,45,-64,47,-21,-18,-28,-31,11,-47,-5,28,10,-44,-51,-82,2,73,-2,5,25,-8,-7,-55,56,41,24,-14,44,-58,7,33,-18,-19,12,-15,-38,-6,-61,13,5,-2,20,-41,-16,20,-19,-8,0,-26,70,37,-53,17,-25,-23,-3,-8,49,60,-11,-72,15,46,-53,-46,26,-13,-22,-59,-25,-7,-3,68,65,-46,20,4,13,13,-27,-88,10,8,18,25,19,-47,3,51,-19,56,-61,-96,-7,-29,44,60,49,-41,17,71,-16,-23,9,56,-20,35,23,-5,-2,-54,-25,-46,7,78,-21,21,-8,-55,25,-21,-42,36,-20,-33,-3,-56,31,-47,17,-22,-6,-6,17,4,-55,32,9,36,-48,-80,82,20,-35,36,-60,-55,-3,23,3,-23,-54,-26,29, /* [69][0][][] */ -72,-35,29,56,-57,-2,-15,58,54,-12,-100,7,13,-39,2,-7,-31,24,-16,-45,-34,-50,18,2,46,-49,46,-28,-25,-4,-24,3,-73,5,-6,12,3,23,34,40,35,102,-20,-20,28,1,54,51,-31,20,-16,26,-1,9,-4,-6,23,3,-8,-37,36,-20,-19,-26,-65,38,-13,95,49,6,-20,30,21,-36,-28,84,-15,0,17,29,74,26,-88,107,14,-27,-33,-37,17,32,-50,6,-85,-29,-60,29,82,-3,7,24,-41,21,13,39,-38,-28,42,-51,-62,-20,0,-34,54,31,-5,8,57,2,-15,-35,-52,-40,12,11,-50,10,-49,-1,-7,10,-42,-6,-13,-18,3,31,-9,12,-127,-44,-3,-15,1,24,44,-7,45,74,-2,4,-13,-21,-5,37,-35,40,-8,-32,-2,31,30,37,42,21,-54,13,25,24,-64,-5,-11,13,3,-8,-31,-37,17,-24,-15,13,-48,35,-30,9,-20,17,41,58,22,-18,0,-50,4,-37,4,9,66,7,-35,-32,34,0,-8,35,-36,27,0,40,-21,10,79,-56,30,19,-1,-6,38,4,-33,13,-43,-1,24,-45,-84,-34,-48,-43,41,17,21,18,7,23,-13,-43,34,29,6,-1,-45,-72,27,28,-5,-28,73,14,49,-31,34,80,-13,-34,-22,28,-34,-31,61,-73,31,12,75,-50,-50,-14,-19,26,-34,-35,-51,-1,8,-9,43,20,-29,58,-69,13,27,22,-4,-27,-15,47,-6,-2,-14,-5,44,-45,34,-28,-30,21,-88,-93,-29,35,-24,-6,60,-22,24,-10,22,-46,30,54,42,13,16,12,-119,-47,10,-71,47,-21,-3,-11,22,32,-8,39,-24,-73,45,-24,24,-5,2,19,-12,25, /* [70][0][][] */ 3,-36,-42,-70,17,43,23,5,2,-81,-8,30,18,-25,-24,18,46,-9,-8,44,32,4,-45,0,54,72,25,-45,1,19,87,-73,19,38,-18,-28,-40,-21,-84,-19,21,-94,25,-47,3,-34,-46,-9,-98,43,-33,-38,-9,-27,-27,39,43,-9,-58,26,48,-18,-47,-32,65,-27,-37,-111,-41,-49,-14,-51,9,45,-35,-110,43,53,-29,14,-19,73,-51,-64,18,75,51,35,69,-16,-32,58,8,-18,-17,-34,14,-18,-63,-12,-7,9,-52,-58,-20,24,16,-37,-29,-10,53,21,-3,-5,-11,58,-48,-22,-21,65,-44,5,-63,60,-8,-4,-20,-57,11,3,4,-14,8,-18,-50,-24,34,6,78,16,38,0,-6,39,17,61,-30,-58,17,-10,16,-6,27,40,3,-36,-18,-15,-15,12,25,-103,11,-22,23,-52,26,39,63,-65,-19,-52,35,19,33,-32,13,22,-4,-31,42,31,-73,-59,-26,-108,-40,-65,18,5,18,19,-26,67,-9,-15,-127,34,26,-33,-21,-24,22,-37,27,11,24,1,5,14,-124,56,-62,-2,13,-14,-26,13,-65,-74,15,33,-59,-23,55,-18,34,8,13,16,40,-67,77,60,11,20,11,-1,-42,-10,-89,38,13,-49,-19,-5,-123,55,-8,-29,27,29,21,1,-46,78,99,-9,-96,61,-53,-51,-117,-11,49,23,9,-65,-25,-63,32,7,-28,-59,-60,-57,-78,-29,-31,-19,-45,8,22,-43,-57,40,-28,-31,-32,14,11,-15,-87,12,-9,47,9,49,-3,-71,4,-92,15,44,-36,-2,-65,13,7,22,35,50,-1,-91,67,-53,-29,38,38,78,0,6,-125,39,24,18,-44,51,-12,-35,66,11,5,-96,2,-17, /* [71][0][][] */ 9,-53,60,-12,42,-2,-41,-2,-1,8,12,63,-82,22,13,-15,-23,-14,2,29,-62,9,-71,-3,-21,-5,26,16,-10,47,-9,8,93,50,-22,11,-56,34,49,-50,35,34,-33,-51,-4,-46,23,-26,47,7,1,-30,-44,-23,80,5,-46,66,24,91,-9,35,30,5,-20,-34,24,54,22,-37,59,-62,-16,41,24,71,-27,-57,26,-6,61,23,4,104,7,8,16,-10,-15,-21,-45,14,83,-5,-47,-21,-24,-4,-23,53,-39,-28,31,3,-13,-23,57,39,86,-35,11,64,-29,-43,24,-43,-24,23,-2,20,0,24,-18,44,92,-39,-2,-54,27,19,-3,-39,-26,56,65,12,40,-46,127,-17,44,35,-26,-39,-50,-4,-53,25,-42,11,24,4,34,-8,-20,9,89,27,-55,14,-74,54,-37,5,-30,33,-42,86,-12,48,32,-24,-24,-14,31,2,-42,-15,-53,51,-38,34,-12,69,-33,0,22,15,15,-27,-20,-12,-32,-11,-30,13,46,19,-31,-19,23,-3,3,43,-13,-7,-38,48,20,-9,70,4,-36,0,27,37,-24,15,-32,-39,50,-7,36,-5,118,21,20,-1,23,40,48,34,-14,-4,-15,70,12,32,2,33,-6,25,-43,-19,-43,-20,96,25,-7,-5,19,15,29,5,-23,14,-14,-24,-23,-39,4,-20,56,-18,-23,-19,51,-14,-29,22,32,-34,-3,-30,9,33,6,-20,-20,0,30,-21,-30,13,1,-5,11,42,-51,14,48,36,-4,-12,37,-49,-35,35,47,1,4,-39,-30,-10,49,8,42,-58,-4,-13,50,0,30,39,99,35,5,9,0,35,-14,11,76,-25,-28,17,2,76,-44,-8,31,4,-48,44,-80,-20, /* [72][0][][] */ 13,22,-39,9,96,-3,-17,-8,37,-38,53,-36,26,-3,1,-58,-38,8,63,20,-72,40,44,-13,18,9,-72,-63,-13,25,-20,-14,33,11,-38,21,-14,-38,11,22,-28,127,-3,34,-9,-14,64,-8,33,22,35,19,16,-27,-13,23,42,22,34,51,2,48,-54,-3,-19,-63,38,96,-38,46,39,-17,24,33,16,67,10,1,-8,29,-48,-13,8,57,-24,1,18,35,-7,0,3,42,87,-6,-36,29,29,18,39,19,-4,38,-26,44,29,-29,-10,6,86,-8,0,23,-48,29,65,12,31,23,0,-25,2,12,-32,20,63,-5,37,-11,-2,7,-21,-13,33,7,-4,39,-19,-4,106,-8,-29,-12,7,45,31,11,-13,102,9,-28,-50,-24,20,-55,36,17,-5,-1,-18,16,46,64,-36,-10,-2,-53,22,-19,-32,55,35,-3,-19,-26,18,44,0,-38,-44,-11,35,-8,35,127,-25,41,-76,-50,11,8,-3,-15,15,-3,39,51,123,-17,-58,0,2,25,55,-49,40,-7,27,-6,-38,13,89,13,-17,-31,41,16,0,-9,41,-5,16,-33,6,-39,77,29,9,49,-20,13,-28,0,41,6,-10,-36,6,-6,-10,-23,73,2,14,3,3,12,67,1,-28,45,7,10,-13,-12,50,48,-56,29,-5,-7,-5,32,71,-47,22,23,-11,-5,-47,47,-10,-6,36,-16,-34,-45,-28,25,51,-30,-40,-6,-19,28,41,54,51,23,-18,4,4,19,53,-1,-10,-27,-4,93,48,-37,20,24,-5,7,-65,28,57,-3,66,30,-5,-27,79,-26,41,-12,-4,-54,-10,-13,22,-34,85,18,17,4,-8,100,64,18,-66,-1,-44,31,-41,41, /* [73][0][][] */ -2,27,43,8,5,-13,-15,9,7,10,16,-32,11,25,-44,17,11,5,-24,26,-5,22,-7,-28,22,-14,15,50,5,-5,-5,7,-28,-8,-8,4,5,-11,-53,-16,7,-127,36,4,34,-37,-80,1,19,-52,-16,4,23,20,-23,7,-9,20,10,-26,33,-21,-1,-27,5,-55,29,-122,35,19,-62,-12,-49,-22,-14,-79,46,8,-5,-21,5,-44,15,-43,45,-15,-2,47,-37,11,-2,-3,-57,-17,18,-8,-5,17,6,-28,-34,-61,-37,22,4,-1,-42,23,24,1,7,9,-16,41,-2,-30,-4,-19,2,-12,3,-1,-14,9,-14,49,22,54,-1,20,-27,-16,-13,6,-30,15,-31,-18,-16,17,15,-22,52,3,14,-28,-38,-94,-27,52,-47,-9,-26,5,26,-14,35,6,23,-32,35,-74,-3,-11,20,28,-16,-4,35,-15,-7,2,33,20,0,14,-20,-36,-32,36,34,9,11,-30,15,24,36,-22,7,-13,-13,41,-33,27,-41,-23,-81,25,34,-9,9,29,-5,-16,-17,17,1,-7,-11,-7,-62,-49,-34,-32,0,23,3,-45,24,13,12,-43,21,-5,18,8,-18,-17,1,-3,-18,35,-17,33,3,61,2,6,-15,-33,-12,39,-34,6,-1,-27,-92,-16,13,17,32,-9,-43,28,0,4,-60,-5,44,-29,-14,-2,-77,-16,-5,15,-35,-5,14,-15,7,15,47,-16,-46,11,18,-26,-8,9,9,-9,-25,22,-8,21,16,-12,0,-7,-35,51,-80,-23,-17,-15,15,5,7,-17,-8,-4,28,-10,-11,7,-81,-20,32,25,-12,32,-30,7,21,30,38,6,-9,10,-19,-23,-83,11,-12,56,20,28,-23,0,-21,-6,-14,-3,-29,39, /* [74][0][][] */ -66,20,-40,-75,-102,36,-1,29,29,-16,-69,-13,-10,19,10,16,-54,-85,9,63,56,-3,10,-23,11,17,-77,-29,-9,-33,-5,-19,-15,33,-28,-5,-25,32,-36,43,-32,-122,37,39,-39,-32,-79,11,53,17,-44,-32,-14,7,-6,13,-18,-32,-25,-85,2,24,35,5,-40,1,-19,-114,-7,23,-22,3,60,-14,13,-77,57,-49,-7,39,13,13,3,-98,4,-43,-1,-14,10,-71,20,-65,-91,31,31,2,32,-34,24,-30,-14,-27,20,-49,-58,70,-62,-35,-39,34,-69,0,-49,3,54,25,-36,-43,1,-18,-14,-8,-59,34,-55,7,23,17,-17,11,-39,49,-34,-20,-14,15,-21,-19,-109,-45,-9,30,20,-8,4,-41,20,-106,-23,27,-9,-26,45,1,2,-16,-53,20,-30,-6,-16,-58,-13,76,20,-2,8,29,13,47,-8,25,-10,-25,9,51,-18,-48,-26,13,-26,30,10,-85,24,21,-10,-3,3,-11,64,-26,30,29,-45,33,-84,42,0,24,14,41,-33,-33,46,-29,26,71,-21,-2,-67,11,12,39,-24,-5,-34,3,-15,0,36,-10,-12,-27,-94,16,-17,0,-12,-11,29,22,-16,58,26,13,-16,-26,29,-31,6,22,17,-20,-41,-22,-89,8,41,18,36,-23,15,-33,3,16,-8,13,19,-36,4,-4,-108,-12,3,-12,-40,-12,-14,-10,30,15,22,9,-11,-24,33,-52,38,-14,18,70,43,-25,-86,2,25,-7,-28,5,-7,4,-43,-21,46,-40,15,-96,-13,-12,3,2,-16,8,-40,-6,-49,36,32,-36,8,10,-48,-57,-127,19,-32,-4,71,-9,27,-38,-55,2,-14,-17,-31,-24,5,-12,-1,-19,24,8,31,-14, /* [75][0][][] */ 11,-8,18,17,-2,9,-22,18,-28,-34,-6,-4,57,8,-29,-4,-5,-15,22,7,-2,25,-10,26,25,3,-6,15,-23,-8,22,-25,-7,6,-7,28,12,14,-19,22,24,-127,1,-16,12,-12,-77,-2,-8,16,-8,47,-24,-34,-27,17,17,17,-27,1,15,36,-36,-1,20,6,-42,-114,0,-17,-7,-3,-10,8,-15,-76,9,12,-12,20,18,-5,-7,-77,8,-8,-19,-6,5,-8,-12,-25,-49,34,31,6,-3,2,6,10,8,-11,-14,-28,0,-8,-28,20,-28,6,18,-32,10,34,-24,-23,18,1,10,25,-27,-37,-17,1,-42,-6,9,-18,-1,-21,18,12,25,17,21,9,13,-18,-32,-2,17,13,8,-7,38,9,-10,-99,8,-11,-10,-9,12,2,-11,-4,-32,-24,-8,0,-14,-99,14,15,27,-7,2,-36,-12,16,21,-20,7,-4,-11,8,-26,-29,1,22,17,-7,-4,-42,19,-21,-20,-4,-26,14,-3,10,15,5,26,1,-95,11,-20,40,-5,9,-2,-8,-2,3,-24,22,0,-32,-110,33,17,-48,-9,-23,15,9,5,-15,11,21,-16,-44,22,0,-1,-25,27,2,-10,9,-16,3,-28,-27,-27,-21,4,0,-5,12,14,-25,-6,28,-109,28,13,18,-15,25,17,-22,17,13,-22,-28,10,20,24,-14,-85,2,4,-22,16,9,-30,-13,8,1,-25,23,41,-9,18,-20,-10,8,12,-18,-15,22,-32,21,2,23,22,27,-14,7,-71,17,26,-5,-25,-30,-4,-20,-22,-7,-34,6,22,18,-38,3,-4,-21,22,3,-49,21,-29,13,-25,-5,-29,-25,-12,-43,-104,21,7,9,6,13,-8,23,-5,-40,-7,-19,5,-31, /* [76][0][][] */ -16,35,26,55,-113,40,13,3,-67,-19,-127,-26,-25,-24,12,70,-12,11,-21,-41,41,22,-7,33,-11,24,-64,16,46,43,-5,-55,-31,-19,-13,5,21,-16,75,-48,-52,113,-2,26,-77,-18,33,-39,9,-39,-19,-13,-55,56,-3,-13,-7,24,-48,-93,-11,-32,45,-74,0,-22,6,34,-4,-56,42,15,-41,-41,-2,57,-20,78,2,39,0,15,36,23,22,-7,-59,47,-16,-28,27,-2,-68,8,30,37,-34,-50,55,6,-3,59,-48,-46,2,18,-55,30,-103,3,-11,-46,12,-13,-67,22,36,46,-35,-27,30,-50,25,20,-80,12,28,27,64,34,0,1,-41,38,36,-39,-5,-17,-118,10,-46,-32,25,25,-3,30,48,29,-51,-49,-37,-29,-5,-5,-57,44,7,19,67,30,3,63,23,21,53,-81,49,-20,-32,56,38,7,18,15,-26,-14,-6,-23,-40,8,12,-4,27,-16,-4,-45,-31,37,-45,-32,-1,9,-25,54,21,42,57,68,41,-49,33,-9,-11,54,11,18,32,-1,-82,-46,104,-95,-27,-25,-17,-3,19,21,0,41,21,24,22,-4,-115,34,10,-15,-31,26,-9,27,22,30,-46,17,14,-41,-34,39,-6,-47,11,-40,-3,-8,72,12,22,36,-47,19,60,-73,9,7,26,43,-33,-42,26,19,52,0,14,-61,-47,13,-3,-59,-32,-7,37,74,-38,9,90,11,-4,32,-10,7,-3,-28,25,28,33,52,88,-24,-31,28,67,-13,4,34,6,-72,12,14,-7,-59,47,14,50,39,9,-6,-36,-1,11,0,-38,-10,-124,-9,-78,19,35,-12,27,-56,83,1,3,-13,27,-75,-10,-21,9,-88,32,-5,40,-34, /* [77][0][][] */ -42,-1,-9,4,-104,0,-19,36,18,19,-91,23,12,-33,9,-12,-7,0,4,-17,24,9,23,28,-14,13,49,7,-2,-46,18,34,-7,19,33,6,3,1,2,-1,25,-70,-9,-21,-2,28,-77,-7,-25,32,-34,-9,-18,-20,-2,-10,-45,12,5,-110,3,27,-8,-11,-8,-32,22,-74,-28,2,-14,-1,-23,-27,-12,-20,-6,9,8,-22,-7,-12,27,-52,-5,24,9,6,-21,-7,22,-9,-58,-6,-15,-29,-4,1,4,2,-22,-49,9,14,5,3,-42,22,-102,13,11,50,19,-32,-29,-3,17,-17,-3,-19,1,-42,13,-25,-32,9,-10,27,-2,7,42,10,2,10,19,6,3,-21,-127,0,-6,-32,-45,5,-19,-17,-15,-80,22,21,-38,0,22,23,5,20,5,-5,-9,-22,-8,-48,4,0,-11,-1,22,-8,5,-19,-22,-10,-6,26,-1,-20,-15,-12,-5,-10,-14,-18,32,-91,-6,-26,7,-7,11,-27,1,-17,-42,-10,-4,18,-58,-15,-1,-15,11,6,-4,-17,7,-1,-34,-37,23,-35,-63,26,-25,17,44,4,20,-22,-40,-7,11,-19,-9,-12,-102,18,-6,32,5,43,54,-33,-23,1,35,60,-24,-5,2,17,44,-43,22,11,8,-2,-49,-43,3,7,21,-19,-1,-38,21,21,-45,26,20,22,2,-4,-68,2,-1,-4,34,-22,-39,40,-18,-19,-22,-31,-51,2,-12,-17,15,19,-39,16,-13,-19,-7,18,-15,17,0,-15,32,22,-45,5,15,-10,-12,-113,-14,37,-28,7,-10,-1,-2,-31,-43,32,-7,13,28,13,-37,-24,-110,2,31,-41,-19,11,26,-14,-25,15,31,38,-1,-104,-10,7,-3,-24,33,-19,1,31, /* [78][0][][] */ 35,0,-32,23,-45,-30,-17,-30,-26,5,-31,-40,-31,12,43,-17,2,26,-19,-5,-22,-20,18,-49,58,-6,-1,-14,-26,-30,-13,30,-4,-13,-17,26,43,-6,0,14,22,105,9,23,-39,-12,100,-22,-15,19,-6,18,-38,-50,27,33,-29,-10,-9,-5,44,-30,-67,-6,-38,-7,-9,98,-22,0,42,-6,68,1,-7,59,8,20,-15,17,1,-1,-35,74,-49,46,-43,25,8,11,14,-10,25,-22,35,29,-4,-11,69,0,-1,-13,8,24,-15,-25,50,-19,26,-36,5,22,-23,22,30,-13,7,61,1,10,-30,55,24,6,-42,50,32,0,16,1,-32,17,28,10,49,11,-11,1,21,10,-38,42,-5,-1,-5,38,-21,95,28,-38,11,-30,14,-2,-38,-35,6,-3,31,-34,49,54,27,25,18,-3,39,1,2,-40,-13,-4,-34,-19,30,6,-21,7,-17,-21,28,-47,-25,59,-3,-25,26,11,-9,19,-5,-12,-4,17,-20,-12,109,-7,30,1,-6,-11,13,14,32,-3,-27,6,-8,10,95,11,32,46,-25,22,-38,5,-38,-9,0,-29,-9,23,-20,-18,20,-15,-40,-39,28,-15,-22,-19,14,48,-18,2,39,27,-1,-11,40,8,-4,15,103,10,-27,-10,-50,-3,24,-44,-8,37,12,-18,-11,-30,5,4,127,-60,-22,46,4,-25,-32,35,-6,-5,24,12,46,14,-20,30,2,30,-45,35,40,40,-9,-6,-1,10,-39,13,-49,43,64,-42,-4,9,-41,5,26,12,-22,-19,-25,-38,-19,-55,84,-9,18,-19,28,9,57,-51,20,46,40,-35,25,-41,33,53,75,-38,24,3,-8,-26,8,22,-2,5,-62,32,14,8, /* [79][0][][] */ 24,-8,27,40,41,30,-25,11,21,33,69,51,13,15,1,4,17,24,-33,17,-28,-46,-19,-29,-63,-30,50,-57,-42,72,-37,13,60,-31,16,-3,-37,15,44,-2,12,119,36,29,0,-13,90,44,-29,-6,42,10,-13,-50,-3,33,8,-4,8,73,6,59,30,-46,43,-28,15,127,-29,-20,19,-2,37,3,28,94,-31,-19,-13,0,-46,-41,5,34,8,4,-25,9,6,-35,23,-4,66,1,14,23,-16,31,5,-35,-29,4,29,11,-23,51,-23,17,37,24,-12,-33,-32,-16,62,-8,-23,10,-24,11,27,15,-32,-32,20,17,-36,-32,-34,-6,43,-16,-42,-18,1,79,-40,83,60,57,-73,-39,59,-31,-1,15,11,99,22,36,26,-14,-21,-17,7,-3,32,-13,41,62,-54,58,-19,34,-59,3,-71,-22,21,-10,12,34,-20,-40,12,65,42,12,0,-7,0,-58,9,69,-14,14,27,40,-14,19,30,6,-11,30,45,-17,83,8,0,-43,5,-26,-6,40,30,51,-3,-41,15,-12,105,37,70,30,-30,9,62,2,-56,14,3,-14,1,47,40,7,33,-58,51,-8,-34,28,-13,14,-15,-25,-4,-37,-29,-8,-14,12,17,12,-39,-10,48,-31,-12,24,-36,-22,-22,-22,29,24,5,-39,-36,-39,49,0,105,47,-33,-18,-21,-37,-45,20,-16,3,-5,64,-11,-30,102,-29,30,-3,54,47,12,-3,-52,58,25,14,5,16,20,-37,34,-11,36,-18,19,45,-37,-17,-14,-30,-49,15,-3,-7,41,43,-2,45,2,7,3,-41,46,-13,67,3,-17,39,2,1,65,-28,19,6,28,57,-51,36,-34,25,45,6,6,11, /* [80][0][][] */ -48,31,8,-2,-60,1,10,-3,1,-18,-56,32,0,-3,-8,-9,11,28,4,-50,-27,-9,-39,8,-7,-47,-36,-7,-1,17,49,-40,-1,34,-27,-8,29,12,-4,44,-4,-89,22,-21,-10,-58,-90,27,16,-24,24,7,10,-15,1,-44,-61,-33,9,-35,16,35,-28,16,5,12,15,-119,34,7,-11,-24,-18,40,-4,-95,-37,44,-15,33,-29,-8,-23,-46,-33,5,9,24,-20,-8,-36,20,-58,18,-26,47,17,-7,3,-9,25,43,-7,7,-1,6,9,16,-113,29,-5,-12,-18,11,-52,-45,-7,41,-45,13,27,23,30,-23,-68,32,20,-1,-16,-12,4,-3,-61,3,-3,16,-51,28,-71,45,33,4,51,-46,-5,-11,9,-68,10,-42,-3,7,15,27,13,-21,-19,-23,-3,41,24,-76,-30,-1,-32,-14,-5,-26,4,24,-18,20,36,46,17,-37,47,-6,-13,9,2,19,-29,-102,-49,18,0,-4,-13,-12,-8,19,-7,14,44,1,-127,25,39,-7,4,-22,1,31,20,35,7,-3,-35,-24,-110,31,-12,-5,11,-15,38,-47,-24,-16,-15,20,24,12,-67,-21,47,15,5,-22,-4,-11,2,20,22,45,-23,5,25,-41,-33,2,41,-23,23,5,-82,19,33,-6,35,-44,16,41,2,29,15,-4,-26,-15,-25,-24,-116,2,5,-15,-42,-5,4,0,48,-21,-22,-18,-29,21,-16,-38,5,-21,-24,-10,-13,-4,32,1,2,-8,23,12,-5,4,-106,-29,-48,-6,-51,-81,7,-18,-9,-35,25,-9,37,-18,-61,1,12,22,-5,-10,-4,29,-51,-24,-18,-15,-36,-3,-15,36,-100,1,-8,-25,-38,-31,-6,-1,-6,-4,31,-31,-13,19, /* [81][0][][] */ -81,19,47,-68,5,-22,-84,-12,64,21,44,-9,-27,-52,-40,29,18,10,-47,14,4,-33,23,-16,-22,34,41,-13,-6,-59,-2,-15,9,-40,-17,20,18,29,-40,46,-25,-103,5,-19,-46,-9,-64,-7,42,38,-45,40,17,-57,-68,33,-18,-26,-9,18,-57,3,6,-7,25,-5,19,-127,16,13,-68,-28,-32,23,-73,-57,-3,8,-48,-44,20,-35,-27,-79,-11,11,26,-15,-3,14,26,-38,-2,15,4,35,-11,-27,-42,55,22,-12,21,-14,21,-56,7,28,57,31,-72,7,44,-3,4,-13,-27,51,21,-26,-3,-51,-9,1,40,33,-13,-71,-15,24,6,-47,39,-46,7,-7,-9,-14,39,-48,-14,-3,-8,33,25,-63,-3,-41,63,-8,-17,-3,9,-22,-42,77,-12,-12,-82,-19,20,-68,-36,55,36,46,-22,-31,-70,7,6,19,-28,30,-29,-52,3,-26,-6,6,35,-10,2,-67,29,-12,50,-38,0,-48,7,-36,18,43,-6,-13,-72,-28,6,-2,67,-41,29,-35,-20,-68,-3,-25,-61,-61,-63,35,20,-65,29,-18,22,24,55,-25,18,19,27,-11,51,33,33,4,-33,17,22,-52,-5,45,74,-36,85,-31,-16,-18,-34,-2,-18,14,-21,29,-74,-25,7,9,-31,3,33,-17,-38,53,-3,46,-25,18,-31,-17,-50,-18,17,-7,-30,-50,46,16,6,-27,-2,41,-38,26,-58,-35,-52,41,41,-57,21,81,28,-21,-39,39,-28,-40,49,-14,-96,-2,0,2,-18,52,41,-49,36,25,34,-10,-24,8,-72,-46,-16,-19,4,17,-35,61,44,-11,-7,-35,-4,-33,29,53,-94,-28,-45,-25,-4,60,20,72,42,-38,61,-33,-23,30, /* [82][0][][] */ 11,-12,-6,-24,-9,-10,-3,-37,-26,16,-31,19,32,16,35,25,-4,-10,-4,7,25,-2,0,12,2,-23,9,32,14,14,34,-20,-50,-20,-7,-11,-15,16,-6,16,-39,124,4,-18,-9,1,44,4,24,6,-28,41,3,9,2,21,1,-10,17,-26,-1,17,20,-12,17,-13,-21,115,16,24,15,-17,-39,-6,10,83,22,-32,-17,-17,-12,-28,-19,36,16,9,-3,27,19,10,2,24,12,4,13,-14,12,30,5,26,-2,-13,22,2,20,-10,25,-13,3,-6,35,-12,-10,3,46,-19,-3,-1,8,15,1,24,7,-12,-2,-9,4,-2,26,2,28,-17,-22,5,-9,18,-9,-13,-42,-5,-16,14,19,11,-8,4,24,84,-10,-5,23,11,-7,-23,6,-20,17,-1,-6,-40,8,53,-9,-17,32,-9,-22,11,25,-18,-15,-8,-14,-5,14,-5,12,1,1,26,2,10,39,58,6,12,-5,24,-26,-3,20,11,15,18,-9,-28,101,39,-11,27,7,3,-4,5,40,-5,14,9,-4,-5,72,-19,4,-7,2,-20,-23,-3,-8,12,9,-8,35,-12,-6,-12,-2,-10,21,42,9,-5,33,-31,-2,-17,-19,-11,-19,-24,30,16,27,8,11,40,127,-23,-25,19,0,-13,15,-11,-14,4,2,36,44,13,-3,29,95,-11,-29,29,0,-3,2,-3,-19,4,-13,-11,6,9,18,-11,-31,2,-3,-3,8,3,-12,0,-12,47,-23,20,-7,21,77,-14,-4,3,-11,-23,22,-22,14,15,-18,-7,16,22,39,-6,17,10,32,-23,-1,20,8,-14,-9,4,7,20,-33,-4,100,-4,6,-6,-21,-11,12,-6,18,15,1,79,19,44, /* [83][0][][] */ 5,-14,-62,-82,48,18,-6,8,-45,-54,73,-22,66,31,-48,-14,22,-56,82,-26,-9,43,-23,-3,-1,52,35,-32,-8,-20,30,37,6,-67,-37,4,-5,-15,-94,7,56,-85,51,-35,4,-18,-54,-26,-13,-5,2,56,35,41,36,30,-1,-90,5,110,-30,25,-8,-39,15,4,-42,-79,38,-26,-84,5,-60,55,29,-87,-7,34,25,-4,9,6,-2,-56,9,-24,76,86,-11,-21,-30,-49,-15,-39,51,-27,-83,-50,5,16,-60,-1,40,56,17,5,0,25,56,-25,-31,-29,-65,-49,3,4,34,-42,16,-52,-18,-49,40,-6,-4,39,70,-28,90,-10,-60,1,17,18,43,33,32,-25,110,-1,103,-22,11,-15,-5,39,48,-63,-74,25,30,20,-57,39,9,32,31,-44,-28,11,-36,-53,13,22,-1,-72,-5,36,37,18,-19,29,41,-51,45,-35,10,8,8,34,-9,-16,15,3,31,5,87,-42,4,-26,-54,19,-23,-11,-34,-17,-114,-25,-2,-16,0,59,-21,5,-25,87,17,42,-5,68,-118,74,6,6,48,45,62,18,-4,19,15,11,-29,-13,120,37,49,62,-19,3,43,-12,31,2,51,46,52,18,68,8,34,6,-22,12,34,50,-90,32,25,-1,10,30,28,44,-3,0,-1,-7,25,-41,-61,-1,-127,-7,-22,-32,-35,28,-36,14,-10,62,14,58,-1,-45,1,-26,3,-20,-17,58,36,34,31,25,-75,-79,-8,-6,41,35,-43,56,13,31,-35,47,46,45,17,-17,-33,4,26,39,-47,7,-30,31,-44,34,-38,37,62,-14,-14,-60,-33,5,7,0,-116,63,17,-24,-52,23,14,-42,32,35,-4,-82,15,-14, /* [84][0][][] */ 29,16,24,2,105,-29,-4,20,0,9,112,13,19,-36,47,26,-5,4,-3,-18,1,-12,-7,25,-5,-26,44,29,-9,-11,19,8,1,-22,13,-12,27,-22,3,32,-3,44,14,-18,-14,-28,54,28,2,-5,6,4,-22,9,3,26,-30,5,-14,121,-13,-31,25,3,-43,12,-8,57,-34,14,-28,10,3,54,-21,51,-20,-3,-42,-16,52,-23,34,-9,-4,31,-14,-14,36,44,-34,-24,64,-38,-21,-13,-13,-17,-4,11,6,-18,34,1,-11,-23,48,10,78,14,-9,20,8,16,27,-33,-27,-13,-31,-22,3,28,3,11,93,-7,-9,1,-32,61,38,-1,-36,-1,11,14,21,44,127,-12,0,-40,50,1,10,-34,-40,74,56,-2,37,-7,39,-22,25,-34,-5,-37,0,-44,-28,19,-5,-8,-18,16,-14,-1,19,27,7,-20,-6,0,-20,5,-36,16,-12,-14,6,-29,4,108,1,-27,-1,-16,-13,0,10,16,4,10,-21,15,15,34,2,22,7,-9,-3,24,-30,-7,6,-23,-15,-3,57,18,1,39,10,-21,-20,-22,2,-23,20,-29,-34,24,112,39,5,-18,8,-12,-3,20,25,20,6,-30,15,0,22,-25,18,-11,24,-5,-5,22,63,-1,18,7,12,18,8,-7,-2,8,-22,-5,-16,12,-14,-39,37,1,-1,3,-36,-9,17,27,-13,-3,-7,18,65,11,-5,11,-8,6,-17,3,-22,9,-2,-14,-7,38,14,15,-39,-3,53,31,-34,29,14,117,29,17,-38,38,-13,-13,-24,30,28,5,-7,23,-2,-25,7,-10,115,-19,11,24,-15,12,-15,-33,2,-16,0,-6,-9,110,15,14,16,-18,-27,43,33,-11, /* [85][0][][] */ -51,34,-27,-10,-56,12,-7,45,1,21,-75,-18,-35,-20,-19,-46,-48,-18,-4,37,16,14,-40,-4,-6,-5,-8,12,3,-16,0,-17,-47,-4,-22,13,19,-20,19,18,45,-36,22,11,-22,23,-42,21,-43,25,-9,6,9,-11,-26,15,10,29,-11,-102,1,-44,5,36,-9,-33,13,-1,-7,5,7,12,-14,-12,-13,-38,35,-15,-21,39,18,5,-37,5,-31,-20,27,7,-15,-21,0,2,-58,-8,-24,-19,9,31,21,-31,-8,17,-4,-22,-22,-31,-8,-7,-78,44,-35,-59,15,-19,-61,-10,-48,29,-14,10,12,-36,-28,-1,-77,19,-26,37,-1,23,38,5,24,-10,2,3,-17,-16,-74,15,5,-7,11,-10,-21,20,-26,-43,-12,1,35,30,22,6,-3,-25,14,-10,7,29,-25,-1,-13,-43,5,-5,16,-30,-15,-2,34,-29,-8,16,8,-6,-42,-38,-5,2,33,-24,15,-80,-6,-6,-61,-31,-17,0,-8,-24,-14,-30,-8,36,-29,-28,-14,48,-49,-10,-37,-40,4,4,-12,-32,3,20,3,-41,-10,-21,-41,13,10,-30,33,25,28,3,22,-4,-127,27,27,24,41,-17,-25,-20,32,-58,-9,-8,40,1,-56,-35,7,-4,4,16,-9,46,-33,17,-7,16,-26,24,-5,-14,4,10,20,-17,4,-39,-7,-7,-15,-13,-14,11,19,-26,-42,36,-5,-25,5,24,3,-9,-2,-15,17,12,9,8,29,-38,4,41,-35,55,39,-4,-7,-36,-24,-11,31,-4,20,-107,5,21,11,-12,-27,-41,-16,-21,-36,-35,-23,-3,7,-16,-25,1,-99,-4,-14,23,29,9,1,-48,-46,57,-54,23,2,-84,21,-17,27,-13,-12,13,-1,-23, /* [86][0][][] */ 39,-11,30,-40,88,-15,6,-9,1,-19,87,-15,-21,-16,-19,29,29,1,32,3,-13,27,-32,19,28,-3,-14,-19,25,-29,20,-15,33,0,3,-27,38,19,-1,14,23,-23,38,-22,28,-5,-1,30,-3,-7,-53,18,-1,-24,-13,-1,-21,-26,-40,75,-2,17,48,-5,-6,-8,-23,23,2,27,19,6,-2,51,9,13,-29,-10,-3,-11,-18,9,28,-23,19,11,20,36,14,-25,-5,-20,77,18,56,2,26,-32,-23,13,22,25,5,-19,-1,-36,30,35,78,-22,39,19,33,8,30,5,18,-2,15,-43,7,23,2,-2,53,11,11,11,-2,-27,27,24,2,20,13,-32,-18,-29,110,-37,-1,48,1,-8,-1,16,20,31,22,24,7,11,-11,5,8,-39,13,-44,0,10,42,-23,3,-43,9,6,10,27,-35,-27,29,13,-14,7,20,35,-9,3,-13,-47,-19,11,12,66,-28,17,13,-9,-34,5,-18,6,-11,-8,2,46,1,-43,2,-38,11,-32,-23,6,12,9,-26,-33,-7,-16,-13,24,9,13,8,6,-12,17,1,29,7,-18,7,2,127,-10,-26,2,-26,20,17,-39,13,-11,22,-10,-16,-47,-23,-18,23,11,-26,5,-41,35,-22,-17,-13,-25,9,-3,2,-12,3,37,16,12,33,26,-18,24,-11,4,21,-10,-9,-11,43,10,3,7,5,-34,-1,2,-20,23,13,4,-13,-5,-28,0,-15,10,-8,12,-20,-8,-13,-32,25,4,15,47,-3,105,3,8,-16,-24,15,15,24,-8,1,42,13,25,-34,29,53,-44,111,-23,-30,8,0,0,17,-5,20,6,0,25,21,77,-27,18,20,0,-18,-24,-3,7, /* [87][0][][] */ 54,16,-15,57,84,-9,39,-25,38,-13,48,-8,0,56,-24,-38,75,39,38,41,-61,-44,83,19,33,-15,-15,18,20,21,-3,-33,25,-32,25,80,-33,13,56,-21,13,107,28,-44,60,-39,88,-31,-9,-39,-16,23,-33,33,-49,31,82,23,-60,97,35,-14,34,-93,75,-9,57,47,-6,-53,106,57,-17,53,37,23,-63,13,42,-90,-61,64,-18,78,-36,16,62,56,-24,39,6,27,48,60,12,-3,0,1,-13,-26,14,47,-85,-17,70,33,12,-60,64,2,42,-48,49,-50,-84,19,-33,64,-4,-12,43,32,97,23,-21,100,73,-62,-25,12,-20,37,-26,-19,49,8,21,-19,79,-8,-31,-18,-52,-33,43,1,-24,47,26,6,-4,16,53,-58,40,-55,-3,-34,24,11,21,64,40,-86,2,-7,-26,-13,-47,-56,33,47,12,24,11,43,4,-42,57,61,22,33,49,60,-20,-98,-38,-32,8,84,3,31,-50,44,-28,-19,64,-10,-31,-50,-53,-19,-81,45,32,-63,-44,33,-30,10,97,-57,-20,16,42,8,24,-48,10,49,-19,20,96,-27,127,15,-14,7,-41,-10,53,31,-52,87,100,36,-19,31,81,-54,47,27,-44,-19,7,-22,47,-41,-27,28,29,16,14,-19,18,63,11,46,4,-14,7,-5,41,20,4,33,19,21,58,-4,5,5,46,-12,68,-35,-34,32,-21,27,-20,-1,30,-58,-56,49,-66,-50,-28,11,-24,-25,91,92,-12,-15,-2,63,62,-10,53,2,30,2,-42,-36,34,51,53,-25,-8,-63,42,39,75,67,-18,6,-49,14,37,54,67,-46,5,-15,-88,100,2,-58,-5,13,54,68,-10,30, /* [88][0][][] */ 14,-32,18,4,96,1,15,29,15,-10,86,-15,-1,-45,25,-4,34,-12,2,28,31,-6,6,8,3,3,29,-15,-21,29,12,-2,36,13,-36,-21,-8,-7,15,-7,36,20,27,2,-3,16,22,16,21,17,-5,-52,20,-6,-36,-6,-7,28,-21,108,-33,30,-20,17,39,3,27,-12,-10,-2,10,37,-17,33,-16,-1,-36,-7,-52,35,-1,30,19,14,-17,32,-36,-27,42,-31,34,-24,40,-12,14,-29,12,9,-13,-8,-6,10,12,-23,-7,10,27,-16,70,-17,-25,18,3,22,25,-15,29,-11,13,-16,7,21,9,-15,49,43,31,-16,7,22,-11,0,9,15,9,27,-5,11,100,46,-51,-30,-6,16,20,-9,-7,24,13,2,-6,9,-1,3,-9,-7,8,27,45,-36,-36,-11,66,-3,6,-30,-38,-8,-7,6,-21,42,-37,1,-46,5,33,20,-30,-17,18,28,73,91,52,-18,48,-26,-18,6,33,-7,-8,-3,19,-22,16,-20,8,2,56,5,-33,-24,-1,-2,-46,-25,-22,-42,-11,43,-18,-19,0,-19,-23,53,8,-33,-36,1,1,-15,113,-21,12,6,11,-53,-4,9,-14,-22,-10,-49,32,1,37,-19,25,34,-5,15,20,14,-3,-6,-5,41,14,2,9,3,45,-11,-3,14,22,27,27,9,29,1,70,6,-5,40,13,3,-17,7,-24,-4,-10,35,17,-14,-43,24,-2,22,26,28,-35,19,7,10,20,-35,-51,9,23,-30,46,-41,-20,105,31,36,-8,51,9,-38,-32,-12,-20,-33,-9,2,-16,-43,92,-15,115,23,38,0,-11,-12,0,7,-21,-45,-25,-1,-60,127,9,-7,8,32,10,25,34,18, /* [89][0][][] */ 6,-11,4,-28,97,23,12,0,-4,27,97,-8,-10,12,-1,3,22,-15,-19,9,-50,27,23,-21,-15,13,-21,-41,-38,44,-13,31,62,-1,20,31,-4,49,30,9,-9,50,-4,-14,7,-22,35,-30,-25,-27,79,-3,15,-27,-6,34,-31,11,37,121,4,4,-23,-28,62,-33,0,35,21,22,9,4,-15,10,25,12,-10,-4,42,38,44,-49,-24,32,-29,35,22,-9,-19,48,-15,13,78,0,-42,6,6,-27,5,9,26,26,13,-10,27,-42,61,-5,85,-4,22,11,-38,-16,-13,-22,3,9,-27,12,-30,35,-24,-3,42,43,14,50,1,-15,27,3,3,47,1,-21,32,24,127,-33,27,-1,26,-26,55,-12,34,16,31,-33,9,3,-10,23,-36,-12,-8,-32,4,-8,-37,38,2,-2,8,8,-18,16,22,-37,5,13,-42,21,-2,35,-16,13,-17,61,7,17,32,51,30,-22,16,44,-7,9,-15,26,-1,21,32,-22,32,24,16,-12,13,-18,23,2,39,-13,41,10,-12,-4,31,30,-29,-20,-25,32,-65,15,-19,41,-2,-39,23,-17,96,22,10,3,28,-6,-27,17,6,-25,32,-7,-19,46,-23,25,19,0,3,5,15,-18,41,-17,7,16,-7,-28,-20,7,-42,-42,21,-7,11,4,45,0,-11,-38,-14,-24,-4,-21,-17,-7,-48,13,17,32,20,-28,-1,-51,-56,-5,-12,-22,-23,-6,10,-17,-21,26,-26,-26,-28,43,54,34,-20,59,29,70,-31,-24,-8,-21,-41,2,-15,13,2,2,1,-32,21,26,77,-4,110,28,3,0,26,28,15,15,46,-27,17,30,-21,73,-16,13,57,-25,0,-20,-28,11, /* [90][0][][] */ 42,-13,38,24,50,-27,-21,-5,26,24,5,-12,-5,12,-47,-18,-20,39,6,1,20,14,-5,-14,6,-5,18,43,-3,19,52,-14,30,5,15,35,43,63,-22,-10,-8,127,37,10,3,3,115,14,-20,-15,22,-5,-17,24,-19,50,-8,51,19,57,-3,15,17,55,51,-17,66,121,11,-20,54,30,12,45,13,87,13,-11,-26,-49,-23,19,52,55,29,-5,-7,-61,3,10,21,0,79,22,-3,-23,11,41,23,-4,-14,-18,-4,-28,7,20,7,27,13,-43,45,-3,-55,12,13,38,-8,-25,1,4,-19,12,47,-8,38,21,-31,-21,-35,-10,-76,-41,21,37,60,-37,-30,8,49,25,-30,-39,-36,84,25,1,-17,47,-8,29,-31,5,46,-39,-29,-7,-71,-10,14,71,-10,30,-5,-56,-37,30,11,-64,-47,-46,-6,-47,-34,64,-64,-6,-41,-52,7,49,-38,13,45,83,67,-7,-9,14,23,30,40,-27,-48,26,-12,40,97,-8,-25,-12,35,-51,25,-16,-26,-59,-19,-61,20,-23,106,3,51,15,-15,11,-5,16,-20,18,28,-49,33,-6,84,-9,24,-1,3,3,-5,-8,-29,-1,19,-26,-16,-40,-43,38,-25,34,10,-20,23,-51,40,-3,-29,-8,-3,30,30,-9,-42,-59,31,65,7,28,27,-10,93,-12,14,24,-39,62,50,-26,-5,8,5,-34,-45,-12,-38,31,53,26,-39,5,-16,30,-29,46,-7,-11,-56,-29,3,-23,53,-12,22,6,13,26,-21,29,28,-7,0,-16,-10,7,25,25,-37,19,-4,14,54,26,29,40,-23,4,33,-11,13,22,53,16,-14,63,-19,58,-27,6,23,107,-19,38,11,3, /* [91][0][][] */ 55,-43,-9,61,125,0,-18,-35,-38,41,127,20,-26,37,58,44,-45,16,-50,6,58,-1,5,-1,0,21,12,44,-49,-31,15,8,18,14,-2,14,35,-9,-26,-12,-23,20,16,40,5,28,88,44,3,26,-2,31,15,19,-43,34,40,2,-5,96,-12,-18,3,-35,28,-27,-47,60,-5,-9,31,-12,36,32,-41,43,-13,-2,6,-34,-20,9,-1,27,2,-9,18,11,-45,-27,-12,13,68,31,41,41,8,46,-9,-26,-38,-27,2,-31,26,9,20,-24,94,9,37,-22,-42,-13,-15,6,-10,32,-10,25,-33,28,25,-10,38,27,-31,-6,52,-46,-8,37,15,19,-8,-25,-35,-52,126,-51,-17,37,-12,-42,-30,-15,-22,31,4,-5,0,-12,35,14,25,-41,-11,-29,-13,-27,41,-1,38,8,-4,-33,-8,-53,30,-11,28,-16,4,-2,-5,34,-6,-20,43,29,-18,29,47,82,-14,-48,-18,25,29,36,-43,10,1,-20,7,17,15,18,26,-22,20,-3,32,-9,-9,-7,-20,0,-10,-22,27,-4,25,24,-6,-3,7,31,-22,-2,-28,-26,-19,8,77,9,12,-26,-10,-7,-53,18,-18,3,13,32,50,-26,68,-25,16,-7,15,11,-6,-58,49,-29,19,16,-25,-14,36,-10,65,-6,-8,-29,43,14,50,-25,72,-10,4,-43,13,-25,37,-17,-78,6,1,24,-16,-8,31,15,14,-5,42,-13,-11,-14,56,27,1,-47,-12,-14,34,-63,14,-34,14,-31,-12,126,19,16,52,-6,17,-17,23,-6,12,1,-8,1,-19,-57,16,-8,119,-12,28,-34,16,19,-15,-3,24,-11,56,15,1,46,-29,23,28,-29,29,73,2,19, /* [92][0][][] */ -3,51,41,-1,112,-18,-4,-8,64,-52,107,-22,70,-33,14,46,-24,52,-40,21,6,14,-23,-52,34,-47,-18,-45,-39,-31,8,-12,76,-19,11,17,-21,-67,-69,-38,-8,-72,-34,-71,-11,16,-28,9,-1,34,57,25,26,53,-29,-38,-75,1,6,124,36,6,41,-19,27,12,11,-71,25,15,-35,-3,-5,66,8,-69,62,80,-5,3,50,-16,68,-77,5,101,-68,29,24,-17,5,41,78,13,-77,-22,84,-90,61,22,39,-13,-44,-9,56,66,21,-5,35,-1,56,48,-21,-41,51,-3,53,-12,-86,-4,6,48,70,-15,84,-14,44,-69,-51,52,31,-46,57,35,29,23,1,0,127,15,23,8,-23,25,27,23,-20,-44,-44,-66,-94,37,14,-33,-1,-20,35,16,11,10,26,-79,30,-36,29,-1,41,-6,-57,-16,34,-12,63,-54,23,-39,-48,-6,-30,-13,19,23,-97,32,32,-34,-52,-4,-11,37,-7,-34,4,12,9,-6,-47,49,29,7,-11,-39,64,78,-35,-3,-21,22,13,20,-110,39,-20,36,-13,1,-5,1,-82,69,38,-22,32,38,123,5,-50,-23,-17,97,58,-11,17,57,-38,49,-25,-4,96,-47,13,3,-38,-4,24,-35,-60,50,-95,-33,-42,-20,15,-9,31,14,-37,10,-23,-20,0,10,-35,7,-42,-66,42,18,24,20,0,-90,-2,59,23,0,82,-30,40,-8,-37,-4,36,7,43,-4,29,32,-27,-35,24,-22,-64,-4,24,9,11,89,47,-3,5,52,0,17,30,38,-69,-53,33,46,40,36,21,-22,94,37,-70,-28,44,44,-25,16,-85,-71,-20,5,37,116,31,23,-43,35,15,5,77,-41, /* [93][0][][] */ -8,-26,-28,-13,-71,-10,-21,54,4,16,-105,-6,4,-11,-4,-7,-9,2,-51,-10,-30,0,8,5,-3,-30,0,20,-19,-21,-3,-1,-68,-7,-15,-38,16,13,-30,1,-1,-42,64,13,-14,9,-76,5,-24,-64,3,41,-23,16,-31,44,31,-21,5,-127,-65,-26,13,-20,-30,-56,-48,-38,49,39,-56,-16,-15,-51,-26,-40,-17,-13,34,-15,-13,-2,15,-69,9,-26,-36,13,0,-14,44,-18,-71,45,-62,12,-62,-35,57,4,-65,-26,11,111,31,58,-48,-77,-25,-23,-40,34,85,53,-16,59,-41,11,-47,-20,-60,-55,-17,37,-109,33,-9,39,-5,39,-27,-53,22,-69,-9,13,29,-3,-86,-29,-12,58,-7,-44,-50,-59,-52,-49,1,15,27,44,24,71,-16,-63,-4,-4,-40,-1,-33,-64,-42,52,36,-22,34,-26,19,-34,2,-1,26,-10,37,7,43,64,-6,42,-54,30,-68,-73,-6,49,-6,-5,-14,7,-4,-18,45,-36,-7,-11,-108,-16,10,26,-9,-41,44,15,34,-23,-21,38,1,-72,-72,-20,76,-45,3,2,8,57,5,71,2,43,-46,54,-92,-32,47,71,-21,-6,1,-27,-8,31,9,-29,29,57,36,15,19,-19,-35,-3,-1,2,-71,-30,32,-59,-40,26,-32,15,-14,-31,17,32,42,-12,-66,5,-60,-66,10,80,1,-9,-12,31,-38,0,19,-77,42,-23,6,79,-26,-19,-23,-46,43,13,48,32,13,-48,-11,45,-68,27,-57,18,-67,44,38,-118,-24,-68,19,-32,-28,-32,46,-11,-26,51,-11,36,12,44,-86,-5,-76,27,-67,61,32,7,-9,45,-39,-2,23,-45,-14,-77,72,30,33,-15,29,10,-25,3, /* [94][0][][] */ 24,-2,-7,-58,74,21,-67,35,19,-85,58,-13,-39,-19,-20,-44,55,-1,12,-25,-60,-34,-5,5,-40,-79,-56,-11,-47,6,-63,5,39,17,63,-56,17,41,-8,11,-39,79,-32,80,-44,64,90,50,-22,-64,20,-25,84,13,22,-5,67,18,-15,122,-32,42,-2,13,61,-26,23,12,5,5,-5,-86,-26,77,-10,-2,-28,-33,79,24,-5,46,25,48,-29,58,-18,-23,15,-34,-40,-69,110,-46,29,-8,11,73,-32,61,-46,-22,-43,46,2,73,32,44,98,-68,17,53,-33,-19,41,40,8,19,32,-45,33,115,21,60,53,-4,-28,-10,-40,-37,2,27,-24,62,4,-56,32,-66,110,0,-7,-12,-25,-30,51,7,-11,69,20,-85,-16,16,-70,-38,0,-52,54,18,-62,-11,10,64,44,37,-24,0,86,-13,-33,-14,-11,-30,38,-43,56,16,62,60,-65,-19,-55,14,-1,57,-41,-70,-73,31,-27,-24,59,26,10,-22,-37,-1,110,-24,-73,-65,12,47,84,29,-16,32,-8,44,27,-69,79,88,16,-13,21,-22,7,53,12,-3,18,18,-19,73,127,49,45,5,-8,14,21,-59,50,-30,37,-29,-19,-9,16,35,-21,35,60,109,-45,25,11,15,28,23,62,12,36,-47,-19,-8,-34,-11,-3,26,34,14,29,40,-36,26,-21,24,-20,100,10,-76,36,-53,-48,-35,31,42,9,84,-22,37,8,-15,-9,-13,-9,42,-7,15,-6,1,74,100,-26,-7,72,49,-22,23,-25,33,25,-75,12,-10,73,-4,13,-20,36,-42,35,27,127,68,0,-46,2,36,35,-50,33,18,-51,2,50,66,-42,-39,-7,42,-8,-40,70,73, /* [95][0][][] */ -59,56,26,-14,-100,-8,-52,-11,-6,-8,-68,25,17,22,-25,13,-15,-6,19,-6,-16,-20,-33,-24,59,5,-26,-48,18,47,-18,-22,-6,-3,10,22,-16,16,0,51,59,-66,-20,7,-46,18,-41,40,-30,31,-17,3,-27,6,-17,2,-8,-15,25,-104,30,-5,27,2,-17,3,59,-25,8,42,7,12,22,-38,-53,-6,33,-27,1,-19,-39,-15,-14,-71,36,-34,27,-42,16,-32,4,-31,-75,-1,31,-27,-6,-8,-2,-8,18,6,-33,-31,20,-11,-1,19,-71,-18,31,-29,-39,8,-48,-37,-49,-15,37,21,7,-83,16,9,-69,-25,-17,-14,-35,22,19,-37,1,25,-17,44,-7,-33,-89,-7,-26,62,6,21,13,-8,-46,-22,-69,-14,-4,-11,79,-12,-15,5,-46,47,25,4,-15,-18,25,-11,-48,24,5,24,3,-37,14,10,-24,-73,36,33,-14,-13,-6,7,-22,0,-13,-47,11,-12,-52,-18,48,-51,-6,-44,3,52,-27,71,-19,-10,-39,-9,26,-24,29,-41,0,-42,34,-4,-24,10,-29,-32,31,20,3,-54,20,8,24,-8,-30,22,2,8,-127,-25,2,-21,43,-9,21,-5,-20,52,-22,-15,39,-6,-21,9,13,18,4,-26,-6,34,-49,-8,52,-15,20,-18,-24,54,1,-59,-30,14,-36,11,45,-20,15,11,-24,17,37,-4,11,22,-43,-21,10,24,8,12,32,22,10,26,-21,40,20,-5,34,-1,-36,29,-30,-30,-38,-30,-63,26,32,29,-6,-60,-22,-19,-6,14,-31,38,-5,-2,-16,-22,-39,23,-11,36,-74,23,-114,16,15,-11,-42,-2,-44,-42,-34,-25,-22,12,-32,-37,-59,54,15,-6,50,20,-63,-12, /* [96][0][][] */ 21,8,-2,71,-16,7,42,7,-5,-59,-1,3,43,-46,-22,-49,34,-2,-36,8,-5,20,50,-18,-44,-48,37,-16,23,42,43,98,-38,22,10,-35,-49,-36,58,-48,23,103,34,-44,-28,-35,124,-29,-13,31,-59,11,3,-22,-31,30,-10,-25,29,28,30,-31,-52,38,2,-63,20,115,31,32,74,-54,-27,39,8,63,-5,62,69,69,-14,-16,-35,78,32,-46,-48,-40,26,-24,44,20,58,11,12,-11,-30,-45,33,-3,27,-4,20,-6,4,10,45,-7,-24,61,48,3,45,0,-15,19,64,-37,30,39,-59,71,25,-5,-11,-3,-14,6,43,-13,6,46,-15,-21,77,31,7,27,35,5,78,-32,25,-24,55,19,-8,77,2,2,35,-18,-52,-30,69,24,45,-27,19,26,-9,97,44,-29,4,-2,91,8,3,40,-28,-33,-27,15,-40,-41,-4,-15,-71,29,0,-34,19,100,23,38,12,-9,-15,42,-39,-41,36,-68,-36,-8,94,-33,23,-43,-6,33,-9,46,14,-15,3,4,14,-39,127,77,-32,-21,-6,-6,-8,-46,-27,15,47,45,-25,11,44,-29,-5,-16,-46,-47,14,11,-28,25,21,-5,57,-4,8,7,-45,2,-62,0,68,20,67,17,-7,-4,-41,-48,-40,1,-26,-18,-5,16,-10,52,-15,-16,45,27,40,47,-14,9,-67,50,40,-9,-39,26,-46,-31,0,-24,-62,-10,45,-52,-8,16,-16,3,46,2,5,-60,18,7,119,-4,6,-16,-52,-1,-7,-5,-47,-48,-22,24,71,-5,71,-29,-26,6,39,-38,21,20,12,-20,58,-36,53,-24,22,12,97,28,-41,52,-30,-21,49,-7,-41,-33,-1,31,37,84, /* [97][0][][] */ 84,9,-39,73,29,-20,4,-40,-2,-31,45,-57,-8,53,-12,39,-49,73,33,-15,10,-20,35,14,14,24,28,71,-2,-9,-108,-20,12,6,-45,22,-5,29,67,-38,-23,122,-30,33,69,16,98,-40,-26,19,-12,-31,-9,-33,-9,-40,55,-39,110,58,45,50,-38,-53,56,-30,-18,89,-1,-16,46,-45,5,12,4,13,-27,-9,17,-48,-51,-35,-19,35,-11,22,20,13,-40,15,-29,-7,127,-68,12,39,12,-7,54,15,-6,-15,-67,78,40,14,35,4,120,-24,-45,44,30,-6,10,-24,31,54,6,-30,-20,-29,52,14,20,-9,-23,10,-8,31,-34,63,43,2,27,-25,-1,-7,102,-47,46,-10,-16,-34,18,19,-24,46,-15,-38,0,21,64,11,54,20,3,-6,55,-2,30,109,17,-36,17,7,-20,-42,-48,-37,53,12,-41,-48,5,-27,46,-37,-29,34,-38,1,68,94,43,64,39,-29,-22,46,13,5,9,23,16,30,88,27,22,46,27,18,74,-35,48,-18,32,62,25,27,54,-45,51,35,-44,9,29,-24,-34,-3,-35,-26,-14,-58,64,-71,4,6,38,46,-10,54,42,-19,4,-37,33,72,-7,-11,10,33,0,7,68,-15,95,5,24,-1,-2,34,42,-23,-45,-7,-8,-24,-62,-3,29,51,102,53,15,-27,33,24,21,57,23,-3,5,38,24,28,-22,46,-15,-12,-44,32,-1,59,-26,24,-24,-4,-22,61,2,33,88,-58,-30,-27,-5,110,20,-20,-49,52,72,6,-25,-1,45,-76,-17,25,49,-48,77,1,99,-57,-24,-43,40,36,40,-17,92,-41,7,9,-43,57,-19,86,-58,6,106,70,14,-35, /* [98][0][][] */ 8,-46,15,42,-3,-28,-29,-21,1,16,-3,-24,28,30,19,36,28,33,-31,30,-14,2,-27,1,7,4,29,-23,48,17,44,-28,-17,-2,51,-4,56,-13,13,-6,-22,127,-36,2,11,44,72,-67,16,-24,14,-10,17,34,13,46,-9,5,6,-3,21,-21,41,-1,-19,24,-23,87,28,26,50,31,-17,-15,0,67,22,-33,8,-52,13,-32,10,27,-15,2,-37,-4,8,-24,-37,-15,51,-29,1,-9,10,-11,-28,16,-1,16,-22,-6,-39,19,13,23,-20,-10,-4,-9,22,-33,-34,38,33,-21,19,-13,-13,5,32,-2,-12,-18,27,-43,-12,7,34,-9,41,39,15,-14,28,16,-23,7,19,-8,-17,50,23,18,1,37,10,-21,17,47,-38,-40,15,-3,2,8,41,22,6,46,-25,-1,-8,15,20,-6,-2,0,-13,-21,8,29,-26,27,55,36,-4,15,32,-33,30,34,12,-18,49,3,6,-3,29,0,1,-17,-30,-35,65,-6,-6,-7,-18,18,7,-25,-21,-2,19,37,9,-18,90,11,16,-19,-31,10,35,13,-14,0,2,23,19,-1,-25,2,-25,0,-28,18,-8,-21,-10,-36,-58,-17,-32,26,-11,-2,-9,4,-3,-36,-20,4,77,3,23,-11,-7,16,-34,-7,49,-18,-12,18,18,-8,13,5,37,-5,3,-21,12,16,-21,12,24,-7,34,-9,-18,-35,23,-36,12,-9,11,11,-38,-13,-12,17,-14,10,-6,0,10,-24,73,6,-5,30,13,-11,-30,-25,-36,-47,12,7,-6,15,43,-5,-35,51,33,5,21,-2,-34,-23,-13,21,-17,2,-9,-22,81,-5,-23,39,-1,-35,14,10,-12,14,-17,26,-15,3, /* [99][0][][] */ -42,-62,-60,60,-52,53,-32,-29,83,37,-72,-60,21,10,-4,1,32,34,-13,-20,78,26,-67,-68,28,1,-25,-25,-54,66,-76,-26,38,-29,13,51,-10,14,54,69,-79,78,-11,-25,-119,-38,40,13,3,19,-17,42,-19,-24,-34,-25,-44,34,17,7,22,15,42,28,33,14,-26,47,26,4,63,-81,15,0,-3,104,5,5,-29,-22,-1,-27,-39,109,3,-26,8,-11,30,77,-56,-34,19,-73,-16,1,-28,53,28,27,-27,-15,-50,-32,-33,27,-17,-44,-115,0,7,-45,5,-42,-24,-29,18,-37,12,20,89,-41,-39,25,-40,41,26,-15,-4,-38,11,54,14,9,-13,-39,21,26,-107,34,-2,102,-7,14,21,24,18,57,-21,40,23,-1,-24,13,-16,-24,-60,44,29,-8,37,125,47,39,10,23,-29,43,-18,-7,-36,-98,6,-11,17,55,24,8,11,-36,73,-58,27,10,-2,29,22,96,-5,-36,-5,-50,-19,32,-3,55,127,39,-16,1,54,-33,-81,-14,31,6,-59,45,11,6,109,-78,-84,37,26,19,18,-12,4,10,-71,-34,83,43,-90,-45,-14,-19,-62,-18,-41,-20,62,-18,-5,-34,32,-11,-6,12,-35,-19,40,-15,29,57,112,-3,-1,73,-4,39,32,-33,32,43,-22,-6,-14,-41,-27,-36,103,-34,58,23,-11,25,-16,-10,-7,-15,2,-19,-22,22,1,54,-21,29,4,-33,-7,-32,3,46,-30,-6,4,6,-46,-71,40,-22,-9,-39,-54,-124,24,-1,-8,-20,-24,55,-28,-49,66,76,-41,26,-80,-20,-30,59,-70,4,13,-15,-2,54,-26,30,119,71,14,90,-11,-44,38,-33,-66,-40,-47,40,-26,31, /* [100][0][][] */ -72,37,16,17,-122,15,-9,7,18,7,-64,-36,-1,-3,19,29,20,33,3,-32,41,-22,49,-34,58,-21,12,24,-23,-33,23,38,5,5,-5,0,-8,-56,-42,-42,-12,-66,9,49,-2,12,-74,27,-9,64,-49,-45,-27,51,1,-30,-22,-2,20,-58,18,-4,-3,-11,32,-31,-19,-88,41,39,-54,-10,11,-71,48,-13,-43,-12,-50,-33,-15,-41,-7,-69,12,-26,-21,-29,2,0,24,13,-110,-32,-17,55,-26,13,-25,-17,42,-13,-29,-13,3,11,-25,-11,-94,23,60,-2,-56,-16,-74,41,-10,-7,-11,15,48,-45,-26,-71,-83,3,-23,21,-70,6,27,41,26,9,-42,-43,-14,-64,-111,-24,18,8,-61,-33,-59,16,-68,-83,-7,8,-11,50,-19,-41,48,6,9,14,14,-47,24,-34,-16,-28,-16,27,50,-17,-50,-27,43,16,29,23,4,14,-23,-19,37,5,12,62,55,-127,-22,-49,9,13,12,-46,-25,-5,22,5,-21,4,-77,22,3,-8,-22,13,15,30,57,-37,4,32,-6,-44,-57,-54,16,-31,1,53,-49,6,40,15,-28,4,13,23,-97,-19,-83,-49,-10,-52,5,0,-17,1,-38,9,-35,-5,-32,-42,24,5,28,2,55,4,-77,72,28,-25,4,10,-24,-29,39,-11,-20,-17,-50,-18,48,29,-99,15,33,12,-17,-20,-34,-30,35,-22,-26,-6,-39,-47,13,-11,31,11,-56,-12,-10,-2,-26,13,-55,1,30,0,12,-19,-87,3,74,-14,51,-77,23,20,-13,46,-19,-7,15,-14,-55,36,19,2,59,-15,-83,73,-89,-20,34,17,41,-18,6,41,-85,-6,-17,8,-42,-67,-8,22,-4,-50,22,-50,54,21, /* [101][0][][] */ 33,-47,-40,53,46,-35,-7,-11,-16,35,-22,66,-41,0,33,-9,-4,4,-38,-27,-53,-31,23,35,-17,46,-33,10,-25,-4,-35,54,40,26,-30,-92,-67,36,29,-8,12,87,37,-71,-28,31,113,-62,17,16,-14,13,-68,15,54,51,-19,45,6,-6,-49,46,76,-15,-47,47,15,76,6,-26,19,62,9,-9,36,59,1,-33,24,2,36,15,-2,43,15,40,-26,25,23,25,-9,-4,44,2,51,33,29,0,-5,-7,18,36,41,-10,-66,39,-37,1,18,-61,37,33,-46,-69,-12,-21,6,35,-4,-63,-51,54,2,11,-20,32,-42,52,27,34,-5,29,21,4,-4,-28,-23,-18,-26,32,37,-27,9,-44,-22,55,-7,49,-17,-8,-47,16,9,27,69,-18,-15,3,-20,-38,-4,63,9,17,-62,46,-17,20,2,-40,-4,1,22,-13,-28,-35,30,-4,48,-6,24,54,61,102,28,-8,20,62,-58,-2,-6,-27,-25,-45,34,46,127,-15,-14,-49,51,-1,-40,-36,6,-42,-29,6,12,24,83,-63,2,24,-12,62,36,12,-13,-22,-6,21,-37,-18,35,14,-20,35,-5,-7,45,-38,-55,2,39,-13,21,6,2,-3,28,-26,4,-46,-35,18,113,-34,28,-46,9,10,-8,-38,48,4,25,-3,23,-40,-8,18,115,-17,-30,46,45,1,-40,10,26,-11,-38,-16,11,-1,56,4,-5,-7,30,33,-42,2,-33,-86,-14,-11,7,-8,-58,-9,55,-13,23,22,2,14,-28,9,-8,-31,31,-65,-27,11,83,-14,-80,39,31,-38,41,-14,-30,-29,-5,-6,25,-48,12,39,62,11,6,52,-10,35,4,9,-13,-43,50,72,-35,25, /* [102][0][][] */ -14,25,30,-3,-75,0,34,31,13,-10,-6,46,13,-57,-17,-10,34,-51,53,12,22,39,-16,-39,-21,12,-36,-25,-13,-23,55,31,-45,-2,-18,-17,-48,-38,-55,-11,13,-76,-33,26,12,5,-54,-40,19,21,23,-16,-7,-15,35,-18,-13,25,-31,-28,-17,-24,32,12,-28,14,-9,-127,17,22,-53,-15,-16,35,-4,-72,-2,-18,-10,5,-1,18,17,-58,38,-25,-27,-20,-14,-30,-6,-42,-37,-12,25,-13,2,-32,18,6,44,-29,-10,14,-5,46,-6,5,-39,-36,7,19,-16,10,-5,-26,-6,26,3,-14,-23,0,26,-8,-31,21,1,-37,-19,42,-23,-51,15,0,12,24,3,-49,-31,-25,-41,-2,-20,-3,-42,-67,-16,-57,25,23,22,-8,26,-19,5,21,58,20,-7,-24,58,-106,-2,-8,45,38,-59,7,-30,-51,-2,-10,9,-48,-8,-8,71,-4,-39,24,1,-36,11,-53,-5,6,25,20,52,-35,-63,-47,-31,1,13,-34,-63,-16,29,7,15,59,17,-8,20,-19,41,9,16,12,-69,24,44,44,-21,-22,-20,-5,18,-55,-46,24,7,-1,-44,-46,-56,2,-29,42,-48,34,-52,-22,28,-10,-5,-28,32,-33,23,-33,-14,-33,-17,-42,-45,-3,-49,6,-1,19,-10,-51,9,-17,37,75,42,-7,35,-35,-121,11,61,15,0,75,-16,14,16,7,14,61,30,-53,24,11,-27,22,-14,-20,-5,7,12,20,-10,10,5,28,-46,-17,-97,-36,28,15,-24,-94,-26,19,16,-46,33,-13,-23,1,-81,-10,-7,5,10,-7,-54,30,-80,-40,-15,-33,-13,14,-17,-19,-77,27,2,44,13,-49,-7,-25,6,-16,-3,11,-4,-34, /* [103][0][][] */ -26,24,53,-16,1,3,-4,7,-21,-4,-2,-19,15,-11,-27,21,3,2,4,4,13,-32,13,13,-23,-8,2,-31,20,40,16,-2,-66,-1,12,-15,-7,-22,-68,-18,-22,-127,-13,19,-9,43,-83,7,5,-9,9,8,-33,-16,-14,38,-6,-18,45,-42,-7,-58,17,3,6,16,14,-119,13,1,34,-31,19,-25,-30,-87,-15,-21,-8,12,14,31,41,-94,-16,-11,31,-35,-2,18,-13,-46,-47,-16,34,52,37,34,24,-11,48,41,18,-46,15,-24,-20,15,-30,-35,18,29,-61,23,58,49,-20,38,-18,-38,48,-44,-3,-25,-5,8,-15,-39,-40,-8,39,-8,-60,-7,-79,34,37,24,-53,-70,21,-38,47,26,-22,-30,66,-93,6,55,-11,48,38,-5,-15,-5,20,7,5,22,18,-91,42,-41,1,31,7,7,15,-32,48,40,-52,-43,10,-55,13,8,-27,-3,-5,-50,-27,-80,-41,38,-4,36,-48,65,18,-15,55,-42,29,-9,-125,40,-11,37,-40,-2,43,-36,16,12,-23,-9,-25,10,-86,-64,0,18,50,32,-47,25,20,19,19,7,-10,86,-81,5,14,-8,27,14,0,30,-23,-24,31,42,-34,8,-22,-40,-22,10,25,31,14,27,-52,-54,11,-76,-3,48,-34,-52,13,-17,-17,-69,42,51,20,-12,-60,9,-6,46,41,-29,-31,-5,-38,48,-8,-24,10,-7,14,19,16,-15,-34,-18,16,-6,-23,3,-63,37,53,-38,-13,17,-66,1,26,-23,46,-70,3,19,30,-38,13,-34,-10,-38,-48,-7,-15,5,-44,13,-30,-4,-63,-7,19,40,-62,66,-5,-8,-74,-55,22,-67,-9,-88,-22,30,-10,-2,-40,-30,-23,21, /* [104][0][][] */ 37,-23,13,-7,13,27,44,-39,19,-2,22,15,-3,-1,1,6,-1,-20,-8,-1,6,-13,-21,-24,4,26,53,15,38,4,-19,42,-16,-24,-2,-3,25,-16,31,-27,13,103,8,-19,17,13,90,-4,1,-6,-2,-18,-45,15,-27,-27,-27,16,-63,18,-30,-31,-12,-27,29,43,-1,127,-32,-5,31,6,-1,-1,26,42,-29,-7,-7,-47,-26,30,10,69,4,13,22,26,-13,-20,-14,32,23,12,13,-8,-2,-22,-4,-9,-19,-14,-12,-15,26,-5,12,24,43,19,-44,-26,-15,-8,24,8,-2,5,-45,0,-1,70,-30,-54,4,8,-2,6,38,34,-7,5,7,38,22,-4,-20,40,10,-15,26,13,-19,-1,2,-16,15,86,-50,-18,-3,27,-9,-21,-25,-22,-15,22,-6,12,26,72,-13,14,9,-9,-24,-4,33,9,-21,12,-2,-20,-4,-27,-3,13,-22,-22,-15,18,-31,77,34,1,4,12,-17,11,-5,14,-18,48,-10,-2,95,15,-28,11,19,22,37,1,35,13,-19,-4,1,-21,104,13,10,-10,35,-8,23,4,-10,-27,26,13,33,6,7,-5,3,12,-9,-20,-6,-20,27,37,16,27,10,-18,35,-15,-14,34,18,18,5,-5,95,-22,9,-7,16,-10,-19,24,3,-15,29,-22,18,3,-6,-3,101,1,16,-30,18,8,21,1,-31,-20,46,-31,8,21,-21,14,20,45,36,-4,15,20,-33,12,-12,20,-49,-32,-13,-27,61,-25,-20,-17,31,-5,31,15,2,-6,15,12,8,24,81,-12,-22,-21,17,-30,37,6,-13,30,33,2,-3,9,8,-17,120,15,19,15,-9,-9,6,-41,43,17,14,-5,-28,26, /* [105][0][][] */ -31,-39,14,-4,-97,-4,-34,23,-3,-41,-46,3,11,5,-22,-20,2,18,-18,-1,-14,17,-27,-27,-62,0,8,-6,-17,39,-62,35,-57,-4,-47,-37,66,26,5,18,15,-3,20,20,-25,-19,-44,40,45,14,-4,-3,10,-31,-47,-65,14,17,36,-56,26,-31,36,22,10,0,-27,-36,1,25,3,-34,-8,-74,-26,-6,-15,21,-21,-45,11,-13,-50,-5,-44,11,-25,-23,-24,14,22,-11,-37,-51,-2,0,8,10,-21,-41,-3,-32,-42,5,26,-35,-19,36,-92,-35,-68,-18,-37,2,11,-5,-58,-67,22,-1,12,-29,3,20,-117,17,-37,-25,-31,7,-17,-5,-1,39,-24,-17,-25,14,-97,-37,-17,-37,-2,12,-28,-71,32,-7,-8,-35,-6,-24,38,-12,35,-16,8,1,-32,10,15,11,13,34,-12,41,0,57,-33,-57,-9,31,-38,-45,-10,0,20,43,11,1,-5,17,-24,-78,23,31,36,-10,17,-23,28,6,-17,12,55,-54,-52,6,19,-45,-66,-10,6,-12,-13,-24,-33,27,-27,-4,1,-41,17,3,7,43,-42,-29,21,-1,-17,-16,-34,-7,-110,42,-16,-7,23,-16,-11,-7,-23,49,62,-27,-28,39,7,7,25,-2,29,-29,23,-30,-5,-30,26,23,-12,-47,-3,8,-16,11,-17,11,28,-3,13,6,-30,-35,14,22,-10,-13,8,-9,18,-43,-23,24,12,15,8,17,-44,-16,39,38,33,2,12,11,28,-11,-28,-10,26,26,-21,19,1,-22,35,-121,12,35,37,15,6,-65,-49,-4,-28,51,6,-24,13,-34,-89,-28,-127,-25,-24,34,5,50,-33,3,-21,-10,8,-18,40,-90,7,-15,23,-13,-4,33,31,6, /* [106][0][][] */ 5,26,31,-21,-5,-30,27,12,-37,-28,-38,2,26,8,-21,-20,15,17,-13,33,-13,-58,13,0,-24,-9,36,-36,8,-36,-32,-9,-13,14,20,10,26,-42,1,-2,7,-121,-14,16,25,17,-98,-9,-19,-69,51,24,10,9,-51,28,31,-27,32,-34,38,-17,-15,17,-8,-34,-14,-94,7,2,23,38,-26,36,-54,-115,21,1,14,4,-40,-24,-27,-71,-31,-31,28,-25,-19,31,18,1,-48,31,1,37,4,-6,14,-25,-29,7,43,-21,14,-6,-7,-33,-18,-25,-9,4,29,-21,20,7,2,20,-40,12,15,1,-19,29,-12,44,26,43,-30,-50,8,47,1,9,11,88,-10,23,-41,-16,-37,33,-19,20,-35,-13,-22,-67,18,-5,43,-45,-11,-21,15,22,-20,9,-17,-3,-87,-84,-5,4,-32,-15,-20,31,45,13,-17,1,57,-12,50,23,20,-8,11,9,-7,-16,-3,-54,-21,11,62,-12,20,5,-47,34,-16,6,-29,-16,-89,-17,39,-14,-8,-45,24,-10,40,-27,-20,-24,-17,41,-111,-17,10,41,2,23,-2,-8,-39,14,22,16,70,-7,-55,17,-5,0,-10,-11,5,0,-4,-36,-23,20,-36,-17,16,57,-34,-24,-22,61,-20,-13,-127,-15,-17,-20,16,-24,-2,-37,15,-23,-4,35,-13,47,1,8,-126,-47,3,-10,43,9,-22,-31,-27,2,1,-17,18,39,-29,-44,20,-3,-52,-9,-13,23,-78,-20,-5,-15,-24,-21,-1,-18,-87,-56,-6,8,0,-11,9,27,68,34,-38,9,8,3,-66,-20,-14,-52,-11,-38,-4,4,-24,-38,18,-10,11,-41,-58,-33,-105,-34,-42,-20,-20,-26,34,-11,16,13,40,-22,12,-42, /* [107][0][][] */ -6,-8,17,25,12,10,22,4,32,-31,-25,-3,19,-23,13,7,19,46,18,11,-6,-15,-25,-7,7,-13,6,13,-1,16,19,-12,6,-46,28,-9,-27,-36,3,5,24,127,4,-3,13,13,61,-6,26,9,1,8,9,-6,-25,-11,6,-3,5,-7,10,-11,-15,-10,-11,-15,-14,120,-38,4,58,-1,-11,-6,-12,45,0,16,-20,5,18,3,7,46,-25,11,17,-19,21,11,1,3,23,9,28,-3,8,1,4,18,26,-15,1,2,4,-3,34,6,1,-4,7,-8,14,6,-3,-8,16,13,18,36,10,-10,-6,4,-14,26,-19,21,-4,-5,-20,7,18,-6,26,-2,19,-4,-9,16,6,11,-14,-19,9,-31,-9,73,0,-1,8,-16,33,5,28,38,6,-26,19,-35,-13,94,-6,-42,-24,8,4,-19,-17,-32,-22,42,-14,-28,-14,-4,11,-18,-32,-15,10,-15,-6,52,-20,-1,2,-34,9,29,12,7,5,-22,-41,-7,111,20,-6,14,-9,17,11,2,-19,-4,-9,-18,-18,17,70,8,-14,0,-20,-24,29,15,-18,7,4,10,-3,-12,-11,-12,28,1,7,0,-14,8,0,-39,-9,13,-22,1,24,-4,21,-6,-18,-9,12,-15,91,-10,15,38,25,-32,2,9,29,8,14,-44,-7,-18,22,-12,90,-32,8,2,1,-10,-3,16,10,-9,-33,10,-17,22,-19,-4,-11,-26,15,-19,-34,-7,-6,-7,13,11,10,-5,15,6,93,-26,-12,31,-32,10,29,2,-11,-17,15,17,11,4,56,-10,-6,21,24,4,54,-8,5,3,-4,10,-14,4,-20,5,96,-20,19,-19,-3,16,6,0,-26,19,24,14,7,18, /* [108][0][][] */ -34,31,21,3,-87,19,-25,9,7,27,-85,-46,12,-14,-15,-2,-19,-8,-13,-3,13,24,-17,-9,-5,16,-9,-12,-13,29,-5,2,-51,17,-27,12,-6,12,-4,15,13,1,-11,-10,-3,-18,-4,19,0,-16,-8,-7,7,11,-3,18,-17,4,-3,-104,23,-3,-23,-15,-16,14,7,18,10,15,21,15,-33,-31,-16,-23,-14,-1,21,7,-10,13,4,29,-9,-2,-8,-8,-4,24,-5,-9,-60,-40,0,39,-2,-22,-7,-14,7,-3,-25,-15,-37,11,-38,-17,-110,10,1,13,37,-31,-34,3,20,-5,24,0,14,-32,4,26,-62,2,-3,1,31,-33,10,42,3,20,-18,-9,3,19,-113,-11,12,-18,-1,16,-33,-19,2,-33,-27,-10,-21,-12,0,9,13,-3,-12,21,25,-18,-12,35,16,-35,9,-32,11,9,-2,-3,-28,19,11,4,30,-17,11,-11,4,2,19,13,6,-68,9,-4,-5,36,-14,18,3,12,5,26,10,7,12,4,-19,-7,-1,-3,-7,-18,-22,39,0,-10,7,13,-2,-52,-11,-23,-42,-9,-28,-7,-5,-11,18,-6,42,30,-106,36,14,15,-8,-6,-36,8,-5,-16,27,11,-3,3,17,17,7,-15,12,3,0,28,12,-4,-16,-21,-16,-6,-15,17,-8,-14,9,10,-2,-13,23,26,41,8,14,-16,12,-22,16,28,11,23,8,11,13,-31,23,8,-13,-17,21,-38,-7,24,-27,-16,-31,0,5,-6,4,-20,14,-3,9,10,-7,-106,1,-24,-6,-35,-2,7,-5,6,24,-4,-21,12,8,8,-18,3,-127,-41,-1,21,-8,-29,19,-13,24,-22,31,-38,2,-88,-12,-2,34,-37,4,-8,4,-34, /* [109][0][][] */ -10,-14,5,-18,22,-35,-21,-6,17,-23,6,-34,-12,15,28,-18,15,-17,-24,-23,-14,-24,-17,-32,6,-18,17,-25,11,-6,-12,28,3,-18,-21,-39,-8,16,-1,13,8,-97,-1,3,1,10,-72,-14,-38,-25,-1,-18,6,-14,-45,21,-3,6,-14,12,-21,16,24,-12,5,-5,0,-115,-13,13,-28,-25,13,8,-1,-62,1,14,-18,-3,17,-13,33,-77,11,-5,24,-1,-16,-34,7,8,-30,4,-3,-6,14,13,18,-10,12,0,-1,-15,-33,3,-18,-11,-13,-6,9,36,27,-29,-18,-2,-1,-17,-12,3,13,-34,-10,10,-39,29,31,-29,-24,9,6,-4,21,-3,-7,16,-17,15,-17,-16,-21,-16,-12,13,24,-24,-1,-37,32,-29,-5,5,-6,2,-31,10,-22,16,-26,-5,-1,-63,-7,9,-37,3,0,-2,-37,20,-35,-15,-14,-3,15,-15,-35,-11,0,28,-3,13,-3,-75,26,13,-16,7,-18,-5,-25,-18,-9,29,-15,-10,-127,9,-31,-1,-21,3,3,-19,-25,5,-30,-30,4,-7,-103,-7,-10,12,-9,14,-15,8,-23,16,6,-1,21,-3,-3,-18,-11,20,-9,39,-20,19,2,6,-7,-11,3,5,31,1,12,-37,-10,7,21,23,-90,-12,7,-2,18,-13,13,22,-11,-2,20,-18,-55,-12,10,-10,-100,-2,31,38,21,9,22,6,-21,8,0,7,9,-22,26,16,-4,19,-7,20,14,-8,-19,10,-7,-12,-12,6,2,-32,-91,-20,20,13,23,4,14,-4,-28,11,9,-28,22,3,-52,-20,-26,15,4,25,-40,11,0,24,-8,27,-22,-9,-3,21,-94,-5,16,14,20,5,16,-6,-16,26,-19,-49,16,18, /* [110][0][][] */ -63,11,-3,29,-69,-24,-54,-37,14,58,-72,-39,86,38,22,9,-9,13,12,7,-5,-22,-57,-31,-12,11,-30,-6,52,8,-25,14,-62,1,7,-52,-18,-1,9,44,13,-76,4,-47,-9,61,-94,39,0,-40,-16,-39,6,38,45,3,2,-63,-28,-124,51,-25,-17,13,28,35,-58,-31,29,-32,-82,-21,-54,-89,-52,-46,-3,-24,4,-114,33,66,-38,-94,96,-58,-26,-26,37,-30,-16,68,-100,42,32,-20,-15,-12,-74,107,-8,-28,31,-1,-18,-1,-8,43,-97,-35,7,4,13,17,13,-6,30,-7,-45,2,-13,-82,52,-77,-102,39,-7,-20,-50,-43,26,11,40,35,-27,-67,-28,-33,-120,21,-29,-43,-5,-15,-66,-29,-28,-33,-65,-52,26,59,-26,48,36,2,-90,19,27,8,-3,-26,9,14,7,-24,4,10,33,-3,-48,6,-5,47,64,71,-45,-61,-22,-27,0,27,38,-76,69,21,47,-17,-39,-47,-14,40,33,-15,-86,20,-77,29,-66,-56,-1,3,3,-17,-3,-1,-23,-8,36,2,-53,-28,40,-18,-20,28,11,-39,-37,-13,-71,26,47,42,-60,-73,-24,-23,-10,15,46,-5,7,-45,-57,-31,-5,44,-22,-34,-17,9,-5,31,32,25,-115,2,29,-16,30,12,-91,9,28,-41,50,-42,13,-7,-74,87,-37,-31,-3,-37,-46,27,-11,-43,-2,4,-40,-32,16,-7,9,38,-20,-21,6,-15,29,17,-64,-7,-29,-8,12,30,-2,57,-37,0,41,-7,27,-67,33,2,47,62,-36,-54,-82,31,-60,-36,24,-3,-19,-52,-76,-38,-127,20,-9,-28,-35,16,-24,40,-122,60,55,-73,8,-16,12,39,47,31,-1,-2,22,19, /* [111][0][][] */ 50,1,44,12,49,-2,-36,-37,72,31,77,-18,-2,-5,-43,28,-42,43,5,-1,-11,-49,9,12,-37,-3,7,20,-52,-49,-48,-36,-1,23,3,56,11,53,45,-28,59,89,-17,32,-7,85,18,32,8,29,-1,5,-3,-26,39,-73,46,-5,-15,59,27,23,-4,-40,-4,-1,-36,79,6,-32,16,-10,-61,32,-27,67,-47,21,-46,23,-25,-15,16,49,14,28,24,-37,-5,21,23,10,26,34,-1,33,-4,-3,85,-4,-33,60,33,4,4,2,45,-16,41,39,47,-6,9,-53,41,-28,62,-21,-71,-26,-33,18,-10,-56,43,41,28,40,11,-18,-23,13,11,-4,15,-36,-14,21,78,-65,45,43,-15,-74,31,-8,-60,90,-3,-52,-27,-36,-35,51,-81,-19,37,8,-63,-16,13,53,-49,-58,-22,-1,11,31,8,-8,-20,-22,-64,-58,-11,20,12,-27,47,40,-15,-6,28,59,-44,6,13,25,51,2,11,-11,34,78,2,-9,48,-39,10,45,-39,4,-7,73,-21,-60,-12,-55,18,19,72,15,-17,55,-1,4,-1,-28,-52,-4,-54,4,1,-39,127,-33,-43,-58,44,54,-9,67,-28,-5,31,39,-60,-49,-6,9,-57,-19,-16,-61,6,3,77,-12,19,24,49,-49,55,31,31,1,-17,61,12,45,-1,-63,40,27,-11,56,-8,-44,-3,30,-57,-56,-36,-15,-27,-44,-20,16,10,20,7,-2,-20,4,9,19,-30,20,25,37,-50,34,44,-11,81,40,5,50,13,-30,-21,-48,-46,36,53,68,43,-21,-22,-18,19,-26,18,26,78,-24,13,-5,30,-22,-26,29,-7,30,5,-2,71,11,-32,-16,62,45,-21,54,25,66, }; const TfArray<4, int> tensor_dimension8 = { 4, { 112,1,1,336 } }; const TfArray<112, float> quant8_scale = { 112, { 0.00069408846320584416, 0.00096241303253918886, 0.0013229973847046494, 0.00084041827358305454, 0.0010135520715266466, 0.00062543200328946114, 0.0010430775582790375, 0.0012776217190548778, 0.0013871249975636601, 0.00068849546369165182, 0.0011904677376151085, 0.00093008461408317089, 0.0010801501339301467, 0.0009766662260517478, 0.00070700165815651417, 0.0010111967567354441, 0.001137889688834548, 0.00095368182519450784, 0.00086519768228754401, 0.0011254892451688647, 0.0012250907020643353, 0.001192653551697731, 0.00086455862037837505, 0.0010858594905585051, 0.0009726410498842597, 0.0012893480015918612, 0.001043255440890789, 0.0014978062827140093, 0.00087123241974040866, 0.0010870075784623623, 0.00092357530957087874, 0.0014713197015225887, 0.00093558878870680928, 0.00074597779894247651, 0.00097518449183553457, 0.00089146103709936142, 0.00088948151096701622, 0.00066070916363969445, 0.00086802750593051314, 0.00072555313818156719, 0.00082176260184496641, 0.0015456483233720064, 0.0010264607844874263, 0.0008791295113041997, 0.0011097848182544112, 0.0011930743930861354, 0.0011384986573830247, 0.0010878265602514148, 0.0013685736339539289, 0.00077134184539318085, 0.00099543959368020296, 0.001289242529310286, 0.00088260573102161288, 0.00088488688925281167, 0.0012071105884388089, 0.0015373588539659977, 0.0013483633520081639, 0.0012940478045493364, 0.0009939814917743206, 0.0011379058705642819, 0.0010909027187153697, 0.00094896560767665505, 0.0010118437930941582, 0.00090327294310554862, 0.00075972283957526088, 0.0012445732718333602, 0.0011297460878267884, 0.001281541190110147, 0.00090361683396622539, 0.00097508943872526288, 0.00081137934466823936, 0.00082355551421642303, 0.0010283783776685596, 0.0012504641199484468, 0.00087829638505354524, 0.0013346533523872495, 0.00084889488061890006, 0.001663041184656322, 0.00092788884649053216, 0.001201754086650908, 0.0012439461424946785, 0.00093664031010121107, 0.0016502182697877288, 0.00079019105760380626, 0.0013012376148253679, 0.0013066899264231324, 0.0013220163527876139, 0.00068600528175011277, 0.0010872134007513523, 0.0011161074507981539, 0.0010621349792927504, 0.0010455450974404812, 0.00084677239647135139, 0.00080057518789544702, 0.00069789477856829762, 0.0010149519657716155, 0.00081348989624530077, 0.00081128597958013415, 0.0013816744321957231, 0.00079309748252853751, 0.00079320947406813502, 0.00089183670934289694, 0.0012471310328692198, 0.0010527551639825106, 0.0014530031476169825, 0.0011212283279746771, 0.0013106303522363305, 0.0014085767325013876, 0.0014170759823173285, 0.0014081534463912249, 0.00067871541250497103, 0.00096105091506615281, } }; const TfLiteAffineQuantization quant8 = { (TfLiteFloatArray*)&quant8_scale, (TfLiteIntArray*)&g0::quant7_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data9[336] = { -3816, -52, -512, -204, -634, -1947, -178, -42, -2648, -902, -456, -4305, -535, 5143, -1892, -355, -5086, -2865, 4165, 5434, -552, -1536, 4786, -1962, -73, -2207, -78, -3537, 1870, -2405, -108, -3725, -575, -3999, -2731, -2886, -4242, -1659, -475, -5305, -4248, -1411, -2794, -953, 4389, 2217, -2615, 4361, -4408, -2111, -3080, 2683, -3474, 1620, -3587, -1028, -3807, -1404, -424, -866, -825, -3591, -97, -4612, -744, -2847, 2287, -826, 3019, 4613, -334, -2767, 1632, -410, -3383, -1072, -2352, 1104, 5255, 458, -4316, -1831, -2827, -1468, -2579, 595, -2376, 3783, 12, -5352, 6328, -3045, -1000, -988, -311, -528, -2329, 4701, -2134, -1395, -3628, -1899, -3050, -1698, -903, 6308, -2933, -3201, 310, -2926, -1812, -2163, 884, -2798, 1024, -1057, 4431, -1399, 5136, 500, -1158, -2171, 4222, -2530, -133, -1194, -1177, -4508, -1411, -2083, -3924, -3160, -4384, -2622, -789, 5512, -2785, 436, -2990, -4419, -1213, -2791, 1856, -1761, -1496, -585, -1071, -577, -698, -1616, -1721, -2344, -3947, 5880, -3021, -3574, -45, -4652, 1609, -1870, -5034, -793, -2080, 4285, 4834, 3905, 1633, -4878, -434, -5060, -4749, 3920, -1094, -318, 5171, -3449, -1464, -331, -986, 2660, -3858, -3547, -429, -1714, -3172, -1278, 268, -2440, -1599, 1928, -3677, 271, -2522, -1190, 3481, -2180, -1297, -811, 628, 3834, -2397, -1958, -1706, -925, -2746, -3382, -3572, 2507, -3325, -5184, -1364, -805, 676, 835, 5292, -2431, -1812, -2338, -2131, -1857, -2897, -3613, 602, -543, -1043, -1656, -5521, 3324, -1046, 148, -3872, -2745, -1802, -2597, -1414, -947, -2708, -217, 4784, -2582, -3390, 4168, -2846, 40, -2219, -907, -182, -1379, -2152, -2752, -2910, -2719, -3252, -3746, -3259, 2745, -3375, -4601, -1258, 1929, -2529, -1013, -1237, -2362, -3723, -5453, -2933, 6660, -5097, -950, -1886, 4563, 2857, -2936, -625, -5014, 8035, -5942, -2656, 1733, -436, -2204, 5820, -2943, -3153, -2582, -2790, -468, 1579, 625, -4285, -2864, -2640, -2758, 253, -1136, 2425, -1344, -4282, -889, -1869, 8648, -913, 3727, -586, 2984, -151, -203, 3725, 496, -2853, -1656, -1535, -1230, -3731, -3226, -1653, -4884, -3912, -2046, -1554, -3724, -1919, -531, 2765, -1079, -3193, -82, -3219, -3630, -829, -2940, -1408, 137, -4255, -2550, }; const TfArray<1, int> tensor_dimension9 = { 1, { 336 } }; const TfArray<336, float> quant9_scale = { 336, { 0.0001310981169808656, 0.00016856328875292093, 0.00016733612574171275, 0.00012694798351731151, 0.00033112606615759432, 0.00027166621293872595, 0.00024284551909659058, 0.00021736127382609993, 0.00023135563242249191, 0.00024612524430267513, 0.00027999130543321371, 0.00021789057063870132, 0.00022307444305624813, 0.00025585904950276017, 0.00019490052363835275, 0.00019179968512617052, 0.00019664170395117253, 0.00017646283959038556, 0.00027365187997929752, 0.0001857240276876837, 0.00017011497402563691, 0.00020759858307428658, 0.00018190742412116379, 0.00018273133900947869, 0.00025649074814282358, 0.00023096824588719755, 0.00019218510715290904, 0.00019826523202937096, 0.00024043448502197862, 0.00013975884940009564, 0.00024466213653795421, 0.00018434740195516497, 0.00027335862978361547, 0.00020694987324532121, 0.00022176727361511439, 0.00026327543309889734, 0.00033521748264320195, 0.00021279485372360796, 0.00020797208708245307, 0.00016667600721120834, 0.00015264432295225561, 0.00022581504890695214, 0.00020174204837530851, 0.00015266785339917988, 0.00012734855408780277, 0.00020769245747942477, 0.00032695379923097789, 0.00026897294446825981, 0.00024183561617974192, 0.00025784267927519977, 0.00016537609917577356, 0.00027857514214701951, 0.0001875685848062858, 0.00031800777651369572, 0.00018579313473310322, 0.0001876205496955663, 0.0002275120496051386, 0.00025656213983893394, 0.00028704886790364981, 0.00060273538110777736, 0.00016364081238862127, 0.00019271778000984341, 0.00020443114044610411, 0.00021596270380541682, 0.00013571248564403504, 0.00018631448619998991, 0.00021071704395581037, 0.00056643143761903048, 0.00023967928427737206, 0.00025074119912460446, 0.00025828307843767107, 0.00023518242232967168, 0.00012585468357428908, 0.00022144241665955633, 0.00023910684103611857, 0.0003936600114684552, 0.00016403297195211053, 0.00028240171377547085, 0.00019437265291344374, 0.00015359919052571058, 0.00022330740466713905, 0.00011969222396146506, 0.00018174989963881671, 0.00040132392314262688, 0.00021858945547137409, 0.00012639714987017214, 0.00021929289505351335, 0.00027371913893148303, 0.00023369945120066404, 0.00017387708066962659, 0.00018828228348866105, 0.00016845003119669855, 0.00027675012825056911, 0.00023134677030611783, 0.00019675368093885481, 0.00022848049411550164, 0.00021276419283822179, 0.00015070433437358588, 0.00023336919548455626, 0.0002528879267629236, 0.00012790433538611978, 0.00017094946815632284, 0.00020045231212861836, 0.00028179696528241038, 0.00022404441551771015, 0.00019035460718441755, 0.00019310045172460377, 0.00024406329612247646, 0.00021453716908581555, 0.00022711283236276358, 0.00022006337530910969, 0.00025037018349394202, 0.00022246164735406637, 0.00029132564668543637, 0.0003066783829126507, 0.00018102522881235927, 0.00024303224927280098, 0.00024220082559622824, 0.00017023766122292727, 0.00019071446149609983, 0.00019901986524928361, 0.00022999482462182641, 0.00027789972955361009, 0.00021793394989799708, 0.0004380833706818521, 0.00022352335508912802, 0.00025282779824919999, 0.00015372844063676894, 0.00022897953749634326, 0.00016234643408097327, 0.00016713778313715011, 0.0002458617091178894, 0.00014652802201453596, 0.00019159876683261245, 0.00015954169793985784, 0.00019661783881019801, 0.00019826635252684355, 0.00022741258726455271, 0.00017808817210607231, 0.00017832902085501701, 0.00016337103443220258, 0.00025819233269430697, 0.00026061083190143108, 0.00018894064123742282, 0.00032898446079343557, 0.00017025999841280282, 0.0005987263866700232, 0.00056235986994579434, 0.00014135685341898352, 0.00023925377172417939, 0.00035024556564167142, 0.00017871477757580578, 0.00014649232616648078, 0.000190604871022515, 0.00024240970378741622, 0.00020216839038766921, 0.00019058329053223133, 0.00016373970720451325, 0.0002543044975027442, 0.00021037383703514934, 0.00022525162785314023, 0.00019945242092944682, 0.00023703349870629609, 0.00011710939725162461, 0.00024458509869873524, 0.00022564607206732035, 0.00022361261653713882, 0.00027024929295293987, 0.00021444672893267125, 0.00018178981554228812, 0.00022018287563696504, 0.00020802387734875083, 0.00034648907603695989, 0.00014876018394716084, 0.00019180709205102175, 0.00021033221855759621, 0.00020280545868445188, 0.0001709409843897447, 0.00026830314891412854, 0.00016545075050089508, 0.00015259046631399542, 0.0002284177317051217, 0.00014398568600881845, 0.00033498002449050546, 0.00019263925787527114, 0.0001790201204130426, 0.00014398360508494079, 0.00026098854141309857, 0.00026240790612064302, 0.00024576130090281367, 0.00022000893659424037, 0.00018351069593336433, 0.00028242197004146874, 0.00028662217664532363, 0.00018020541756413877, 0.00021921769075561315, 0.00021430013293866068, 0.00020737048180308193, 0.00014576346438843757, 0.00018267236009705812, 0.00021814882347825915, 0.00019382698519621044, 0.00013287580804899335, 0.00018460527644492686, 0.0002588418428786099, 0.00015585232176817954, 0.00023242463066708297, 0.00035970049793832004, 0.00016671628691256046, 0.00019811942183878273, 0.00046216289047151804, 0.00024595114518888295, 0.0001986123388633132, 0.00019406012143008411, 0.00025360070867463946, 0.0002079246478388086, 0.00019683987193275243, 0.00017710865358822048, 0.00020107488671783358, 0.00028991332510486245, 0.00020782060164492577, 0.00018822640413418412, 0.00021869355987291783, 0.00022371845261659473, 0.00058222690131515265, 0.00023458906798623502, 0.00014515750808641315, 0.00026328273816034198, 0.00023032675380818546, 0.00040542945498600602, 0.00016731258074287325, 0.00019786886696238071, 0.00027248420519754291, 0.00016269105253741145, 0.00032482738606631756, 0.00025616335915401578, 0.00027258641785010695, 0.00017952607595361769, 0.00025700533296912909, 0.00027540745213627815, 0.00018691019795369357, 0.00017801139620132744, 0.00028251003823243082, 0.00037299786345101893, 0.00013069315173197538, 0.00022926583187654614, 0.00021174397261347622, 0.00024413398932665586, 0.00022684456780552864, 0.0001691880461294204, 0.00028097291942685843, 0.00018557884322945029, 0.00014114892110228539, 0.00022967335826251656, 0.0001793793635442853, 0.00023878156207501888, 0.00022279204858932644, 0.00025568643468432128, 0.00017647129425313324, 0.000188015605090186, 0.00026824002270586789, 0.00022998984786681831, 0.00038083846447989345, 0.00016739772399887443, 0.0002764551027212292, 0.00019305873138364404, 0.0002568091731518507, 0.00026547885499894619, 0.00019915463053621352, 0.00018922226445283741, 0.00027095599216409028, 0.00021345193090382963, 0.00019653384515549988, 0.0001853185094660148, 0.00064363644924014807, 0.00016886561934370548, 0.00017396874318365008, 0.00016397173749282956, 0.00017233999096788466, 0.0001686036994215101, 0.00018585173529572785, 0.00015723987598903477, 0.00025642971741035581, 0.00014681546599604189, 0.00021184100478421897, 0.00016042802599258721, 0.00021021583233959973, 0.00043245271081104875, 0.00022290354536380619, 0.00026318020536564291, 0.00017458244110457599, 0.00018211262067779899, 0.00017629345529712737, 0.00020677706925198436, 0.00022497010650113225, 0.00026766574592329562, 0.0002021504333242774, 0.00020025151025038213, 0.00016955957107711583, 0.00023979099933058023, 0.00019768021593336016, 0.00016139567014761269, 0.00022711946803610772, 0.00017654792463872582, 0.00020372754079289734, 0.00024465486058034003, 0.0003336012305226177, 0.00035636188113130629, 0.0002222958137281239, 0.00032097476650960743, 0.000184920325409621, 0.0002253763668704778, 0.0002432187320664525, 0.0003017230483237654, 0.00013330766523722559, 0.00023038229846861213, 0.00015285698464140296, 0.00017363275401294231, 0.0003141525958199054, 0.00016173777112271637, 0.00028131657745689154, 0.00019295555830467492, 0.00018553413974586874, 0.00027937372215092182, 0.0003061035240534693, 0.00022759565035812557, 0.0002570520737208426, 0.0003757842059712857, 0.00014876837667543441, 0.00024069554638117552, 0.00020214209507685155, 0.00014468772860709578, 0.00043895779526792467, 0.00023768637038301677, 0.00016872024571057409, 0.00023766951926518232, } }; const TfArray<336, int> quant9_zero = { 336, { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } }; const TfLiteAffineQuantization quant9 = { (TfLiteFloatArray*)&quant9_scale, (TfLiteIntArray*)&quant9_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data10[1*3*3*336] = { /* [0][0][][] */ 127,127,-103,127,11,-76,127,43,-26,-59,-43,43,-32,-127,-54,52,25,115,-30,-78,20,62,30,98,-28,5,-89,52,65,120,-4,99,18,11,7,127,-116,53,127,-4,19,-127,-11,-90,106,99,127,16,4,45,10,-111,-67,45,37,26,110,127,-127,2,127,37,81,101,-109,32,0,-4,9,17,-127,68,-75,-9,23,-39,-110,-66,-64,3,83,-32,-47,127,-86,95,-39,-60,-79,77,-127,127,32,-92,-15,92,-79,-127,81,-27,19,13,72,-4,41,-55,111,-23,6,-11,-94,-45,127,58,-16,-43,-127,0,-110,52,35,-124,-38,-1,-7,79,-8,125,17,62,24,-34,92,46,102,120,30,60,8,60,18,68,-38,-15,-20,42,13,127,-113,25,-83,-127,85,-51,57,53,-21,127,98,-19,126,-127,-90,97,-11,0,-19,85,33,-16,-12,-95,74,44,-40,48,67,115,-48,-127,53,65,-3,-24,63,7,-61,-67,127,6,104,0,27,127,12,35,-127,33,13,-7,-85,17,-56,-57,2,-64,31,51,38,-17,-8,-22,-16,27,-9,59,126,-74,-5,-17,43,87,87,107,14,19,-23,8,-63,3,-25,-13,5,-24,-52,-127,127,45,-67,-127,-38,-52,31,53,100,-59,109,31,-38,16,47,-45,25,9,72,-127,24,-89,-25,-127,33,-14,127,38,26,-34,-27,-44,42,-9,-26,-50,-59,-57,-6,127,-127,33,-83,-5,75,119,-127,86,-27,127,43,-7,-81,-38,-41,88,127,20,96,-15,-40,11,123,127,-127,-13,127,-34,-25,-1,127,-37,-127,-69,44,28,116,-34,-37,80,-111,-27,90,98,-21,127,-99,15,21,127,33,-9,-57,-17,-27,-45,-6,-48,-29,127, 125,64,-31,-85,5,10,-105,71,127,-17,20,41,3,-26,19,43,103,-26,-31,-96,13,15,-97,95,75,-84,127,-28,37,47,-44,7,0,-19,-20,83,33,-47,-3,39,95,2,-30,7,-107,-127,10,-12,127,-13,9,-52,-30,16,75,-19,102,-3,-27,-3,75,-2,-18,-15,-96,-4,47,-1,49,-4,2,61,25,103,13,5,87,-84,-77,-57,76,-119,45,-2,-40,122,88,-19,43,127,-76,80,-37,-32,-56,101,127,5,-95,29,-49,-93,-127,42,-97,-79,46,-17,-4,20,-12,27,-35,88,-10,-78,-73,26,-127,-55,95,4,-84,24,-5,45,58,86,-22,-15,126,-10,124,-95,127,-58,-15,64,-89,42,-95,99,-37,50,0,10,15,5,99,-6,-11,5,29,-112,115,127,-127,98,-49,-4,56,-5,0,-113,-39,-42,0,45,66,61,29,-47,22,-106,-96,-13,-20,85,-60,-95,51,18,42,-21,127,-27,-69,127,84,25,75,-105,41,63,-40,89,2,-95,-88,-72,-26,-48,37,11,-12,66,63,-3,17,-6,-1,-39,-51,54,-84,-14,76,83,-69,17,-59,-42,57,-26,1,-24,-43,-22,-51,15,-6,37,-5,-35,-16,40,-37,-30,-34,-29,-29,-105,39,30,100,-64,-38,-80,-26,95,33,-56,-123,56,15,-27,78,34,0,-87,-5,-54,8,12,14,-2,-15,-18,39,-76,-1,-127,-15,-15,-8,90,-75,127,62,-47,-62,127,-98,86,109,85,-58,37,-98,-107,123,62,-8,66,10,-51,-66,-3,-27,65,-20,-102,-1,-75,9,24,-28,14,-53,-30,86,28,12,11,12,48,73,30,57,69,66,71,4,-91,13,60,17,-1,74,58,12,88,-14,28,45,-11, 124,113,34,3,-52,65,-2,65,82,-127,-25,-45,27,-8,-12,52,61,-24,-37,2,-33,-112,-57,-2,82,-15,-85,127,-30,11,-4,-104,127,-111,57,19,48,-1,-29,62,119,-1,56,-34,0,-85,8,-127,38,57,-3,-88,82,-32,70,-12,75,-81,-19,127,11,-13,113,-63,85,-21,41,5,125,-97,-9,-127,-55,-24,-32,3,-76,-127,-53,-34,-78,-50,28,11,40,127,25,8,98,45,-13,-4,-127,23,-98,-71,80,3,43,8,-125,-23,-78,-81,50,-127,-10,-6,-127,32,16,127,-35,127,-127,-26,-36,19,-51,-93,-35,49,-52,0,127,10,46,-83,59,-127,8,15,127,41,80,-127,33,121,127,-36,75,88,-59,-127,127,-91,-2,1,-127,-14,-5,39,-105,-109,-21,43,60,64,-127,69,70,-21,-58,-97,-127,-127,6,21,123,37,103,127,-127,-94,-127,126,-32,96,67,-101,38,36,-55,27,-18,-91,127,80,-91,-80,-39,121,18,-66,-43,-127,-2,-18,37,2,85,-127,-34,24,-69,96,17,-11,-50,51,6,-17,-7,-41,14,-127,-87,-51,16,0,-16,-68,59,47,-7,-127,41,-37,-61,15,-43,4,60,57,-28,73,-28,-65,-127,30,-5,46,-13,-127,124,-53,10,-27,16,108,127,-26,-32,42,-127,84,-23,19,63,-36,-102,-127,6,-79,19,-55,2,-24,-1,44,8,-83,0,56,-127,5,-58,79,35,114,-80,102,-29,-34,127,-96,30,-35,-127,5,9,44,4,51,-54,-127,47,-127,27,-88,-21,-127,0,-127,52,45,-13,-25,-3,-9,88,-45,-46,-28,122,-1,-56,-48,78,59,3,8,-10,-30,49,-55,12,-27,34,-14,-127,122,-6,-20,-38,-100, /* [0][1][][] */ -60,-89,-84,2,13,32,-80,-127,77,-15,-25,72,-39,-55,127,101,77,-75,2,-88,-76,112,36,-127,-127,26,-39,-61,-31,110,114,127,-49,73,-7,99,73,59,-74,127,75,104,127,-68,66,82,1,-40,25,-58,110,-3,4,0,-22,90,17,-3,-30,4,120,22,-40,40,-85,127,-54,127,-103,60,127,-45,117,-127,50,127,-34,15,-127,127,58,2,-21,6,-45,46,-29,38,-11,43,-108,99,52,-21,49,-24,33,-119,-31,66,77,82,76,-31,-85,37,31,127,-9,-47,-59,45,112,-15,-30,20,-12,58,-21,64,80,127,-17,82,-9,94,-19,117,-99,52,99,23,79,111,-119,75,53,-84,-23,116,127,33,-45,56,70,110,-31,-7,-90,82,80,-27,25,-54,86,77,-15,94,15,-86,-81,117,31,76,5,-11,44,-59,-70,127,26,-59,43,92,-45,73,127,-127,-23,7,68,50,-99,127,58,127,-31,73,71,-21,127,23,113,-58,108,40,106,-66,105,-97,89,82,4,-125,55,-6,124,53,87,115,127,-52,-35,-2,-78,93,127,127,127,-7,14,-22,-25,-54,9,101,14,-7,127,-38,127,127,103,-1,30,39,96,-94,-57,-60,-11,-124,81,42,1,-127,-127,82,23,-25,36,43,43,63,106,-55,0,-86,-41,92,104,86,5,127,32,86,-63,-96,49,25,-89,17,-62,45,39,87,-108,79,102,-87,127,-55,-107,12,27,120,96,127,58,-15,127,113,-121,74,68,64,-127,-24,127,85,-72,-99,70,53,91,-15,-44,67,-17,-2,-62,127,-32,69,40,127,28,107,32,113,76,100,127,59,1,17,-47,7,-62,29,-48,-126,-38,127,23,80, 36,-79,-28,60,-14,30,-16,-60,81,90,1,43,-63,-39,72,71,127,110,-42,-82,-78,72,-127,-64,-15,71,74,66,-34,-50,24,53,-5,53,121,24,72,66,27,72,60,-17,58,127,-124,-41,20,-55,76,23,127,25,123,-43,33,63,127,8,26,10,-22,101,-25,127,127,97,-61,-4,-127,-107,-47,-8,-115,-77,37,-3,127,26,-60,-102,13,127,30,8,53,-82,127,-45,-79,85,-72,110,40,24,-63,39,72,-96,72,-80,67,127,78,41,-79,-15,28,69,-6,9,73,18,-56,12,-38,-31,-48,-31,-100,-65,-74,59,-16,75,9,-20,-91,63,71,89,74,47,57,94,-1,-48,60,-35,10,87,-15,102,-7,91,26,-58,-1,-4,100,-10,43,12,103,-91,127,98,96,3,18,-4,127,-22,87,-111,-59,-53,-14,127,-37,59,127,-90,3,73,-65,-8,85,-64,6,-80,103,56,127,52,74,-11,-52,56,95,-48,64,-39,79,49,-69,67,-15,86,-51,-71,109,25,119,-47,65,127,25,-42,127,83,11,87,-39,-65,-116,-29,-86,126,71,56,36,41,-83,93,4,-21,127,-67,51,-28,55,61,-62,-15,7,-53,56,-87,-46,37,124,30,44,-19,109,7,-4,87,82,19,73,59,127,72,51,-43,87,127,-30,-57,41,50,2,111,27,105,85,-82,127,43,14,-63,-56,86,21,69,-81,71,-55,-127,-48,-61,-95,127,63,-36,127,-17,-20,-9,92,-7,12,-59,-45,1,-77,5,25,-41,81,-62,43,-123,90,-60,-6,5,-83,11,125,113,58,39,67,34,127,39,78,18,45,54,-14,-92,-43,-66,99,-13,127,24,90,64,18,-25,81,62, -94,-56,104,-93,127,39,-27,4,-25,73,127,67,-47,-31,27,-127,48,127,-60,35,127,43,-88,-52,71,64,-81,78,-80,10,2,28,10,32,104,-46,95,-4,-18,80,127,-5,6,0,-127,-97,72,-43,53,44,-12,-43,-20,-39,127,62,76,35,84,4,-60,57,50,67,22,39,113,0,17,-115,-11,110,28,13,17,-4,-14,-5,-84,-12,-1,32,-33,15,81,-57,36,-77,62,91,-1,18,127,38,75,-65,73,109,44,9,5,97,-2,44,127,-36,127,105,112,78,127,15,-80,113,118,-112,-92,-49,-57,-103,74,18,-127,9,-12,13,127,127,-53,34,54,-18,70,127,-17,-111,28,-27,-21,13,-62,49,53,-5,29,-42,45,14,-114,-75,25,127,-35,-127,-68,118,37,-84,24,119,39,12,60,-127,-60,-35,-80,83,127,-1,14,-36,8,-127,-8,-20,1,-19,66,-113,15,127,-42,27,57,-36,76,43,53,-51,29,101,63,25,-111,99,-9,-7,-75,-25,127,-62,32,67,2,63,-83,-53,31,127,0,3,54,-115,-15,1,85,38,91,46,127,127,-127,13,127,-4,106,-26,48,127,6,-63,127,95,127,85,60,-40,-91,91,127,82,-127,-63,66,54,-2,62,90,127,-17,49,-8,-5,-40,40,47,81,107,-51,-32,55,7,-65,127,41,39,-127,41,-103,87,-40,84,50,-14,122,-85,34,-85,83,-71,15,-67,101,43,-13,-90,-2,-37,61,54,-127,-4,-25,-127,-97,-61,120,113,27,86,-108,-25,-49,70,-41,-7,-10,-82,-127,127,-80,127,-26,-127,103,-38,60,67,-13,-19,46,-12,105,-39,31,25,127,-4,100,-70,-17,59,-32,127,40, /* [0][2][][] */ -58,11,-64,-44,7,-6,64,-21,21,2,1,39,127,-60,45,23,-32,-30,11,-86,-76,-63,-30,-53,46,39,54,85,-127,61,99,-25,-84,127,-42,-8,7,-127,-15,107,3,11,116,60,73,26,0,71,-1,40,97,-80,127,-127,-97,-35,-99,56,-20,-6,21,-66,-27,-11,6,66,-25,4,-30,48,-39,57,-74,-5,87,-6,116,33,-94,84,127,92,127,3,13,-92,-41,60,78,63,-76,-69,-8,127,127,-90,-6,-50,127,16,127,-68,21,127,89,11,-45,-65,-15,127,-79,-71,3,111,-4,93,-72,-20,56,127,-127,-37,-64,127,-13,11,-7,-28,-5,47,78,127,53,97,7,-25,-109,-127,-1,127,78,-127,-50,94,-3,-127,56,-4,-44,127,93,-7,10,-1,9,-80,-30,60,1,84,-89,-5,43,60,61,25,127,14,-89,105,-38,-43,-7,63,-59,85,44,-112,-127,24,88,-112,-91,-41,17,81,-74,78,-4,127,2,-127,127,-54,127,-67,6,68,28,-127,50,72,-86,127,12,24,54,-17,46,71,-4,-62,-102,96,-51,93,34,85,57,127,13,33,8,-61,-2,75,94,-127,77,-32,122,126,-51,127,58,48,5,127,-1,88,42,28,89,-26,27,3,-24,21,-47,10,51,108,127,127,84,-71,127,-106,-90,26,-8,-109,-12,-23,10,60,77,-87,31,-47,127,-18,-64,127,28,64,-35,71,-2,26,53,-50,-49,91,-116,30,65,22,12,-40,1,40,-12,26,59,77,-38,19,90,63,15,21,49,9,-46,-127,-21,47,72,72,58,-82,-15,64,-71,13,-47,127,-127,7,26,9,-87,-14,-127,35,17,-6,61,-112,-65,12,-4,-106,4,33, 63,-16,-39,-30,-5,127,50,-1,-41,92,-39,127,69,-35,10,-21,47,55,-51,-62,-55,27,-80,71,-55,127,-27,36,-35,-85,-17,67,-62,58,127,24,98,54,11,67,-27,-8,38,81,-78,-74,7,-41,76,127,61,-48,90,-37,-69,-40,33,49,-53,-4,-76,127,-127,88,84,-44,-107,-1,-80,-127,6,97,43,7,127,5,62,43,-37,-53,88,119,105,-5,92,-51,-42,-68,94,42,-25,-22,-46,97,63,-59,-15,-57,68,127,116,45,55,-13,123,-108,-44,96,-13,92,76,9,-45,79,-18,127,-80,127,25,-11,32,-17,-71,8,7,9,55,16,84,53,-25,94,15,-4,-44,-45,127,-13,12,42,89,7,-59,20,-11,-7,36,0,35,76,28,67,127,-39,-1,17,-45,1,-68,59,68,-13,102,-63,-77,-45,-70,73,-74,67,19,-87,-7,59,-1,127,28,-30,28,39,63,54,-41,-27,-6,105,-81,3,-36,-39,-9,60,12,20,-64,48,-4,-12,-37,-6,-74,83,124,101,127,79,14,-72,90,79,0,-30,127,-119,6,62,28,38,110,-35,87,123,11,-23,-21,36,74,9,-18,-28,65,-7,57,119,71,42,116,51,-25,64,77,-92,54,6,-39,100,-4,-31,127,-69,9,127,81,97,44,-43,95,61,-26,18,62,-28,-11,57,99,127,127,-51,91,86,-47,-69,-82,87,30,-42,-19,27,127,-85,32,77,7,-98,31,-57,54,-43,32,127,-17,2,-3,126,57,58,-77,-6,53,-91,92,-43,-90,-73,-71,-117,12,27,-62,51,7,-5,-100,-1,-54,-17,16,108,77,-20,13,-9,-10,-98,-66,18,127,-15,86,127,77,127,101,-26,110,29, -95,0,127,-31,-32,-44,85,2,-12,-24,-47,97,-38,-65,-121,-54,30,-75,-127,127,122,-127,-73,81,-45,72,-38,47,-37,-127,-127,37,-7,67,68,-12,127,98,-65,42,36,-1,-39,-43,-74,-55,-26,-30,92,-7,-93,-127,50,-45,82,-127,-3,71,64,-11,-106,81,38,90,0,90,-127,2,-84,-100,26,51,-127,78,70,-4,91,-56,2,6,24,75,101,-8,127,-106,-32,-127,-127,-38,61,115,-37,-85,-26,-127,42,100,-37,33,108,39,35,83,31,-126,-103,97,-79,-65,76,-3,-18,18,3,23,-30,54,-32,-9,-5,26,-92,-95,-3,-127,73,-94,-127,65,-127,-48,-39,-104,22,-106,76,-37,15,-60,-103,-27,127,-3,-5,-70,-127,9,-51,-73,127,51,77,-74,-47,-6,76,59,-36,127,89,19,127,-96,-34,-30,-88,17,9,54,109,43,29,-3,-17,-93,-102,-32,15,46,-127,70,-76,24,-14,27,-3,-26,-42,-47,41,-48,-37,33,-86,12,-11,-127,-127,50,-65,111,-127,52,75,25,127,-127,-78,35,5,127,-62,-127,127,17,-27,-34,-54,-3,68,77,-72,-127,-3,51,125,-105,27,88,46,12,28,77,33,-27,48,15,-81,19,58,127,-80,-5,-127,84,2,127,-74,-26,46,47,27,-94,50,10,118,42,127,76,-127,-4,2,49,107,77,89,-32,70,127,86,-72,127,37,-16,-18,64,31,102,15,46,93,1,84,-96,-125,33,4,-3,56,-74,18,-24,127,-97,1,94,-12,35,-64,70,-77,-86,50,-127,-13,5,-127,-59,-4,50,-18,-61,-127,10,95,-65,73,21,-127,-127,-16,-8,127,-36,-21,70,-45,21,36,92,-44,127,-29,74,18, }; const TfArray<4, int> tensor_dimension10 = { 4, { 1,3,3,336 } }; const TfArray<336, float> quant10_scale = { 336, { 0.0055716698989272118, 0.0071639395318925381, 0.0071117854677140713, 0.0053952890448272228, 0.014072857797145844, 0.011545813642442226, 0.010320934467017651, 0.0092378538101911545, 0.0098326141014695168, 0.010460322722792625, 0.011899630539119244, 0.0092603489756584167, 0.009480663575232029, 0.010874009691178799, 0.008283272385597229, 0.0081514865159988403, 0.0083572724834084511, 0.00749967060983181, 0.011630204506218433, 0.0078932708129286766, 0.0072298860177397728, 0.008822939358651638, 0.0077310651540756226, 0.0077660814858973026, 0.010900855995714664, 0.0098161501809954643, 0.0081678666174411774, 0.0084262723103165627, 0.010218465700745583, 0.0059397509321570396, 0.010398140177130699, 0.0078347641974687576, 0.011617741547524929, 0.008795369416475296, 0.0094251092523336411, 0.011189205572009087, 0.01424674317240715, 0.0090437810868024826, 0.0088388137519359589, 0.0070837303064763546, 0.0064873835071921349, 0.0095971394330263138, 0.0085740368813276291, 0.0064883837476372719, 0.0054123136214911938, 0.0088269291445612907, 0.01389553677290678, 0.011431349441409111, 0.010278013534843922, 0.010958313941955566, 0.0070284837856888771, 0.011839443817734718, 0.0079716648906469345, 0.013515329919755459, 0.0078962082043290138, 0.0079738730564713478, 0.0096692619845271111, 0.010903891175985336, 0.012199576944112778, 0.025616252794861794, 0.0069547346793115139, 0.0081905052065849304, 0.0086883231997489929, 0.0091784149408340454, 0.0057677808217704296, 0.0079183652997016907, 0.0089554740116000175, 0.024073334410786629, 0.010186369530856609, 0.010656501166522503, 0.010977030731737614, 0.009995252825319767, 0.0053488239645957947, 0.0094113023951649666, 0.010162040591239929, 0.016730550676584244, 0.0069714011624455452, 0.012002072297036648, 0.0082608377560973167, 0.006527965422719717, 0.0094905644655227661, 0.005086919292807579, 0.0077243708074092865, 0.017056265845894814, 0.0092900516465306282, 0.0053718788549304008, 0.0093199480324983597, 0.011633062735199928, 0.0099322265014052391, 0.0073897754773497581, 0.008001997135579586, 0.007159125991165638, 0.011761880479753017, 0.0098322378471493721, 0.0083620315417647362, 0.0097104208543896675, 0.0090424781665205956, 0.0064049339853227139, 0.0099181905388832092, 0.010747736319899559, 0.0054359342902898788, 0.0072653521783649921, 0.0085192229598760605, 0.011976370587944984, 0.0095218876376748085, 0.0080900704488158226, 0.0082067688927054405, 0.010372689925134182, 0.0091178296133875847, 0.0096522951498627663, 0.0093526933342218399, 0.010640732944011688, 0.0094546200707554817, 0.012381339445710182, 0.013033831492066383, 0.0076935719698667526, 0.010328870266675949, 0.010293534956872463, 0.0072351004928350449, 0.008105364628136158, 0.0084583442658185959, 0.0097747799009084702, 0.01181073859333992, 0.0092621929943561554, 0.018618542701005936, 0.0094997426494956017, 0.010745180770754814, 0.0065334588289260864, 0.0097316298633813858, 0.0068997233174741268, 0.0071033556014299393, 0.0104491226375103, 0.0062274406664073467, 0.008142947219312191, 0.0067805219441652298, 0.0083562582731246948, 0.008426319807767868, 0.0096650347113609314, 0.0075687472708523273, 0.0075789829716086388, 0.0069432687014341354, 0.010973174124956131, 0.011075959540903568, 0.0080299768596887589, 0.013981839641928673, 0.007236049510538578, 0.02544587105512619, 0.023900294676423073, 0.0060076662339270115, 0.010168285109102726, 0.014885435812175274, 0.0075953779742121696, 0.0062259240075945854, 0.008100707083940506, 0.010302412323653698, 0.0085921566933393478, 0.0080997897312045097, 0.0069589372724294662, 0.010807940736413002, 0.0089408876374363899, 0.0095731941983103752, 0.0084767276421189308, 0.010073923505842686, 0.004977149423211813, 0.010394866578280926, 0.0095899580046534538, 0.0095035359263420105, 0.011485595256090164, 0.0091139860451221466, 0.0077260672114789486, 0.0093577718362212181, 0.0088410144671797752, 0.014725785702466965, 0.0063223079778254032, 0.0081518013030290604, 0.0089391190558671951, 0.008619232103228569, 0.007264991756528616, 0.011402883566915989, 0.007031656801700592, 0.0064850947819650173, 0.0097077535465359688, 0.0061193914152681828, 0.014236651360988617, 0.0081871682778000832, 0.0076083550229668617, 0.0061193034052848816, 0.011092012748122215, 0.011152336373925209, 0.010444855317473412, 0.0093503799289464951, 0.0077992044389247894, 0.012002933770418167, 0.012181442230939865, 0.0076587297953665257, 0.0093167517334222794, 0.0091077554970979691, 0.0088132452219724655, 0.0061949468217790127, 0.0077635752968490124, 0.0092713246122002602, 0.0082376468926668167, 0.0056472215801477432, 0.0078457240015268326, 0.011000778526067734, 0.0066237235441803932, 0.0098780468106269836, 0.015287270769476891, 0.0070854420773684978, 0.0084200752899050713, 0.019641922786831856, 0.010452923364937305, 0.0084410244598984718, 0.0082475552335381508, 0.010778030380606651, 0.0088367974385619164, 0.0083656944334506989, 0.0075271176174283028, 0.0085456827655434608, 0.012321315705776215, 0.0088323755189776421, 0.0079996222630143166, 0.0092944763600826263, 0.0095080342143774033, 0.024744642898440361, 0.0099700354039669037, 0.0061691938899457455, 0.011189516633749008, 0.0097888866439461708, 0.017230750992894173, 0.0071107842959463596, 0.0084094265475869179, 0.011580578051507473, 0.0069143697619438171, 0.013805164024233818, 0.010886942967772484, 0.011584922671318054, 0.0076298583298921585, 0.01092272624373436, 0.011704816482961178, 0.0079436833038926125, 0.007565484382212162, 0.012006676755845547, 0.015852408483624458, 0.0055544590577483177, 0.009743797592818737, 0.0089991185814142227, 0.010375694371759892, 0.0096408938989043236, 0.0071904920041561127, 0.011941349133849144, 0.0078871008008718491, 0.0059988289140164852, 0.0097611173987388611, 0.0076236226595938206, 0.010148216038942337, 0.0094686616212129593, 0.010866673663258553, 0.0075000296346843243, 0.0079906629398465157, 0.011400201357901096, 0.0097745684906840324, 0.016185633838176727, 0.0071144034154713154, 0.011749341152608395, 0.0082049956545233727, 0.010914389044046402, 0.011282850988209248, 0.0084640718996524811, 0.008041946217417717, 0.011515629477798939, 0.0090717067942023277, 0.0083526885136961937, 0.0078760366886854172, 0.027354549616575241, 0.0071767889894545078, 0.007393671665340662, 0.0069687985815107822, 0.0073244492523372173, 0.007165656890720129, 0.0078986985608935356, 0.006682694423943758, 0.010898263193666935, 0.0062396572902798653, 0.0090032424777746201, 0.0068181911483407021, 0.0089341728016734123, 0.018379239365458488, 0.0094734001904726028, 0.011185158975422382, 0.0074197538197040558, 0.0077397865243256092, 0.0074924714863300323, 0.0087880250066518784, 0.0095612294971942902, 0.011375794187188148, 0.0085913930088281631, 0.0085106892511248589, 0.0072062816470861435, 0.010191117413341999, 0.0084014087915420532, 0.006859316024929285, 0.0096525773406028748, 0.0075032869353890419, 0.0086584202945232391, 0.010397831909358501, 0.014178052544593811, 0.015145380049943924, 0.0094475718215107918, 0.013641427271068096, 0.0078591136261820793, 0.0095784952864050865, 0.010336795821785927, 0.012823229655623436, 0.0056655756197869778, 0.009791247546672821, 0.0064964219927787781, 0.0073793921619653702, 0.013351485133171082, 0.0068738549016416073, 0.011955954134464264, 0.008200610987842083, 0.0078852009028196335, 0.011873383074998856, 0.013009399175643921, 0.0096728149801492691, 0.010924712754786015, 0.015970828011631966, 0.0063226558268070221, 0.010229560546576977, 0.0085910391062498093, 0.0061492281965911388, 0.018655706197023392, 0.010101670399308205, 0.0071706105954945087, 0.010100954212248325, } }; const TfLiteAffineQuantization quant10 = { (TfLiteFloatArray*)&quant10_scale, (TfLiteIntArray*)&g0::quant9_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data11[336] = { -2471, 413, -400, -66, -3242, -1456, -2377, -937, -723, -1716, -3565, 735, -219, 313, 367, 263, -295, 684, -1357, 1678, -193, -318, 471, -1339, -1301, 755, -455, -105, 125, 204, -447, -496, -895, 1080, -1454, -1033, -1462, 1299, 485, 1041, 569, -2789, -1380, -123, 1962, -1191, -4513, 492, -1596, -609, 1692, 710, 169, 698, -182, 464, -1293, -943, 167, -2839, 599, 1055, -514, 1140, -41, -563, 390, -4098, -698, -539, -2850, -897, 401, -4393, -74, -2820, -1336, 2003, -1169, 1516, 88, 1212, 145, -2676, -583, 1390, -22, 386, -755, 410, -6, 7, -5692, -340, -360, -1787, -509, -520, -1037, 1231, 95, 197, 111, 218, -2357, 362, -1713, 280, -4583, -69, -1207, -622, 1335, -1192, -1624, -291, 494, -596, 1530, -1246, 517, -2537, 62, -1998, -862, -65, -2653, 737, 314, 366, -95, -1102, 456, -1059, -1077, 1168, -1269, -2472, -3231, 440, -247, -558, 1374, 607, -987, -1063, -785, -4795, 874, -1321, -2869, -874, 663, 727, -2264, -1092, -22, 554, -74, 923, -1831, -2622, -2678, 425, -266, 64, 1122, 1416, -930, 1672, 799, -240, -177, 956, 1294, -512, -224, -908, -74, -68, 505, -428, -211, -6308, 1441, 989, 697, -64, -2665, -339, -814, 492, -1275, -2437, -570, -1206, -3363, 810, 334, 277, -1347, 928, -145, 90, -734, -410, 393, -1677, 478, 1566, -4725, -1608, 802, -1243, 1596, -376, -280, -1462, -1120, -2037, -5, 737, -205, 391, -5673, 5, 1771, 1672, 921, 16, 2068, -676, -53, 826, -1318, -1502, -539, 474, -438, 209, -1089, 285, -1244, -538, -611, -269, -5201, -1899, -1104, 103, 720, 973, 28, -754, 280, -787, 59, -514, 732, 237, 23, 722, -2446, 264, -1362, 94, -1777, 97, 526, 140, -1548, -655, 1368, 337, -2041, 92, 1841, 1873, 218, 388, 143, 1394, 1635, -738, 409, -846, -503, -1950, 117, -314, 438, 513, -3971, -114, -1053, -1406, 904, -3138, -347, -1918, -446, 1775, -1006, 1412, 629, 1599, -2212, 618, 268, 1108, -164, -1152, -3559, -601, -2634, -281, 313, 1281, -661, 578, -430, -510, -3660, -1863, 311, -623, -865, -3148, -560, -413, -1054, 351, -3232, -2191, 139, -1049, }; const TfArray<336, float> quant11_scale = { 336, { 0.000131699547637254, 0.00010062217188533396, 0.00013122298696544021, 0.00015543552581220865, 0.00011972853098995984, 0.00010715815733419731, 0.00010789966472657397, 8.7453823653049767e-05, 0.0001068073688657023, 8.763877849560231e-05, 8.8723543740343302e-05, 8.0564444942865521e-05, 0.00013131806917954236, 0.00014543415454681963, 0.00011322953650960699, 0.00014622849994339049, 0.00010902154463110492, 9.3730232038069516e-05, 0.00010121914237970486, 9.7843825642485172e-05, 0.00011923151760129258, 0.0001239149714820087, 0.00011446032294770703, 8.3058803284075111e-05, 9.8335178336128592e-05, 0.00010984266555169597, 0.0001316744601354003, 0.00014128764451015741, 0.00013331903028301895, 0.00010637494415277615, 0.00010246068268315867, 0.00016982408124022186, 0.00010047870455309749, 0.00012298519141040742, 9.3109658337198198e-05, 0.00010305070463800803, 9.96759845293127e-05, 0.00010543577809585258, 9.9464661616366357e-05, 9.1428337327670306e-05, 0.00011965735757257789, 0.00015166719094850123, 9.6425916126463562e-05, 9.5899107691366225e-05, 0.00010633156489348039, 9.0097739303018898e-05, 0.00011680176248773932, 0.00012175114534329623, 8.4012674051336944e-05, 9.2904592747800052e-05, 9.8745869763661176e-05, 9.1094043455086648e-05, 0.00011751210695365444, 9.7992706287186593e-05, 0.00011155748507007957, 0.00012059163418598473, 8.3248960436321795e-05, 9.848890476860106e-05, 0.00011643063044175506, 0.00010737419506767765, 0.00019055177108384669, 0.00010662046406650916, 0.00015388427709694952, 0.00010448980174260214, 9.2678717919625342e-05, 8.423970575677231e-05, 0.00010397977894172072, 0.00011100940173491836, 6.8690409534610808e-05, 9.4112721853889525e-05, 9.0202578576281667e-05, 0.00010032832506112754, 0.0001130241435021162, 6.5480875491630286e-05, 0.00014501820260193199, 9.8795797384809703e-05, 0.00011864841508213431, 9.2213638708926737e-05, 9.4008188170846552e-05, 9.3946458946447819e-05, 9.481731103733182e-05, 0.00011502056440804154, 0.00014193494280334562, 9.8391748906578869e-05, 0.00012376956874504685, 0.00010414340067654848, 0.00010332612146157771, 8.5752173617947847e-05, 9.4663751951884478e-05, 0.00010818977898452431, 8.6529820691794157e-05, 8.2417878729756922e-05, 0.00010409983224235475, 0.00010651594493538141, 0.00011194921535206959, 0.00010509302228456363, 0.00010728693450801075, 0.00010221768025076017, 0.0001250587374670431, 0.00010111713345395401, 0.00010515975009184331, 0.00012720578524749726, 0.00011980782437603921, 0.0001069397185347043, 9.4553928647655994e-05, 0.00011864321277244017, 6.9141751737333834e-05, 0.0001032576328725554, 9.9770557426381856e-05, 9.1020890977233648e-05, 0.00012977523147128522, 9.5222283562179655e-05, 0.0001007866594591178, 8.7548396550118923e-05, 0.00011237755825277418, 0.00011734740110114217, 7.6552780228666961e-05, 0.00015632179565727711, 9.893994138110429e-05, 0.00010440546611789614, 9.7053460194729269e-05, 9.6488125564064831e-05, 0.00011940352851524949, 0.00010099571954924613, 0.00011286905646556988, 0.00016231813060585409, 8.578569395467639e-05, 0.00012022567534586415, 0.0001208316461998038, 9.7789379651658237e-05, 0.00010952317825285718, 9.1780289949383587e-05, 0.00012429358321242034, 0.00012287880235817283, 0.00010586011921986938, 0.0001057383487932384, 0.00010572712199063972, 8.360514766536653e-05, 0.00015435903333127499, 0.0001058109337463975, 0.00014116133388597518, 7.7350887295324355e-05, 0.00012715502816718072, 9.1797519417013973e-05, 0.00011140671995235607, 0.00010919437045231462, 8.2205355283804238e-05, 7.9131372331175953e-05, 0.00011772319703595713, 0.00012304319534450769, 9.9060926004312932e-05, 0.00011685747449519113, 0.00013333013339433819, 8.5236330050975084e-05, 0.00010932927398243919, 8.5196821601130068e-05, 0.00022435042774304748, 0.00010143069084733725, 8.0393256212119013e-05, 9.9088865681551397e-05, 8.7101092503871769e-05, 0.00014595001994166523, 9.4154223916120827e-05, 0.00013794287224300206, 0.00010943224333459511, 0.00013701555144507438, 0.00011161473230458796, 7.7313037763815373e-05, 0.00011865668056998402, 0.00010843763448065147, 0.00010901031782850623, 0.00015771418111398816, 0.00011383095261408016, 9.1926158347632736e-05, 0.00012404433800838888, 0.00013916130410507321, 0.0001278586860280484, 0.00010897872562054545, 0.00011369517596904188, 0.00011797494516940787, 0.00014775688759982586, 9.3314883997663856e-05, 0.00015807714953552932, 0.00010360380110796541, 0.00010181606194237247, 0.00011833413009298965, 0.00011454286141088232, 0.00012340319517534226, 8.1667072663549334e-05, 0.00012524462363217026, 0.00011479830573080108, 0.00016799483273644, 0.00010605341230984777, 9.7035888757091016e-05, 0.00012649458949454129, 0.00014303854550234973, 0.00015318943769671023, 8.5060884885024279e-05, 0.00020653579849749804, 9.6989628218580037e-05, 0.00010009184916270897, 0.00010370374366175383, 0.00010168251901632175, 0.00012227812840137631, 0.00010085781832458451, 0.00016805464110802859, 0.00012311640603002161, 7.8664823377039284e-05, 0.00011165208707097918, 8.3211751189082861e-05, 0.0001070951038855128, 0.00010076641046907753, 0.00010600023233564571, 0.00011384508252376691, 8.1143392890226096e-05, 9.8269905720371753e-05, 0.00010927584662567824, 0.00010004189243772998, 0.00011002088285749778, 0.00010415496217319742, 0.00012467434862628579, 9.7062540589831769e-05, 0.00011917440860997885, 0.0001044610035023652, 0.00010063946683658287, 0.00011859282676596195, 0.00010701038263505325, 8.8808817963581532e-05, 0.00010440275218570605, 0.00010079774801852182, 0.00010457944881636649, 9.3425398517865688e-05, 0.00012527471699286252, 9.2327078164089471e-05, 0.00014500587712973356, 8.5033592768013477e-05, 8.5839579696767032e-05, 9.8459167929831892e-05, 0.0001113926773541607, 9.1670386609621346e-05, 0.00011262996849836782, 0.00010384461347712204, 0.00013024877989664674, 9.4965056632645428e-05, 8.8854132627602667e-05, 0.00010641087283147499, 9.8371769126970321e-05, 9.3124013801570982e-05, 0.00011479135719127953, 0.00013885919179301709, 9.6399620815645903e-05, 0.00011576517863431945, 0.00010927088442258537, 0.00010200258111581206, 0.00012058779975632206, 0.00011564730812096968, 9.4314404122997075e-05, 8.6570944404229522e-05, 0.00012610040721483529, 8.9875204139389098e-05, 0.00011957858077948913, 0.0001187796369777061, 0.00010120803926838562, 0.00012347610027063638, 9.3342794571071863e-05, 0.00011920338874915615, 8.0087564128916711e-05, 9.415638487553224e-05, 0.0001247153413714841, 0.00013265415327623487, 0.00011434777843533084, 0.00010259333794238046, 0.00012926651106681675, 0.00010232450586045161, 0.00010557183850323781, 0.0001261106226593256, 0.00012062676978530362, 0.00010051688877865672, 9.2329442850314081e-05, 0.00014525701408274472, 0.00012395311205182225, 0.00010769139771582559, 7.9871519119478762e-05, 0.00011392063606763259, 8.4274768596515059e-05, 0.0001064294992829673, 0.00010766274499474093, 6.8607245339080691e-05, 0.00011363189696567133, 9.1776360932271928e-05, 0.00012268245336599648, 0.00011656461720122024, 0.00012079677981091663, 0.00011175842519151047, 0.00011674396955640987, 0.00011969371553277597, 0.00011368758714525029, 0.00012986328511033207, 0.00010625556751620024, 0.00012470857473090291, 7.9748177086003125e-05, 0.00011703044583555311, 0.00011384565732441843, 9.960545867215842e-05, 0.00010465835657669231, 9.4270944828167558e-05, 0.00012965587666258216, 0.00010345284681534395, 9.5781972049735487e-05, 0.00011692298721754923, 0.00011450715101091191, 9.4211107352748513e-05, 0.00010199216922046617, 0.00011670698586385697, 0.0001522965612821281, 9.0694746177177876e-05, 0.00015643866208847612, 0.00012100991443730891, 0.00010522728553041816, 0.000147955899592489, 0.00010173578630201519, 8.8603650510776788e-05, 0.00013470256817527115, 0.00010376593854743987, 0.00010243378346785903, 0.00015241806977428496, 8.6664673290215433e-05, 0.00010269993072142825, 0.00011536894453456625, 7.3501912993378937e-05, 0.00013264657172840089, 0.0001305320329265669, 8.6817330156918615e-05, 0.00010360747546656057, 0.00014462375838775188, 0.00013362042955122888, } }; const TfLiteAffineQuantization quant11 = { (TfLiteFloatArray*)&quant11_scale, (TfLiteIntArray*)&g0::quant9_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data12[336*1*1*56] = { /* [0][0][][] */ 5,75,-32,5,-23,80,15,18,13,-27,-8,18,0,18,34,-12,51,-83,18,21,44,-14,31,23,9,15,-11,6,-127,24,2,16,-57,72,23,-27,-37,-41,17,39,7,16,-34,-57,-74,-41,21,39,0,-24,-1,-25,25,9,-18,53, /* [1][0][][] */ -42,59,-6,47,48,-11,-19,-7,-56,-33,73,-1,-20,60,-47,-28,-34,99,75,-8,-69,-22,19,40,13,-30,-72,27,-33,46,-86,-87,-67,-34,68,-43,-1,-5,23,53,127,-10,-53,0,32,30,15,16,-47,15,-32,-5,-47,-107,21,19, /* [2][0][][] */ -18,-27,95,28,-98,-8,40,-93,55,-58,-31,4,120,-30,27,93,69,24,-127,17,-19,68,-11,-8,-25,66,52,24,38,8,-11,-52,-70,32,36,15,3,13,-10,-25,-5,-60,30,-118,-103,-12,-17,-54,18,-46,46,-41,-26,43,79,-73, /* [3][0][][] */ -20,25,35,69,-2,-11,-11,59,-67,-20,20,-14,24,-38,-5,-76,-6,-23,52,-33,9,-8,-57,-51,42,-23,46,-127,-48,8,-15,-60,-35,5,21,-30,2,33,-28,8,25,13,-14,-14,-50,-4,10,-35,44,79,-52,7,-15,-58,-48,-47, /* [4][0][][] */ -58,-15,-5,-23,-32,-40,-35,18,-127,-31,80,2,-7,-45,-53,35,-41,-28,16,-48,39,-15,-67,10,-6,-64,27,-69,-47,63,-79,-18,-27,-24,-15,-47,-23,21,17,46,29,-23,-8,18,-14,50,28,32,-90,-50,-13,-8,-75,-22,9,-70, /* [5][0][][] */ 17,57,46,27,81,-85,52,-64,43,-4,-28,-1,107,51,4,21,34,2,21,-28,-33,-17,7,-28,25,127,-47,29,9,106,25,-9,88,-16,-15,-99,111,-25,18,11,89,-5,39,31,54,-55,16,42,-42,25,22,52,69,-36,57,-1, /* [6][0][][] */ -35,-15,89,40,-29,15,-56,-24,34,-44,-58,11,-21,10,-9,-11,-23,-78,1,58,0,-60,42,12,5,48,-102,-72,41,60,21,-93,-29,37,10,-30,57,-61,0,75,31,-54,3,-9,56,-58,23,-3,73,35,-22,-127,19,-80,-1,-17, /* [7][0][][] */ -121,77,-54,-29,-87,38,10,-39,-11,-3,-94,-48,-39,-81,33,-48,65,-25,-4,53,-51,-116,3,26,-57,23,-52,39,-122,19,-33,36,3,-43,-45,-10,-16,-70,49,-68,42,72,-15,27,-81,-4,51,-4,-45,-2,-24,-107,127,-21,30,-86, /* [8][0][][] */ -59,51,-11,-35,-39,-35,-82,-11,-26,1,7,-79,27,25,35,64,4,-36,-56,-19,87,3,105,-6,63,10,-16,73,-3,40,-14,-21,12,54,67,-56,-10,-39,43,23,101,68,40,45,-73,2,15,-114,77,-17,78,-19,-39,30,12,-127, /* [9][0][][] */ 54,-38,-24,74,-42,3,41,18,17,20,1,-22,-8,-55,-8,17,-79,35,4,-82,-31,-68,-92,53,-46,-46,18,-79,-46,35,-79,-45,39,-27,24,2,95,-7,-75,-127,38,26,-58,38,-81,-27,-58,-29,51,74,4,54,8,-15,-50,19, /* [10][0][][] */ -64,59,26,6,26,-4,-49,103,5,-127,-47,-15,-77,5,-3,25,32,13,-11,-6,118,49,0,29,-45,-23,-110,-52,-73,23,-92,-96,-90,-68,-63,51,-11,7,-20,29,41,-91,-35,-33,-101,-67,8,50,8,17,-38,-85,-60,64,74,-61, /* [11][0][][] */ 37,-16,3,58,-34,35,6,-79,38,37,40,95,111,31,-31,-50,16,-53,-85,127,-10,-13,22,1,17,-66,39,-115,29,-53,6,-89,-42,37,57,-113,84,-10,-65,26,83,-85,-17,115,-75,-32,-29,51,-83,-36,73,28,116,-26,-114,80, /* [12][0][][] */ 39,17,71,-36,-44,127,19,-75,17,-10,-20,27,53,17,4,17,-32,-16,-32,-65,7,2,-13,39,-15,55,23,3,122,6,-58,-81,7,124,-65,-48,13,-20,71,32,24,-19,94,-9,2,-21,107,-20,-49,-56,-30,31,-7,-56,-118,3, /* [13][0][][] */ -9,-28,34,11,22,-21,17,5,-76,-26,-43,127,10,-49,54,11,43,-49,-106,-73,25,67,-57,-43,14,96,7,-23,8,41,15,-5,-1,-18,-32,32,-63,-17,-39,17,-80,27,39,-53,60,10,34,-1,-46,62,5,-8,-40,-31,-63,9, /* [14][0][][] */ -47,13,21,-60,24,-103,-66,-53,111,-24,-48,92,-28,-69,-27,-2,37,26,-20,48,-90,15,87,-68,-54,11,-57,-21,14,-38,-76,-24,-24,-50,13,35,-55,22,117,8,-12,-19,-14,14,76,-28,-42,-32,-127,5,-41,31,-43,29,45,-69, /* [15][0][][] */ -24,21,-14,53,29,-127,-29,-29,-48,27,71,89,-5,32,3,-12,-22,-49,20,-42,-30,24,-49,-13,-26,-12,17,31,53,-58,-13,32,38,56,6,7,41,-6,28,23,-50,-43,-29,-13,20,69,7,30,84,-18,31,-1,25,68,61,28, /* [16][0][][] */ -14,-2,25,9,34,-2,2,42,32,46,16,-11,-3,-24,43,26,-1,12,20,4,-29,-44,15,12,-38,-94,-26,27,-27,-26,6,21,25,2,83,-20,-8,-50,-32,-73,-127,38,-49,5,28,68,-21,35,13,9,-50,-7,39,-78,41,-13, /* [17][0][][] */ -35,-16,-36,32,54,42,-15,18,-126,-60,54,-29,-68,-19,-29,21,-21,21,15,-19,21,-107,42,41,20,-21,15,-44,-2,60,-81,3,43,-82,-90,-71,49,7,45,76,31,-34,-55,10,-22,-7,-12,-8,56,-1,-6,-3,-2,-88,16,-127, /* [18][0][][] */ -6,25,27,-50,-91,-1,-58,9,-33,52,8,86,4,32,77,48,-10,-95,-24,96,9,69,-66,93,-73,-107,77,68,1,34,-41,54,-127,-15,33,1,7,28,48,-23,-11,64,100,-18,-3,-42,-40,-59,74,16,72,41,43,-42,51,23, /* [19][0][][] */ -34,-41,-16,47,-40,25,-127,-4,1,-12,-58,34,-31,25,19,-77,74,35,-3,-22,-44,36,13,-40,13,81,-47,-26,17,-37,-46,-97,43,-51,-23,23,2,-2,-21,27,-71,-52,-28,-36,18,31,-49,76,-14,-30,13,107,-38,76,-41,-113, /* [20][0][][] */ 99,48,8,-76,36,-18,-46,19,38,-62,-22,-29,-19,-88,-77,-75,52,9,-1,-51,-6,-79,-70,86,112,-23,9,-7,-69,38,16,62,-41,38,-83,-48,90,81,14,-33,63,15,59,47,-8,-26,103,-29,34,-78,47,18,127,14,89,33, /* [21][0][][] */ 9,-94,-95,-75,-12,3,-45,-51,16,-45,-35,77,46,35,127,-59,-38,6,-35,15,52,23,-21,-24,-76,-15,31,36,-18,-15,48,-12,-16,-1,9,10,67,14,-24,0,113,-58,61,33,-51,-43,21,-4,-35,-10,2,86,4,-33,-11,36, /* [22][0][][] */ 5,-15,-59,71,-62,-30,-1,-22,-30,-42,22,-71,3,-41,10,-3,-11,-93,-26,-35,21,43,17,34,21,12,59,12,7,30,3,25,23,84,-106,64,-15,-36,-21,51,-6,69,-25,68,-56,83,-9,-25,113,-1,66,-79,-40,-37,-5,-127, /* [23][0][][] */ 74,69,-15,118,-48,40,123,-4,-32,76,87,64,54,1,-46,8,-23,-87,-55,119,81,-41,7,32,42,96,-54,-13,-53,28,-1,-81,-42,-47,-56,-16,30,9,-42,43,28,9,-15,-17,-87,86,71,-115,-116,33,27,-92,93,12,18,127, /* [24][0][][] */ -47,24,-31,12,-24,-18,72,44,-80,75,-4,12,-6,7,28,-67,-3,-28,30,-11,-68,3,15,69,-16,-26,-1,7,-27,-1,-37,-62,3,-39,41,-68,9,-27,-18,23,65,43,32,-71,17,112,-40,-58,58,-34,49,-15,127,-33,62,70, /* [25][0][][] */ 50,-44,-52,6,-20,-71,51,-50,-93,65,-40,-18,117,87,-15,21,60,8,107,15,7,85,73,-26,-108,15,-58,-104,-62,21,33,68,-9,-12,-38,35,-15,39,49,-26,57,80,16,98,-95,-9,100,-127,-27,-57,-78,-87,-12,-65,-78,5, /* [26][0][][] */ -9,-24,-26,48,-4,6,-11,23,-75,2,-48,-7,18,-11,-4,-85,-30,-19,-59,48,-22,-7,-72,52,-16,-69,-20,-28,-16,52,-24,33,-33,127,38,-23,-11,-2,-83,16,-24,1,-58,-42,-13,-51,49,8,47,-36,-59,13,-25,16,12,-33, /* [27][0][][] */ -6,-35,-33,-70,8,-99,40,21,-46,-50,-29,-45,24,45,27,-75,60,80,-51,-14,-11,-68,-9,86,-48,-127,0,-51,12,7,63,42,30,19,-58,-21,-50,-118,-17,9,18,-12,-8,5,19,-55,19,-11,6,8,-44,28,6,-5,-33,-55, /* [28][0][][] */ 21,55,-33,29,33,105,22,44,-7,-6,-67,25,-5,-38,40,58,-70,58,-5,-78,85,3,-53,67,50,75,34,-8,-73,-45,-8,-70,-127,-76,51,-12,-19,28,34,16,12,46,34,41,5,46,75,-5,11,33,5,-27,60,-11,96,-47, /* [29][0][][] */ -78,123,-90,-127,9,42,-76,-91,50,-14,-11,-52,3,-60,70,30,8,72,-28,-75,-48,5,-63,-8,2,-64,-79,-27,-33,-83,-78,40,23,66,-46,0,-59,-28,24,-14,-12,-60,46,105,-109,-16,9,-38,73,31,5,-29,-23,61,-3,27, /* [30][0][][] */ -69,19,-18,-51,30,-127,54,-90,18,54,-3,127,10,-17,-78,-13,63,-77,60,-31,93,-33,-58,-30,23,-56,10,12,55,-63,-28,89,24,26,0,61,60,-101,-22,-2,33,18,-1,-10,19,-83,16,15,82,63,-64,13,101,-37,-111,57, /* [31][0][][] */ -8,10,4,17,4,63,44,47,24,-54,-16,-11,-22,9,-6,19,27,8,64,3,83,80,9,-24,-11,29,7,-15,22,33,-21,16,-27,-23,52,35,-2,-18,19,-42,-20,0,21,-47,5,31,-32,-2,-127,-56,-64,33,-11,5,-13,-78, /* [32][0][][] */ -37,34,-43,7,43,29,13,-56,78,-7,-85,-31,43,52,-17,-125,-27,-50,-20,24,10,18,123,14,-54,40,-78,47,-39,21,-8,-25,11,18,-42,-127,-64,26,-37,-42,-27,30,-58,-93,-26,-14,40,79,-61,28,24,-1,74,-33,-30,-46, /* [33][0][][] */ -34,-110,38,-9,37,55,-69,-16,6,-3,39,-3,-22,-6,-68,127,-29,-60,-32,-22,54,24,16,-27,104,-20,26,17,-56,3,33,-9,-22,9,34,4,-61,-16,113,-15,-20,-9,51,42,-7,2,74,35,-8,45,47,-40,79,84,32,58, /* [34][0][][] */ 63,4,122,44,-57,-127,41,-10,-49,65,64,-29,63,-83,-28,3,39,34,-5,31,-4,-75,49,48,1,19,107,-31,42,-16,-45,-10,-68,-29,-82,1,-10,-57,49,25,102,-65,40,99,-75,37,-30,56,-27,-7,-47,-45,50,-43,121,106, /* [35][0][][] */ -16,-91,-14,-31,83,83,71,-91,14,-52,42,37,20,21,53,-3,92,-22,7,48,-42,-34,19,-49,47,56,-64,47,66,-22,-74,-14,12,-33,4,23,-127,31,-83,89,22,54,2,19,-38,115,-52,-111,32,57,-44,-91,20,-60,12,-63, /* [36][0][][] */ 22,-46,-5,103,-16,44,-96,-76,48,10,64,45,102,83,39,-62,-40,-96,63,48,-80,11,-25,18,-16,15,80,-63,-84,5,73,-127,12,13,-53,-61,38,71,34,35,-28,41,-91,58,-51,75,-59,-7,60,-63,19,23,-28,-95,-33,-68, /* [37][0][][] */ -90,-36,9,-87,93,-48,42,37,-34,-8,46,-6,101,11,4,-30,60,85,11,-37,-115,-35,2,13,-30,62,23,-96,83,52,127,-92,31,-23,68,-20,-8,24,-91,-111,-24,-26,13,-9,44,40,-4,55,-6,-114,10,20,2,71,-63,25, /* [38][0][][] */ -51,71,1,42,39,-3,16,55,-25,-92,-13,-24,-51,11,-48,52,48,-86,-13,113,-29,-23,28,-7,-26,-102,-114,-9,-63,38,-60,-21,127,99,-109,-75,-6,-51,-3,47,46,-47,10,-112,-31,-46,-41,85,19,25,45,8,68,-67,-13,-29, /* [39][0][][] */ -26,-35,85,49,-45,37,35,71,84,-16,43,12,85,14,5,-67,-37,-98,34,-7,-25,-67,-127,-124,-6,74,61,26,44,-2,17,45,-94,-67,-79,-74,22,68,-54,39,5,-5,-18,55,40,36,100,-48,-3,-11,-21,110,-49,46,33,-29, /* [40][0][][] */ 8,43,-39,-42,-15,-30,73,94,-67,72,18,-33,65,-73,-35,46,-7,-52,-54,32,-22,-20,12,-74,31,4,5,-23,7,127,44,51,-55,73,33,98,23,-18,10,-85,-10,46,-87,48,-75,-48,-79,-6,41,-41,-53,64,-18,20,28,-51, /* [41][0][][] */ -91,-2,8,53,3,3,-47,-41,89,-35,-21,-37,61,-99,-46,7,-6,-23,-53,73,18,-29,45,37,-76,-80,32,-24,0,46,-18,-6,42,-71,-83,-1,-38,26,-44,-64,6,14,-65,39,-30,-5,116,58,-4,26,-50,-24,127,-55,30,-10, /* [42][0][][] */ 21,21,-36,-26,-66,-23,49,38,76,-7,70,77,43,-3,81,-27,-58,28,-8,-42,23,61,-34,-35,-28,23,-88,34,-127,-39,21,18,79,-77,0,-3,-2,-38,28,-73,-14,0,-15,-57,68,-34,21,108,-10,-1,-69,26,-45,14,-90,55, /* [43][0][][] */ -80,1,25,7,-8,86,26,-4,-1,105,4,-2,31,-13,109,-115,79,28,-43,24,40,13,47,20,12,86,-127,54,-101,-62,47,77,-14,59,-67,-14,13,-13,62,-32,47,48,-20,-23,38,-96,-34,108,-54,81,21,-1,-52,87,-31,-6, /* [44][0][][] */ -66,29,-56,31,71,13,5,8,-21,12,127,-38,-37,-27,-12,-13,6,113,-31,11,6,55,39,12,-32,-42,7,-56,18,-14,27,-104,-65,-38,-40,49,51,-12,-40,-73,0,28,-74,36,6,39,-26,-43,-65,60,36,40,71,-1,38,15, /* [45][0][][] */ -84,35,-39,-15,99,62,-25,-65,-77,91,10,-53,19,9,22,-25,-127,-51,-105,-13,65,73,116,15,26,29,-81,5,48,10,-5,-106,74,5,77,86,47,39,-64,-31,63,70,-78,44,-57,46,32,105,73,0,69,-127,-56,-106,8,-55, /* [46][0][][] */ -13,-29,50,31,16,1,40,122,-59,-41,-14,-1,-25,70,27,-13,28,-63,56,46,48,-25,19,-63,-22,-27,-69,-61,-95,6,-25,-127,-1,26,2,-25,7,-8,55,51,-31,70,92,-52,-12,12,-37,27,44,-46,-19,12,-13,30,-33,-6, /* [47][0][][] */ 11,4,-14,49,-57,36,1,5,-16,-1,-91,80,68,27,-36,35,7,-34,127,56,-13,25,23,43,21,14,-3,-35,24,-8,54,45,18,74,-32,-14,-53,12,-49,-53,-8,-31,-40,-47,-4,-30,-16,-56,21,-84,8,-29,75,-21,22,21, /* [48][0][][] */ 18,96,-73,0,-37,-92,21,-52,-75,86,-13,7,-106,-24,-98,-65,39,75,-2,39,-70,19,-2,-1,43,-29,13,-32,31,-39,2,-127,2,90,20,37,-66,-30,-34,-3,-91,78,-26,-44,11,24,-26,-99,-58,-8,-111,-98,89,33,-26,-30, /* [49][0][][] */ 106,32,18,92,-41,51,49,-35,-123,34,58,-44,-77,21,-75,-54,92,-36,-92,-91,74,-39,-108,27,10,10,78,64,77,-74,-73,27,-1,-87,-38,-127,127,23,-5,44,8,62,-9,80,-92,-4,76,-65,-40,5,95,12,-1,-19,-26,62, /* [50][0][][] */ -78,97,89,70,-44,-25,22,0,-47,3,-47,55,51,-58,37,-86,-39,-35,10,46,65,-7,-17,-27,-96,-56,66,-37,127,41,52,-53,-3,12,45,29,3,97,104,17,-72,-13,50,36,37,-62,-23,34,36,3,-33,31,15,95,-55,60, /* [51][0][][] */ -17,10,-31,36,-19,36,-56,-33,-79,-11,7,1,11,38,11,7,40,-12,-42,-59,-38,15,122,-68,26,8,-11,-38,68,47,-91,23,-39,49,-55,-63,7,-127,69,-14,-5,-45,-65,22,36,-62,-70,53,-44,14,46,-23,-96,3,35,-5, /* [52][0][][] */ -33,-17,62,4,-71,28,-53,33,-55,-25,44,-13,-26,2,35,-88,-72,11,28,86,-34,-57,-90,-9,-22,9,16,63,55,-36,55,-16,89,48,-127,68,-22,-4,14,7,-53,9,38,53,72,-36,-30,-22,3,8,-28,-46,0,-3,-24,-36, /* [53][0][][] */ -34,56,-36,62,-8,110,38,36,-68,-29,-75,-9,-71,-32,-38,1,-64,-70,-9,6,-95,-24,-17,45,44,5,127,12,-38,39,-74,1,0,0,-7,33,-23,-16,42,-16,35,-28,32,59,-44,19,70,-76,23,49,65,-12,-84,-31,33,106, /* [54][0][][] */ 49,16,-11,-17,21,-64,56,-40,108,25,-44,16,53,48,-83,29,-91,15,1,9,54,-41,-127,-59,28,-31,70,-20,-47,-13,-32,13,5,73,-49,29,42,-15,45,61,-35,-67,-56,16,-69,3,-110,59,53,-28,-19,44,58,-93,-5,12, /* [55][0][][] */ 30,17,-32,-47,103,-11,-47,72,62,-100,93,-15,-104,26,-66,5,-91,-12,90,-28,56,-38,24,11,-5,-41,41,-66,29,9,21,46,-18,3,-36,58,-22,67,39,-88,127,-1,-19,-69,7,62,-19,57,-25,33,-7,49,-48,15,40,5, /* [56][0][][] */ 67,-1,-37,-49,-94,-43,109,-44,31,-22,90,81,100,-35,-57,-19,34,-80,-14,61,-58,-107,23,91,-84,-126,2,19,19,-42,-6,38,3,-4,66,-24,-60,-27,1,78,-41,-35,-32,6,-127,-49,74,23,-51,11,-52,5,-26,3,31,84, /* [57][0][][] */ -50,-82,-43,-13,53,-21,-28,-60,5,17,2,47,-38,-2,70,-30,18,-50,8,12,55,-83,23,-21,30,-88,-38,-92,-116,53,-30,-127,30,-69,66,69,52,-83,-107,57,-19,59,113,-37,-16,-17,-18,-21,122,23,-13,18,-57,-4,89,87, /* [58][0][][] */ 21,-52,11,96,18,-6,64,100,83,-41,-4,-11,80,14,18,35,50,15,56,-4,-4,-63,26,79,-122,123,-19,97,23,30,-9,-20,-15,38,76,-33,-70,-20,-33,-10,55,-41,105,-4,10,-107,48,-31,127,-36,99,29,8,78,-81,7, /* [59][0][][] */ -90,7,-40,-35,-56,76,-82,-32,20,42,-2,-52,-43,53,-16,-24,-66,-105,-79,10,11,45,37,3,-23,96,-19,24,-38,49,-32,24,-48,1,4,-102,-127,-71,-13,-99,43,18,-96,36,-64,-48,74,66,-14,-54,-93,-89,52,-11,27,-21, /* [60][0][][] */ -26,-35,-127,-1,-13,-33,0,-22,-15,-52,-61,-23,33,-63,-25,-6,-43,4,-16,-4,-66,10,13,-16,46,-22,33,-10,-14,5,-19,-1,12,-13,24,10,23,7,24,18,23,-35,-29,-41,25,2,-18,-31,27,-16,-28,-27,-29,-67,6,17, /* [61][0][][] */ 6,110,65,24,-18,52,54,1,42,43,21,75,98,-57,-54,52,74,127,-40,40,31,-16,-52,-100,-11,-50,17,-47,34,77,-88,-14,43,-24,47,-75,-43,-55,-47,19,65,-17,106,-8,111,3,-10,1,56,-51,-2,-30,29,-61,-48,16, /* [62][0][][] */ -60,-57,12,-49,-36,78,68,28,102,-127,26,-22,-40,-1,-5,5,-18,-56,-61,42,-49,20,-55,-59,-19,98,55,-88,-71,-49,-28,-60,-82,-107,-59,-31,-47,-42,14,6,47,68,46,-6,-8,-72,-88,30,16,-11,35,-65,50,-62,1,91, /* [63][0][][] */ -10,-73,18,-10,-63,7,-13,-65,-45,-27,-14,-106,-6,-80,6,-11,-19,-86,63,29,-49,29,-19,-10,-97,18,-67,-16,-2,-42,-76,-49,-74,8,54,-33,-2,-37,46,77,5,-7,-70,62,-20,-60,66,-112,-31,27,-44,127,3,-65,17,26, /* [64][0][][] */ -48,-13,13,-1,70,-42,-109,2,-16,80,36,25,2,-15,-13,-7,73,6,-37,-96,37,-70,56,27,-118,-50,4,5,42,-85,-77,-50,-78,33,88,-64,-90,-63,8,-72,61,-57,57,127,106,59,-59,76,32,-3,-96,12,-18,40,66,126, /* [65][0][][] */ -13,-17,29,-66,-46,-57,-50,28,35,-24,47,-90,26,100,67,85,34,21,-35,-59,116,101,35,-43,-68,-74,-45,64,-118,78,62,35,15,-29,-27,13,13,-44,-71,17,-97,-71,-77,127,-30,68,-71,72,-30,113,-13,7,16,98,-8,-39, /* [66][0][][] */ 16,103,87,-9,49,98,77,-34,-39,67,-22,-127,9,61,-46,-84,16,-6,38,-117,-29,21,45,0,-10,47,32,-3,-44,0,-34,-17,-89,48,-28,9,-109,-1,48,-56,82,-12,5,-29,25,77,-27,-23,-7,93,74,74,-95,-75,-9,52, /* [67][0][][] */ -60,-28,34,41,8,-45,-50,-37,103,33,-95,-55,83,-127,-4,-54,8,-43,-67,96,51,-68,74,28,-84,-52,5,-19,-17,17,-47,-6,28,-76,-85,21,-75,-8,-27,-70,-33,-7,-76,34,19,-35,83,8,-47,-42,-82,-63,88,-32,104,-23, /* [68][0][][] */ 72,57,115,31,-47,61,-53,-5,-55,9,86,81,-36,105,-39,40,83,-30,47,40,-104,-50,-66,23,112,25,59,44,34,-57,29,122,-16,8,-28,-127,-21,72,-66,77,96,96,7,61,-86,-40,-41,-52,104,68,-56,3,-25,28,-18,-52, /* [69][0][][] */ -20,-41,-6,44,-19,27,-25,-125,-40,-22,51,-23,-61,21,-31,-90,-11,22,2,83,-44,3,31,64,9,-13,-47,45,47,67,34,-20,85,48,25,22,-12,1,124,-9,-60,-51,-101,-61,24,-75,-7,127,43,16,-57,-118,-64,4,22,-61, /* [70][0][][] */ -33,17,22,24,-75,-51,-65,-54,77,17,-36,-34,45,-79,0,-33,44,-35,-50,34,85,-69,42,-23,-31,17,-7,-4,-74,36,-71,1,-14,-39,-1,103,-44,-35,-95,-127,-42,28,1,69,-28,-56,93,5,-14,-47,-37,10,110,-4,69,65, /* [71][0][][] */ -84,29,-107,-73,3,-7,26,9,-77,59,54,2,48,-9,-10,44,-51,5,-40,-60,-26,-35,25,-106,45,-86,62,72,-79,59,-20,36,-2,43,-27,84,35,40,11,-23,-52,-27,-26,-41,0,-127,52,54,26,35,-79,117,-83,-11,37,-3, /* [72][0][][] */ 44,56,11,6,79,-33,-127,41,81,-13,1,-13,111,-40,-32,15,115,53,-78,-15,57,-29,70,41,-9,44,-99,-66,-36,-99,-21,-113,-124,-8,101,17,-10,10,-105,-14,9,-54,30,18,13,-62,4,18,-84,-21,-85,-4,-29,37,-1,21, /* [73][0][][] */ 10,-30,-20,17,-98,59,-8,69,-53,-65,-21,17,62,107,60,-37,48,-75,20,94,-58,-51,-15,22,84,-10,-95,-92,-87,-38,-1,-87,12,-11,14,-25,70,-70,11,85,40,85,25,14,-26,-4,-34,-9,61,-8,-29,-127,33,-51,11,10, /* [74][0][][] */ 13,-66,44,15,-41,45,-65,8,11,-42,-13,10,-9,-12,-27,-17,24,127,-15,-16,59,-76,38,61,18,-27,-19,20,91,39,94,-39,-61,84,42,-46,-42,37,8,-25,-34,-54,47,74,-7,-37,11,-39,68,41,-101,-27,19,-35,51,39, /* [75][0][][] */ -89,45,-8,42,45,-30,-56,-113,48,-28,-82,10,60,-33,-86,-4,43,-37,-119,59,-49,13,-23,28,-97,-38,-19,-3,12,-20,-28,-10,-27,-50,-27,-73,-74,-52,-48,-20,-26,46,-3,30,-28,44,18,39,-7,-36,-104,0,18,-35,127,-31, /* [76][0][][] */ -41,-58,-110,-71,-77,8,-32,59,-19,21,-62,12,-9,27,38,57,42,-7,-17,-44,-17,-17,35,-46,11,39,88,-29,-16,3,-77,38,28,48,-18,55,72,49,53,-59,93,-3,127,-2,52,-11,16,26,-74,40,-22,-66,-2,-59,55,95, /* [77][0][][] */ 92,-41,-72,-21,-15,-5,1,-26,17,-76,72,9,13,35,-39,-41,-17,-65,44,21,-127,-19,22,5,-24,46,50,-89,67,64,49,12,1,40,-4,-95,-12,37,116,47,18,-112,-71,-85,-82,17,1,-38,97,-61,-77,-98,-12,42,-46,-57, /* [78][0][][] */ -48,-47,10,-127,33,12,-43,42,93,11,-56,-56,-68,38,-7,32,17,58,-113,3,31,35,54,63,64,29,36,52,-88,37,39,-24,24,37,84,-42,-93,-84,0,32,30,-3,-52,45,13,35,-110,-29,36,93,23,-25,9,-5,-4,28, /* [79][0][][] */ -44,0,19,34,82,-83,-97,102,-1,-18,-75,41,41,-89,11,-28,-2,97,46,-12,54,-26,-127,90,-31,22,0,2,-111,-53,53,-16,85,-109,-43,83,53,48,-23,37,33,103,52,14,109,-27,-105,55,-89,70,-78,10,98,52,-75,67, /* [80][0][][] */ -40,39,-46,-20,-16,32,-55,127,67,-95,-15,20,21,45,16,102,-4,83,55,11,89,17,-45,-21,16,33,17,-1,-69,25,18,60,22,-2,56,25,-20,69,12,25,36,-121,-90,-76,-22,112,104,3,5,1,20,-105,-48,24,16,20, /* [81][0][][] */ 34,7,-3,-24,-29,78,4,-15,-47,-13,68,-8,56,-70,-115,23,-78,28,-31,24,16,-89,45,-8,-58,-42,-16,-127,8,115,38,85,48,76,-64,10,5,-118,-57,39,-26,106,-15,2,-13,33,39,-75,-79,27,-95,123,-85,12,-76,68, /* [82][0][][] */ -58,8,-17,99,-65,-51,-8,50,-27,-70,-49,-63,19,43,-65,-16,127,-27,-68,-22,104,14,-16,10,26,35,-6,-7,-16,-49,50,7,63,64,60,87,34,-41,-21,17,-12,30,42,-13,55,-10,-10,-28,19,36,-36,51,68,-48,-99,-38, /* [83][0][][] */ 37,-63,127,87,-18,7,45,64,-55,-12,36,-6,27,32,27,-107,79,-9,43,46,-29,32,9,-63,27,-98,-72,-97,-102,-56,3,-108,52,106,-67,30,-32,-29,4,87,-60,6,120,5,37,-8,-33,66,70,-109,-22,-66,11,35,40,-43, /* [84][0][][] */ 16,45,10,-12,-81,-1,55,-73,-54,4,49,78,4,-17,-80,-104,65,-26,127,95,34,-5,9,48,18,-14,3,60,-7,3,-62,47,-5,-15,53,73,21,-24,-51,27,-18,-63,-85,3,17,25,-3,-71,-35,-49,1,61,18,26,83,-20, /* [85][0][][] */ 83,39,-106,-53,18,96,-31,14,-41,-5,2,-62,-17,72,37,-75,-75,-49,2,95,-14,116,25,-33,-65,-42,98,72,-127,22,-37,-41,-85,-10,25,-36,-20,64,0,-60,-22,-8,1,-114,5,-69,26,0,89,8,-22,-62,1,-59,-99,79, /* [86][0][][] */ -25,-34,-16,-69,-22,7,2,52,38,26,-87,-50,-30,-127,3,29,28,-5,46,-14,-49,-98,-42,22,-59,-13,40,18,28,20,-7,0,-13,25,50,13,15,69,-47,-2,-29,22,-24,14,-49,-42,81,14,33,-87,-35,24,48,-31,-45,-4, /* [87][0][][] */ 117,-56,-8,22,10,-50,46,-60,16,32,29,57,3,-32,-102,-71,23,-36,-78,37,-94,-49,-42,-8,-29,120,-30,-102,-127,6,17,-51,-71,40,-30,-86,-12,27,-20,-2,57,-52,4,-9,-4,38,46,-31,-38,-63,52,85,60,-34,-25,16, /* [88][0][][] */ 28,67,11,-83,12,3,-31,25,-18,-47,-92,-8,-51,-33,80,58,-25,18,-56,6,-35,53,124,-45,40,29,62,-48,-30,-8,-34,24,-6,-28,-68,38,-80,44,-46,-32,113,-45,-126,-34,-127,31,46,-56,111,76,119,41,76,-37,-7,40, /* [89][0][][] */ -33,-24,-1,72,87,41,56,-63,19,55,-48,-48,55,11,51,21,-36,75,-40,-25,-127,-63,-64,-40,-21,-70,9,0,-36,11,-73,-43,-81,-65,-48,46,-101,-37,-2,45,17,23,-71,-24,-50,16,47,-72,50,50,20,-41,-28,18,-46,18, /* [90][0][][] */ 37,-106,47,-109,96,-30,-121,47,-89,-22,-21,5,80,45,17,-50,-71,105,2,29,-43,26,-8,-87,55,113,-41,11,124,-118,-8,109,67,10,-54,10,-67,-25,118,-3,-37,-84,43,41,-33,19,29,0,-16,127,62,27,52,46,78,-33, /* [91][0][][] */ -65,2,-87,-73,-48,-33,21,33,-112,51,51,-10,18,-35,-12,105,-41,63,-3,-38,113,58,-88,21,57,-105,-98,-18,-20,90,57,-21,-82,-37,-69,-24,25,-62,-42,-58,87,13,-125,79,124,105,-9,-83,-56,-34,64,-22,49,34,-116,-127, /* [92][0][][] */ -106,-20,22,-12,40,-16,-10,57,-23,-5,65,-49,32,-68,-68,5,-32,-42,5,23,33,-66,-33,56,-47,47,18,-6,4,74,-85,-33,55,-109,-24,-33,-127,39,6,-15,-6,-5,20,-13,-66,-49,-27,-50,-89,-53,-50,-15,-16,-10,63,-52, /* [93][0][][] */ 127,-6,-13,76,-47,7,-43,3,-15,6,36,-11,56,64,-8,73,8,-109,-67,112,41,-43,48,-5,27,-106,49,-67,54,-108,-67,-20,-9,53,16,0,-2,31,-19,-38,-54,16,-22,-49,-52,108,50,54,-13,49,-37,69,65,1,-56,70, /* [94][0][][] */ 31,-1,21,21,0,-55,45,8,15,22,26,-119,33,16,74,-63,33,25,-38,-85,-13,-49,83,-30,40,35,1,-97,71,-58,-31,71,55,53,-19,64,-1,-22,67,-32,90,67,-5,-99,91,-9,35,46,-127,76,-26,-39,-18,-29,48,-26, /* [95][0][][] */ -75,76,-50,71,42,-29,-88,91,0,4,-23,-9,11,-18,51,41,65,6,-30,-34,26,26,-6,51,83,-2,85,-30,40,-24,-11,-21,-21,58,-6,43,-22,2,22,1,16,-66,-49,38,-1,-9,4,16,-26,62,-13,18,-127,-61,1,-61, /* [96][0][][] */ 28,-19,1,-46,-67,50,-28,81,43,7,23,1,-63,-32,-10,127,94,-93,3,-93,-11,-52,69,-1,-8,-25,71,15,-67,42,-60,41,-64,-29,-5,-28,41,-108,-8,-36,42,15,9,16,61,63,-27,11,24,17,81,-93,30,-116,38,-16, /* [97][0][][] */ -34,71,37,-35,-17,-42,57,54,-116,-87,-11,-22,-15,-70,-95,-60,104,-101,-10,35,4,74,-28,25,40,119,-48,18,-87,127,-58,-48,22,41,-35,38,12,-64,-1,48,60,-18,13,96,-9,-4,60,23,39,33,-3,-82,25,31,55,104, /* [98][0][][] */ 2,58,0,43,9,-70,0,-35,4,-21,-113,-62,-36,41,-34,-45,16,-9,-25,-46,59,14,-19,-16,59,47,53,-59,22,-10,66,-127,-105,-45,-11,-33,45,-36,28,-22,66,21,-18,63,-10,-29,-55,-20,-54,81,37,22,-13,-58,-39,-10, /* [99][0][][] */ -41,-30,-14,-15,-75,55,11,-5,-69,49,-106,-10,-50,52,63,61,-17,-38,-66,23,53,-14,46,-36,-84,-13,77,51,1,127,34,92,-32,63,-40,74,-44,-117,-67,41,46,20,-24,49,-64,-25,13,-6,35,-32,47,-60,-100,75,26,-31, /* [100][0][][] */ 4,-47,3,68,-107,-43,-30,-58,-21,-127,90,-79,-43,-26,-24,-32,23,120,-54,-9,10,28,18,20,33,-33,84,15,-20,-51,-69,-114,-70,-18,20,67,-9,21,-36,46,46,99,4,-22,73,-17,87,-53,-94,-63,112,71,-14,107,8,34, /* [101][0][][] */ 22,48,8,-62,-25,-32,-66,-2,-44,-21,12,-21,34,-30,127,12,-64,38,-22,0,2,72,-11,-54,2,-48,117,-5,19,49,-39,-105,51,-17,-64,49,6,64,-31,45,62,13,10,1,-44,-2,16,31,-62,-40,0,-21,-13,28,38,106, /* [102][0][][] */ -5,3,-14,-13,57,72,39,119,-6,-24,-14,-25,67,42,-1,-83,-60,-41,27,-16,63,27,-16,55,9,73,37,0,96,-11,-36,-40,-7,-77,44,-3,-14,-60,23,-8,-20,-50,-113,69,-23,35,50,-8,-10,127,52,23,-23,21,9,37, /* [103][0][][] */ 64,18,-38,82,-55,27,-37,-79,28,119,-72,121,12,60,-55,-91,20,2,-20,-39,-1,4,-44,-62,-127,-56,54,-6,14,30,-21,18,1,-4,-64,-53,20,14,46,44,-14,12,15,8,-17,-7,-75,34,-17,54,1,-22,20,-122,-6,11, /* [104][0][][] */ 6,29,-64,-28,55,-40,84,-12,-16,-14,50,31,-1,-51,-49,-127,-3,-36,-72,99,-62,-98,59,55,-8,1,-61,-35,26,0,40,-76,40,-7,-28,-28,32,-16,101,-8,-125,-32,-24,-51,-57,47,27,-80,-20,67,-80,-9,-102,-36,-27,75, /* [105][0][][] */ -7,-16,14,-22,9,26,52,-9,-47,-1,-60,-20,33,-127,-116,-42,-22,2,8,-76,-3,-60,57,42,-9,-55,-8,-12,-88,-13,7,-45,-47,-3,64,27,-17,-62,-80,9,9,-1,69,5,9,47,-5,5,17,40,75,7,-1,-50,-34,66, /* [106][0][][] */ -30,-8,39,2,29,-65,56,26,-127,-49,48,-36,-43,-20,-32,21,-4,-76,102,91,-30,41,-49,-17,10,17,-19,-94,-101,17,-79,-86,-40,23,-86,-46,17,-3,76,16,41,-75,-40,-42,-77,54,-71,-55,-12,104,42,-82,-60,-38,1,-18, /* [107][0][][] */ -78,-7,-7,71,-113,-12,11,-70,-5,-28,28,-8,-40,43,26,-3,-36,6,6,2,48,75,38,12,66,96,17,24,12,-16,73,9,11,47,0,-51,-34,-19,-63,12,27,-21,42,20,-18,120,97,25,-127,-25,13,34,-9,43,-18,21, /* [108][0][][] */ -39,19,13,-34,31,-116,36,127,-51,-35,11,-31,60,24,-40,1,85,-62,42,16,34,-66,-49,-15,10,-13,-44,-69,-20,45,-115,-40,22,-27,-26,-23,-72,73,38,-1,81,-16,-29,-81,-89,35,-2,14,-12,-11,13,43,-36,-1,50,-53, /* [109][0][][] */ -22,9,-12,63,-117,-18,-39,-46,7,43,-44,-12,83,-74,-108,-1,46,-24,18,46,127,-8,-61,22,17,44,5,1,-48,-50,21,-8,-3,-92,0,-72,110,37,-14,99,-6,-19,-7,-8,24,-17,53,-39,74,-81,76,110,30,5,52,68, /* [110][0][][] */ -6,-27,36,34,20,-7,30,60,48,-10,-58,21,-19,15,16,44,-11,-26,-14,-11,9,-81,49,-29,9,0,-19,17,38,-8,67,48,-32,-33,33,71,4,-127,7,49,-10,-65,26,56,35,-10,-36,29,59,-41,-68,20,15,-21,-18,51, /* [111][0][][] */ -3,56,-92,-34,4,-102,61,-83,49,0,-127,53,-59,-66,29,-81,44,-41,-9,24,-13,-30,-25,70,16,11,-20,42,-47,28,-51,-35,-65,-40,-25,-84,-107,-30,53,14,12,-41,-2,-57,11,-108,18,109,-17,28,-111,42,27,-24,113,5, /* [112][0][][] */ 13,11,-30,-66,-23,-7,127,20,-55,28,8,12,-26,-58,39,-47,-57,-45,0,-55,-16,-79,60,-3,35,26,-20,24,-9,5,39,-125,48,10,-4,-23,-23,-8,48,-33,-21,-105,-16,14,-78,46,84,3,-78,-56,0,-117,53,-50,-20,-72, /* [113][0][][] */ 52,-80,-15,-23,67,43,-20,-70,37,-51,38,12,118,-9,66,-91,-2,-86,-11,-58,27,-51,-63,-72,67,47,-18,23,58,15,18,-73,-57,54,-66,-57,-54,-12,48,59,103,-74,-57,96,-127,54,-58,-34,13,84,-49,-89,51,-13,-110,20, /* [114][0][][] */ -78,-41,64,-14,127,-74,-1,95,-53,-62,30,-6,-65,102,27,-25,-19,19,-5,-27,21,43,-45,-54,8,-19,17,-23,-30,-46,-71,-58,-46,-32,46,-34,-96,20,60,-58,51,10,2,-25,-12,37,-15,26,-17,-56,61,-22,-18,25,-40,-11, /* [115][0][][] */ 42,-5,40,-17,-16,3,48,25,-16,-27,12,72,-29,50,-41,-73,2,-21,-53,16,-24,-45,24,-78,19,95,-27,-64,-69,-19,13,30,17,97,-50,-82,66,50,24,-127,-43,-93,-53,54,62,-34,83,16,-20,-13,18,45,-65,-36,-11,-11, /* [116][0][][] */ -69,23,-96,-16,20,-10,11,40,-55,-26,-28,-99,-78,63,28,-101,-27,-32,42,103,-86,-77,56,29,-84,60,-75,-28,-30,5,-21,5,-4,84,21,-99,19,93,0,-54,49,78,-27,78,-127,-48,72,-12,7,88,17,-21,29,-121,8,-37, /* [117][0][][] */ -9,-47,-50,35,37,-11,4,-34,57,-8,-26,8,55,3,-33,-41,54,-1,-32,-2,17,-57,29,100,47,36,23,-5,-20,-31,-25,-8,-10,-9,-34,46,-49,14,-71,-15,-16,64,73,29,-33,-127,63,-35,-5,-10,3,5,7,-25,-79,-59, /* [118][0][][] */ 43,-3,-6,36,34,-25,-7,109,5,-73,29,-28,-7,57,-2,-48,18,-14,-79,10,73,12,-84,-18,41,16,40,99,11,-10,53,7,127,-48,-25,3,91,53,26,-77,24,87,0,44,58,-38,-28,42,26,43,-20,-34,-70,-10,-57,2, /* [119][0][][] */ 62,17,-6,-127,71,18,-78,99,16,34,-25,18,-14,-106,38,56,-37,46,-54,-52,-13,-32,-7,-88,-48,-21,59,-74,25,15,-50,1,-110,-55,-82,97,24,-90,85,12,-29,-8,-2,35,28,-40,-8,-44,24,15,9,7,0,-44,-43,17, /* [120][0][][] */ 56,-127,-32,-25,10,66,-3,58,-26,-6,71,27,51,99,-47,-76,47,-64,-62,-46,1,-30,-22,-54,-13,-11,-18,-47,0,-62,-79,-13,23,-27,78,-39,-45,-88,99,-89,-57,53,35,74,74,71,71,53,19,106,-56,-13,-37,-24,-42,-97, /* [121][0][][] */ -35,-46,-4,50,36,-36,23,-29,127,-23,-58,46,16,-76,-25,-2,101,-17,-88,5,14,-122,20,70,-11,-22,79,53,-22,-19,-52,66,92,-82,-37,-11,-114,-32,22,-26,-38,40,59,58,-28,56,58,56,-27,3,-119,-74,104,-45,24,-14, /* [122][0][][] */ -16,39,1,-5,83,37,26,22,-5,3,-5,9,33,48,49,-100,-8,37,26,3,-42,-13,-21,12,-81,19,11,19,-28,44,20,-69,111,-1,34,-38,8,-38,0,127,-10,-36,-39,41,11,14,108,4,37,-46,28,-54,-34,-46,-42,-78, /* [123][0][][] */ -76,-8,50,73,-34,27,-59,27,38,3,89,-1,-48,-43,-70,92,112,-77,65,-15,115,-96,-17,-98,49,29,-2,-3,4,1,50,3,47,83,-103,-35,16,104,-9,-127,-99,-46,-41,-4,-51,35,66,-7,36,78,8,2,-85,-3,-16,64, /* [124][0][][] */ -127,68,-72,24,80,67,-27,-24,66,-36,-24,15,-11,-27,30,-71,43,-32,-56,-1,42,25,-5,28,59,76,3,21,-47,-29,-24,16,10,58,-16,-15,7,-41,-21,22,43,-39,-60,25,4,18,94,4,-48,44,-61,12,104,22,50,2, /* [125][0][][] */ 1,20,1,-43,-53,5,16,23,69,37,36,-49,-25,-127,19,32,47,25,-14,51,-31,-24,66,-3,-38,5,-40,14,-47,87,-17,-21,36,-64,-7,-32,-79,-40,-25,-53,51,50,-48,-37,11,22,-62,13,44,-49,49,23,-79,-1,-43,-1, /* [126][0][][] */ -52,15,112,6,126,-77,23,22,-53,80,-80,26,43,-16,-10,61,44,-127,-27,65,32,-33,73,-20,81,23,85,-12,12,-62,-20,-40,-35,113,-37,39,86,-38,48,44,-38,118,37,-53,40,67,5,-89,47,-73,-44,-27,66,18,62,30, /* [127][0][][] */ 37,91,39,27,104,-90,-4,7,30,6,-16,-56,-32,-35,-45,-32,-69,-88,-30,-38,-31,36,-6,-19,8,25,91,-77,-41,104,44,-127,51,49,44,60,-81,-10,69,39,22,8,-44,29,-40,-14,4,67,3,-78,124,6,-66,31,-5,58, /* [128][0][][] */ -48,-45,46,-33,42,-85,16,16,12,-56,69,-32,105,29,51,-31,47,61,4,-3,17,-4,48,-17,-98,9,8,103,-13,9,-3,62,19,78,46,-24,127,-34,-11,22,10,-20,50,32,-10,-21,35,43,-74,-33,55,36,14,13,2,56, /* [129][0][][] */ -53,-40,-102,-67,89,-77,33,69,52,-54,127,-16,-32,32,-23,44,-53,90,-17,-3,-118,34,71,-4,-48,6,-19,-99,-42,50,-15,42,-98,78,-35,20,25,29,-99,9,-26,-3,33,-36,-66,21,42,-55,-69,-37,72,45,14,-12,29,99, /* [130][0][][] */ -75,20,-76,-14,17,27,-31,61,71,-47,-35,-19,-97,28,-25,89,-25,-11,-17,-13,-7,10,23,53,-82,-56,94,29,-14,19,-25,-29,-38,42,11,127,-7,11,73,64,-2,51,-32,51,52,-24,-36,109,-16,41,84,-10,-16,-49,4,-82, /* [131][0][][] */ -50,-4,80,-36,-51,12,-79,79,54,-38,22,-15,4,107,-21,48,35,-20,27,-105,-9,-13,-20,-9,77,-40,-43,-21,5,0,26,58,-32,-8,-42,-39,11,56,53,22,27,127,20,-31,61,-56,43,60,-45,63,-6,59,2,-3,-34,-54, /* [132][0][][] */ -27,-29,-38,50,-21,26,-92,9,1,3,-2,6,-33,-3,-89,9,-11,70,-11,42,49,-18,-6,0,-88,30,20,19,-79,79,-52,127,-53,-5,52,19,46,-26,-26,27,-70,6,42,-70,14,3,-22,27,9,118,-40,17,-8,-41,4,87, /* [133][0][][] */ -62,-59,13,3,65,-29,61,-73,-37,-100,77,7,-7,12,16,26,17,-42,28,-29,-32,-17,-10,-15,13,-19,-26,-11,17,29,-26,-4,6,-29,13,-30,-34,-43,4,-58,1,-84,43,76,-32,-2,-127,-13,-75,-13,-49,-2,-14,-33,109,-78, /* [134][0][][] */ 15,85,-1,-15,-43,78,7,-1,-9,-32,-6,-19,-95,-23,10,-61,-8,-38,73,127,34,-41,3,49,64,26,2,-42,-52,-48,50,31,-38,11,-8,-76,-49,-19,8,59,32,36,47,-38,-19,-63,11,42,-25,-70,-21,-56,53,-81,-23,-15, /* [135][0][][] */ 14,-22,-55,25,-2,-25,97,-127,11,25,-26,2,-1,2,-3,6,18,-11,6,-51,40,-67,27,17,-67,-1,-104,-72,11,52,-8,-4,22,-36,34,-82,-13,-77,11,7,-47,-4,8,36,-27,-14,44,-26,103,-40,61,-36,-39,-57,73,2, /* [136][0][][] */ 0,3,79,-15,91,2,-47,-73,11,-86,-5,71,19,60,-35,-39,-3,-121,10,-82,13,81,59,-56,17,88,4,-69,-2,-46,-67,80,86,-17,-127,-21,67,65,19,-39,32,-17,-35,69,28,76,57,103,35,22,3,-18,10,-37,-27,92, /* [137][0][][] */ 43,60,-99,7,127,45,52,-7,-31,9,-27,5,-78,49,-56,-5,-44,25,-86,-12,-11,-43,30,31,-12,-39,-47,-6,-101,12,-76,27,73,-48,21,-64,-14,-32,66,15,-27,30,-22,91,-16,-120,-69,-119,93,21,32,-31,-51,-22,-25,42, /* [138][0][][] */ -65,87,-41,-41,20,67,-34,-65,49,-26,-14,-52,15,24,-63,-78,-47,-127,-85,-5,-17,52,-19,17,-16,20,-36,83,-10,-11,-20,-11,10,-31,-19,-113,-105,48,-2,-11,-26,18,-82,15,-59,-16,37,103,-27,-53,-111,13,56,-30,45,35, /* [139][0][][] */ -53,-64,-29,-114,-88,21,-127,66,50,20,8,-8,84,53,-47,28,2,-19,78,-39,21,-9,-10,-18,-27,-22,-15,-77,52,-18,20,-97,42,15,-12,39,-17,15,-68,52,-8,48,-13,-64,58,-38,-1,-41,-35,44,-6,79,86,16,-113,44, /* [140][0][][] */ -57,2,1,-57,30,13,9,15,-13,39,-21,-21,51,-71,7,-18,31,26,-4,18,104,-94,55,-127,-24,0,26,-2,68,-21,-38,13,12,-39,85,56,26,-49,-38,39,32,-75,24,29,-57,55,0,31,-6,-109,64,18,10,13,-53,-66, /* [141][0][][] */ 126,-18,16,-15,32,-10,127,-36,58,-82,83,9,12,-42,-88,-12,40,-48,12,8,-105,17,-1,-42,-75,61,80,34,40,77,-78,-52,58,35,22,14,51,-45,31,41,72,116,-71,-47,-91,-22,10,-107,14,35,1,-32,40,-84,82,-8, /* [142][0][][] */ -40,-41,75,65,-2,5,-9,44,30,32,-30,-15,-17,60,-15,-21,-3,-61,-22,24,-5,19,11,-66,-4,23,-25,95,35,36,40,-13,28,-105,-54,20,100,-2,-39,28,-68,-25,-54,-22,15,127,5,-16,-29,20,-47,-63,-46,17,-71,-42, /* [143][0][][] */ 79,7,8,-48,-127,74,-39,-40,-70,63,46,-64,13,59,15,-87,25,-68,-66,-6,-47,-24,116,122,-92,-36,-6,-47,-29,110,34,-119,-15,-113,95,127,-57,30,-31,-76,33,-22,113,-88,-13,-17,-63,-85,6,-10,-62,90,85,-78,21,37, /* [144][0][][] */ 25,31,20,13,-5,21,-79,5,56,32,-21,-42,54,-54,11,-32,21,-58,-77,-38,74,14,59,33,36,13,41,76,-7,34,25,48,48,-67,-14,13,-55,25,-81,-46,-9,8,-5,36,-18,25,-13,127,-9,76,19,-27,40,77,15,-41, /* [145][0][][] */ -50,26,3,-5,33,-26,-13,46,50,-15,-17,-80,-6,20,-23,-94,60,-39,-63,34,-127,-14,46,49,49,32,-62,-3,-47,13,50,2,-69,-91,14,-45,-80,2,-42,-57,37,-13,-36,14,12,-53,72,50,39,10,13,-14,79,-24,-10,77, /* [146][0][][] */ 29,127,86,-69,36,99,-66,0,-5,-76,-22,-71,-55,84,92,66,44,32,17,-75,-1,-4,38,-8,74,9,-1,-10,-28,91,65,-48,-52,-103,10,38,-88,46,-64,37,29,-80,-97,40,3,127,25,7,-20,47,22,37,31,113,-71,-8, /* [147][0][][] */ -44,-43,-36,22,-47,-21,-2,22,-52,-26,-23,58,-7,18,-40,2,40,-110,14,113,76,11,-25,-38,-39,-82,-75,-127,-40,-26,-6,-37,5,50,31,25,84,-10,-27,60,-37,88,67,-65,26,-90,-35,-78,13,-24,5,-52,18,-68,-32,34, /* [148][0][][] */ 30,47,-29,2,19,13,-66,-32,-58,-127,68,-73,40,-4,15,46,-25,34,-58,-71,19,18,-10,19,12,-43,-48,12,20,51,60,-69,11,-77,19,48,-9,-20,75,-81,-21,61,-21,-35,-1,-31,-21,-43,-82,20,35,-12,-31,-27,75,52, /* [149][0][][] */ -20,-25,-50,2,15,44,-15,1,63,44,8,-53,-8,65,17,-56,-127,-37,-36,-9,43,49,-34,-22,32,54,13,-28,10,4,-30,-5,-6,-38,2,97,-11,1,17,-39,60,-29,29,-88,6,54,12,-75,21,13,-81,49,24,-8,75,-36, /* [150][0][][] */ 53,7,45,77,-10,-102,-45,-91,-72,42,-15,-16,-17,-48,-7,86,-61,-91,75,87,-56,-17,39,-56,97,99,127,64,-39,-61,37,-13,68,16,53,-108,-87,-26,-19,-63,76,3,-12,77,45,14,-44,-43,24,76,-83,-36,10,-37,-28,-14, /* [151][0][][] */ 89,40,28,63,2,-98,-104,85,-122,-52,16,-23,-13,-17,-4,-74,-4,-74,-64,24,57,43,-33,38,-87,13,5,-2,-58,-38,-127,29,51,26,-80,54,-21,24,-14,-74,-18,-19,-9,-17,9,3,-67,-4,-24,-9,-15,-48,46,-59,22,10, /* [152][0][][] */ 11,32,-40,-29,-51,-17,59,44,-70,-11,39,-56,14,-22,-127,41,3,7,-25,23,-38,-4,-55,65,-9,-8,55,31,46,55,-1,-11,13,81,63,32,36,22,76,-16,31,83,12,-57,-32,-3,31,-21,-25,-2,-3,20,46,-10,-47,-21, /* [153][0][][] */ 31,11,42,49,-29,-53,-35,55,-80,108,-72,-9,1,-59,127,-8,-86,-80,51,40,41,26,51,48,106,20,-41,21,14,-81,30,-78,-30,54,45,-118,59,53,69,-76,6,40,-26,20,58,117,102,39,-52,63,-37,-97,13,62,34,-75, /* [154][0][][] */ 18,60,-20,-67,-52,-31,-14,13,-95,42,-52,-49,11,-34,-20,3,4,38,-15,-23,23,-23,75,52,30,13,28,-43,-18,0,-64,16,-102,-61,-35,15,-3,-10,127,18,5,31,-80,73,-26,34,25,-86,13,-57,-2,-46,-83,-24,25,71, /* [155][0][][] */ 27,84,9,10,12,-126,-65,20,-81,78,-68,-44,8,-105,30,-127,23,35,35,-84,-78,-106,-91,-54,95,101,34,-4,0,122,-77,-91,-7,122,80,108,18,-79,-41,-38,-47,-85,14,-5,35,-17,57,61,112,80,-19,-30,48,-98,1,-49, /* [156][0][][] */ -29,-19,15,32,13,-15,23,8,127,-37,-29,7,11,10,-9,-16,-10,14,-35,51,36,41,-46,-16,27,3,-44,-3,-31,-10,-1,12,8,-13,17,10,-38,10,-18,-32,48,-59,-33,38,6,8,-11,38,-4,8,-11,23,-24,-2,11,27, /* [157][0][][] */ -114,22,35,23,-29,14,-28,29,-28,50,103,-33,-25,-36,19,-90,-11,41,-25,-127,-106,-26,-66,73,84,8,-58,-31,-56,91,-75,15,-60,64,-77,-47,4,-97,47,6,52,-92,-45,-7,65,78,1,-64,-64,-54,5,2,13,-114,7,61, /* [158][0][][] */ -2,69,-105,-2,-86,-15,93,-5,-65,16,-31,41,-125,17,19,-52,55,-10,-5,16,-116,35,-61,-41,-64,-15,51,-102,3,15,-127,-119,-44,50,-5,-55,10,13,64,78,-17,3,17,53,1,-10,-39,-48,117,49,-47,-46,-3,-56,-109,-59, /* [159][0][][] */ -11,-10,31,53,-6,-12,-47,50,-70,29,24,-49,85,-36,98,57,-49,43,-42,-4,58,45,17,-40,28,20,48,43,22,84,58,-4,94,-127,-64,18,-52,-53,-69,50,-93,-39,76,-112,88,-13,24,-54,-27,-50,-27,17,28,99,55,-6, /* [160][0][][] */ 120,24,62,19,76,-36,-6,-76,21,-29,50,32,-27,-4,39,-7,3,-12,7,127,4,5,51,80,-64,-88,-5,-10,-61,7,9,-27,6,-53,68,68,5,54,37,-51,-89,72,0,-39,86,-1,15,-68,-54,-4,100,-31,11,-64,76,49, /* [161][0][][] */ -20,32,-11,-21,11,19,-75,-43,65,21,-40,-36,50,-96,-47,-36,2,-17,-16,5,6,-2,34,-54,-29,-6,-42,-1,38,28,-53,-15,78,-66,-50,3,-127,-16,-18,-40,-28,51,-16,42,11,-31,94,11,21,-65,-94,-7,69,2,51,-25, /* [162][0][][] */ 46,14,59,-43,31,-67,-60,-58,69,71,36,-19,-79,-43,-75,19,65,-90,-6,18,-24,-33,0,32,-58,8,-35,33,32,30,122,-46,84,93,41,-74,25,18,-64,-11,33,21,30,43,-50,7,26,13,71,16,-38,127,47,100,78,-45, /* [163][0][][] */ 18,36,56,-2,36,5,-24,-91,2,1,44,2,-42,-28,-8,-21,-48,86,-60,30,50,-30,127,2,8,-19,-10,-41,32,23,30,26,-34,-47,-65,4,54,-29,0,12,60,15,26,-95,58,46,23,43,-44,14,-6,57,-101,7,103,11, /* [164][0][][] */ 4,-77,8,-6,-55,-40,-34,35,0,102,26,24,48,-57,12,-29,64,-33,81,-44,-84,37,-99,-100,8,-27,41,-7,119,18,3,-40,-8,55,60,-127,4,106,9,27,-52,10,13,0,-6,27,-14,-12,-41,-8,-15,14,37,47,-2,51, /* [165][0][][] */ 29,-4,0,6,-65,-10,21,-35,-36,-15,35,-37,73,-66,36,-31,-38,16,20,-45,31,32,-30,-7,17,-32,-44,43,127,-37,-21,-4,-54,9,-47,33,4,21,-49,26,-18,67,32,-31,27,46,-11,31,-23,27,8,94,-88,-69,-73,86, /* [166][0][][] */ -2,13,93,-88,-4,-57,2,23,11,97,-45,17,-5,41,-72,-24,59,34,-27,8,18,10,-66,-2,-80,17,-13,-9,-22,47,64,2,111,30,54,-43,-53,35,41,3,-116,7,-43,-49,59,-34,29,-40,18,-10,-47,27,27,40,-127,-43, /* [167][0][][] */ 85,56,37,48,-15,13,7,-17,2,-36,9,8,-41,-82,42,-24,-14,96,60,64,-86,41,-5,-80,-85,-62,31,-16,-13,44,-3,-61,2,117,17,-27,5,50,-28,-9,-46,69,14,127,-66,-39,45,49,75,-83,-47,-67,51,13,110,-72, /* [168][0][][] */ -41,10,59,30,120,-8,-90,45,66,15,17,72,-75,-47,-8,-71,83,-103,4,41,7,13,-78,-43,-39,-59,127,61,18,104,70,54,32,39,-54,-39,-51,67,86,88,-13,48,-36,-3,-9,-53,37,71,34,-52,-2,-18,-88,25,0,29, /* [169][0][][] */ 24,127,-25,-24,-7,21,-74,72,20,81,-14,33,-82,-31,-102,-45,28,48,51,49,-38,80,-11,-79,-6,-4,-10,54,-83,18,16,-70,-3,-8,-33,43,18,98,27,80,-26,18,-36,44,62,68,73,16,-95,17,41,57,-57,88,53,-29, /* [170][0][][] */ 18,-17,-16,17,-17,-11,109,-15,60,-83,-17,53,37,-11,-18,0,-53,-5,-67,9,33,-73,92,8,-14,-4,-9,65,-5,36,-17,-71,-40,-52,11,23,38,7,-77,-66,7,-16,5,45,-127,-47,-4,-9,-20,44,-12,1,61,-61,-33,3, /* [171][0][][] */ 12,-89,47,-22,-49,-3,11,23,-51,-3,-9,9,32,8,66,-16,-90,25,14,-5,-10,4,37,25,9,52,-36,43,-8,-27,46,-48,-38,-10,5,51,0,-32,23,-13,29,-30,-4,-59,-19,8,61,-55,50,-20,-34,-23,3,12,127,14, /* [172][0][][] */ -3,-41,28,-55,-9,34,104,15,31,-25,-29,-22,-48,19,30,-45,6,-59,-76,5,-3,47,21,-60,96,89,66,-103,-50,21,33,-13,-88,-36,-39,-64,-65,-23,14,3,-14,-101,-52,85,59,-116,4,-67,1,21,-32,-37,-50,2,127,8, /* [173][0][][] */ -15,-60,-78,-59,-44,65,-2,-122,3,9,-120,-46,25,-45,-80,-15,-126,-42,73,42,109,-50,-29,86,14,34,-58,66,-60,101,-25,-25,24,7,41,29,-77,46,30,-45,85,2,-77,-89,-127,-89,10,-65,75,21,53,11,45,-9,-81,-6, /* [174][0][][] */ 103,4,62,-79,3,-127,-82,4,-8,86,-38,-3,64,-1,8,-22,0,-37,-61,1,102,-22,-23,-43,9,19,-27,41,-20,-7,7,16,-23,7,71,-45,-40,35,3,-38,-25,-2,36,-9,-6,-23,26,-70,34,17,-38,47,37,67,-57,-19, /* [175][0][][] */ 2,29,8,47,18,58,-4,-53,-127,52,9,-34,61,63,23,-23,32,87,-103,78,-26,-91,-72,-87,-19,41,43,13,-33,-8,36,-10,-10,14,-52,-29,-29,-102,39,-4,18,-26,37,38,21,44,-18,63,-52,-27,-13,41,39,-12,6,-26, /* [176][0][][] */ -47,-45,12,-43,29,-2,-44,-36,-71,23,109,-43,56,-47,-30,-9,-58,-20,-34,30,10,69,-67,-8,27,-12,-78,3,86,28,70,-93,-28,41,-97,127,-31,12,27,-18,-52,2,32,-59,-43,-50,-10,-42,-27,62,43,56,70,-37,57,27, /* [177][0][][] */ -33,3,-13,-53,-29,9,-38,0,21,-23,-63,-20,-99,23,37,26,-18,-91,-39,-41,12,-26,-3,-2,4,-63,53,-114,-127,-52,-2,44,-79,63,15,-7,77,-21,45,66,-94,0,-120,-23,-110,-127,-5,-38,-14,-63,-105,-7,15,-86,87,-10, /* [178][0][][] */ -9,64,63,-53,-36,-80,7,-53,-77,3,-51,-105,24,-24,7,91,35,12,39,26,-64,-90,-120,127,-16,-119,20,53,0,11,-29,-45,22,-22,104,-42,50,15,50,14,10,74,-88,-2,-44,-94,-42,100,40,76,6,-41,98,-14,82,7, /* [179][0][][] */ -40,-13,-2,-27,-61,-4,0,57,-23,-12,-3,127,58,14,-25,1,56,35,-34,23,20,-56,33,-48,-17,-37,14,61,106,28,65,-68,-5,-42,-7,-29,39,-37,-62,-39,-28,57,57,31,22,-29,21,-22,11,26,92,82,14,-1,23,-26, /* [180][0][][] */ 19,27,27,39,71,-79,-29,24,-12,4,-13,-4,-12,-52,5,0,-6,-13,23,8,20,29,-69,-5,-37,-14,-1,-5,-19,31,-19,39,89,-29,-17,-22,25,32,-17,-45,41,127,-1,-19,88,-35,75,8,68,64,-4,-43,-43,12,29,31, /* [181][0][][] */ -33,-105,-36,-13,-66,-82,40,-83,-4,-56,122,-38,-8,-52,36,59,-1,71,38,109,-18,6,48,-113,-127,-39,-3,-123,-88,21,3,48,-56,-96,27,44,-55,-66,13,26,9,-9,110,34,17,-82,31,-20,44,-66,-104,-79,12,22,-95,66, /* [182][0][][] */ 49,29,11,-23,-38,-50,-11,-51,-50,-19,66,16,-9,-14,12,2,-127,-5,-12,54,-86,-79,-9,-13,-68,-48,-57,-38,-27,5,-114,-30,-37,11,-10,23,-12,24,80,109,-55,-50,41,-52,53,-7,36,79,-16,30,-66,31,-20,38,25,-16, /* [183][0][][] */ -98,-3,14,52,34,-49,-24,6,75,-11,-94,-59,62,-70,-34,-35,-6,-43,-46,62,78,-17,44,61,-90,-6,34,-56,-27,71,-96,-78,37,-77,-103,21,-97,-2,1,-114,1,-29,-55,22,26,4,68,47,-6,-38,-127,5,74,-4,28,-52, /* [184][0][][] */ 27,-26,-113,-23,127,-77,-30,-9,37,81,12,-13,-18,24,-59,33,34,-76,54,-47,-42,25,23,44,-71,2,-86,-34,-29,91,-49,0,-120,45,32,58,51,-24,-22,-100,-46,-67,20,38,5,18,-16,117,35,-18,44,-52,-15,-45,-44,28, /* [185][0][][] */ 70,-17,-32,2,-41,-12,48,57,-11,21,-66,28,95,43,-2,-68,62,-23,5,29,-10,46,-15,-38,-121,74,-36,127,-19,26,96,7,-41,-37,-9,39,-4,-62,23,-16,71,-22,46,18,-8,-22,60,-2,-30,40,11,62,105,24,40,-19, /* [186][0][][] */ 16,27,-21,83,2,-44,-82,60,56,127,-41,-1,-98,24,-28,-100,66,9,-77,52,-8,19,-120,22,11,-79,45,-92,39,55,-28,-3,-30,107,51,-37,7,-14,24,-14,-74,-81,-38,1,35,45,9,11,16,2,-93,-42,-27,-44,88,35, /* [187][0][][] */ 26,2,-47,49,-7,-59,5,-35,-18,35,31,-12,-17,-53,10,-13,9,37,-46,4,-52,18,-35,39,12,19,25,26,20,-6,-50,2,-9,23,-11,-6,-43,-35,-76,-2,-22,8,4,-63,-127,-3,59,-15,19,1,51,-18,6,-40,37,-32, /* [188][0][][] */ -98,-118,-94,-20,35,91,-5,-82,30,-9,-72,17,81,-35,32,-5,53,-79,46,-53,18,-60,17,-60,5,75,44,-83,-51,-75,87,-35,77,55,27,30,-45,31,-77,127,45,-72,-31,-36,-5,4,-110,78,-53,119,-25,-37,-24,38,117,2, /* [189][0][][] */ -40,32,-67,63,44,-71,-2,-5,-36,79,-18,32,-14,12,-48,-7,-46,-37,-1,81,-21,-54,-62,-55,-25,24,-43,58,-47,10,21,79,-27,14,-59,36,80,-58,-3,-37,1,67,-65,-31,64,-127,-31,-3,-36,-6,36,1,49,-80,-6,60, /* [190][0][][] */ 85,-30,41,-127,35,71,-18,-22,-29,-40,57,-62,60,36,48,26,41,-115,-95,-49,-24,-49,42,6,46,-13,78,20,9,31,-28,-65,45,54,49,68,-61,-62,-64,-1,0,6,40,82,18,-23,-43,4,-27,29,42,17,18,-11,52,16, /* [191][0][][] */ -11,-4,18,44,-10,47,67,26,3,28,26,26,1,5,46,-31,1,19,9,-58,-68,15,-20,-33,-18,16,-41,40,-48,-26,44,-9,35,30,-19,24,13,-37,7,21,21,-58,5,47,-2,9,127,17,39,34,15,-42,4,-6,64,-28, /* [192][0][][] */ 20,-91,-43,-56,-42,-40,5,56,-67,114,49,-31,81,28,10,-26,66,-5,0,23,-31,44,-2,86,-104,89,-47,28,63,-37,6,-91,25,-10,-41,60,-38,29,40,-20,-14,-47,-98,-30,15,96,127,-75,-46,65,42,16,61,-81,43,-49, /* [193][0][][] */ -47,-57,-72,-67,100,50,34,-49,-50,-98,82,-20,-2,65,15,54,127,-12,-6,-48,-22,31,30,13,10,12,68,10,-34,-2,-42,-16,-15,28,41,14,-54,3,-53,-44,12,-51,-37,-20,16,-22,-40,2,33,109,-38,2,-31,-67,-26,80, /* [194][0][][] */ -11,79,-41,-63,21,-68,10,58,-37,-3,-46,31,36,20,93,44,-37,-62,37,0,63,-62,-17,18,-59,-100,75,-11,43,45,-20,29,-56,-48,29,-23,24,-64,-94,89,39,42,-18,12,127,44,-45,-18,4,-50,-95,-12,-10,64,-22,116, /* [195][0][][] */ 12,59,-51,71,-5,-33,60,-52,-28,-38,59,11,47,-37,-23,-49,-56,0,21,-11,-52,-24,-3,-40,-32,-10,-87,-15,127,-33,-2,-28,-60,14,31,23,-32,10,-10,-7,36,16,47,-24,-10,28,-4,62,-39,1,-35,-21,-54,-60,-16,-38, /* [196][0][][] */ -106,15,26,29,1,-47,-51,-12,98,42,-43,-42,46,-95,-46,-37,38,-48,-47,110,20,-13,-6,52,-24,12,-1,-1,0,23,-34,-5,6,-70,-8,24,-54,-31,-65,-8,-56,-20,-76,-18,-5,-73,127,69,-56,36,-47,-90,68,-19,32,-16, /* [197][0][][] */ -29,-59,-16,78,19,75,92,2,35,73,109,-53,-54,117,28,53,-53,5,77,8,14,44,-62,0,12,88,65,86,-52,90,-92,77,127,12,-26,1,82,-7,88,-58,118,-42,-55,41,-83,-98,-45,118,-65,-21,13,-19,-3,-52,-26,95, /* [198][0][][] */ -23,-89,42,23,-30,-19,-14,51,-88,69,65,1,90,12,38,-54,127,-6,10,-45,40,53,46,38,-11,-11,-33,18,-55,92,-39,26,17,-4,-29,88,-22,-23,-5,1,53,-33,-3,-19,-7,4,44,69,-73,9,-66,-13,52,42,17,-13, /* [199][0][][] */ -72,36,-16,11,-87,-16,-18,-24,15,-28,63,-87,-21,-34,-20,-91,0,78,28,21,-62,48,54,81,71,-35,-59,-34,-56,8,-75,-34,10,-127,-43,16,-84,3,-28,75,2,-8,39,12,-57,65,-34,31,14,-3,45,39,-37,24,-31,-35, /* [200][0][][] */ -2,-61,-14,-12,24,25,62,18,57,-36,8,31,13,65,4,-34,-6,27,45,-25,46,-47,79,-37,25,47,82,10,93,-106,-1,-10,-127,-37,97,-25,-77,-22,-62,21,104,38,76,32,-119,-60,-26,15,24,22,86,12,-35,34,37,-43, /* [201][0][][] */ -17,42,-24,115,-66,-24,90,-35,29,-47,-82,-127,-32,22,-106,-79,68,6,0,-44,123,-59,-58,-17,20,100,-26,-68,104,66,80,23,-3,3,10,74,0,88,98,-17,62,-46,-71,39,-2,34,-3,55,-27,49,-21,-84,-74,-13,2,35, /* [202][0][][] */ -61,-44,9,76,-117,-14,83,-2,-28,53,10,39,-43,-15,19,-99,-11,71,72,50,62,-34,79,55,-79,-44,57,28,79,0,-82,-53,-36,-7,-17,-85,43,58,-41,-7,-85,-27,127,-49,-79,58,56,-118,-88,-92,-69,53,-88,-25,-6,17, /* [203][0][][] */ -33,48,-9,-77,-42,-51,79,20,-88,35,-41,-57,-15,-14,4,14,44,10,-87,6,-45,127,-43,30,20,-1,-61,52,7,13,15,-111,-13,-23,-59,56,6,10,38,4,-50,-32,20,46,34,24,16,54,-8,91,2,-35,5,-3,107,26, /* [204][0][][] */ -58,-15,40,10,-23,-8,72,0,-24,79,-29,-7,23,-24,57,14,-23,55,-21,127,119,-5,45,24,47,110,-22,38,-39,-47,-22,-35,39,-51,47,-88,73,65,14,77,-16,-32,30,72,-11,41,53,-66,14,-44,-106,-77,28,14,-10,-31, /* [205][0][][] */ -59,47,-45,-6,32,26,-36,-45,-39,-55,19,14,127,29,-18,-43,-8,-28,4,-34,-9,48,-21,4,52,-19,15,-6,-21,18,25,24,34,30,-10,75,35,6,-19,32,30,-54,24,13,15,-16,-38,-4,-66,-41,8,48,23,14,-10,-18, /* [206][0][][] */ -6,64,-48,-6,7,18,58,51,-25,36,33,-24,34,67,5,-90,33,31,4,-32,67,-106,46,-9,2,-5,-1,127,11,117,-5,-25,91,32,-89,3,-67,37,70,-16,66,-34,-54,14,78,2,-6,-42,-19,-52,54,24,18,29,-21,86, /* [207][0][][] */ -24,-64,2,66,15,-31,14,46,-111,-24,115,-33,67,-53,75,-54,-63,-60,-77,-24,-127,15,-23,54,-47,-60,6,21,82,-20,-11,-125,-27,28,73,28,-93,-53,-50,36,23,43,-23,-105,50,82,93,-52,116,32,-49,17,50,-15,52,64, /* [208][0][][] */ 26,29,-13,-78,-68,0,98,44,-15,53,-46,-75,-13,28,-18,-37,-41,19,-17,-33,-3,12,-94,33,-26,-82,-55,-73,2,-33,100,13,-11,-38,-58,9,87,-45,-93,82,47,-24,-13,78,-14,-127,1,-21,32,-103,-57,-39,48,30,-15,-13, /* [209][0][][] */ 20,-84,54,-3,6,-80,-78,60,100,-58,10,-73,107,-33,-44,-10,54,70,-26,78,-127,27,-27,2,-50,-53,-42,-44,-18,-28,32,91,11,-14,72,119,2,-37,-8,-66,76,62,55,-98,38,99,26,-75,7,-35,-112,58,-14,-35,-17,7, /* [210][0][][] */ -93,-35,49,32,5,-38,-29,-37,115,11,-117,-64,52,-91,-46,-9,35,-15,-91,44,78,-28,19,48,-95,-30,-12,-15,-8,26,-76,9,12,-121,-64,5,-82,23,-13,-44,-47,-22,13,47,-26,-15,123,14,-45,-58,-99,-51,72,9,127,-7, /* [211][0][][] */ -29,26,50,-39,21,50,-65,16,46,-21,-32,-49,17,-83,5,-12,66,14,-55,34,-24,-51,-4,23,-10,47,53,-22,-10,19,-21,-88,72,-47,-31,-53,-70,56,-37,-65,43,49,-12,53,38,39,90,-3,-127,-11,-33,33,12,-23,33,9, /* [212][0][][] */ 50,1,40,-30,5,78,36,1,-45,-78,-60,109,-18,-44,22,-49,-2,-7,-38,49,17,22,20,-14,-16,108,63,6,6,87,-56,-82,51,-23,19,-56,51,19,-120,-7,6,31,-16,18,-24,-21,-127,-87,-59,-32,10,-5,53,-59,-55,1, /* [213][0][][] */ -15,-17,-41,47,22,-28,-30,-28,-44,8,6,-87,72,25,53,127,-41,9,46,-127,83,-55,3,-10,16,50,60,26,-52,35,-40,9,-69,2,1,126,-14,-54,58,-25,-34,-55,-5,30,-11,41,26,49,13,4,12,-28,-10,34,-6,-17, /* [214][0][][] */ -66,127,28,3,98,121,20,82,37,-76,69,9,77,100,-57,10,64,20,-22,7,-77,0,-75,-13,62,92,-24,77,-25,58,52,-13,-37,17,8,-90,50,-2,39,19,111,-79,40,1,90,54,48,-40,35,35,-70,-24,26,-34,-94,41, /* [215][0][][] */ -99,-24,-2,32,92,33,-16,-94,-85,17,13,-27,38,84,-17,28,-69,-58,116,-4,48,0,49,83,-15,20,-54,-31,-94,51,88,2,-59,-18,12,44,-52,-57,14,16,54,-14,-54,16,52,57,0,103,-28,18,-45,127,-22,72,-63,-53, /* [216][0][][] */ -62,54,21,-81,-20,-3,71,12,-58,-2,0,5,-35,-107,-99,-55,28,-14,37,-32,-72,0,-37,-3,-31,101,-25,-2,-44,-27,47,87,-46,-66,27,8,14,-55,127,23,-31,93,31,-15,-34,37,-60,-34,125,-34,-5,35,18,-75,123,94, /* [217][0][][] */ -114,120,24,-54,74,-93,-49,39,-5,12,3,-117,28,11,82,28,-79,-2,-43,34,36,127,-11,28,29,105,-6,-68,16,-57,87,12,66,40,24,5,-69,-48,5,63,17,19,-15,40,-42,29,48,-21,62,57,4,2,-2,-70,47,44, /* [218][0][][] */ 40,12,-33,0,40,0,43,59,12,44,21,-32,-24,-36,28,29,-11,-22,63,14,38,-55,-90,0,-127,-55,49,-5,-33,-24,32,-33,-4,0,66,67,51,42,-11,18,-37,34,-58,7,26,-84,14,-26,-104,23,-12,-47,-50,-63,57,112, /* [219][0][][] */ -7,-16,-23,-40,-116,-23,-86,-16,11,-2,-87,-110,55,114,127,46,19,49,-62,-4,84,-6,-97,-116,12,-29,-8,93,14,-26,-1,-40,81,-28,71,26,-12,-15,125,10,-123,-4,3,-69,-15,-19,27,71,57,-3,51,16,12,-60,-49,55, /* [220][0][][] */ -5,52,59,-60,-60,-43,33,48,36,10,-18,-53,-101,-25,0,9,-23,35,49,41,-25,32,3,28,27,-60,53,-22,38,29,-14,17,-21,71,6,-18,-11,6,6,51,-7,-30,18,-1,-63,9,19,-60,31,38,58,65,20,39,8,127, /* [221][0][][] */ -26,30,66,-78,43,-42,-58,120,11,127,10,-32,55,28,39,-88,69,-41,-65,40,-111,-30,-25,-5,-6,52,-126,16,64,27,-14,-38,-42,52,-108,104,-26,-22,73,2,-79,-29,-42,-2,13,-62,17,35,-40,-51,-31,65,-43,-84,62,21, /* [222][0][][] */ 57,0,-42,47,108,-23,-12,68,5,39,77,-76,-10,48,15,-86,69,-53,24,61,-23,-9,-19,69,83,74,-19,18,-50,-23,39,-30,67,38,-74,38,-7,-66,22,-47,20,-103,-13,52,-10,-6,40,29,31,4,-127,41,-32,1,-35,-61, /* [223][0][][] */ 47,-50,-13,-41,-20,-14,-59,21,24,-9,32,-21,-112,104,68,50,-14,8,-33,-38,127,-22,17,60,53,29,-45,86,1,-69,-82,9,-75,35,-16,24,-58,0,24,9,33,-46,-71,61,-32,-56,106,-12,-55,31,50,-34,14,22,116,-76, /* [224][0][][] */ -33,-32,-8,27,67,-42,-5,118,-126,-40,44,68,28,36,45,77,35,37,61,109,124,-29,-61,-14,-6,-35,-91,-34,-77,88,-2,-121,40,-28,-80,-52,-55,5,-37,43,40,-45,59,-103,-127,-75,4,28,72,-38,19,-105,-31,88,-44,-82, /* [225][0][][] */ -84,-20,-58,51,45,14,11,86,-21,10,-39,85,-85,4,107,9,32,70,88,-23,5,6,15,-10,41,-67,46,82,28,59,90,-34,60,-21,-113,-90,-9,-52,44,-40,-127,42,37,-3,21,-23,127,-30,-107,-35,-22,2,-7,-24,16,2, /* [226][0][][] */ 19,27,-57,45,-54,-103,-34,56,59,54,-40,39,28,-41,15,26,39,-34,49,17,-34,-19,-52,26,83,92,32,-34,127,70,1,-3,-43,-18,-49,-49,-8,6,-101,-57,1,8,-4,33,18,26,-28,46,-13,5,0,78,21,-15,-61,16, /* [227][0][][] */ -2,27,-8,3,0,-2,21,92,-43,-3,15,47,72,-43,58,50,-22,100,-18,-40,-28,25,-99,67,102,51,-3,62,30,-71,79,10,-46,25,36,-42,-67,-46,-56,-116,6,50,-6,43,-35,-68,-23,-55,127,4,21,-1,3,3,-33,-50, /* [228][0][][] */ 50,-10,-127,78,26,28,31,75,-43,-17,95,-48,-19,-65,-17,-69,72,-81,-44,-16,-32,-55,42,-66,-90,0,3,88,25,-27,46,-18,46,111,-1,-34,-46,120,-10,107,-97,-39,-72,79,-5,31,35,7,-84,59,72,-46,72,-37,5,92, /* [229][0][][] */ 13,-44,-77,13,102,22,-54,4,-62,-46,2,-26,91,115,45,30,44,57,37,97,73,-109,22,-82,35,75,-14,43,7,-21,-13,13,-54,-107,-24,-34,44,16,3,31,67,45,-57,-23,-41,22,70,-111,-29,-16,109,5,-38,127,-49,49, /* [230][0][][] */ -53,-15,28,-111,-56,-40,18,63,70,43,48,96,21,127,-87,38,41,23,-98,26,-80,3,23,-107,9,72,48,51,76,-7,-111,-53,7,28,-52,53,66,-55,-33,-18,-10,-18,50,22,-12,95,42,61,-78,-29,-86,-29,-1,48,-28,-48, /* [231][0][][] */ -77,-72,-119,13,60,67,-77,-47,-26,40,103,-23,-73,-11,127,-65,93,111,-124,14,4,-101,-62,-32,-43,-23,11,35,-82,43,75,106,53,49,41,102,64,10,11,62,-25,-33,-64,39,60,62,-11,-71,-9,39,-8,-100,-29,49,-21,-95, /* [232][0][][] */ 12,15,21,-30,-69,54,67,-29,5,7,-28,-31,-44,-21,36,29,-93,8,22,-42,57,-53,29,33,-55,21,-53,-37,2,127,-59,4,43,-68,10,-45,-47,35,-48,44,62,25,-21,48,10,27,-12,-70,-38,-58,-69,-15,-39,-49,32,17, /* [233][0][][] */ -89,10,32,30,-65,57,4,-32,25,22,126,46,-35,-59,6,0,104,-117,-108,-64,-94,-53,-18,-2,101,-95,67,76,47,119,-68,97,90,27,-62,13,108,-37,-54,46,-127,47,101,-53,-60,-67,-67,26,25,61,65,64,63,13,58,-8, /* [234][0][][] */ -48,-14,-55,-38,69,-22,41,21,-26,-15,-62,-61,-50,27,34,61,-9,20,-21,117,-70,-127,-42,13,-35,25,-50,-58,-36,35,-38,-6,-8,89,9,-24,44,62,-36,-60,-84,-22,36,72,-18,84,22,22,-7,-17,-3,-9,-63,65,-20,4, /* [235][0][][] */ -6,61,31,101,-13,-40,38,-9,-52,-126,-73,9,10,-15,75,-11,-11,-32,-42,-60,-42,-71,-50,69,85,-69,122,-77,76,51,-64,100,-55,101,11,-26,-58,38,26,49,83,127,-41,19,-18,-48,-89,-10,112,-49,-15,-18,43,17,-9,17, /* [236][0][][] */ 84,-64,-51,95,16,81,-65,23,-57,-8,7,102,-35,-73,-2,-9,24,-61,3,118,16,68,53,-48,-9,-104,95,3,37,-26,39,-19,-21,-49,-12,-85,16,-24,-111,-4,-1,25,-1,91,41,6,93,-61,28,-9,48,50,127,-57,-41,-33, /* [237][0][][] */ -13,75,-26,-82,116,-14,-14,-20,-13,-33,-87,-81,102,20,41,-17,24,25,-74,53,-77,87,-61,-49,-21,-26,-8,-34,59,-6,45,39,26,62,5,102,-25,-107,17,-50,-18,20,23,-63,3,50,9,26,-59,-106,-73,127,-34,32,-48,42, /* [238][0][][] */ 127,41,-48,7,-100,21,53,-7,5,22,11,-6,-13,-36,-19,-20,-5,30,3,71,-14,-51,-103,-24,50,83,-21,69,-51,-47,-33,-48,-53,1,42,28,-31,42,-1,74,-21,-57,-23,-22,-46,51,1,-49,18,-86,54,52,31,61,35,46, /* [239][0][][] */ 29,-22,-50,11,51,10,-16,-27,2,50,-45,-28,72,16,-3,61,94,-66,25,53,-48,-43,-16,29,-75,-89,56,-86,-14,119,127,-119,-119,7,2,104,-15,60,-14,-4,-104,-71,84,11,16,-30,-27,0,2,-64,35,-41,17,-45,72,49, /* [240][0][][] */ 17,2,-10,53,-14,-56,-48,32,14,-5,-82,-64,-29,44,-82,40,88,-84,38,-96,27,31,40,7,-71,56,16,-19,28,67,40,4,78,-41,79,-98,127,-26,-36,-15,-45,72,-8,-5,-25,-4,-99,46,35,-40,73,-63,60,14,-26,55, /* [241][0][][] */ -53,53,40,31,-16,28,-52,16,-33,-67,1,-24,-87,18,13,-44,-18,113,-71,-61,-18,-54,59,33,109,34,-50,86,-5,-7,-27,-78,-5,-105,18,34,-20,-127,-49,-15,28,-9,-3,28,-68,42,-12,-50,-27,10,-49,-42,-7,21,77,-51, /* [242][0][][] */ -66,31,22,-45,38,-15,127,-42,14,9,16,-32,82,2,-5,104,-24,-41,22,39,89,-36,-19,78,2,57,51,4,45,-47,-23,-3,98,89,9,-86,46,-43,11,14,-40,-17,25,-7,49,-50,93,56,26,-6,-4,34,-44,-9,-4,9, /* [243][0][][] */ -5,45,-53,29,42,91,8,-11,-18,-46,52,65,12,64,-43,-30,11,-20,-40,-26,119,87,35,13,46,69,-77,-10,86,-24,20,-19,-48,-10,89,8,-65,-69,-15,-8,-27,-87,83,64,56,-64,-67,-35,-69,9,-31,-127,-71,-2,50,22, /* [244][0][][] */ 57,-25,-43,5,-49,-38,-33,108,44,30,42,-15,-56,-59,-19,51,34,1,-67,55,-21,-19,6,69,-62,10,-40,62,-57,-102,-103,0,-127,79,-63,66,52,-13,-46,-20,-80,-113,-27,73,5,-121,31,-46,69,-91,-59,117,56,61,-75,65, /* [245][0][][] */ -3,127,38,89,81,57,-63,-7,-43,46,-55,27,31,-32,-56,-24,2,11,54,37,55,41,18,29,-89,18,-38,55,86,-30,-25,-36,5,22,81,-30,-52,30,-73,1,74,82,61,-17,-22,32,-6,-6,103,-62,8,42,34,-40,44,20, /* [246][0][][] */ 11,-36,-21,27,-75,41,7,37,-121,-43,22,8,47,-3,-8,-62,73,-107,0,103,-16,17,-8,-76,9,-69,-91,5,-19,-52,-30,-75,-32,127,21,47,11,-124,-21,35,-23,88,99,-53,28,-18,-67,27,9,9,-6,-96,-51,-46,-25,-63, /* [247][0][][] */ 64,25,17,52,8,-23,41,6,50,126,-96,127,28,-29,-59,8,-4,-17,-64,-32,43,11,66,35,-51,-86,60,-6,-61,-42,14,-57,-31,-82,-100,-48,-97,63,-48,66,-7,31,-1,33,-17,-86,74,49,88,-47,-77,-71,60,122,-45,67, /* [248][0][][] */ 13,-12,17,84,-21,104,34,-113,57,1,-28,-21,15,-60,-125,-12,-42,-8,9,55,-1,-40,89,48,-14,-6,-49,45,3,51,-13,43,-45,22,-17,-32,29,114,28,11,59,-127,-23,22,37,100,-4,49,-8,-48,68,-4,-27,17,-59,-72, /* [249][0][][] */ -34,80,-48,-25,90,-26,-11,4,-20,31,32,-32,3,2,48,10,21,-69,69,10,-97,-43,3,-95,-16,9,-127,-12,-26,-26,-18,-53,-13,46,-8,55,-31,-60,-32,22,-21,27,29,59,-40,-39,-19,-50,-24,53,16,8,-26,0,46,45, /* [250][0][][] */ -16,-6,-12,116,-76,1,62,64,84,70,-9,-66,-80,-68,9,-35,-34,-40,-17,62,-127,-3,-23,-85,-65,-9,-113,-70,70,47,57,-26,26,50,12,17,-122,-37,41,-19,39,-38,-61,-6,105,100,54,-46,24,-6,-59,-10,0,34,26,122, /* [251][0][][] */ 79,-4,34,48,-46,-21,-33,31,17,-32,6,127,28,-2,5,85,7,-15,37,54,-10,49,26,31,46,55,-28,15,-26,59,28,65,70,80,-40,-15,-46,89,-89,38,37,5,-91,80,2,-21,-12,0,81,72,76,-32,58,28,83,-52, /* [252][0][][] */ -16,-45,-23,48,94,-91,-53,33,17,25,-107,-17,-41,-39,-41,79,127,73,-20,-4,-59,-66,72,18,38,81,44,3,-39,-19,18,-23,10,23,-123,-54,43,-23,-24,-43,-2,-37,49,-3,48,8,-91,44,37,114,51,16,-46,50,34,68, /* [253][0][][] */ -48,-44,33,-64,72,110,-64,-54,59,50,-22,-78,20,2,-9,-101,21,-23,7,10,30,35,-28,-60,-40,-35,59,-1,-69,-27,-1,-68,23,-6,53,-39,42,20,88,119,111,-26,-29,15,16,-33,3,73,-127,86,1,46,-63,-36,10,-34, /* [254][0][][] */ 32,4,-79,-2,-27,22,-58,17,35,36,19,58,-7,-18,13,34,78,34,36,28,47,77,-41,31,57,-6,8,-39,29,-24,-77,22,-11,-17,-70,127,-18,-94,73,38,17,49,19,55,10,26,-8,65,-27,0,-42,60,-31,-40,69,15, /* [255][0][][] */ -49,-14,27,-9,30,22,-12,-47,-44,-67,49,-22,49,60,-50,-21,22,52,-40,72,118,45,-38,-2,4,-75,-81,4,5,57,44,103,26,86,23,-18,-44,-83,96,-17,-43,-20,33,-53,127,-51,4,-34,29,21,-8,79,19,-38,-91,-30, /* [256][0][][] */ 36,24,47,-12,-33,11,80,-86,-16,49,66,-45,34,31,-27,41,100,25,34,93,-75,-12,-36,33,81,-25,41,-44,-64,-8,51,2,104,-20,2,18,-121,10,-39,-32,46,-49,-12,127,-87,-39,-5,-36,-8,-70,57,37,31,-79,-56,31, /* [257][0][][] */ 19,-25,16,79,79,-93,-70,-127,-8,107,-59,35,29,13,-41,24,-2,44,-96,68,31,-31,14,-13,-3,-15,15,-14,1,67,-44,-56,-93,91,66,32,-16,-13,-44,-70,-83,61,-26,42,29,-9,-12,-73,-4,-76,-13,101,11,11,45,-34, /* [258][0][][] */ 63,-23,26,15,-25,37,-3,26,1,46,85,-3,-35,-50,-86,-49,9,29,50,-13,113,30,90,27,-89,51,-127,35,-100,76,17,61,-29,90,-36,90,80,96,-38,-78,-4,-76,-36,74,5,-18,-24,-46,-57,-48,87,-114,-47,-7,-59,-78, /* [259][0][][] */ 68,-27,-65,-28,-32,37,-102,-127,-95,42,125,-66,-96,-43,48,-15,13,21,-22,-41,12,68,71,59,6,14,18,-49,-99,89,-14,17,74,-114,-108,26,-67,-101,55,-49,42,126,-21,-38,-22,50,-51,44,-28,78,-73,-1,95,-18,63,63, /* [260][0][][] */ -30,5,83,83,-2,78,-54,2,-10,-29,-46,10,1,70,-22,26,-49,74,-25,-57,-12,-37,10,-36,-22,50,85,-19,16,10,48,-89,68,-56,-14,15,23,-25,-28,-43,55,50,53,46,47,-91,-17,-8,-127,-38,17,-73,16,105,72,-80, /* [261][0][][] */ 35,68,-53,24,-105,-30,-16,0,-3,22,9,-82,-121,2,-58,30,-70,-22,-9,-88,-87,2,-44,-39,-37,74,22,7,51,-16,-31,8,77,34,-37,3,10,-30,75,102,-35,-10,-42,34,21,-116,49,58,18,-9,10,-79,28,0,-21,-127, /* [262][0][][] */ -5,-1,103,70,-45,31,28,121,-110,-120,-9,35,-18,24,19,-115,45,-93,89,127,20,60,13,-89,-53,-40,-102,-13,-55,-81,-10,-68,18,89,19,-18,22,-89,-53,107,5,49,55,-37,59,-44,-87,115,53,-127,42,-67,24,58,-31,14, /* [263][0][][] */ 21,-23,-81,-115,-8,-79,64,3,31,-59,-18,78,54,-10,58,118,26,-29,-51,-32,55,-37,-48,98,-52,-31,-10,-38,11,89,16,-20,-32,-7,5,-46,-86,-43,20,-22,-61,2,-12,-60,-127,-14,30,-36,36,-7,38,44,93,74,-47,-5, /* [264][0][][] */ -29,-9,43,-58,-51,17,-19,-57,0,-44,-96,57,-74,70,-93,38,-18,26,58,-15,-77,2,-16,24,-30,31,-32,14,-3,-91,55,-55,-25,-15,-8,-9,-127,77,64,12,121,56,-68,55,-65,-95,87,-13,18,-77,-25,-59,47,-106,-31,-53, /* [265][0][][] */ -34,-127,-46,38,0,-1,-46,41,17,17,-7,-2,33,68,-18,-30,-17,-2,76,78,-18,-35,-40,11,-35,119,-63,-26,21,-67,37,21,-27,19,95,-56,-71,-53,56,-81,30,38,-76,88,21,47,16,46,26,-49,45,-53,6,-8,-51,-42, /* [266][0][][] */ 28,-71,60,70,-7,-49,-33,20,-99,-76,-86,-55,127,4,-59,16,104,-3,65,112,-66,-37,90,37,-52,-83,60,30,-33,-19,4,36,-63,99,17,-62,54,-40,-21,39,46,8,0,68,-117,-41,93,7,-24,13,24,24,74,87,24,66, /* [267][0][][] */ -29,15,41,34,-4,35,-81,-10,-77,-23,7,100,11,4,34,-32,16,-71,-24,-81,-71,33,-17,8,7,17,-85,34,80,-6,-7,-31,-7,-1,-22,-5,-23,6,55,-5,46,-45,-56,-84,127,64,120,11,-67,-63,31,37,-86,74,43,-44, /* [268][0][][] */ 22,26,14,9,-100,-29,15,-15,-14,-5,73,-30,27,19,60,-70,80,-73,21,54,53,27,97,-95,-34,-70,-20,37,127,1,26,36,-48,-13,-13,-29,6,63,-48,-28,-46,29,17,-37,20,48,63,-48,24,-32,4,-6,-38,-40,19,-6, /* [269][0][][] */ -60,-31,-5,6,-27,-70,22,-10,9,17,-120,-72,18,79,27,37,34,-49,-91,2,-4,-64,5,-8,-8,127,88,-9,31,5,11,16,0,-41,-76,99,34,-17,-64,-59,6,-10,-52,57,-10,-31,-2,-29,27,19,125,-18,9,61,-11,41, /* [270][0][][] */ -25,-57,31,4,-32,14,77,47,60,51,-106,-31,26,7,-127,62,-16,5,-47,24,-5,7,-19,-35,27,-61,-46,-9,-50,50,20,-22,88,101,-3,-20,-53,-20,-26,7,-32,32,-89,-53,44,-14,13,-76,33,-14,47,-18,74,-42,-6,7, /* [271][0][][] */ -48,-64,58,17,-55,93,-53,1,8,33,-71,36,85,70,-74,10,-19,59,-127,27,-36,-29,6,-85,48,63,5,10,-70,-52,28,66,1,7,-68,-48,56,18,60,-12,-1,23,26,-16,11,-21,-24,7,-45,-87,58,18,-10,52,-29,-19, /* [272][0][][] */ 14,-5,4,-36,-37,32,9,30,-42,-72,-51,28,30,16,-58,127,68,-14,-40,73,70,33,39,54,-36,76,60,99,44,-12,27,71,51,-31,23,41,17,27,-31,60,13,-23,-26,-74,-4,49,-14,15,-62,-31,-79,24,-5,-2,-52,-42, /* [273][0][][] */ -109,29,-23,3,-58,-49,-9,-47,-35,-38,76,19,25,36,69,71,47,2,-34,-11,32,-12,-47,56,-95,12,27,19,18,-6,4,34,-14,-14,-38,48,16,104,-43,-84,119,-40,5,67,127,-44,-12,-5,-18,40,50,-34,-112,44,37,2, /* [274][0][][] */ 12,12,-18,-61,-32,-41,-14,23,-26,-60,12,-48,-2,23,47,45,-2,41,-28,21,26,55,58,-19,25,29,-29,39,-6,16,48,-1,-58,9,-26,66,-51,9,41,-117,0,-10,39,65,-37,-2,29,-19,-20,75,-46,45,-127,14,25,-78, /* [275][0][][] */ -29,18,-26,-107,-19,-40,32,29,-12,41,-34,-15,-11,75,-7,81,5,28,-70,-21,-27,-55,49,10,-51,1,60,-42,73,67,-82,-127,12,5,-26,-30,-27,-43,-17,32,-11,-39,-55,-50,14,-65,-28,31,18,104,68,-35,-70,65,9,3, /* [276][0][][] */ 10,-43,-28,7,52,-21,9,41,-56,-10,-23,-1,-1,5,11,62,-59,-9,-106,-14,32,-21,-4,-16,45,25,1,-20,-2,127,-4,64,2,-91,35,-13,-48,-46,74,32,24,-16,-51,-17,8,-3,25,-5,3,52,78,-102,20,106,-2,80, /* [277][0][][] */ 43,60,-29,74,-82,-88,27,32,23,45,127,-105,-32,-3,70,-47,76,-50,-80,-81,71,-75,-60,63,-16,5,96,-40,11,21,14,-3,-84,-113,38,59,17,-78,94,31,-83,95,-50,-112,-57,39,-97,-37,-56,72,-52,-29,13,59,-12,-20, /* [278][0][][] */ -12,4,-5,-14,-99,-89,10,9,-32,-37,29,46,-41,30,21,52,-1,-16,44,36,-127,-118,3,38,-62,-30,-58,-19,61,91,-36,110,16,-22,111,-25,5,18,107,-43,7,99,-67,-51,19,83,-10,-19,77,-113,-82,51,93,26,-23,77, /* [279][0][][] */ 20,-9,8,10,58,27,-25,59,6,-36,74,-35,35,-9,56,-43,15,-61,-41,35,-63,-21,37,62,20,-31,-28,-17,-69,-5,18,-32,-50,69,2,-19,8,14,-11,-31,-34,-30,-7,-51,61,127,-14,10,35,19,-95,0,-23,-2,1,13, /* [280][0][][] */ -47,16,-55,26,47,-24,50,-14,63,86,37,13,7,23,10,56,-37,69,33,-97,76,-43,77,28,89,-76,40,-31,-29,-127,35,-87,-39,13,-98,-69,-29,-29,-11,-44,-76,-81,24,-55,55,91,-17,-11,-5,59,-8,-34,-67,-76,29,-59, /* [281][0][][] */ 46,29,-78,-127,-18,-2,77,-113,-31,-68,54,33,65,-126,19,-7,-16,-102,-44,29,-38,93,23,-23,-17,-33,-2,-53,-50,52,-9,-76,-2,52,20,-30,-38,57,125,-22,12,-8,65,72,20,82,-74,38,37,-57,22,-55,26,-36,-16,-73, /* [282][0][][] */ 35,8,-68,8,-36,-11,-92,-43,-51,1,-76,38,69,-37,-67,48,33,79,69,7,34,-75,41,-42,100,46,57,-36,-34,-43,-34,44,-26,-29,-46,-35,-25,68,-60,54,99,-44,-35,70,-68,-9,16,-75,47,-127,70,-5,-2,-9,-15,-86, /* [283][0][][] */ 46,74,50,21,-7,54,41,-8,38,-44,13,69,-39,-54,-69,23,38,-101,-67,-14,29,32,18,-25,-54,-71,56,-93,-5,14,57,-28,-46,-68,23,20,-24,14,-80,7,-23,-98,-48,-14,47,-89,3,-29,44,-55,5,121,16,127,-61,18, /* [284][0][][] */ -101,8,11,-27,44,-95,18,-46,-28,41,2,99,24,-40,-2,-38,-36,5,54,90,-62,-25,76,20,-125,-55,71,69,-17,65,-63,30,-127,100,18,-84,36,21,31,18,-11,68,49,3,-27,4,-17,-73,-55,111,-33,-90,35,-102,-58,-63, /* [285][0][][] */ -84,77,-113,-60,-24,18,-17,66,-11,26,65,-11,21,38,-20,26,11,-3,-73,17,-26,32,0,62,52,-11,-99,85,-13,9,89,-46,53,-127,26,-16,8,5,86,1,51,75,1,5,-31,-53,-53,-63,49,-7,-22,5,26,-41,27,60, /* [286][0][][] */ 61,24,4,-8,-80,46,45,-25,-18,-11,2,42,-3,-88,21,80,13,-52,79,-35,-17,15,-80,-18,3,18,20,0,-50,45,-6,-71,-63,-33,-91,-15,22,-91,68,-26,24,-52,56,42,78,-99,0,-61,-54,127,-93,10,7,117,70,27, /* [287][0][][] */ 9,81,-86,113,-38,-24,71,-26,109,-49,72,-101,-4,-50,-68,-81,127,-32,-22,26,14,-97,7,33,-29,34,-9,62,0,82,-73,-71,-18,58,74,38,-42,23,-80,-20,-37,40,-43,-2,43,71,72,-70,-37,-28,-95,-33,67,-10,-57,19, /* [288][0][][] */ 11,-5,8,44,-36,0,-85,6,6,54,-9,-62,55,107,46,-8,-24,-62,-28,52,37,76,-30,61,20,29,-7,63,-39,-127,76,23,11,83,-32,46,-8,14,29,9,15,0,16,-4,92,97,33,3,7,-55,-83,-8,-9,95,43,5, /* [289][0][][] */ 52,49,37,21,-11,0,23,-115,28,59,-119,-38,-117,76,-12,69,-49,12,7,94,9,-40,11,15,80,69,36,-49,27,-14,-9,-32,-42,17,-86,1,-108,51,7,4,57,-19,103,-8,-43,61,-18,-99,76,127,33,-63,30,-23,-54,-67, /* [290][0][][] */ -87,-33,-56,2,59,80,83,-22,1,-27,-2,87,-20,-2,-107,-29,-109,-39,-60,23,4,-2,11,-1,6,-73,-76,-8,-78,11,127,22,-23,-95,7,-19,-48,-43,57,42,-30,-32,-41,40,-31,19,-10,-85,-23,20,117,-16,-55,-28,82,12, /* [291][0][][] */ -4,-39,-39,-40,50,-13,41,-25,15,24,-50,-39,-41,-19,-69,-58,83,55,-7,22,28,79,42,1,12,-66,-51,-3,2,19,-93,34,113,16,21,16,-13,-28,94,6,45,-66,-51,43,-77,42,85,53,-45,68,-2,-73,-127,115,-58,50, /* [292][0][][] */ -58,-1,63,65,-18,21,6,75,-34,-90,-54,76,-34,73,-4,-18,78,-55,-13,75,47,-23,25,-11,-32,-65,-106,-127,-76,-57,6,-71,-52,64,33,3,59,-53,47,16,-61,31,83,-48,10,-64,-17,-13,4,-73,38,-54,9,-7,38,0, /* [293][0][][] */ 23,15,-127,-35,-8,-11,11,48,-42,79,-66,3,3,-16,-86,21,90,-6,-45,87,16,3,-31,-2,-55,80,53,-20,28,-32,34,-56,-11,66,-31,-47,39,-53,-4,70,-8,21,36,94,-47,47,11,-6,23,-9,-10,13,-64,-35,48,-17, /* [294][0][][] */ 2,34,-6,55,23,14,-8,49,-2,33,20,-53,-62,-29,-32,0,-3,7,-54,-57,-75,-31,22,-72,-62,20,-21,-20,-68,-12,11,59,37,-39,-66,73,54,-127,23,35,41,-41,-53,3,79,17,-36,18,-36,41,-81,-38,25,-58,-40,-14, /* [295][0][][] */ -34,53,37,-26,6,-24,-2,9,-65,-44,-59,-46,17,18,69,-28,-3,45,-47,2,-29,77,66,-14,-23,127,22,29,-40,14,70,8,48,10,-16,34,32,72,22,-7,40,9,34,14,-54,34,5,124,-14,-24,1,64,-35,10,61,77, /* [296][0][][] */ 49,-57,-40,-36,-71,-34,67,-27,14,12,-19,-13,46,-47,9,-17,-4,25,15,27,-4,-24,-19,-46,40,35,-39,44,48,30,21,-127,-17,-62,82,1,-4,35,24,27,38,-22,-31,-59,-1,-7,28,14,10,-82,-12,-69,61,-40,94,-56, /* [297][0][][] */ -56,62,63,13,49,-42,-24,112,-95,-110,-46,49,-17,8,71,63,25,-13,41,22,77,-28,-57,-20,-13,5,-41,-99,-43,75,-7,-127,-15,-78,-122,45,-18,109,-16,-9,0,-96,-9,-48,-56,-70,12,5,-81,-24,45,-32,-21,73,78,-95, /* [298][0][][] */ -77,33,13,-54,52,19,127,-11,23,-43,-29,-33,22,-20,-35,-47,22,82,-7,-46,-16,74,-62,21,59,-54,-89,18,-18,2,48,44,15,-62,11,93,-23,-42,55,-40,51,57,0,18,18,-44,-40,-47,-26,10,-24,-57,-47,-34,2,2, /* [299][0][][] */ -42,127,-49,64,-58,48,42,-14,-46,59,16,2,59,85,-51,-82,-23,-21,24,-11,-19,-18,9,34,5,28,-100,-49,-57,-24,-8,-15,-12,66,109,38,-44,-42,-57,29,-2,0,-14,37,24,-15,95,89,-66,18,-33,24,-31,20,39,-44, /* [300][0][][] */ 17,-70,97,42,-33,-52,6,-47,-127,-5,107,19,-78,-24,-20,-9,-28,21,82,12,64,-87,-64,-75,-6,61,-68,124,-68,-53,-43,-57,1,60,42,-2,52,80,-99,-39,-80,8,20,55,-53,-32,-19,93,-68,-41,54,109,97,-13,-83,115, /* [301][0][][] */ 5,19,-46,16,-20,-21,-36,24,69,127,24,28,-29,-125,32,15,-64,31,18,82,-5,-26,-21,86,43,-52,-7,-53,9,58,-2,20,7,58,29,-8,0,-12,20,-78,23,37,28,16,-50,14,-13,-50,-63,-101,29,60,-22,50,67,-12, /* [302][0][][] */ -62,78,25,-68,-18,-85,75,33,0,-37,88,-29,45,57,-59,-26,-56,1,17,72,15,91,2,43,81,-37,127,13,-49,55,-85,-78,0,55,-42,-85,-19,-17,-34,-66,7,24,-13,-81,-32,63,-41,28,-45,85,46,33,22,5,37,-49, /* [303][0][][] */ 64,43,127,-20,-26,29,23,-43,-75,22,23,68,102,69,-16,12,-67,-51,-55,8,28,11,-21,37,-37,9,14,-87,-35,9,-17,-3,4,35,-111,-4,66,-25,-24,-31,81,-65,43,-62,6,9,19,78,-63,59,7,-59,-67,-58,33,61, /* [304][0][][] */ 4,-65,2,15,3,-118,91,101,7,-97,-52,-71,-16,-63,65,-44,-43,29,-40,39,-4,-15,16,127,-38,55,51,21,-33,-6,73,-35,-48,-1,-35,-2,-26,-67,7,-9,-70,40,-53,-57,5,65,3,-99,51,-31,6,-50,33,71,92,-35, /* [305][0][][] */ -5,69,-47,83,26,-29,118,80,-35,97,27,13,16,22,51,-8,-54,-14,13,46,-47,-35,-32,25,-55,-16,50,-127,79,64,-6,98,-14,10,43,-48,-112,36,-31,41,33,76,106,47,25,-35,-22,17,106,125,-56,45,-12,13,-38,73, /* [306][0][][] */ -26,-22,54,27,-25,20,-18,49,-66,-127,-38,-8,11,-6,28,-106,23,-43,-9,89,51,-19,-3,-13,-32,-8,-78,-56,-31,-31,9,-66,-38,86,3,-73,13,-32,-21,-24,12,22,20,-47,20,-39,-20,54,19,-2,25,10,-22,-11,-38,-23, /* [307][0][][] */ -5,45,78,22,55,127,21,-38,13,14,-45,-45,69,85,-24,-110,7,-20,-1,-34,-47,33,74,-106,17,-49,-36,11,8,10,64,-24,-7,-27,-76,75,33,-31,-4,-89,-72,35,65,-95,-52,87,45,106,-20,19,-43,44,-2,13,39,28, /* [308][0][][] */ 7,59,25,-71,-22,30,4,59,28,62,60,69,50,38,17,6,45,-109,65,12,-2,-7,-127,1,72,-27,-83,45,37,77,26,46,-29,51,-61,52,79,-29,-58,-17,-45,-1,68,-7,6,-73,0,10,84,47,-32,91,-8,9,66,49, /* [309][0][][] */ -92,-47,-75,36,19,76,2,-81,28,-44,-35,-11,1,52,-36,-47,18,78,18,3,-9,-39,-9,-15,58,-52,48,16,-19,-45,-8,-41,-15,14,-4,-45,-38,-22,26,0,86,-127,-53,-3,-72,-24,2,-35,-14,30,7,-40,-31,1,-42,58, /* [310][0][][] */ -40,-127,-37,-33,27,-57,36,25,-40,-92,65,-11,42,52,74,72,25,-18,57,29,-38,105,34,-6,-37,36,-9,29,-14,4,15,-33,21,36,-61,-2,5,-91,-72,17,-13,24,-65,43,-12,-16,31,-98,-69,-81,12,90,-24,57,-15,-29, /* [311][0][][] */ -96,78,-73,30,-16,-32,-24,32,-12,97,122,-34,58,0,25,24,89,-30,16,-70,58,107,-105,11,-89,107,60,-54,-7,64,44,-56,-47,-13,20,-56,36,12,85,-28,12,33,127,17,51,100,31,39,-63,52,6,-34,21,21,-32,28, /* [312][0][][] */ -18,-17,44,-1,49,-56,-40,56,-13,-9,-52,27,67,22,26,3,30,-43,25,-47,74,44,10,-31,-113,-14,-76,-49,-60,64,-63,-127,7,60,-43,-25,-48,29,69,8,-8,1,-10,-8,-25,-10,-45,48,-13,-24,-1,6,-1,2,3,-74, /* [313][0][][] */ -116,-46,98,-18,114,3,-12,-67,-45,-3,-89,106,-16,52,34,-15,-64,-121,-2,-19,127,-67,7,29,-19,-90,20,86,50,-14,42,38,68,0,49,-19,13,24,-58,-49,22,-1,59,-20,-6,-54,-44,33,-54,84,86,-52,25,80,-15,52, /* [314][0][][] */ -58,30,-49,21,43,-16,-7,-77,75,-45,-74,-42,-6,-99,39,-68,48,-11,-29,2,16,-29,11,15,27,-15,-35,47,-36,16,-30,37,-49,-43,-60,-33,-88,7,-23,-7,71,5,-37,19,50,-36,48,28,-25,12,-109,37,127,-15,23,35, /* [315][0][][] */ 69,101,87,22,21,-45,25,13,41,-26,127,2,-6,90,52,-57,-74,108,-21,-44,-94,-112,126,19,99,73,-17,42,-109,28,-24,-108,-19,-126,18,-64,-19,-21,38,50,25,-4,-7,24,-34,11,20,45,8,36,-56,-73,-29,-31,37,19, /* [316][0][][] */ -40,47,-30,23,55,100,-13,68,7,16,-61,-22,44,-8,-9,41,13,34,70,-39,0,82,-57,-38,57,32,-5,-17,-36,-18,-26,30,3,3,36,-19,-29,-127,38,22,-39,50,-15,-17,-32,1,50,-43,-6,95,16,5,20,51,-20,9, /* [317][0][][] */ 39,-86,45,65,47,-27,-55,-45,-127,-1,-90,-4,1,13,21,84,20,-38,62,94,3,-7,33,-61,10,-11,-6,126,100,-13,92,-15,66,-12,-51,11,-7,-50,14,-15,40,-67,-84,-76,-18,17,26,4,-36,-7,-52,-42,58,-48,-54,-16, /* [318][0][][] */ 98,-23,23,127,-7,25,41,20,-9,50,-60,-48,16,56,-69,-7,-58,-22,6,48,-33,63,27,110,-42,3,36,-28,33,109,-58,30,49,-28,0,-13,-82,57,-42,50,5,-3,34,46,9,18,-10,-65,-27,21,3,-60,54,-29,-20,-9, /* [319][0][][] */ -12,-18,-43,-1,26,29,-8,15,-29,-41,28,-75,-16,-79,-2,53,-49,-49,-120,81,-43,21,-25,-9,-25,15,-62,2,13,-49,-75,127,-39,-71,-35,-27,32,10,83,-50,-76,-53,40,-6,27,20,-57,-60,-88,1,83,-26,1,-1,-62,26, /* [320][0][][] */ -69,56,-50,-62,105,-60,-97,14,-15,-123,25,58,102,127,83,-21,-58,-3,-54,55,-22,24,87,-31,21,-84,74,79,-98,112,-59,24,28,14,36,2,-20,-33,28,17,-23,74,2,42,-8,-69,-102,-13,12,46,-25,75,49,76,-50,-12, /* [321][0][][] */ 83,-99,-127,-114,6,-18,10,48,90,70,-81,-15,-38,47,-39,2,58,42,22,-12,-55,-9,-42,33,98,-77,72,56,-42,12,-28,60,-91,-46,-44,-53,-42,-66,20,21,5,-80,-49,-65,-107,13,-99,28,-41,52,-22,-94,-111,-50,107,29, /* [322][0][][] */ -40,28,4,-28,-79,-7,-20,24,125,-47,-90,-58,35,-97,14,-5,-42,-35,-72,60,112,-94,48,43,-19,-65,-4,-13,76,20,-48,-45,10,-100,-58,-1,-95,-96,-51,-92,-34,26,-64,41,-8,-84,105,47,16,1,-80,-26,127,-39,51,7, /* [323][0][][] */ 13,32,-10,-31,-85,78,80,-8,-49,29,-27,-11,-4,49,-87,-24,-20,-51,-10,62,-12,-56,-39,60,42,-48,-3,-56,-31,31,0,88,-32,-44,-55,-8,-46,73,11,32,-8,31,3,-21,-37,31,32,-65,13,10,37,-60,31,-55,-33,-127, /* [324][0][][] */ -48,-113,-39,-48,70,63,7,15,-14,-20,24,75,23,-117,-87,19,55,112,9,59,-12,-28,27,-50,98,69,42,10,33,-12,-50,-62,-71,-42,68,-49,-59,39,127,23,43,35,-15,-23,21,70,-42,9,1,63,44,73,32,86,86,-73, /* [325][0][][] */ -25,-55,-66,16,7,17,0,21,10,-31,16,-16,-46,16,-3,-74,7,-78,6,-1,-17,18,58,-82,2,21,34,-5,-30,-38,-28,-41,-65,-10,-21,26,-8,20,37,38,14,9,81,35,-26,-39,69,-2,127,-14,36,28,64,-18,-17,19, /* [326][0][][] */ 58,-32,102,30,-99,-47,-5,-47,7,1,-57,-20,30,-28,-127,-41,4,27,89,86,38,9,-63,-15,2,2,55,-8,-8,60,8,-35,-74,-14,-8,-10,-38,-38,-46,34,-110,76,-44,40,-47,62,10,23,7,-32,69,-68,-19,-48,-22,-16, /* [327][0][][] */ -127,28,8,78,45,-26,9,89,-55,-54,79,-26,-78,51,-56,17,17,11,-18,-12,87,23,-68,-33,-15,-45,-37,6,-75,11,-77,-20,29,-7,-58,-10,-13,49,39,-3,103,-80,-81,-38,-17,22,-63,26,-42,71,29,36,-56,48,9,-30, /* [328][0][][] */ -40,-101,-67,8,-47,21,-13,57,-26,-19,23,50,16,-97,-25,-33,-37,-90,58,-26,35,103,16,4,127,-18,-28,24,-35,12,65,30,-66,-75,-69,53,-84,2,9,9,-4,-46,28,-66,42,-39,-2,56,8,23,-26,108,-77,-20,-36,55, /* [329][0][][] */ 31,77,-114,-76,-126,8,61,15,-30,28,-4,41,-57,-106,-40,50,-65,22,52,76,-70,10,-113,80,-79,-56,68,-50,127,12,-114,13,-39,93,71,-57,-124,-31,-4,-110,15,-39,-81,-102,23,-96,90,4,-17,69,50,-8,21,-52,-122,-99, /* [330][0][][] */ -36,-77,35,-29,11,-21,-13,-34,5,-37,80,-8,19,-73,16,25,-16,-32,21,-62,4,29,-24,34,-68,-32,125,4,-81,3,-14,2,-127,54,-23,7,18,30,-43,78,-127,-47,25,5,16,39,22,45,26,-7,-57,48,13,-44,23,-43, /* [331][0][][] */ -6,38,-127,-26,48,23,-55,-31,-18,48,29,-74,28,-45,-70,-5,23,-71,-34,100,13,11,-51,-58,-54,31,-65,18,-76,7,25,30,87,33,-12,-23,-20,-28,-21,37,36,-5,-52,51,-47,-2,-87,112,8,-15,64,13,-8,28,-57,-23, /* [332][0][][] */ 4,-43,-17,41,39,-32,53,-114,20,40,26,-30,5,33,-25,-36,-32,3,-40,117,-37,-6,34,-47,-46,43,49,-59,49,78,-32,23,37,3,-16,-76,-6,92,-28,105,102,-97,30,54,-54,-31,-8,-71,119,-10,-58,-13,127,44,56,-16, /* [333][0][][] */ -25,-41,-8,42,51,7,17,-83,54,-36,-61,-41,59,-56,15,-44,6,-28,-51,127,-62,9,-22,104,-23,19,-79,8,-26,14,-19,-44,-33,-38,-78,-23,-50,-28,24,-43,3,-7,-30,17,18,17,86,61,34,-13,-107,40,29,-38,58,8, /* [334][0][][] */ 44,-2,48,-50,32,-85,32,-51,-6,-32,3,-12,-67,19,-4,19,88,29,-32,29,44,40,-127,0,6,-63,-31,-8,-28,39,-21,6,-12,3,-45,-15,-15,-1,-45,36,-68,54,0,51,107,59,78,-15,43,-8,-6,25,-7,-6,-7,38, /* [335][0][][] */ 30,16,-27,15,58,-58,-27,14,-7,-109,107,-21,26,-71,22,-9,0,-32,29,1,12,10,65,9,39,60,18,49,-52,73,-46,-90,46,-57,32,56,-17,-76,3,49,-30,-14,68,68,-27,78,7,-127,11,-56,44,12,-58,17,-51,-22, }; const TfArray<4, int> tensor_dimension12 = { 4, { 336,1,1,56 } }; const TfArray<336, float> quant12_scale = { 336, { 0.0012356882216408849, 0.00094410061137750745, 0.0012312168255448341, 0.0014583941083401442, 0.0011233685072511435, 0.0010054253507405519, 0.0010123826796188951, 0.00082054687663912773, 0.0010021340567618608, 0.00082228227984160185, 0.00083246018039062619, 0.00075590639607980847, 0.0012321089161559939, 0.0013645548606291413, 0.001062390860170126, 0.0013720078859478235, 0.0010229088366031647, 0.00087943609105423093, 0.00094970175996422768, 0.0009180324268527329, 0.0011187052587047219, 0.0011626483174040914, 0.0010739389108493924, 0.00077931000851094723, 0.00092264264822006226, 0.0010306130861863494, 0.001235452713444829, 0.0013256497913971543, 0.0012508832151070237, 0.00099807674996554852, 0.00096135068451985717, 0.001593396533280611, 0.00094275455921888351, 0.0011539246188476682, 0.00087361346231773496, 0.00096688664052635431, 0.00093522289535030723, 0.00098926492501050234, 0.00093324016779661179, 0.00085783831309527159, 0.0011227007489651442, 0.0014230371452867985, 0.00090472871670499444, 0.00089978583855554461, 0.00099766976200044155, 0.00084535375935956836, 0.0010959077626466751, 0.0011423459509387612, 0.00078825984383001924, 0.00087168940808624029, 0.0009264959953725338, 0.00085470173507928848, 0.001102572656236589, 0.0009194293525069952, 0.0010467026149854064, 0.0011314667062833905, 0.00078109418973326683, 0.00092408497584983706, 0.0010924255475401878, 0.0010074523743242025, 0.001787876826710999, 0.0010003803763538599, 0.0014438392827287316, 0.00098038918804377317, 0.00086957012536004186, 0.00079039001138880849, 0.00097560381982475519, 0.0010415602009743452, 0.0006444967002607882, 0.00088302488438785076, 0.00084633741062134504, 0.00094134360551834106, 0.0010604637209326029, 0.00061438285047188401, 0.0013606521533802152, 0.00092696445062756538, 0.0011132342042401433, 0.00086520647164434195, 0.00088204408530145884, 0.00088146486086770892, 0.00088963576126843691, 0.001079195411875844, 0.0013317230623215437, 0.00092317338567227125, 0.0011612840462476015, 0.00097713898867368698, 0.0009694707696326077, 0.00080458092270419002, 0.00088819500524550676, 0.0010151047026738524, 0.00081187731120735407, 0.00077329645864665508, 0.00097673025447875261, 0.0009993996936827898, 0.0010503780795261264, 0.00098604895174503326, 0.0010066336253657937, 0.00095907069044187665, 0.0011733799474313855, 0.00094874465139582753, 0.00098667503334581852, 0.0011935248039662838, 0.0011241125175729394, 0.0010033758589997888, 0.00088716455502435565, 0.0011131854262202978, 0.0006487314822152257, 0.00096882815705612302, 0.00093611027114093304, 0.00085401535034179688, 0.0012176330201327801, 0.00089343549916520715, 0.00094564398750662804, 0.00082143425242975354, 0.0010543970856815577, 0.0011010272428393364, 0.00071826641215011477, 0.0014667095383629203, 0.0009283169056288898, 0.0009795979131013155, 0.00091061671264469624, 0.00090531242312863469, 0.0011203191243112087, 0.00094760546926409006, 0.001059008645825088, 0.001522970967926085, 0.00080489547690376639, 0.0011280330363661051, 0.0011337186442688107, 0.00091752159642055631, 0.0010276155080646276, 0.00086114049190655351, 0.0011662007309496403, 0.0011529263574630022, 0.00099324632901698351, 0.00099210382904857397, 0.00099199847318232059, 0.00078443618258461356, 0.0014482936821877956, 0.00099278485868126154, 0.0013244645670056343, 0.00072575476951897144, 0.0011930486653000116, 0.00086130219278857112, 0.0010452880524098873, 0.001024530385620892, 0.00077130243880674243, 0.0007424604264087975, 0.0011045532301068306, 0.0011544688604772091, 0.00092945201322436333, 0.001096430467441678, 0.001250987290404737, 0.0007997409556992352, 0.0010257961694151163, 0.00079937028931453824, 0.002104997169226408, 0.00095168664120137691, 0.00075430021388456225, 0.00092971418052911758, 0.00081723736366257071, 0.0013693950604647398, 0.00088341429363936186, 0.0012942668981850147, 0.001026762300170958, 0.0012855662498623133, 0.0010472397552803159, 0.00072539964457973838, 0.00111331173684448, 0.0010174302151426673, 0.0010228034807369113, 0.0014797737821936607, 0.0010680337436497211, 0.00086250912863761187, 0.0011638621799647808, 0.0013056991156190634, 0.0011996508110314608, 0.0010225070873275399, 0.001066759810782969, 0.0011069152969866991, 0.0013863482745364308, 0.00087553902994841337, 0.0014831793960183859, 0.0009720761445350945, 0.0009553024428896606, 0.001110285404138267, 0.0010747133055701852, 0.0011578465346246958, 0.0007662519346922636, 0.0011751239653676748, 0.0010771100642159581, 0.001576233422383666, 0.00099505996331572533, 0.0009104518685489893, 0.0011868519941344857, 0.0013420777395367622, 0.0014373199082911015, 0.00079809484304860234, 0.0019378489814698696, 0.00091001781402155757, 0.0009391247876919806, 0.00097301386995241046, 0.0009540494647808373, 0.0011472904589027166, 0.00094631162937730551, 0.0015767945442348719, 0.001155155710875988, 0.00073808291926980019, 0.0010475902818143368, 0.00078074511839076877, 0.0010048337280750275, 0.00094545399770140648, 0.00099456100724637508, 0.001068166340701282, 0.00076133845141157508, 0.00092203018721193075, 0.0010252948850393295, 0.00093865609960630536, 0.0010322852758690715, 0.00097724748775362968, 0.0011697732843458652, 0.00091070192866027355, 0.0011181693989783525, 0.00098011898808181286, 0.0009442628943361342, 0.0011127126635983586, 0.0010040388442575932, 0.00083326030289754272, 0.0009795724181458354, 0.0009457480045966804, 0.00098123028874397278, 0.00087657599942758679, 0.001175406388938427, 0.00086627085693180561, 0.001360536552965641, 0.00079783872934058309, 0.00080540106864646077, 0.00092380598653107882, 0.0010451562702655792, 0.00086010934319347143, 0.001056765322573483, 0.00097433559130877256, 0.0012220761273056269, 0.00089102203492075205, 0.00083368545165285468, 0.00099841388873755932, 0.00092298595700412989, 0.00087374815484508872, 0.001077044871635735, 0.0013028645189478993, 0.00090448197443038225, 0.0010861818445846438, 0.0010252483189105988, 0.00095705251442268491, 0.001131430733948946, 0.001085075899027288, 0.00088491715723648667, 0.00081226316979154944, 0.001183153479360044, 0.00084326579235494137, 0.0011219616280868649, 0.001114465412683785, 0.00094959762645885348, 0.0011585305910557508, 0.00087580090621486306, 0.0011184413451701403, 0.00075143197318539023, 0.00088343454990535975, 0.0011701579205691814, 0.0012446448672562838, 0.0010728829074651003, 0.00096259533893316984, 0.0012128598755225539, 0.00096007302636280656, 0.00099054153542965651, 0.0011832494055852294, 0.0011317963944748044, 0.00094311276916414499, 0.00086629303405061364, 0.0013628927990794182, 0.0011630061781033874, 0.0010104285320267081, 0.00074940494960173965, 0.0010688751935958862, 0.00079071900108829141, 0.00099858862813562155, 0.0010101597290486097, 0.00064371642656624317, 0.0010661660926416516, 0.00086110364645719528, 0.001151084084995091, 0.0010936827166005969, 0.0011333915172144771, 0.0010485879611223936, 0.0010953655000776052, 0.0011230418458580971, 0.0010666885646060109, 0.0012184592196717858, 0.00099695671815425158, 0.0011700944742187858, 0.00074824766488745809, 0.0010980534134432673, 0.0010681716958060861, 0.00093456119066104293, 0.00098197069019079208, 0.00088450941257178783, 0.001216513104736805, 0.0009706597775220871, 0.00089868681970983744, 0.0010970451403409243, 0.0010743782622739673, 0.00088394799968227744, 0.00095695484196767211, 0.0010950184660032392, 0.0014289423124864697, 0.00085095525719225407, 0.0014678060542792082, 0.0011353912996128201, 0.00098730868194252253, 0.001388215459883213, 0.00095454923575744033, 0.00083133531734347343, 0.0012638644548133016, 0.00097359745996072888, 0.00096109829610213637, 0.0014300823677331209, 0.00081314257113263011, 0.00096359546296298504, 0.0010824641212821007, 0.00068964128149673343, 0.0012445737374946475, 0.001224733772687614, 0.0008145748870447278, 0.00097211066167801619, 0.0013569511938840151, 0.0012537110596895218, } }; const TfLiteAffineQuantization quant12 = { (TfLiteFloatArray*)&quant12_scale, (TfLiteIntArray*)&g0::quant9_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data13[56] = { -15260, -9166, -11119, 4549, -3405, 1118, 10350, -1304, 178, 10331, -1025, -28017, -6103, 14836, -4235, 14745, 27253, 8747, -2487, 18909, -2619, 12550, 6780, -5382, -16299, 37171, 557, 7306, 6322, 13868, -11808, -10680, 6674, 7011, -13601, 9146, -12733, -6207, 12158, 6499, 6351, -771, -11254, -9722, 7470, 23779, 2019, -17663, -731, 9368, -305, 14646, 13385, -3561, -11730, -17265, }; const TfArray<1, int> tensor_dimension13 = { 1, { 56 } }; const TfArray<56, float> quant13_scale = { 56, { 5.0748705689329654e-05, 4.7306384658440948e-05, 5.636364221572876e-05, 4.4242464355193079e-05, 5.3456591558642685e-05, 4.4979118683841079e-05, 4.1515439079375938e-05, 4.3230531446170062e-05, 5.7742570788832381e-05, 4.3454572733025998e-05, 4.5148921344662085e-05, 5.0748534704325721e-05, 3.8967544242041185e-05, 4.2283609218429774e-05, 5.7226599892601371e-05, 3.4756289096549153e-05, 4.4736902054864913e-05, 4.8213405534625053e-05, 4.8990565119311213e-05, 5.8150144468527287e-05, 4.1537216020515189e-05, 3.7936697481200099e-05, 3.6644581996370107e-05, 4.2038805986521766e-05, 5.3952015150571242e-05, 3.7897141737630591e-05, 3.8580961700063199e-05, 5.7961358834290877e-05, 5.7660639868117869e-05, 4.6191333240130916e-05, 4.8142366722458974e-05, 3.6325192922959104e-05, 3.9717346226098016e-05, 4.1181498090736568e-05, 5.5920350860105827e-05, 4.2559640860417858e-05, 4.8484704166185111e-05, 4.1823019273579121e-05, 3.6329674912849441e-05, 4.9122878408525139e-05, 4.095101758139208e-05, 4.1167713789036497e-05, 4.1487874113954604e-05, 3.8517660868819803e-05, 3.6552948586177081e-05, 4.3425188778201118e-05, 4.6502264012815431e-05, 3.3105261536547914e-05, 4.2615207348717377e-05, 4.1411694837734103e-05, 4.8185058403760195e-05, 4.842178532271646e-05, 4.2535586544545367e-05, 3.6498488043434918e-05, 4.1496692574582994e-05, 3.5749977541854605e-05, } }; const TfArray<56, int> quant13_zero = { 56, { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } }; const TfLiteAffineQuantization quant13 = { (TfLiteFloatArray*)&quant13_scale, (TfLiteIntArray*)&quant13_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data14[56*1*1*336] = { /* [0][0][][] */ -6,-23,43,-29,19,31,-18,9,-19,-12,-50,92,-21,43,-58,-54,55,-6,-7,-46,-70,-23,12,3,22,-20,-12,28,-28,-97,-34,-73,21,-4,43,-90,42,4,5,24,20,-31,42,31,-27,-94,49,5,-3,-29,-26,-20,-33,-15,-5,-42,26,-35,-1,-37,64,7,71,28,41,-21,14,9,8,94,91,27,69,-15,-24,-10,-4,5,-31,-22,-4,-53,76,-5,24,73,76,-1,36,37,13,-40,-16,7,69,55,-2,40,50,-72,21,22,-85,62,18,-10,-12,67,-70,73,23,-3,-52,60,6,14,13,-26,17,-24,-32,23,-32,12,-60,50,-21,46,27,116,-71,20,-4,4,12,49,-17,87,-55,54,17,59,24,64,80,19,-40,101,-29,39,10,-34,-80,18,39,-37,11,15,13,62,29,22,-57,-35,63,67,-22,-53,17,35,-53,41,-8,-16,-107,52,27,-48,-19,60,4,-42,6,-6,-34,23,54,2,-68,-26,-11,-42,-120,65,29,18,23,52,67,24,-39,21,-14,-19,-45,20,-79,-25,-48,-53,43,0,-127,-39,-30,24,-24,-39,13,-54,58,-5,39,51,44,-77,33,-43,48,7,120,42,-40,22,51,-7,11,-11,-64,23,24,-4,-99,-9,-7,-15,8,-15,44,27,21,7,93,-39,-103,3,47,112,-23,39,47,11,12,17,56,-16,24,25,25,-63,16,43,18,7,-30,-2,-2,-53,-48,49,23,8,38,-19,4,-11,52,26,20,-15,27,13,-11,-46,-51,-9,-12,-77,27,87,-12,41,37,-41,-26,45,-34,-53,44,52,-27,-31,-14,16,-8,-50,25,-34,37,26,-10,-25,-79,35,45,-20,-29,-32,8,-40,-53,-32,62,-33,-18,23, /* [1][0][][] */ 38,-29,127,17,-2,-50,48,58,-70,15,8,-22,-61,-57,42,33,21,12,-57,63,62,82,-12,-34,-6,26,-78,27,35,6,44,61,23,13,-49,5,-49,17,39,-19,-11,44,10,-59,-34,-95,42,73,62,-12,38,29,19,1,5,-13,53,-21,0,-52,34,5,-28,-6,12,41,16,-19,8,-29,27,41,18,20,41,2,-22,2,75,-33,-12,-38,-11,-15,-18,-41,7,-58,75,83,-46,48,-18,1,-37,-10,48,51,57,70,-47,48,-22,-61,-44,23,-18,-24,21,-59,-41,-42,-31,75,13,23,72,6,-42,26,36,-34,-57,68,7,-6,67,8,-11,-4,-39,34,15,33,42,-47,-5,56,-83,26,12,-68,-58,-44,116,39,-64,12,59,-29,-21,57,-71,-29,-35,20,-39,-80,44,-45,-55,49,-10,23,0,42,-50,-72,-89,9,-40,74,-62,18,-19,-4,-16,12,10,-36,-6,-29,-44,-35,69,-31,8,43,-53,25,-39,-34,14,74,78,-23,10,-21,35,-15,13,-18,-55,4,68,77,36,-18,17,3,-56,63,0,75,8,64,20,29,31,-69,82,-7,-59,-10,-98,63,-28,-36,-17,-70,31,82,-94,89,2,6,58,6,56,35,-7,-45,17,-15,-34,82,-20,-50,-31,-92,-34,32,15,26,34,48,35,-41,9,5,-5,47,18,-15,-14,-6,-19,1,-63,49,-58,57,86,-24,1,72,24,-32,63,11,2,-57,90,-4,-22,23,-47,42,-40,3,-51,-48,59,7,60,-59,11,-84,-25,-30,-53,-49,12,29,88,38,-24,14,-23,-116,-10,-31,-61,-29,-59,6,21,-9,5,15,29,37,22,-20,12,-35,-28,11,111,-52,23,-20,64,-9,14,-26, /* [2][0][][] */ 26,25,-27,-34,6,55,23,69,-31,-36,-67,-1,-38,27,-11,4,28,-18,33,14,-79,-45,-31,18,31,-8,69,29,38,34,6,-33,61,0,-66,61,55,10,41,20,-43,-23,27,-47,32,-6,-42,-9,-20,-8,31,-2,-55,-31,14,21,0,14,84,32,-41,0,-1,34,11,16,16,-49,83,46,15,63,49,-17,12,-73,-25,-10,50,-20,33,43,41,-18,21,37,8,41,49,16,90,-24,-28,-71,20,57,-15,-20,-10,-44,-6,-24,-13,-44,43,18,26,11,52,28,16,0,-20,-17,-23,-52,1,6,17,-16,21,-70,-19,-11,10,12,127,-27,61,-16,-56,46,5,-46,35,59,-40,-3,-64,-17,-32,48,28,48,91,-7,-92,-11,-26,38,14,12,-30,20,18,2,-83,14,-11,-29,64,-34,27,-46,24,-39,36,36,0,37,39,53,-20,24,27,11,24,-8,21,-38,-86,-7,45,-32,16,-22,-64,33,-21,-10,-33,-5,2,24,25,5,9,-108,-13,-11,71,-3,-30,-18,-52,-20,-22,21,52,80,-70,-28,9,-57,49,5,-27,22,-48,27,11,26,60,32,8,-9,40,-49,39,-8,4,-12,-9,-9,81,-37,26,-32,89,-13,16,-3,-22,-59,-97,10,-23,-29,39,37,18,-45,-44,-2,-16,12,86,16,-47,-4,-3,41,-57,22,-5,-43,-32,-23,52,31,-1,20,-33,-48,-12,79,7,43,59,-76,-53,-27,26,-1,-1,-44,34,-7,-49,20,64,-33,31,0,8,34,-37,-5,-3,39,-18,-54,-10,71,-41,-7,52,19,-22,53,86,-17,35,60,36,-48,-61,-42,-16,-7,36,1,35,9,-3,6,-30,-17,-26,-3,57,-26,-30,-32,-5,0, /* [3][0][][] */ 97,5,15,-53,11,6,64,-32,25,48,53,61,-9,-11,49,-23,61,56,74,-65,-16,-67,-52,36,-32,46,27,45,60,18,-2,-6,57,12,-38,-19,-21,-97,-19,26,15,17,-15,-75,-16,-5,-64,57,-57,19,35,-63,39,10,-8,-10,-42,64,3,1,-38,98,-65,55,14,-64,20,-8,-47,-12,-6,-25,6,-25,15,-20,38,-45,5,48,65,-30,-79,-26,-35,-33,-16,-41,28,-24,40,-18,-39,62,63,7,-55,31,-56,-12,43,-17,26,-33,-37,1,-29,17,-12,-38,-98,20,-28,-50,37,24,-3,39,54,-40,-5,81,24,-108,-7,-37,-14,55,22,-37,11,-1,14,0,12,-30,52,-30,11,66,-34,23,51,-7,31,-16,-11,62,-85,-45,-29,-63,-55,4,-58,-10,-1,-19,40,-3,34,26,10,-79,45,-17,16,-38,46,-17,-10,85,-27,23,-19,32,-2,-11,35,-85,-6,1,-79,29,11,-63,107,-2,-13,18,-84,18,-33,-3,2,56,15,28,-68,8,-5,-50,-3,-28,-69,24,-43,18,-67,-23,-100,39,9,-28,-51,18,-24,26,112,28,114,40,-61,-19,-1,22,21,-3,10,5,89,2,5,39,-27,5,74,36,-3,29,-58,39,-71,-127,-40,17,17,29,13,90,-16,-25,20,-10,-46,-53,9,39,33,-83,19,55,36,24,-63,42,13,-35,80,-50,30,-37,-37,-3,-43,30,-34,-28,-29,51,34,45,43,7,-20,58,-21,37,-41,-24,-12,-13,30,-28,39,64,-42,-13,-78,-53,-29,47,39,-27,5,16,38,33,-44,-5,69,36,-11,-57,-94,33,-66,25,16,-45,-58,26,-12,62,37,-1,-73,69,-61,-12,1,30,-62,-3,-4,-18, /* [4][0][][] */ 4,-7,-12,-26,13,28,13,-73,-47,16,-10,11,-15,-24,9,33,-5,45,15,-15,45,20,-87,24,-24,-17,-34,-21,35,-28,62,45,32,11,-60,16,-11,-1,31,-32,5,28,-54,-59,8,-17,20,43,22,-13,0,17,-63,-44,-64,48,53,18,-35,-3,24,60,77,68,49,18,-26,30,-51,44,26,-24,38,-34,34,-16,59,34,-5,-24,36,-7,-46,30,8,-15,-29,-19,48,-13,20,27,26,-17,-83,-64,-16,1,-61,-2,27,45,-36,21,-7,-39,-7,-29,25,15,29,20,31,14,-53,13,-22,-41,-40,-17,-1,51,7,45,2,24,-70,28,-53,-18,28,-32,-25,8,20,-11,-45,32,-50,96,39,24,10,-24,-30,-9,-41,-41,-35,8,-27,2,-6,51,-5,-85,26,-40,-5,19,49,-9,-51,30,20,60,-50,1,57,-13,-65,-29,-19,66,10,127,65,55,21,-5,47,11,-33,-20,0,-38,-20,39,-77,-57,-70,31,-1,-4,5,36,-34,4,-18,-78,19,7,37,-13,12,-12,15,-4,47,-39,33,-72,-46,-8,-21,-8,-38,11,-57,4,-58,17,11,96,15,30,60,-3,55,27,23,31,-6,-3,-36,-82,-12,31,28,35,-35,-8,-47,-33,13,-68,27,-15,64,21,28,-12,16,-12,53,59,-15,5,32,3,-10,33,-22,73,15,-8,6,2,48,-10,12,-8,-79,-14,-13,-32,17,54,40,15,29,-17,2,15,-6,55,-61,-16,-10,-2,25,46,-4,-7,-46,36,2,41,24,33,-12,-41,8,21,53,9,26,18,14,-20,18,-57,59,21,-5,-63,23,-21,-23,41,-34,18,-2,15,-39,-5,44,22,-13,19,-21,6,-25,19,47,-62, /* [5][0][][] */ -3,11,106,-88,63,49,25,-3,-88,4,48,-27,-27,-10,-41,-52,-21,-44,-7,3,-59,-37,1,21,7,-62,-12,-50,-41,-35,62,76,75,64,6,38,10,-38,-55,24,54,39,-78,25,-50,-98,5,127,5,11,12,10,28,-2,40,-30,-17,7,-21,26,46,-7,-42,-26,-37,6,3,0,32,0,-35,-36,48,-5,-40,18,35,67,56,-73,15,51,7,-49,23,-20,-7,18,-44,-60,-39,-31,-17,37,73,-15,18,-28,-33,-23,32,20,-43,35,17,9,24,-52,56,-10,-10,52,-50,27,27,68,25,64,-5,-14,-34,-21,57,-15,-16,12,9,36,1,111,-47,-31,28,18,47,33,-10,-56,-44,-21,31,8,-7,12,66,10,-6,-24,-7,-33,-21,-32,-34,-49,-40,-21,20,-95,68,-67,39,72,1,-1,32,-18,12,-22,17,21,-2,51,11,35,-21,-51,6,-1,-29,-46,17,-72,-14,-54,79,-11,69,29,-16,-29,3,54,-29,57,55,-6,6,6,1,-46,-67,-52,0,49,32,78,44,6,49,-24,-26,29,-36,-12,15,-14,60,-41,-69,-90,-18,18,47,8,-25,30,-47,5,16,6,-61,-30,10,-19,-75,33,56,2,-7,54,-27,10,-21,-57,26,81,-31,-11,-5,19,11,-65,15,-10,47,48,-32,59,13,33,34,-87,8,43,5,-18,0,-17,21,-42,-44,-70,77,38,52,-28,34,38,19,7,-6,38,35,82,14,24,-24,45,-28,-45,-113,-68,-35,10,-95,-61,-33,42,29,39,-1,25,-13,-51,4,-40,-81,-48,-42,-26,-36,24,2,7,-69,26,21,-14,11,48,22,-43,-10,42,49,-50,-37,-16,60,17,34,75,9,53,-31,-22, /* [6][0][][] */ 121,14,-102,-2,43,-30,-81,-30,75,-50,42,48,-55,15,3,-4,-47,108,-64,-35,-46,29,-39,-33,54,11,62,-42,115,-16,-11,-1,44,33,-92,-43,-63,50,-63,-55,20,46,-27,47,-45,-60,34,6,-32,71,-53,-58,-100,-41,84,63,-45,25,118,-100,-17,5,77,10,66,-9,5,48,47,18,6,-24,-14,5,24,61,-64,-41,61,35,15,-13,94,-9,-64,7,16,37,-54,36,-22,-6,25,-40,11,38,6,-61,-24,-123,31,-58,-64,8,12,15,65,86,30,-9,59,-55,-41,-55,-101,-10,3,-23,-23,-25,-5,-33,-34,-45,-6,24,-42,-39,-12,-32,-20,-16,-45,47,-12,-28,-75,48,-17,-45,-10,-90,67,-47,37,28,66,49,-32,5,-47,-107,-30,-38,-70,74,71,-64,45,-16,32,1,23,85,65,-22,-9,46,16,3,28,12,15,-71,-88,56,-23,-28,-14,-13,-59,81,43,19,-59,50,83,25,-44,72,-92,-7,6,48,-2,-16,-53,73,25,-36,-53,-18,16,44,16,41,-39,42,-36,44,-52,102,-83,19,44,38,50,32,35,53,8,-127,-20,23,40,14,18,16,36,-48,-12,56,-6,51,22,78,-8,9,37,-22,-85,119,23,62,-42,-4,-21,-55,-70,30,-39,-5,-11,-95,-43,27,-87,-58,-10,25,20,6,57,-71,68,-31,-82,31,-3,18,-54,15,-32,35,-22,-49,-43,60,-40,-18,-27,16,37,-19,-37,52,2,27,69,-71,0,38,38,-38,-122,57,-33,56,-50,58,6,-32,-56,-72,36,80,-8,-3,-99,-3,-6,42,-29,15,32,-13,-18,19,-38,9,0,30,-43,-28,66,-14,-15,-3,84,-60,19,5,-89,8,-25,50, /* [7][0][][] */ 9,-21,-76,5,76,16,-47,17,-25,12,-16,-20,52,8,51,17,83,-55,62,55,-28,-57,-48,31,-94,-66,-5,-15,19,-61,80,-107,5,-44,28,-12,-8,50,-46,-5,57,45,22,49,-40,29,-14,-11,-22,77,45,-111,-35,1,-49,33,33,-5,-29,-33,6,-58,-52,-49,19,-74,-14,-35,-21,-35,-12,36,51,46,-10,10,83,73,-49,27,46,47,-49,57,25,-5,-10,-26,-29,21,-81,-8,21,-10,63,31,-26,69,-23,10,-28,-46,-101,37,8,-44,4,-35,20,5,37,28,-9,8,-33,77,-8,-11,-50,6,-28,27,-36,45,-24,-24,4,-37,-30,46,-36,-43,23,3,31,50,30,28,-45,76,-62,-60,6,20,12,-6,-46,33,-18,-27,-49,-68,19,-30,-90,66,34,-42,31,-39,-36,-20,2,-41,-48,50,-16,-9,8,16,-53,-3,-7,38,-41,-14,27,40,25,19,33,-46,48,25,-39,1,84,-1,21,67,-30,41,-56,-5,58,57,39,13,79,16,18,-54,45,17,0,7,14,61,57,62,44,43,-37,28,-62,33,-40,66,-12,35,-12,25,-8,-57,-30,52,-93,-75,-8,11,71,28,27,-68,-15,36,-53,8,127,17,-43,-48,-36,24,6,-72,-21,12,-97,8,10,67,42,-21,-5,-10,34,-5,-3,53,-43,14,23,-28,19,55,55,-9,38,-78,30,-65,43,-4,-48,13,-34,59,20,-33,15,68,-38,-67,-37,39,-36,54,-52,84,27,85,71,40,41,119,-19,-7,44,-78,38,26,41,-16,-13,111,-55,30,-37,-35,-72,-46,31,10,2,44,-45,-40,-39,-36,-32,8,4,18,26,20,-42,48,-75,-25,-27,-97,-14,-69,30,22, /* [8][0][][] */ 7,15,33,-45,-29,-2,84,-36,3,-4,20,-60,-34,63,-41,0,-24,-2,-18,43,95,-22,36,-43,41,-44,11,23,23,22,-52,81,7,-33,-57,-20,-32,15,9,-99,28,-18,40,-44,73,25,-45,12,-44,29,46,18,-15,47,59,36,-15,-65,35,59,-6,-7,-11,25,-13,9,-18,-12,-33,48,-28,4,22,-24,7,-27,-61,38,21,-47,61,-64,-23,43,-26,5,-34,13,-26,37,-38,-47,-31,29,18,-8,-56,-55,-24,22,-10,13,47,-8,15,55,-17,-2,59,-5,-1,16,-49,-11,-39,22,4,-49,-78,29,29,-10,11,44,43,-20,45,-28,2,25,52,15,66,59,12,66,-7,-75,-59,-9,-49,-7,24,12,50,-12,-57,-63,44,-19,-50,21,29,-8,37,39,47,23,-4,13,7,1,-58,15,24,49,-70,57,-46,-36,41,39,-15,58,105,7,-4,10,48,-52,-1,35,-57,-8,0,-20,-127,58,-84,-8,-10,56,-11,28,-43,-27,19,-1,-24,41,-35,10,-39,10,9,-5,18,-27,-14,9,-33,-31,-14,1,16,51,35,-51,73,-34,40,8,-2,29,-21,-18,0,-1,21,-47,48,-22,-36,-68,-37,11,-19,4,-87,-11,-35,-12,-50,-8,-16,55,-4,-40,31,-8,9,-29,32,4,-39,-11,21,-26,-32,8,-63,26,-11,38,-28,110,-13,-52,-57,56,-2,-26,-66,30,-2,33,-33,-1,-67,19,33,18,26,44,-21,-76,3,49,-54,-45,-43,24,-39,-9,5,-23,14,2,46,26,41,-33,41,-3,10,54,27,-27,7,-75,5,-23,16,-33,39,47,-17,-16,-32,-12,37,-61,20,-67,13,5,37,-64,54,20,18,-20,-43,47,75,-19, /* [9][0][][] */ 35,53,-25,-34,90,-1,20,13,-67,-84,-1,24,20,91,65,-50,-21,56,-4,-114,12,41,-60,8,-7,8,5,-40,-18,-45,-22,9,11,32,49,-40,-71,-81,-43,-40,42,38,-25,27,97,-26,9,56,-26,-83,14,86,37,-1,46,30,36,-1,-36,18,25,-62,-28,-25,-43,21,54,13,-3,-38,83,18,-33,36,-34,-66,-37,-13,55,14,34,-20,67,-12,-10,-2,-46,-27,9,-25,-33,21,19,-58,0,25,-56,-73,-19,88,49,-5,-40,-54,-30,60,-30,40,18,-46,-5,-32,-7,-16,-40,9,2,-8,-46,38,0,-9,14,-59,29,-70,-127,-42,43,21,34,-2,-44,94,-40,-4,22,-19,69,102,-54,38,16,-16,31,-24,-24,-29,-1,26,-37,17,-11,-40,-24,29,-16,-18,23,-51,12,-15,47,29,-64,-34,-20,-20,14,10,-34,-36,34,51,-37,-47,-9,18,-121,76,64,-18,-39,-27,35,51,-102,-14,7,-23,52,22,-11,96,1,-17,-1,-10,8,0,55,40,-70,11,-7,48,-37,-44,-7,8,-8,74,-54,-7,-51,80,29,-5,-57,10,16,-19,-81,-47,-22,-2,-5,15,73,-69,12,32,-31,52,64,7,-32,-16,-32,86,-81,-56,-68,-20,-28,21,-50,3,17,-5,-23,-99,65,22,81,-18,-12,-20,16,-32,-27,-4,-24,-20,-83,-18,52,38,-105,48,73,22,75,-70,42,-43,-6,20,-58,57,22,-24,37,-89,-5,18,-48,-13,-1,-22,-59,35,-86,-44,42,-52,28,3,36,3,-50,11,6,-1,23,-26,-51,-1,-39,12,-12,13,-16,29,14,19,23,73,8,1,-76,75,119,1,16,18,87,18,9,19,-35,-18,48,41,-82,14, /* [10][0][][] */ -1,28,-3,-33,11,17,-52,17,-25,-9,95,20,-3,53,4,0,27,7,-34,4,-45,42,-31,22,-18,-35,-3,31,20,-42,-29,-23,24,-61,-7,15,0,-82,-41,27,-17,66,-5,-29,47,16,-31,16,-78,-4,-77,-52,93,-12,3,75,-21,29,22,-46,-41,-68,-28,3,-27,-12,17,-87,15,-69,25,37,-5,34,-39,53,-73,36,0,26,24,57,-71,-18,-79,11,13,10,-27,15,-4,-8,25,0,-3,-7,34,49,-1,-39,47,-4,-59,29,39,38,-12,-65,19,19,-31,-3,48,24,68,-39,42,-20,-77,-70,44,45,-13,26,-12,51,-29,39,72,31,-36,5,-65,57,-43,-31,-32,-8,52,27,-52,-65,-6,9,9,6,68,-111,-47,58,-55,15,-30,3,-73,12,-22,-10,-6,16,-34,-12,23,9,27,3,-23,-16,-17,39,-10,-21,-19,17,-92,-7,17,-16,-21,-6,-30,18,12,13,-28,-3,-6,12,-70,-26,41,-29,17,-4,-1,-3,-8,-30,69,-16,-46,53,-5,43,-35,29,-28,44,-5,-77,-3,6,-31,-28,-40,-19,32,13,29,80,12,43,-4,28,-26,-38,39,-53,21,6,9,-18,-21,25,54,50,-6,15,-4,8,8,-19,-23,-94,61,56,43,35,-33,39,7,-3,11,64,-10,28,-7,-34,-13,18,45,-47,6,-26,-27,-1,25,31,18,9,127,29,34,53,-31,-18,88,48,-40,14,2,34,17,-46,53,-22,13,-44,45,36,44,0,16,25,-45,8,46,-39,-67,-65,-31,2,-36,22,-11,24,67,65,-5,35,-39,-23,28,20,16,-30,20,-61,6,12,70,-22,30,-37,15,75,-45,-26,14,-32,-76,52,-4,23,22,-35, /* [11][0][][] */ -27,2,31,-38,-8,27,-6,-20,75,48,91,79,22,-2,-2,-3,49,-3,-39,17,-4,111,4,11,-18,-42,40,100,7,-100,110,-53,-32,-24,5,27,62,-20,36,15,44,69,-3,-6,0,3,-34,-7,-33,73,-38,-48,19,-17,-24,-27,-6,-70,26,-67,22,8,-42,19,-16,-9,-8,-8,-53,2,69,-16,23,-36,-66,-26,4,11,21,17,4,-4,-77,5,15,23,56,9,-91,-22,-14,-38,30,-33,-14,38,3,-17,30,51,44,-68,-6,-18,-26,9,16,-12,39,-2,-67,84,-16,127,-41,-63,42,16,2,-18,49,-48,-8,12,-28,101,52,47,-79,92,7,-43,57,28,-4,-27,73,63,-41,4,-18,-18,33,1,54,-55,-11,8,18,40,90,0,49,68,-8,34,-67,25,-18,50,11,-1,-110,-43,-115,10,110,12,17,-52,20,0,-4,32,-2,66,6,14,39,52,21,95,5,2,15,30,6,-48,-88,-3,-41,64,-15,-2,45,-37,7,25,75,-43,-83,-46,49,24,-1,-45,7,34,-29,-13,0,-8,-41,80,-14,-29,52,-51,-16,-27,1,-114,34,-43,16,45,1,20,17,-16,38,2,-38,45,31,101,-4,-15,38,40,-12,0,14,77,-33,29,-18,81,17,20,51,-22,21,31,11,-18,-63,-21,4,20,41,60,88,-30,-41,54,-59,-1,84,46,4,-23,-27,41,41,-16,-53,-14,17,-22,62,41,126,84,4,7,11,-10,-85,-47,-65,-8,-39,-64,0,42,16,-71,11,12,-14,67,-52,22,79,41,-25,-9,19,3,-7,9,73,-32,-17,26,-28,-41,6,-40,39,116,17,-80,-7,-39,3,27,39,0,-57,3,6,67,-13,111, /* [12][0][][] */ -66,-43,-29,-10,-75,-60,22,-16,-36,76,40,39,-35,82,59,-28,-42,-49,27,-20,96,32,68,-16,-27,4,34,-42,-89,-10,-124,49,-15,18,-33,-10,46,-67,32,-3,23,-4,32,10,11,-69,-62,38,5,-14,17,-33,-26,-21,62,-97,31,-20,59,-47,-52,31,21,-40,-12,-17,-32,13,-90,28,60,-95,-19,1,-25,80,15,8,52,-63,36,-47,26,6,19,98,-9,-44,11,-50,-20,10,-40,54,67,17,-9,-22,-33,53,-20,-84,11,116,31,48,-59,35,15,-2,41,-100,-10,19,-80,-18,-23,61,-38,114,56,47,-87,65,-1,75,-20,119,-34,34,-70,-72,15,44,27,-93,15,-39,-8,-45,-66,-12,62,-68,30,18,26,-13,-2,74,7,-37,127,7,-2,-19,17,-72,28,-52,-29,35,33,5,-9,24,58,87,29,75,-66,43,-46,9,89,52,15,-19,-43,-27,2,39,-71,-32,-34,-4,-87,72,33,0,84,14,15,6,15,-15,-26,126,43,78,-34,-99,63,-4,27,4,-85,70,18,-10,-35,13,31,-14,5,85,-14,91,57,-32,-39,-53,-57,33,123,-68,35,-37,-35,68,2,12,-4,-66,-46,-94,1,36,-73,26,23,5,32,56,58,-1,59,-39,-16,29,37,5,30,-4,-42,-28,32,-15,-59,-38,-89,-53,-32,-44,15,60,-18,50,-59,2,50,66,-20,19,40,34,49,-45,-63,59,-22,54,56,-6,26,46,24,5,-3,9,-94,10,-104,-33,7,-13,85,83,77,-13,70,79,-21,41,-45,-27,-94,-41,-32,-29,86,26,-46,58,6,-23,-87,28,-33,73,-32,-43,-49,-33,14,-86,25,92,21,42,8,41,-22,-13,-19,8, /* [13][0][][] */ 63,-59,-60,29,28,-5,34,-33,-47,33,26,-19,-26,-11,-29,-11,-65,26,51,-26,-44,-23,14,63,26,-62,3,87,38,59,-37,-93,22,-30,104,-30,-8,-21,19,-31,-12,2,20,17,20,-20,-64,-12,0,-1,-42,-11,-1,-42,-24,-5,-18,-45,-19,23,48,26,35,8,-24,-57,-48,-6,-13,20,19,40,26,4,-42,-40,52,50,-2,-13,-58,-37,26,25,-72,53,48,8,0,73,-28,-43,-1,-44,47,-32,-24,24,-40,-46,36,-67,-127,-9,-59,30,51,21,-35,29,-4,-20,40,-15,-8,-4,-18,86,-6,-9,-65,-89,6,59,52,-67,-42,-1,37,-73,31,-11,45,12,-56,-64,33,-12,38,-49,3,25,-32,-5,17,-25,20,61,-35,-1,55,4,-40,13,91,2,-51,-26,9,51,-26,-20,118,13,-62,-9,-15,34,-63,-67,9,33,14,-14,-59,41,43,-80,-25,17,41,83,38,-30,40,100,71,-51,-68,-12,66,26,-32,16,-56,-5,-72,3,34,-9,-25,-19,-26,58,30,-16,-118,-30,-106,-45,14,49,-71,-13,-24,-20,9,-45,40,17,22,-18,-66,5,18,29,28,-20,-2,58,66,0,16,12,-46,42,2,-29,-5,-87,78,-37,-17,59,-35,22,74,31,19,51,-77,-3,-22,-8,13,19,-5,-1,39,-28,26,17,23,-106,-10,53,-38,25,-3,29,-41,-37,30,52,29,-25,-4,38,-25,-5,-33,-50,25,-18,15,-1,-64,33,13,44,18,-86,26,-62,-28,41,-74,28,-29,-17,-35,101,-59,-16,-82,76,-7,45,-24,11,-20,28,23,9,-6,-12,-25,-15,32,-5,6,25,-31,-31,-31,-41,-18,-13,-35,-2,-4,55,8,-69,21,-13, /* [14][0][][] */ -38,-16,-31,13,-26,-12,20,7,10,34,53,6,-27,13,-29,-26,-31,1,34,-46,4,-49,8,-20,33,-38,22,-56,5,51,-59,-15,-24,-1,-15,26,-2,-42,19,-5,-11,28,8,-55,23,57,6,18,47,-34,51,-2,47,13,-10,7,-8,36,-19,-14,29,-3,-18,29,-21,25,28,-3,80,30,18,22,2,-7,4,14,-37,43,-61,64,37,-8,11,-15,-39,-12,42,38,-14,-17,10,44,-57,-61,-25,-67,9,-1,36,3,0,44,19,22,-28,10,-27,6,-76,-67,6,54,123,4,-8,17,1,-68,-14,-21,-20,-57,-28,10,57,17,8,18,-1,-52,3,-39,-40,62,-43,32,-27,62,47,25,-22,5,-24,-65,2,17,-71,-29,4,66,11,-10,47,3,-35,62,38,11,-16,4,-24,48,63,31,34,38,35,50,-8,35,91,7,-24,-56,-4,18,64,-23,55,-36,52,-70,10,44,43,-16,57,19,-44,19,-14,38,12,-6,-23,-83,-8,4,-35,38,-24,28,-55,27,-48,21,-24,-15,-2,8,29,27,-24,22,26,4,-127,-78,-1,-46,-4,-12,11,24,16,28,-29,14,-6,34,21,40,-2,10,16,16,-18,-28,9,-22,-34,20,-3,20,5,44,56,-28,-14,-13,12,-22,18,3,25,14,5,0,5,30,8,11,-15,-45,44,-28,58,-78,-18,-49,22,-54,65,-41,-37,-21,31,24,-28,9,23,9,13,5,-62,19,34,58,83,5,32,-64,31,2,26,-32,-31,-11,1,38,-29,42,-15,-82,-15,5,-15,12,34,-60,36,25,-25,-25,-32,-37,7,30,-11,43,17,-59,-18,-14,-19,6,19,-7,28,-51,-20,-25,8,24,9,7, /* [15][0][][] */ 12,-32,-88,25,-52,81,-36,21,-35,39,-54,84,34,-8,-15,-11,8,-83,-25,-23,-30,-20,-85,25,-69,-41,-50,-17,-21,45,-6,-84,-83,40,-28,36,-21,60,17,-66,-63,-15,-57,29,78,-47,2,-48,69,51,13,-50,-41,-66,42,-43,-24,-78,-11,58,-1,-19,-15,25,62,-46,22,-18,68,20,-49,72,-47,-50,18,11,-2,73,17,-12,-34,-13,-76,-14,69,-24,-35,-52,59,3,57,7,-70,64,64,-23,-10,39,-4,51,19,-31,6,48,4,48,26,-95,-9,29,-41,-78,-41,-91,-44,-67,-27,42,-76,59,-3,-4,43,13,112,26,-9,15,34,-45,104,95,16,-64,26,-16,-68,66,-21,-9,-61,-5,-2,-12,2,23,20,-56,-40,19,41,-9,-6,79,-7,-55,29,82,101,68,-68,47,46,-98,26,15,-13,87,-59,62,-14,-54,18,-34,-65,52,-80,-31,-17,57,-69,-17,3,44,-7,14,-54,-5,4,-17,-58,2,-64,50,17,-26,-42,109,1,-91,52,33,-64,47,-23,15,47,-71,-52,72,4,18,22,44,-31,-14,67,34,31,-63,18,52,54,1,-29,0,8,-16,111,32,40,76,-21,-11,32,23,-78,15,37,-37,42,87,12,-43,-78,31,39,41,65,-44,-92,-41,-25,29,-85,32,-23,20,-104,-46,50,-30,-16,8,-56,-10,-67,-4,-71,-98,-77,2,-53,-60,56,-39,44,-2,-56,-127,-45,5,33,-29,41,-23,13,26,24,-13,18,45,42,-14,-21,49,6,32,-22,-2,-53,-24,88,42,-41,-66,-32,-34,-16,8,27,-36,72,44,27,-33,-45,9,-52,-97,79,-81,66,112,-24,20,-93,-29,-17,41,-20,20,24,-9,-37,-20, /* [16][0][][] */ 11,3,54,79,-51,2,25,12,40,38,-29,-13,-43,44,-28,25,-10,-29,-46,71,21,-24,-33,43,-43,48,-40,-22,-15,-65,3,15,-97,23,3,32,-64,-15,45,-54,6,-67,-51,18,-93,8,-35,-2,18,20,52,3,-12,7,-3,8,-24,-35,63,96,-47,68,29,-51,-89,-35,30,-64,-17,-31,-22,55,11,10,-18,60,28,26,-25,-10,-27,95,35,-16,-61,72,41,59,25,14,2,-11,5,13,29,16,8,-39,-78,54,67,-62,-46,39,-42,-62,59,-40,-31,18,-19,-58,-25,-38,17,43,-8,37,24,13,1,47,-6,66,7,61,11,18,7,-37,-57,-45,-26,4,-67,-127,-28,-46,-28,-8,47,-6,10,26,-2,-29,-22,-24,43,-18,56,-7,6,-31,-10,-63,21,-47,15,-51,-1,-40,-95,12,-12,-42,-11,-7,3,11,-50,81,-92,-11,5,-51,46,60,-26,17,12,63,-72,-41,85,21,68,-4,-29,-9,0,23,-29,-50,-17,18,54,-94,80,30,-37,-54,51,-29,25,54,-41,50,-109,38,-32,8,30,28,27,23,-14,-47,-42,-24,28,33,-40,-53,6,-10,-12,25,17,-60,-47,-42,67,-8,8,15,-29,36,-11,-18,-88,-22,29,-46,-6,-25,17,49,-16,-92,-115,-50,60,17,-30,-50,-21,-25,19,-58,79,-47,65,27,42,-25,25,33,-12,-89,-31,41,-79,-63,-9,14,-86,28,-47,-29,-31,57,-40,34,85,67,58,-37,6,29,85,-3,22,47,-12,0,18,-35,-51,-46,-70,0,-22,-10,-17,25,65,56,-28,41,-10,-57,-19,-57,-20,-3,-50,46,-41,79,-24,22,115,-46,-78,-62,-15,-82,20,76,44,16,-46,-45,-21,14, /* [17][0][][] */ 8,-59,-53,34,-21,-26,-12,16,39,28,10,-4,21,-8,-12,-24,15,17,-10,26,-36,12,-6,62,13,-64,2,12,-31,-30,-68,-65,-3,-1,-19,-10,30,18,-11,-23,24,25,-15,20,5,-20,-33,27,29,-2,-51,-68,16,39,-14,0,-21,-33,31,-56,26,-53,9,-5,1,52,-12,-10,-76,42,-2,19,4,27,-13,27,42,24,11,4,-11,38,-68,-51,-10,32,-5,9,12,-56,-25,43,-23,-4,36,3,45,-55,6,0,46,-34,31,-14,-19,21,-25,-22,-18,-36,15,-6,37,43,30,10,3,26,-5,10,-41,25,38,60,17,-28,45,45,21,8,42,5,-43,-32,-29,33,10,46,29,-12,-2,42,-12,-52,14,31,6,1,50,-25,44,-11,27,18,-14,49,-27,-15,55,19,-13,-53,-33,36,27,-33,-1,-126,50,5,-15,-29,-10,-1,31,-80,21,8,19,12,16,-50,13,-12,10,-32,-127,35,-43,42,2,-46,-29,-46,-52,43,13,32,-29,28,22,6,14,30,9,8,2,-6,-17,-26,19,9,-7,1,32,-5,-6,-2,-31,-8,-22,32,-2,11,12,4,-4,43,-4,-64,39,-23,34,-17,61,25,34,-63,-81,12,12,-27,-13,-49,-10,-15,56,34,32,-39,-40,-16,-45,0,-36,13,8,-74,-10,19,-26,68,-4,-40,5,23,19,49,7,6,-47,67,9,-11,-34,13,-28,2,48,-17,-41,88,51,-18,42,47,36,0,35,14,-16,-23,-78,-51,-11,-41,-41,34,-24,-39,-27,41,-10,62,-57,10,73,-78,-65,-15,-25,-12,-55,-35,0,49,-75,-14,11,-41,-2,-33,19,-30,-61,-40,-16,23,13,-33,-64,-59,-74,7,70,8, /* [18][0][][] */ -72,2,-97,-9,36,-30,-33,-18,-6,-32,-7,33,6,-51,-42,33,-27,-77,-7,45,-75,57,-41,31,3,-45,68,-39,-21,78,35,-32,41,30,52,-42,24,-2,-67,22,-25,-46,-12,-23,5,-36,51,-21,-36,64,-3,12,-55,-36,25,30,51,-13,46,-62,-5,-65,49,71,55,12,-33,3,-9,-3,2,20,45,-3,12,65,-7,69,63,-15,4,24,19,-58,9,17,22,-60,9,-127,-40,-25,-27,12,-14,25,9,63,-67,35,28,23,18,29,-37,52,-26,36,73,48,16,-25,-76,10,-75,12,47,-6,21,46,-4,-19,-4,-83,11,28,37,0,-26,-5,65,-51,57,-32,2,-61,14,6,-14,65,-74,-31,-1,20,-26,0,-11,66,-53,-61,-15,66,-13,-50,19,21,13,11,53,27,-15,-12,28,16,29,34,34,9,76,22,58,-30,32,-78,-39,-20,-65,-28,-57,-19,-25,2,72,55,14,7,55,-14,-35,-19,43,-47,41,42,-77,77,-41,61,73,51,-15,-47,1,31,-14,7,-42,46,-16,18,-80,25,-59,-30,-77,36,-30,-31,-31,-28,22,3,-32,24,-46,79,-40,52,1,4,14,29,-16,-22,-18,-15,-15,19,16,-36,-3,-14,-17,-36,21,-17,-3,25,-14,46,40,13,4,9,-66,-1,10,11,-62,-84,9,37,9,13,64,-26,12,12,-15,-32,-21,-25,12,8,-44,-32,51,17,26,37,-34,-7,-45,-48,3,91,42,15,-14,79,-31,-27,83,-23,-47,41,6,-34,-5,-9,66,25,88,13,-67,-42,61,2,-2,-16,22,-29,69,-41,16,16,-21,-9,11,26,86,80,7,-18,66,3,-49,32,-13,-35,-10,-80,-62,40,-4,19, /* [19][0][][] */ 20,26,23,20,25,22,-40,-6,20,50,-33,45,25,-3,-17,40,12,-20,15,-21,35,27,10,8,-18,-14,-20,-14,-57,36,2,10,47,24,-66,-23,-29,10,88,-6,20,47,53,24,1,-3,-5,15,-70,-26,39,7,23,-37,-30,-9,14,63,34,44,3,-19,55,49,17,18,46,-13,-20,0,-21,25,-13,21,4,-6,-59,-17,14,-13,11,-11,2,15,-31,-40,-37,-113,-78,-10,45,0,28,6,-43,16,36,6,16,-20,51,-50,-31,-53,-21,-20,54,36,-17,59,-23,-19,28,-32,20,-29,-24,2,-32,-43,42,-46,-17,-33,-46,-31,-51,14,53,-12,20,-28,-23,-9,10,44,-37,63,2,-1,73,-2,-31,-22,-80,-24,43,22,15,33,35,17,44,43,-20,-6,-14,-46,-41,-15,-69,-14,-46,-72,-49,36,4,-22,-6,-37,-80,-42,49,12,16,-12,-18,26,8,0,50,-19,11,11,-69,-2,127,15,14,-22,-25,48,21,10,-28,-63,-34,-8,-25,-6,-22,-13,51,-52,33,-23,-1,12,18,-51,-7,7,11,-85,13,-30,13,-67,-3,-43,43,68,28,37,7,45,-17,23,2,40,-15,-19,-19,15,-70,-19,54,-20,87,-29,-62,-16,20,-2,66,-39,9,-4,-56,-22,-19,26,15,6,-44,25,24,21,-19,-4,-10,41,38,3,-13,-43,20,-67,20,-26,-40,17,-22,-55,39,1,-15,11,-56,8,-48,-5,13,-55,12,-15,-24,-77,-56,45,-15,-1,53,-41,11,10,-56,73,6,-1,15,-15,21,20,-7,-29,1,-10,-15,-5,-78,-10,-5,17,-50,-41,-49,24,29,6,-69,21,-38,20,72,-13,44,-13,6,12,-64,-34,-52,-22,3,-9, /* [20][0][][] */ 44,36,-29,2,-27,-49,-50,55,30,75,70,20,-40,-24,72,-6,-28,28,-12,-18,100,36,-10,3,-77,13,-41,-18,-7,-20,-42,25,-16,29,104,-37,27,-47,48,-11,-61,-54,-13,-51,13,-4,-11,-35,-95,-74,43,-16,30,-67,-36,44,-84,64,-64,21,-54,35,62,-44,22,-2,8,-107,23,34,127,28,-19,39,18,-22,0,-46,-10,9,49,-8,-28,-96,20,37,-14,4,74,-11,101,50,13,-39,6,-11,-30,17,-31,26,10,-4,6,-33,44,-11,57,10,-13,36,26,43,24,-15,60,-11,15,-58,-21,-36,20,43,28,4,45,49,5,25,-24,31,-39,89,20,-55,49,-29,29,-38,-35,-5,-28,-9,25,13,-61,-17,-31,14,53,-45,-30,-16,40,-23,-9,37,-1,-44,29,55,-3,-105,-34,-42,-16,-59,-42,-39,2,17,30,55,-32,9,23,3,45,-27,35,-81,-19,64,-11,-103,-73,-4,16,-27,-50,39,15,61,-62,38,31,-29,21,-29,57,55,72,-4,-59,105,50,40,9,27,-4,-11,-5,54,17,-42,-53,60,-41,4,53,37,-43,-28,-22,9,43,26,-35,-51,-21,-50,25,-45,25,-113,-25,-16,5,-30,52,13,-7,-52,8,19,-84,26,44,-2,9,-18,-14,-24,-18,-24,-67,26,61,-22,26,32,36,53,25,-23,5,8,31,30,-11,23,-36,-41,52,-99,-37,-18,9,-37,-39,125,-40,58,-15,4,-37,-9,21,-55,34,-5,10,8,92,-91,90,86,35,-93,0,15,1,20,61,67,87,-24,47,90,39,94,44,-37,56,-60,-22,52,-40,-14,-44,13,-6,-32,49,-1,-47,-8,2,52,35,-37,24,-76,-15,4,-42,-32, /* [21][0][][] */ -25,58,67,31,32,-43,-81,45,-21,-20,-59,122,12,-1,29,-72,-1,-26,38,20,-64,24,-70,-73,57,62,44,-13,60,39,-78,20,-5,10,26,-21,13,102,0,24,-38,-5,-45,-16,1,24,19,50,-37,44,30,75,24,-24,-21,0,25,-29,-47,-49,36,38,46,25,53,46,33,-3,-38,-29,-46,90,18,43,16,-25,-61,-60,-25,-12,11,14,-40,55,84,-29,60,33,42,20,7,22,-34,-9,-26,4,4,-57,-26,99,-41,-45,18,68,1,59,-40,-41,-70,-33,12,7,79,5,27,4,-3,-21,16,20,9,-82,73,-87,-36,-37,-24,-2,18,4,-5,-20,72,124,48,-95,-56,12,-65,-14,50,-126,-6,94,58,10,-68,-8,18,74,17,-65,1,3,112,-43,-52,-31,-15,27,-61,-18,-64,-7,-17,-30,44,-65,121,60,-14,9,76,-40,-75,-23,-35,-47,2,-92,48,14,-64,-53,22,-13,49,-19,29,-43,17,3,-58,65,0,-37,-4,-9,-73,19,-14,15,24,52,-12,48,-72,-18,46,4,1,-23,-61,-65,13,-35,-35,3,8,3,120,-36,-24,66,-24,-52,-21,6,71,-6,40,-34,-56,-81,33,21,-65,-33,-65,8,25,2,-81,-21,10,-88,-25,-30,54,106,31,-1,-17,108,-21,-20,-62,-8,18,12,66,25,39,-34,68,-73,-43,47,13,-79,-54,-28,96,20,-9,121,-60,-7,-38,34,69,-105,35,-45,-17,0,-127,-50,23,103,-41,62,-39,-76,47,-57,-41,42,-17,-33,-47,5,13,-33,-36,-27,-71,-96,87,69,-24,15,-7,-97,-17,-50,21,-8,25,-35,115,-80,-22,-27,-59,-19,-30,-76,-46,37,-47,-26,-16,-28,40,-27, /* [22][0][][] */ 50,38,21,-29,-27,63,-58,-5,-31,68,71,-23,-25,-23,67,-77,49,-18,68,41,65,3,39,-27,-76,-48,19,-32,23,29,-14,49,-4,15,13,20,14,28,-9,55,3,-5,-47,-6,46,-8,-60,-5,24,-19,12,-39,-15,-53,-27,-87,-29,-59,-5,50,-65,-36,4,28,30,33,85,9,5,-68,-46,19,-9,-32,1,33,40,-23,-62,-43,31,-29,69,-40,49,32,122,-16,12,-6,24,84,57,58,25,-21,12,35,-39,-43,18,15,-43,-38,43,-7,54,-54,26,-2,118,21,35,10,79,-84,-7,41,65,-99,-32,-16,-38,58,48,-10,-44,-66,5,28,-11,-77,-49,-60,-34,16,80,100,17,52,84,11,-4,11,-35,-69,-23,41,-113,0,-16,-46,-22,6,51,-14,-122,-71,16,59,8,-1,-24,-48,-59,7,-5,35,19,-4,-92,2,0,-64,15,6,-31,-76,-81,-75,60,54,-105,-54,91,-67,-1,-71,83,47,-14,-36,28,71,11,54,-89,27,-27,-26,-10,-71,45,-23,-53,32,-6,-16,-11,-46,-28,-73,-46,33,50,-9,127,-33,97,18,11,56,73,63,51,26,-41,19,-5,21,27,-77,76,-36,-95,108,54,2,-56,0,26,-67,57,50,77,-42,42,-28,12,2,-67,36,79,-42,-88,-62,-20,-39,-1,-72,17,13,107,13,-56,0,-80,-8,-4,-42,-36,-88,-18,-22,-47,-23,28,37,78,-9,-10,-49,-49,64,-17,22,-59,33,3,-90,-57,-35,-35,-13,-126,-67,-15,14,-5,112,53,-26,0,42,-10,7,37,-24,30,16,6,73,5,78,13,-30,-78,-50,-97,-19,9,-74,10,-5,-44,-11,-97,-29,43,97,59,33,-55,-13,-72,40, /* [23][0][][] */ -44,-118,24,-37,-74,-4,12,-72,29,43,-29,17,-3,-3,-33,-29,67,56,55,-58,90,40,37,-71,70,-89,-34,-20,77,15,9,-1,-27,-39,-79,-9,-43,42,30,-52,60,26,-18,-24,83,1,-34,39,-54,15,-76,-53,-20,-22,-91,-13,-46,47,-26,32,80,-45,-23,-39,19,-18,-6,34,32,24,62,74,10,-2,35,0,-21,-17,11,8,-99,-32,31,-29,-2,-27,-49,-46,-97,41,58,97,-89,31,44,-34,95,-24,-29,13,23,65,-13,55,66,-23,-42,-127,40,6,-45,112,23,-55,95,75,97,-28,40,51,-75,9,55,-15,56,24,1,117,30,26,-71,-33,99,-85,30,-7,-53,3,51,-78,-53,99,-25,9,-24,15,42,37,37,73,-31,34,55,-23,32,-15,50,33,-42,74,-50,43,-7,-17,6,18,68,58,-15,40,19,-3,16,5,-39,-84,-14,36,-71,-53,-29,11,-22,3,-61,59,-48,-76,45,118,24,1,38,75,99,-15,70,-25,20,79,38,25,16,88,-23,-11,-8,-45,-58,33,-54,26,-8,-9,74,-68,40,-17,19,-27,-4,55,-5,-54,-72,2,-35,20,-61,-29,16,31,-7,25,46,-71,52,-26,-4,35,37,-43,-27,-81,50,54,82,39,44,12,15,-31,-13,-34,11,-18,41,-94,49,1,-39,-38,-47,-3,1,20,-66,-3,-102,-30,-55,-12,-30,-24,-69,-43,31,104,-28,-6,12,-24,-35,93,88,-45,53,-30,-18,19,-16,-25,-50,16,98,38,-1,-42,-1,-48,-109,73,-7,-6,35,23,4,-8,89,-13,14,63,-28,7,-18,36,-31,0,31,88,-35,-13,-45,-66,-19,36,-50,-17,-85,-48,-37,12,-3,-2,42,-39, /* [24][0][][] */ -18,18,20,-33,-12,64,-6,40,5,-8,-9,-38,-29,-6,-39,38,41,-15,68,22,-52,-18,62,2,54,54,27,17,40,-18,-31,-17,-61,26,26,-19,18,40,0,24,-67,13,30,49,29,-21,9,-9,47,-7,-39,34,-42,-24,61,39,-58,17,5,14,43,19,24,-42,-18,16,21,-8,22,-22,-1,-17,-23,-30,-21,-40,-9,18,-1,23,18,69,48,-41,51,-51,-29,-48,-33,-1,24,-4,74,-20,-8,-35,21,37,64,13,-36,35,18,2,58,18,-33,-17,-13,1,86,-16,7,-26,-24,2,-11,-7,27,-6,41,8,-14,-57,30,16,24,13,37,-47,-47,-20,-27,11,-6,-27,16,-12,-16,-10,28,-13,16,21,-22,-6,-42,-22,-16,67,26,-23,-24,28,-1,9,-19,-35,27,23,41,70,3,-22,-22,-16,-54,5,30,-18,11,10,5,-64,-25,27,-55,-33,-39,-16,-25,0,12,-28,54,-8,13,27,-1,26,-47,-27,-3,22,27,-33,-12,-7,-45,15,-8,90,-14,41,44,22,56,-41,63,33,28,-38,-18,38,30,19,-29,14,51,-45,25,-71,5,22,-54,46,-7,12,57,-22,-34,33,-58,34,-10,10,-1,-27,-44,44,76,-4,26,9,-9,-19,22,23,-14,18,18,23,-25,70,-20,-43,-25,21,56,-9,18,2,42,6,-9,127,-24,-33,-9,10,-60,23,-20,6,-1,27,10,-10,17,54,25,-16,-54,53,-5,-56,17,13,6,-33,-2,-42,-30,-18,0,-24,-22,5,5,6,53,-36,-26,47,-73,36,20,-13,45,-41,0,32,18,9,22,-4,2,60,-5,54,-5,34,20,-35,54,-6,-8,-60,-35,-12,23,18,9,36,34,15, /* [25][0][][] */ 51,8,95,31,17,-28,-104,55,-48,3,-15,-64,14,-35,-108,-14,-49,-34,18,21,59,-34,-69,-106,-52,-4,-113,-10,20,37,-9,25,-72,-59,-54,-108,-19,-26,35,-49,-3,-20,19,-37,12,-52,-15,-34,-41,16,27,-1,2,-52,-62,2,-69,7,4,-28,-21,6,-46,76,-64,-24,26,-39,25,-10,69,6,-69,-6,7,-54,60,-59,-25,-39,34,-32,-100,67,76,8,19,-4,11,15,-67,44,7,30,-13,-28,-84,36,21,-25,-40,-7,-77,-12,-99,-15,60,-21,55,69,-3,63,110,-34,72,27,40,-34,-16,82,10,-56,-81,-47,74,-10,-78,-50,-9,-35,58,-4,5,2,-38,-118,36,43,31,44,-11,-95,1,12,-16,7,75,48,-4,-70,52,19,76,-53,-29,-41,-60,-65,-22,-10,1,-1,-15,15,-10,31,47,-18,47,-22,40,-54,44,13,-1,61,98,81,-28,8,-47,46,34,30,-24,-29,-99,-32,-60,37,8,14,30,18,-85,-112,-5,-47,-59,-44,-29,35,37,-92,-6,-30,-20,33,20,-45,122,16,-35,-16,-50,30,26,60,12,-56,19,23,-4,-59,45,-7,8,-22,-29,8,-44,49,-67,-52,-31,15,-38,19,-66,-26,-52,-24,43,37,-26,-13,-28,29,27,75,-111,42,40,-14,-20,100,-19,-72,-39,-28,35,-54,-23,-69,-40,-26,-37,-18,30,51,71,48,-1,25,2,53,-35,-49,-67,-17,-40,-4,-17,-27,-57,-76,30,-22,-13,24,-5,-77,-127,24,15,6,-32,30,44,55,42,-22,88,-8,-13,-27,-40,-37,-37,-32,-2,24,10,-23,44,-16,50,44,16,-23,-37,12,-26,8,-9,-52,44,-86,-73,-23,53,-71,-75,5,-52,30, /* [26][0][][] */ -44,14,49,-28,-82,14,-17,-81,-32,11,11,0,-109,38,35,97,-1,-35,19,9,7,24,50,-52,-15,-58,48,74,-51,-91,36,-8,-62,-46,-44,51,32,36,21,-12,-78,-25,63,-6,53,14,-65,48,11,38,-34,-54,1,15,34,65,-46,47,-9,-16,48,-41,23,-36,-98,-127,0,-54,-14,64,-1,-1,-72,-42,26,12,29,-46,76,6,-95,12,-45,-36,10,43,24,-68,-1,36,9,-6,-49,-25,-6,33,-34,55,-27,44,26,59,41,36,-71,24,-3,-24,-35,44,-24,-2,12,-16,10,72,-57,49,-44,46,-17,36,-73,-25,-27,62,88,0,92,91,-21,-78,-36,-24,-63,53,39,-33,18,-76,-23,-50,50,9,89,16,-7,26,6,24,-39,18,-10,-21,-89,5,-37,29,67,-16,22,-15,21,50,-17,-73,9,-38,7,-5,50,50,76,15,65,-45,76,8,19,11,-42,15,-3,60,-26,23,-54,-68,20,6,31,35,25,12,-39,-17,-10,25,-88,-71,27,33,-20,51,-37,15,13,41,8,4,1,85,26,9,72,77,-82,0,11,-20,-21,13,4,-68,33,-35,-34,56,8,-39,70,-42,57,96,14,-41,64,-10,-116,50,13,14,16,31,-43,-32,-6,-15,58,7,-11,-25,-42,25,42,-29,21,1,42,30,45,-27,-17,16,62,19,6,-68,1,94,55,-29,35,-82,24,-23,-56,-59,-5,50,-53,24,-26,-104,42,20,-3,-53,-94,46,16,13,-66,-5,-32,56,-81,26,79,12,-76,22,78,57,35,43,34,-48,-45,6,-15,-56,-34,39,36,-21,-61,113,-31,-42,-46,-42,-16,9,12,11,-17,-8,-5,46,0,-11,-36,-17,70,6, /* [27][0][][] */ 12,-8,72,4,-22,25,6,-4,16,20,22,-4,-61,58,40,-25,11,-1,11,-17,14,-56,-32,-43,-42,-6,-20,-19,11,21,-18,92,0,28,-70,7,-25,31,7,5,11,-34,-26,0,-53,34,-44,14,-20,41,-35,11,24,52,5,-7,-14,-12,-20,-15,75,-40,40,6,-36,42,50,-55,-10,6,41,0,13,-13,9,-16,20,31,31,-5,34,19,-33,-11,-39,14,-38,-27,16,48,39,-18,-5,15,-2,5,-50,-3,41,-43,-12,-16,-25,11,-24,-18,-8,16,38,14,-29,13,27,-18,25,15,-8,15,10,5,30,-14,30,1,11,12,-21,-14,3,-10,17,10,11,-8,1,-38,-4,4,-14,-53,11,-43,46,28,-6,12,-12,-19,-24,-11,-38,4,-8,-11,-12,-1,22,26,-21,46,60,-6,-23,49,5,21,20,-30,-28,-18,-7,-12,-12,19,18,33,43,-31,-38,-19,-41,-11,50,-27,34,-11,-127,-6,6,20,-31,5,12,-31,-11,-29,-2,39,-81,51,-26,15,7,6,-1,65,-9,-60,-38,-10,-56,-41,-25,-32,-23,22,35,-27,14,-33,-37,13,-29,-18,12,25,-2,-7,-1,36,1,-52,5,15,2,-22,40,16,-87,24,4,-5,-9,-3,-18,13,-5,-18,34,-52,21,-35,-20,-13,-12,57,-23,8,2,-1,-21,-8,35,13,46,-3,1,-20,-51,10,25,32,5,-29,47,-23,-23,7,-10,22,41,38,-4,-48,-14,25,24,8,6,-21,-2,-20,-100,-10,6,-70,-16,-20,17,-41,-30,-11,-17,19,-24,-28,-13,4,40,-24,-7,63,0,-10,-3,12,27,25,-3,12,-19,31,-3,1,-5,2,29,-5,-3,18,-28,23,-2,-22,-12,14, /* [28][0][][] */ -6,45,-15,-10,-12,2,35,2,15,-40,-6,12,10,33,21,-8,-38,-2,16,18,-7,41,-7,6,-8,-24,-41,-14,-15,57,-23,-36,-40,16,12,31,75,-32,-8,81,8,16,5,-20,-28,-17,-31,-32,-42,-17,-45,12,0,11,-26,11,7,20,-1,19,10,-40,-38,-8,7,11,12,4,14,-10,24,-17,39,-18,37,-25,14,40,0,5,-113,2,-31,13,-60,26,-35,-1,-22,1,40,-16,30,47,-23,35,-24,-14,-42,9,-23,4,-5,-10,26,21,18,10,-40,-20,-60,-11,3,-34,14,3,-8,16,14,-1,20,6,8,22,-12,8,15,-13,6,14,-22,41,-21,-11,37,1,31,-2,-33,-75,-74,17,-8,14,-30,-4,22,16,-11,-6,-43,-5,-3,22,29,6,-22,25,-18,-6,24,-47,21,21,14,-21,14,22,31,-23,3,-39,-14,40,2,26,-22,-2,29,-57,18,-17,-10,35,-18,-14,-127,6,-8,19,14,17,1,12,35,-3,38,-27,45,12,-12,-14,-11,-35,27,19,-24,-26,-12,20,-5,-34,-13,10,-49,-11,-28,5,38,14,-57,13,-13,-14,-9,-1,-13,28,-9,-8,22,23,-6,-6,39,-63,-32,-1,-31,-5,-32,22,44,-26,-32,-33,19,0,-8,37,-35,-42,-26,-48,40,4,14,-33,0,55,-52,1,31,-18,35,-7,11,15,-19,-48,15,-19,15,14,10,-43,6,44,-12,-1,-55,39,44,41,-42,6,10,-22,20,-15,-18,15,-42,-13,0,-48,44,14,18,26,1,-24,16,-17,13,-8,13,-59,63,19,1,20,34,0,-9,28,41,-38,3,-5,10,5,-39,-19,-12,-16,28,-16,25,27,5,-35,8,5,1,-11, /* [29][0][][] */ 5,27,-58,57,3,21,-20,15,26,-38,29,35,13,17,22,21,39,-13,-17,100,63,12,-31,5,-57,-127,7,-33,-13,62,1,-45,12,-51,-3,11,-29,-45,-92,-91,36,19,-26,18,-7,32,-67,66,16,-12,18,-42,4,5,43,4,-85,15,68,68,-55,-14,-40,-52,-34,0,-98,1,28,45,-19,3,54,22,93,-16,-76,-74,43,-83,-35,17,19,1,7,-12,20,-106,-15,21,-11,-18,19,110,-83,-30,-49,-16,0,-12,-32,-23,29,33,-42,-34,-21,84,90,50,-74,-28,-29,-14,2,26,-32,-15,39,-81,-36,9,-85,-36,-20,-36,7,-39,57,-23,18,53,-29,-14,-15,-43,32,-7,28,74,-50,16,101,31,92,22,38,-56,-63,-4,-39,-94,16,106,-54,48,23,-20,12,25,-34,-68,101,-62,-35,-2,24,2,5,7,-66,-25,43,62,-40,-11,33,22,-68,-5,17,-46,12,-26,82,18,-7,23,-31,37,16,-16,-35,30,72,25,2,-87,-24,9,20,26,-20,61,-22,38,-31,-23,-10,124,-43,-10,-43,-24,11,-32,44,44,29,53,78,11,0,-19,94,-27,44,-86,-4,-68,26,-65,28,-31,-5,-11,-80,-37,68,-72,52,16,63,-31,-45,-38,57,9,54,11,-104,19,-58,13,-10,50,-99,-11,-87,-27,-2,35,52,-58,-52,6,58,24,-34,-15,70,-31,74,-3,-1,81,12,1,-40,-72,37,41,20,-10,-16,-60,-23,-64,3,1,48,-28,41,-23,15,47,16,-60,19,35,-27,12,-56,11,3,-50,12,51,-73,-10,40,49,-6,-16,-15,-80,44,-42,29,19,-40,-27,-51,-28,-18,-71,9,80,29,-42,61,-57,-81,11,-41,-47, /* [30][0][][] */ 39,19,-1,-91,-23,84,20,36,-11,55,45,-35,-8,-19,-29,20,24,44,15,-52,-83,-29,35,-36,-31,-17,37,47,-18,-9,-35,-40,20,75,8,-13,21,-9,4,1,5,22,30,89,36,-34,-9,-35,43,-65,-16,-18,33,46,-49,61,4,-26,6,27,-47,79,-9,2,24,16,-6,-94,9,25,38,-2,17,31,-45,39,63,22,-51,-13,60,-110,15,-51,-37,23,5,-19,18,35,0,1,-4,-45,3,26,101,32,13,81,-4,-19,-22,42,-1,10,-29,-35,55,8,7,-65,51,-78,-37,-19,-5,-31,-6,64,39,-25,3,-29,-64,13,43,-8,41,25,10,45,40,-45,-16,38,-27,30,31,-10,-71,-19,38,34,10,6,-26,8,15,32,-7,-13,22,-70,-15,-29,-33,-41,49,74,-52,-8,-59,-15,41,-87,81,-3,-57,-4,-11,13,100,2,33,57,-44,22,-47,24,55,65,35,33,-15,102,11,-6,-40,-33,39,27,16,-27,-2,123,26,-25,-44,-108,-53,-42,-8,-43,-82,7,-27,26,-5,-58,-76,75,-3,12,38,47,-42,-21,32,-67,-25,-1,98,2,-9,16,-9,-127,23,-53,-95,13,-14,52,65,60,-47,-28,-19,-6,-36,-10,40,54,-5,-13,20,-3,59,-13,3,38,1,-39,46,45,30,31,47,-35,25,3,69,-25,-38,20,-15,21,-1,9,24,-35,53,-68,-16,22,9,-30,5,41,-17,5,-69,-52,12,16,-32,-59,89,51,-91,-78,-76,-14,62,-78,-53,42,-15,48,5,14,19,7,-14,-18,-27,-80,-9,-19,-18,77,-47,42,24,9,33,58,-9,28,17,19,35,-23,59,17,33,-28,-48,31,-8,-30,81,35,12,66, /* [31][0][][] */ 24,50,36,-51,-75,-12,-9,43,8,-33,-36,-43,-56,9,10,26,-25,62,-33,24,-1,-16,36,-6,-42,-11,120,-13,6,105,-5,77,78,33,44,-23,39,4,108,-34,5,33,6,71,50,-17,44,76,-65,18,-63,-45,22,80,34,46,-29,-8,-15,-42,89,18,20,19,47,43,41,-2,33,-28,49,7,-30,-30,16,-17,-43,-17,24,39,-25,-35,5,44,-33,9,13,-51,-67,-10,-63,57,52,87,-88,21,-43,-99,17,-13,-34,68,82,-24,34,69,31,11,-28,41,19,-29,51,-61,-27,-75,21,50,-43,5,72,-44,-30,-73,-7,7,-28,-34,-79,-29,-19,38,58,28,26,-26,43,-38,13,-41,-34,-45,39,-35,-24,-11,80,-18,42,68,-32,42,-43,1,81,71,24,54,-49,-25,-24,-66,-29,-32,27,36,81,-34,0,-4,-65,-5,17,42,-31,71,-17,-44,-19,-42,61,-25,14,41,-65,-68,-127,10,-26,-25,-15,79,54,43,25,13,54,0,109,50,24,67,-29,20,-58,77,-57,-50,8,-5,6,78,45,85,40,-55,-25,-75,49,-76,25,12,-11,24,-22,46,10,41,19,-35,-68,-17,39,-65,28,24,-14,-62,-112,125,-64,20,-35,23,23,-29,51,64,20,45,-20,-19,-27,53,71,40,77,15,3,71,-63,-85,12,1,25,3,58,-8,39,10,-60,22,24,28,25,-26,-50,18,19,43,-27,10,1,-94,17,82,30,12,101,-30,4,16,-115,-31,-71,-118,-62,9,-61,-66,36,4,-103,4,-6,-30,-19,-40,-18,-118,-20,-33,6,-31,9,-46,80,-7,58,-110,-8,-78,-31,-11,3,2,85,-7,-18,-78,16,45,3,76,-7,86, /* [32][0][][] */ 28,-94,-91,-90,-68,-37,66,40,-43,-38,21,-4,-37,-18,-43,37,60,-30,65,17,-47,37,48,-8,-64,-21,-51,82,56,-2,-4,5,-38,-24,-66,-26,-20,-4,16,7,105,-5,-72,-10,69,10,41,-25,-60,-16,-59,95,-25,-32,9,65,-61,63,-32,24,-59,-53,-6,-17,-45,24,32,33,23,52,7,-57,93,97,17,14,-48,24,-47,29,38,-29,-33,-7,36,4,-56,-28,9,112,79,41,85,6,-69,-50,-2,-49,-47,70,-74,-74,-19,-9,-21,26,-6,37,47,51,57,93,-4,39,11,25,-25,-5,66,-79,-34,16,54,12,10,-2,28,15,-41,13,16,12,-62,-38,-17,-53,8,-34,-36,-6,-127,11,-98,-29,-41,-33,20,39,-48,36,48,-56,18,-3,-14,-16,50,-31,-72,-21,-24,-57,15,54,-43,-79,-22,-42,-51,33,19,32,-63,-11,46,22,-42,-47,-32,-49,-26,30,28,-27,-21,-8,-52,-1,-30,30,-44,-51,-56,-20,-58,36,-53,-37,0,20,46,63,-7,-7,81,-57,5,-8,-32,21,-32,17,-65,73,-44,-82,-39,47,31,33,-34,13,43,19,-3,-57,-53,-12,100,6,-22,38,-14,-59,-3,71,90,22,-60,-83,11,-59,-3,-15,-67,-67,45,43,-69,3,-20,-96,35,22,13,-32,-38,7,4,22,40,-93,-6,60,51,8,28,61,38,50,-50,8,10,-47,-71,14,-68,61,-56,-11,15,-54,80,-43,28,43,45,35,29,-3,13,57,17,-73,41,26,34,3,-37,4,44,-4,8,55,-34,26,2,-19,-28,-37,-48,78,24,50,-22,5,66,-6,33,15,65,3,46,54,-62,-12,11,12,1,59,3,3,-80,-28,-2,-15, /* [33][0][][] */ 46,-31,23,88,25,4,50,4,29,14,-24,-46,12,4,-62,5,-5,48,3,-28,-85,-37,-26,52,-62,-35,-15,32,-37,20,4,-53,42,11,23,-6,-61,-7,-11,0,34,64,-6,-29,22,6,37,-14,-48,-44,16,-87,23,76,-1,-23,-3,18,-5,-64,4,-2,2,18,25,10,-77,-64,21,-24,16,14,-75,-23,-65,16,6,-61,36,46,-17,34,23,-58,43,57,-7,-24,31,-27,-20,-49,81,28,21,-38,-38,5,-40,-9,-52,61,-11,-48,56,-26,41,73,-21,-44,39,3,7,-30,-3,69,-36,19,26,73,-4,-20,-56,40,49,-101,33,-34,30,35,30,-20,-2,58,-74,32,-1,-3,3,44,-9,25,-23,6,-14,1,-55,-12,26,48,63,-47,-111,-29,3,-18,49,46,-30,-104,-8,-39,-1,-20,-89,-17,-15,-3,-59,3,21,43,40,-64,-74,-48,-34,5,-57,28,28,22,52,59,7,18,105,9,15,19,33,-8,-31,-83,74,-32,16,-90,6,7,-38,16,3,82,-13,23,85,44,-32,26,-34,14,-55,-3,-34,-18,2,-32,-2,-45,8,-49,62,-20,28,-41,4,10,-67,20,11,-26,-23,-39,-56,7,-29,64,32,33,43,55,15,6,3,-77,25,-35,39,-79,73,-48,-51,-15,-55,68,48,11,27,-55,65,-14,-44,65,-86,71,-41,-28,1,60,20,-94,-16,-7,2,-5,81,40,-38,-28,4,-4,-83,12,105,-15,-96,-47,9,-5,-29,-78,7,41,8,18,-42,101,21,2,-50,-26,15,-8,-25,-8,-68,42,2,37,57,16,-21,33,11,-92,18,10,-8,-7,24,46,41,39,32,22,6,15,-127,-97,52,19,29,-51,-29,-26, /* [34][0][][] */ 1,-55,18,9,63,-5,-70,37,-33,-11,-55,16,-50,-41,14,-19,46,127,-99,29,-90,20,-124,23,50,26,-59,-1,26,48,55,-71,-14,-6,-60,28,113,1,42,20,-67,14,-52,61,-53,13,-77,27,-66,77,-41,-11,-25,9,-17,12,-10,15,112,25,-38,8,-33,-30,-14,-2,43,1,80,-29,-46,-70,49,0,27,-6,73,40,-7,-26,-20,24,58,21,-12,-47,21,54,-6,-9,22,-28,-33,10,57,12,1,-50,8,5,90,28,2,-45,1,-25,-18,-10,-32,-9,19,27,29,-27,62,41,22,-52,39,-32,110,-27,18,-19,35,-9,12,-21,-29,15,-38,-21,-37,10,-6,-39,37,-5,3,-86,19,-59,16,39,-67,43,70,29,32,32,36,46,-48,-5,-2,69,-24,-10,25,16,-14,-2,-2,41,0,0,-7,-8,-4,-73,19,-22,6,13,-35,33,19,-82,66,-27,-18,-14,-32,-16,29,18,22,19,2,71,45,24,-6,-10,-28,-21,-24,-19,-21,43,-27,-44,-29,-33,-69,35,60,57,19,4,51,20,-37,38,-9,5,-27,-20,21,-1,14,53,-16,-58,-21,45,-36,-56,4,6,-12,-14,55,26,46,-12,-34,36,-47,-25,3,16,-57,26,17,-33,39,76,1,-11,18,-25,-31,15,38,-81,7,-56,64,-42,47,38,2,82,25,54,22,97,39,-42,-54,-59,9,-17,8,-3,34,-9,4,48,-30,54,3,41,46,-39,11,-20,1,5,32,14,-14,39,-72,-69,31,-33,-12,-12,-9,68,-12,59,-36,-30,88,46,33,-44,6,17,40,6,-9,47,-43,-1,-38,4,-22,24,66,43,-11,44,-15,73,24,-93,-61,47,73,16,58,47, /* [35][0][][] */ -23,88,-44,12,85,-28,29,18,44,-86,3,-18,-63,2,-37,30,52,-55,30,35,-36,-3,31,65,-50,-26,-29,29,82,40,-23,13,12,-12,-13,-92,-13,-22,27,-9,86,23,-103,-10,-31,-86,-6,-48,-4,-13,15,-56,17,26,12,54,17,-20,30,47,-20,-19,9,-17,50,31,50,-28,-26,57,-2,28,-22,-3,-61,-84,4,73,15,-26,19,-19,6,-36,-63,50,30,-5,66,-43,8,9,-34,-44,76,-29,-39,42,-49,23,-31,59,-79,-11,-53,-3,16,84,-34,47,70,-67,-34,-7,24,-41,-49,8,24,3,13,10,-6,5,31,-25,-65,-43,34,21,47,45,-26,-2,-36,33,8,41,6,28,-14,7,-49,4,-7,3,-64,68,-29,83,0,-101,-5,124,-83,-10,38,2,19,37,3,29,14,-5,-51,49,-62,-51,23,-72,-51,-25,-37,-29,56,-53,-21,-15,-88,20,117,42,21,11,12,-43,2,0,0,-30,8,-127,-47,27,-58,-56,-1,-25,71,32,-38,53,61,34,35,15,-7,56,39,-37,58,-106,25,-15,23,-30,-67,3,78,-38,-28,-52,-31,-29,44,-7,19,12,17,-28,14,28,-36,53,-22,-16,67,-55,-11,35,7,33,-24,2,13,37,26,-91,5,-8,-16,89,-38,66,-31,-16,3,36,27,43,5,-75,-25,-51,22,-51,8,32,-67,-35,-10,-93,-50,31,-30,48,8,-9,-26,-17,2,51,34,-21,-5,-49,-3,-5,-8,29,30,-4,-12,-17,16,-64,-28,-25,-46,-26,68,16,64,-16,8,3,-14,-30,-38,22,11,37,-42,4,53,-53,22,11,14,10,-11,12,43,-14,-19,-51,-5,1,-38,-38,32,-62,-33,20,3,-15, /* [36][0][][] */ 72,-27,-10,40,75,54,-33,-3,40,-12,42,-60,1,17,-15,79,-25,-7,11,-75,-108,46,20,19,4,-58,-3,-95,72,8,-24,-80,19,-40,-48,44,38,20,-2,23,-8,80,-23,18,0,6,-44,-9,-16,-26,2,-30,-37,49,14,17,29,7,21,7,32,29,48,9,70,-15,-105,64,1,-26,-25,-51,74,41,-55,95,61,-93,55,71,-79,23,-4,-28,71,19,58,3,21,-94,-6,-67,14,8,-43,2,11,23,-5,29,0,19,-16,-51,-51,35,65,22,-35,-54,43,5,1,-69,-16,-8,14,-15,-60,35,-17,19,77,-9,31,-65,26,-17,-45,-61,-20,-62,-25,-3,37,-6,3,-20,5,37,-5,35,-25,25,38,35,41,-43,-59,-86,89,-51,-1,10,-9,43,34,76,-5,21,-59,78,-8,78,-17,1,18,94,-33,29,-4,88,36,23,-53,-78,-6,42,-4,87,9,-17,-40,47,31,3,107,-5,-46,74,12,-23,-6,35,79,6,39,-33,1,49,-33,2,-6,-2,-77,87,15,41,-54,-20,-11,-47,-34,-32,20,127,10,3,1,-112,-14,-34,19,-86,49,-10,-67,-43,34,-23,13,-77,80,83,-23,-27,28,16,18,5,40,-15,-18,6,-19,-19,-31,-58,-38,-84,-10,39,30,-39,27,-13,-49,70,-32,13,99,-29,51,16,-36,-88,-19,-53,26,-15,-13,-66,70,22,8,-37,56,-22,-26,-41,86,-39,-11,18,30,-53,-11,55,-50,-106,70,48,45,37,31,38,108,-23,-20,15,13,33,2,50,79,68,-8,-88,67,10,-50,34,42,66,-27,-11,62,32,0,15,-24,-10,-13,-46,-24,-16,-33,7,11,7,21,106,-14,72,-19,5, /* [37][0][][] */ -63,-36,-61,38,6,33,60,-63,-12,17,7,33,52,-20,-45,26,1,40,-110,57,1,-33,-7,54,-63,-46,12,1,-43,100,25,10,103,-57,-58,82,-15,-10,-17,29,4,-43,-7,-22,59,-27,41,-21,-8,16,-98,4,33,47,-15,55,14,27,33,-35,87,-59,2,99,113,-51,-37,14,-50,51,-22,17,-12,29,84,22,4,-13,-18,-25,53,-52,-46,-9,-8,-14,-102,8,-55,8,53,-20,-16,-66,15,-15,26,33,67,59,6,4,50,40,-39,70,78,-19,26,-18,-4,-27,9,-40,35,-40,-42,3,-97,-33,-8,118,7,-23,16,80,-6,97,71,-69,0,51,51,-54,-68,29,11,-9,15,51,-7,-12,-10,52,-67,-84,32,25,-2,-41,-41,9,29,44,9,80,25,20,29,4,-16,-68,54,-17,-64,-2,12,-6,19,-85,16,9,-25,24,-48,30,23,7,14,-4,-64,-50,3,13,62,-16,-104,26,63,16,-32,10,-7,15,13,30,18,-31,34,-8,49,-127,18,-28,58,24,-39,-50,49,-3,18,-14,-29,10,-27,-36,-18,-13,-80,25,-56,-6,-33,-77,-11,19,-28,44,-42,21,20,-41,-107,-29,-13,12,41,-24,55,-20,25,-75,-37,-7,-8,14,-15,-64,44,5,-20,-53,34,23,87,-29,-55,-2,-33,-15,18,1,-57,75,58,28,15,-84,-23,-35,-26,78,47,5,-45,-43,-55,7,-8,64,35,49,-9,-3,-1,2,76,-32,52,58,-38,25,-4,24,68,39,-2,12,11,-25,36,-72,-39,-10,62,-4,-28,-35,20,-57,27,46,17,-27,-3,-47,26,-8,18,-26,91,-11,-16,5,-19,2,-57,46,66,39,20,-1,27,-87,13,-12, /* [38][0][][] */ 9,-55,-78,-67,-19,-58,-2,9,52,-106,-13,-2,11,-45,56,27,-33,88,-46,63,-83,44,-18,77,-49,55,-54,22,89,65,-46,-8,-11,-101,-34,24,24,28,2,55,-77,-36,-67,93,-46,-74,28,-27,29,-10,-22,-76,-77,83,-50,-63,75,20,-11,-25,-1,36,15,19,-53,127,37,60,-35,12,-39,51,32,-26,-81,9,-16,54,-71,-15,-50,-2,-49,16,9,28,66,-89,69,-54,59,-24,33,67,-13,12,6,7,37,-4,19,-17,102,86,-37,2,49,16,5,-56,19,29,14,14,63,22,-14,11,35,48,-11,57,-52,-37,-34,-113,28,102,-4,11,15,32,-53,-51,-45,-17,-32,47,-15,4,6,54,-14,-64,-20,-72,38,42,14,19,-72,-42,-11,47,-67,-30,-79,5,59,-35,43,13,8,-16,-75,43,-10,-28,-4,-57,-40,33,-47,-7,-60,19,-82,-9,5,-8,-48,-77,-6,-3,-3,-89,56,6,62,6,67,58,-69,-29,13,-21,98,-34,-61,51,52,96,64,-13,-48,9,1,36,37,-9,10,-24,-27,-31,29,3,48,-29,-4,53,64,-19,-9,-55,19,-36,-69,-20,79,-63,27,21,-75,112,54,61,-90,-30,53,-12,48,-5,-36,7,28,-62,-9,-17,32,-29,98,-98,-57,101,-64,-80,-15,-43,33,-24,16,26,-31,-80,55,-64,70,-76,15,20,-25,-38,32,-16,37,19,-3,-39,-7,-71,14,41,-74,-9,-10,37,-53,101,3,46,-58,32,27,-54,-99,11,-48,-2,19,-62,-43,7,42,-73,-21,39,41,-39,69,12,-8,-3,-87,8,-11,2,-19,-57,-60,-33,26,67,-67,-38,32,-33,51,7,-47,22,74,31,5,-35,-47,-16, /* [39][0][][] */ -17,-58,-2,5,31,-53,36,-2,-17,10,2,-8,0,53,-2,40,36,-39,-49,36,-49,24,-80,7,-18,-1,38,15,-16,-12,-20,-102,-17,-68,29,-32,10,73,-10,6,5,-105,-6,-1,-22,29,-46,25,45,50,32,20,-29,-1,31,8,30,-57,-46,-54,-26,62,4,-47,-20,-116,-63,52,-21,37,12,-14,77,9,-23,27,-29,-21,9,-10,-31,5,38,74,-68,63,9,-10,20,-36,-3,-78,-46,-63,-8,-13,-50,46,40,-93,22,-24,43,7,14,-29,-1,-6,-47,3,24,13,6,68,18,-9,-20,51,74,24,21,-60,-14,53,-18,-7,21,-36,-26,2,-27,58,-28,89,18,-58,1,29,13,-15,6,-125,4,20,39,28,-24,-40,11,-70,23,-24,-51,-31,83,-13,-14,15,-30,-22,-70,53,18,26,31,-35,7,66,-22,37,15,-15,-6,-64,-35,21,41,38,-43,21,6,-22,8,-2,-37,51,87,-9,21,-4,44,52,-23,29,-33,-78,-30,20,29,12,28,56,22,28,-13,56,-29,33,39,-40,-15,61,-30,25,-53,8,62,1,35,-52,-87,12,21,8,-5,112,-74,-13,-79,-34,-32,-2,20,3,-11,26,-37,-43,70,-42,-25,-14,16,-34,5,26,-27,-4,-36,-38,-4,-14,-68,-17,21,-3,8,-36,12,-10,29,-48,15,-44,10,23,-127,-46,-2,-17,73,-9,4,17,83,-4,13,34,68,-30,62,46,42,76,-26,-49,28,25,-13,74,-35,5,34,10,46,38,-20,-22,93,76,-56,32,51,24,31,-52,44,-5,21,2,-80,9,-16,54,-33,62,52,-50,-11,-45,-44,18,79,-67,8,-27,-57,-78,26,-3,-31,71,-5,49,-53,87, /* [40][0][][] */ 0,-47,7,29,6,14,-6,-16,-16,37,16,25,72,6,48,3,34,23,-16,2,-8,-27,16,12,6,-3,-76,3,0,-20,-10,-12,-58,-59,3,-30,37,47,42,-5,-4,-83,14,-33,-7,0,-57,-60,-52,-53,5,6,26,-47,42,35,-34,-36,33,-22,-50,15,-14,-14,10,11,-17,28,-19,-10,11,31,25,65,-4,49,-18,51,2,-28,-19,26,27,-64,-15,52,64,-22,-18,-6,6,16,-76,-85,-23,-20,19,-13,-41,-3,-17,19,26,-18,26,24,40,-18,21,6,22,-3,-3,9,6,-39,-21,-5,41,40,-87,-27,-31,38,63,77,-7,31,-37,-30,-51,20,64,-58,18,-6,-20,-24,19,-5,60,-47,58,37,72,18,-13,-13,-46,28,10,46,39,-17,11,-13,-13,15,40,33,11,40,-8,60,40,60,30,-9,-7,8,-17,-6,51,-43,-52,-4,-46,-93,-14,-12,-1,26,15,-40,25,29,47,-22,47,39,-10,-58,-10,-7,2,-18,-24,-73,13,-9,-3,14,-50,9,-29,23,6,9,-34,-12,60,-64,11,-33,-29,-29,-28,-70,-3,29,30,-59,11,-26,-13,-26,87,-21,127,-13,-50,-27,-42,63,1,34,34,6,48,-26,-34,-31,-35,30,-40,-38,-6,-33,13,16,-56,33,-63,-71,-41,-41,28,28,-15,2,33,-22,-8,10,38,55,5,-47,30,-22,9,43,-19,-37,41,-109,27,-22,-13,26,-61,-83,34,5,-9,22,-1,-28,18,-28,-66,2,-51,31,-32,2,-50,-42,8,100,-74,-47,-9,6,65,26,-13,-44,-4,12,78,-49,76,47,51,-10,-2,-7,30,-13,-31,6,-10,25,23,-11,-3,-48,26,1,43,22,-14,-7,-3,13, /* [41][0][][] */ 9,-65,-27,23,23,-23,10,38,28,-55,3,17,54,-65,78,-60,-45,63,-46,-46,-17,-43,-51,12,-83,-52,51,0,19,-30,-57,52,60,-84,31,-47,-29,-31,34,-41,-33,14,43,-30,-81,-4,-3,85,-60,25,61,2,-29,5,-49,22,-5,-30,-6,46,-19,28,-27,5,57,-20,25,-54,-43,106,-39,-21,63,35,-80,-9,71,29,-37,-9,60,-32,-18,13,7,-56,47,96,4,-22,-53,15,4,55,93,73,-56,50,2,-21,-36,41,-72,-17,14,44,11,27,42,12,-34,60,-3,-36,85,4,-38,42,-1,-40,-64,-88,32,-17,60,127,9,-75,-71,-70,71,-41,19,53,70,-3,56,-47,64,-25,85,-38,-101,23,-5,8,33,-26,-23,-16,-65,-14,3,6,-13,-41,42,-43,52,-5,-15,-4,35,48,65,80,-28,-41,-17,34,6,-1,76,24,-20,28,-12,56,-14,-1,31,4,78,66,-63,22,19,10,-31,-12,12,-23,-29,-30,-1,3,6,16,8,-52,-48,107,-48,38,10,28,69,-27,0,105,36,10,50,-111,56,56,-13,-87,34,-58,-8,16,61,13,3,-28,-113,-26,57,18,30,-48,118,37,-32,18,27,15,-46,-19,-26,-7,85,33,21,18,122,72,78,35,-27,-1,30,-6,-20,-20,57,66,21,13,-72,-47,-43,41,-72,79,-14,-3,-32,-56,-21,-7,-54,-33,39,-81,-33,50,8,0,-30,-21,-67,-86,-53,9,-98,-57,-18,-59,-67,74,35,44,-67,34,-80,-13,-59,33,-27,32,88,-23,-23,74,58,54,-83,-14,6,15,-20,61,-57,-4,5,-6,-47,-13,15,-47,32,54,-100,-1,-17,-60,2,25,58,9,-26,-83,53,-61, /* [42][0][][] */ -3,37,-77,-32,41,14,-21,65,11,66,72,-17,4,36,34,-69,-38,59,61,9,-38,33,15,85,42,48,25,40,95,-11,-53,-66,-43,-47,30,50,-1,15,82,-34,-77,70,-68,-59,-91,50,74,-37,5,21,27,32,-5,-111,-21,67,-19,51,-13,-8,-54,2,-4,49,15,89,-1,-48,-33,17,77,-12,83,-60,4,-62,-1,43,-5,-61,89,21,-8,49,-20,-3,26,-81,115,-29,28,-68,1,13,62,-18,-91,-53,-11,66,31,-23,48,42,38,-10,103,-57,-33,27,-26,-66,-47,-48,36,26,-108,-5,-17,-2,41,19,27,9,-10,-47,29,-26,53,33,33,59,38,-3,-22,33,-58,-11,-50,-25,-22,35,5,41,-58,20,-42,-1,43,45,-6,-16,28,-41,-57,-6,-30,27,13,-59,58,1,33,-44,-5,26,56,20,-2,-9,88,45,48,30,-41,13,48,58,32,-29,-71,-23,46,-5,-10,51,127,-27,20,38,-68,-14,-8,13,-21,8,-98,-16,13,52,30,39,-3,6,65,45,59,19,40,29,0,8,-22,50,-74,91,33,-63,-49,-2,109,19,58,-14,-21,-24,-12,57,66,-127,-54,39,45,-20,-84,-21,86,-56,22,19,-47,32,-62,26,-52,5,-33,-44,-13,22,-53,32,-1,24,-48,68,76,-4,30,-30,19,-67,-5,-15,-6,-24,-61,27,74,-53,70,-8,55,-47,1,66,6,8,45,-28,-22,-67,-36,19,-16,-64,-26,60,-38,23,9,-51,39,-27,-13,-41,-24,53,-36,-32,-56,-3,2,-58,17,-37,-21,-18,-2,-26,28,5,42,1,15,-7,22,-69,-66,39,-22,37,-38,18,-77,31,3,-10,-7,24,23,66,-77,-6,-46,-41, /* [43][0][][] */ 25,38,-28,33,-14,-69,-31,-23,42,57,-7,-14,96,-59,34,-42,11,32,-68,40,60,-25,12,-97,-8,56,-86,-58,-16,-61,103,61,107,9,3,-19,13,89,23,74,60,44,7,12,-6,11,12,-67,-12,-49,-42,-11,-8,-40,23,-26,26,47,76,-21,-30,-100,34,-30,19,-56,-66,-26,6,37,-48,82,28,62,47,17,29,-2,67,76,85,-69,34,-90,-63,-48,-16,-20,39,1,-37,-7,16,24,-30,80,17,-41,19,-61,-65,75,-58,28,23,-21,60,-3,-22,-44,-44,24,-62,10,-7,-25,13,46,-36,75,34,-34,14,-20,-6,18,-46,-45,-7,-74,47,31,7,66,51,2,-28,25,16,-57,-94,-76,11,96,35,-35,-44,-37,58,36,-80,81,65,-40,-30,38,-59,54,96,10,-12,-35,-48,18,-54,-73,23,-40,41,95,-60,-39,66,-28,66,1,-4,72,-97,33,48,98,23,-52,-34,60,-127,81,56,-34,-25,58,-18,28,-77,-51,-30,-64,17,-72,-60,-54,3,24,-5,-78,-112,28,77,0,-11,41,71,59,3,-10,-21,116,8,-31,71,49,29,7,78,4,-38,-30,-2,7,-57,-13,51,-6,-47,-20,17,9,-65,28,34,-97,3,-30,17,73,31,41,-11,-32,59,114,3,22,-8,-19,-94,81,-69,66,-38,-3,38,5,-31,12,96,2,-49,-19,26,55,-46,-13,38,-3,16,71,42,34,11,-38,6,-62,-50,-13,47,-38,18,-11,23,41,-108,-20,-6,-38,0,53,61,16,69,-13,-19,-28,90,-99,36,-40,0,-54,18,22,3,20,127,-6,25,51,-4,-87,-25,-23,60,-100,17,-22,5,-54,-47,-2,20,6,19,62,-45,-18, /* [44][0][][] */ -3,8,40,-46,66,-92,50,-21,-73,7,66,-20,18,7,12,28,35,109,-42,94,-46,-25,-18,-48,-36,56,-32,35,-27,1,-71,-36,-20,51,47,34,11,63,-79,65,21,25,20,-66,21,11,-17,-97,-3,24,-38,-15,-8,-13,27,-29,-14,48,39,32,8,13,20,-79,21,-24,37,54,33,-19,-80,22,-18,73,16,-73,-32,1,-36,-15,-3,54,-22,-24,33,-64,41,60,-32,-54,-76,-77,50,-34,-9,110,-26,6,-68,15,-49,-90,-15,-59,14,48,25,77,44,47,-20,-4,-48,31,-27,39,-62,-52,55,46,31,-19,-39,-4,45,-29,-8,2,35,36,-32,26,37,21,-41,5,-70,31,-5,-65,-23,-7,-29,-53,-32,21,41,14,49,-87,50,55,-54,5,-34,-15,5,24,64,59,1,-24,69,7,81,72,97,-42,-38,-19,-11,-57,-12,-53,39,3,-73,51,68,30,-37,29,-38,-76,20,60,-37,-46,-3,-127,-80,-48,-26,-78,-1,28,-68,14,-82,-31,-47,59,-33,11,-46,-22,42,-6,-116,-53,-69,-1,73,-37,42,-47,-85,-48,-3,-37,-18,12,48,-2,24,-5,81,-86,30,-63,7,-75,-17,-29,-32,3,41,-42,-56,57,5,56,-90,-75,-44,35,-14,-40,92,29,78,-21,20,91,-66,59,27,-9,11,37,-18,42,1,60,-19,82,6,2,56,-23,-8,-44,28,7,95,-76,3,-44,-28,82,47,-16,-29,-37,4,9,-50,-4,-22,-34,38,-18,-39,-27,-24,-43,-74,64,-2,-21,-76,-13,6,22,-55,89,-16,-77,124,-40,-38,35,23,-91,-22,88,19,83,62,-20,-26,10,-35,-38,-67,81,-20,36,51,9,-12,23,79,-46,-11,-8, /* [45][0][][] */ 38,-42,-72,75,72,-61,67,40,-21,-8,44,-7,2,127,44,74,-110,-40,30,-44,-58,-5,-58,27,-31,-19,-26,-85,22,-56,-22,-1,-93,19,-38,-5,-19,-4,-51,-115,65,20,20,12,79,-46,37,-30,-58,-68,-3,7,-103,-30,76,15,-121,-34,7,12,5,-26,26,-1,-9,44,76,-30,-70,-10,31,-14,16,57,24,2,-14,-28,46,-37,77,-70,-82,6,22,10,-19,5,69,-21,23,-47,44,-58,-62,0,43,40,-23,-52,8,2,8,-85,6,84,-26,-58,64,21,31,52,-44,-4,23,-1,24,-31,-81,2,19,-19,-5,-68,30,38,12,-68,-82,-50,-13,-27,-33,-12,30,-12,21,16,-83,-32,-67,-19,-41,-24,7,-3,-10,-29,-56,28,-23,-42,-19,36,-80,-12,4,7,-48,-22,-59,-54,-25,-25,-112,51,18,25,45,-37,53,39,3,61,-47,4,10,49,101,-32,-46,10,47,8,4,-26,-82,-47,73,7,-1,49,-25,-4,20,-52,-56,50,-50,-25,60,16,88,25,18,10,-49,75,25,3,-35,-9,41,46,9,-27,-96,57,-71,-63,-35,73,30,-1,-7,36,-15,-60,64,0,-10,-46,-12,-67,44,-18,7,18,42,-95,-51,-59,59,-9,-97,-62,5,-68,-5,-45,62,-38,18,59,-48,-18,9,43,-38,32,-28,0,67,36,55,-51,3,-53,51,12,-53,22,112,6,-12,58,-73,29,-8,25,-16,37,-27,-28,53,-39,-40,-35,-27,33,23,-10,-24,-42,8,-22,-19,-31,-37,-41,-20,52,-88,5,-55,9,16,-20,16,64,-57,41,8,51,5,24,27,10,83,70,-42,12,-29,4,-52,28,62,-23,54,-79,26,-91,21,-2,-37,-47, /* [46][0][][] */ 39,48,47,49,32,-12,-100,-17,-36,26,33,31,13,-62,-33,-96,49,82,-26,-42,111,-29,-1,14,30,45,22,-37,-31,41,-9,46,-11,43,53,37,75,-49,-2,-15,-27,-42,-18,-14,-7,59,-1,-3,9,-103,127,-53,-50,-29,-46,13,-34,47,-4,41,0,11,27,-44,5,-84,64,89,-62,70,30,20,16,82,39,-9,94,-80,27,-8,-60,13,10,-8,23,-38,6,36,-2,-26,-4,7,3,16,-6,-15,-39,-36,60,-22,-4,35,-24,-29,-8,-37,-2,40,-5,-17,2,-25,16,37,54,66,-30,81,7,-49,30,26,24,-1,31,-37,-45,10,-38,76,-44,-56,-27,57,41,35,-40,-42,-17,-10,-6,21,47,55,41,49,-30,-39,18,18,-16,-50,51,38,-59,-6,35,43,-102,20,18,-16,23,29,-54,30,16,44,-47,52,3,-10,56,51,77,31,-22,78,-28,50,44,-29,-92,-121,4,-61,-38,-17,32,4,44,-8,-4,7,82,5,-10,52,-6,14,24,17,-49,-13,-124,-39,-22,-85,70,-5,-42,-45,117,82,30,-18,-36,10,41,10,-25,62,4,-73,4,-53,-20,-10,-88,38,34,-1,-14,6,36,-72,35,-17,-70,52,67,-58,0,-26,64,-31,22,-1,31,58,13,68,-54,-48,-48,85,-15,74,-18,-15,-5,56,-43,-22,18,-10,9,64,-15,-58,-47,82,-31,-10,-6,-85,13,25,-33,88,88,-35,-73,-15,-21,57,53,-24,2,1,6,6,-29,-12,12,-94,0,-49,16,-92,42,-19,-52,35,-24,-42,8,-18,61,-99,-19,13,96,-18,10,59,-110,-11,85,-103,60,14,20,-18,19,-71,94,-12,-89,-6,-58,-74,-37,-45,-44,-32, /* [47][0][][] */ -26,-1,123,-41,-23,-11,76,24,10,-37,52,10,-10,-1,48,16,-21,-15,56,-85,64,-31,-17,11,80,-38,-8,40,1,98,15,69,-35,-43,25,-3,24,30,59,-1,52,-3,-25,-96,-57,53,-57,99,54,44,3,9,27,-43,22,36,30,-47,-30,-90,-13,45,-3,-29,-52,65,20,-63,18,-6,-32,-3,-55,56,19,-16,-5,-73,11,35,31,15,50,-31,99,-9,88,43,-57,43,-42,8,3,86,25,-40,10,-24,103,38,-40,-1,-31,65,-35,32,73,49,-9,-10,-60,-16,26,17,18,-39,91,-41,56,42,-56,24,-15,-29,-71,-41,-17,53,-65,27,50,-94,-10,121,-109,11,32,-3,-2,-50,-59,44,-56,36,60,-27,-64,-108,2,59,-34,-96,6,32,19,45,10,-34,-9,11,26,54,21,-6,26,-65,-24,28,-44,-53,-34,23,-5,27,65,-82,34,94,29,1,-14,1,59,23,38,30,-2,-88,38,37,-24,-8,46,66,50,61,-47,59,14,-94,-8,-9,14,-81,56,24,32,-14,-86,30,13,45,-36,13,-88,61,42,-99,-1,25,45,-35,-15,12,-33,16,25,-20,-2,-11,-67,59,-106,-69,-8,-27,43,84,-22,36,-2,11,-3,22,-34,22,-5,15,54,48,-31,-39,-65,12,27,22,72,-54,63,18,-10,-53,77,28,47,-17,-77,-27,-55,2,-60,8,-35,85,67,-75,35,-2,30,59,1,127,7,12,-56,-24,-1,0,-19,-4,-17,36,17,48,59,-12,92,-67,41,-87,-6,45,21,11,-10,26,-51,48,32,-61,73,25,35,44,-4,49,-81,42,2,-51,-118,15,-27,-3,-52,96,38,38,-6,-57,15,-34,55,112,-60,16, /* [48][0][][] */ 34,12,-19,15,11,-18,-84,-16,-15,44,60,51,-51,23,20,-9,-105,72,52,-18,-29,-11,17,12,-40,5,6,26,-80,94,-22,-39,21,-5,30,29,32,11,-5,41,56,32,48,-55,0,-29,33,43,-1,-17,33,-63,27,-22,42,22,-3,15,21,-19,-15,36,-74,31,-30,-21,-25,-34,19,14,-16,61,7,42,-28,42,5,-81,-23,-29,47,23,68,28,49,-51,-23,6,38,64,56,-56,49,41,0,6,-13,-36,-69,2,66,34,50,-11,50,-38,41,-31,-73,73,-34,19,-127,34,23,15,8,-33,45,17,-11,20,-18,-10,6,-19,50,-23,41,-45,9,-23,-92,22,41,-13,2,65,-29,-3,47,-51,-16,49,-52,-31,-14,18,0,30,31,66,-39,72,48,-42,-20,-21,-1,25,-28,-8,-115,-36,36,12,30,58,-14,-42,74,-54,-16,33,-29,-11,17,20,-9,-21,35,20,-41,7,-34,4,81,-1,30,-29,-64,-59,-54,52,-49,13,-10,13,55,-10,-26,52,27,19,-9,-55,11,37,11,-5,89,-67,-52,14,10,4,1,-59,-33,-76,48,-22,8,-18,15,3,67,-62,54,7,21,10,-9,3,-68,-37,49,-80,49,-44,24,-13,83,32,-102,49,22,-37,-110,-55,-33,7,-17,12,-20,22,-7,57,6,67,26,-26,-63,-19,68,-10,31,-24,-40,12,-6,-30,-64,6,-101,-7,-18,-5,-12,72,-64,-26,77,-41,-16,78,5,-56,-49,27,59,-13,6,-10,24,-48,18,7,44,99,38,-53,-36,-87,31,-69,-42,-22,14,4,65,-74,5,2,11,1,-12,-2,-97,-38,53,4,-4,30,-6,38,31,-7,5,27,26,-79,-34,-13,-9,-17, /* [49][0][][] */ -63,-37,-9,-26,0,33,54,-15,-52,-20,5,30,33,127,-95,10,1,17,64,-10,-10,24,-54,-81,78,20,-18,-13,-31,23,5,-31,-7,-35,-16,29,-3,24,-37,-59,41,-11,31,12,18,9,39,-62,52,-5,-15,-5,50,9,-42,-24,-17,30,-35,32,-21,-22,34,22,8,9,-55,-36,7,-14,-22,-1,-6,17,-82,-11,0,28,-22,59,10,-4,28,51,-19,-1,-36,1,23,46,-4,1,-81,-3,13,67,29,103,6,43,12,15,-8,20,-12,-37,45,28,34,-11,-31,24,-4,-14,-9,-26,-40,-30,-23,-9,-51,-22,13,24,-1,7,-12,74,-65,12,-11,16,8,7,-61,-31,31,15,-15,9,6,-28,22,31,41,-28,-102,-15,-46,34,12,-32,14,-28,6,48,-8,-24,7,-13,59,-9,-12,35,-47,7,-12,-23,20,-15,-59,20,40,11,-27,-2,-20,-46,-92,6,-23,1,29,-35,30,-10,7,-77,17,-10,1,-8,-9,-28,-58,-74,-3,17,-45,-35,-27,37,41,2,75,32,-46,-9,33,41,-16,-15,49,7,-31,-4,-58,10,25,-29,3,-26,20,27,14,-21,28,-1,9,27,42,-99,6,45,41,12,-25,33,-4,-28,29,0,-35,40,23,-8,-51,-71,3,5,-9,-28,-6,-59,-50,-27,42,50,-37,-74,-7,-73,5,8,-31,56,8,-22,-58,-42,22,17,21,1,19,-4,30,8,11,-30,-2,-20,52,-5,-71,10,13,24,34,44,10,-8,-54,7,56,-17,34,27,15,-24,14,33,-29,1,-44,-49,63,-5,4,-14,12,34,42,-46,67,-104,26,24,-10,53,6,79,-12,-3,-10,-7,-88,-62,8,-42,27,-16,-73,13,-59,-27, /* [50][0][][] */ -16,-25,-31,-68,-4,11,32,-42,22,-8,-19,-41,9,9,21,-56,-65,-7,-46,-28,-95,-60,-52,-2,-32,-46,56,-4,22,-21,35,-33,25,15,-22,16,50,67,-87,-87,50,-64,-49,-25,-50,127,-18,-3,40,58,-33,-31,36,-12,-3,65,68,46,64,-44,-59,46,-39,-14,-60,-49,-66,-73,30,47,-39,-27,21,12,-38,110,36,-25,-33,-2,-54,-15,-16,15,-5,-15,35,-58,7,3,-84,75,19,-49,-27,12,-14,-44,-29,-24,-35,-8,-80,7,18,-5,31,-14,95,22,-7,-61,16,76,18,34,-105,57,-26,115,31,25,6,38,22,40,-75,2,55,-37,-1,8,-39,46,35,-15,14,26,-73,-13,-33,-33,-18,40,-12,-31,6,43,28,-72,52,11,41,-42,-12,-24,-21,-18,25,4,5,115,22,13,-33,-39,8,-11,47,44,32,6,-75,14,-35,60,1,-7,14,43,7,19,-65,20,82,71,24,-39,-13,45,46,8,-35,16,-66,66,-17,16,-44,-55,-26,-5,-59,-26,20,-7,25,64,43,-44,34,-25,-61,-43,6,63,-9,-34,-49,-63,-22,21,44,-64,49,1,-21,13,78,12,-24,-37,-33,-20,55,-8,1,-47,68,4,-14,13,-14,4,45,-6,5,-21,52,-12,-62,77,-5,17,-42,-1,-22,-32,-11,20,-11,-25,-8,16,-51,33,10,-64,0,73,21,-10,-34,26,-13,38,13,-20,-32,-31,-99,29,-30,10,1,20,-24,7,22,12,-42,87,47,94,9,55,13,20,81,69,-7,-20,-14,18,-56,-37,-6,53,24,45,53,-52,-42,-5,43,89,-20,-40,95,-6,59,-27,43,83,-22,-19,29,-8,-54,45,-23,9,30,-21,36,-97, /* [51][0][][] */ -37,-73,-46,26,-26,15,33,16,16,55,64,15,23,-14,-24,-30,67,33,13,64,19,-31,-26,-57,-63,39,-18,-67,-13,-61,-42,0,0,8,17,25,-42,21,-9,-2,-12,9,-17,-28,-16,-17,-2,-63,-39,34,-72,-48,-74,56,-13,-32,49,56,6,-57,9,-75,-22,-40,-56,-37,-11,3,12,-14,-38,27,-58,-16,-1,-29,-37,31,-19,5,61,19,-88,18,12,24,-44,12,-36,28,-40,23,-7,37,-22,-93,-77,0,-18,37,-22,19,29,14,-18,9,-16,27,15,-50,39,23,68,-19,36,-15,-15,57,13,4,2,39,-74,61,-5,-57,-9,76,20,-40,-39,59,10,-55,63,107,6,0,60,32,-92,91,66,19,4,101,-31,20,-38,-24,-9,69,14,-18,-45,-48,-25,19,-87,14,-42,7,50,-2,12,41,-41,51,12,32,0,-33,-29,25,-14,-20,16,4,-55,38,11,-8,-45,-13,34,-39,-127,-7,-33,75,20,-28,7,-1,17,22,-4,-56,2,-13,-8,-46,44,-1,-73,37,-2,7,67,42,-20,-10,-2,39,37,28,-10,18,-11,15,31,-29,-7,-21,-28,5,-51,-40,-47,-27,36,-43,-36,-59,1,6,62,5,-60,7,9,35,13,-43,-16,-54,37,-20,36,-12,3,-3,-12,28,-4,-34,-19,73,0,-17,-33,14,-47,-35,42,20,-14,30,-74,-24,-6,55,16,-8,0,-65,1,-2,23,-8,3,-11,-12,-36,-41,-54,25,-26,2,1,-17,-16,22,77,15,-71,11,-52,28,-73,31,-55,13,-33,-11,-14,-75,36,-20,19,-59,40,-33,-26,-43,-28,-41,-55,55,50,30,27,-20,-28,3,32,-8,-53,35,35,-2,34,12,-88,57,-52, /* [52][0][][] */ -85,-15,44,-3,3,-9,30,34,-60,42,22,5,88,-74,-14,-71,14,53,52,27,44,-9,7,-26,24,-44,39,20,-3,-41,-13,85,-8,-65,32,21,-5,-57,-30,1,-30,-31,-68,7,11,14,-44,53,0,25,19,-34,-2,-90,60,-37,20,17,21,127,35,16,-26,-65,24,33,3,4,-38,-67,-4,-7,48,-16,-8,7,-33,4,6,-86,38,11,-6,29,25,21,54,-24,36,3,29,35,-32,-30,12,21,-98,-3,-26,4,19,-1,-14,24,61,1,-89,-42,-51,-31,28,14,27,-77,-12,-24,25,17,37,9,-15,-10,73,-25,13,59,39,77,24,-16,-15,108,-22,-15,-5,-56,5,-20,2,-39,31,-40,-42,20,-8,-37,12,-51,55,69,112,15,95,25,32,-40,-56,54,-43,-2,66,-27,-33,-13,-9,-38,58,8,-22,-30,-29,53,-13,-13,41,-40,-31,13,-11,47,18,-7,-52,115,-45,-87,-48,-22,2,-25,19,-92,-41,59,27,32,14,14,18,-44,-48,-56,23,23,36,-52,-29,-33,46,5,36,-37,55,-9,69,5,88,-2,-60,23,16,13,-70,-34,-16,-60,-42,-38,43,0,16,-28,-89,-5,-32,2,2,107,-23,29,62,11,-63,56,32,3,-18,-32,9,5,-56,-41,-65,-59,-9,-30,-18,-47,108,27,-24,1,3,10,16,-51,-47,3,-49,-25,110,51,-47,8,56,-79,-69,-9,-95,36,71,37,40,-25,10,-19,-27,37,-32,-62,48,-49,-64,30,29,14,-79,-19,-56,-34,86,-18,12,41,-46,-58,-50,-6,33,-43,19,15,-17,-62,33,-59,52,49,1,-41,-10,-7,8,-50,20,-121,67,-34,-58,40,8,-8,22,-37,-19,25, /* [53][0][][] */ 27,-120,-26,49,24,-75,-18,-7,52,-54,-29,63,5,-44,0,59,-48,-25,17,-56,-11,-95,-37,12,31,17,7,-10,71,13,-23,39,29,48,3,-33,-33,59,-17,-30,31,25,-59,-56,-16,32,-22,-15,-35,-12,6,9,-39,-49,16,-19,-24,-30,40,13,28,-27,33,26,31,-71,22,-28,-15,-4,29,61,-28,73,-40,-17,14,-78,21,40,65,-19,-19,1,-15,-54,24,16,-16,17,41,39,-89,4,31,-31,-84,4,45,-4,-55,62,73,-3,5,42,6,25,-6,14,-2,-12,-7,-44,35,87,-51,38,5,80,-36,20,34,77,63,-15,-68,73,-53,-43,-64,-70,2,26,7,-14,-51,73,5,43,-55,-40,30,-17,18,-3,-4,41,-27,-17,-46,46,17,-35,32,-10,-66,-43,-127,18,85,3,55,-59,-15,-55,27,117,48,-5,-20,22,-27,39,-40,2,63,103,81,17,-14,-64,-7,21,32,20,-116,-7,-60,-7,-53,-51,27,-59,36,-38,-82,15,-51,45,-46,-104,41,-15,29,72,-78,-77,-46,17,-9,55,-30,81,-30,-25,58,-47,3,32,9,49,-38,26,26,24,4,33,47,10,34,-17,-55,66,14,36,-26,32,-19,-18,15,47,84,-25,53,-96,40,10,-21,-62,-56,34,27,55,-27,-3,38,-59,-29,-6,-60,58,61,1,-53,-39,23,14,34,21,13,-60,79,-4,-2,45,-7,-28,33,-69,-17,97,45,-25,-3,-1,44,55,11,54,30,-24,-8,1,29,-53,-33,27,127,21,17,-71,43,-74,-35,50,5,-41,20,-15,-26,-33,35,-34,-92,28,-11,-81,19,54,-30,62,30,23,-11,-5,4,-51,60,46,-7,25,10,-39,-75,-63, /* [54][0][][] */ -4,-28,23,-12,-20,14,0,11,-70,46,26,49,-38,2,18,32,-36,7,-11,16,41,-48,-43,-35,64,-12,-20,15,32,38,78,39,16,31,-46,46,-11,-28,14,-30,-1,-14,5,29,45,1,13,61,-8,5,21,-34,-62,-3,29,-39,-35,-43,5,71,-1,-45,5,-54,-5,-28,42,12,0,30,56,-69,27,58,30,-17,-43,83,17,45,11,-40,-48,-54,-89,-68,-29,17,14,63,72,-105,-34,76,32,-6,2,-78,-21,-38,10,-19,79,-16,50,-27,-26,-30,83,-10,53,67,-42,36,-107,62,-25,-15,115,31,25,-18,-42,37,54,-14,-3,-4,-94,-29,0,7,-37,4,14,64,-53,-11,0,-10,-10,13,26,48,23,12,-27,-63,-23,49,-3,-11,25,48,36,-44,-67,13,-7,22,19,42,-10,34,65,121,17,30,-46,37,8,-21,42,3,98,3,56,93,-13,29,31,20,5,21,73,-10,-80,-74,-41,-63,-13,29,-2,13,-15,-43,-40,26,-5,-17,-38,6,-46,-2,-25,-58,29,7,28,0,34,26,23,68,20,15,51,14,62,44,56,11,7,-24,-18,-50,27,35,32,-42,-8,-6,-25,9,-94,60,-86,47,0,21,-30,14,24,19,-6,-63,73,-4,43,-56,-37,-28,-21,12,43,36,58,-46,-51,-68,-80,46,19,-32,24,-37,-14,21,40,-26,11,-23,19,4,26,-23,32,-70,-76,77,5,19,33,-39,-48,-13,-51,10,-13,-31,-9,127,-25,19,-77,-31,9,42,72,-42,-33,34,10,-28,-3,-17,22,-53,41,70,5,-68,-6,-37,-73,-43,-36,-10,-3,-66,-5,-18,-77,-31,49,45,51,-28,71,-6,-2,-7,26,4,6,70, /* [55][0][][] */ -68,-8,26,-44,-10,-25,-102,46,97,-31,4,-7,-9,-66,-37,127,-12,77,-39,21,14,5,-35,50,-13,-14,29,-70,-6,-58,-73,12,-55,38,17,56,-5,0,31,-67,13,38,-25,61,-67,63,14,104,-41,-5,-19,-21,10,24,-46,47,-10,-38,21,3,101,24,28,5,0,-33,-24,-31,37,94,-60,31,34,-21,18,-18,-71,-48,0,12,-102,71,34,61,28,-72,28,-24,58,-29,-108,33,84,40,-16,27,46,-35,-43,81,-43,75,7,-83,17,10,20,10,-69,3,69,-7,-39,-1,34,10,-23,-61,70,-22,-59,-94,22,44,-20,-64,41,-7,69,-66,93,-14,-24,-26,70,-38,-50,-38,24,-40,-85,21,6,-10,27,78,6,94,112,47,-9,-25,11,57,65,22,-16,89,23,34,57,5,69,-48,-15,96,-9,-25,4,75,53,-42,-11,-69,4,-11,-1,56,-13,-20,47,-67,-4,50,6,97,-55,-23,55,37,8,71,12,101,-31,-76,30,54,29,76,-40,43,-41,-2,-16,-28,21,58,25,-24,126,65,33,36,-40,-14,-31,43,18,-86,26,0,57,9,37,3,12,-89,23,-19,-35,31,-15,32,8,77,-111,37,-58,48,30,-2,44,-36,-49,-90,-56,-111,36,-42,-56,50,-8,-62,-63,67,28,-14,4,17,-37,-2,18,5,24,43,-12,-27,42,-12,-62,-18,-80,10,46,10,-74,28,-22,93,-44,51,-48,21,2,-22,-31,63,-63,3,-18,36,-32,-65,-7,-32,67,33,-45,1,-100,15,-62,-22,-53,-14,41,0,47,66,42,77,38,61,35,34,22,6,80,-6,101,24,16,-19,-88,-47,-4,-2,-55,70,57,-28,-35,22,85,20, }; const TfArray<4, int> tensor_dimension14 = { 4, { 56,1,1,336 } }; const TfArray<56, float> quant14_scale = { 56, { 0.0021568199153989553, 0.0020105212461203337, 0.0023954547941684723, 0.0018803047714754939, 0.0022719050757586956, 0.0019116125768050551, 0.001764406100846827, 0.0018372975755482912, 0.0024540591984987259, 0.001846819301135838, 0.001918829046189785, 0.0021568126976490021, 0.0016561205266043544, 0.001797053380869329, 0.0024321305099874735, 0.0014771423302590847, 0.0019013183191418648, 0.0020490696188062429, 0.0020820989739149809, 0.0024713810998946428, 0.0017653316026553512, 0.0016123095992952585, 0.001557394745759666, 0.001786649227142334, 0.002292960649356246, 0.0016106285620480776, 0.0016396908322349191, 0.0024633577559143305, 0.0024505772162228823, 0.001963131595402956, 0.0020460505038499832, 0.0015438207192346454, 0.0016879871254786849, 0.0017502135597169399, 0.0023766148369759321, 0.001808784669265151, 0.0020605998579412699, 0.0017774782609194517, 0.0015440111747011542, 0.0020877222996205091, 0.0017404182581230998, 0.0017496278742328286, 0.0017632346134632826, 0.0016370005905628204, 0.0015535003039985895, 0.0018455705139786005, 0.001976346131414175, 0.0014069735771045089, 0.0018111462704837322, 0.0017599969869479537, 0.0020478649530559778, 0.0020579257979989052, 0.0018077624263241887, 0.0015511857345700264, 0.0017636093543842435, 0.0015193739673122764, } }; const TfLiteAffineQuantization quant14 = { (TfLiteFloatArray*)&quant14_scale, (TfLiteIntArray*)&g0::quant13_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data15[336] = { -2049, -2489, -1599, 679, -1484, 1597, 940, -787, -3184, 3954, -2538, -3100, -623, -900, -1563, -4115, -239, -1554, 399, 633, -2839, 1445, -2582, -3223, 344, -752, 545, -26, -787, -158, 4374, -3215, -88, -3673, -3382, 1365, -811, -2709, -633, -382, 531, -974, 410, 518, 1185, 3507, -2379, 502, -1776, -589, -1646, -2320, 1437, -2815, 1, -1952, -2691, -1345, -181, -1868, -2290, -1431, -1125, 4319, 924, 1855, 1520, -920, -2923, -1013, -1238, -1769, -58, -2993, -3326, 2247, 15, -1118, -121, -5119, 6172, -2146, -2420, -2766, 963, -2506, -1912, -970, -1580, 3662, 2584, -2250, -4313, -1600, -1659, 58, 933, -4006, -2218, -1484, -4179, -598, 6117, -527, -164, -921, -1541, 2387, 3229, -2491, -987, 1139, 866, -958, -454, -894, -361, -950, 5299, 193, -4542, 1220, 6857, -156, -1550, 1725, 1015, -2359, -1371, 3261, -324, 69, -3466, -502, 695, 329, -3186, 4672, -4396, 413, -2777, 4096, -2412, -1316, 1095, -1282, 1545, -2805, 1752, -2993, -843, 437, -2486, 5, -1134, -2511, 2230, 6930, 3664, -2042, -403, -1410, 777, -2143, 2067, -408, -3591, -644, -85, 2213, 1095, -3498, 1607, 200, -1677, 1140, -1825, -155, -581, 2368, -5201, 2295, -1639, -131, 1748, -1248, -50, 1453, 1746, -17, -2772, 2594, -1408, 375, 1251, 2725, 2252, -2572, 234, 1044, -1980, -1046, -2890, -1444, -2059, 2056, 1347, -974, 375, -958, 2374, -3131, -4186, 2002, -2344, -3601, 6271, 60, 728, -2353, 4140, -2712, -1576, 411, -614, -2180, -2285, -2332, 1883, -3200, -104, 2981, 6119, 200, -2731, -2765, 4805, -5453, -1675, -496, -974, -1243, -611, 1953, 802, -759, -1650, -144, -3300, -1428, 3164, -132, -1788, -197, -24, -2171, 3539, -559, 64, -2591, -626, 1527, -2301, 763, -2621, 3125, -630, -181, -941, 2210, -544, 2539, -1020, -4172, -736, 1488, -960, -2217, 2442, -110, -414, 80, -3013, 585, -3174, -1948, -357, -2038, -1714, -3883, -6267, 1034, -1360, -2233, -1282, -1482, 1523, 72, -1499, 543, -3591, -820, -2876, -474, 4876, -643, -232, -4690, -1146, -138, 140, -910, -405, 159, -2641, -300, 82, -1704, 4012, -966, -112, -849, -427, 2033, -1489, -1559, 866, 831, 1210, -3237, -2909, -1828, 698, 494, 4799, -187, }; const TfArray<336, float> quant15_scale = { 336, { 0.00024111590755637735, 0.00018448052287567407, 0.0003234840405639261, 0.00023074759519658983, 0.00024252691946458071, 0.00020531352492980659, 0.00016782378952484578, 0.00032428986742161214, 0.00028013388509862125, 0.00027772723115049303, 0.00027595387655310333, 0.00024534124531783164, 0.00024993368424475193, 0.00027889016200788319, 0.00027888602926395833, 0.00014025719428900629, 0.00022928640828467906, 0.00052514579147100449, 0.00013976976333651692, 0.00024854057119227946, 0.00023504150158260018, 0.0002172809763578698, 0.00022862538753543049, 0.00024416475207544863, 0.00027292067534290254, 0.00016896205488592386, 0.00017966206360142678, 0.00023858902568463236, 0.000242295500356704, 0.00027139979647472501, 0.00030809288728050888, 0.00022671034093946218, 0.00028931390261277556, 0.00024765764828771353, 0.00034611989394761622, 0.00023586436873301864, 0.00031805952312424779, 0.00022913016437087208, 0.00043162822839803994, 0.00025035918224602938, 0.00026890149456448853, 0.00028225252754054964, 0.00025104518863372505, 0.00027805552235804498, 0.00020816054893657565, 0.00024848716566339135, 0.00029442607774399221, 0.00036759753129445016, 0.00039552274392917752, 0.00043472327524796128, 0.00026448571588844061, 0.00023901583335828036, 0.0002009283343795687, 0.00028124448726885021, 0.00030977465212345123, 0.00031805405160412192, 0.0001845628721639514, 0.00031760518322698772, 0.00021870117052458227, 0.00026657336275093257, 0.00023515193606726825, 0.00033447469468228519, 0.0002075290831271559, 0.00022076594177633524, 0.00025393831310793757, 0.00020141396089456975, 0.000202170544071123, 0.00031764688901603222, 0.00018726137932389975, 0.00019501344650052488, 0.00023146164312493056, 0.00033826663275249302, 0.00017938774544745684, 0.00020715752907563001, 0.00023849609715398401, 0.00031518717878498137, 0.00030868229805491865, 0.00021492532687261701, 0.00027271342696622014, 0.00023286687792278826, 0.00022170800366438925, 0.00029203444137237966, 0.00030969330691732466, 0.00026822893414646387, 0.00024453314836136997, 0.0002302143257111311, 0.00020296897855587304, 0.00021284141985233873, 0.00019226183940190822, 0.00016505576786585152, 0.00022773405362386256, 0.0002805673866532743, 0.00019282265566289425, 0.00032359102624468505, 0.00021871247736271471, 0.00023099363897927105, 0.00014450338494498283, 0.00015236181207001209, 0.00018722454842645675, 0.00012418489495757967, 0.00022218935191631317, 0.00028349435888230801, 0.00019439123570919037, 0.00020244681218173355, 0.00047567536239512265, 0.00042960286373272538, 0.00022799032740294933, 0.00021078366262372583, 0.00026684568729251623, 0.00023070648603606969, 0.00045393430627882481, 0.00021501860464923084, 0.0002680620236787945, 0.0002141908771591261, 0.00021522755559999496, 0.00021757865033578128, 0.00020364423107821494, 0.00047999486560001969, 0.00021088383800815791, 0.00018784336862154305, 0.0002209620870416984, 0.00032746288343332708, 0.00015206332318484783, 0.00018336590437684208, 0.00024057109840214252, 0.00020172554650343955, 0.0001809867681004107, 0.00031140915234573185, 0.00026609763153828681, 0.00021440460113808513, 0.00021687717526219785, 0.0001785532949725166, 0.00027205882361158729, 0.00022593174071516842, 0.00022641538816969842, 0.00013336200208868831, 0.00020596660033334047, 0.00023934271303005517, 0.00021099942387081683, 0.00030103963217698038, 0.00021185704099480063, 0.00017385599494446069, 0.00019637464720290154, 0.00025936061865650117, 0.00025686569279059768, 0.00038685891195200384, 0.00018232334696222097, 0.00025573821039870381, 0.00041146393050439656, 0.00030631903791800141, 0.00033886681194417179, 0.00028806223417632282, 0.00018969467782881111, 0.00019726107711903751, 0.00024373602354899049, 0.00019882193009834737, 0.00014681706670671701, 0.00016184213745873421, 0.00032176950480788946, 0.0002475926885381341, 0.00030563105246983469, 0.00023180621792562306, 0.00019422164768911898, 0.00018816352530848235, 0.00016378921282012016, 0.00027356509235687554, 0.00025913826539181173, 0.00021829360048286617, 0.00028078467585146427, 0.00024046085309237242, 0.00023337482707574964, 0.00030742786475457251, 0.0002095215895678848, 0.00022662173432763666, 0.00020045306882821023, 0.00018768220616038889, 0.00022765663743484765, 0.0002118242991855368, 0.00021934862888883799, 0.00020559750555548817, 0.0001776732096914202, 0.00022116604668553919, 0.00020796067838091403, 0.00021363186533562839, 0.00050956173799932003, 0.00032401358475908637, 0.00082748971180990338, 0.00036538304993882775, 0.00017085070430766791, 0.00031492579728364944, 0.00020267821673769504, 0.00034861240419559181, 0.00044038615305908024, 0.00024395958462264389, 0.00035934100742451847, 0.00019509773119352758, 0.00027817091904580593, 0.00026691338280215859, 0.00024608042440377176, 0.00024154449056368321, 0.00020493206102401018, 0.00020158459665253758, 0.00027026704628951848, 0.0002204576157964766, 0.00017467475845478475, 0.000430481624789536, 0.00020310888066887856, 0.00033729645656421781, 0.00027964997570961714, 0.00024285960535053164, 0.00016460647748317569, 0.00019393432012293488, 0.00020229282381478697, 0.00022793338575866073, 0.00029398853075690567, 0.00025912228738889098, 0.00020477702491916716, 0.00023016505292616785, 0.00021428171021398157, 0.00026395038003101945, 0.00018399047257844359, 0.00021357022342272103, 0.00029159378027543426, 0.00048973638331517577, 0.00020176978432573378, 0.00018187568639405072, 0.00013193000631872565, 0.00026213872479274869, 0.00019959705241490155, 0.0001750626543071121, 0.00020987301832064986, 0.00028266437584534287, 0.00019552474259398878, 0.00015546433860436082, 0.00039450693293474615, 0.00025126338005065918, 0.0002522009308449924, 0.00017569809278938919, 0.00028311865753494203, 0.00028461497277021408, 0.00017529775504954159, 0.0002626356144901365, 0.00019510237325448543, 0.00020675199630204588, 0.00029824595549143851, 0.00032664299942553043, 0.00026219824212603271, 0.00025554155581630766, 0.00025858249864540994, 0.00049292540643364191, 0.00025521809584461153, 0.00019496302411425859, 0.00034319036058150232, 0.00035358208697289228, 0.00032163423020392656, 0.00029077372164465487, 0.00028881718753837049, 0.00037156822509132326, 0.00021343970729503781, 0.00020877331553492695, 0.00028490868862718344, 0.00023489678278565407, 0.00026642408920451999, 0.00024240805942099541, 0.00019619436352513731, 0.00031598290661349893, 0.00027568743098527193, 0.00033137100399471819, 0.00020669447258114815, 0.00027333819889463484, 0.00025568276760168374, 0.00026411257567815483, 0.00037883780896663666, 0.0002180036244681105, 0.00037699856329709291, 0.00024461638531647623, 0.00029820192139595747, 0.0003289400483481586, 0.00021227617980912328, 0.00034090937697328627, 0.00017881293024402112, 0.0003548256354406476, 0.00036079142591916025, 0.00040388989145867527, 0.00024352807668037713, 0.00016831995162647218, 0.00022434117272496223, 0.00028871805989183486, 0.00022326427279040217, 0.0002720822230912745, 0.00019690145563799888, 0.0001941575319506228, 0.00039979390567168593, 0.0002002715045819059, 0.0002468713209964335, 0.00033055519452318549, 0.00022041155898477882, 0.00024112334358505905, 0.00027404297725297511, 0.0001970195589819923, 0.00020234975090716034, 0.00033113878453150392, 0.00036052853101864457, 0.0002625508641358465, 0.0002079413243336603, 0.00035562616540119052, 0.00020613793458323926, 0.00011590029316721484, 0.0003139166219625622, 0.00038292707176879048, 0.00020501065591815859, 0.00019274004444014281, 0.00037039426388218999, 0.00028018432203680277, 0.00030487618641927838, 0.00019450523541308939, 0.00032501760870218277, 0.00027405595756135881, 0.0001965780247701332, 0.00040335880476050079, 0.00017499223758932203, 0.00031944856164045632, 0.00022924816585145891, 0.00029205487226136029, 0.00017955929797608405, 0.0002081445709336549, 0.00036354511394165456, 0.00035927793942391872, 0.00019497922039590776, 0.00025376118719577789, 0.00029380762134678662, 0.00021847679454367608, 0.0001760329760145396, 0.00042817377834580839, 0.00017110907356254756, 0.00023304857313632965, } }; const TfLiteAffineQuantization quant15 = { (TfLiteFloatArray*)&quant15_scale, (TfLiteIntArray*)&g0::quant9_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data16[1*3*3*336] = { /* [0][0][][] */ 18,-126,-67,127,49,32,-113,10,52,-14,-86,55,22,63,16,-10,91,7,-107,-21,51,-17,-40,-7,71,83,-24,-121,5,-42,-40,-75,-63,-15,-43,-56,50,13,56,71,-101,-102,-14,101,33,-55,-10,-44,30,14,3,-97,-94,-33,127,127,67,70,127,11,-96,45,-94,-41,-85,-18,127,-22,43,127,15,127,127,64,127,-42,17,-2,14,37,-28,38,-23,29,-45,14,-32,-113,-22,-86,-105,-39,-51,-14,-16,76,-66,-29,-2,-93,127,42,-37,33,-18,4,127,-101,-64,29,127,-45,44,-37,-65,-23,-40,-17,50,-9,89,127,-52,-23,44,-126,-40,-9,127,127,69,127,120,-42,-52,123,-87,-60,20,127,1,-16,-104,-57,-46,43,87,99,-44,-29,35,-92,1,16,28,44,-99,-95,-61,-127,-94,10,-13,73,-64,20,15,20,104,8,-31,31,83,-127,-45,-53,57,46,127,42,6,-101,7,67,-40,-63,-20,6,-35,-10,-103,-97,8,-46,-58,-68,-38,127,-45,-107,127,70,89,-49,7,71,1,49,-97,49,-46,77,29,-7,62,27,47,-127,49,127,48,-34,-63,-33,32,78,-61,-19,-5,48,113,-68,-1,-35,-54,24,-94,44,113,-62,48,-77,-26,127,-34,-59,-6,-75,22,-12,-54,85,-48,78,-31,94,-30,78,-43,-104,81,54,-40,-48,127,-51,-76,-68,-25,-58,109,-36,14,-6,3,-58,82,-33,-53,-26,127,29,9,-5,2,-7,-67,-48,0,80,53,-52,66,-16,-44,80,79,-24,44,9,11,38,127,-3,-56,5,-99,127,-127,-13,-48,127,-21,-96,127,114,-44,-85,109,-44,-68,102,127,-17,17,127,127,-85,-19,25,51,-19,28,35,-108,127, -40,106,30,-16,80,62,119,5,-30,-97,-11,-35,13,127,102,-85,0,29,-126,80,127,-37,6,-3,56,127,58,0,71,43,-127,52,8,-4,-39,-54,56,97,-38,-109,-75,-2,-38,-40,59,-127,-21,-23,21,-27,17,127,62,16,-23,28,84,43,-42,127,-35,-55,60,-97,28,1,-109,7,-87,-59,74,24,-103,-49,69,-68,-1,-91,65,95,-25,76,6,27,17,-67,-21,-49,88,-123,-68,30,22,127,83,-42,-29,100,-127,122,52,-86,-68,-47,-52,-7,-94,-127,52,39,25,-127,-32,-33,-30,-22,-63,-12,-70,66,21,-9,-127,-94,-16,-57,100,9,64,43,-48,35,24,-61,127,-125,-4,17,92,-80,-57,-35,100,3,-31,-2,-127,64,-42,34,-67,-61,121,127,13,30,-123,-127,-103,95,-45,85,-59,1,-69,37,127,53,-7,61,25,-13,127,-38,111,-51,-20,73,-94,6,36,-69,-44,31,-36,119,-15,-41,33,-31,90,14,24,7,46,-119,-89,65,47,-11,-84,57,23,6,62,-24,-71,-28,-70,75,-19,113,127,68,44,56,22,-72,-90,99,-126,127,-56,-9,46,-62,2,-16,55,9,48,28,-94,59,62,36,-103,127,7,-75,74,-28,127,-54,-35,-11,50,78,19,12,95,67,38,74,-66,-35,-67,-9,-54,-35,-89,-59,50,-127,114,-69,-24,-29,-67,-40,-105,44,-14,-8,30,-53,-127,127,-100,-39,44,17,-6,-23,-35,60,127,-16,4,-17,91,-90,4,25,37,-9,-95,-59,13,-85,121,58,49,-69,-34,-15,-38,-86,51,-25,-67,67,21,-41,31,-16,-12,-2,-74,-20,56,-32,-61,-15,-37,2,-25,22,-71,12,65,-57,47,-50,-127,-33, -97,86,24,44,62,-41,-114,127,102,34,67,73,-83,6,22,-73,-65,73,-89,66,-49,-100,50,7,7,-122,-60,57,-22,63,-59,-5,20,21,-6,-104,11,3,-32,-3,7,35,-76,-84,18,-36,64,-26,18,-58,45,22,59,-9,-28,40,-92,-18,-4,-74,13,-49,-21,-39,-87,-112,55,-82,-69,-20,-25,17,-27,88,-33,106,82,85,-36,-2,-111,22,-13,-55,81,-24,-62,127,-47,21,63,10,50,36,-22,-84,-87,-47,54,-22,-114,107,-22,41,127,-28,-30,28,-54,-89,-49,-53,-11,-61,11,15,-109,46,-127,97,-35,-27,25,77,-35,80,27,12,18,8,28,-80,127,127,-35,103,-118,16,-46,-35,9,-81,112,-33,-73,-53,-26,-15,-52,8,-127,48,-3,-94,-6,-22,-73,-114,43,34,-24,32,2,-46,81,-51,-32,6,-73,-8,-13,32,-33,77,23,16,-15,55,-28,-89,2,56,40,-20,54,92,5,-5,-59,55,-83,127,-45,48,-9,42,-29,12,80,-30,7,127,-14,7,-101,15,13,-33,2,89,-119,100,15,127,98,127,-116,96,-127,67,102,-70,-24,39,70,-27,116,8,25,-84,-127,-66,-50,-103,82,18,-127,52,-121,34,127,127,-61,-93,61,28,-48,30,15,1,-31,-20,127,28,82,-10,12,-44,107,-65,26,127,-34,81,44,-78,110,15,95,71,-38,37,38,21,-69,-53,110,74,-9,-58,16,38,11,127,3,-25,-29,-30,101,119,69,-113,-68,-62,127,-127,16,-26,15,-95,-63,30,-22,106,65,-29,-46,44,-53,-55,11,9,127,-30,52,17,8,127,44,-38,-1,-63,63,36,12,75,-29,-40,-61,-57,2,-13,-127,52,0,-100, /* [0][1][][] */ 60,127,127,-41,88,-127,-120,58,-10,-97,68,14,102,-70,-80,82,-45,76,66,-127,121,-42,127,93,-62,120,-57,-61,-12,127,-63,78,61,124,42,39,-20,60,17,76,10,-7,-96,-73,-89,-1,-25,127,26,-16,-18,8,17,-46,-2,69,-123,16,76,-8,-27,4,-42,-127,45,-105,23,91,127,58,122,10,-7,10,67,-29,110,-31,34,91,-127,4,-20,127,-110,57,-14,-25,109,2,71,-51,106,58,-101,24,-83,14,104,127,-31,-30,-64,127,56,13,25,-49,-94,119,-8,14,-8,-42,33,4,127,22,-30,-88,-85,68,-106,25,71,-107,124,-14,22,83,74,28,8,96,-27,50,45,-67,127,5,75,-63,-33,-6,42,51,52,32,-28,51,-58,-21,-127,2,8,87,39,26,-51,8,127,6,-72,-4,-91,-26,68,-45,127,-79,127,64,15,28,-22,-26,7,86,59,-127,82,79,-101,89,-48,-46,11,56,-60,-59,127,24,56,-22,-54,90,29,91,-78,-14,31,73,127,113,-58,127,-61,-19,-18,16,-126,-69,52,-70,22,-30,27,96,118,104,-69,67,-7,-47,127,115,-97,8,-86,127,-5,-42,-95,-83,-1,96,59,115,-6,-49,-49,95,-22,14,127,-5,-39,38,-127,-45,-41,-39,37,-45,-20,66,14,8,80,22,41,-55,127,94,113,30,127,13,50,-41,96,-44,-8,89,-43,-60,1,48,34,127,-37,127,10,-45,93,-82,31,54,-64,-64,127,100,-8,127,-8,-11,-127,32,51,64,-90,-5,85,-46,-79,24,127,57,-33,127,-105,61,76,-127,104,-74,127,85,75,127,127,-2,71,-127,-121,22,8,127,9,-10,36,40,-99,127,-84,-103, 22,39,10,-98,-35,70,68,-80,55,-3,42,5,-110,-48,44,127,-48,-4,30,-23,0,-103,90,51,31,-32,62,-71,-9,-118,22,-15,-56,26,51,-41,-14,-91,-23,66,31,45,92,-6,-15,54,127,-32,39,63,1,43,-74,127,20,-37,127,-44,-63,12,77,5,61,13,74,-66,-63,-10,102,-109,-3,-8,91,14,-3,51,35,89,-127,26,-72,-42,127,15,-23,20,112,56,30,-109,15,62,92,-34,-29,-14,-48,63,63,96,45,7,-127,-87,51,52,17,-116,-45,48,-15,109,-37,23,2,-65,100,-19,-46,-113,127,-37,-118,-60,65,87,-125,25,-59,-16,127,-52,31,44,-21,13,47,-52,-24,42,35,-72,-4,69,-101,6,46,48,1,9,112,63,48,-90,127,-61,-20,-126,35,78,45,49,80,123,-105,-2,96,25,-52,-30,-79,25,-79,-79,0,-75,-21,-127,77,-93,32,70,127,-127,-20,-18,22,-60,-122,-51,-63,-53,-18,-111,63,93,-48,7,-58,-36,44,-16,49,-32,91,-37,127,63,83,-49,-75,14,14,-87,-27,-38,-18,71,48,-60,23,81,19,13,-11,-61,127,13,-127,81,39,-98,-18,41,127,-5,6,73,31,72,-87,20,65,-86,-79,0,-38,-24,105,69,-68,65,-5,-70,-59,-6,-66,-81,57,34,-29,36,14,90,30,-22,15,-8,11,15,-5,-11,-29,55,-27,31,24,123,47,1,27,-29,63,12,-30,-90,-51,81,59,127,72,20,17,-15,-40,42,61,-67,-41,32,-30,25,18,-13,-66,4,66,77,68,7,-17,47,-29,50,-33,51,40,12,-82,83,97,17,-47,-51,80,97,6,-46,-44,50,-24,127,126,72,-97,74, -38,120,0,95,-109,-75,-10,121,-15,-78,86,10,127,-124,127,113,-108,127,105,28,87,7,-63,-44,-127,-1,-84,-80,-127,61,-35,127,-45,74,9,127,-68,64,-25,-31,-19,-91,-45,127,5,50,17,3,-6,57,30,86,78,93,-76,-5,-49,-83,51,70,88,45,-119,-115,-64,127,34,108,32,70,-90,93,-57,127,98,-127,-38,3,15,45,-61,127,64,107,51,82,-33,8,-67,127,23,127,-77,-32,50,57,-44,126,44,-122,95,7,-68,-25,7,127,37,50,-78,43,46,39,-37,-91,102,-106,1,22,-35,79,18,-55,34,127,89,-40,-112,127,-29,11,-66,-10,24,19,-57,-49,2,-127,35,-47,65,127,62,-127,-94,50,63,127,-11,-127,-50,-127,32,-19,8,-31,-33,-53,-29,-38,-60,10,-109,-127,87,-44,8,127,48,96,-59,20,71,44,90,127,91,-74,25,-114,-49,20,61,-41,84,19,-8,-23,-95,127,-81,13,127,5,-127,-45,127,-10,8,40,82,0,38,-60,127,-13,0,-22,-83,19,127,-127,99,56,-16,-12,-84,7,-6,26,-127,-58,-52,127,120,-22,22,3,95,50,-68,-57,-84,-64,23,127,-115,-8,7,-19,45,117,-58,-85,-57,10,-13,92,55,39,-127,-50,90,47,-45,4,-24,123,127,127,103,-112,88,-73,-46,56,-4,127,-50,-127,52,-127,-1,127,-16,-73,-49,1,86,53,-60,-33,-5,86,83,22,-26,-24,-53,4,-50,-61,-12,-26,14,-29,107,60,127,127,-13,2,45,7,16,51,-18,-48,-71,-10,17,35,23,37,46,29,-101,-2,-94,55,-124,127,-23,-68,-64,107,-29,-58,-40,-18,1,31,-72,-11,72,16, /* [0][2][][] */ -59,109,-7,-15,-70,-77,127,-2,36,37,127,41,29,61,71,48,109,-11,111,-83,18,3,-10,-90,-17,127,119,13,111,-67,-88,6,-61,127,44,50,127,21,24,-127,78,42,127,-63,-105,12,18,59,-22,21,4,-57,114,-76,75,44,-28,-16,-48,-8,16,26,24,91,-10,-23,-51,-101,23,91,127,-75,-2,-51,21,-39,127,-96,30,68,62,123,-67,93,127,127,-65,100,50,40,-8,-44,-31,2,55,127,-54,-87,59,-26,57,127,-96,99,-32,48,123,39,36,-47,57,-98,6,127,-127,60,-95,127,11,-66,112,-49,111,-21,-6,62,-36,12,9,-76,47,107,51,-13,-112,80,127,-117,50,-9,73,117,67,-18,16,36,-126,45,-127,120,50,75,-4,106,-64,127,126,2,8,52,25,-21,-94,-89,127,-69,-37,-118,-2,-39,-127,30,-122,-48,60,-42,-96,-18,41,48,124,-35,-45,68,17,-127,-15,127,11,82,38,-22,-2,127,42,110,-75,-91,-66,15,-47,-40,-66,-110,-63,56,-57,28,2,55,-88,-30,11,-83,127,109,-76,-6,-92,-16,-52,-47,92,32,-69,-69,92,39,-51,-49,-123,127,127,60,-65,-62,-28,76,-14,-79,103,18,20,119,-36,127,-20,-127,-88,-127,-21,-75,100,127,127,-35,4,36,-21,-13,10,52,45,-73,80,-74,4,62,67,-53,127,-50,-1,2,43,93,-26,-32,11,54,-72,-31,24,16,40,87,-25,12,-52,16,82,56,-47,96,10,58,-109,-127,-64,-60,127,-84,-47,105,48,127,20,0,32,-42,50,-69,54,-93,21,-69,90,70,-127,122,-64,-95,51,75,-47,-41,-11,6,12,74,127,6,-56,42,55,41, 127,-97,52,-47,43,-76,-31,56,127,-127,57,127,24,-4,-12,24,23,5,127,-35,20,127,-84,49,-33,67,-127,127,46,31,-58,106,127,26,127,-16,-15,127,38,16,26,12,-47,10,-54,-79,-47,-21,-40,-57,-55,8,-45,31,-100,19,45,127,-41,-29,127,127,65,4,-127,41,-8,14,80,-20,-29,-14,-57,118,10,-58,-90,-42,47,35,-101,15,17,-5,-7,43,127,4,80,-21,-127,-62,105,-7,127,-10,127,127,40,-80,106,-29,-5,-64,-30,-49,73,70,-10,10,-17,-35,-60,64,110,127,6,4,-99,127,69,-83,-110,32,58,-127,-40,-5,9,-127,-75,-102,-22,-68,-105,-127,112,-78,104,-36,13,-127,-127,88,80,48,-30,-104,61,36,117,-52,-25,-39,-84,33,127,-20,-23,-104,-7,-122,127,-1,-25,4,-12,-96,6,-127,102,50,-86,123,-64,-41,127,22,-64,66,127,-127,120,-91,9,17,-31,49,127,72,87,-36,64,110,-86,-94,13,56,127,12,33,-58,107,101,-44,-42,-96,-44,-52,41,-104,24,1,-15,-8,89,-127,-8,-105,1,-67,-32,85,19,-85,127,28,127,70,72,-39,21,-81,123,28,14,-99,-27,-24,127,91,7,-100,11,51,55,82,-104,99,-1,-44,-96,-8,16,93,127,-127,-65,-115,80,-57,-39,56,19,-61,26,-19,35,18,2,122,-62,35,124,54,-89,91,-52,-127,55,-116,-41,127,-33,127,102,-41,18,127,89,16,85,7,-5,-16,8,3,63,49,-89,123,-35,91,-52,-96,29,-78,115,50,42,127,-54,-9,116,40,-23,-42,69,-37,-51,-101,-26,-84,59,127,-100,-41,62,127,127,23,-78,-73,-66,-66,-50, 48,107,-30,78,127,116,-61,-36,44,22,-11,30,32,89,-103,34,127,31,-19,49,-64,-76,91,127,52,-16,-29,2,-65,-15,9,-35,-53,71,-25,-62,0,-1,127,59,127,127,55,66,127,37,14,27,127,127,127,-61,-127,-37,55,-25,95,88,60,77,-17,-20,127,-39,54,81,34,127,58,87,-10,27,-6,-37,-7,11,-8,127,121,127,-115,15,-12,59,-84,56,-50,-71,-127,21,-91,-27,127,2,82,-53,123,118,88,-6,-81,76,71,66,58,106,-21,7,-127,127,88,-6,127,-27,-43,-4,-125,-12,-59,80,75,9,-42,-60,-127,-73,127,-15,3,-118,-50,-3,4,-68,64,-73,30,116,95,92,127,-105,93,-25,-127,127,95,-63,-117,-32,-64,36,-27,-51,-2,-43,-60,-27,127,37,126,127,33,120,-125,127,25,-28,49,25,-70,127,59,-15,-127,-38,42,-6,-82,90,-35,-74,-115,-9,127,-6,127,-18,-43,-33,120,80,7,-102,-36,-127,4,-54,-122,127,-71,-68,71,127,91,-55,22,127,127,-127,14,19,43,24,95,37,-21,99,106,59,17,-19,127,40,30,16,-50,-14,-46,12,34,120,-77,-127,18,-16,-47,-23,127,-77,-73,123,48,-28,-38,-65,127,-33,3,-12,-3,127,-38,-24,80,86,-17,127,-58,52,127,-115,-26,-57,-65,127,-38,-40,127,-27,-14,89,127,109,127,127,-35,42,-57,-86,119,-29,-19,-50,75,127,82,127,-109,-20,36,127,127,-30,30,59,-47,63,-35,-11,42,127,1,127,-127,-60,127,93,-50,-31,-107,-123,-50,-58,110,127,94,8,65,-48,105,-42,94,-61,94,22,36,13,-17,29,112,63,112,-24,93,100, }; const TfArray<336, float> quant16_scale = { 336, { 0.010247426107525826, 0.0078404219821095467, 0.013748071156442165, 0.0098067726939916611, 0.010307393968105316, 0.0087258247658610344, 0.0071325111202895641, 0.0137823186814785, 0.011905689723789692, 0.011803407222032547, 0.011728039011359215, 0.010427002795040607, 0.010622180998325348, 0.011852831579744816, 0.011852656491100788, 0.0059609306044876575, 0.009744672104716301, 0.022318696603178978, 0.0059402147307991982, 0.010562974028289318, 0.0099892634898424149, 0.0092344414442777634, 0.0097165787592530251, 0.010377001948654652, 0.011599129065871239, 0.0071808872744441032, 0.0076356376521289349, 0.010140033438801765, 0.010297558270394802, 0.011534491553902626, 0.013093947432935238, 0.0096351895481348038, 0.012295840308070183, 0.010525450110435486, 0.014710094779729843, 0.010024235583841801, 0.013517529703676701, 0.0097380317747592926, 0.018344199284911156, 0.010640265420079231, 0.011428313329815865, 0.011995731852948666, 0.010669420473277569, 0.011817359365522861, 0.008846823126077652, 0.01056070439517498, 0.012513107620179653, 0.015622895210981369, 0.016809716820716858, 0.018475739285349846, 0.011240642517805099, 0.010158172808587551, 0.0085394540801644325, 0.011952891014516354, 0.013165422715246677, 0.013517296873033047, 0.0078439218923449516, 0.013498219661414623, 0.0092947995290160179, 0.011329367756843567, 0.0099939573556184769, 0.014215174131095409, 0.0088199861347675323, 0.0093825524672865868, 0.010792378336191177, 0.0085600931197404861, 0.0085922479629516602, 0.013499991968274117, 0.0079586086794734001, 0.0082880714908242226, 0.0098371198400855064, 0.014376331120729446, 0.007623978890478611, 0.0088041946291923523, 0.010136083699762821, 0.013395454734563828, 0.01311899721622467, 0.0091343261301517487, 0.011590320616960526, 0.0098968418315052986, 0.0094225900247693062, 0.01241146307438612, 0.01316196471452713, 0.011399729177355766, 0.010392658412456512, 0.0097841089591383934, 0.0086261816322803497, 0.0090457601472735405, 0.0081711281090974808, 0.007014869712293148, 0.0096786972135305405, 0.011924113146960735, 0.0081949625164270401, 0.013752618804574013, 0.0092952800914645195, 0.0098172295838594437, 0.0061413934454321861, 0.0064753768965601921, 0.0079570431262254715, 0.0052778576500713825, 0.0094430474564433098, 0.012048509903252125, 0.0082616275176405907, 0.0086039891466498375, 0.020216202363371849, 0.018258120864629745, 0.0096895890310406685, 0.0089583052322268486, 0.011340941302478313, 0.0098050255328416824, 0.019292207434773445, 0.0091382907703518867, 0.01139263529330492, 0.0091031119227409363, 0.0091471709311008453, 0.00924709253013134, 0.0086548794060945511, 0.020399780943989754, 0.0089625632390379906, 0.007983342744410038, 0.0093908887356519699, 0.013917172327637672, 0.0064626913517713547, 0.0077930507250130177, 0.010224271565675735, 0.0085733355954289436, 0.0076919374987483025, 0.013234889134764671, 0.011309149675071239, 0.009112195111811161, 0.0092172799631953239, 0.0075885150581598282, 0.011562500149011612, 0.0096020987257361412, 0.0096226539462804794, 0.0056678848341107368, 0.0087535800412297249, 0.01017206534743309, 0.0089674750342965126, 0.012794184498488903, 0.0090039242058992386, 0.0073888795450329781, 0.0083459224551916122, 0.011022825725376606, 0.01091679185628891, 0.016441503539681435, 0.0077487421222031116, 0.010868873447179794, 0.017487216740846634, 0.013018558733165264, 0.01440183911472559, 0.012242645025253296, 0.0080620236694812775, 0.008383595384657383, 0.0103587806224823, 0.0084499316290020943, 0.0062397252768278122, 0.0068782907910645008, 0.013675203546881676, 0.010522689670324326, 0.012989319860935211, 0.0098517639562487602, 0.0082544200122356415, 0.0079969493672251701, 0.0069610415957868099, 0.011626516468822956, 0.011013375595211983, 0.0092774778604507446, 0.011933349072933197, 0.010219586081802845, 0.0099184298887848854, 0.013065683655440807, 0.0089046675711870193, 0.0096314232796430588, 0.008519255556166172, 0.0079764937981963158, 0.009675406850874424, 0.0090025328099727631, 0.0093223163858056068, 0.0087378937751054764, 0.0075511112809181213, 0.0093995565548539162, 0.0088383285328745842, 0.0090793538838624954, 0.021656373515725136, 0.013770577497780323, 0.03516831248998642, 0.015528779476881027, 0.0072611547075212002, 0.013384345918893814, 0.0086138239130377769, 0.014816027134656906, 0.018716411665081978, 0.010368281975388527, 0.015271992422640324, 0.0082916533574461937, 0.011822263710200787, 0.011343819089233875, 0.010458418168127537, 0.010265640914440155, 0.0087096123024821281, 0.0085673453286290169, 0.011486349627375603, 0.009369448758661747, 0.0074236770160496235, 0.018295468762516975, 0.0086321271955966949, 0.01433509960770607, 0.011885123327374458, 0.010321533307433128, 0.0069957752712070942, 0.0082422085106372833, 0.0085974447429180145, 0.0096871685236692429, 0.012494511902332306, 0.011012697592377663, 0.0087030231952667236, 0.0097820144146680832, 0.0091069722548127174, 0.011217891238629818, 0.0078195948153734207, 0.0090767340734601021, 0.012392735108733177, 0.020813794806599617, 0.0085752159357070923, 0.0077297165989875793, 0.0056070252321660519, 0.011140896007418633, 0.008482874371111393, 0.0074401628226041794, 0.0089196031913161278, 0.012013236060738564, 0.0083098011091351509, 0.0066072340123355389, 0.016766544431447983, 0.010678693652153015, 0.010718539357185364, 0.0074671688489615917, 0.012032543309032917, 0.012096135877072811, 0.0074501545168459415, 0.011162013746798038, 0.0082918507978320122, 0.0087869595736265182, 0.0126754529774189, 0.013882326893508434, 0.011143424548208714, 0.010860515758395195, 0.010989755392074585, 0.020949328318238258, 0.010846769437193871, 0.0082859285175800323, 0.014585589990019798, 0.015027238056063652, 0.013669454492628574, 0.012357883155345917, 0.012274730019271374, 0.015791648998856544, 0.0090711871162056923, 0.0088728656992316246, 0.012108619324862957, 0.0099831130355596542, 0.011323023587465286, 0.010302342474460602, 0.0083382604643702507, 0.013429272919893265, 0.011716715060174465, 0.014083267189562321, 0.0087845148518681526, 0.011616872623562813, 0.010866517201066017, 0.011224783957004547, 0.016100605949759483, 0.009265153668820858, 0.016022438183426857, 0.010396195575594902, 0.012673581950366497, 0.013979951851069927, 0.0090217376127839088, 0.014488647691905499, 0.0075995493680238724, 0.015080088749527931, 0.015333634801208973, 0.017165319994091988, 0.010349943302571774, 0.0071535976603627205, 0.0095344996079802513, 0.012270516715943813, 0.0094887316226959229, 0.011563494801521301, 0.0083683114498853683, 0.0082516949623823166, 0.016991240903735161, 0.0085115386173129082, 0.010492030531167984, 0.014048594981431961, 0.0093674911186099052, 0.01024774182587862, 0.01164682675153017, 0.0083733312785625458, 0.0085998643189668655, 0.01407339796423912, 0.015322461724281311, 0.011158411391079426, 0.0088375061750411987, 0.015114111825823784, 0.0087608620524406433, 0.004925762303173542, 0.013341455720365047, 0.016274400055408478, 0.0087129529565572739, 0.0081914514303207397, 0.015741756185889244, 0.011907833628356457, 0.012957237660884857, 0.0082664722576737404, 0.01381324790418148, 0.011647378094494343, 0.0083545660600066185, 0.017142748460173607, 0.0074371700175106525, 0.013576563447713852, 0.009743046946823597, 0.012412331998348236, 0.0076312697492539883, 0.0088461441919207573, 0.015450667589902878, 0.01526931207627058, 0.0082866167649626732, 0.01078485045582056, 0.012486823834478855, 0.00928526371717453, 0.0074814013205468655, 0.018197385594248772, 0.007272135466337204, 0.0099045643582940102, } }; const TfLiteAffineQuantization quant16 = { (TfLiteFloatArray*)&quant16_scale, (TfLiteIntArray*)&g0::quant9_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data17[336] = { -537, -685, -1745, 1702, -71, 425, -233, 818, -1359, -361, -1033, 493, 296, 329, -1034, 1294, 441, -1904, 40, -769, -4004, 879, 1293, -1288, 448, -33, -1, 1842, -142, -1073, 1072, -2877, -962, -698, -915, 3, -84, 334, -123, 1107, -534, 1808, 123, 80, 163, 2333, 884, -701, -1421, -1548, -1140, -123, 2093, -1412, -64, 1248, 295, -1117, -752, -2431, -653, -1149, 6, 3231, 1097, 598, 1655, -1351, -1271, 894, 244, -838, 835, 724, -756, 853, -393, -892, -801, 911, 1336, -1253, -1822, -1335, 881, -603, 662, -132, -292, 1305, -212, 1302, -289, -1064, -394, -170, -232, 1330, 398, 586, 226, 695, 962, 792, -92, -1471, -568, 1457, 667, -439, -2011, 1287, -128, 772, 950, 661, 318, -1146, 411, -403, -494, -913, 513, 515, -384, -157, 1946, -1146, 969, 1563, -372, 39, 190, 325, -594, 985, -196, -237, -207, -569, -2772, 1767, -92, 727, 559, -1186, -408, -1670, 125, -977, -2084, -36, -114, -231, 730, 261, 244, 1454, 2057, -58, 1000, -577, -562, 364, -115, 698, -1580, -440, -1104, 2205, 1095, 56, -113, -201, -1635, -177, 601, 865, 615, 138, 324, 120, -406, -759, -201, -529, -4505, 712, 545, 30, 865, 1092, -659, 965, -721, 259, -162, 425, 169, -273, -583, -392, -1212, 421, 1397, 629, 419, -580, 1499, 188, 1391, 50, -730, 1192, -386, 682, 2170, 185, 1128, -2334, 343, 24, -2057, -682, -199, 507, 1164, -1151, 1655, 92, -186, 853, 1823, -745, -2436, 865, 178, 133, -2679, -103, -88, -968, -743, -1315, -999, -767, -378, -841, 262, -1021, 2167, -1148, -1562, -1739, -1271, -1707, -134, -2063, 1000, 1019, -33, 343, 72, 1559, 722, 704, -779, 339, 989, -456, -633, 459, 1269, 178, -772, -423, 478, -3465, -534, -822, 185, -692, -1148, -25, -242, 692, 1397, -58, -1275, -819, -1072, 682, -3505, 124, 1657, -2926, -97, 96, 1475, 289, 81, 166, -504, -699, -209, 1148, 170, 316, -1516, -718, 165, -1297, -394, -618, -790, 636, -630, -772, -473, 630, -212, -1348, -1152, -81, -544, -1053, 183, 51, -384, 1263, -63, -474, 910, 233, 887, 1014, }; const TfArray<336, float> quant17_scale = { 336, { 0.00011161864676978439, 0.00013613882765639573, 0.0001344703632639721, 0.00012387007882352918, 0.00010919835767708719, 0.00012312144099269062, 0.00014140334678813815, 8.6975240265019238e-05, 9.2148562544025481e-05, 0.00013174723426345736, 0.00010101129009854048, 0.00010827447840711102, 0.00013500763452611864, 7.8920827945694327e-05, 0.00011673607514239848, 0.00014270086830947548, 0.00012410838098730892, 8.256014552898705e-05, 0.00013994143228046596, 0.00012342596892267466, 0.00011790334974648431, 0.00013006723020225763, 0.00011476228974061087, 0.00014979718253016472, 0.00016835099086165428, 0.00011511761113069952, 0.00010506760008865967, 0.00011208114301552996, 0.00013917370233684778, 0.00011470975005067885, 0.00010108774586115032, 0.00014860781084280461, 0.00017699389718472958, 0.00010489493433851749, 0.00013436064182315022, 0.00013047158427070826, 0.00017633898823987693, 0.00010256953100906685, 0.00012394724762998521, 0.00011613164679147303, 0.00015039088611956686, 0.00015413736400660127, 0.00016743717424105853, 0.00014041834219824523, 0.00016513773880433291, 0.00011296802404103801, 9.6337425929959863e-05, 0.00013639824464917183, 0.00012323095870669931, 0.00010828155791386962, 0.00018113950500264764, 0.00013322196900844574, 0.0001129026131820865, 8.7418527982663363e-05, 0.00011466078285593539, 0.00010476600436959416, 0.00013468532415572554, 9.0152061602566391e-05, 0.00010465339437359944, 9.7963689768221229e-05, 0.00014003686374053359, 0.00015887847985140979, 0.00013037423195783049, 8.3623963291756809e-05, 0.00015619356418028474, 0.00012458019773475826, 0.00012156981392763555, 0.00011508506577229127, 0.00011426092532929033, 0.00013819457672070712, 0.00010140849190065637, 0.00011147891927976161, 0.00012512941611930728, 0.00011311394337099046, 0.00015543561312370002, 9.4616363639943302e-05, 0.00016071222489699721, 0.0001367948716506362, 0.00010822821786860004, 8.6247549916151911e-05, 0.00011000535596394911, 0.00012643473746720701, 0.00012565264478325844, 9.8747688753064722e-05, 0.00011455274943728, 0.00013998399663250893, 0.00011301031918264925, 0.00018265163816977292, 0.00013051395944785327, 0.00014308860409073532, 0.00012085941125405952, 8.8492728536948562e-05, 0.00012711419549304992, 0.00011286025983281434, 0.00012879703717771918, 0.00012207018153276294, 0.00015860235725995153, 0.00011046487634303048, 0.00016416027210652828, 0.00011367528350092471, 0.00012738298391923308, 8.5739258793182671e-05, 0.00011545069719431922, 0.0001132612960645929, 9.4162431196309626e-05, 9.8290329333394766e-05, 0.00014099021791480482, 0.00012833828805014491, 0.00013224518625065684, 0.00012034858809784055, 9.906281775329262e-05, 0.00012741395039483905, 0.00016005555517040193, 0.00018215249292552471, 0.00013851237599737942, 0.00010133881005458534, 0.00011841853120131418, 0.00012031658116029575, 0.00014607244520448148, 0.00015446971519850194, 0.00013015279546380043, 0.00011936369264731184, 0.00010420340549899265, 0.00012712272291537374, 0.0001226416788995266, 0.00014189288776833564, 9.2799513367936015e-05, 9.361837146570906e-05, 0.00012343612615950406, 8.9139270130544901e-05, 0.00012110615352867171, 0.00016234042413998395, 0.00010328821372240782, 0.00013892243441659957, 0.00014281814219430089, 0.00011964875739067793, 0.00013014336582273245, 0.00010284880409017205, 0.00012125368812121451, 0.00010476013994775712, 0.0001094443432521075, 0.00011138189438497648, 9.9904733360745013e-05, 0.00010445698717376217, 9.7965625172946602e-05, 0.00013381049211602658, 0.00010692411888157949, 0.00011518744577188045, 9.2116046289447695e-05, 9.0372588601894677e-05, 0.000129988620756194, 0.0002466130827087909, 0.00017261126777157187, 0.00014226320490706712, 0.00012896733824163675, 0.0001214694493683055, 0.00012468449131119996, 0.00010986984125338495, 0.00010831429244717583, 9.6133924671448767e-05, 9.0583955170586705e-05, 0.00013697084796149284, 0.00012413455988280475, 0.00010849562386283651, 0.00015230655844788998, 9.9540426163002849e-05, 0.00010107605339726433, 0.0001430816191714257, 0.00011968224862357602, 9.6545372798573226e-05, 8.6478394223377109e-05, 0.00012652226723730564, 0.00010711199138313532, 0.00021181248303037137, 0.00015497309505008161, 0.00013362875324673951, 0.00012784729187842458, 0.0001288453204324469, 0.00014343012298922986, 0.00010615428618621081, 0.00023944234999362379, 0.00014139429549686611, 9.9351047538220882e-05, 0.00012544692435767502, 9.0789282694458961e-05, 0.00012624319060705602, 9.2189213319215924e-05, 0.00012467436317820102, 0.00011798168998211622, 0.00010738537821453065, 8.9946071966551244e-05, 0.00010093221499118954, 0.0001008778708637692, 0.00010747999476734549, 0.00010623889102134854, 0.00012729519221466035, 9.4380753580480814e-05, 0.00014917632506694645, 0.0001076338958228007, 0.00013579921505879611, 0.00012468914792407304, 0.00013703988224733621, 0.0001120904998970218, 0.00014122897118795663, 0.00010237317474093288, 9.3496862973552197e-05, 0.0001074476313078776, 9.4919188995845616e-05, 0.00010348133946536109, 0.00010984326945617795, 0.00014620467845816165, 0.00014556225505657494, 0.00015956615970935673, 0.00014399283099919558, 0.00011225347407162189, 0.00010926135291811079, 0.00010855600703507662, 0.00010636652586981654, 0.0001340756134595722, 0.00011896792420884594, 9.7757103503681719e-05, 0.00013400611351244152, 0.00011800698848674074, 8.3036720752716064e-05, 0.00010248967737425119, 0.00013078398478683084, 0.00012341143155936152, 0.00010417959128972143, 8.9891655079554766e-05, 0.000158695038408041, 0.00012161384074715897, 0.0001214432850247249, 0.0001491890725446865, 0.00011269140668446198, 9.6751638920977712e-05, 0.00011077391536673531, 0.00010862633644137532, 0.00010119408398168162, 0.00013492009020410478, 9.7793432360049337e-05, 9.8773758509196341e-05, 7.533390453318134e-05, 0.00013409765961114317, 0.00010606747673591599, 0.00012549023085739464, 0.00016988038260024041, 0.00012797542149201035, 0.00012883110321126878, 0.00011057493975386024, 0.00011205775081180036, 0.00010448353714309633, 0.00012901049922220409, 0.00015549283125437796, 9.3382062914315611e-05, 0.00014369767450261861, 0.00015713553875684738, 0.00011474992061266676, 0.00010891116835409775, 0.00013726086763199419, 0.00014539316180162132, 0.00011962732969550416, 0.00011027442087652162, 0.00015612624702043831, 0.00011728285608114675, 0.00016190540918614715, 0.00011855029151774943, 0.0001383817580062896, 0.00011422488751122728, 0.00010834795102709904, 0.00011247989459661767, 0.00013821606989949942, 0.00012375779624562711, 0.00014997596736066043, 0.00010006974480347708, 0.00014184114115778357, 0.00012443003652151674, 0.00012340153625700623, 9.4854694907553494e-05, 0.00012015991524094716, 0.00010400149767519906, 0.00012474069080781192, 0.00015580450417473912, 0.00012837405665777624, 0.00012817875540349633, 0.00010331017983844504, 0.000128280880744569, 0.00015225799870677292, 0.00013459610636346042, 0.00011072772031184286, 0.00011405307304812595, 0.0001734619727358222, 0.00010401991312392056, 0.00010006742377299815, 0.00020732288248836994, 0.00011002965038642287, 0.00010610454046400264, 0.00010810446838149801, 0.00014830718282610178, 0.0001241867576027289, 0.00015274659381248057, 0.00017839990323409438, 0.00014230850501917303, 0.00012201943172840402, 0.00012217368930578232, 0.00013206976291257888, 7.8580524132121354e-05, 0.0001257292169611901, 0.00016819348093122244, 0.00010183997801505029, 0.00011070210894104093, 0.00012097424769308418, 9.7815252956934273e-05, 0.00010641807602951303, 0.00011302520579192787, 9.7239797469228506e-05, 0.00010473396105226129, 0.00012490700464695692, 0.00014044537965673953, 9.0012959844898432e-05, 0.00010514439782127738, 0.00013596678036265075, 9.2307454906404018e-05, 0.00011132008512504399, 0.00014159214333631098, 0.00015278074715752155, 9.058351133717224e-05, 0.00015697535127401352, 0.00010615044448059052, 0.00012859815615229309, 0.00013917197065893561, 0.00012769400200340897, 0.00010442920756759122, 0.00013005743676330894, 8.9200053480453789e-05, 0.00010919853957602754, 9.7520423878449947e-05, } }; const TfLiteAffineQuantization quant17 = { (TfLiteFloatArray*)&quant17_scale, (TfLiteIntArray*)&g0::quant9_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data18[336*1*1*56] = { /* [0][0][][] */ 13,-29,53,6,20,-70,-11,32,-86,-92,-45,117,77,52,75,16,-31,-32,-42,25,-30,61,-65,-17,73,49,-8,25,61,-109,-16,-68,-55,-28,95,31,-5,48,52,30,-33,18,6,-27,41,30,42,24,-75,-13,127,-11,-12,47,44,-9, /* [1][0][][] */ -7,13,-62,32,-18,66,89,30,-22,-127,44,-85,48,-43,122,54,10,49,0,-3,-15,-37,3,5,-66,37,70,13,56,56,-26,47,52,7,-11,-13,51,68,74,63,19,-18,73,39,82,42,-16,6,4,10,10,13,-15,36,29,-2, /* [2][0][][] */ 25,-24,-22,5,-89,7,65,127,28,28,-28,-65,48,55,-22,-13,-2,-57,27,14,1,-47,86,-3,-28,-12,-77,-3,-47,-90,-96,70,66,64,51,15,-87,1,-77,-29,1,56,78,-18,62,25,1,2,-59,20,-2,-4,90,59,55,-43, /* [3][0][][] */ 0,-31,-5,-22,-1,-26,70,8,-34,-62,-24,82,-43,121,-14,-28,-123,1,-40,41,43,53,51,-13,20,24,21,-68,-47,86,-24,-27,52,18,-5,70,-44,-72,-2,-38,43,22,-23,-57,127,-40,67,79,21,30,0,-19,-5,-90,46,75, /* [4][0][][] */ 98,-36,-18,-16,-127,33,99,-23,19,-49,-9,17,29,46,44,1,-54,10,90,88,11,-66,-22,-92,4,68,-19,13,-85,-10,24,23,27,11,84,-51,-3,41,29,99,73,-20,24,-75,-12,-10,-8,39,-69,15,63,12,70,-102,-34,0, /* [5][0][][] */ 84,-15,-15,-101,-108,11,14,-42,-18,47,-17,112,76,45,19,-108,24,76,14,12,-68,96,20,-40,37,-16,19,19,31,-29,0,8,-101,19,-48,-109,-12,10,58,-1,-19,36,-65,48,-20,126,-78,46,-50,76,-127,-7,22,58,23,-8, /* [6][0][][] */ -8,-43,-108,-43,29,-1,-18,0,-65,-48,-2,14,39,-15,31,64,-30,49,-105,-74,-127,-33,54,26,56,21,-91,11,-32,38,3,3,-18,-50,49,-28,9,-67,6,82,-35,-51,-11,1,-64,2,-19,-51,6,33,19,-18,21,86,104,-27, /* [7][0][][] */ -108,45,-55,-45,24,-3,34,69,-75,-30,-27,112,-64,127,22,89,89,-81,54,-58,-19,-37,120,40,-114,102,-27,85,46,30,-34,-12,55,43,-2,55,25,-12,117,11,98,34,-39,-24,-55,6,-37,2,2,-102,-67,-18,-71,19,-74,22, /* [8][0][][] */ -31,-23,75,-6,-84,77,44,-28,-8,64,-104,90,-66,77,-26,12,41,-127,-26,-50,52,111,-57,-7,108,118,-33,51,-2,-2,24,-2,97,-37,-7,24,47,-6,-87,27,-39,13,-23,-77,45,84,92,-19,-68,47,-11,-44,121,-2,49,10, /* [9][0][][] */ 45,44,-30,10,-10,-48,17,38,-43,-20,16,52,-2,30,15,2,41,-64,-127,-9,28,-37,32,52,39,70,43,-45,4,-9,-11,12,9,67,64,-70,-72,40,19,20,-23,-14,64,37,-30,2,6,32,-22,-1,-72,-38,20,-14,-19,-26, /* [10][0][][] */ 54,25,-85,85,93,-27,20,-44,-67,-55,-3,-57,66,26,65,62,-68,-60,87,11,88,-70,-31,49,52,80,-95,-72,-16,52,-60,12,-95,50,-24,113,-22,-68,39,56,38,114,-46,-122,25,18,21,9,21,-28,26,-29,89,-127,-32,46, /* [11][0][][] */ -24,14,-8,-67,-62,-38,-38,13,-90,127,44,-87,-1,58,-108,31,91,-5,46,-103,-106,25,81,-5,3,-93,3,-13,-29,109,-41,57,16,-31,-60,70,14,-30,-33,-20,101,-11,-50,4,53,-98,-18,-26,27,-54,108,-45,-38,76,6,-68, /* [12][0][][] */ -53,-48,11,-58,30,40,-8,-27,53,-65,-36,40,4,11,-11,55,-46,-17,27,29,-12,1,-9,-13,-22,31,2,38,-70,98,-6,-63,87,-16,24,15,-85,-127,109,39,-20,-47,41,-30,-24,-75,-69,-14,4,0,-54,5,55,-68,39,40, /* [13][0][][] */ -91,1,-10,-30,20,29,81,122,-57,-43,58,16,7,48,41,107,15,-20,34,-25,-104,-15,-15,-50,91,127,24,-7,126,-72,115,-13,-14,43,-90,88,15,79,3,-10,95,-39,61,-111,-43,-31,70,-6,125,28,-22,-67,-90,49,-19,-26, /* [14][0][][] */ -27,67,16,82,-98,-50,27,-18,-64,-54,46,3,36,4,50,-25,-50,-24,-68,11,51,11,-70,3,-21,-36,-4,39,-64,107,71,51,117,-29,-33,-127,-56,30,64,13,57,40,-51,52,-30,43,-64,33,54,-9,4,13,44,12,-3,2, /* [15][0][][] */ 48,22,-41,-14,-47,25,41,25,-41,36,-76,28,-8,5,-82,72,4,43,10,-56,15,100,94,16,-34,-4,22,-41,-36,-4,18,-52,41,-19,-52,-8,127,-14,1,7,31,68,-107,-13,-15,-34,-13,23,-57,2,-60,44,34,34,11,56, /* [16][0][][] */ 25,-68,-3,-59,-72,85,100,-27,-71,46,47,-32,-36,-105,-54,18,-12,-101,58,-24,-49,-76,-82,72,22,15,33,-6,26,-66,29,-100,85,-38,-69,-48,107,-41,38,-16,-90,44,-78,24,-65,34,119,39,124,40,96,-29,-95,-43,-28,127, /* [17][0][][] */ -57,44,-24,-10,81,38,-58,-50,-28,69,0,-55,-47,73,-26,40,30,40,44,-7,36,-21,78,-15,109,101,107,-48,-80,8,-15,36,-27,20,-40,115,-41,10,64,-28,83,21,-19,44,28,127,-24,-89,-46,73,32,-14,-61,35,-60,50, /* [18][0][][] */ -21,61,-30,-45,59,-63,31,-52,-62,23,50,-83,-54,-43,28,69,59,2,50,56,-52,34,46,6,-12,8,70,-22,-29,25,30,-45,6,44,39,-54,6,-66,9,-53,2,40,-127,-111,13,8,5,-72,-14,18,-94,-35,-12,-36,11,27, /* [19][0][][] */ -4,-18,-96,69,-95,60,1,73,119,-47,-19,26,21,-32,-32,8,42,-49,70,14,-75,75,-5,76,-39,-22,30,-52,32,24,67,18,-42,-33,-21,-127,-27,36,-84,-115,74,107,1,32,13,-24,-73,37,-96,-13,111,-6,42,92,28,32, /* [20][0][][] */ 18,44,99,4,-28,-45,-27,28,-52,14,-26,3,7,60,-39,35,-15,-127,1,17,42,14,-29,-41,-22,-63,-58,-71,-89,-43,-75,-124,-85,38,-99,-18,-75,-18,-56,-40,-31,2,12,-62,85,-15,-31,34,62,-26,57,-45,-80,7,62,3, /* [21][0][][] */ 68,61,77,-22,51,-34,55,-18,-21,-60,-43,22,-46,54,14,-42,-20,-52,19,50,33,-49,-47,-26,-29,-12,-12,-16,127,7,-9,45,58,35,44,-23,38,-41,-32,-51,-52,-38,-10,14,-8,30,-20,-20,47,1,74,38,43,1,0,21, /* [22][0][][] */ 29,-10,66,35,127,24,8,0,-100,115,-14,35,-21,-24,-25,-10,6,-31,92,8,-9,23,-97,-64,17,-105,49,-32,-56,-5,-32,18,110,-25,102,-95,1,-11,-74,36,58,-18,76,-3,67,3,-33,40,46,-50,-47,27,-48,-84,-12,0, /* [23][0][][] */ -23,19,75,37,-31,-3,-60,12,93,-37,13,4,69,-4,-1,-64,25,19,16,-112,25,-127,-59,-23,10,-60,15,-16,-78,-6,-27,64,27,-36,25,5,-46,52,-19,-29,21,-4,-12,-62,46,73,-16,28,-97,-46,13,7,-47,-38,48,18, /* [24][0][][] */ 11,0,-14,14,-58,-13,18,-27,34,24,-1,8,10,-41,42,-22,62,-56,-127,18,-5,30,48,25,-11,29,34,-24,-41,-11,15,-92,-1,62,15,8,20,3,-42,63,0,-46,-17,36,-85,-45,8,-17,-29,-35,6,12,13,49,-6,-11, /* [25][0][][] */ 23,4,-80,-104,-75,-8,56,9,88,78,-78,115,-3,42,-41,-59,-2,2,-102,62,-43,-80,-42,-53,-127,-54,-123,-60,-60,58,11,17,43,52,16,16,-109,38,43,-35,9,9,28,72,63,-45,-95,22,32,73,-40,65,-8,-56,-62,22, /* [26][0][][] */ -51,-18,17,-120,116,-77,24,116,-3,50,-5,-26,81,82,50,-118,122,-73,-15,60,80,-100,-82,20,-13,12,-65,105,-19,77,-18,-44,-82,27,-37,-127,2,40,52,26,-122,-9,-88,34,37,-1,35,11,76,58,7,103,-68,8,11,-110, /* [27][0][][] */ 48,-58,5,30,72,11,-48,-7,1,-8,-27,26,80,7,23,-19,41,-8,-13,68,87,74,19,51,-50,-43,-62,-32,16,-127,-42,-61,11,67,-6,-90,58,-48,-13,-11,-7,48,46,-57,39,-92,-65,30,16,-63,7,-23,43,-5,-58,-4, /* [28][0][][] */ 24,52,26,60,71,-98,-18,-33,-19,-10,17,31,74,80,-27,-41,58,40,64,-112,-5,-36,61,127,-5,2,11,1,26,81,-23,35,-5,-102,-74,-7,-20,-63,101,-31,19,15,-41,-49,-20,19,-73,-36,-18,-88,-36,52,-23,-9,21,33, /* [29][0][][] */ 46,0,-34,14,-21,32,62,36,-48,22,81,-38,117,79,85,-41,5,-80,-22,-32,-72,-53,-68,-3,-3,-5,57,-37,49,74,-31,-3,-39,5,32,-81,-18,-14,2,85,-48,8,-97,16,0,-8,-64,127,-1,-38,-55,-81,71,-10,11,-45, /* [30][0][][] */ 116,-12,25,-1,62,-76,5,-54,-8,-5,18,45,52,-63,24,-7,6,-61,42,-16,1,-17,-45,-30,-33,14,-26,-47,57,56,-65,-5,-127,69,-27,-36,-54,15,-23,17,-114,44,-14,34,-33,-52,-17,91,46,30,-15,-26,-12,-51,37,15, /* [31][0][][] */ -68,-10,43,-15,-8,-61,-21,74,-27,-119,-22,-10,127,-58,-67,-59,-35,-42,33,-41,-49,-24,20,23,29,5,-41,8,-54,-66,-53,-60,59,-38,-20,9,-99,21,23,-26,14,-54,-81,-48,-39,-42,-64,29,62,-33,12,55,-81,114,64,9, /* [32][0][][] */ 52,-15,-70,8,-21,-42,-39,-9,48,-3,-8,-22,61,-62,28,11,83,-18,31,47,39,-2,-30,-13,9,60,-16,-33,13,-17,-23,-12,-47,-3,64,-127,-70,12,-36,-39,-27,45,-19,25,21,-17,49,-1,-20,11,-2,-7,-61,-11,33,-24, /* [33][0][][] */ 85,23,5,-63,18,51,7,4,13,-31,-34,96,33,-7,81,-65,85,-96,-125,-40,3,67,-107,-57,30,48,-49,34,-63,-57,-127,26,80,-96,13,-26,-6,28,-21,37,50,-87,24,26,-48,-20,-57,-57,-33,29,-85,25,63,-79,-57,-42, /* [34][0][][] */ -39,11,47,-32,-10,5,-26,20,16,-100,68,20,127,39,67,-13,-66,-29,23,-74,-44,15,12,44,98,18,62,14,-53,38,71,35,19,-8,43,-47,-16,-18,20,37,-22,5,-3,40,17,-30,15,-24,70,-37,7,-17,14,-67,-40,-11, /* [35][0][][] */ -62,-20,19,-47,22,-31,-79,89,-15,-48,88,-98,-12,-15,-40,7,-55,10,72,31,-3,-127,-16,-54,34,31,31,35,88,113,-29,38,0,-8,12,44,74,-115,19,-51,-17,-25,8,-34,-49,8,-48,-24,-89,-54,48,36,-59,-47,-26,-73, /* [36][0][][] */ -14,2,-11,9,-51,-4,66,34,-44,-37,-76,-17,-20,-2,-31,80,59,-45,26,-36,-41,36,-30,33,26,-54,-16,24,4,6,18,-25,-90,46,-33,-10,10,74,25,-33,-61,-12,-32,-54,13,127,35,-34,-90,10,-12,-4,3,-37,-17,36, /* [37][0][][] */ -21,-3,-67,51,3,91,80,-13,-81,20,127,121,-40,106,17,-32,-104,41,70,28,-36,49,-11,34,42,95,-38,-35,48,-108,61,-68,-6,28,34,34,51,-87,12,24,44,8,-3,-77,75,28,92,-9,-37,-24,-61,-43,56,-68,-32,13, /* [38][0][][] */ 67,68,-69,-41,16,2,-48,43,7,26,-52,27,33,-37,107,3,20,-13,46,-57,46,-17,5,-59,39,27,99,-63,-26,-31,-61,-33,-54,-6,8,-21,51,-48,58,2,43,-22,62,16,54,37,39,82,-55,25,55,-127,-49,18,21,-66, /* [39][0][][] */ -24,-26,-4,-64,-127,-73,-83,75,71,29,54,82,63,-14,-58,-57,83,97,47,95,-87,-45,-3,11,14,20,51,-11,-56,-112,59,-14,86,-46,121,84,-14,82,14,-47,23,-36,99,23,-48,-59,-27,-19,-14,1,23,42,-13,-35,20,-1, /* [40][0][][] */ -40,85,-46,30,2,-53,87,-5,48,-5,-86,17,15,31,-4,60,127,-88,71,-51,-78,7,-81,64,-2,57,2,15,-65,66,46,12,47,-11,13,-44,-55,-66,-83,-26,49,55,-15,19,28,102,-36,-26,-38,78,20,-38,17,12,-18,-75, /* [41][0][][] */ 21,58,41,53,27,-16,53,15,54,-97,-28,-34,120,17,52,99,3,92,3,23,38,4,2,-96,9,14,-6,-32,18,127,-36,-36,-8,-47,12,49,-77,2,-11,8,-58,21,-41,13,-12,13,48,-48,29,71,-40,-25,-19,-7,-3,42, /* [42][0][][] */ -52,-2,45,3,56,48,37,-65,11,60,-14,-10,-15,50,4,53,15,-13,-33,-4,-127,70,26,9,69,32,-56,19,-47,70,-22,-34,7,-13,4,46,-35,28,76,28,-44,73,20,-46,-36,-37,-12,58,-31,-9,18,7,-19,10,34,-42, /* [43][0][][] */ -31,-49,-69,-6,81,-29,4,93,-119,-127,-14,15,34,33,-12,39,-43,-6,-35,-48,-20,-67,-69,-31,-33,41,-5,60,11,39,-88,91,48,-23,58,-20,-66,-9,18,76,46,11,-20,-30,27,-29,99,30,-30,-4,-34,8,64,-86,54,-46, /* [44][0][][] */ -44,-9,-14,-23,28,19,7,-30,-5,33,32,-32,-8,35,38,3,-14,-23,21,32,-29,14,-69,-32,4,-70,-9,88,42,-76,4,-7,-5,70,-14,-12,45,-81,-10,-1,-88,55,-20,26,-16,127,57,31,-77,-40,3,84,8,-25,-39,60, /* [45][0][][] */ 73,123,-57,-116,58,-6,34,45,66,-43,-48,7,57,-10,-8,127,25,0,45,17,25,-21,-7,-28,-37,-35,68,45,-17,-56,-24,3,29,22,-14,105,-10,-29,13,49,37,-3,-14,-5,22,45,-26,6,-79,-39,59,95,-33,6,72,-29, /* [46][0][][] */ -26,-109,-86,89,28,-82,48,-85,-2,-7,38,77,-124,-29,-17,18,32,-23,-21,-70,-93,-51,87,127,-37,-65,3,-49,35,-19,54,-73,-28,-6,69,30,67,32,-66,40,-11,-39,-92,33,-24,58,83,10,-99,-113,-45,55,66,118,12,19, /* [47][0][][] */ 38,-19,-16,-15,-36,20,-81,53,124,-49,-80,-127,-5,-35,36,-44,59,-1,-28,-68,24,-100,-23,-35,26,-27,-59,-6,-32,-14,40,-32,4,-3,-35,-35,-97,12,9,0,-36,3,-29,-66,2,-26,36,0,47,-32,5,1,56,-78,-21,-2, /* [48][0][][] */ 7,33,54,44,-10,-81,18,-1,-44,5,-35,31,44,-45,-46,36,29,-87,39,19,-18,-11,-42,31,22,58,18,18,-3,95,10,37,73,21,-48,41,-50,-16,-44,43,47,-30,-41,33,-69,13,-48,-127,-44,-65,-41,35,34,17,29,-50, /* [49][0][][] */ -127,10,-95,-16,71,35,-78,-59,19,8,35,-31,-2,-15,76,29,35,-4,-74,-51,35,-41,21,11,43,-20,2,8,5,-70,-10,25,29,40,-73,19,3,29,-8,-4,61,72,-71,-36,-54,103,-14,-7,-8,15,13,-42,-52,42,7,-47, /* [50][0][][] */ 3,38,47,45,37,-48,20,3,-36,-2,23,30,-50,91,14,11,-66,-12,48,-39,-11,8,8,-41,-8,-32,49,-22,-93,67,-64,-63,-6,-26,-59,51,-33,-16,19,-47,119,7,-29,-33,-77,10,49,-9,31,47,-19,85,-97,127,80,25, /* [51][0][][] */ -70,4,-24,-15,1,8,11,-36,-91,64,-78,24,67,2,65,14,3,13,29,48,-14,-9,10,-127,5,39,-65,-28,14,-95,7,75,61,10,48,40,-122,-22,-18,73,-110,-13,-40,76,-22,-81,-116,61,-90,-75,-3,-113,-95,3,-36,-57, /* [52][0][][] */ -50,50,5,-60,8,-11,119,-37,16,8,16,-51,42,-4,-65,-29,-47,-65,-16,11,-28,127,-15,31,-6,29,-79,45,3,-18,-4,93,-46,-47,8,19,22,48,18,23,-55,22,23,-66,83,-14,-28,-36,-34,76,-66,38,27,-11,17,93, /* [53][0][][] */ -16,-52,-16,34,-18,95,90,-53,53,118,61,33,13,-44,17,14,-25,-15,-20,127,-27,11,24,-64,-58,-54,-34,-66,-13,84,-80,62,-88,-53,-69,-117,1,49,-68,101,-33,55,13,-27,-54,-77,-8,-5,7,-76,42,-65,60,30,-41,-11, /* [54][0][][] */ -4,107,-7,21,-27,-56,34,-14,13,40,26,76,-37,30,-63,-51,78,-28,-110,45,-103,-12,-60,54,-13,80,-22,-5,8,71,-30,32,-23,2,29,-114,-98,-88,8,121,-44,-31,-6,59,-61,9,-49,-45,-34,20,-127,18,-41,-11,1,-41, /* [55][0][][] */ 41,-31,-74,30,86,-54,16,-28,-35,-74,-59,-82,-71,-46,-31,111,67,15,-124,29,-19,-51,77,75,-18,38,-84,-10,-37,-7,-49,52,33,48,42,-14,-51,0,53,75,-7,46,-90,-12,-51,89,-29,-52,-127,-109,53,23,3,29,-82,-56, /* [56][0][][] */ 52,-43,82,50,-16,61,-1,1,-15,41,-94,-58,31,15,30,-11,21,-10,21,24,12,0,-53,-8,-25,-8,18,78,11,-8,15,-20,54,32,33,32,-29,-33,62,4,23,-106,72,39,45,13,-37,-26,67,-23,-23,127,1,40,-27,47, /* [57][0][][] */ -36,2,-124,29,18,84,18,-28,-59,46,5,-31,-115,71,-18,-109,19,-28,13,-115,18,-98,64,-76,-33,95,56,-127,-56,1,30,25,84,119,30,-38,-10,-50,-25,-30,81,-4,11,-34,-34,37,1,27,-70,126,-54,-48,-50,51,-11,35, /* [58][0][][] */ -32,56,-86,-40,-76,-18,69,38,96,74,36,-52,75,-65,40,-76,59,85,55,-127,-67,-35,64,65,-89,-5,-52,-55,43,-36,37,41,56,-69,120,54,-73,-35,-8,-21,-10,-72,-121,-14,39,-4,-23,108,59,29,-31,8,12,-41,-56,51, /* [59][0][][] */ -5,4,1,65,-62,23,65,31,-56,-35,10,-70,-26,13,-50,-75,20,-22,127,71,-16,-21,6,-37,73,-33,0,-94,24,32,-73,-12,17,6,-113,-36,15,29,-18,-67,19,-7,58,-69,-37,-4,2,-66,-2,35,6,-22,22,-98,46,-72, /* [60][0][][] */ -47,2,-41,69,40,-72,36,-7,-112,-28,-14,-6,127,-28,-28,-36,-37,-11,87,-18,-24,-1,-58,28,-24,3,43,14,-43,-32,-82,-29,101,-22,13,10,26,-63,-10,-17,38,-33,49,55,-76,38,-24,-54,0,-22,-60,39,75,37,42,-75, /* [61][0][][] */ -41,45,-3,5,-1,28,-64,-15,18,-51,18,52,-18,-32,11,-85,-22,51,-62,-41,-33,-9,-17,41,27,24,-79,-3,11,36,-45,-33,-21,36,-12,-18,-54,13,17,38,-53,4,-127,-3,60,52,-11,29,-18,19,-5,0,25,-43,25,7, /* [62][0][][] */ -27,-8,-12,-5,127,-13,-41,-3,25,18,-72,-57,-10,63,72,57,79,-32,-24,53,25,-23,55,40,-56,-8,-61,4,-16,-22,-58,-20,6,23,-29,21,-56,-23,48,4,7,-74,23,-24,-48,13,-104,55,73,-22,-29,22,-39,-13,-40,-31, /* [63][0][][] */ -28,109,14,50,8,-1,127,-86,-38,-95,110,-32,25,-35,-3,-65,-101,8,-59,16,-6,-6,-23,42,-19,2,53,38,55,47,-16,43,4,16,-39,-62,-65,35,10,-54,47,-51,32,-7,-126,-15,-22,-57,-78,-21,-45,48,-82,-40,30,-38, /* [64][0][][] */ 2,14,35,-78,-20,-13,-42,29,23,11,32,61,3,68,127,11,-31,-31,-14,-2,-22,46,-3,8,-35,8,15,17,13,-8,-14,33,-25,-28,54,39,-23,-18,66,54,28,13,-92,10,22,-40,22,-47,-8,-8,-7,25,32,56,12,52, /* [65][0][][] */ -23,-14,-36,32,31,-88,-36,76,-122,28,-8,27,83,-11,75,127,29,-53,5,57,21,-82,-11,-65,26,2,-43,-43,23,-1,-23,5,60,30,-9,20,25,-26,-33,21,60,4,113,7,25,35,-50,6,13,-33,31,27,-37,4,-71,14, /* [66][0][][] */ 94,1,29,80,-2,-20,-82,68,15,-23,-10,-27,-15,-24,48,-79,16,65,-36,63,-88,-12,14,-80,41,-58,3,8,28,43,15,34,59,38,-28,-39,127,-104,57,-50,11,-54,-16,36,57,3,10,48,7,-22,45,10,67,16,6,60, /* [67][0][][] */ 64,-62,-29,-12,-18,-1,110,-20,-76,56,-13,-55,3,15,29,-48,-54,37,49,-51,-43,-93,-97,11,29,21,65,67,45,31,79,-43,-8,47,-127,-39,-82,-41,87,-9,-28,6,83,-56,47,-32,-39,41,-10,51,36,-18,31,-46,-37,-14, /* [68][0][][] */ -3,84,25,7,1,127,39,20,18,42,-18,15,-41,-51,15,67,-26,-66,56,-48,37,39,112,95,-45,13,36,-29,-123,-29,67,-100,-71,-64,47,32,-17,-88,22,-19,33,30,-32,53,-61,43,-8,-12,62,35,105,9,50,-20,-52,-29, /* [69][0][][] */ -55,38,-57,42,15,93,82,41,34,-31,-56,-21,7,-12,1,38,-114,-36,-44,-35,-38,50,-25,8,-32,-20,24,-15,10,20,29,16,-69,-43,-16,83,127,56,-4,-4,-42,76,-36,87,25,-50,79,-35,98,7,114,14,-9,45,-7,64, /* [70][0][][] */ -54,-16,-89,11,59,6,-7,-35,-32,-63,81,-117,-120,-89,51,10,0,-31,-3,62,45,-14,-83,75,28,8,-19,-47,127,11,-57,-79,-65,-30,-67,-17,-27,-52,4,122,-19,-5,-90,-102,100,-74,-11,23,118,-66,-66,-27,21,-23,-94,92, /* [71][0][][] */ 75,16,-2,75,85,14,34,84,127,-15,31,-86,82,71,39,56,-28,-85,-50,-46,-83,5,-17,-12,-63,89,80,-109,-45,34,-14,-39,-47,35,-55,30,39,32,36,32,-47,71,-65,-37,36,-21,-20,-16,-72,32,-68,-17,-55,-95,-21,28, /* [72][0][][] */ -7,34,-43,-53,40,76,33,-60,31,20,-37,-30,77,-5,7,34,7,-55,-41,-50,-63,96,-64,38,65,61,-26,-34,8,95,-20,65,1,-38,16,22,-34,21,-28,-66,-12,-8,58,-8,-28,7,-127,-100,-32,34,-71,21,-27,104,62,-7, /* [73][0][][] */ 43,-19,57,-33,53,-32,-44,52,-42,-80,-23,-53,127,-4,-65,76,-60,-88,-26,33,-48,27,-89,-3,11,-6,-42,40,-33,-43,-30,71,74,41,-66,55,43,-94,5,101,80,-81,-61,44,-50,3,-80,-96,123,35,5,11,-27,-68,67,44, /* [74][0][][] */ -57,46,-88,51,-127,70,-44,22,4,-38,3,96,-71,87,-33,-26,16,-113,46,-35,-31,-50,54,-16,4,-41,-1,48,9,42,-29,-75,37,-67,-16,7,11,-6,-28,0,19,-5,14,-31,-21,73,-9,53,-8,11,-26,78,74,-52,-10,-22, /* [75][0][][] */ 59,-13,-1,42,78,-39,-28,8,-10,15,-5,30,103,2,1,45,17,-56,74,61,-58,-40,-35,-39,24,6,79,61,-16,-32,77,-93,98,78,67,-15,24,28,-30,45,-16,35,-22,63,-14,59,127,-19,98,19,36,-89,46,43,-27,27, /* [76][0][][] */ 33,-4,-11,-1,-1,-127,62,-3,5,5,-56,46,24,-12,1,-55,44,16,17,-51,-29,4,-54,51,-17,-36,20,-86,40,-19,-62,34,-24,54,-21,-4,-1,38,23,12,-11,19,30,-34,-63,75,-53,-1,3,-19,-18,-2,62,70,-4,30, /* [77][0][][] */ 66,-9,3,53,-37,25,49,-33,30,25,-11,66,22,45,-77,-4,24,-15,49,42,-10,31,9,-80,3,16,29,13,-61,127,-61,45,1,69,3,8,19,66,-70,51,-62,-41,27,6,-8,-27,-6,21,23,-50,-48,21,-27,83,-3,12, /* [78][0][][] */ 13,-4,56,-23,8,31,49,36,79,-63,52,-103,-27,77,-31,-76,-29,-48,-38,127,-51,-11,-67,-9,-111,-112,-40,-31,-30,44,-45,67,0,22,-27,50,-39,-11,21,20,-28,17,-16,31,9,13,7,89,-68,43,-83,58,13,27,-7,32, /* [79][0][][] */ -50,-125,26,37,-53,109,11,-43,47,-65,37,-26,17,41,78,-41,126,72,0,-45,-52,89,32,-40,26,35,-73,65,-32,-123,74,-106,-45,-83,27,59,-58,42,-92,43,-50,20,-10,28,-54,51,95,-42,73,-27,-127,-124,47,48,15,-123, /* [80][0][][] */ 13,-64,-85,11,66,88,12,-58,-14,-10,87,-38,-23,66,32,-93,-31,-19,-47,7,44,-1,71,5,-16,5,22,52,25,-29,-47,-88,-13,-109,-97,-35,-3,-55,-39,-43,3,-71,-18,40,-11,76,-17,82,-1,41,0,-127,-63,17,-8,-50, /* [81][0][][] */ -63,67,-1,54,-40,127,-26,-19,25,2,14,38,56,57,7,-89,86,-16,-49,76,21,-22,5,-32,-4,-87,75,34,6,-68,21,-25,95,23,11,16,41,-28,28,30,-57,-23,-73,-54,37,3,-22,-49,18,-65,-56,38,-84,-61,-38,-64, /* [82][0][][] */ -24,-29,5,62,-15,-9,-10,78,-61,-24,-87,-80,-12,-39,56,18,-6,40,33,-28,-6,-33,-111,-52,-63,18,-47,-41,-83,127,-14,-79,19,-34,-22,-34,-75,-1,22,45,5,-95,23,-1,-14,-20,-8,116,49,-3,-37,-51,42,3,-14,-19, /* [83][0][][] */ 98,14,-33,-40,30,-13,0,28,-114,53,-55,-120,102,-20,76,6,35,-48,-102,-110,69,-119,79,-6,-4,43,-30,127,-42,4,65,-110,-42,60,86,81,13,41,63,59,94,-39,-40,-51,-8,-13,-80,52,-14,66,58,-15,-6,-63,33,41, /* [84][0][][] */ 34,-117,-33,82,-28,-53,-36,28,-6,-63,-39,-65,-44,67,16,48,-10,23,14,18,-23,-1,82,12,-26,25,60,-42,-89,47,-22,-37,33,63,58,21,-49,-59,-66,71,37,-127,-17,36,-119,-6,-30,-71,-108,-121,-21,58,58,64,69,51, /* [85][0][][] */ -27,5,-17,-11,-12,1,-26,72,-44,11,-15,-49,-15,4,20,-23,-25,63,77,18,18,-1,-42,-27,-57,-81,30,-3,-42,16,-27,18,36,-62,3,-38,58,-20,-59,-60,62,127,-9,79,-29,53,-56,-43,-58,-42,36,62,-2,-49,-48,15, /* [86][0][][] */ -29,-12,17,-12,59,53,43,90,-42,-6,-83,-38,47,-35,-6,-7,31,-63,-18,-68,-14,-63,-8,-65,12,58,-30,87,-124,-120,-100,38,-5,-30,64,-76,8,-17,-50,5,-40,-127,45,14,99,24,5,1,0,-22,-4,-1,10,94,-52,124, /* [87][0][][] */ 5,100,-48,40,82,-13,-7,50,-10,3,-16,30,30,-79,5,-21,25,-36,27,-10,13,-51,33,28,-27,53,-23,-35,-4,-35,-41,-51,6,-39,-7,-21,0,-43,-27,14,-14,-43,-22,9,58,-18,40,14,-38,-20,-127,-17,31,51,66,43, /* [88][0][][] */ 6,5,22,-7,-89,-13,27,32,68,-49,118,-65,19,-54,-6,-4,-45,83,-76,-1,56,2,-62,22,-81,-3,-45,24,-42,29,127,43,21,22,88,-3,34,4,-28,-53,22,46,53,-66,17,35,21,-4,23,-2,-28,-109,34,-37,-119,24, /* [89][0][][] */ -20,10,-22,-70,68,-36,-33,17,30,-23,19,-32,-6,-11,37,-35,47,-22,-127,26,-14,-91,-54,113,28,67,-4,-28,-87,71,-20,-10,59,1,-1,-36,69,5,-28,-4,-59,32,-3,-9,-26,5,15,47,48,36,-41,11,-51,34,65,22, /* [90][0][][] */ -17,-55,69,15,6,38,-60,59,7,6,-17,-37,91,25,9,-38,51,50,4,127,11,-18,23,-76,69,26,48,-27,-24,4,27,-67,30,34,31,-88,48,53,68,-2,-3,-8,-71,-25,47,-32,46,39,-1,7,35,-24,45,17,-51,-7, /* [91][0][][] */ 56,-79,-62,28,51,-1,41,14,13,-76,-67,91,81,-60,72,64,-79,24,-13,9,-127,35,-91,93,-60,30,-12,15,58,30,-118,5,-60,41,60,-112,-56,81,117,55,-16,13,8,85,-30,-84,-90,2,-21,-20,-61,-114,-3,-78,76,71, /* [92][0][][] */ -26,12,-10,10,-31,-13,-13,7,-21,-24,94,45,51,-20,1,33,35,-4,49,6,-10,-27,-37,29,21,55,-79,-27,123,20,2,-34,-21,21,-67,27,-77,82,111,18,-88,-93,62,-92,25,44,-29,-127,-49,37,78,-69,14,69,-10,-14, /* [93][0][][] */ 33,46,-51,-72,-118,-92,7,-52,24,-14,-79,-105,-105,-108,-30,-28,-36,-127,29,-66,5,37,-5,57,-51,77,-10,0,-92,-41,-41,63,-36,60,-6,34,9,-49,12,-49,15,-13,22,74,-53,28,-100,-45,-46,-65,-45,-18,-54,26,18,22, /* [94][0][][] */ 34,22,-63,4,47,43,-82,5,29,-23,69,85,42,-37,60,-7,44,-75,39,53,17,7,-17,-75,-10,20,30,-85,-26,-65,53,28,53,55,10,-71,19,-3,49,127,-91,37,-27,-59,12,63,39,15,-96,89,-84,41,-37,33,54,-11, /* [95][0][][] */ -41,38,-20,22,-36,102,-58,119,-62,-5,-5,-33,32,-79,-19,14,44,10,-96,29,-127,-8,-36,78,50,-12,48,64,52,11,43,-20,21,32,-1,92,106,19,-3,28,-26,-33,64,99,-37,110,-126,-36,-3,-38,42,116,81,50,87,62, /* [96][0][][] */ -38,-29,-57,-49,-47,4,-19,95,31,32,69,-16,58,7,40,127,59,-4,-51,81,-44,3,-12,-2,-40,-68,-73,-12,-43,-27,-2,58,60,26,-22,11,-97,-25,-22,-46,0,69,80,-17,41,35,-28,27,-20,41,-6,74,-15,-6,-57,3, /* [97][0][][] */ 27,-35,9,-33,-1,3,-72,13,-66,49,42,23,57,-55,-101,47,10,2,28,-7,8,47,-127,-22,-6,32,3,-11,48,-55,47,-31,110,44,106,-37,57,7,100,-56,-65,-48,-29,44,-23,-56,78,78,31,73,-80,42,54,75,-37,-14, /* [98][0][][] */ 26,-83,46,-62,47,-38,27,-16,6,56,68,-68,-43,60,-7,66,22,-62,-90,-27,16,-43,-43,21,5,55,31,-49,-35,12,-16,-67,12,-30,1,67,-18,56,-40,-20,-2,127,-10,70,15,-10,28,-19,11,-100,-17,5,2,-42,76,6, /* [99][0][][] */ -72,10,48,26,-38,2,-49,44,36,-57,4,-41,-50,27,-17,19,5,-30,22,-81,-35,-51,94,-67,-10,-63,84,75,-32,46,-1,4,-119,90,85,57,52,-32,56,-54,-127,-64,74,-55,113,61,-10,-8,-56,81,58,81,-90,-56,52,78, /* [100][0][][] */ -38,24,17,-76,-16,82,-87,-38,-7,17,17,15,-63,-9,59,43,-11,39,49,-65,-46,36,-49,61,7,127,-31,-66,4,33,42,-69,4,71,2,-20,-15,26,14,49,62,36,36,-125,-13,-14,17,25,58,105,-47,-35,-18,-51,36,1, /* [101][0][][] */ -43,-87,104,42,51,-105,103,-32,-67,-52,10,17,78,79,-1,58,9,-92,-64,14,51,-100,-28,-46,-97,17,123,88,109,-66,121,29,-28,-30,-97,-8,49,59,-46,54,-37,-57,116,-10,63,46,127,-73,49,36,-45,63,40,-46,-35,-71, /* [102][0][][] */ -93,-25,-48,-81,92,-9,-6,-20,87,-22,8,-78,-16,22,59,16,-8,-31,-63,-53,13,4,52,2,-19,-48,11,12,-9,-25,-48,-66,12,-71,2,42,46,-54,59,-127,27,23,-23,-37,-54,-71,33,26,-9,-114,-85,37,-54,9,-3,-40, /* [103][0][][] */ -1,49,-69,29,38,-22,-73,-8,-42,121,-70,-28,-54,33,3,-22,62,-7,-85,-33,74,-11,88,31,3,4,-10,-24,18,-25,-34,46,-23,7,0,19,-27,87,-13,-17,-91,-12,51,47,-70,-118,-81,52,-72,-127,-25,43,-97,43,66,20, /* [104][0][][] */ -45,-51,31,-127,-3,89,19,-43,-60,-9,57,-11,-42,-11,28,-32,-23,22,41,-68,66,10,55,-45,51,106,52,75,-24,58,-23,-9,55,-41,13,30,9,50,6,88,17,-6,117,-123,-48,100,-7,12,-29,25,-33,-88,54,61,-60,36, /* [105][0][][] */ -47,32,71,-16,1,19,-51,-67,-76,32,61,-78,109,-69,-28,-73,10,-81,-51,-47,16,70,-41,-93,39,86,73,30,8,24,25,-8,49,-34,-127,-27,-73,-49,-29,50,-3,35,75,101,71,98,-7,71,69,-105,-57,-25,0,20,-77,-23, /* [106][0][][] */ -62,60,43,2,127,79,26,-24,8,-28,-83,-64,18,-8,-8,4,-37,12,-55,36,-47,-34,56,-30,-43,89,-21,-50,-7,-49,0,77,-70,38,-80,21,-33,57,0,-31,-23,59,-17,3,73,-54,73,50,1,-79,-11,13,-32,86,8,-79, /* [107][0][][] */ 4,-47,23,-1,28,-86,127,56,-55,29,75,51,24,4,3,-94,73,-42,0,-25,-105,14,-12,22,-24,-18,54,28,13,66,-42,-14,-39,-25,32,27,-93,10,-36,-15,-20,10,-53,19,-4,15,20,-39,19,-58,0,-48,10,-65,-115,17, /* [108][0][][] */ -23,-31,-4,51,-33,-24,-41,-20,26,-22,17,-35,-79,-41,18,-11,53,34,-50,-1,38,-24,127,30,46,-9,84,-66,-9,-58,-23,-86,-25,-48,40,41,-20,-17,78,-12,40,-35,11,40,11,36,-49,-44,82,33,-26,-26,-11,36,2,2, /* [109][0][][] */ 31,7,22,29,63,73,15,15,-19,73,17,-35,-4,49,25,-49,20,-79,3,-64,-102,10,-97,127,-30,4,52,17,-62,-6,-13,80,45,-16,-108,-15,62,-3,19,-8,-63,-45,8,-24,17,-3,-104,61,-39,32,94,-30,27,-7,-13,107, /* [110][0][][] */ 10,110,-19,45,-7,-16,106,20,-90,51,5,59,15,2,-32,-55,-17,-9,37,40,15,-24,38,33,2,-117,-59,-15,28,6,60,47,-69,50,-8,-66,8,-45,7,-13,14,118,-64,-45,-48,-123,23,-2,-96,-18,-16,-67,107,127,-65,-44, /* [111][0][][] */ 7,-12,-52,-11,69,21,-37,-26,22,55,7,-46,-77,14,127,-92,79,57,8,-18,-7,-76,-26,-63,-99,24,114,20,57,-31,59,-106,47,-48,-77,-107,-107,-44,-28,22,-52,-21,-40,-26,-6,88,11,1,28,-56,63,14,50,42,13,-89, /* [112][0][][] */ 15,-9,64,127,-80,23,10,9,6,33,-21,-48,1,16,19,-38,-2,1,-16,-13,-9,-46,43,-68,26,-24,12,-37,17,3,6,-45,-1,53,11,-49,-11,-13,-50,2,-5,26,72,-58,-43,19,32,-42,-9,8,-18,30,19,-7,79,35, /* [113][0][][] */ 31,45,17,3,-62,17,-8,-33,-29,29,-48,49,33,-9,43,57,30,44,27,-32,-29,21,-46,24,-25,32,3,-14,-26,-80,-15,38,-25,63,-10,-2,20,-82,26,-45,75,-31,-12,-60,20,21,-12,-26,127,-31,-2,7,-42,-20,-69,30, /* [114][0][][] */ 36,-47,13,25,-9,28,-70,-50,-58,-68,2,-12,43,83,24,-15,48,20,28,2,-6,-67,9,-24,53,58,-25,37,62,-17,85,-60,21,-4,-26,-50,-19,29,-43,72,-31,0,-86,-60,31,50,-39,45,-127,-23,-21,37,-18,-87,-25,-5, /* [115][0][][] */ -85,38,-24,-32,20,-10,-69,7,-31,109,46,-35,118,66,65,-38,35,-23,-109,-15,110,-32,-100,-68,83,-14,22,64,11,111,10,1,41,20,12,78,-12,-6,-92,99,72,-37,53,14,-28,33,8,-127,-76,40,-21,85,60,7,116,12, /* [116][0][][] */ 3,-127,-80,51,-56,6,54,-38,54,-53,-15,4,11,64,58,42,0,-31,26,-53,37,-42,18,-21,26,-2,-6,15,23,8,108,91,-6,19,62,-51,-24,-2,40,-47,-13,-17,62,28,54,-45,-24,-60,59,-78,35,57,-8,24,-38,73, /* [117][0][][] */ -69,-79,30,87,-36,-13,-1,4,-90,43,85,71,-56,14,-17,24,35,14,-75,-111,41,-124,-21,89,18,-76,-9,-89,65,-39,-86,37,-21,-5,39,-30,-3,8,60,-40,-24,29,52,-28,-39,53,84,-48,1,6,35,-14,64,-127,23,23, /* [118][0][][] */ -68,13,18,14,-35,3,30,-16,-5,13,-8,-44,27,-4,-54,36,-61,70,-42,3,23,2,42,-26,-10,-43,96,-127,-38,38,-32,-54,-75,-2,12,61,-9,-17,8,5,10,-37,-7,43,68,-16,-79,-36,59,70,-20,11,-29,-13,112,-53, /* [119][0][][] */ 40,-28,17,11,-40,70,21,-9,-47,30,54,21,1,-42,23,-11,39,19,-10,-47,15,-83,-54,14,24,3,73,-6,-47,45,-44,46,-34,-5,24,-21,-84,31,34,55,85,0,8,-3,-127,67,-55,-32,-38,22,-33,76,-43,23,29,61, /* [120][0][][] */ 11,-24,-59,0,29,-7,65,92,-10,-38,-83,79,68,55,66,22,35,-16,-61,18,-51,-87,-13,26,26,-21,33,51,32,64,-29,-51,55,18,1,46,-36,-33,-14,67,-2,-9,4,-34,-31,-50,-127,54,76,-25,-46,101,-11,-49,-41,30, /* [121][0][][] */ -50,26,-60,7,19,-63,37,42,57,29,-34,-34,1,-62,-86,34,-54,53,-22,47,13,59,31,-21,2,-86,-31,-74,52,-78,-79,-115,56,127,40,-9,-58,71,47,26,-30,-37,-42,93,-35,-9,47,-19,13,56,41,-20,-4,47,22,37, /* [122][0][][] */ 22,83,-18,38,-35,-78,32,9,0,-91,90,-2,-46,0,-58,14,47,-21,62,-67,65,76,-49,124,-126,-85,-15,-112,82,16,-1,57,68,-39,-60,78,29,14,21,-43,100,127,-55,3,58,-32,62,-20,-36,25,51,-60,-70,-32,5,47, /* [123][0][][] */ -94,-5,-32,46,7,13,-88,-112,86,35,-61,-39,-37,28,51,-92,-57,-30,42,127,56,9,-45,64,-79,-57,32,68,-64,-2,-91,-12,38,-73,-49,38,41,22,25,69,-36,62,23,-18,112,12,-68,28,-72,-35,-86,-1,29,-33,18,59, /* [124][0][][] */ 6,56,71,-43,-10,-48,46,60,8,127,-66,12,10,-41,-15,-46,-11,-13,-42,14,121,97,-54,-28,-52,-42,-1,-54,-11,-37,58,-30,-37,16,19,29,-47,34,10,-26,48,47,44,72,76,68,37,60,45,-58,35,-30,90,15,0,45, /* [125][0][][] */ -26,18,72,-3,54,9,127,-9,-6,21,101,-91,37,-50,59,19,14,-77,119,10,19,-16,-29,-61,9,-6,105,-7,-17,51,0,45,-15,37,-6,-74,-73,58,17,16,-13,29,-56,-39,-32,-36,13,-75,-72,-31,-4,2,68,-58,8,-18, /* [126][0][][] */ -96,95,47,-20,77,-48,111,127,-8,86,62,-25,-66,30,64,-38,49,-15,5,17,-69,-43,-40,-77,-40,-17,24,81,30,119,46,-34,67,-27,-6,-17,109,-24,21,-8,17,58,74,6,93,115,26,-63,34,79,-15,58,-12,17,77,15, /* [127][0][][] */ 94,-46,56,-4,-61,-46,-34,-46,92,-1,61,-45,69,-24,-103,86,-30,20,49,11,3,9,117,42,-45,54,-51,-57,0,88,107,2,27,44,-57,23,-45,116,39,56,21,-110,60,-4,-29,41,-71,-127,66,-76,94,22,90,24,-24,47, /* [128][0][][] */ 7,59,-76,15,40,-2,77,-13,114,60,12,-36,-56,-9,18,14,26,19,-10,-44,14,-6,9,127,-73,-48,9,6,-110,-58,-52,-17,-20,-35,-55,2,15,53,-16,-98,-46,27,-24,58,38,17,13,-12,-3,-29,25,50,-45,-37,-21,4, /* [129][0][][] */ -10,-89,-20,72,37,-92,-29,16,-30,109,-87,-48,-11,-32,58,49,-42,84,25,41,-93,-65,7,5,-98,-30,49,-24,69,-44,-101,-9,1,44,-73,-72,27,-19,61,-123,-115,18,34,127,35,1,-9,-96,5,-69,-29,-63,34,48,-56,46, /* [130][0][][] */ -19,-25,95,-31,3,4,55,-37,41,-55,45,-57,-24,-7,83,35,57,92,-4,-17,30,-10,-85,69,-62,-39,-57,-34,-31,58,-45,-40,-105,-30,44,27,36,-53,-55,63,-28,-55,-4,-127,24,50,-5,77,-36,12,-22,20,60,-74,5,20, /* [131][0][][] */ -38,21,-42,-50,-14,14,52,25,-81,7,42,-55,28,60,-69,-55,-20,-23,-14,-3,-29,36,37,-6,-46,18,27,94,-50,-20,16,-33,-102,78,-127,-24,-73,-43,-21,-57,-26,-7,69,38,108,-47,-30,21,3,35,5,10,24,6,33,-31, /* [132][0][][] */ -18,53,-75,123,-9,-27,45,8,-76,-12,95,21,11,-43,8,-22,-45,18,-104,23,43,-43,-83,30,112,-3,-60,-3,88,34,-34,-61,-100,28,-34,76,91,-25,79,68,-127,-43,18,-44,-12,-45,-9,0,-102,37,-63,-71,59,-54,53,-1, /* [133][0][][] */ 9,63,-12,-127,-91,43,82,86,-55,-17,42,-13,-20,82,-10,72,39,19,-92,-1,32,-11,9,11,-74,87,13,-21,-54,-56,-57,-41,89,36,-58,61,-42,-3,75,74,-51,83,-55,11,-28,-120,-76,-59,60,-53,45,-32,26,77,17,-19, /* [134][0][][] */ 51,-80,15,52,77,-38,-53,33,30,-68,42,35,-15,-2,55,-34,-27,-93,-2,2,17,14,41,24,-47,29,38,-27,-21,74,-30,10,17,88,-8,48,86,27,-36,-127,-15,53,-9,1,-4,-9,-28,-17,-9,35,-63,-106,-8,-90,25,75, /* [135][0][][] */ -48,-83,-8,-34,94,26,100,16,-60,18,93,42,121,-53,-37,35,4,-70,82,-127,47,39,-27,-65,-22,28,-78,1,45,92,57,6,68,-38,15,-101,-78,-30,-41,9,0,-55,-29,6,-61,-42,-47,19,-37,28,-48,19,-19,37,-51,57, /* [136][0][][] */ 38,-53,-11,3,-41,-19,-13,21,38,-48,68,-10,-62,-7,4,36,73,-18,-29,16,31,57,-32,-68,79,5,79,-97,-56,-47,52,-31,-14,-11,-5,-13,-21,-61,22,-21,-62,105,55,-11,47,23,64,-72,-7,14,-68,78,127,41,7,118, /* [137][0][][] */ 46,-6,-26,119,89,45,-20,19,12,-73,0,5,74,94,24,-5,7,63,29,1,48,-44,-80,30,54,-46,42,-76,8,-120,127,50,71,-58,-108,25,2,-7,109,67,-6,42,-12,62,17,61,59,61,-13,46,-58,7,29,-113,5,56, /* [138][0][][] */ -124,1,7,12,-127,107,-24,-37,28,22,-16,48,55,101,-4,62,120,-89,12,40,-56,-99,67,-4,-8,32,-29,12,-2,-25,80,41,40,33,12,-107,61,5,-70,1,-93,86,-16,77,-9,-84,1,-25,-117,-31,67,33,-63,26,95,33, /* [139][0][][] */ -56,-17,-54,-1,-39,-11,109,43,-84,-13,45,46,-6,40,16,29,-34,71,31,-46,-83,-64,-5,2,-76,-42,-119,-94,-82,-67,-25,-105,-11,10,-41,-28,60,73,47,33,-15,-8,-52,-34,38,-61,32,-37,-53,-35,27,-127,17,12,18,-13, /* [140][0][][] */ -103,-2,34,127,-15,62,4,50,22,-125,-7,38,53,-70,13,-124,20,89,36,7,-84,-22,44,16,80,-127,-58,122,-52,-70,-74,-57,30,12,-93,35,-111,10,-11,-28,18,-32,79,-95,-83,-61,53,69,-4,-62,-31,54,-50,-96,50,-74, /* [141][0][][] */ 15,-108,-7,39,71,-48,57,35,16,-25,-60,-51,-24,87,-41,-24,62,-7,-74,-102,-28,69,95,-62,98,37,55,7,-17,74,-22,25,47,-85,12,127,5,90,-55,34,-25,48,-9,84,12,-7,-99,-9,0,43,26,-14,52,-13,114,42, /* [142][0][][] */ -39,20,-39,-7,76,-127,26,3,44,-55,-29,-95,60,9,-15,-36,8,57,58,-62,-77,-28,66,25,-71,100,23,-83,5,-55,-7,35,16,61,-39,37,77,6,114,-18,114,53,-38,21,30,25,55,79,67,17,2,-57,-19,-89,19,-15, /* [143][0][][] */ 5,7,-52,-4,37,102,-63,-16,-4,-42,-31,12,123,18,-64,-13,71,13,-67,23,18,-22,-34,117,-51,77,44,0,-68,-24,-74,-10,2,-107,-32,-20,-17,24,-31,41,-59,-69,43,-109,76,-11,-4,90,-127,50,30,76,-97,-20,-40,109, /* [144][0][][] */ -19,-7,-54,16,44,49,-36,3,-19,-52,4,-9,50,47,-15,-31,35,68,-36,-111,103,59,-94,66,49,75,71,0,-65,-1,-55,2,-2,30,125,26,93,-31,77,-17,51,-78,54,32,76,-52,-40,-16,-84,-22,31,54,-67,-127,4,14, /* [145][0][][] */ -54,33,-11,-15,10,0,45,-5,40,-4,90,-37,-70,-22,114,-102,-11,-78,127,-24,68,-47,-3,-10,56,-10,-67,18,-48,-2,-17,27,52,39,48,81,50,-66,-43,57,-35,-29,-26,18,-70,-8,8,-55,37,58,-77,-9,48,29,-30,-26, /* [146][0][][] */ -32,25,-26,-6,25,-11,-46,-38,94,7,53,59,55,-63,15,20,-7,42,-4,-33,-38,-4,14,-3,29,-51,-31,57,-53,26,-6,-14,8,-127,-62,3,-16,-63,0,-3,-2,-67,-29,-126,75,-21,-97,98,-39,51,55,23,-45,-47,17,46, /* [147][0][][] */ -46,-18,-42,-31,-48,38,-50,-42,48,-20,-15,-113,-20,28,58,-27,-63,-44,80,-123,-24,-41,42,21,61,-33,-8,-31,18,127,-23,-47,-80,-82,21,64,22,25,-22,6,-8,25,-51,38,-15,-18,30,13,-30,10,47,-36,-8,3,-21,-3, /* [148][0][][] */ 3,35,7,99,28,-3,94,-29,123,20,-1,23,4,51,74,-58,-30,-93,32,-72,15,-55,65,26,78,63,-43,-43,-34,38,-88,73,16,81,9,-103,45,68,58,48,90,-41,-89,-16,28,-69,51,-32,-3,18,-11,-89,13,-127,-63,-102, /* [149][0][][] */ -58,-5,42,-21,59,115,-4,-21,-50,11,67,10,-42,29,-38,17,34,-44,55,-48,58,119,37,12,44,65,-5,-28,-59,-35,-34,-59,10,-74,-92,-50,99,-8,7,-81,87,-127,-69,32,107,-40,-30,1,-25,-31,-32,-33,14,-41,-62,-2, /* [150][0][][] */ 39,93,-79,-55,-9,-10,32,12,5,-26,29,30,-56,56,5,-61,42,-54,-14,-42,-2,17,-42,-7,-39,-7,-45,41,36,-21,34,34,-46,25,-10,-74,-127,0,36,-29,55,4,-49,11,20,-75,27,-1,68,-58,-48,-7,2,-31,5,-41, /* [151][0][][] */ -37,3,-32,-18,15,-80,25,19,-52,-23,25,27,3,41,-47,-19,28,-19,39,5,-4,-8,-51,-4,-8,54,127,-12,-9,53,-16,-39,-34,-23,-3,-28,-25,18,6,24,5,-15,-2,10,-9,-1,-2,-9,-17,-22,21,5,34,20,-2,33, /* [152][0][][] */ -2,10,16,-97,4,-10,83,84,-10,-127,12,35,-31,-39,-55,-116,-21,61,-37,53,43,-13,7,5,-11,-16,-112,-48,13,-45,-55,-8,43,33,23,-39,41,14,20,0,13,47,-9,-33,16,38,-70,-26,16,34,11,13,-30,57,-7,-5, /* [153][0][][] */ -1,-2,-26,10,-22,60,43,3,-45,-28,3,-48,-14,17,-22,40,6,-85,35,-60,62,64,-37,-7,-23,-82,-48,28,41,36,44,12,54,-23,5,28,-46,78,18,127,8,118,-5,-45,69,4,-13,-44,38,108,-49,-57,39,-26,28,50, /* [154][0][][] */ -16,14,-16,74,94,-77,-46,40,29,13,54,-26,40,68,106,-18,-14,22,20,73,-118,-27,6,-4,22,-27,-3,-9,53,42,74,-37,-27,-53,-19,-19,-10,8,-16,-6,-35,127,7,-25,-39,-51,83,51,-25,-69,47,-22,22,12,-16,68, /* [155][0][][] */ -99,3,92,60,-11,66,15,67,-18,-20,-14,19,17,-66,-96,18,-87,119,0,59,-64,117,60,-54,77,9,35,23,-14,-43,15,30,44,62,72,-47,-127,-43,62,-27,47,-107,100,2,15,-82,34,6,-56,7,77,-49,-63,6,97,88, /* [156][0][][] */ 73,123,63,-8,2,-54,-42,15,-72,67,-114,8,-9,41,-45,47,-41,-34,-4,93,-34,-25,94,15,42,-23,-41,21,122,-17,-18,52,103,-29,55,-17,120,45,-1,67,74,62,127,-60,-48,80,-7,8,-69,26,62,-43,-27,-81,13,-35, /* [157][0][][] */ -13,-13,43,-43,5,63,5,20,11,23,28,37,21,-49,39,23,35,25,-63,-24,-33,-57,-50,-75,61,-66,4,40,51,121,-97,-27,5,-100,31,-33,102,52,-52,-21,-84,-6,-20,32,26,-25,-30,111,127,19,-46,10,-74,21,-1,19, /* [158][0][][] */ -63,-4,-41,-81,26,41,-22,-3,-57,66,-56,-32,-127,22,15,-24,6,-14,-5,8,83,20,37,41,31,53,34,16,-23,-40,1,35,45,-4,-38,53,56,-34,-2,0,70,35,36,11,12,1,2,71,-41,11,42,-44,-18,-29,4,-41, /* [159][0][][] */ 36,82,22,36,97,22,72,-15,-8,-17,72,72,-24,-8,-3,27,-54,-29,-88,38,19,-83,-11,-108,54,115,-31,-24,0,48,17,30,55,84,-24,-62,37,-127,-81,-44,-2,-82,19,105,66,29,18,84,25,-15,-66,0,109,-79,95,-49, /* [160][0][][] */ 9,51,31,62,46,-23,56,-18,31,-38,-85,60,86,38,41,-29,-43,76,-53,72,-9,-46,69,-31,13,-51,24,-79,-77,-40,13,89,45,86,63,65,48,20,-25,25,-37,115,29,-86,-18,-36,-22,11,52,-78,-26,42,127,-19,-8,-2, /* [161][0][][] */ 22,-44,15,6,-71,-3,31,-40,-127,-12,61,27,-5,-17,-86,32,6,-72,1,-44,1,61,23,-23,-8,-16,-8,102,-28,-10,-69,31,42,-23,10,44,33,63,12,2,53,-24,10,44,-8,7,46,-101,25,2,-68,7,-85,36,124,-24, /* [162][0][][] */ -2,26,-81,-20,-63,-32,-63,59,17,-86,34,13,88,38,54,-42,91,52,-57,7,60,-127,-25,6,31,38,100,15,10,-36,42,-42,9,4,57,-25,32,72,13,-25,24,-34,51,21,-2,-9,17,11,-53,-10,-2,-59,4,-34,-40,-23, /* [163][0][][] */ -3,22,62,93,-48,-86,-61,49,56,11,76,14,-64,-106,-11,-61,-10,-72,11,127,34,55,-33,5,0,3,-76,-13,-94,92,28,59,14,-10,-9,-40,6,-60,-66,-77,-83,4,59,-68,-57,15,30,27,88,-2,-107,2,16,-58,-78,-14, /* [164][0][][] */ 36,15,16,44,34,-7,34,-10,-34,36,30,-54,-8,-28,-16,53,38,27,-26,26,21,16,-38,-22,17,-56,-50,49,-39,64,56,-18,14,57,13,24,-62,9,-10,-15,-127,36,32,49,20,79,40,-34,69,13,0,20,44,-33,74,6, /* [165][0][][] */ 120,26,80,8,-52,-17,2,-37,-8,65,3,112,-13,11,-22,24,-80,-45,-99,50,-14,64,-43,-89,-79,-30,-127,26,14,-77,-74,6,49,-21,35,-78,107,90,-42,-18,-85,-36,-56,69,-27,-52,63,16,-6,24,-55,37,45,42,11,55, /* [166][0][][] */ 50,-31,-66,-102,63,58,-18,20,12,-89,31,-7,-80,-57,-65,-32,-62,-22,41,-29,7,0,-27,64,10,3,36,-83,-88,53,-41,6,1,-10,-22,65,-17,48,-17,92,-57,-14,17,-83,11,0,74,-1,23,30,17,-59,-15,-127,50,-79, /* [167][0][][] */ -6,-81,39,33,-46,-18,-9,-62,25,-4,1,48,-40,-62,-40,-89,-90,-38,-28,-102,-19,22,-9,-46,27,61,-59,-122,-87,12,38,52,45,65,31,-23,-51,-21,-27,11,52,27,27,-44,-55,-23,50,-78,94,-127,46,-15,-37,47,27,9, /* [168][0][][] */ 100,13,-88,-22,-71,12,29,-5,70,-3,-69,-60,124,-49,78,18,-51,28,58,-35,31,104,-19,31,30,2,-46,-55,117,52,-4,16,-16,38,-127,-34,91,48,-71,-94,-23,-10,70,-70,16,-8,-38,-34,26,15,-50,45,65,-7,-78,84, /* [169][0][][] */ 15,15,98,-40,-2,-6,-74,40,3,-18,-72,60,47,24,-33,-11,72,-57,-18,31,101,-85,-27,-36,-90,40,-6,45,-19,93,-33,-75,-48,1,9,-114,-39,83,25,-88,-58,1,127,23,119,32,-41,-21,-24,-45,-21,52,-16,-113,16,2, /* [170][0][][] */ -18,9,-32,-47,35,123,12,36,-6,35,27,12,-12,-84,33,34,-46,-40,-21,-60,-6,-14,81,-20,6,-11,-6,-83,102,-20,-14,127,35,-118,-81,46,52,-74,-64,-82,-63,10,-4,-31,97,53,-96,-19,27,-1,-92,79,66,22,95,92, /* [171][0][][] */ -26,-62,47,36,14,-19,-50,-37,46,3,40,-85,-77,-74,-1,55,5,-34,49,-22,6,-63,-16,65,62,-14,-43,-43,9,-67,66,-127,-67,19,-7,1,-13,108,25,-85,-23,-106,-102,-30,-9,-35,-73,-93,66,16,-9,-37,-4,16,-30,-11, /* [172][0][][] */ -27,73,-69,-3,6,77,16,92,-18,-37,122,-21,29,76,76,-5,7,-4,-9,-84,14,-47,-71,-84,-67,3,11,89,-24,22,49,14,10,53,19,-12,74,-27,0,-104,37,-17,-71,-4,11,127,112,-99,-58,-15,9,-48,23,92,41,48, /* [173][0][][] */ 5,-4,-37,127,67,-5,-47,50,-83,-41,12,56,9,-31,-32,-21,-7,20,-23,0,13,-8,39,-9,12,-17,47,49,9,3,13,-43,10,8,-27,51,-21,9,15,-13,34,29,-7,-16,7,12,36,-25,13,12,-15,-10,-35,-19,37,30, /* [174][0][][] */ -52,69,-56,-21,-28,-9,-106,80,20,-127,-17,-23,-17,25,-18,-31,25,-2,61,24,53,4,3,-14,35,-35,-70,18,-80,-61,-10,40,8,14,-54,-23,-92,60,-46,8,-28,10,-61,-15,-11,-14,-15,-12,14,29,20,51,34,2,124,11, /* [175][0][][] */ 9,-48,46,-8,-16,-77,-29,-70,-26,-1,-15,-13,-41,-88,2,-85,60,-23,-54,-19,-49,11,-10,43,-32,-40,-8,-7,-17,47,-69,59,-80,-26,103,-21,22,33,-27,-9,25,-81,-37,-127,12,-55,-3,-23,-31,-68,-75,10,-1,-10,-57,-55, /* [176][0][][] */ 27,-52,4,127,-17,88,-49,-48,61,-91,44,-8,0,-4,9,-68,-12,-32,56,53,-66,-28,-36,-90,61,-61,-29,-14,-22,7,13,12,30,-93,78,-12,-79,17,4,-39,-16,44,42,64,-75,28,51,-37,-73,-119,-1,-35,-69,-56,33,-17, /* [177][0][][] */ 27,14,103,-127,-96,48,21,-73,77,-7,14,87,-5,-2,68,16,87,-26,5,-33,-40,-50,8,86,-51,-68,-23,-49,-42,-8,-13,-15,-13,-80,-57,1,82,26,-28,-65,-22,-101,66,-61,1,8,39,11,-13,35,-18,90,12,83,-48,36, /* [178][0][][] */ -11,-19,44,-4,-2,4,-35,23,-93,-8,60,113,0,-14,64,-51,-127,39,80,33,30,-9,3,18,29,-17,-15,-25,53,12,-34,30,108,86,-26,-84,-40,-34,-17,-99,-103,60,17,27,-21,63,17,5,12,-20,-14,47,18,-42,-56,34, /* [179][0][][] */ 92,-53,-118,-78,109,70,3,-38,58,-89,62,-23,20,21,75,-53,85,-7,-48,-127,34,24,79,44,31,25,14,88,-16,-114,-4,-41,51,16,-33,-5,-122,92,88,93,-1,64,-120,-34,-12,60,-44,-61,-99,83,-79,21,116,102,-23,5, /* [180][0][][] */ 21,-52,31,-15,-19,45,11,-3,-59,7,-21,-9,3,-27,-5,48,127,32,-8,-36,32,56,29,5,-31,-25,-24,15,-9,-18,-15,-9,-33,-1,-20,-51,-46,36,33,-27,19,-6,13,9,-26,18,7,-16,-12,14,-66,10,-15,21,22,50, /* [181][0][][] */ -7,-35,42,45,-35,12,16,-32,-49,39,-6,4,-20,48,15,18,5,-15,52,-7,-25,44,-68,19,14,-19,17,38,-46,-39,57,-35,-44,28,9,-8,22,-10,82,-78,90,-40,2,-7,127,-22,36,24,20,-30,-11,-43,-51,28,18,-19, /* [182][0][][] */ -24,100,-42,55,-19,-6,71,-5,-39,-18,-33,-91,117,-25,105,51,-11,-71,123,93,-86,-86,17,-5,40,120,-10,-4,-22,-21,37,45,2,-29,-34,33,-126,33,-27,11,54,75,-32,75,-16,-78,48,2,-127,20,-49,-22,107,43,50,-77, /* [183][0][][] */ -65,2,-69,12,54,53,-41,-12,-80,-56,-33,57,6,50,-6,-91,38,-28,-45,-50,-21,-29,-28,52,43,44,-32,53,-81,52,1,-33,70,83,4,-57,-1,50,93,25,-90,-127,-32,34,39,-62,-42,39,-21,39,40,81,42,51,57,-56, /* [184][0][][] */ -28,-20,47,-70,27,-14,-82,11,25,-55,115,-26,58,63,-74,49,16,-56,-31,-98,74,-5,70,89,103,55,127,27,-95,-9,16,14,65,-24,-57,-19,20,27,51,91,-33,-40,67,6,7,71,-23,-44,-25,55,17,-27,-24,46,-34,-10, /* [185][0][][] */ 15,-44,72,-1,2,-41,4,-49,-74,-54,5,18,-39,39,-32,-21,-113,-94,32,40,29,-31,-15,34,-19,21,-63,-70,-8,64,51,-66,-5,49,-10,-45,-36,-60,-24,-52,-29,61,77,-50,-40,69,2,-78,-37,11,87,62,14,-69,-127,-39, /* [186][0][][] */ -80,0,-12,35,-58,-9,-67,70,-105,-121,69,66,47,70,-2,-17,-20,-3,29,-14,22,-15,-127,-44,74,-65,-66,-36,-1,13,-61,-41,83,20,-115,-38,-36,-29,-1,-102,113,-16,26,13,15,69,-33,73,89,57,37,13,-47,56,-18,-2, /* [187][0][][] */ -38,88,-70,29,-19,35,69,70,87,91,-76,42,-43,-75,-35,-6,-36,-4,21,70,-5,-7,63,17,-33,6,-46,47,-25,-18,8,52,16,35,61,5,8,49,58,-12,-56,64,38,-17,33,44,-35,9,-51,127,0,-13,43,-35,8,-46, /* [188][0][][] */ -36,14,-6,3,36,-21,7,-22,127,7,24,-25,-43,-72,-21,-17,46,29,8,-50,-63,-47,13,-88,30,21,72,-39,-89,-7,-28,107,67,35,8,26,59,58,-26,-75,-77,-38,37,66,-58,109,-99,11,109,-65,26,-44,-46,4,90,100, /* [189][0][][] */ -41,46,35,-18,90,0,1,38,77,4,-11,-48,-92,66,28,124,-57,38,-59,-56,3,2,-25,85,126,-41,57,-68,10,65,-127,17,3,17,117,11,-88,-20,60,-9,37,-72,23,25,-127,-33,-18,-4,97,-65,-87,-34,52,0,70,-76, /* [190][0][][] */ 74,74,26,-116,-31,64,-8,6,-55,-1,-58,-71,15,46,13,60,-78,18,33,-127,75,-23,-36,-29,75,-2,-127,81,82,-51,-4,39,73,-15,119,-52,11,103,36,-15,87,-67,-51,44,-87,37,-22,9,-100,119,-98,-21,-24,96,-3,47, /* [191][0][][] */ 17,-11,30,25,14,35,-38,-30,-32,-72,-64,-13,-67,91,13,-16,-78,65,-32,-99,16,-10,66,-45,-34,62,35,-3,12,-6,-17,-2,-54,-44,-127,-30,32,-52,107,40,91,30,16,66,-20,50,-45,24,-82,34,88,24,-40,89,-29,-67, /* [192][0][][] */ -75,72,60,54,-76,22,-35,15,-35,-4,88,21,-70,-73,46,-18,-64,-14,-2,23,82,-26,-94,-37,4,78,-9,43,-127,-92,58,-2,7,5,-34,-1,-54,-18,-43,-11,87,28,-22,-35,3,-24,-24,-83,-16,16,-16,-56,-83,89,-91,-66, /* [193][0][][] */ 78,27,-3,41,18,67,36,53,10,25,36,91,-5,-1,8,-17,43,41,24,20,-66,-27,87,-18,18,20,47,25,-50,1,-50,13,16,32,-19,-46,-54,86,-47,71,13,-89,127,91,-104,-14,60,-12,22,7,-16,-66,-2,-3,-92,-20, /* [194][0][][] */ 34,33,42,49,21,-15,10,49,-127,21,43,37,75,70,82,-3,-59,0,-12,1,-36,-14,-14,88,39,2,70,-43,-29,78,48,110,22,104,-61,-14,-107,55,29,76,-37,-73,-14,53,-68,62,100,32,67,41,-94,-90,-31,24,-108,-56, /* [195][0][][] */ 78,-60,43,-8,70,-73,-4,22,6,-37,-35,56,11,13,-6,-26,125,-36,-42,1,-11,-73,-22,15,46,-25,-46,62,-57,64,-6,-53,76,11,-2,13,30,48,12,15,-48,38,-66,18,-60,-70,58,1,6,-70,39,-55,127,31,4,34, /* [196][0][][] */ -31,73,-52,-8,29,32,-66,-91,36,-81,27,16,39,11,-73,26,127,-31,-32,-38,31,25,97,-35,-49,-54,56,-79,-63,59,-65,76,-12,-127,-17,14,-111,-5,-92,-6,-20,-53,61,29,-53,11,21,28,14,106,-99,125,41,-31,-41,-105, /* [197][0][][] */ -7,19,-9,11,-47,38,4,-59,-82,-38,-82,-7,83,42,-21,-16,13,30,-47,6,6,47,29,15,57,-30,23,-4,-3,7,44,-100,-34,-3,14,11,-48,127,-6,-8,34,-75,-15,-8,-41,-47,14,-120,-3,-18,31,37,-9,-42,12,22, /* [198][0][][] */ 30,42,-5,-19,101,-10,30,-58,-30,25,29,54,92,-14,31,-30,41,17,66,66,52,26,-32,-2,-73,-61,47,21,41,5,-58,18,-66,127,39,-61,-56,54,-73,25,-57,34,-32,8,-80,-79,14,3,-20,11,-6,-19,70,11,-52,-63, /* [199][0][][] */ -10,-30,37,16,62,-89,82,22,-31,-86,26,62,-32,-10,44,37,69,13,-43,4,8,12,66,55,51,-38,9,-74,49,-39,-72,-57,-12,-54,-20,52,40,-57,-36,-31,-12,-14,127,-18,-82,-26,-118,11,71,-39,-51,-35,48,37,39,46, /* [200][0][][] */ 47,-55,-107,8,-57,-24,-89,22,-32,24,-66,17,-20,14,-47,19,-16,-53,-43,8,84,-26,1,3,58,13,20,-10,8,-69,-73,-10,-26,10,-76,53,-114,-22,-70,-44,35,50,-54,-39,11,-12,36,66,45,37,83,-33,-35,127,78,-24, /* [201][0][][] */ -10,-14,-47,-57,5,-57,-26,54,19,-22,-28,-4,-25,-92,31,29,60,-56,-8,-47,-93,-49,23,4,-127,5,17,-69,91,12,33,26,-10,21,-14,25,-95,82,61,-64,-90,22,103,-48,-2,8,-27,3,-23,41,20,-22,11,-25,-31,50, /* [202][0][][] */ 91,39,2,-18,34,-21,-70,-41,31,2,-43,-40,45,-12,10,67,-119,-83,28,-82,42,-112,-127,15,-24,57,-11,14,32,47,-79,73,91,21,69,-74,73,74,-86,-75,-40,-63,-14,50,-29,27,-47,-22,19,-3,-120,1,0,-71,57,-18, /* [203][0][][] */ 4,-13,60,26,-57,-30,-34,25,51,-51,0,24,79,-13,-48,-44,73,81,-28,-12,-1,-14,59,21,-11,-22,-45,62,51,-73,65,4,9,-12,40,20,-9,-44,33,127,-33,91,-47,-11,-46,-16,20,25,23,-43,-51,19,5,31,-37,62, /* [204][0][][] */ 8,-107,29,-12,-87,-99,39,45,33,-17,13,-115,-8,-127,99,15,-64,66,9,-10,24,-25,87,-21,-7,8,-52,-7,39,63,23,-81,-85,-5,101,22,102,92,-21,-10,-63,-37,-106,-9,76,45,-24,-5,-28,21,28,-34,34,64,102,78, /* [205][0][][] */ 37,110,45,37,-48,58,13,-12,20,111,5,-51,-52,-58,-11,11,-14,36,10,-9,-52,-6,-49,13,-80,-31,-68,0,55,-65,-27,25,-82,77,116,127,-105,10,-9,-18,-96,-8,41,50,5,-21,-110,-21,-34,-40,52,-15,61,33,0,-40, /* [206][0][][] */ -70,73,-127,-81,11,65,-109,-45,24,-1,37,8,-9,20,54,-37,-26,-61,-3,30,-55,-28,100,-48,60,21,-41,105,-26,-19,22,-1,38,-83,-83,-47,48,114,114,-10,55,76,-68,-74,-21,29,53,-19,-63,96,87,64,68,0,51,-8, /* [207][0][][] */ 41,-15,14,0,3,-73,19,82,-29,-67,51,-119,-82,50,-62,-44,9,-15,43,-46,53,-18,78,22,3,49,-19,-82,-2,15,-69,-77,33,-124,-56,32,80,20,-75,89,-61,-62,-58,-52,-49,52,51,40,-28,127,51,67,-24,31,-6,24, /* [208][0][][] */ 87,46,-8,4,-20,-70,-35,-33,-4,127,-52,-56,10,1,-53,0,-60,-61,-73,-39,-57,-30,-42,15,-66,-18,-49,-23,87,-10,-86,36,93,-25,82,-36,40,-1,-18,11,-25,-58,-26,14,-59,-37,9,-102,-6,20,-60,-14,79,-98,54,34, /* [209][0][][] */ 107,-30,-28,-5,-21,48,119,27,-74,-63,-32,-71,-26,-127,56,-13,31,90,38,12,117,-107,43,22,-46,-48,-8,69,-102,2,-43,-13,39,-53,72,-66,-33,67,6,-36,37,-8,-44,-41,-120,-75,14,-73,29,-42,55,52,-42,-61,38,-26, /* [210][0][][] */ 95,11,32,-4,13,19,1,72,-11,-118,-34,-22,-39,-81,9,-60,18,5,-6,-20,-25,-53,67,21,11,-64,-42,-21,48,-4,-15,6,-19,40,51,-7,10,18,103,22,-41,-40,19,-63,27,-70,127,63,-9,48,16,68,26,-21,-47,-51, /* [211][0][][] */ -18,43,-19,28,-13,-55,-26,-9,-28,1,67,10,0,36,80,89,-16,-58,22,1,-25,-46,-85,-6,61,-27,-53,-6,-25,24,6,19,-80,-36,-33,100,-18,-35,59,-23,9,110,60,-15,-20,-50,-51,1,29,-25,15,-2,-27,36,66,127, /* [212][0][][] */ -59,10,28,47,-54,46,43,127,42,-57,45,-43,-23,61,-50,39,33,52,-24,-12,38,-3,-23,-27,37,103,-47,-103,-77,-34,-28,-5,22,25,-43,-23,-16,-36,-11,26,-43,15,-8,16,-30,33,69,13,-61,43,-31,-16,31,15,4,39, /* [213][0][][] */ -63,19,-12,-68,-11,-12,-9,40,-49,30,-89,-45,124,-29,29,-127,-54,-25,56,-14,-29,14,77,-67,96,32,-3,22,27,41,11,-89,-38,-45,10,66,-70,-26,2,-52,-47,29,-2,24,-11,2,36,95,1,19,43,34,0,-1,6,-2, /* [214][0][][] */ 23,99,-22,21,79,73,30,-7,44,-46,30,-1,-61,23,84,-35,-57,-35,33,-15,-81,73,3,8,-23,-64,1,22,-60,51,-13,25,-81,-25,-3,-70,-24,-71,39,-94,-127,73,-18,36,50,67,-80,-76,23,-65,-87,29,38,-15,-11,34, /* [215][0][][] */ -7,-127,17,-36,-113,66,18,72,60,1,3,-6,45,68,69,-14,-6,-23,40,76,-53,19,-34,-2,23,34,-50,-57,21,3,26,60,8,-53,117,-26,-51,35,34,34,69,-2,69,55,19,-4,79,7,-4,-50,43,27,-39,61,-24,-18, /* [216][0][][] */ -16,-54,2,87,-39,-16,-10,60,39,14,-26,-44,-19,36,-90,55,45,-5,-45,49,-11,103,32,78,-33,-25,-8,-40,64,26,44,22,-23,21,20,58,-4,26,48,-47,-117,33,-2,-7,-84,100,-32,-61,-61,-80,-65,127,31,-18,-10,-34, /* [217][0][][] */ -7,67,-105,38,-25,-32,126,-31,-114,5,55,58,69,2,-54,-19,94,-30,-34,-127,55,36,23,48,125,9,28,46,-25,9,55,8,-46,74,-49,41,45,-81,46,89,80,-105,-66,-9,-22,-57,103,-99,-37,75,1,4,-9,-2,-15,76, /* [218][0][][] */ -55,-65,30,55,-127,31,13,-63,35,-18,55,-9,-13,-16,47,16,19,-42,30,46,-10,-31,60,106,-5,51,9,17,-50,-104,20,3,56,60,75,-46,56,37,-32,-18,99,-9,5,7,-34,-103,43,80,-26,26,50,-24,16,53,38,-46, /* [219][0][][] */ -11,-1,127,47,12,36,-31,3,17,-83,-91,-75,17,-125,72,-92,74,-11,-55,-40,26,-19,122,-1,10,-11,-51,58,-87,58,-33,44,18,30,-79,37,-112,-26,-45,47,87,-4,68,-41,-63,-35,-53,-48,-51,-87,-15,-22,72,-33,-16,19, /* [220][0][][] */ -47,91,-126,-85,-45,19,114,72,-59,127,-35,-16,-33,-29,79,-73,-127,45,86,67,-104,107,63,11,-53,2,7,7,-4,12,-75,8,77,-63,-12,-121,-115,28,66,-89,19,-16,-79,-104,-105,50,-34,-102,77,65,58,-12,-34,7,-30,-40, /* [221][0][][] */ 36,127,-45,-1,-52,109,-90,44,-14,82,-83,-50,37,42,16,-22,-16,59,52,-18,-14,-84,-9,18,-10,-10,-9,10,-69,-27,-80,43,20,-9,56,-42,-22,-47,-80,95,7,-12,-55,-32,-3,60,-21,39,-21,49,5,-62,-76,37,-100,-74, /* [222][0][][] */ -2,68,24,11,-37,9,36,-4,28,58,-20,-36,45,41,4,-3,24,73,-28,83,-63,-23,-90,-3,76,62,68,8,49,7,34,-18,-5,98,19,3,-32,57,-127,-48,-30,7,-33,2,-74,12,-46,18,29,30,-30,-6,6,-9,7,-112, /* [223][0][][] */ -57,-64,21,-37,-94,118,54,-8,-21,-26,-66,26,65,5,-16,40,-6,67,-4,-127,-58,67,-44,-3,124,46,-39,80,-81,37,4,-1,93,9,48,2,26,-55,11,16,71,10,-60,-5,48,-43,42,21,-13,92,99,54,-80,18,-50,19, /* [224][0][][] */ -41,-32,10,-6,-100,-35,93,37,-66,-100,-45,-70,21,72,-92,-25,-88,-6,-41,-77,21,104,-17,-26,32,-98,-28,91,-4,79,52,-22,40,-45,-28,-72,56,81,51,-127,-72,-95,-55,10,116,-80,104,96,-18,-98,-84,68,25,18,-27,59, /* [225][0][][] */ -4,-108,40,44,-1,-29,-7,-12,-32,-80,-70,21,78,26,37,127,62,37,15,3,59,22,27,58,-33,19,21,13,-24,-38,-28,-54,6,-92,46,43,15,45,-111,-25,11,23,-21,-15,23,-12,-5,19,2,-16,-30,51,13,-12,-36,1, /* [226][0][][] */ -106,-48,-67,56,-110,43,73,32,77,-62,47,-91,56,45,-7,17,-33,58,-49,-64,62,-127,59,48,14,-66,-63,-65,107,18,41,38,3,-58,5,96,33,51,24,25,-28,-41,3,34,106,49,2,-2,-68,-17,-96,48,-93,-78,7,12, /* [227][0][][] */ -61,-44,85,33,-16,-101,-6,3,44,-31,57,49,-69,-41,93,-61,-73,15,-36,-33,-24,-102,110,79,77,-12,69,-32,-3,9,55,62,-13,-28,-103,66,2,-127,-23,-54,22,-63,-77,102,-19,69,-27,12,-60,22,78,74,10,99,-52,43, /* [228][0][][] */ -6,-53,-72,-3,60,-95,20,18,34,-49,-84,37,17,-52,-57,88,79,-14,-58,-27,34,-88,-72,-118,-48,-19,-1,-11,3,-10,117,87,33,-59,-46,-89,5,-47,41,-115,60,18,8,-16,82,56,-71,37,3,42,-59,69,-127,0,-7,4, /* [229][0][][] */ 28,38,-77,-25,-47,54,75,70,0,51,0,-78,53,-85,15,-11,-9,3,-2,70,9,-7,12,-9,-6,-58,-15,-48,-86,77,48,-7,-3,4,15,43,53,58,47,-79,-10,-85,121,11,1,66,44,-19,29,118,-2,127,64,77,32,17, /* [230][0][][] */ -55,9,-37,-15,-83,28,36,-47,-53,-68,27,-55,15,36,-8,-26,19,43,19,-101,27,56,-57,90,76,-47,74,96,127,-21,-41,-12,-13,-7,83,6,-41,7,-56,8,-30,113,-64,-23,-56,-7,-43,97,-63,45,30,-90,-79,-75,67,57, /* [231][0][][] */ 78,59,-20,-21,80,-50,3,-50,-28,31,67,-57,-13,-20,61,-4,-46,-49,2,22,7,-67,-12,25,15,-58,40,4,30,49,0,-1,26,47,-106,-127,19,-22,18,17,29,-43,-56,-24,80,-5,-39,-31,18,89,34,-18,17,-31,98,-5, /* [232][0][][] */ 31,-93,16,-41,-41,-78,28,-11,27,75,-79,21,16,11,21,-80,22,1,-46,-40,-8,18,18,-2,10,-40,56,-60,36,-31,-33,15,5,19,-34,22,25,40,2,-28,37,-16,19,3,3,25,-40,-32,-35,8,-1,127,-8,2,41,57, /* [233][0][][] */ -1,24,50,-20,51,35,-7,46,92,-62,-15,-64,127,-36,-111,48,-43,-93,20,24,111,-92,38,-41,-53,-53,-13,0,-8,-68,-6,36,5,-58,-66,45,100,21,25,82,-36,-50,120,-60,-97,7,-77,31,91,-53,74,66,81,102,-10,67, /* [234][0][][] */ -11,-53,8,31,89,63,73,-17,1,-10,-83,-42,75,-92,43,-93,92,-127,60,59,-118,42,40,26,7,62,34,-7,-66,-117,118,-22,9,-34,10,3,-42,-30,-18,50,-8,-97,-32,-52,-118,36,-7,0,61,-6,-20,-96,36,55,89,-63, /* [235][0][][] */ -39,37,18,30,68,-61,60,-73,-95,103,85,66,-59,-68,-48,-14,-73,-72,54,-85,33,-42,-93,-46,5,-24,64,-17,78,-36,-24,127,31,29,69,81,83,21,-28,-66,-98,-66,-47,-85,16,95,-106,-118,-21,-48,-31,-12,-77,-10,-76,96, /* [236][0][][] */ 0,-26,25,-24,-88,-55,-55,-37,38,-21,-8,59,62,100,52,-58,16,8,-24,-75,-8,43,12,48,53,22,-1,127,-93,-90,72,47,33,-66,56,-10,-95,-16,99,7,-11,-68,24,8,58,-18,-19,-14,-37,7,31,27,-4,63,-85,-37, /* [237][0][][] */ -38,-23,7,-100,-11,119,83,-20,-48,-21,-52,-51,37,-43,43,81,64,30,-21,42,-33,51,95,116,-86,95,-86,24,73,96,1,34,-32,-50,-48,-15,-78,17,-127,37,20,17,72,-7,-64,-81,-112,20,-91,-111,-3,15,-89,76,75,-11, /* [238][0][][] */ -81,71,111,-21,-26,116,-25,98,5,-60,5,-23,55,66,18,81,58,-48,51,47,34,-56,46,25,-49,-24,-127,18,-26,-61,-44,-25,-37,36,-24,-22,-70,-71,-12,10,9,92,19,-33,-36,51,43,99,-82,-2,-69,2,4,-49,19,3, /* [239][0][][] */ -11,8,77,4,1,-40,91,-80,13,-42,62,32,127,-14,-65,-63,-43,-122,105,-18,-18,-35,-41,83,10,2,10,54,14,-32,-49,-117,92,-49,16,26,-111,56,-54,107,15,-62,2,-26,-8,43,54,23,89,49,51,47,35,-21,18,-104, /* [240][0][][] */ 20,36,-30,21,73,-57,63,86,-13,-81,-39,-41,7,-41,-46,119,-92,-4,118,35,-23,39,-42,56,-51,-58,58,-48,-53,51,37,84,-39,8,-58,-76,-54,21,-109,9,-75,22,15,24,101,35,-88,-59,-34,-127,-27,5,41,-31,-1,-55, /* [241][0][][] */ -76,-117,-86,-8,99,-24,-1,61,103,-64,85,-62,65,-34,87,65,-30,-49,-61,-65,-62,113,-5,-105,66,60,36,-59,50,26,50,-59,-55,-100,-127,72,25,-87,-74,41,98,-4,-36,-11,-99,5,-28,118,-36,-32,28,-9,-43,49,67,93, /* [242][0][][] */ 13,96,-57,-116,56,-3,-35,25,45,16,33,-14,-36,2,-47,-5,-45,-38,-28,-53,-15,-22,-10,30,-66,-74,-23,25,-1,-35,5,-23,24,5,44,-61,28,30,95,-34,16,104,-24,-20,-17,-127,-71,-86,93,-45,-30,96,11,28,-67,5, /* [243][0][][] */ -8,-49,-6,60,3,-81,4,63,-16,110,-125,75,73,25,61,-11,-22,67,-21,10,55,65,20,-72,38,119,69,-21,-77,12,-76,39,-107,52,44,-27,5,48,45,2,88,53,125,10,8,45,-89,66,-83,-9,21,68,92,127,46,-85, /* [244][0][][] */ 93,88,17,68,58,25,9,-46,-48,99,-46,22,19,45,83,-37,64,-63,118,-11,-50,-7,-16,-45,7,-28,-48,3,-51,-127,49,43,67,-42,-93,4,-119,-31,95,-46,18,51,22,-18,-38,27,-22,42,-42,-16,-25,-14,72,9,17,-38, /* [245][0][][] */ -16,17,-72,8,36,9,-13,52,-42,-14,5,52,36,-5,29,51,-40,65,-11,22,-31,-35,54,25,-56,15,10,-31,0,32,-19,-41,-52,-3,-8,-6,-38,-18,-48,-127,-16,31,-46,-27,-22,16,1,-10,49,-16,-66,43,28,50,8,4, /* [246][0][][] */ -39,99,-9,73,-55,0,-35,-75,25,3,20,31,-2,-60,-32,-84,21,-50,127,68,33,2,-27,-87,19,47,-27,15,19,-6,-45,0,-31,36,72,-68,-5,0,44,42,-20,-9,-60,9,-2,14,55,-10,9,14,7,34,-29,-28,46,113, /* [247][0][][] */ -18,42,-19,27,45,7,82,33,-16,33,79,-39,-15,127,11,-39,-51,-123,-37,-82,13,-22,-46,-18,-117,82,-46,-7,-12,-15,-46,-66,-58,9,-28,0,27,-18,-89,-55,84,64,40,43,-47,22,-23,39,44,16,-40,35,43,-86,-53,12, /* [248][0][][] */ 0,14,111,30,38,-71,-30,-65,24,-15,59,90,-1,89,4,-9,14,48,43,48,-35,14,10,50,-8,73,-73,30,5,-5,-35,-48,30,53,-30,-50,-19,69,98,-106,23,65,-42,-93,55,43,-9,-127,-11,-39,-18,-11,-115,-34,-61,-58, /* [249][0][][] */ -44,15,94,59,-25,-8,35,14,47,34,-83,-44,-8,-21,-18,0,100,75,-28,-40,-37,-83,100,-105,-26,39,3,23,26,-13,113,-17,127,-45,23,-31,-41,39,18,18,-84,63,24,31,-17,51,-30,-97,-17,17,36,-39,112,-25,-15,0, /* [250][0][][] */ -12,-8,-10,-67,-46,18,-92,-80,-40,34,21,30,-35,4,-19,-22,3,98,-124,-2,9,4,14,59,36,-33,127,-70,6,-65,-18,-36,24,11,45,60,-13,61,-23,-14,83,-24,29,114,-1,48,57,25,-93,-86,-15,12,-8,96,-55,84, /* [251][0][][] */ 37,-51,10,-27,58,-22,39,20,37,-3,79,39,-122,-40,8,2,18,63,-4,-23,8,-58,-54,4,-111,13,-87,-126,109,30,-51,-35,-24,-57,15,63,11,67,15,-7,89,14,-127,-71,-69,-10,-44,12,-20,-39,61,83,-1,56,-50,65, /* [252][0][][] */ 2,-28,21,15,-4,7,27,-2,-127,0,-85,44,8,24,98,24,-12,-41,0,38,-28,-38,-4,-51,54,-19,-6,-38,21,-25,-25,-11,-41,9,82,20,8,-61,-13,-16,96,-10,6,-12,47,-2,-52,-25,28,42,-8,12,-71,-68,24,36, /* [253][0][][] */ 67,23,35,40,-27,23,28,18,-14,-116,-47,-39,6,15,18,30,-24,-30,-8,57,-29,-21,-35,85,-82,4,18,-41,11,-2,100,9,15,71,-9,15,-59,-30,-3,-14,42,39,-5,13,-50,54,7,-75,98,-43,-50,-127,47,-93,49,-28, /* [254][0][][] */ -34,54,22,11,-14,7,-20,-2,-35,46,24,48,8,3,48,-50,17,2,-7,-69,-25,-72,5,88,-28,4,-42,14,-87,13,15,-11,-62,47,-29,17,24,-38,4,13,-71,8,-2,48,48,12,40,6,-4,127,-87,-30,-25,38,20,-9, /* [255][0][][] */ -50,19,-46,71,30,12,-36,36,12,40,66,7,35,-31,-71,19,19,-26,22,41,22,14,60,-65,23,5,11,-35,19,78,-50,-17,56,26,26,-38,15,-35,-63,-50,73,-6,7,33,-54,-8,29,-36,-3,12,23,4,15,-71,34,-127, /* [256][0][][] */ -20,53,57,43,23,48,47,-58,20,-2,1,-61,-69,-4,-15,-80,-127,-21,33,-46,22,0,60,63,1,-25,52,-62,-51,43,-41,-13,38,60,10,14,-98,57,-58,23,-19,-29,69,0,-24,-46,-20,53,108,6,-8,-44,-8,-11,-47,-2, /* [257][0][][] */ 59,29,-53,43,59,10,-13,-37,-18,-12,-67,-8,19,11,74,24,-76,-29,55,-56,-19,63,-72,-46,-9,59,-72,43,10,-22,27,-36,7,39,-6,-48,7,-64,57,66,23,-19,23,58,-37,-12,20,-91,103,-49,-73,-29,127,-30,5,-101, /* [258][0][][] */ -88,19,-40,34,6,-42,42,127,-64,-19,-17,-16,-89,-14,46,60,-22,-94,25,109,26,24,2,-21,-22,62,10,0,29,55,7,76,66,-13,-46,-15,1,-25,-2,3,-13,33,18,0,23,24,-17,61,59,16,2,-40,69,77,-12,-15, /* [259][0][][] */ -19,25,75,49,75,-68,-63,60,-23,33,61,-44,47,31,-45,-19,-7,-62,0,-57,-64,52,-62,-92,43,-20,13,-108,67,-127,-26,-23,32,-58,29,26,-35,16,13,-51,24,-30,-16,6,-12,18,-36,36,-6,-73,25,34,68,-6,51,-5, /* [260][0][][] */ -38,74,56,-32,-7,-73,22,-57,-12,-112,14,-1,69,116,4,20,-27,18,32,63,-78,-87,-26,-32,47,20,97,-80,-34,-8,-106,-38,-31,9,-31,-69,21,7,91,30,-19,-17,-24,-88,9,-41,-51,20,121,14,41,15,62,-22,-20,-127, /* [261][0][][] */ 75,-72,-38,31,103,-21,10,-45,64,-38,53,-23,19,127,101,-92,-70,28,65,-3,-86,20,45,-19,0,32,-20,26,-122,-1,-16,-37,37,104,13,-42,51,-111,24,8,60,-20,2,2,-42,10,45,-53,10,17,-41,-59,48,-54,-3,-120, /* [262][0][][] */ -42,-14,-5,22,-7,-41,-7,52,-16,63,-47,1,48,-17,38,13,43,-95,-36,7,-65,32,-9,47,-54,37,-15,24,-30,74,-19,57,-77,-44,-41,17,-55,84,3,85,79,3,-104,-17,21,-35,-59,-58,-13,42,-127,-53,0,-40,-8,23, /* [263][0][][] */ -4,47,-62,3,27,72,-50,54,39,-14,28,-44,-82,-4,47,-33,11,-48,39,-94,-32,127,21,-17,-15,-39,-2,37,-42,13,-4,61,15,-2,-28,27,32,-64,41,12,59,0,-42,-29,-26,-39,-26,-22,-4,71,21,31,47,-11,-54,22, /* [264][0][][] */ 2,-3,36,23,-33,-4,-15,-6,51,-41,-12,10,90,0,-127,15,23,-33,-9,-25,-36,-39,46,34,-21,48,42,-10,-45,24,-8,3,-29,10,-36,-57,-58,70,-11,29,-26,-52,-57,-34,41,-60,-9,16,-97,-20,49,-64,-10,-46,34,55, /* [265][0][][] */ -50,-10,-22,-42,38,13,54,-14,84,-75,-23,15,-89,69,55,127,-37,-58,70,-59,22,-15,4,6,112,-4,1,-14,-82,-33,-42,44,-21,16,51,-18,66,-31,2,41,-9,-62,-6,44,70,-35,24,21,87,25,-51,-2,-74,12,47,-11, /* [266][0][][] */ 79,-26,33,9,30,-23,7,-33,-25,-33,-60,-24,-18,56,10,102,46,77,-54,-74,52,6,72,-34,-71,-3,5,-33,-44,-121,-44,28,36,22,16,-33,-30,85,79,-56,-5,-34,-54,12,-41,50,-63,6,-29,-31,76,46,-61,-42,57,127, /* [267][0][][] */ -76,3,-13,14,16,5,-97,72,-103,127,-3,-100,-77,-29,-9,27,33,-98,-62,-76,-62,-29,-83,44,86,49,91,68,-59,6,12,-3,-87,55,13,-64,-10,52,30,17,51,-35,62,-40,-42,80,22,66,-105,52,-5,96,-31,-3,71,-35, /* [268][0][][] */ 127,-94,-38,61,-11,-76,-62,34,72,75,-44,33,44,0,43,-30,-10,-48,-27,35,86,-92,6,22,-8,-33,76,-63,-73,-84,45,-74,-82,6,3,28,113,-7,-2,-63,-70,-85,-26,49,-68,-56,-90,91,-60,-46,-71,-19,-5,-77,17,-17, /* [269][0][][] */ -29,-60,-2,-36,-91,-110,17,-12,53,29,-52,-32,-5,-17,-119,96,70,-1,90,17,-83,-18,63,-12,-40,-30,-66,-3,2,-76,-31,-72,-43,20,17,-55,86,-72,-2,81,21,71,38,-58,25,36,17,45,-40,-24,-16,127,54,61,-77,-32, /* [270][0][][] */ 21,2,-18,21,-6,-127,36,41,-5,66,30,33,38,12,-31,-23,13,36,-28,53,-25,-29,-40,-22,-64,-22,47,-30,-35,53,-41,-66,-10,9,-4,9,44,-8,-31,-4,-56,-45,25,43,13,-29,-75,-84,32,-11,52,10,50,-37,37,-49, /* [271][0][][] */ -48,-50,-43,-6,-12,-9,-92,122,21,-92,-47,-15,13,-18,6,-29,-61,-90,23,62,16,10,10,0,-19,36,5,44,-19,-49,69,111,6,-91,-6,7,55,-127,-35,-61,9,-87,107,-22,42,28,-53,41,-31,89,-17,18,1,11,-22,-63, /* [272][0][][] */ 18,-37,15,-14,1,-1,1,-3,29,15,21,13,-13,-12,52,-87,-31,-73,127,5,7,-6,13,-98,62,-15,-42,-2,16,-43,37,-22,54,-23,41,16,29,4,1,-15,59,-48,26,58,-25,19,50,25,-26,15,33,-20,16,-38,-20,-6, /* [273][0][][] */ -39,58,44,17,-64,117,11,-5,43,-22,-46,-11,-3,77,-60,-65,68,86,15,-5,96,-34,51,-49,21,-42,29,1,-14,70,-3,-1,19,34,36,-98,-55,-64,-26,-4,27,-41,17,127,81,-12,64,-42,81,11,106,-84,110,89,50,-66, /* [274][0][][] */ -10,77,39,-28,32,58,-9,-26,8,-31,-28,-22,80,54,-26,-69,-61,-69,48,-22,16,4,-58,27,-45,-37,-25,-27,-4,-52,-24,60,11,-9,-33,-127,22,-19,2,40,35,84,43,41,-23,86,58,36,-52,11,3,-50,-31,20,1,10, /* [275][0][][] */ -10,54,50,-26,6,47,-42,18,113,28,-26,-60,70,-27,5,-29,-3,-22,50,127,28,-37,-69,-28,43,81,19,33,41,47,22,18,54,-45,100,22,-59,11,-32,-31,73,-13,83,57,-51,-40,31,-110,-45,-89,15,-38,65,-48,33,65, /* [276][0][][] */ 23,20,34,8,-30,31,-28,-1,-46,-89,3,38,61,-13,-20,-52,53,40,64,-59,20,89,2,-45,3,-1,-18,46,17,-47,42,37,-48,-46,-7,-7,-13,106,57,-66,12,-2,19,-59,4,-48,-27,-30,93,-62,78,-127,55,42,-43,8, /* [277][0][][] */ -94,37,43,-5,27,108,85,28,12,-94,39,24,40,-3,62,34,-32,-113,-17,-7,-63,43,-37,68,3,-16,28,-39,6,19,44,39,41,71,3,-127,-69,11,55,10,-48,13,60,15,58,-43,54,-61,55,-5,-111,80,-48,-78,-3,-55, /* [278][0][][] */ -113,26,-28,18,-84,44,-28,-17,50,34,22,1,-51,-33,-30,55,-56,66,-12,-46,-115,0,109,32,3,-44,-89,40,-39,91,41,20,-38,-37,51,53,1,20,43,-64,-25,23,72,7,-4,37,15,-43,-127,-59,-27,8,12,9,80,51, /* [279][0][][] */ 26,31,52,-8,-15,-59,12,53,-17,-2,-86,27,-7,76,-66,-60,-19,19,14,53,-65,45,72,87,-12,-27,-32,-27,34,-84,5,-127,-78,76,-25,-54,-45,26,-93,-47,13,60,-54,-15,-31,35,-10,-98,-18,7,4,-16,63,-13,18,-19, /* [280][0][][] */ -23,22,19,8,-36,-47,-61,97,-76,43,-41,7,9,-117,46,121,34,99,-78,20,39,20,-13,-16,14,43,117,14,-65,55,68,86,23,25,20,-115,36,21,-101,-52,46,82,0,-127,-18,12,8,-31,42,-26,27,0,-46,-28,46,-44, /* [281][0][][] */ -17,25,-57,55,-44,-2,-61,5,-11,-51,-38,-4,18,-87,40,-19,33,40,-127,39,16,114,-39,68,-65,17,56,1,89,-15,27,-73,-33,29,-50,-27,11,-2,-62,10,27,12,-45,53,-15,27,-27,12,-71,-22,-66,46,117,1,72,-39, /* [282][0][][] */ 24,-26,23,34,34,-70,68,-65,-2,-42,-11,71,63,43,90,-9,19,-43,69,-122,16,14,-35,-94,-57,-39,70,-24,-24,-68,7,63,16,110,18,-61,-16,-71,127,10,-4,82,69,23,-18,6,-27,10,20,-81,10,10,-56,87,86,69, /* [283][0][][] */ -35,-22,-57,-102,-35,-15,-65,80,-25,-85,31,27,19,33,87,-72,-4,36,-31,-99,33,42,6,32,-25,55,3,5,-53,-97,33,-31,-78,48,46,3,-39,57,74,-101,-71,-37,-105,33,-51,-32,-12,-127,-6,-72,-18,2,-38,-47,-41,42, /* [284][0][][] */ 90,93,-31,41,28,84,21,-40,1,-33,9,36,22,0,74,-43,75,-49,4,-28,71,81,-12,0,-19,-8,56,19,51,-48,41,-2,127,12,-5,-26,125,95,47,-71,24,-22,-56,9,53,78,98,53,-124,52,-25,-89,-13,40,82,-19, /* [285][0][][] */ -61,26,-13,-28,77,-47,21,31,-78,-39,-82,45,-59,-74,-50,32,14,52,-21,43,27,97,-70,19,18,46,-5,54,95,-29,-17,23,-16,-17,-127,9,-32,-47,-31,-55,-13,-95,36,26,-15,-82,-76,7,20,-19,20,36,73,-32,40,77, /* [286][0][][] */ -12,-14,9,-101,7,-11,15,38,6,-43,-4,-23,-33,-127,35,-20,-34,29,-24,-19,-72,42,20,18,2,-22,23,-48,29,-29,-79,82,33,50,39,0,-1,30,82,-20,31,-38,86,-27,39,-49,-36,-27,-98,42,-104,14,13,8,-32,38, /* [287][0][][] */ -50,-42,15,40,-31,-9,47,37,127,-13,41,-47,107,-24,3,-65,46,8,24,34,53,0,44,-28,26,54,3,-10,11,-12,47,54,1,27,27,-71,-25,21,-14,-19,27,-8,-45,22,33,30,11,-62,-2,-57,-50,42,1,-67,-52,-27, /* [288][0][][] */ 0,-53,14,-60,-79,-11,9,16,75,-64,13,60,-28,58,4,-32,-2,-13,32,23,-15,123,19,87,3,-3,12,-28,-9,-2,36,-6,87,-31,-58,56,83,28,-90,15,127,70,-6,94,54,-22,12,36,-62,98,-88,35,-28,6,-8,68, /* [289][0][][] */ 28,44,-4,64,-127,-50,50,-31,90,-16,-61,74,-45,-1,-29,-66,-20,-78,-28,20,-12,-5,-1,40,18,53,-75,-45,57,31,-67,-77,-17,70,-57,-61,-40,-63,21,29,31,49,-28,-24,14,5,-22,0,-20,6,99,5,50,-40,-17,66, /* [290][0][][] */ -48,24,-14,5,27,78,5,-9,-35,49,-15,4,4,1,-16,-3,27,-18,-25,-19,27,26,9,-42,31,8,19,-43,-56,0,40,34,41,77,-9,6,23,-89,11,5,-55,45,-34,50,-30,1,10,19,-16,99,127,96,7,42,9,14, /* [291][0][][] */ 105,6,50,-12,16,7,20,-23,76,118,-57,9,13,34,-31,14,45,92,-6,11,-25,38,-90,-17,-65,65,-59,-9,-34,9,-76,-16,-84,83,-10,29,-10,-39,-30,-10,-28,127,68,35,10,-81,-5,49,116,-52,-99,-2,-1,-81,-82,-5, /* [292][0][][] */ -47,-24,-54,43,-7,-2,-32,48,-58,-99,69,57,29,24,-117,-64,-34,-120,93,35,22,81,10,-71,-33,-96,-55,30,-84,67,-60,-127,35,12,-127,-91,-96,35,17,38,94,-69,78,94,-78,-24,-58,25,-55,-18,-69,-13,-16,-45,49,-90, /* [293][0][][] */ 4,-58,-17,41,-4,35,66,25,74,5,-12,60,-23,27,53,-13,33,26,-15,1,15,24,-23,-17,10,-22,63,26,0,-4,-45,-54,-30,-53,-8,10,-127,-12,49,-68,59,25,7,-12,-24,-28,-12,-12,52,-33,-44,125,21,21,71,12, /* [294][0][][] */ 15,52,-29,6,-15,-85,64,-41,-70,-74,-56,-27,-5,-63,-56,11,-44,41,-107,103,-95,-6,64,92,-48,17,-8,59,-37,-53,-24,53,-27,-3,92,36,36,-28,42,51,-22,-5,-127,-28,57,34,-16,-84,38,115,-86,-54,-9,-9,-50,66, /* [295][0][][] */ -127,-6,60,79,-22,47,-9,105,-88,-104,25,-9,46,121,51,45,-8,77,42,-31,-15,42,-1,-50,-30,13,16,-47,-26,-126,-96,-60,57,3,-83,-3,-97,21,-35,-13,-26,-52,-42,-43,-14,-66,-63,-9,7,27,46,26,-37,74,89,-28, /* [296][0][][] */ -13,-16,-16,59,-37,39,19,83,-13,97,37,-1,77,120,-50,23,27,-44,-56,85,52,-69,35,12,53,-41,12,35,-9,76,-63,41,97,2,127,-115,108,-3,-63,118,68,7,-99,32,123,-34,21,-28,100,-8,-44,-46,63,-50,75,-38, /* [297][0][][] */ -20,-8,27,3,-54,-127,-34,98,-45,23,52,32,-9,-17,15,17,64,3,-64,32,-94,-19,99,22,13,35,17,39,55,68,17,3,20,51,37,-11,-17,19,9,18,71,-1,22,57,5,115,20,-72,-1,-24,49,10,30,53,35,16, /* [298][0][][] */ 12,-43,38,-52,23,-65,9,10,79,27,5,61,21,15,37,-36,-69,-37,20,-95,-94,0,25,-1,-15,21,-88,127,6,-10,95,4,32,-4,36,17,21,59,8,-10,-63,2,25,-35,114,-56,34,-75,14,-48,44,-16,6,6,26,57, /* [299][0][][] */ -15,-10,-63,75,23,-54,13,-51,-94,-9,-100,-2,-69,88,67,-112,16,44,-17,-53,33,-31,-19,-2,-35,-12,-10,43,20,44,-6,11,57,-42,-36,-28,-45,34,2,8,7,-127,-25,-4,80,-43,90,-28,77,-44,-68,-65,14,60,56,-57, /* [300][0][][] */ -1,-9,-20,-7,-4,1,11,5,-17,-11,69,-30,-29,-26,-31,25,-2,-1,-3,-37,127,43,49,12,72,47,39,0,3,36,7,3,-47,16,23,-32,-25,37,4,-1,9,-28,-15,23,1,23,-20,20,11,-28,-28,11,-21,-6,-18,20, /* [301][0][][] */ 62,-3,-20,-62,-13,14,13,48,-29,-5,127,17,40,-77,-6,-16,-47,-58,-96,-28,-27,-77,4,-2,58,67,-31,-10,-49,46,66,-53,-27,-33,46,-30,-29,12,-53,11,-47,29,-7,35,-50,-23,32,59,33,19,-49,-45,24,7,31,-33, /* [302][0][][] */ -8,34,-33,-50,-63,-21,36,-81,51,54,5,-32,20,56,24,-72,32,-22,-11,14,-31,-57,52,4,-93,61,23,32,38,-68,-127,9,58,-25,20,34,-35,61,49,108,-89,-21,0,6,-27,8,84,7,11,-98,-73,-71,-36,-33,5,-17, /* [303][0][][] */ 27,-5,-10,-50,-21,49,-63,-14,-73,67,109,-17,49,-53,79,13,-44,-20,5,-39,90,67,-54,-66,40,24,127,-30,43,-58,-67,-48,-32,-24,14,9,-3,-35,-74,-63,-69,-10,10,-9,0,-58,0,54,-41,31,77,-31,93,-44,-67,55, /* [304][0][][] */ -53,-2,42,-38,-77,-3,-16,-57,-19,-85,-70,76,17,2,-73,6,-4,37,-56,-46,41,81,-46,-99,19,42,-39,-127,-9,-63,33,31,-11,-24,57,14,-39,59,19,35,36,17,-27,4,-35,37,-5,-16,65,-98,-67,57,73,17,19,-6, /* [305][0][][] */ 26,41,-1,94,37,27,86,114,47,100,-36,-98,30,29,41,-125,69,-85,73,71,105,22,-21,68,24,48,-58,88,-25,-45,106,127,-72,126,-30,-68,-44,-57,-79,66,47,53,53,54,-106,-13,97,-9,-24,-17,89,-83,117,26,43,124, /* [306][0][][] */ 35,-11,-10,-1,-7,20,66,55,-53,67,-36,-7,-49,30,63,44,-73,42,-29,-55,-18,-73,-14,46,52,-86,-3,31,19,-50,127,0,36,38,-87,6,72,24,110,10,-4,-16,-35,-25,59,-35,33,66,44,-4,116,45,-96,-53,105,-70, /* [307][0][][] */ -12,103,-36,-38,41,-23,62,90,57,-70,-6,-25,-7,-24,-51,-49,64,-61,6,20,95,8,45,11,79,17,-127,-35,-73,6,-108,-61,-38,-48,29,-58,-22,83,-22,-20,-80,45,-91,-88,43,-12,-5,-40,67,19,-31,-19,-24,38,-22,27, /* [308][0][][] */ -14,119,-37,35,-56,-44,95,69,-21,-59,85,-15,11,127,2,-73,-60,0,-80,-114,-102,-28,-37,11,-49,88,109,-107,56,32,28,52,57,-2,23,-100,-25,-23,-10,-87,-70,22,-9,31,-118,-2,60,-71,-59,-38,0,1,-65,-52,9,14, /* [309][0][][] */ -21,13,-5,-10,-53,15,-98,-13,-62,1,1,49,-7,-25,38,-56,26,47,3,71,-78,-25,0,17,3,20,-112,88,8,20,-32,-91,-46,127,-68,4,45,-34,51,-43,-117,57,-79,-6,76,41,55,71,-78,-68,-97,33,-68,28,-42,87, /* [310][0][][] */ 3,-122,53,-12,-18,-28,-127,17,-1,65,-58,44,-16,-3,-21,71,10,62,25,-1,-72,-8,16,-50,11,52,32,21,53,-53,46,-32,51,-82,58,-15,66,-76,-73,68,-28,-16,20,-94,-6,27,-47,-28,-2,-6,-5,-35,-9,-18,-29,-36, /* [311][0][][] */ -40,82,-2,109,-90,47,-42,-46,22,-106,-62,69,93,-41,-77,107,-10,81,20,-32,32,-7,-17,-11,-104,3,127,-39,8,22,-55,34,33,-64,-62,66,11,-2,-59,-66,1,-1,125,2,-51,19,-22,97,87,9,74,112,41,87,-21,-119, /* [312][0][][] */ -47,-42,54,9,6,-27,92,-109,66,-77,48,77,-11,17,40,-24,-12,4,-60,-27,-75,-49,23,57,76,-3,-117,62,-22,50,-127,-47,18,-48,39,17,-30,-45,2,-33,39,79,-59,-114,-22,-78,83,-77,-43,-14,35,-93,38,-33,-92,108, /* [313][0][][] */ -21,63,-39,-3,15,4,13,18,61,-20,-5,-47,-2,-93,28,35,-127,39,33,-24,-100,-75,-54,12,-99,-9,59,-20,4,30,19,4,-40,3,-52,-56,-7,40,103,18,18,-45,-51,-89,-50,15,58,60,59,-29,9,-45,12,-7,-35,62, /* [314][0][][] */ -54,72,19,124,25,101,106,-74,20,3,112,15,24,124,20,-1,6,29,80,23,-61,46,-3,-22,-19,82,30,44,42,-15,3,30,37,101,-45,-8,-93,18,-28,-28,6,61,-41,-6,-127,40,61,9,-44,36,-41,-5,38,3,12,79, /* [315][0][][] */ -112,-101,1,-53,27,50,16,20,-73,40,-81,17,-58,-77,87,5,46,18,99,-23,35,-12,61,-28,55,-16,31,-18,-72,49,-5,-106,-3,20,-53,13,6,-10,10,-98,-90,-90,-43,-41,19,-39,6,46,-22,67,-127,37,-82,99,12,60, /* [316][0][][] */ -23,-46,-5,31,-15,-92,51,5,-50,-33,87,-45,4,-69,23,-9,-127,25,-79,27,-29,-13,-4,88,3,8,-5,-35,16,6,27,-60,3,73,82,-20,-18,-42,-1,-39,13,73,-49,-61,34,-39,6,-27,11,-40,27,-5,-38,-32,22,77, /* [317][0][][] */ -27,11,10,-63,14,-14,127,0,39,-37,-32,-26,31,24,-29,-27,-11,-16,38,6,-89,-15,8,45,-23,-33,-38,-100,36,1,10,-99,47,10,-47,15,13,3,-15,-33,37,-46,-42,-12,7,68,0,-55,106,117,-40,31,51,-16,31,-32, /* [318][0][][] */ -30,-54,-30,13,110,104,37,-5,55,15,-94,-30,-65,51,64,107,4,-99,-40,35,-67,-81,18,93,-122,-70,-42,52,104,-39,103,7,34,65,-45,24,5,-38,-40,-96,-47,30,-33,-66,36,95,-33,32,-67,49,-127,63,-49,8,84,85, /* [319][0][][] */ 11,-13,-9,44,-46,-127,-4,-49,62,48,24,-3,-32,-54,-76,4,-6,42,-62,96,12,-57,15,11,-62,3,-73,5,5,78,-57,-4,-16,22,36,-5,1,-35,-59,31,-7,-54,21,-48,10,80,79,2,71,13,-55,-46,13,31,84,14, /* [320][0][][] */ -28,46,-32,-127,98,2,14,30,-6,39,-3,-7,76,98,62,-19,36,-25,-115,-8,40,33,93,-12,44,-22,3,-15,-27,-26,31,-12,-56,-14,-37,-21,59,-12,40,-26,-49,-109,83,49,-51,78,10,15,-79,18,-32,-28,-12,63,-3,15, /* [321][0][][] */ -5,36,-9,-31,-61,-97,93,0,37,-59,-80,-41,82,73,-37,-81,-64,-62,60,-124,-68,11,-31,-92,-21,104,-1,27,40,-7,-10,-17,73,-10,1,61,3,-48,72,93,68,-43,-88,24,42,-93,10,9,117,127,-80,-69,24,-25,-40,-33, /* [322][0][][] */ -58,-33,49,31,-7,-33,-35,-49,41,-35,9,59,-16,30,-83,-85,-18,50,60,2,26,29,127,-37,-70,0,78,-76,22,118,-6,-23,-20,74,-50,59,-21,55,-78,-20,-33,-11,-40,-72,-42,25,-48,12,-70,12,54,56,-28,-58,-33,10, /* [323][0][][] */ -13,59,9,77,40,35,47,27,-99,2,12,-36,53,40,-18,-56,-67,-101,13,-62,-36,-48,19,-22,1,17,-39,-20,-38,6,51,-12,-67,-31,62,1,12,50,0,29,38,95,32,-66,-36,127,41,65,-19,80,14,29,0,47,90,-10, /* [324][0][][] */ -8,10,6,12,-57,74,-17,14,5,-22,36,-20,20,23,38,-29,2,22,-24,-127,-11,9,0,43,-45,-24,-73,-48,-30,38,45,-46,-42,-95,-53,-36,-30,1,-9,-56,-4,5,-74,104,19,24,-21,65,-15,12,41,46,15,-39,-36,29, /* [325][0][][] */ 31,22,124,54,38,108,-57,-54,61,37,40,27,96,-72,11,77,44,17,30,42,-34,-107,-100,-19,-43,84,-15,-13,-118,-31,32,-12,-62,-22,113,-3,-51,77,-13,-114,4,25,57,62,-41,127,3,-13,45,-73,-84,-23,-26,77,-62,39, /* [326][0][][] */ 1,127,-9,1,3,-66,-68,-87,83,-19,-83,34,33,36,-35,-38,54,36,-8,23,62,7,-44,-22,-19,-13,-1,16,46,-65,47,45,54,16,8,-4,-43,-2,-56,-21,-47,-2,46,-51,12,29,-50,-29,27,-42,-80,14,-13,-11,13,64, /* [327][0][][] */ 20,35,57,-23,58,-51,68,-43,-127,-28,48,51,45,2,24,-12,96,-38,41,-100,-25,-31,98,-53,-106,-75,6,0,24,96,23,-23,41,66,2,-93,49,-51,-36,77,-88,109,-9,69,-58,14,-39,-73,20,30,36,-6,69,20,45,57, /* [328][0][][] */ 9,-33,3,-87,39,-127,-53,-39,64,41,6,-21,46,-3,-39,82,-74,-20,-69,57,91,99,64,19,-64,1,51,-70,21,34,43,32,-42,-23,25,52,-48,67,-7,23,85,-56,-9,2,-39,-52,-58,-7,56,-43,-26,56,-35,-60,-58,35, /* [329][0][][] */ 60,-60,37,8,-7,-17,76,-16,75,127,43,54,38,-9,-3,-4,48,-21,74,-56,18,25,5,78,-4,-33,-103,-37,40,3,27,-32,73,93,-52,-86,42,0,-30,75,18,-38,45,-50,29,-27,31,59,-52,33,-15,-28,49,4,-1,26, /* [330][0][][] */ -40,24,-13,51,-42,-25,35,-33,29,-42,-56,71,49,22,10,25,49,-3,-4,82,-41,24,82,47,-25,25,124,-67,5,-127,5,22,-103,12,79,59,34,13,4,-97,-21,-34,-4,24,-35,-42,27,-111,-28,106,71,-14,10,21,-55,-9, /* [331][0][][] */ 115,92,-59,-32,-81,26,10,-18,52,-72,-11,2,-83,62,-84,31,-6,38,18,23,-9,-48,75,35,44,21,-26,-50,-51,72,-40,42,52,23,-38,33,-60,-10,44,61,-2,-82,-16,127,-54,80,-69,-10,30,-84,37,-42,53,-59,77,8, /* [332][0][][] */ 4,36,38,42,79,10,19,-20,127,-19,23,-43,32,-27,55,13,-34,-30,-20,88,-42,-20,-18,47,-13,6,56,-8,12,33,-42,7,-30,58,11,37,-15,120,-19,52,-79,-78,-24,-53,-46,49,5,5,-10,16,41,-22,-43,-5,-53,-11, /* [333][0][][] */ -4,37,95,10,-58,-79,75,-40,-32,59,-37,63,-74,-16,2,63,-29,53,-31,127,-43,21,-21,46,30,-18,-115,-89,74,-24,6,27,-2,50,117,48,24,35,-27,82,-25,63,-38,-34,66,-26,69,-63,-32,-33,28,-15,97,-42,98,-55, /* [334][0][][] */ -16,-20,33,-2,-94,5,-91,12,-38,8,127,-71,-17,-37,21,-17,-11,-6,62,-4,43,-24,-72,-51,15,26,3,35,92,81,36,20,1,-109,-39,-53,45,56,59,-11,-9,19,112,-65,-25,77,98,-47,-70,-104,-40,16,-23,6,46,13, /* [335][0][][] */ 30,78,-79,30,14,-39,29,-9,29,-92,24,-24,110,41,-10,-30,-27,24,16,-114,5,-21,-73,-41,42,57,5,97,57,22,72,66,55,0,48,-16,-48,-45,37,31,-3,-127,71,-47,19,-53,-65,60,78,-24,-65,-34,-62,42,-35,-93, }; const TfArray<336, float> quant18_scale = { 336, { 0.0014925161376595497, 0.0018203894142061472, 0.0017980794655159116, 0.0016563369426876307, 0.0014601531438529491, 0.0016463265055790544, 0.0018907842459157109, 0.0011629952350631356, 0.0012321706162765622, 0.0017616669647395611, 0.0013506792020052671, 0.0014477993827313185, 0.0018052635714411736, 0.0010552951134741306, 0.0015609442489221692, 0.0019081342034041882, 0.0016595234628766775, 0.0011039584642276168, 0.0018712362507358193, 0.0016503985971212387, 0.0015765525167807937, 0.001739202649332583, 0.001534551614895463, 0.0020030229352414608, 0.0022511165589094162, 0.0015393027570098639, 0.0014049183810129762, 0.001498700468800962, 0.0018609703984111547, 0.0015338490484282374, 0.0013517015613615513, 0.0019871192052960396, 0.0023666857741773129, 0.0014026096323505044, 0.0017966122832149267, 0.0017446094425395131, 0.0023579285480082035, 0.0013715153327211738, 0.0016573688481003046, 0.0015528619987890124, 0.0020109617616981268, 0.0020610580686479807, 0.0022388973738998175, 0.0018776132492348552, 0.0022081502247601748, 0.0015105594648048282, 0.0012881823349744081, 0.0018238581251353025, 0.0016477908939123154, 0.0014478940283879638, 0.0024221190251410007, 0.0017813864396885037, 0.0015096848364919424, 0.0011689226375892758, 0.0015331943286582828, 0.0014008856378495693, 0.0018009537598118186, 0.0012054742546752095, 0.0013993798056617379, 0.0013099280185997486, 0.0018725122790783644, 0.0021244541276246309, 0.0017433076864108443, 0.0011181833688169718, 0.0020885525736957788, 0.0016658323584124446, 0.0016255788505077362, 0.0015388675965368748, 0.0015278476057574153, 0.0018478779820725322, 0.0013559904182329774, 0.0014906477881595492, 0.0016731763025745749, 0.0015125105855986476, 0.0020784176886081696, 0.0012651690049096942, 0.0021489742211997509, 0.0018291616579517722, 0.001447180868126452, 0.0011532648932188749, 0.0014709439128637314, 0.0016906304517760873, 0.0016801727470010519, 0.0013204113347455859, 0.0015317497309297323, 0.0018718054052442312, 0.0015111250104382634, 0.0024423385038971901, 0.0017451761523261666, 0.0019133188761770725, 0.0016160797094926238, 0.0011832864256575704, 0.0016997158527374268, 0.0015091184759512544, 0.0017222182359546423, 0.0016322695882990956, 0.0021207618992775679, 0.0014770884299650788, 0.0021950800437480211, 0.001520016579888761, 0.0017033100593835115, 0.001146468217484653, 0.0015437566908076406, 0.0015144809149205685, 0.0012590992264449596, 0.0013142956886440516, 0.0018852599896490574, 0.0017160839634016156, 0.0017683252226561308, 0.0016092491568997502, 0.0013246251037344337, 0.00170372414868325, 0.0021401934791356325, 0.0024356641806662083, 0.0018521274905651808, 0.0013550586299970746, 0.0015834412770345807, 0.0016088212141767144, 0.0019532174337655306, 0.0020655021071434021, 0.0017403467791154981, 0.0015960795572027564, 0.001393362763337791, 0.0016998299397528172, 0.0016399113228544593, 0.0018973301630467176, 0.0012408748734742403, 0.0012518243165686727, 0.0016505343373864889, 0.0011919316602870822, 0.001619379036128521, 0.0021707457490265369, 0.0013811251847073436, 0.0018576105358079076, 0.001909702317789197, 0.0015998913440853357, 0.0017402207013219595, 0.0013752495869994164, 0.0016213518101722002, 0.001400807173922658, 0.0014634423423558474, 0.0014893504558131099, 0.0013358828146010637, 0.0013967535924166441, 0.0013099538628011942, 0.0017892558826133609, 0.0014297430170699954, 0.0015402366407215595, 0.0012317358050495386, 0.0012084230547770858, 0.0017381514189764857, 0.0032976032234728336, 0.0023080829996615648, 0.0019022818887606263, 0.0017244953196495771, 0.0016242368146777153, 0.0016672268975526094, 0.0014691319083794951, 0.001448331749998033, 0.0012854611268267035, 0.0012112493859604001, 0.00183151476085186, 0.0016598735237494111, 0.0014507564483210444, 0.0020365773234516382, 0.0013310114154592156, 0.0013515452155843377, 0.0019132253946736455, 0.0016003391938284039, 0.0012909629149362445, 0.0011563516454771161, 0.0016918008914217353, 0.0014322551432996988, 0.0028322646394371986, 0.0020722330082207918, 0.0017868258291855454, 0.0017095186049118638, 0.0017228637589141726, 0.0019178853835910559, 0.0014194491086527705, 0.0032017193734645844, 0.0018906632903963327, 0.0013284791493788362, 0.0016774219693616033, 0.0012139949249103665, 0.0016880691982805729, 0.0012327141594141722, 0.0016670915065333247, 0.0015776000218465924, 0.0014359107008203864, 0.0012027198681607842, 0.0013496218016371131, 0.0013488951371982694, 0.0014371759025380015, 0.0014205804327502847, 0.0017021361272782087, 0.0012620185734704137, 0.0019947211258113384, 0.0014392337761819363, 0.0018158481689170003, 0.0016672891797497869, 0.0018324379343539476, 0.0014988256152719259, 0.0018884526798501611, 0.0013688897015526891, 0.0012501995079219341, 0.0014367431867867708, 0.0012692182790488005, 0.0013837076257914305, 0.0014687766088172793, 0.0019549855496734381, 0.0019463953794911504, 0.0021336495410650969, 0.001925409771502018, 0.0015010047936812043, 0.001460995408706367, 0.0014515639049932361, 0.0014222870813682675, 0.0017928009619936347, 0.0015907875495031476, 0.0013071655994281173, 0.0017918716184794903, 0.0015779383247718215, 0.0011103310389444232, 0.0013704475713893771, 0.001748786773532629, 0.0016502041835337877, 0.0013930443674325943, 0.0012019922723993659, 0.0021220012567937374, 0.001626167562790215, 0.0016238869866356254, 0.0019948915578424931, 0.001506860600784421, 0.0012937210267409682, 0.0014812208246439695, 0.001452504307962954, 0.0013531234581023455, 0.0018040930153802037, 0.0013076514005661011, 0.0013207598822191358, 0.001007332350127399, 0.0017930958420038223, 0.0014182883314788342, 0.0016780009027570486, 0.0022715667728334665, 0.001711231772787869, 0.0017226736526936293, 0.0014785601524636149, 0.001498387660831213, 0.0013971085427328944, 0.0017250723903998733, 0.0020791827701032162, 0.0012486644554883242, 0.0019214629428461194, 0.0021011482458561659, 0.0015343861887231469, 0.001456312951631844, 0.0018353927880525589, 0.0019441343611106277, 0.0015996048459783196, 0.0014745417283847928, 0.002087652450427413, 0.0015682554803788662, 0.0021649289410561323, 0.0015852031065151095, 0.0018503807950764894, 0.0015273656463250518, 0.001448781811632216, 0.0015040324069559574, 0.0018481652950868011, 0.0016548355342820287, 0.0020054136402904987, 0.0013380892341956496, 0.0018966383067891002, 0.0016638244269415736, 0.0016500719357281923, 0.0012683558743447065, 0.0016067263204604387, 0.0013906629756093025, 0.0016679784748703241, 0.0020833502057939768, 0.0017165623139590025, 0.0017139507690444589, 0.0013814189005643129, 0.0017153163207694888, 0.0020359279587864876, 0.001799760852009058, 0.0014806031249463558, 0.0015250683063641191, 0.0023194584064185619, 0.0013909091940149665, 0.0013380582677200437, 0.0027722318191081285, 0.0014712688280269504, 0.0014187839115038514, 0.0014455261407420039, 0.0019830993842333555, 0.0016605715500190854, 0.0020424611866474152, 0.0023854861501604319, 0.0019028877140954137, 0.0016315910033881664, 0.0016336536500602961, 0.0017659796867519617, 0.0010507446713745594, 0.001681196503341198, 0.0022490103729069233, 0.0013617600779980421, 0.001480260631069541, 0.0016176152275875211, 0.0013079431373625994, 0.0014229763764888048, 0.0015113240806385875, 0.0013002484338358045, 0.0014004571130499244, 0.0016702023567631841, 0.0018779748352244496, 0.0012036142870783806, 0.0014059452805668116, 0.0018180888146162033, 0.0012342953123152256, 0.0014885239070281386, 0.001893308712169528, 0.0020429180003702641, 0.0012112434487789869, 0.0020990064367651939, 0.0014193977694958448, 0.001719558727927506, 0.0018609472317621112, 0.0017074687639251351, 0.0013963821111246943, 0.0017390716820955276, 0.0011927444720640779, 0.0014601555885747075, 0.0013040008489042521, } }; const TfLiteAffineQuantization quant18 = { (TfLiteFloatArray*)&quant18_scale, (TfLiteIntArray*)&g0::quant9_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data19[56] = { -27324, 3818, 10036, 7831, 13875, -15956, 8475, -17676, -5001, -14169, 4953, 2682, -2973, 2515, 11083, 2510, 8140, -748, -13678, 12101, -4145, -10945, -10949, -5820, -10063, 11581, 30479, 9017, -36483, 10181, 5165, -1156, 3688, -2398, 7210, 18507, 22493, -3045, 14652, 23893, 30917, -1516, -22606, 8879, 4355, -16808, 21756, -19429, -10468, -764, -23910, 2143, 1944, -14789, -444, -10042, }; const TfArray<56, float> quant19_scale = { 56, { 3.4483906347304583e-05, 3.8222959119593725e-05, 4.5897690142737702e-05, 3.5802386264549568e-05, 3.8999274693196639e-05, 3.4523971407907084e-05, 3.8033886085031554e-05, 5.5966476793400943e-05, 2.8384767574607395e-05, 4.3623171222861856e-05, 3.3956741390284151e-05, 3.8845726521685719e-05, 3.7447072827490047e-05, 3.1723695428809151e-05, 3.3525593607919291e-05, 3.3212472771992907e-05, 3.2147298043128103e-05, 3.9587419450981542e-05, 4.0203431126428768e-05, 3.4507083910284564e-05, 3.6145636840956286e-05, 3.8460988434962928e-05, 3.4665044950088486e-05, 3.808709152508527e-05, 3.2177362299989909e-05, 3.3979511499637738e-05, 3.9092075894586742e-05, 4.1506838897475973e-05, 3.5378863685764372e-05, 3.4673870686674491e-05, 3.9902301068650559e-05, 3.5375036532059312e-05, 3.7219360820017755e-05, 3.8049904105719179e-05, 4.1295596020063385e-05, 3.714066042448394e-05, 3.812979775830172e-05, 4.1718747525010258e-05, 3.3438813261454925e-05, 4.8869223974179476e-05, 3.0858609534334391e-05, 3.5444445529719815e-05, 3.2621537684462965e-05, 3.6027908208779991e-05, 3.7228077417239547e-05, 3.0840576073387638e-05, 3.771996489376761e-05, 3.1296494853449985e-05, 2.5318846383015625e-05, 3.2462721719639376e-05, 3.4505323128541932e-05, 3.0634502763859928e-05, 3.33191710524261e-05, 3.9754144381731749e-05, 3.6530516808852553e-05, 3.5900076909456402e-05, } }; const TfLiteAffineQuantization quant19 = { (TfLiteFloatArray*)&quant19_scale, (TfLiteIntArray*)&g0::quant13_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data20[56*1*1*336] = { /* [0][0][][] */ 27,106,-59,10,61,47,77,65,27,27,-11,24,-52,4,-2,71,45,-44,-12,27,-49,48,-25,65,33,-100,-19,17,37,-87,23,-9,3,-25,10,-11,49,-1,-30,65,62,-29,17,-40,-10,-28,64,-16,118,-11,-20,19,-6,-47,-101,59,28,-27,58,-80,36,22,17,-17,-66,-62,10,-14,-11,-31,36,9,-26,51,26,28,54,-11,21,-112,-51,-18,68,18,20,-48,70,47,-10,52,-19,-41,80,24,-43,31,29,10,-74,-77,-14,28,17,17,-53,109,-48,-67,0,-9,3,-26,79,-13,24,58,-7,-22,-59,62,1,36,-27,83,-24,13,-5,43,-15,-30,19,-27,-29,16,-59,35,90,20,15,-7,3,24,57,29,6,-2,-21,-23,-18,-66,-15,-72,96,-21,12,18,70,32,-17,-37,45,-39,14,39,8,52,103,-21,26,-69,37,-4,24,-3,20,-43,11,-23,81,38,65,-33,6,2,-17,-21,29,47,-46,54,-53,-59,1,51,-45,61,44,-51,-4,-5,74,11,-34,-78,10,-26,65,63,-76,-25,-53,-22,62,15,39,-7,46,14,6,-22,-65,36,45,-25,-31,-60,-98,24,23,-33,-81,-11,-29,9,-53,33,17,70,12,-27,0,-9,66,-3,-56,13,-29,11,-38,64,-6,-32,-2,61,43,13,-9,9,20,25,5,69,52,-60,66,2,32,-5,-8,7,-31,44,73,-3,9,-51,-2,-39,41,14,48,12,-34,-14,-30,-86,-11,110,63,86,39,-122,6,0,-41,-38,-4,-37,-15,60,62,-43,16,32,-51,32,68,-2,75,81,-1,-36,33,2,-57,21,72,127,-15,-27,-12,-32,-14,20,69,27,-73,-33,-2,-33,4,43,35,1,-14,15, /* [1][0][][] */ -8,-77,93,79,-33,-6,15,-6,22,-84,-13,-4,-122,-52,-15,53,-32,-107,-14,-5,-28,32,-10,-12,37,19,17,-52,42,-8,-35,27,-6,-62,42,-47,5,-69,13,-21,-32,-20,78,16,37,-8,-54,43,0,28,60,-46,5,21,9,-4,-23,51,21,66,50,-38,-28,-14,29,67,-14,-39,-4,72,75,-49,60,-69,16,-14,-47,-19,69,28,36,-5,4,-45,-30,-29,-27,74,65,65,66,42,55,86,-34,-56,-44,12,-6,65,-47,57,0,61,35,41,-13,-33,59,15,-70,79,48,-35,1,49,-73,-57,54,42,58,-35,84,-66,-6,-23,-34,-12,-15,-33,52,21,3,47,-9,-109,18,64,-40,-92,38,-63,23,36,0,30,-68,-81,-79,33,-11,-45,-3,74,-16,87,42,-48,66,29,62,-37,-62,-14,25,40,13,-43,-15,31,23,50,22,-9,-52,-52,58,20,33,11,-67,28,-33,23,-4,-51,20,1,-52,-43,-1,20,-49,5,27,28,-17,12,19,73,-5,-66,-28,2,-58,30,-42,26,-101,-9,36,-81,29,17,-15,13,76,-27,-45,-9,-36,8,9,-10,-33,-29,-76,15,-49,-1,24,2,59,-43,-47,31,4,20,-90,-23,-66,-86,13,-17,-29,32,44,-29,-18,-37,87,4,8,-37,-5,-28,5,9,84,45,8,-17,33,9,-39,83,35,-32,-10,48,0,-8,38,-49,-30,18,32,-27,9,-8,47,11,-99,72,18,-11,127,-50,-1,-15,-111,38,-55,-37,8,-72,-20,16,-32,-17,34,-1,69,-1,10,54,7,32,-11,-17,61,-34,43,-39,-75,18,13,-42,-35,45,46,-4,-21,61,38,14,79,-5,49,8,51,12,10,17,-35,-31, /* [2][0][][] */ -11,-43,9,16,-14,-11,3,0,-3,12,13,-12,-8,-70,63,-69,14,-30,51,13,95,-5,-33,-11,41,-28,39,-35,-58,-30,-3,-9,-19,-18,-11,-30,9,91,66,16,6,3,72,-27,-25,-45,-40,8,-43,39,52,-52,-12,-31,-38,-49,-14,-56,37,-3,43,-9,-1,-21,5,-6,-32,15,-22,25,-52,0,39,51,57,40,-50,46,-7,-56,34,-64,62,-14,32,-30,61,12,49,-38,58,-3,-127,-57,48,-21,26,5,35,-59,72,-31,25,34,9,-45,24,46,29,-43,-21,-43,-54,-24,-39,47,21,55,5,8,-6,-89,-40,53,-52,-30,62,-9,18,-36,-30,19,-84,20,14,-17,-27,89,35,-16,-27,-10,77,15,49,-44,46,23,47,-29,-20,-101,21,52,17,-46,7,-54,31,40,-27,7,-52,-6,-39,-19,23,-11,-23,-16,-27,99,76,51,-34,52,63,-35,20,-7,6,5,46,12,-24,-53,-22,-19,3,-5,-2,48,71,-26,41,23,-72,60,59,-10,33,-30,34,45,-57,62,25,31,-52,-22,60,-23,27,37,-7,-21,46,28,-3,-3,-74,20,-52,47,3,63,-17,14,-57,-40,9,26,-33,-43,-37,12,-102,-7,15,-23,-27,34,35,-24,-32,-35,80,-44,-73,-5,71,20,-27,-13,-27,2,51,-57,-46,-26,-26,-11,6,-13,23,46,52,-39,16,39,33,32,-14,17,24,-65,-57,-54,23,-32,-9,10,-65,-9,53,35,-18,-48,32,-1,27,47,-31,-52,-46,-72,-14,-5,14,24,40,-20,-26,-41,-11,21,-5,-53,-3,-33,43,-49,-10,-15,88,-33,9,-23,32,-5,25,-71,60,1,-34,-7,3,-49,40,5,-17,44,-14,-18,5,45, /* [3][0][][] */ 35,-65,-24,-12,-1,18,-46,31,36,46,-47,53,-13,20,6,34,-9,43,-21,-32,14,35,25,27,16,-22,36,8,1,-49,61,-23,-27,-54,-8,-36,-13,124,47,6,-37,49,32,19,17,19,-14,27,39,21,38,-16,10,-40,21,-20,-25,-50,40,-35,-24,-37,30,10,-46,-42,-24,12,19,-54,-11,-56,-22,-17,-36,3,-95,-6,48,19,-11,-6,-21,-11,-44,-9,31,40,-24,41,-67,75,127,-12,4,19,16,-11,-26,-36,-69,-43,-4,24,26,9,0,-1,31,-35,-22,31,41,-19,-62,-40,18,-47,18,-10,-11,26,-2,1,-57,45,-57,76,44,-84,-33,-22,18,62,4,36,25,-44,69,-16,2,-10,-1,26,-39,-52,3,-29,-3,-13,48,-16,-2,-38,15,16,-45,66,-22,13,27,51,54,-69,28,20,59,35,92,-43,13,-14,-14,13,-11,-6,-69,49,-53,23,14,34,-35,-39,42,29,29,19,-10,-19,-21,28,48,-59,7,-108,13,-1,17,-15,61,-63,-12,-26,-20,-58,-4,34,44,-24,-42,38,-10,-27,-3,-20,-43,-21,-63,92,-32,-12,45,-44,65,45,11,-55,-52,-55,-3,11,32,-71,-27,22,-62,19,45,-66,-42,-4,24,-2,54,23,1,-89,-2,21,-22,7,64,78,-14,25,-3,-11,43,-50,-8,-11,-38,23,-2,5,46,1,30,-14,17,9,-39,50,-55,-28,-58,12,36,-8,-12,-12,-7,48,-77,-2,-64,25,-8,-6,-9,16,42,18,-67,42,-23,-6,-30,-24,9,45,3,8,-42,-53,-24,23,-57,-22,-55,42,-42,-52,51,-13,-18,43,-35,-13,80,41,-14,-13,-43,-5,-19,-73,46,47,-32,15,32,-104,-28,20, /* [4][0][][] */ -4,5,12,20,30,33,-23,3,1,97,-10,47,10,31,8,20,41,-16,46,-77,24,-12,17,16,15,-1,-50,-48,-88,7,68,-5,11,23,-30,-14,-39,-67,79,23,-23,28,49,22,69,1,-23,-1,-50,-11,55,-54,39,-14,16,-21,6,14,-49,-102,-13,-3,5,-32,-45,-30,-8,-9,-51,-62,-19,-31,-32,28,-1,-54,28,47,-3,-82,-21,7,3,83,3,-46,33,5,32,-49,99,-4,-28,43,0,-80,47,52,-65,-5,-12,-36,10,-47,16,-39,-16,-9,-31,-25,-38,38,29,11,-7,-44,15,-5,-29,22,10,-50,-52,-33,12,-35,-14,-27,-36,-48,-3,-6,-8,37,-13,-4,17,16,-29,-23,10,23,-95,22,-2,-28,-37,-20,7,-53,7,-38,-37,36,50,-8,23,19,-10,-27,-39,5,69,-9,-35,-40,35,56,3,-76,86,-52,23,1,16,25,-82,54,33,-5,-9,-35,-26,9,17,1,-6,3,34,83,54,17,-14,-6,-36,95,64,46,42,-28,-38,-5,-16,16,55,-53,-38,-19,19,45,32,-21,10,11,14,0,-4,0,11,50,-42,14,-30,-8,-8,-25,-20,48,1,-20,10,-1,-73,-79,127,-71,-14,65,-17,10,56,19,-8,15,-43,26,-57,-5,-14,-14,-20,-22,-21,-82,30,3,27,46,-45,-61,22,-23,33,-15,12,33,87,51,65,-29,11,-98,-82,1,-8,18,-48,60,15,-47,-16,8,-21,-33,-36,4,9,58,-6,15,-26,-72,10,-2,-59,-4,-27,-46,97,-51,9,64,24,-20,-75,-57,9,40,-81,-12,-12,62,-36,-14,31,10,-57,-13,-48,18,4,-16,4,-7,15,-45,-48,-9,7,57,-21,26,-20,-13,-9,62, /* [5][0][][] */ 36,46,18,-49,20,33,-86,55,25,-2,-14,13,39,49,12,-93,-63,4,-8,-65,-60,6,72,-105,35,95,38,-30,5,-76,45,66,-13,-72,29,77,-39,-25,45,-9,-121,-30,65,-35,-46,3,44,9,-33,44,16,19,72,25,-46,27,-48,-38,26,66,39,-59,46,-31,31,72,-11,-29,-51,-20,-16,-61,-19,20,-5,57,1,-35,76,28,20,-49,-43,54,-7,15,33,-5,82,75,-43,-9,-124,-61,-13,43,-13,39,0,-35,-26,18,21,-32,49,24,-54,-27,59,-38,19,5,2,-113,53,-22,38,-35,-25,-42,82,10,7,-15,17,27,0,12,37,-9,2,23,19,33,-11,-56,40,46,-18,6,22,-1,-1,47,-14,25,27,-45,69,-24,99,103,33,-6,51,31,27,-40,-36,23,11,63,-10,-42,-32,-8,-57,66,54,-15,-69,24,-47,71,-38,21,-28,28,-19,32,-37,-3,28,10,57,2,-27,-39,68,-8,6,58,42,13,-16,6,-60,-21,-105,-24,-17,-18,-43,-54,-73,-22,-6,58,62,-4,-80,-17,-3,25,101,10,-96,-51,43,42,-67,25,-33,37,48,0,55,-12,54,71,50,10,49,-27,-31,-5,-29,-49,14,83,45,3,14,-34,127,-29,67,-5,-47,15,-17,54,13,18,46,-57,-4,-33,55,-6,-54,29,23,22,-49,-59,-15,49,-35,79,-78,74,-20,52,89,0,66,-36,-37,-1,-67,55,16,2,2,-15,44,-36,-58,60,45,-8,-99,-38,17,8,9,-50,-7,20,6,-54,-46,23,25,-3,5,-67,48,-12,5,34,79,-13,69,55,49,27,17,40,10,28,77,37,39,11,-100,53,40,29,14,84,-17,11,-1,42, /* [6][0][][] */ -39,4,38,-16,28,8,9,33,0,53,40,9,40,19,-21,69,30,-3,56,38,-44,-12,-38,-45,18,23,42,13,-7,-8,-16,-1,-76,-81,-34,-8,30,2,-15,22,7,18,21,26,4,61,-52,-2,90,82,-8,-27,-51,0,-27,-52,1,-9,26,-9,66,-35,-44,34,6,-22,-28,18,-63,-25,-22,1,-28,-6,-29,51,-27,0,-20,-18,16,0,23,-37,-33,-29,7,29,-10,9,-15,42,-19,69,6,26,-15,24,-32,32,7,53,32,-21,-92,-30,42,-24,19,-50,-27,-56,-41,15,-35,-27,20,-12,2,-20,15,56,52,-12,-9,13,1,4,-15,12,42,54,-29,-36,34,-51,47,-1,-25,43,-37,37,-5,44,9,6,24,16,5,-25,11,-9,1,-7,72,-5,-9,14,-47,-43,38,26,-37,-17,4,23,-56,52,14,-10,6,42,-21,60,-22,38,-33,-7,-32,-30,43,49,-39,-57,14,-12,34,-67,-24,-20,-52,5,47,-35,-42,25,-3,-48,49,-40,21,-14,21,-4,-44,32,3,3,46,54,16,54,1,64,19,64,-1,-11,-45,105,23,-35,-14,83,23,16,32,0,-5,-2,46,-21,-17,-56,-7,-5,-29,8,2,13,-15,56,-63,-14,7,-6,-46,14,69,-1,-45,2,-78,-43,35,-51,1,-102,28,-12,40,-115,29,-14,-86,7,-15,-11,-10,-6,15,-21,-53,-3,15,-4,33,-10,-20,59,-127,-67,-15,-52,35,-23,10,12,-13,-12,-42,5,-9,-16,-4,-8,25,64,59,-3,6,30,18,44,11,-105,-31,-9,9,-66,-50,0,-42,18,4,-20,-27,56,6,-23,3,24,18,11,-10,-1,-8,-40,-50,34,7,-14,-12,39,23,-37, /* [7][0][][] */ 6,6,-6,-19,-55,1,-6,-3,-10,46,39,-26,-50,29,9,23,-5,13,-12,2,-40,17,9,-16,16,1,18,21,41,-30,50,-50,13,17,-32,-2,6,-13,15,-36,-3,10,-34,-11,-73,2,39,13,9,21,-43,36,12,-11,10,16,10,21,-39,76,9,-78,35,55,3,-27,9,2,-21,3,20,66,18,59,-17,21,62,-43,12,-31,-6,18,6,-17,-26,8,7,-14,17,26,12,-17,30,-84,25,17,-36,-11,71,54,-8,9,64,-27,11,-12,19,-18,-35,7,32,0,14,49,46,-57,50,-13,18,-9,-35,32,1,10,19,-32,51,12,4,19,70,-49,-15,-53,-58,20,43,-11,38,-11,3,30,42,27,20,-59,-16,-43,19,-2,7,-14,50,-58,-15,-10,39,22,23,29,15,-10,-9,-39,6,-36,-51,2,40,54,-30,13,21,-38,-29,-62,-26,-8,69,28,-33,-1,-37,-12,-17,-22,-4,8,23,4,8,57,-15,-25,-6,55,11,29,56,-9,37,-12,11,29,-10,-2,3,-1,63,-24,23,2,11,-5,55,27,12,93,21,-53,-7,10,28,44,-52,-17,1,0,7,50,-10,10,0,-34,0,18,9,0,-41,40,13,-64,9,27,2,-37,-6,-15,-9,-11,17,52,-23,-30,17,-8,8,26,-28,36,-1,23,50,42,22,-25,15,13,-29,29,17,-5,-30,26,52,21,-6,-31,-5,-2,10,1,26,21,7,-42,-4,2,14,21,5,127,4,21,2,56,-50,49,-16,34,-16,-6,17,-24,35,40,40,28,-16,18,-5,37,-11,-54,-36,5,41,-3,-8,-47,-39,-40,24,37,6,-55,8,-30,-75,12,-24,-11,10,-4,-26,17, /* [8][0][][] */ 0,-20,90,-78,38,14,-64,-74,48,-18,-30,2,87,-31,-28,55,13,12,79,-74,77,-53,-20,-30,20,16,-22,45,27,-47,-13,34,-110,-24,-2,-36,-25,-18,-27,21,16,1,-34,-14,-28,-91,24,28,-37,-56,80,13,23,-34,12,-61,45,-52,112,0,71,17,93,-58,4,-58,27,58,28,-41,-38,55,-71,-25,44,113,24,76,-1,-55,14,13,53,117,22,-21,104,-41,-5,-40,-34,-7,-76,58,-7,70,4,-12,-14,57,1,27,-57,85,-42,-31,-53,-86,-36,31,-47,31,-69,-72,38,-76,-53,6,10,28,8,55,52,-104,3,-21,-43,-8,-47,114,-54,-16,45,-33,-19,41,42,83,-42,22,-103,-14,-75,-104,18,-2,-64,-110,4,-23,-44,-19,-80,24,23,6,-79,-26,69,26,60,38,-49,20,43,35,29,-16,-5,-33,-13,-38,52,-2,-57,85,-3,-38,32,-32,-96,71,-102,63,-49,19,-41,48,-49,53,-5,2,6,27,108,-15,29,3,-29,31,-2,-71,-27,5,57,-8,-53,12,45,105,-84,-23,-39,-3,-62,-28,60,52,-14,-47,34,-60,-67,-20,-74,17,60,-55,-3,-28,-13,-51,-43,76,28,-40,77,61,6,-37,45,3,36,-31,80,-6,-77,-21,29,49,27,39,68,3,75,61,-10,-74,39,78,-2,-4,-36,-7,46,27,0,-14,40,8,14,21,25,46,-63,-12,60,-35,45,-38,-71,-20,88,-16,9,-54,12,7,33,48,122,-2,53,-18,-35,-28,33,-29,-48,-44,34,-23,17,127,-16,-24,15,54,1,24,2,-58,-40,-46,51,-26,-29,-1,104,-40,-89,17,31,-6,90,29,40,84,45,-31,51,31,92,-21,65,0, /* [9][0][][] */ -71,1,46,-30,55,4,-29,10,-35,-28,13,-15,33,-47,74,37,-44,11,-83,11,6,-6,23,17,28,47,-3,8,-2,44,-20,60,42,2,47,92,15,-64,48,-14,-15,-59,46,67,44,-20,31,-20,52,-6,-2,-23,-1,48,-54,-48,-40,35,41,-80,34,4,-30,-31,8,18,-65,-19,82,22,67,41,-36,36,25,51,3,-39,26,-20,18,-41,26,72,7,-3,-18,-47,-18,-21,1,43,-55,-34,9,-39,-13,-40,17,38,49,-15,58,-28,6,-30,23,-9,32,40,-12,-54,-68,-28,20,31,-11,-25,49,38,38,-20,-24,7,10,-20,-32,22,54,54,-51,65,9,53,-44,61,-24,20,-41,3,-18,-32,-28,21,58,18,-17,-2,-5,-47,-9,32,15,-53,-40,30,48,48,127,-13,-80,28,-48,-44,4,66,7,-15,67,31,7,5,29,0,-48,-10,32,28,11,74,-33,74,63,-95,35,-2,-15,-16,20,10,40,12,-39,-13,-2,11,-55,43,14,61,-86,-26,31,40,59,6,41,-42,-11,-79,-50,12,12,-37,-30,37,49,5,-23,-25,-61,-35,68,0,94,-100,-44,-29,56,23,55,-10,-55,-42,-41,7,-17,2,-6,29,-40,57,26,-41,-21,-17,34,4,92,24,-32,-10,22,-74,-12,-10,-18,-32,-16,-15,-95,-30,22,-15,-53,-3,-61,59,2,-56,28,22,-19,22,-14,30,-65,20,-34,31,-27,23,-18,-22,13,-35,-30,-35,15,34,74,-87,-14,3,-22,22,-68,-7,6,-9,-28,35,44,-10,-45,22,-122,-40,74,34,20,-1,-74,84,-36,7,-45,-34,19,22,-79,36,38,-25,25,8,75,55,1,31,15,-6,35,-24,47,17, /* [10][0][][] */ 8,-65,-7,4,-1,-58,-76,-76,-52,23,-1,28,31,-1,34,-52,-64,45,-24,-8,68,-65,13,-47,41,-4,67,8,-44,-72,-38,-63,50,19,-31,9,3,3,-57,-18,24,-49,40,-6,-57,-22,-18,-24,13,19,-44,-13,13,-19,50,-6,6,37,-47,-44,-7,52,-1,43,-13,28,3,44,76,9,2,-91,-77,-12,55,-21,9,20,49,56,10,25,72,-67,79,9,33,-19,17,-24,-46,-3,28,21,-28,-13,48,30,-9,-53,-84,-17,-31,-29,-43,-9,58,26,-18,-64,-8,-2,89,34,-19,1,-33,11,-29,18,-37,28,-52,39,-12,20,42,-66,32,-42,-44,-45,26,-22,18,-63,54,-13,10,-38,39,-5,13,-44,35,-31,-22,12,-9,57,-41,47,-69,45,40,-54,-37,-14,-49,20,26,-15,13,6,-12,-21,45,32,-8,-43,28,38,12,67,-25,-28,3,-34,-15,10,38,-1,-42,2,-36,-31,68,-92,-33,-63,-32,-50,12,57,-7,10,12,-7,-15,14,-23,-34,14,-20,-12,58,46,66,-84,-70,20,30,-41,-59,58,0,-41,-7,52,-127,-50,66,17,-54,68,23,21,42,-7,-7,1,-8,18,55,27,-29,3,-7,-58,-80,-19,-6,-16,0,-53,-19,8,33,3,31,-20,72,38,-20,45,19,-78,-3,9,-5,-48,5,42,4,-47,-91,-26,51,23,-20,52,-8,20,-83,36,34,-16,-19,14,46,-16,84,58,-31,43,-17,45,70,-53,17,66,3,39,-26,0,-8,34,53,105,4,16,23,51,-17,8,0,-22,-15,-13,37,27,-6,6,-37,-6,-3,18,-32,-6,-31,-24,-13,35,1,45,-13,44,-42,-13,-87,-50,-10,-71,24,10,58, /* [11][0][][] */ 55,21,27,26,-2,37,39,-5,-51,-8,10,-40,66,-58,59,55,-38,66,-23,39,21,-20,9,1,20,-39,38,-46,-17,14,54,8,-37,-69,-81,-12,16,41,23,15,-50,-29,-7,-96,-33,6,-92,28,34,0,-4,-25,-2,-80,-15,-65,-43,-96,-30,-93,-16,-37,-21,-61,81,-36,5,52,32,25,8,41,20,-38,30,40,79,-77,28,-1,-34,65,4,19,-8,-38,-43,-70,-10,-50,60,30,-24,-52,-23,-83,-107,-28,4,-55,-22,-110,27,-31,-61,49,45,14,-104,-63,50,22,45,-7,-46,-2,24,-27,36,-7,10,-51,-17,-59,-7,-26,-5,-20,-4,-89,-5,3,-34,-22,-68,-58,-5,-48,-37,-85,-59,19,12,22,-23,37,-84,41,-14,25,10,-44,-42,60,98,44,1,10,-7,37,20,36,-32,96,25,42,62,-14,7,29,-10,-15,71,41,6,6,-49,-11,53,-26,24,-42,44,-65,21,26,115,-21,52,-9,-38,-10,-34,50,70,56,-44,-52,2,-8,57,-43,-29,54,-75,38,-61,-2,12,68,-52,52,-41,-108,22,14,-6,9,12,-5,11,-35,95,-25,29,18,6,15,0,70,24,-46,60,49,24,-56,2,-11,51,7,48,-35,-32,22,15,-46,-34,74,-13,-56,73,-7,-6,32,76,-29,-64,69,-55,45,-23,-9,-12,-18,66,-6,-7,52,-1,-9,-65,-7,-21,65,-35,-8,26,65,7,-127,4,94,-101,44,31,-79,0,30,11,25,12,-42,-48,33,51,64,-18,-18,-69,18,-6,12,8,-63,87,-25,6,-54,58,98,-14,4,-40,9,-27,-9,61,78,90,72,-49,15,10,-14,28,36,23,-2,-35,21,-32,-18,-12,-23,-5,36, /* [12][0][][] */ -16,-115,6,76,-8,5,13,-2,9,71,-54,-42,-3,54,51,-3,48,22,41,-27,42,41,14,38,-44,-50,88,-2,19,-22,11,-38,50,18,1,-44,-19,79,-34,65,63,32,-6,20,-38,69,-33,-44,40,-15,-27,44,-13,51,-54,-18,-35,0,0,13,10,-22,53,51,-11,-30,-33,72,-78,-95,7,-31,62,-54,29,36,-19,16,-7,-38,37,-1,1,-39,7,-44,-30,3,-7,-9,7,50,4,65,7,24,-31,-78,16,9,10,4,16,32,3,-41,30,3,-31,-47,3,17,44,88,27,1,-60,-5,8,-21,21,20,22,44,-36,17,101,55,13,4,-27,9,-59,-20,10,-78,47,-52,45,-15,22,69,43,-23,49,-37,-3,37,-16,95,-6,20,-9,-13,50,-24,-52,-28,43,-81,-60,-34,55,-42,28,45,52,-9,41,37,1,-46,-47,-1,-25,-34,5,40,34,-48,17,39,-91,8,-32,-3,7,-12,-68,58,5,23,32,15,89,-1,-46,17,19,21,69,5,-5,-127,21,16,-23,18,-30,14,5,-18,2,-44,44,-7,-18,3,-4,-46,-36,63,-24,-34,22,-48,18,-11,24,-13,-17,-56,-38,-19,-1,28,-1,-58,-62,-37,-63,-49,-13,19,-33,-9,61,70,-59,-70,-18,-11,-49,32,-30,-29,21,-67,-29,9,34,-19,-11,-10,15,93,40,-39,-2,43,-12,-23,5,50,4,39,-58,40,64,-21,-6,-29,-79,-46,26,2,11,-16,-22,-78,3,9,-4,62,22,-1,-21,-34,-10,107,52,0,20,-50,-80,-9,34,10,-13,-42,21,19,62,39,-36,2,10,11,6,70,62,-16,-10,-21,-52,-16,-19,-2,-14,-41,-62,-13,11,38,44,46, /* [13][0][][] */ 2,11,85,-5,24,-24,22,-57,6,-44,89,-12,11,-39,-21,6,-2,35,-32,13,-24,42,-8,7,26,10,-12,-12,116,67,6,-49,36,-23,9,64,39,-19,57,103,-29,102,-12,-43,18,72,1,-23,-20,53,-34,-6,-17,25,42,-18,-24,-24,-43,-73,-36,2,49,-36,-5,52,40,-43,-42,13,11,-12,64,37,1,-13,-47,-29,-12,-27,-35,-36,1,13,6,25,81,-69,5,-28,6,16,-1,-75,33,127,-32,-31,25,37,-20,-3,59,13,-41,16,46,34,36,-37,14,14,40,52,5,-21,35,38,54,-14,6,63,-20,-87,4,-31,32,81,35,-31,2,-38,-23,-31,25,-62,-17,-29,-28,-21,-70,48,-32,23,2,-65,-32,42,-23,-5,3,20,-11,-31,-4,-33,-72,-26,-7,72,12,8,21,33,19,-69,-70,-6,-10,46,29,-33,76,-21,-51,-95,-39,27,21,-28,-27,-57,88,-3,51,36,3,-58,10,12,-10,-51,-37,-13,9,-29,33,6,85,104,-50,0,-6,38,50,-8,-38,-83,-70,2,-40,42,16,-7,-55,-22,-21,23,24,44,-111,-18,76,34,-11,0,-13,-60,-22,13,-71,43,-81,21,88,-70,-63,-86,50,-26,-52,57,51,70,54,29,-88,35,-4,-18,-4,-32,-72,-19,-32,-15,54,-30,-88,6,13,-3,37,48,-30,59,-6,-36,-19,-16,92,-16,-13,-22,-4,-2,-38,65,-96,-81,5,40,21,13,60,-11,37,-39,-79,22,50,60,-11,-110,6,24,-12,38,-16,31,40,-52,-22,-23,-6,5,52,-6,14,33,-41,8,-53,93,-26,4,-81,-49,-4,-6,7,-34,3,-54,12,41,-33,41,48,-21,-36,11,9,14,-17,-69, /* [14][0][][] */ -18,34,-83,-60,53,66,-118,-16,13,-8,0,-31,-45,41,-4,-11,-28,-46,1,-18,6,-26,-26,6,-49,35,-52,-35,-43,38,19,58,14,-39,4,7,-44,-35,5,38,7,-55,-10,-33,-17,-41,55,-53,76,101,-15,55,8,8,-41,21,0,-14,8,-14,-50,-56,-5,-31,29,-49,-65,18,33,51,-47,32,16,59,36,-34,11,-35,-5,34,98,-5,1,-17,4,15,-15,-40,-10,-75,19,-78,92,1,19,1,12,9,57,57,-26,44,-17,-14,-21,-40,-44,13,62,-24,-113,-30,-8,-72,-26,-28,-69,-11,51,10,2,-80,11,-29,-7,-1,-58,-19,-7,55,-40,31,-5,48,7,-10,7,-13,-54,-62,-74,21,-45,28,-35,103,-57,-14,78,19,-23,-8,22,-13,74,-23,23,-63,56,-55,-88,-79,-85,41,-25,-32,-118,-23,106,58,51,54,-40,18,-61,8,24,-30,66,14,-62,-20,-20,6,-27,5,54,-89,39,-6,-44,-123,19,-32,-13,70,-86,-44,-106,-56,-22,48,-21,-5,45,-37,11,63,-77,65,12,7,-41,-88,45,-58,49,-61,-9,60,-68,61,-6,43,49,-38,-25,23,-6,-35,96,-85,45,27,82,-36,38,97,-67,-75,33,37,51,2,24,0,10,45,-75,41,-7,-8,-31,12,52,-19,59,59,61,-86,18,4,92,-51,-41,13,-23,-68,77,-36,14,-24,-50,29,-36,23,3,102,-55,-87,-69,4,6,18,-8,90,17,-108,47,49,51,-79,48,-29,-8,127,-56,108,-14,9,-14,13,-89,96,33,-69,-27,-82,-18,-20,16,-23,-34,3,13,-32,85,37,-24,-32,-37,18,6,-50,44,-14,-25,-7,15,-4,36,76,91,34,-18,-30, /* [15][0][][] */ 22,28,-41,91,-14,-84,26,-1,67,22,17,48,58,-16,-18,92,-1,34,-21,45,-4,44,31,-55,-80,-19,-35,-6,-127,-94,26,25,-55,-46,65,-92,-13,28,-30,-60,14,42,77,58,31,18,14,-38,39,86,-58,42,-52,-40,-4,-41,15,5,12,-49,-58,5,-38,54,83,52,28,-84,-17,-8,-20,-4,31,6,-18,0,28,12,61,-8,-45,19,56,-34,4,-4,39,-30,8,5,-50,-4,-23,33,-21,-8,-58,20,-37,42,34,2,-14,-46,-40,16,-6,-33,46,42,45,-2,-31,17,26,46,-75,72,38,-42,24,-20,-23,10,-20,39,-45,38,-25,7,-7,47,34,-10,15,-19,30,46,-33,-27,-18,-18,13,15,22,25,81,-2,-31,-17,23,-48,-29,26,10,-8,5,-22,-16,5,-12,49,-8,-56,45,30,-13,13,54,-3,54,-23,45,21,-42,-1,-43,22,52,3,-81,-49,-39,49,32,-8,19,-2,-54,-2,-14,59,-37,-60,-7,-32,35,66,82,-25,-13,-28,82,-70,9,59,-12,0,-67,42,74,-20,-45,55,44,19,48,-35,-16,26,-32,9,68,-49,24,-6,-29,-72,85,33,-38,16,47,8,30,7,52,44,-8,11,51,36,-9,-1,-53,-28,-9,-28,-13,-41,8,48,-48,69,27,64,65,-2,-22,-7,33,-17,-40,59,-50,-10,-79,-7,-34,-56,-6,-85,-81,-15,-62,22,-20,-17,24,54,-55,41,2,54,34,-72,-20,54,-11,-20,5,-38,16,-52,18,-19,39,-8,6,-10,17,-19,-28,47,10,-33,-33,-41,25,-77,3,-19,-67,63,78,-22,7,54,-22,-68,-42,-100,-44,38,16,-8,85,-106,-96,32,-58,3,46,-31,-36,-26, /* [16][0][][] */ 3,55,-32,-42,-1,52,-49,46,3,-36,7,20,16,31,10,25,30,85,-44,-30,45,53,-52,18,-44,-7,-21,-43,-32,-12,33,-47,-85,-80,4,-5,-111,13,-10,-32,16,-54,11,12,28,27,3,-33,20,-56,-32,-2,3,-38,51,-78,51,4,-50,30,-30,67,18,7,-11,-10,-14,-33,50,-47,-5,15,2,-23,-18,-3,62,-26,-23,-48,50,4,-34,-7,-1,-29,62,-18,-23,-30,-74,32,49,51,-49,16,29,-36,25,40,-56,-13,-6,44,45,-55,0,-28,4,-84,41,15,-66,-20,38,3,-71,-13,-9,26,9,-5,48,30,-54,52,-14,-1,9,32,-54,43,-45,-62,-39,-40,66,41,10,11,-10,-11,-1,-58,16,-93,-82,45,30,127,-24,-15,-10,-55,30,73,34,82,40,-15,-4,73,-37,-6,-25,-53,23,-13,27,-45,24,-3,-74,67,39,-25,-2,-36,-93,-25,-49,-51,-8,-70,30,48,7,-49,-33,-2,-78,-18,23,17,13,-21,-47,-54,-18,-30,-22,-29,-4,-1,-38,34,9,13,-38,57,-5,-9,33,47,-58,71,24,9,16,-39,-67,-16,69,-96,3,100,5,21,-30,-3,-64,-54,25,54,-114,70,-32,-39,-5,36,-89,14,50,62,2,42,-27,38,2,45,-23,36,31,75,-45,63,58,-44,-9,60,8,-32,42,-44,-48,6,-1,5,35,18,-75,11,86,-28,-26,20,24,-17,2,33,30,23,-48,-4,-32,-21,53,-23,-10,46,71,-34,9,-18,80,42,35,-17,92,13,-3,-79,98,-65,-19,-53,48,-31,53,40,49,29,-11,7,-9,-2,-12,89,17,23,21,-1,52,-125,-19,-29,17,-30,20,-1,11,1,-1,-2,-108,14, /* [17][0][][] */ 22,-10,-38,-22,-21,66,55,51,2,35,-49,39,-21,-26,23,-51,-18,-5,62,-28,52,-43,-51,-3,-36,15,-59,10,24,-10,41,-4,-28,46,-10,-7,17,-29,26,26,-54,-16,-14,3,-77,74,10,7,-62,29,-2,-34,19,-28,-12,5,62,12,-17,-15,-9,127,-10,31,-8,-17,-29,13,-65,-9,55,-19,-3,-72,-7,-23,-1,-32,-35,-70,41,-43,38,62,39,55,63,-40,71,-20,-15,-12,-36,25,-18,-2,25,-16,-1,24,37,-25,15,-32,-23,-5,-9,37,-25,7,-28,-12,-45,-39,-14,8,-24,-22,45,39,-19,-1,-3,12,-9,21,-25,-22,43,14,-52,13,17,-14,33,19,18,13,-17,-9,2,53,7,37,58,16,5,5,-34,-9,39,-23,23,-11,-43,54,36,74,27,43,-48,-11,-40,26,34,23,-24,61,-21,-30,41,4,-8,-3,43,1,9,-7,-5,25,-12,-39,-31,59,-11,27,-53,28,-6,54,17,15,-45,1,-12,85,18,23,-12,-57,63,-54,5,-42,-33,-21,-15,-13,-24,-31,-17,0,-20,-14,22,-17,33,11,24,12,20,49,-39,26,-41,-2,14,-2,-53,-13,-39,13,-10,34,-29,75,124,45,-35,62,40,-8,-34,-58,-21,38,-36,-8,-10,4,-49,24,59,57,-43,-56,-38,-7,14,54,-1,-23,-13,-12,-13,16,14,3,24,26,39,12,-1,47,-43,1,50,-77,-26,23,29,-6,-57,-46,-61,-35,16,-39,-1,-26,-45,-39,9,18,28,-47,24,-23,0,43,40,-8,39,-27,-20,-23,12,7,50,-23,-3,-56,4,5,25,-38,-2,-4,-54,18,7,23,30,10,-52,13,-44,-2,1,-27,-3,-2,-25,-28,-33,10, /* [18][0][][] */ 64,-55,3,-15,43,-30,-17,-60,1,62,-92,-44,4,19,-44,-34,-49,-20,6,-3,34,10,-2,49,-17,51,-41,32,-37,-40,4,96,-68,50,81,19,93,21,9,-49,77,80,25,44,27,-47,6,6,11,-28,79,-43,-81,-2,-34,-19,19,71,-42,-29,53,-19,0,-5,-33,2,28,-1,12,23,-22,-12,-27,-25,-80,-27,-16,61,-15,53,-46,2,-4,-21,-17,4,65,-4,28,51,51,29,3,-19,52,-4,-36,48,-2,34,22,-28,40,70,14,-30,10,12,22,-54,-15,-57,58,50,-34,-57,57,2,3,19,15,-52,58,4,-2,-23,-1,-56,-16,20,-17,-40,23,-44,-19,67,40,-9,111,-7,-52,17,87,11,-18,36,-33,-4,-27,3,46,-40,-76,36,-10,-33,-13,45,54,-9,-62,14,45,52,-15,-64,37,36,-31,-14,53,-28,18,-17,2,-63,15,-6,-27,-25,51,18,5,-4,-26,58,-68,-48,-58,-9,-47,-17,48,-51,36,-38,36,93,67,-24,8,71,-44,-30,5,8,-10,-61,-2,-27,-96,-28,-8,-73,48,-33,-74,-41,-5,35,7,-49,96,-73,-82,36,26,-2,36,58,77,-68,-28,72,35,-9,-49,-8,57,-21,-44,-11,-43,-32,15,56,-61,-69,-25,-12,-31,18,100,-49,18,1,26,47,-40,17,31,55,-54,-31,3,-56,-17,41,3,17,-50,-9,23,81,-13,-44,-42,15,94,-9,-22,-7,24,72,-13,24,-21,-76,37,74,-58,100,10,-28,5,-7,-36,-4,14,-8,19,-2,-54,12,10,7,45,38,-32,64,53,88,65,-27,13,10,85,48,50,-4,-31,-8,80,16,127,-53,24,-2,111,-4,-64,-23,-11,71,65,30, /* [19][0][][] */ -9,9,25,-43,9,-20,15,18,-2,37,18,0,-38,-14,-11,-31,61,19,-14,45,3,47,-34,10,-48,-9,-18,52,-19,-49,35,7,-14,-19,-50,-43,31,-11,20,-3,-49,-52,-77,-40,37,5,127,-65,-1,-44,18,-11,92,-32,-18,47,15,-87,-2,45,-33,-60,-107,46,60,15,-31,-4,-44,-13,-58,37,72,31,-85,-12,35,15,18,-27,-68,50,37,-21,-32,32,-16,11,54,-12,53,0,-8,-37,34,18,36,27,-58,24,38,3,-34,-7,63,35,-19,-111,-9,-6,-24,-27,37,-6,9,-65,14,-18,-20,-15,23,11,3,19,81,-78,-14,-81,14,-10,-12,32,58,-8,-42,11,-79,-9,4,-26,-82,35,-81,-41,2,-23,29,-7,-29,-38,45,29,33,2,-25,21,22,65,35,-7,6,-18,-37,-36,-78,-48,52,12,2,-94,-17,29,-3,-7,35,-44,-42,41,21,-71,-90,17,-46,-48,-11,107,-33,-78,3,16,66,32,7,-29,-99,0,23,65,30,3,26,8,-8,4,-3,53,-23,38,70,-14,17,14,-14,-22,34,23,-42,26,-73,24,27,11,40,-6,-5,-21,-27,-70,35,-16,33,16,71,-54,6,-43,41,-11,22,30,-22,-33,57,14,61,-80,-18,-22,-4,-25,41,50,15,64,33,26,-68,-57,-51,-43,-26,63,-72,68,20,35,16,19,-26,21,52,-51,9,60,-59,-5,59,-47,-6,15,29,58,-35,21,-29,24,-70,54,12,-48,5,27,0,24,-9,-23,-45,32,2,23,-56,1,-67,-43,-29,-15,-29,0,-25,-26,-3,-22,-54,-49,-16,73,-4,-5,20,3,-30,38,28,-65,4,-19,39,35,-7,-37,-12,-23,9,36,0,24, /* [20][0][][] */ 17,-2,-61,54,7,0,-7,-29,8,-33,36,-24,3,63,41,5,45,25,44,20,-34,6,-18,74,-10,61,-35,38,-63,47,-49,-23,4,1,-15,20,2,-19,0,-3,27,-36,-5,63,-27,23,-11,36,-48,-4,-32,-58,8,12,-75,19,110,11,78,85,29,-3,-22,3,-69,-64,-43,22,-16,4,-25,9,-107,-2,6,-48,-29,24,-8,-53,-19,-32,67,-1,-71,17,-18,36,-34,-9,-41,82,-21,6,-55,42,26,-27,38,-68,-26,-7,-37,-46,-35,9,-37,16,10,-15,-43,30,-49,-27,38,-28,-16,34,43,-7,52,-23,-22,-3,14,-40,14,64,20,-37,32,-3,33,-5,-28,-38,21,-25,7,60,75,69,-35,-37,69,44,-70,51,11,72,17,-23,43,42,-10,25,18,-5,-19,26,-2,38,-32,15,-12,-9,22,12,27,37,21,1,47,34,-12,-25,31,-23,43,18,-35,-49,-29,-32,3,-94,-8,3,25,-3,-61,-37,-32,-17,-23,-2,18,35,48,-20,53,49,-33,55,79,-73,18,-16,2,50,10,-43,-30,38,-12,-27,68,21,26,-49,-1,-13,-106,-39,-13,-13,-44,-83,-38,25,6,-32,-1,-3,-81,16,-95,18,-57,28,-35,-3,-83,11,45,22,40,-31,-83,18,36,-15,22,14,-52,-56,34,-70,-32,55,-7,-20,-6,8,-7,22,16,74,-37,-21,88,3,-40,-3,8,-24,-65,30,-71,5,-2,-23,5,-39,72,65,-13,-13,75,-31,28,58,127,-50,6,-58,10,15,63,0,16,48,74,-10,-47,29,-7,47,-24,69,1,-24,127,-86,-18,-52,-31,14,73,-58,50,-8,6,36,23,14,30,81,23,30,-47,31,60,-17,-6,4, /* [21][0][][] */ -31,-45,-27,1,-89,-1,58,36,26,-52,-1,16,56,2,-51,-41,-3,2,-16,-42,34,47,-21,-16,46,0,-6,62,1,-21,22,12,-83,44,-9,17,33,7,-10,-27,-27,-47,74,68,-4,23,-13,32,32,-3,92,-44,-58,88,38,16,32,-76,119,-27,30,-3,-3,-13,-8,36,127,-14,-111,-8,73,1,-60,-26,-3,48,33,15,22,6,47,-43,-45,4,34,33,-4,-5,72,93,52,-40,-17,-35,55,-46,-98,-63,74,72,41,28,66,2,14,-45,107,-67,-19,18,-16,-4,-33,-44,-8,2,-10,-6,-37,32,39,-1,40,16,61,70,38,40,18,-86,40,20,1,-51,39,28,47,-15,-40,-3,-63,-29,28,15,-56,40,68,-61,-87,41,-68,44,5,-11,28,26,-16,30,77,-14,-12,-61,15,92,-19,78,-19,3,15,-37,-21,-26,14,-56,-83,15,-16,5,13,57,-29,-68,-80,-24,48,28,-39,5,-42,37,49,67,-21,21,-31,2,59,14,54,28,-77,43,61,-64,-8,16,25,54,-17,-19,-36,-23,22,7,-95,74,66,64,-81,58,2,-32,-8,-13,-41,-17,-36,-82,-46,-29,-3,-20,38,-47,8,-14,-34,13,-19,7,12,8,-15,13,3,-77,-92,-21,28,68,90,-18,94,55,-48,-28,19,-73,35,68,41,-46,15,60,32,21,-37,59,-38,17,-71,-1,-73,33,35,-95,64,-97,-18,46,-30,-98,-76,45,-39,-14,-73,22,27,-4,2,23,47,84,11,-81,-61,25,-10,-4,-16,-11,4,-69,-63,56,-29,-23,53,40,44,56,32,-10,-52,30,17,-24,-19,-32,-73,59,63,52,-14,-43,-25,-55,-31,-8,95,-6,76,-43,24,93, /* [22][0][][] */ -17,51,27,-41,-27,63,34,-12,-12,7,-29,-37,-48,2,-36,-33,-54,-54,-2,-20,47,0,-6,-21,-48,71,2,-25,-33,-43,-32,29,-52,42,-25,-33,13,-60,50,11,-44,88,-66,-15,-70,-54,16,36,-127,-22,-16,48,-23,-36,-33,-45,-72,-20,30,31,-34,35,-90,13,-18,26,50,-117,40,81,-13,-6,-10,-6,-11,12,-9,65,55,51,-17,63,-7,40,90,14,95,-48,42,15,30,-41,53,45,-81,33,8,-7,4,-15,-1,-38,-13,9,80,27,38,30,80,-19,-1,-18,51,34,14,10,-6,-3,125,-34,-15,21,45,-9,-6,9,33,-54,22,-2,15,-66,16,44,46,-11,-44,40,27,37,76,-49,-13,-14,79,24,10,-3,11,27,71,22,36,-12,-10,-58,-21,-38,11,70,42,23,41,-39,-51,10,18,-41,-32,20,45,5,-23,-2,82,15,-76,14,-69,-102,14,56,19,-11,23,-89,-38,40,12,-50,-8,-73,-19,2,48,21,-1,-36,-14,-28,38,-3,-7,57,8,-9,-12,9,61,-40,17,-34,15,9,-2,47,-110,-43,53,6,-12,8,-4,47,-95,23,23,-2,-30,-4,-26,-1,-39,1,14,-47,43,-15,11,-36,-29,-28,8,28,-30,20,-11,47,50,28,36,18,31,28,65,68,-3,63,22,-39,17,50,49,98,-109,68,59,66,-50,83,-36,20,0,25,69,77,10,-23,-21,-8,-41,48,22,65,75,40,25,-1,12,4,49,-1,-23,60,-24,31,-33,-28,42,-44,-39,48,0,-57,3,-42,-13,-17,-26,-44,-55,32,-91,17,38,34,79,-8,-62,-61,12,-68,86,13,55,109,44,12,26,18,44,40,-17,6,-18,-16, /* [23][0][][] */ 69,-29,10,-29,-44,-12,-14,61,42,-40,-24,78,-24,-22,1,106,-81,32,45,0,14,61,-17,5,11,95,-43,20,-50,-56,72,18,93,-28,5,-18,21,58,-57,-1,22,49,-52,23,-33,1,-16,-23,-51,-6,-68,58,20,-15,8,36,-56,39,25,-36,44,38,29,45,37,20,9,9,40,-17,16,-11,49,-19,-69,-52,13,-10,16,-29,-25,19,42,-28,68,49,-49,-44,27,25,-5,-9,-76,-33,3,-17,-27,54,47,-20,26,-61,-17,-92,4,6,39,-16,56,-51,-30,-18,13,-20,51,31,73,-23,41,-50,34,19,-87,-20,6,-33,54,73,-6,2,-10,-62,-49,-23,-66,-58,-40,-27,-45,-35,6,-11,-31,8,46,38,-37,32,-4,5,-61,70,-15,92,-9,-57,1,-71,-22,-33,-35,17,-73,32,-104,-7,-40,28,-86,-12,90,1,-72,5,18,68,-41,-127,44,-67,51,99,-6,23,-68,-6,24,-24,4,44,-27,-35,-54,26,16,31,-22,59,38,-30,42,-24,31,33,-16,30,80,72,-8,-34,48,75,27,74,-10,-30,32,-7,34,14,-68,-71,18,42,-100,25,22,-41,-42,-101,-59,21,-6,19,68,24,21,-24,53,46,-46,-1,-34,51,14,8,24,-21,-59,60,-25,-27,-22,32,-49,28,42,-28,17,20,-53,86,-94,16,-12,23,-44,-40,-21,12,49,57,11,-29,-67,42,-3,-39,35,61,35,-3,33,19,-22,-34,-6,57,-6,19,-32,-49,46,29,23,-79,85,33,-2,-3,49,30,11,30,69,11,56,-63,-3,43,33,-26,-35,-14,50,-4,-34,-14,-19,-4,25,-69,55,35,-2,-23,10,-74,-24,-2,4,19,10,-27,-8,12, /* [24][0][][] */ 5,-34,1,27,15,16,-13,-55,30,87,44,42,-30,-5,42,-33,-31,57,-50,-12,-13,-2,-94,-45,-28,-100,-77,-76,-9,-54,-111,-63,-70,41,45,30,-2,-7,-19,27,70,-1,-2,-37,38,-14,-69,-1,-13,-2,46,11,-65,-69,-36,-44,6,-53,3,17,45,-40,-11,-52,-7,-32,29,34,12,34,56,54,81,-33,95,-13,64,41,-36,-25,3,10,95,56,-81,19,9,-29,47,-55,43,-11,-3,46,107,79,17,-47,-13,66,59,-40,-12,18,-16,22,-26,-8,-3,61,-8,-33,44,-41,-2,69,12,9,-57,16,26,-53,-15,-64,58,-27,39,-30,-73,-11,9,7,-44,26,-16,75,1,47,12,36,54,-63,-17,-118,-2,-20,-15,-14,-37,44,62,14,12,-38,4,16,-13,52,-51,-82,15,-57,27,-31,-33,70,12,-61,41,61,-55,-37,11,-39,-58,-58,-23,-122,-60,-26,-58,-34,-34,-65,-46,39,96,-59,-55,52,-12,-29,-60,-49,0,47,-22,27,26,-26,-34,-28,-24,12,62,30,-63,22,-5,59,-75,27,-56,71,70,-127,67,61,8,-56,30,-19,-16,10,-49,63,10,6,-54,35,21,28,47,-25,-31,38,-25,44,-43,-17,49,-28,-4,3,4,34,-19,27,30,86,-42,110,114,13,30,-123,7,61,-37,8,81,-78,-40,-37,-18,26,99,14,100,68,0,26,13,10,46,60,-34,0,3,-7,79,96,-16,6,44,-24,-11,-77,35,-22,-3,-33,50,1,-21,44,60,36,56,63,0,5,-52,14,79,18,57,-1,-9,-31,-50,19,66,9,-26,-29,58,-27,36,9,14,-25,-16,80,7,20,88,8,4,39,-36,29,19,96,-22,-19, /* [25][0][][] */ 14,27,-20,-27,39,34,-15,-14,79,-64,5,60,-31,-31,-11,79,60,23,-45,43,-16,-36,79,127,65,-2,-10,22,-21,-68,-30,-30,-13,-41,-63,10,53,-104,-2,45,28,-68,52,32,79,70,-79,45,59,33,-15,-7,14,-31,-53,85,-2,-66,9,-38,26,47,-86,-31,28,11,-52,17,-23,56,36,-78,10,-42,46,31,-41,0,32,13,27,77,-46,-18,-27,88,5,37,-47,38,4,5,49,15,-12,-7,-13,95,-70,-39,-44,-53,-60,-62,-22,59,5,79,7,-22,-5,40,10,-41,-41,-51,-63,21,2,0,33,51,2,20,-5,96,13,-40,-3,15,-4,114,4,-39,42,35,92,-41,28,-37,-55,-92,-90,76,-96,-58,-19,5,-6,-63,-52,25,-28,-47,-1,12,74,15,-49,-23,78,-26,-32,4,-75,-51,70,49,-66,-58,-37,-62,-18,-19,38,47,-105,-27,-11,14,-9,-76,2,-23,-14,115,-37,22,-62,30,14,18,122,61,-74,14,32,-73,-5,-6,-60,52,84,58,-29,-14,89,2,12,-28,26,13,79,40,49,-2,6,-33,-9,21,30,-31,-39,-26,17,-17,22,-19,-41,74,-48,0,-56,-74,33,41,-41,37,-26,35,-46,-16,40,29,-35,56,46,36,-37,125,-39,-66,14,27,-27,-26,67,-41,-64,5,36,44,70,41,-3,-41,22,-36,47,-18,-47,-41,-35,30,-15,54,-76,17,-83,36,-5,10,1,-41,-3,-61,-28,13,-34,-38,35,-59,5,-65,-27,-72,58,19,4,-21,30,-57,17,-26,-78,72,23,-31,-30,-45,2,-2,-118,20,37,-69,-10,41,8,72,-31,-17,-30,-19,48,-43,26,-82,-23,37,-35,-35,-6,-87,-23,-52, /* [26][0][][] */ 20,42,1,-19,6,8,-44,-52,42,-26,-23,-47,-50,9,-9,24,-16,28,-7,-15,23,-35,32,35,-29,-11,1,-4,14,26,-28,80,-13,7,48,-44,-16,28,-49,-1,7,-45,19,-24,19,-15,-36,-4,61,-6,9,57,45,28,-77,-29,-41,16,-37,-127,75,-15,-60,-30,-59,-27,-60,11,-31,4,-1,16,-51,60,-18,5,1,-29,-34,-14,-23,-66,36,21,-49,10,66,-4,42,-57,-73,50,-1,-19,20,-78,31,-40,-53,-1,-64,63,6,24,-16,-33,98,-40,-32,-63,-17,0,42,11,-27,0,-15,61,-4,8,16,-36,-16,13,7,31,-13,-10,50,1,-42,-49,30,-23,-66,29,25,-30,-44,-46,-24,-52,-34,-47,46,-87,1,25,11,-37,34,58,61,-50,-26,7,-44,-66,-30,-33,-32,19,15,-55,43,-10,18,-104,24,-29,-2,2,-6,-67,43,23,-23,7,33,0,-45,18,-16,-22,20,31,7,9,-29,-11,45,80,71,-34,-77,35,-33,68,-21,23,-23,-49,-5,-41,2,-74,47,10,17,-11,28,-5,-65,27,66,-72,-2,-72,-8,16,-9,22,20,-53,15,-39,-17,-61,-28,-79,-43,18,6,-18,-38,41,5,13,-42,-48,52,-93,68,16,-1,-36,-60,-21,-21,19,0,36,49,-40,-20,26,-83,-7,-63,-34,-12,20,16,-8,16,25,19,-11,-6,-17,-31,23,-44,45,15,-59,9,-14,-26,-2,-4,2,53,-16,-10,20,-16,15,18,-3,-1,-107,-21,-22,-67,-21,-24,-22,-27,64,58,-50,-31,-50,29,-63,-41,-4,-8,-17,47,37,40,-16,27,-7,39,-93,20,44,7,9,20,48,-35,11,32,-42,23,31,8,32,21,-21,7,-29, /* [27][0][][] */ 8,23,-14,-55,60,31,-11,-79,6,-52,-127,91,-39,35,-86,-36,-17,0,3,-41,-29,37,77,-6,-10,35,21,-74,66,14,-4,-2,66,-28,78,56,9,-54,2,-85,39,-28,70,-8,-76,-90,56,-5,-3,7,30,5,-17,-99,60,-4,-56,-5,-5,-58,57,24,-45,-2,-30,96,-4,-25,-35,4,34,-65,-7,-17,25,-19,69,10,-77,6,-51,14,20,-6,27,-8,-24,30,16,-24,32,15,16,-15,-50,-49,28,-31,-69,-43,-23,15,-25,-35,37,8,-43,79,45,-74,21,-79,-46,6,-1,-20,5,9,-96,-58,16,37,45,13,24,105,2,-30,-6,1,12,-13,-42,-33,6,-8,28,17,-48,-10,35,-56,-28,-83,-57,79,-44,44,46,-29,-10,41,-51,-64,-70,-19,17,7,34,-3,-25,-6,-21,-73,21,17,49,73,-56,-32,-44,68,16,-19,-19,-28,46,9,-8,-35,-60,-11,15,-14,31,-66,76,78,-34,15,-7,7,39,-44,24,40,-12,55,-113,-23,42,16,2,25,-104,-36,10,-34,60,40,-32,110,-3,-62,-42,53,-35,-16,-45,17,26,49,65,45,95,2,-43,67,-42,-14,98,-21,-44,-15,-8,-69,-1,-29,-29,9,-27,-36,-10,-37,7,7,-65,-65,-10,-11,-46,21,-30,50,-66,44,-19,37,38,37,-38,41,87,23,-79,43,50,4,-11,22,71,-61,-13,-49,-25,-38,13,-12,20,52,38,-17,52,51,-30,-10,68,-33,-80,-47,28,-9,22,17,-52,-38,-15,-37,10,-13,-13,58,-44,17,-34,53,2,-25,-25,16,45,77,49,44,-36,-27,-40,5,7,-44,30,11,8,-1,12,-25,33,-39,16,84,75,38,21,14,10,-117, /* [28][0][][] */ -63,-15,-77,-10,-19,57,32,-29,96,-19,-32,-4,-5,80,55,-13,-70,-33,47,19,-57,37,59,8,-32,8,-2,-42,10,7,97,13,13,27,67,-35,-33,13,-42,74,22,105,54,52,43,17,22,37,-35,16,50,-19,56,2,-1,-48,-51,50,-7,-60,-16,19,51,31,-9,-16,-11,41,-45,27,-3,-70,59,0,53,3,27,73,10,-9,28,-42,-44,32,12,53,81,-3,-15,10,41,63,76,35,88,-53,43,26,30,26,-18,5,27,-4,-13,-18,4,22,55,45,-33,-30,77,-82,15,66,17,-25,-47,48,112,-29,-39,34,-14,-57,61,66,-83,41,-36,49,-48,69,42,87,22,68,-2,-24,-5,-32,-36,13,11,79,50,-1,4,-32,28,-56,-13,-3,-30,-25,5,-22,-25,-37,-35,-2,-7,-33,15,-13,-29,57,-30,49,91,4,30,-24,-72,16,4,-44,96,-9,-6,72,34,-50,13,37,-12,20,61,6,14,20,-49,13,-26,-37,7,25,-2,0,3,37,-65,8,70,46,4,-17,-46,17,-15,56,20,-26,4,4,11,49,-26,6,17,-13,-24,-24,17,7,-39,108,7,-38,-27,-20,-42,-49,-75,20,-1,-5,-4,-45,2,-19,-13,54,21,13,19,-29,4,1,-35,-6,-37,35,-32,31,6,-49,-39,-5,29,78,-19,-8,50,-22,-25,59,-31,-18,-41,27,-18,-10,23,-50,4,20,38,61,19,-59,95,-24,55,12,25,-6,-4,-31,-1,-84,-14,-19,23,50,18,-34,50,58,-76,-30,10,-59,20,-76,50,5,16,71,15,127,27,-26,63,-43,45,-63,19,30,20,3,66,-35,-14,-24,-13,38,53,57,-35,19,7,33,34,-9, /* [29][0][][] */ -46,23,59,56,-43,22,-21,-52,-49,47,-43,65,-16,-12,-88,26,-7,-5,-70,-9,40,-100,-93,-12,10,-15,64,2,8,-8,-2,-31,-30,11,-84,-87,-37,-58,-22,-22,67,11,50,-56,31,65,-9,-12,61,70,-47,-47,31,0,-15,51,24,-16,21,-44,27,52,-69,72,1,-45,75,32,40,-40,-3,22,2,56,-34,52,77,-8,8,-13,-1,52,52,62,-60,16,82,-46,20,-85,-45,23,16,31,3,-65,43,13,35,47,-98,-34,-15,39,-22,24,37,96,-31,12,38,-28,-38,3,-25,63,38,-46,13,17,-26,15,8,-9,78,13,-10,-17,45,-101,2,17,-23,62,45,26,1,24,-103,3,-4,70,-16,-26,-51,19,40,76,66,1,25,-50,9,2,22,-87,-31,-79,97,2,-4,47,-14,-83,13,-76,-19,64,24,15,111,15,76,-50,6,-20,-27,40,72,39,-3,14,2,40,-52,-8,16,-10,-6,-8,22,-44,-83,73,-8,30,-49,57,-3,-44,-24,-3,19,16,32,47,96,-18,8,54,-48,62,-28,3,-103,33,-6,-106,3,36,-34,-26,97,-14,64,-12,30,4,-12,-29,56,-50,-52,57,23,60,68,-1,-54,20,5,-17,-79,70,-69,-70,-17,78,33,-82,-39,-100,-78,-32,24,13,1,-28,2,-19,-4,-127,72,-41,-56,-34,17,-41,-16,-66,-36,3,-9,-24,-20,4,52,-55,-77,49,-124,19,-25,9,47,7,-23,-22,-9,-78,35,10,28,-4,-100,11,5,-17,28,74,9,-46,-17,21,-58,41,-43,-19,49,27,-48,-21,-55,-45,-36,-39,36,23,-66,32,-108,-3,29,42,9,-47,-89,32,-17,-4,7,26,-73,65,10,-43, /* [30][0][][] */ -7,9,-43,-23,-29,-49,-33,45,-47,-21,55,-20,-10,-6,-84,-31,-39,-37,72,17,7,-98,39,52,-44,-26,14,30,-31,12,-30,30,-52,45,38,-33,3,28,-7,-2,-28,-75,-30,-6,-36,6,6,32,21,29,35,33,1,9,24,-4,5,42,59,-127,-75,51,-24,82,-21,8,-10,-12,-71,46,-44,-50,42,-35,63,-37,-5,61,-23,34,-9,47,12,-17,3,54,36,-42,-24,29,-45,-26,64,11,23,-27,29,-11,35,45,-54,10,-25,-28,13,2,65,34,-40,63,63,45,-11,6,19,-3,-33,-45,-4,-56,-8,-16,0,-22,-10,15,33,-17,17,-39,-27,-17,-19,65,49,-17,-2,58,-19,55,-7,-66,-67,2,34,-46,-42,9,6,-37,33,17,-15,-35,10,-39,29,-22,-27,-36,78,12,-1,-73,11,-67,13,-41,12,-47,10,-61,-49,28,23,-21,-9,46,10,0,-68,-34,-44,11,5,4,7,55,-35,67,27,-8,1,-16,22,15,-31,55,-38,15,4,55,71,-58,-23,-63,46,-58,-15,48,-37,-19,-78,24,-26,-21,68,-20,27,-37,-27,23,-64,19,-25,-2,85,20,61,-9,32,-1,35,32,10,-6,24,45,-27,11,11,14,-31,35,42,-26,-54,-8,-9,70,-25,-24,-11,8,44,-1,45,31,-2,-8,-9,-28,-53,-31,37,50,-69,55,-63,19,-3,-17,-6,91,25,30,-12,2,-47,10,15,-30,-42,-74,82,46,12,19,28,-18,63,-96,50,24,16,19,-4,-60,24,49,-19,-8,34,9,10,-71,-16,20,-35,-32,-9,45,-10,-39,11,1,-35,0,48,-65,-5,42,21,-66,-35,-6,66,-71,-113,23,-4,-36,19,13,-31,6, /* [31][0][][] */ -15,22,44,-36,77,-78,-27,41,9,-8,11,106,78,77,-25,1,-31,8,89,-2,-36,-31,35,-113,-20,7,55,31,13,15,-54,18,102,37,-41,-52,68,-76,-32,36,-36,23,-9,-95,53,13,31,63,22,33,38,40,40,-77,61,14,49,20,35,-47,-68,-31,78,37,-21,-87,11,-31,39,10,-11,34,-30,2,40,-1,40,-41,25,-66,-10,-6,23,17,-117,23,-64,-62,-38,44,32,19,-38,77,44,25,34,-1,5,-67,-3,30,16,-36,79,19,17,68,15,11,-97,-11,-41,-2,28,-27,3,-2,-52,-6,20,9,-11,-23,-29,-51,-76,-41,42,-3,24,-9,40,48,-7,-71,86,53,-20,117,67,-49,-46,2,-9,-52,15,-16,29,30,69,20,-61,54,-40,-52,-7,9,35,-44,3,-81,-23,-14,58,-44,-26,-27,-1,-10,25,-21,-48,-48,-21,-54,48,-6,-41,-34,-26,-28,43,-11,-41,-25,-34,80,15,-7,-25,1,48,-51,39,34,-30,-56,-50,68,3,-5,-23,-15,24,-43,44,-87,-18,-82,34,42,82,-3,42,-5,-6,-7,-69,40,59,-6,71,-48,71,3,-31,27,-14,-17,5,61,-11,-40,-1,2,-47,75,127,69,-26,26,76,26,72,-33,-109,-35,-32,28,102,-24,8,-1,13,18,-39,-15,17,-60,-84,-28,-22,24,-61,26,-9,47,5,-23,41,54,4,-63,4,-78,41,-10,21,-9,1,-10,9,3,-90,8,4,-50,40,27,93,-84,1,13,-32,-21,-4,-35,8,-90,44,-74,84,-7,-8,-18,-20,-3,22,0,7,7,16,-26,1,-94,-31,-35,45,82,-3,9,9,-2,-73,-6,-25,-58,43,42,-1,26,-5,44,25,-30, /* [32][0][][] */ -3,62,35,11,15,-12,-17,12,29,24,-50,-12,49,-7,-7,-91,18,-4,-34,24,-21,-8,-2,-20,-22,32,53,-53,-4,62,-43,-93,8,15,-46,28,12,8,9,6,-71,-85,52,-25,31,55,65,-36,-25,4,-23,-48,0,57,-22,-1,-18,61,17,51,3,-46,91,0,-24,73,53,-84,20,-19,34,-5,-4,-4,40,-8,2,2,44,30,90,-28,7,-40,35,-15,54,-20,-97,-6,-30,-35,-51,21,-11,-44,-28,13,-12,-51,-65,59,24,0,22,-4,1,-8,27,-54,-24,15,58,-2,-7,61,42,-47,71,4,-53,10,-29,-65,-39,-42,-39,0,58,-65,-13,31,-52,31,5,-52,-127,-84,-4,-2,-21,-28,-42,-84,-3,-4,2,-24,29,-24,39,-55,-7,-4,12,40,-14,76,41,-22,48,-69,-73,-98,9,17,-17,-10,-19,49,43,47,32,90,20,-1,12,-37,-48,57,-63,-10,-26,-57,-47,-49,4,-7,6,-13,49,-16,30,-80,11,-10,44,-2,-36,21,10,21,-44,12,-47,-49,19,-24,-12,31,46,15,38,52,-2,-25,3,44,-44,31,2,3,41,17,-31,28,-2,17,-31,-7,18,62,54,-11,5,-48,-52,18,-11,-1,-35,17,68,61,9,-9,-17,5,-80,-86,-93,83,67,29,33,37,3,6,-19,-49,-43,3,25,-33,-27,-20,-3,-8,34,39,43,-1,-13,-43,57,28,-32,-54,38,-4,-26,-14,1,-15,-12,82,11,24,5,-63,21,45,56,21,-53,32,-57,59,63,-6,-19,18,-49,20,-21,11,45,3,-48,31,-48,-12,-31,-46,32,-13,113,-26,23,78,17,-62,37,-6,28,11,-19,-4,65,11,12,19,-41,-31,42,8, /* [33][0][][] */ -51,57,-57,11,-54,-37,43,0,-37,-1,55,46,17,-39,-5,6,-40,-40,108,-52,-19,10,-52,6,-44,28,-27,-45,37,-32,-67,-66,-21,59,47,-25,-12,-9,-27,49,-26,-8,-32,36,-18,-25,-10,89,56,13,50,-2,74,-3,-25,-3,34,10,-51,24,-35,0,8,24,-14,47,29,8,-3,-21,52,44,22,-4,-7,5,-65,19,-34,42,-19,42,-58,-45,-50,83,-8,1,2,-55,-16,17,-19,35,-18,-22,-47,23,80,-32,4,-16,38,-36,54,5,50,34,8,-12,41,-46,54,47,51,-68,-55,18,-56,13,0,38,-2,-5,-44,-23,61,10,28,-12,3,31,-45,-26,-16,20,-10,-37,-5,3,15,-18,29,43,-19,-34,33,-20,-63,39,16,-43,30,32,-33,57,12,-25,63,-22,43,-86,16,-87,-25,32,22,-42,10,20,21,-40,23,-2,-31,-76,41,-90,-27,-75,-20,-24,54,37,-41,31,-70,60,-30,42,-30,57,14,-5,32,19,27,59,-36,4,-20,-49,37,13,-39,-23,-6,-56,-1,22,77,-11,69,71,23,2,51,54,3,4,27,12,-30,-5,-5,3,27,-20,32,-50,63,23,-49,6,53,-5,-67,0,54,12,46,27,2,-17,21,32,0,-20,56,-17,29,7,2,-15,37,22,28,9,1,23,32,-27,-30,-20,10,29,51,-5,-28,1,52,57,25,-40,33,11,1,-17,35,-13,2,-3,-48,22,6,62,0,-89,-61,-55,22,4,15,14,25,-1,-40,40,-43,-87,-13,26,4,11,-45,-64,9,37,-1,9,-47,54,-11,69,-127,-50,-29,-32,-10,46,69,29,48,-2,11,-18,-95,-52,17,-21,-39,-3,-61,-39,-2,-29, /* [34][0][][] */ -9,13,-40,-9,-7,65,59,8,-50,-55,55,-6,27,-70,68,54,57,4,-18,0,8,-65,-69,53,-75,26,29,-22,-52,-7,13,-5,-1,-19,46,-21,-20,-15,-8,-24,-27,-17,11,21,60,56,-31,81,-26,15,-21,34,1,47,7,-1,-38,14,-41,-107,11,-1,33,-12,-7,19,14,5,-8,-4,-52,-39,-64,25,41,53,-17,-1,-7,82,-23,23,14,88,-11,69,11,31,-16,66,-39,-65,2,35,41,-59,-16,22,-57,33,-26,-13,15,11,71,88,-50,-40,41,-1,-39,-44,-18,44,-61,-47,15,24,10,-1,-12,-77,-61,20,9,63,53,-22,-42,0,-30,10,-23,32,-17,-14,2,31,-4,-53,-14,-54,15,-69,46,15,-78,-8,-20,15,29,-17,-18,-7,-6,-61,23,-3,43,-23,-9,10,7,-30,31,-59,36,41,-3,-22,31,15,12,32,28,1,60,-24,-45,31,34,31,35,-33,-1,28,-36,-7,-79,42,-11,73,19,16,-37,5,27,-44,21,-28,-9,9,-33,-3,47,-24,6,-17,2,-44,10,56,-29,1,22,43,39,20,-82,-92,-23,-11,-16,0,28,-23,-36,57,6,-8,-31,-57,20,-13,-69,14,-51,-63,15,10,47,-9,-6,-5,38,-64,-38,-32,-26,-14,2,-42,1,-39,-40,-15,50,-29,67,-45,-17,2,24,0,12,17,55,-64,-24,-17,-11,67,-12,1,20,-13,17,17,13,-18,-1,5,-13,32,37,28,-92,28,-12,-26,26,-127,3,-28,7,37,31,17,5,-30,-15,25,40,-15,7,-15,52,23,60,35,42,45,-3,-76,14,-44,6,53,10,-13,20,24,1,7,-36,-39,-12,20,-20,-106,1,-101,-44,-7,-28,-11, /* [35][0][][] */ 15,56,-37,-54,-45,-6,111,-26,-80,68,40,-15,-55,-31,34,40,-50,2,56,86,115,-86,14,35,50,-53,-85,68,-29,-33,-20,17,21,51,93,-31,111,-39,-13,-44,-34,-24,-9,-81,-40,88,-27,-80,66,19,66,-8,14,-65,-50,15,71,-60,41,50,19,1,-6,49,2,20,36,-50,8,12,28,-4,20,-36,-18,22,1,-121,58,-28,-11,-58,21,2,18,31,-118,46,-9,22,-30,-63,68,0,46,43,35,36,66,-11,-19,82,-24,-31,-25,15,41,-15,-49,-48,93,34,-18,1,-4,-26,33,-21,-29,-50,-12,-44,12,10,-101,-35,-26,-65,21,-31,11,24,6,-25,-19,-4,-36,0,-23,-55,-82,70,-21,-2,33,23,-32,13,38,-27,77,-38,-12,10,92,-32,-21,17,38,-13,-18,52,19,-15,24,34,-46,29,-49,8,-3,10,54,-80,-45,42,11,-65,-24,-54,52,-71,55,17,33,-54,-19,-37,11,-43,47,40,-66,-5,8,72,58,-37,8,-21,-11,-105,73,-45,-13,7,-30,-19,11,-39,-81,40,-44,3,-42,39,-85,18,-15,79,33,-59,66,-34,-43,7,-20,-41,-65,-12,-47,48,-64,-1,59,-63,17,-71,22,-9,-23,-24,37,-50,-58,-12,28,-42,-4,18,-15,30,21,-53,-66,-33,71,-3,54,29,67,-35,-63,-9,-36,-43,-26,10,27,4,-10,54,-53,-27,9,49,2,56,-8,-31,-11,-16,-33,-7,-73,-70,-42,48,-81,-38,10,-17,40,44,28,-16,-34,10,-35,47,107,-47,-114,114,-27,78,-7,-33,-12,-77,-49,19,62,-11,28,-127,-6,26,-8,41,44,25,-40,8,-37,-50,11,-75,-27,-27,-48,19,-5,-5,10,2, /* [36][0][][] */ 73,48,-58,-47,9,-18,-58,11,57,-31,44,-23,28,-60,55,-33,-22,-61,-30,-28,-7,42,37,3,-3,22,-33,46,13,7,-24,-15,-17,26,4,1,-45,13,-18,-38,64,-29,-57,9,-22,68,-40,-77,-29,-51,-71,-27,70,-26,38,34,-53,16,-37,-126,43,-18,31,-13,2,30,81,-79,-77,-8,33,-46,-1,37,24,-33,8,13,-16,-37,-20,46,-47,-9,46,5,-41,-22,55,-64,-30,24,60,-20,13,-34,-7,-46,-34,20,1,5,-39,-8,8,-76,12,22,-30,56,-52,-14,-28,-6,-31,-23,-34,95,-51,8,31,-43,30,94,15,-33,-31,41,-76,-1,-30,-13,-70,51,-73,7,25,-38,21,-28,37,-66,34,-38,64,26,-28,-20,-70,37,-39,-5,70,41,15,-34,79,-43,47,-79,1,-8,-36,33,-9,7,-10,79,37,41,-29,3,65,38,32,-29,-24,-45,22,-3,23,18,6,13,-13,-46,72,54,-33,-3,19,-9,53,-8,14,-41,31,6,19,-64,-29,-27,-39,74,12,-16,-46,-25,13,25,-21,-23,-86,23,2,17,25,28,-18,-48,52,-39,39,-2,0,30,-23,58,-17,25,-67,9,-39,-45,-31,-33,19,-23,36,8,106,-17,-55,76,55,4,-1,2,28,4,-2,-26,-62,-14,16,-1,-22,-35,-6,53,50,-32,-6,12,-16,3,56,-28,23,-31,19,-2,-37,-40,-35,-84,25,-42,-40,25,21,41,42,-20,49,27,-15,16,-26,-35,-10,-127,66,-110,-36,-5,-84,-5,7,-59,44,29,17,36,26,-86,6,-61,27,-80,-11,1,-42,8,-58,72,36,-39,-10,19,7,44,-62,-16,67,-21,16,43,-56,-6,-58,-118,11,32,-9,-26, /* [37][0][][] */ 6,18,39,-13,20,-42,43,-102,-13,-12,63,31,9,-12,-16,-29,-45,-13,-4,38,36,-28,30,-31,3,16,-24,-1,28,14,-36,-32,-9,-19,-14,32,-61,7,-8,38,-42,-40,-15,66,-3,-14,-44,-5,-3,-19,26,8,0,45,-8,-36,-21,-11,-7,-43,-11,33,79,-10,-20,41,-13,20,-8,33,12,36,15,7,-39,0,58,15,-20,-18,26,53,13,-19,-19,6,-8,-38,-5,31,-64,3,-51,1,7,31,-32,-8,-60,16,17,89,67,-81,-25,25,33,-21,-12,-18,34,11,27,-5,6,10,-39,-38,-26,42,-12,23,20,-15,-42,18,-41,25,-7,8,-30,-9,60,1,6,-24,-1,-35,-34,-18,-8,13,16,-24,11,8,-51,-22,16,34,81,16,-17,8,-12,11,-127,-11,32,-6,46,34,-39,-56,-7,35,57,4,55,2,18,60,-26,-24,25,-46,0,-21,35,-41,8,-12,-22,-14,10,-25,-15,-1,18,59,-23,15,-53,-5,-53,23,61,48,37,-17,1,-1,-38,19,-24,-58,-66,36,-55,-25,-11,-15,83,67,-17,-36,57,34,16,-19,-66,-36,-56,9,10,-16,-1,43,27,20,28,0,18,-18,18,-44,-12,-38,9,68,-23,-31,17,71,21,39,-9,-36,-12,39,-44,-9,-63,2,40,40,25,13,70,-4,30,24,1,-36,-2,18,-48,10,-50,-71,50,2,14,-49,32,-15,-69,57,-1,9,-3,27,26,10,3,19,7,45,-41,-2,-60,20,23,5,-25,-17,-1,6,-6,50,-21,-12,14,50,40,-4,80,-27,-80,-21,-38,-15,-10,-48,33,78,49,-8,39,-25,7,-33,-7,-40,-13,91,-37,87,-11,-24,1,22,-17,57,-32,24, /* [38][0][][] */ 87,-35,39,-89,-2,-12,-2,21,43,-45,34,-24,5,23,-1,-61,-9,28,40,14,-38,20,39,22,-27,-53,-2,-46,-13,-61,22,-47,24,123,85,117,-15,61,26,-36,-35,-28,26,-69,-53,11,-22,13,-72,71,44,90,37,14,75,39,-48,45,-30,-60,25,-19,7,-64,-34,18,18,8,0,-11,-59,46,-44,33,56,-53,-3,42,25,54,52,-47,53,-39,61,17,-18,3,-1,-39,-5,-53,25,38,90,28,-32,64,-35,-36,65,-48,-10,-14,-112,-38,4,-53,-9,54,-41,-49,-22,-5,-88,-20,-17,-83,-67,90,-12,-21,-67,10,-1,-39,-73,76,6,-11,-55,-27,-36,109,-24,-98,12,40,5,25,28,-27,-15,-50,36,-26,-45,7,-36,-27,-48,-8,-51,67,-70,77,-6,37,-19,28,36,-15,-17,-8,-108,-23,-36,1,9,12,27,-10,17,-84,-5,-20,45,-17,25,-51,-12,-21,-89,-61,26,-35,-39,14,52,24,50,15,26,-89,-53,33,-30,24,27,13,9,-19,-27,-109,36,-96,70,-24,8,-14,-1,48,-15,-20,0,14,-19,36,-31,-62,-49,32,2,-23,-26,9,34,31,4,-56,29,-33,-67,-79,13,1,-19,5,6,-35,-2,-15,33,-87,-43,-42,1,24,12,27,30,15,70,7,-11,44,1,-12,10,46,-23,11,-3,12,-48,-95,-15,-38,-30,38,18,65,33,17,56,-17,32,82,56,11,-35,-43,16,40,-12,81,-1,9,-74,16,18,-28,23,-44,-22,19,-82,-22,-57,8,12,-47,16,15,7,38,-54,4,25,-56,-19,-74,91,-99,-50,-57,127,-24,-46,-1,-40,-7,-20,51,-26,64,9,29,-30,62,57,-87,51,36,-25,51, /* [39][0][][] */ 37,-34,-17,-17,11,5,-49,12,27,25,-27,32,-39,30,32,-12,-60,23,33,19,-37,-37,13,29,-10,-7,21,-15,1,-46,33,9,-55,-10,-24,-60,3,-29,-40,-7,-23,-30,20,7,-34,35,-9,-21,-3,-8,-33,-47,47,-7,-102,-38,-5,-75,-12,-19,23,-73,18,-19,-4,3,15,-24,50,-25,-69,-26,33,-24,7,24,51,-51,-50,-10,-47,-37,13,-13,-16,-30,-16,2,-43,19,44,-4,-24,-9,40,23,-46,-9,92,-27,52,10,-27,9,-23,11,43,-7,-37,-4,-29,-41,33,-44,59,15,1,-22,25,73,12,38,7,43,-33,-4,29,13,-17,39,2,14,-29,-25,-23,-43,-54,54,-5,37,-82,-5,-47,-35,-14,-9,-28,118,-31,-9,39,33,-74,8,-65,11,39,-27,11,-6,25,-41,12,-1,5,57,20,-43,-22,-26,-34,-5,46,29,-18,-33,-15,58,-62,-40,-14,-20,-3,-10,38,30,25,-39,-37,-30,36,6,-29,-5,35,5,-60,16,-51,62,-15,-26,-43,16,-14,-62,-2,-28,-2,23,8,-20,101,-11,26,-10,-40,0,-44,-6,-44,-66,19,27,-28,-35,-57,-23,-23,14,17,-25,25,46,-78,-61,8,29,24,-16,-41,32,7,56,16,-29,52,-28,11,18,31,24,45,40,-8,-67,22,-5,-41,11,-19,65,-45,-25,-89,-35,46,-7,34,29,-15,22,63,20,36,9,22,-24,-8,-127,28,-68,5,11,-17,29,-83,-30,-12,-37,-62,-30,25,21,71,-16,-47,27,-10,14,-17,-45,46,-8,-30,-8,-51,26,22,-34,14,49,-31,20,40,7,-22,-26,40,-33,-14,13,-4,21,15,-75,2,2,47,21,20,7,25,12,-14,-36, /* [40][0][][] */ 25,23,38,-64,-12,-90,-94,64,40,1,-35,-39,23,-69,-3,-39,7,-74,9,4,49,-16,2,27,-122,44,76,-81,17,42,-43,32,23,-62,33,13,-14,32,-67,-20,-25,-3,-54,43,-15,-21,9,-15,4,-9,74,56,33,92,-4,32,10,-39,-15,12,-15,61,-59,-4,33,9,-28,3,22,26,5,3,-54,120,-50,-3,-13,14,30,-43,17,30,-16,29,63,-40,35,-22,-17,58,34,40,-13,-30,5,18,16,-57,-4,-58,27,33,10,-44,33,-45,11,41,-74,-31,-13,-77,-1,76,-98,47,10,15,35,-76,-60,-121,-17,-70,-37,47,17,-40,4,-32,23,26,66,23,14,-16,18,-10,21,-14,96,-58,-43,40,-39,39,4,-4,43,33,0,-90,-18,-54,7,38,14,-37,7,-20,-54,22,-68,-25,-36,-119,10,-33,-93,37,4,-100,-16,32,-43,-6,-25,-16,6,15,32,-43,17,-63,-48,-39,-18,7,78,45,-21,-25,-5,-27,-38,-54,-56,94,34,-71,-61,99,-52,-21,-25,-47,77,-36,-16,-15,42,76,-23,-22,-8,-31,-24,51,0,22,15,-40,-20,-80,86,18,17,-28,-8,12,30,-91,-14,24,-101,70,84,-3,38,-24,-44,-29,-48,4,-39,-15,-37,24,-28,-60,-86,-22,17,23,10,-37,-1,-69,-22,11,-71,37,-86,30,-12,-26,-1,13,-1,21,19,121,2,18,-21,-35,-8,-62,-17,-14,-22,-28,-42,81,7,-127,-7,63,23,48,30,46,-62,-15,113,-18,-28,-77,55,-27,-50,-77,-22,44,-54,13,47,33,-102,77,-2,39,-23,-34,9,-3,-8,-39,17,-38,-42,-92,-9,-17,25,41,-7,-83,-15,-84,17,85,-27,24,30,-11, /* [41][0][][] */ 34,10,-55,37,11,23,14,-8,82,13,68,47,10,-14,51,32,-14,-33,67,-64,-11,-18,31,-66,-27,15,37,12,-30,-25,23,-48,-59,-9,10,8,19,-32,21,6,-16,-30,6,-9,32,33,55,-16,60,-39,17,18,2,-38,-66,-21,35,40,70,-9,30,-11,45,40,57,-16,3,-20,-16,45,-35,7,-41,48,-31,0,-8,-5,67,40,75,8,-2,-35,6,-35,19,63,-9,32,37,7,84,-26,-40,0,59,2,12,44,-6,-26,36,29,48,-42,54,-60,8,4,-2,32,18,127,27,-68,24,-5,71,47,-77,-37,-57,62,-18,-31,-60,-67,15,-110,-25,17,29,0,-42,-63,-71,-20,-14,-32,55,77,-82,-17,-18,8,-31,-72,47,-26,54,56,18,-12,-4,49,-26,-11,36,33,44,17,23,47,7,32,16,-9,3,-28,-29,-36,-39,-41,-23,15,1,29,-30,23,6,34,43,-21,59,4,43,-27,-11,59,41,3,23,-16,12,18,87,48,-17,-4,-45,46,18,51,24,-43,-10,-4,-51,9,-34,-39,15,-29,-2,-33,17,-45,14,62,6,-47,-6,-8,57,-17,32,41,-1,-5,89,-35,-12,-24,-10,-39,45,57,-56,52,7,65,11,-3,10,-59,-43,-83,-60,-56,25,69,-22,63,35,47,-14,-16,-1,-30,-8,-28,65,56,10,-50,35,-41,0,-24,-73,18,-53,-29,-43,-45,22,-1,6,-76,-43,6,-63,-3,-39,-85,-29,-48,19,70,-19,-43,-65,23,-26,-28,-60,-11,36,-5,11,-18,21,-20,5,74,46,-8,-33,70,-29,6,-16,-63,2,3,-73,6,-83,-47,6,-24,-75,-22,-62,-5,-1,-26,-16,-102,47,73,7,-30,55,12, /* [42][0][][] */ 66,-19,84,-126,62,-12,16,43,21,68,14,-7,41,20,-61,-14,54,71,59,-69,-5,-77,-39,-76,-9,71,-54,32,3,59,-52,-28,-31,48,-71,117,66,-43,121,-77,58,-28,44,-102,63,-8,-24,-17,19,-24,45,36,29,56,21,80,53,17,7,-3,37,26,-74,113,49,-35,32,-47,-28,-58,19,13,-81,1,5,34,-6,-43,61,-12,48,25,-50,40,17,-32,-76,50,52,48,35,57,53,-9,49,-47,-112,-23,99,-16,58,8,104,22,69,4,-20,-72,-42,-5,43,-28,29,18,72,-94,74,89,-14,49,81,2,-92,-51,-25,76,25,-36,63,-26,37,37,17,-15,11,58,-24,36,108,87,20,10,31,-70,-67,59,-29,21,-58,25,-50,-19,1,89,31,-4,105,16,34,-43,41,-6,-26,-62,-56,4,-12,-51,4,56,-63,77,56,16,34,-19,-67,-27,32,-4,-49,84,-46,70,0,-88,36,75,-46,-12,-41,58,23,-18,81,-4,-50,45,-26,80,72,-46,-93,45,-5,58,39,-57,-33,127,22,95,5,93,36,14,69,58,-46,-96,38,56,33,-9,22,7,52,-92,-11,-41,-49,-43,3,56,40,-74,83,59,-27,43,11,14,21,25,22,-16,53,-52,92,3,-32,-60,81,-37,-24,96,4,64,-17,-37,45,-41,-60,58,31,-20,-99,6,-11,-6,-1,1,-47,-81,-74,7,-7,0,68,37,-41,27,2,-14,-30,-79,12,-110,36,3,60,-23,-32,-36,19,40,-22,-70,-2,-3,-38,58,-43,43,-23,52,34,-10,10,102,-2,-25,79,-18,-40,-27,-49,-35,-28,-40,-32,-45,-16,35,-35,-8,-15,27,-19,-34,-89,-83,-45,-72,-28,93, /* [43][0][][] */ 25,41,-5,-76,14,-34,-41,83,13,-37,49,11,35,-7,-20,-4,-34,-30,-22,-30,34,-11,-64,63,-13,10,80,40,39,-31,-30,-53,-19,-83,-26,31,-10,-35,-53,7,-93,-5,-19,-25,-31,63,-65,74,73,88,51,-69,6,16,-67,19,-50,-16,-40,-20,16,-23,-1,-38,-57,35,102,-6,-78,-71,15,86,-32,-58,26,29,14,-91,-52,26,63,-90,-12,-43,30,-29,39,-61,14,52,51,-10,19,36,-48,-36,-57,-23,1,-17,25,-28,21,46,3,3,15,-14,-55,33,-49,-55,54,-9,48,-24,29,-33,3,68,50,8,49,-30,-52,10,26,7,-54,-23,-17,1,-16,84,67,-5,-2,-71,-51,7,38,-54,-1,-35,21,-44,22,47,-65,-101,64,-51,94,-32,-28,8,-35,-62,16,-9,16,36,32,0,74,-23,1,13,-5,18,-8,16,-125,-27,3,28,-42,-4,-14,9,-42,54,-91,47,14,-63,19,0,-16,4,-8,-47,-92,-35,-4,-19,-38,32,-5,0,-10,11,-65,-18,61,-18,-35,59,-21,-103,32,2,-54,-64,8,-5,-15,3,98,22,56,-8,55,12,107,45,-20,78,17,80,7,46,22,-14,59,33,19,8,-53,57,24,-8,-2,23,47,24,59,83,33,3,18,10,-42,-13,14,-63,55,9,-39,11,16,-11,-6,3,-17,-6,-16,32,5,-22,70,-22,4,25,39,-42,-37,-3,-60,62,4,-69,-54,26,-39,-40,-93,-60,47,83,2,-63,-47,96,103,16,27,-14,-49,-3,50,-66,39,-35,-23,39,-62,-39,11,-21,9,-127,11,-32,-14,82,60,27,5,-20,5,112,-10,-41,-30,-34,-37,-23,40,-18,24,-2,37,-1,11,-19, /* [44][0][][] */ -1,16,-17,-11,3,33,66,26,63,16,-51,-21,-3,-20,-24,-45,-53,20,-68,26,26,-39,-8,-21,-63,-22,7,44,42,-53,-11,31,68,7,31,31,32,32,-5,88,67,-50,-12,39,29,32,45,25,15,44,-17,-37,1,15,61,24,13,29,6,42,14,28,37,9,-49,-71,62,-2,-34,88,-64,26,22,40,-53,2,21,-58,-56,-48,-10,26,-32,81,-34,-29,74,-10,-60,-72,3,15,-39,2,45,-20,4,31,-47,26,30,-3,24,76,18,82,8,-51,-14,-31,-36,38,-64,1,-13,30,24,-17,11,-54,-37,-1,-27,92,-64,-2,32,-70,-18,-18,-35,-11,-61,20,-40,105,-12,45,-9,10,-40,-32,-2,-3,-21,-72,24,-19,62,-25,16,-59,13,36,-31,61,-18,3,77,-41,-50,-57,-53,-64,-43,40,-62,-24,-37,-39,-14,-51,43,9,20,9,-3,56,127,47,28,92,-61,-38,49,-47,68,71,-61,32,-47,5,-1,5,-10,-37,13,-28,27,8,-52,-27,5,-15,-30,12,-5,61,-27,-32,-6,16,-6,72,0,13,-91,-17,44,-34,-47,-22,0,77,-16,30,9,-24,-9,-30,-73,-10,-21,-19,-15,119,-12,17,-123,-50,58,6,31,6,-67,-59,49,-52,-20,-14,-53,-52,-20,-69,14,-8,-58,86,-33,46,28,2,-8,-24,-52,31,-21,17,-41,41,20,-99,5,-35,-37,35,35,95,6,32,-2,66,21,21,-32,50,47,3,-21,-28,-2,-44,3,8,13,-18,38,-23,-20,3,2,-28,-48,63,-8,33,-48,-6,-5,65,37,-56,18,38,7,-33,-28,-59,16,-10,4,-11,10,-27,8,-3,-22,24,-22,-23,37,33,14,-38,74,-59, /* [45][0][][] */ 109,13,48,55,67,20,-38,-50,68,15,1,27,-13,-66,2,-53,-29,-49,36,48,-16,-15,-21,-14,-36,-28,49,8,57,-27,-61,-107,-2,48,55,75,-50,-31,65,-34,20,-40,-58,50,-14,-8,-68,31,1,47,73,98,-30,-51,46,-25,38,49,68,-20,-28,-49,58,13,83,-9,-15,-73,-15,31,4,-49,-68,-55,-23,4,0,7,53,-45,28,66,29,23,-19,51,-30,-61,11,16,47,78,-2,5,-34,-29,67,-28,-6,18,-38,-1,4,9,37,-14,-68,10,9,-14,-36,15,-51,89,-11,9,-21,70,24,-61,-2,66,-52,-66,-51,105,-96,65,34,-38,-15,35,47,-68,8,1,-17,33,26,5,1,-53,22,-31,11,-49,49,-1,35,6,63,-32,-74,16,-14,-51,-22,19,84,25,11,-30,44,-22,2,-26,56,-41,-4,-23,2,24,-84,48,57,55,32,67,48,1,-41,-7,34,9,81,-49,70,-5,-12,-60,104,-53,88,30,31,28,31,-43,-42,-5,-61,1,36,-22,72,-22,-34,-29,-71,-14,-59,-2,-59,-46,48,-1,39,8,-86,0,-23,-36,14,0,-10,-24,-1,-86,-21,-3,3,-25,41,-31,-61,16,27,23,6,6,-31,49,-7,19,-26,5,22,3,-43,-24,114,-70,61,57,36,-88,47,33,-17,-8,-25,59,-26,39,-1,-47,-55,-103,-16,14,22,127,-85,-53,37,13,-10,-15,37,39,-37,-5,-9,26,-116,75,-11,-3,32,-82,32,2,-45,25,83,31,-87,-8,29,9,9,112,13,26,48,26,15,50,25,59,60,50,-32,-29,36,106,-18,56,95,18,-22,74,-34,-42,20,-46,21,100,50,6,-31,-16,-47,-61,57,-68, /* [46][0][][] */ 7,-9,43,-25,64,73,47,-20,31,29,-25,67,-16,-10,26,6,-75,30,-26,60,50,-4,-34,-25,-83,-10,30,-52,-8,-27,-16,-11,-25,-28,127,-1,-19,-24,39,17,25,21,-38,-19,-21,-10,-18,109,80,66,-9,22,0,-49,55,10,-7,90,-58,-51,48,35,-10,-79,-7,44,-40,-7,25,-13,-8,-28,-62,16,-13,11,78,-24,-44,-49,-66,-24,4,55,54,42,33,-23,10,43,-19,-34,-8,79,26,66,-15,7,-1,-56,-5,43,-7,-46,31,-26,96,-35,-37,4,-24,39,76,3,-15,-54,-14,24,-57,10,56,-69,-54,-73,35,-26,-60,88,-68,-28,-29,11,23,10,29,44,40,-40,6,-55,-9,-13,-3,-27,43,9,2,-31,-60,38,2,-50,24,-47,-50,-40,32,-37,18,-34,-73,7,6,-66,-12,46,40,-25,-44,-15,73,9,-1,-41,-7,-37,11,93,-94,36,-42,3,-20,2,20,-77,53,7,-85,-80,8,-122,-23,29,-6,12,-49,-29,-45,73,52,2,13,18,-50,-78,-11,18,-30,29,-9,12,-47,56,-5,28,-38,-48,-25,-39,-93,-3,31,-14,64,-74,24,-36,24,-10,11,-20,41,21,-15,-22,-42,7,-55,-39,-18,63,-28,39,7,-40,-30,-57,24,-2,-45,-86,-51,35,-8,-60,-24,22,-61,-55,22,-12,-1,-58,-17,39,44,-16,-61,-19,-2,-60,24,-20,63,19,-86,-20,15,10,-90,-6,4,70,-8,53,9,-18,-16,-19,0,-78,-8,10,-36,8,-73,5,-8,-48,40,-1,-27,-31,46,4,0,2,-42,-12,-52,20,22,12,36,8,-13,-10,92,45,-24,-34,-51,-60,31,65,-17,-60,-11,46,-20,20,20,18,30,24, /* [47][0][][] */ 23,-9,-18,28,-58,81,10,12,-36,-31,23,85,-14,-15,-16,108,-66,10,-2,-17,-36,-39,39,106,104,32,34,36,-41,19,-26,18,-50,-11,-33,-77,-58,40,-61,-10,68,14,-30,-21,-19,43,14,-19,12,-69,3,5,15,72,-6,56,1,35,-17,-2,78,40,-5,-41,-67,-71,29,-99,36,10,93,-7,80,-15,-7,13,26,24,13,21,26,58,-2,44,20,-8,45,53,-37,73,7,81,84,-37,-95,-16,50,-12,-46,25,25,-7,-121,-28,-21,24,-18,52,-5,2,32,81,71,13,41,-37,-62,-59,-35,1,-45,16,60,-77,-22,93,13,32,89,-3,-53,46,22,-87,39,39,-66,-63,-62,-46,46,33,-40,75,45,-6,-22,-101,-43,-39,38,41,88,1,44,-10,36,32,-41,-63,7,11,56,-8,38,90,36,57,21,-8,22,9,-48,56,33,63,-41,-37,15,-46,32,13,93,20,3,105,82,1,53,35,30,-5,-12,-41,39,6,6,43,-24,-97,36,68,49,81,24,-40,-1,-1,42,-48,-12,10,-14,-9,44,58,-52,83,-31,50,33,-18,-28,-13,-52,-112,16,-44,-33,-94,38,-25,41,-99,-19,37,30,-16,35,103,24,-21,6,-22,-127,-46,-17,-13,35,-54,34,11,-7,-38,23,76,102,54,28,-73,-12,-5,-29,51,32,-28,38,25,70,43,-8,11,39,-88,9,12,12,-84,27,43,7,79,-91,-78,32,47,-5,-39,7,-64,-9,39,-33,1,-32,-26,-50,-51,-69,-66,-22,-124,-4,-99,62,-46,2,67,78,-14,36,11,-42,1,28,0,-53,33,-23,5,-14,25,13,96,-43,49,53,61,-15,22,-17,-97,11,35,-9,23, /* [48][0][][] */ -58,48,76,-107,-31,-102,45,45,41,43,23,-38,17,37,32,-28,6,-9,-40,25,35,40,28,98,81,23,-55,-39,-78,59,-104,34,40,-6,-90,59,35,10,-64,5,43,-30,-50,19,-59,76,2,17,-59,13,103,-40,-2,101,-47,-35,-49,-41,-34,45,70,65,8,-35,-10,-42,-26,78,-40,16,-47,-4,-26,14,48,123,-68,31,36,-16,-93,-23,-20,46,34,2,48,72,3,11,-23,-19,13,-2,77,2,49,-44,69,-104,15,8,-12,79,57,20,-36,-10,-48,-3,3,-7,31,20,-8,-57,3,37,27,10,-27,42,-61,-9,-34,-127,118,-79,-18,-26,-30,-36,7,43,51,-81,8,17,0,-86,-18,57,-12,64,-48,32,-7,10,-11,44,-85,5,20,67,-46,-18,50,59,13,-19,10,-84,-29,12,6,29,-7,-75,-15,-38,-11,-50,-52,38,-49,5,-73,-26,-21,83,-45,71,-52,40,39,40,66,64,56,8,24,-69,16,-43,40,-54,91,-31,55,60,-4,28,-38,-24,61,10,68,-30,4,-30,16,-24,-75,57,-52,-64,6,-93,-7,102,-31,69,44,102,7,14,-48,72,-64,-37,-21,-11,40,33,6,-31,-16,43,109,19,11,24,-9,-62,-72,-7,-1,16,-32,-56,8,39,-66,56,24,-78,46,0,7,-27,33,-67,75,17,-28,-14,28,-31,12,-101,75,13,71,125,-44,53,-23,38,-45,62,-26,-47,-35,-10,-6,20,20,80,-8,-9,53,47,-21,24,-15,29,26,-4,-24,-47,0,-18,-61,-46,57,17,19,10,-17,20,-64,-3,-31,-46,-109,8,24,39,-20,55,89,-47,-48,100,-24,59,-73,-2,112,-61,31,17,-56,0,-13,-11, /* [49][0][][] */ 22,-11,22,24,-33,-67,-8,54,8,-11,-34,-32,-21,-62,23,12,-16,-50,-118,11,30,36,25,18,50,59,7,-17,29,62,114,-6,-77,-17,-7,82,-62,43,-28,-38,-26,-12,83,-44,-34,-71,-1,9,4,30,-1,23,31,-48,54,-35,-78,2,-46,-9,-24,-51,-56,-16,46,-6,13,-35,68,104,42,22,17,50,62,-23,7,-24,-14,9,-39,18,-61,-36,-27,-67,57,57,-3,73,67,-33,-4,-41,25,-44,-29,31,31,-47,-80,-32,23,47,45,22,5,-35,-32,-54,119,4,8,-22,-40,18,48,6,18,22,-12,-3,-15,-9,47,-44,-46,15,-127,28,46,-32,82,-7,-28,-11,25,4,41,-69,12,-75,-4,-63,35,-10,3,-62,-69,-5,-28,44,-32,-48,70,-23,48,40,85,-12,3,-35,-92,-3,7,102,85,-90,-69,-32,41,-88,9,-16,79,-44,-7,30,50,-21,64,-51,-35,-6,8,-25,-72,-42,23,-110,1,17,16,87,35,-15,-52,2,41,-12,0,34,-3,26,-27,5,33,8,-8,58,-8,-63,50,36,-21,-57,-69,38,66,63,-35,-18,45,-51,11,34,-68,-25,29,26,-16,-22,57,-47,-46,11,22,-98,80,37,-18,-33,-67,-64,-75,-21,32,58,77,-18,50,20,6,-5,38,18,11,-3,-2,87,55,-84,54,-26,-22,26,-23,-46,5,-46,53,-48,24,-74,88,21,-3,27,-14,8,46,12,-31,-5,35,30,-77,-59,-51,-24,32,-7,76,10,70,15,-10,71,41,-19,29,35,58,-109,-36,29,-52,-49,98,-2,92,-22,63,12,-40,-18,10,0,-10,33,38,0,-58,58,79,-34,-80,6,46,-72,-59,-20,-14,-18,24,35, /* [50][0][][] */ 73,-47,68,-82,-40,9,58,-91,45,46,27,101,32,100,24,75,9,-55,72,-89,65,11,-43,2,91,62,70,-22,88,-58,-27,-18,94,42,62,-10,-21,73,29,-66,-2,11,-57,70,38,6,-99,44,-91,27,-45,4,-2,-20,62,21,-2,26,-2,23,-38,40,70,48,-15,-127,-60,-53,25,1,-60,53,-44,-6,-36,30,-16,-19,-9,47,-37,-49,77,-27,42,-42,-37,33,58,-26,29,-30,17,3,8,6,-21,-8,-68,29,26,-4,36,-18,-32,17,24,26,45,-1,13,69,7,-70,53,15,10,-12,29,-26,42,57,46,-74,60,55,14,-11,-6,6,-22,-29,72,-38,40,-76,8,-55,4,-51,-87,-13,0,3,-33,-35,0,62,-57,-13,19,-63,5,102,-21,18,96,-20,87,32,-41,-51,-75,-43,9,36,17,-16,-51,-36,1,26,-37,47,-40,-25,24,32,-4,-31,64,-16,24,-15,32,24,-33,-37,-16,6,-85,2,54,35,11,-85,-26,-42,-21,-58,-66,-51,49,-40,61,9,25,-9,66,-34,54,-92,-11,32,-51,28,-29,-13,1,37,-5,-5,40,-9,-36,-1,51,39,84,-20,29,65,-20,-42,44,-6,-15,50,32,14,29,-42,55,-93,-27,-83,-9,0,16,-63,-6,-17,-54,28,29,99,-5,67,-35,-24,4,-38,-23,89,-19,51,-51,18,6,17,-6,58,13,109,-47,67,-14,-43,43,18,-55,-20,0,54,-70,-35,89,114,-12,-31,-31,45,39,31,3,39,12,42,0,49,-5,41,90,-9,17,8,23,-56,-11,-15,11,92,11,23,0,19,-11,-33,30,24,-58,-46,-35,41,28,-72,44,6,35,88,-68,-14,12,26,91,5, /* [51][0][][] */ 101,42,30,-26,32,-36,-96,64,-40,-32,20,-16,-1,10,-51,-22,-39,56,-10,31,25,13,19,-8,-55,-26,-11,-19,36,-38,-50,-1,22,-46,-59,64,-54,58,31,22,-34,24,42,-2,20,-39,28,16,-4,42,-18,-9,0,-40,-6,76,-34,32,-13,-15,-13,32,24,4,-66,2,-27,-6,-3,0,73,-23,30,52,43,-14,56,-72,-44,-31,-10,21,20,19,-6,39,-115,4,9,10,6,-37,-64,18,40,-44,-63,74,31,27,-57,-21,24,-10,-39,-51,50,-14,-61,-68,-3,-55,-2,-53,14,-5,-32,-39,-17,-22,7,-19,58,30,-48,-1,-42,115,-13,16,-15,-53,22,79,31,56,23,-23,-14,-31,49,99,47,-73,-46,-17,27,-10,38,-1,-45,28,-60,-41,73,31,-23,-12,-11,22,-7,65,-26,-26,-10,-39,-45,54,-51,-6,82,-14,15,-2,30,48,59,59,-22,56,-11,25,34,-19,33,-17,-7,-22,-18,13,-41,-1,54,-39,8,14,36,64,-10,-87,36,26,18,51,-15,16,32,-24,-17,-18,-44,-49,-28,-23,-51,45,3,-17,-47,8,1,-45,3,-13,-12,92,68,-15,73,-36,-24,38,-79,3,-5,-29,17,-54,0,-127,-39,37,25,28,18,55,-49,97,-52,-14,34,47,41,-50,-35,-13,1,16,-12,-40,-39,19,-29,25,37,-23,45,-40,33,6,50,-44,-43,-38,19,-4,16,-3,28,-6,-65,62,-14,18,-28,16,1,44,-27,49,1,-41,63,102,57,-28,-110,-46,-77,-47,17,-16,-6,40,-26,-17,47,33,-43,-1,63,-50,-50,-4,-3,-28,67,68,-79,-47,-53,-77,70,-23,-27,-116,-23,-7,33,32,-1,65,10,45,66,83, /* [52][0][][] */ -22,-34,-33,-19,-68,-46,-27,81,-72,12,65,32,-41,95,-5,4,-50,-11,51,-78,1,-83,-39,0,-19,-68,-45,94,52,23,-13,-64,-9,-28,-47,45,29,28,-37,67,63,-50,-7,5,-1,-47,43,-58,89,2,-75,-24,87,13,-49,56,-7,-13,60,-37,-68,-82,-23,-65,-25,19,43,35,23,-29,26,1,13,47,0,3,-54,24,35,-37,23,-37,-24,-9,-24,-24,-9,54,-73,36,-54,-13,32,7,9,26,8,-15,38,-6,1,19,34,-9,39,59,27,-46,35,-79,-5,-8,45,-21,18,1,78,90,2,47,-13,-52,-13,43,-21,35,-20,41,-40,-60,50,-18,35,24,27,-55,-40,46,32,-31,-4,10,26,-52,0,-14,102,-7,-14,78,63,32,21,29,-14,18,-8,-41,84,-35,-1,-82,0,-49,-2,-66,-13,-48,-7,0,28,53,18,-27,-93,-18,46,-43,8,48,6,-44,26,35,-20,9,21,69,-9,21,91,-37,-5,5,-5,34,25,21,1,-20,12,-24,-38,-18,-29,34,45,34,28,54,-67,-8,-20,37,-5,-42,6,-21,-30,-61,31,-16,37,-63,-64,1,112,-44,50,25,-45,-127,22,-63,-33,17,-27,64,16,-50,120,-98,-29,1,-24,3,-41,32,-5,61,54,8,-27,85,-73,87,-64,29,-97,-2,-26,-10,41,8,4,-6,3,-57,-89,-34,-30,-19,-85,50,-19,-80,-18,-21,-33,99,105,37,-13,-25,78,72,77,-2,-49,-46,30,-8,9,-99,54,-2,-34,-19,-52,17,32,38,-5,61,-102,5,-34,-53,44,56,4,19,-20,91,26,-22,-48,-35,-1,-40,-23,38,15,-50,-2,27,35,14,-14,-115,35,9,7,-70,61,-35, /* [53][0][][] */ 62,22,13,-38,-8,15,-44,0,48,-31,1,-3,48,-12,10,-29,36,-22,-41,-47,-12,-36,-5,-1,-46,58,19,-32,44,-42,-33,-2,-7,41,-13,41,49,-18,11,20,-1,41,-25,-6,-10,32,-7,-66,-3,11,-24,86,53,55,-24,-77,70,-35,-21,-9,19,28,51,58,28,-29,-45,-71,-13,95,-68,-1,36,-12,39,-59,-27,1,-36,-18,2,6,-11,66,-38,-66,-14,-43,107,105,9,19,65,42,50,8,38,-2,-9,-8,18,9,6,-58,0,-15,46,39,-17,25,-2,26,34,37,2,-16,-30,-25,-28,19,-64,1,16,-7,-45,52,41,38,-10,77,37,-32,48,19,17,-36,22,96,20,15,42,4,38,23,19,38,-30,25,10,-9,-37,24,36,9,44,-22,-3,-27,-9,33,16,45,17,-62,-73,5,90,-23,17,-18,12,8,-54,-18,45,52,-45,7,45,-3,-45,29,50,-15,26,-18,-86,-20,61,17,-38,-30,34,-23,71,16,-54,-16,79,23,15,-38,-9,21,-55,-8,9,49,9,31,11,0,-34,-45,37,-45,-64,-35,-65,34,26,-53,20,-45,-41,23,-7,127,-59,20,68,51,-30,54,10,1,43,11,19,16,-21,-1,-8,6,-61,113,54,29,-6,-8,8,39,-1,71,-49,10,-10,-82,60,-20,-41,-69,39,-55,3,7,9,-67,51,-35,10,24,-23,36,97,91,3,-28,-18,-45,-7,-13,19,-29,-74,20,-30,-15,40,-12,-72,50,-12,-50,3,11,-84,-7,21,-67,-30,-98,34,19,39,37,-24,13,-79,9,-72,7,-56,-6,-42,-25,43,27,-30,54,11,30,-47,-27,87,-38,-16,-24,10,63,47,27,41,-27,-8,34, /* [54][0][][] */ -7,-3,31,-5,35,34,-32,56,-7,35,-50,33,27,-15,47,42,-3,-26,-69,-2,-5,-22,13,15,-19,-33,25,-19,-44,-4,-7,40,-10,10,-48,36,-12,-59,-33,-2,4,17,17,-19,25,-56,35,8,-60,22,24,-24,-67,65,63,127,-3,-62,-54,85,16,-90,40,11,31,47,78,49,23,65,21,-44,64,44,13,32,36,-63,38,-3,19,57,2,-31,-19,-2,9,-11,0,-45,-24,-30,-32,-75,-26,20,-50,24,28,-25,14,-33,-102,38,10,16,26,23,-45,6,-24,45,10,-20,33,16,-39,-105,41,69,-1,49,-62,10,-75,-60,-20,-30,-5,24,41,-93,70,45,34,-76,-22,45,-49,24,16,-39,107,45,3,28,-22,6,9,17,78,0,18,-56,30,35,62,-53,75,10,-10,-71,-13,4,-17,3,-6,-27,-48,-64,-18,-58,9,59,35,-44,18,-14,12,22,51,-33,-58,-29,-50,-15,-42,-10,-9,-39,-60,-1,62,7,19,-10,18,43,59,30,122,75,41,-56,-81,5,-36,-88,42,33,-12,-76,-25,25,-45,91,-37,-23,1,-18,49,67,1,-67,9,-53,23,13,-59,-42,27,30,35,-28,39,-46,24,47,-74,17,-2,-20,-12,61,-67,35,-21,-43,-9,19,-33,1,-9,30,-30,-35,20,16,2,5,19,-7,-21,-33,-58,32,0,-51,31,19,23,25,108,3,-8,-33,-4,38,94,-27,62,-23,-31,21,36,-9,6,0,-61,17,34,116,-5,-44,-6,-53,-40,6,41,-30,61,-39,-19,13,86,-20,46,63,54,-11,-31,-12,-30,-6,19,4,-14,10,36,-7,-88,22,10,16,-23,-42,71,3,-7,-52,9,29,-41,26,-16,71, /* [55][0][][] */ -18,-46,-16,-28,5,14,-11,11,16,46,-20,21,63,-20,57,-66,25,-46,1,-5,-77,89,44,-28,98,35,-34,-77,59,-13,-11,5,30,-19,-7,1,-61,9,-28,-24,-19,77,31,17,-46,16,-14,-54,-4,38,-24,-82,5,39,-7,-54,-40,3,37,13,49,59,-6,52,21,14,-7,-87,1,57,-35,2,-14,26,63,53,49,-3,-60,73,81,-34,59,7,-49,40,29,-43,-29,-34,37,13,56,-60,48,19,36,73,38,63,-30,-57,16,-46,-25,-15,27,-24,53,-65,58,-51,23,-29,-6,89,5,-14,65,86,28,-45,29,9,-35,89,38,-10,-12,-40,-44,-98,-20,17,-23,-52,11,24,15,-67,-66,2,-24,-5,42,64,1,-69,92,19,50,-1,16,27,16,7,-34,15,39,69,2,-59,38,82,-39,-42,-57,76,9,34,9,-64,-19,43,32,14,-99,-56,38,22,62,-5,12,23,93,-96,21,-113,-59,-18,-29,9,-87,-29,-12,52,15,-43,30,42,-55,35,82,-35,-3,62,-18,-72,14,51,-18,-43,12,12,-50,-84,25,73,-30,-5,42,83,0,-14,75,35,22,-77,-74,-42,-66,26,12,36,18,-96,43,90,-5,-17,-6,58,-76,-43,-5,14,70,-4,25,35,74,-21,-16,-70,16,20,6,-100,-8,-20,-11,-5,83,1,16,-100,7,40,-42,-65,-34,36,88,-112,-46,68,12,18,4,-12,22,-32,-13,-24,-12,75,82,-11,56,20,-23,-41,70,15,67,-53,27,12,-46,-66,8,-7,-15,-52,20,16,39,63,-4,56,23,-17,-47,3,-18,21,42,-28,-127,43,-17,38,-26,11,10,-43,-21,-37,-4,42,-17,7,-27,18,-24,-51, }; const TfArray<56, float> quant20_scale = { 56, { 0.0014655659906566143, 0.0016244756989181042, 0.0019506517564877868, 0.0015216014580801129, 0.0016574691981077194, 0.0014672687975689769, 0.001616440131329, 0.0023785752709954977, 0.0012063526082783937, 0.0018539846641942859, 0.0014431615127250552, 0.0016509434208273888, 0.0015915005933493376, 0.0013482570648193359, 0.0014248376246541739, 0.0014115300728008151, 0.0013662601122632623, 0.0016824653139337897, 0.0017086458392441273, 0.001466550980694592, 0.0015361894620582461, 0.0016345919575542212, 0.0014732644194737077, 0.0016187013825401664, 0.0013675378868356347, 0.0014441292732954025, 0.0016614132327958941, 0.0017640405567362905, 0.0015036016702651978, 0.0014736395096406341, 0.001695847837254405, 0.0015034390380606055, 0.0015818228712305427, 0.0016171209281310439, 0.0017550627235323191, 0.0015784780262038112, 0.0016205164138227701, 0.0017730466788634658, 0.0014211495872586966, 0.0020769420079886913, 0.0013114908942952752, 0.0015063888859003782, 0.0013864153297618032, 0.0015311860479414463, 0.0015821931883692741, 0.0013107244158163667, 0.001603098469786346, 0.0013301009312272072, 0.0010760509176179767, 0.0013796656858175993, 0.0014664762420579791, 0.0013019663747400045, 0.0014160646824166179, 0.0016895511653274298, 0.0015525469789281487, 0.0015257531777024269, } }; const TfLiteAffineQuantization quant20 = { (TfLiteFloatArray*)&quant20_scale, (TfLiteIntArray*)&g0::quant13_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data21[336] = { -3482, -579, -501, -3290, -1977, -906, -794, 3637, 1304, 169, 4892, -1273, -334, 1429, -2147, -1701, -1760, 2539, 169, -1204, -473, -175, -1697, -369, 1719, -98, -587, -391, 3642, 3359, -2107, -1259, 6646, 4243, -344, -727, 2128, 3164, -1605, -1210, -1975, -4496, 2632, 3986, 24, 4295, 4865, -4242, 1737, -741, -3490, -289, -1305, 1397, 3564, 3727, -3312, -2625, 720, -485, -175, 1876, 5584, -2495, 726, -1466, -2248, 4139, 5412, 2298, 456, 1258, 2336, -2847, -1129, -1326, -2175, -1606, -1118, 3596, 1144, -2425, -381, -927, 655, 2103, -3014, -956, -1472, -176, -5276, -3272, 6326, -2026, 2943, 4133, -448, -4118, -562, -2126, -1369, 229, -454, -201, -2305, -2043, -409, -758, -2069, -847, 4536, -2722, 1466, 2340, -1088, -3088, 3212, 112, 2743, -356, -1913, -847, -1807, -1463, -856, 1373, 1707, 2824, 532, -879, -2267, -242, -2252, -327, 93, -1026, 943, 821, 1765, 728, -129, 3099, 737, 148, -3304, -50, -1638, 295, 3198, 4599, -473, -2799, -734, -2859, -1196, -2256, -1344, -1120, -431, -512, -965, -627, -321, 1642, -1329, -354, 3259, 1722, 596, -1276, 2371, -1231, -2587, 142, -1457, -725, -3198, -2738, -132, -1688, 2424, -3766, -2170, -703, -4492, 3559, 5355, 460, -651, -1916, -462, -318, 8, 1335, -3279, -1012, -2266, -2488, 436, -2, 169, -2131, -1037, -1540, 2892, -2560, -2312, -60, -359, -2221, 628, -324, -1315, -3055, -770, -1182, -333, 5154, -1144, -1036, -194, -2918, -3161, -1067, 2712, 854, 877, -707, -2935, -1346, 2962, -1208, -816, -621, -790, 2665, -3688, -567, -1605, 790, 1868, -1252, -797, 615, -1624, -4298, 910, 1082, 89, -2470, -1425, -1792, 722, 2563, -3510, -2819, -1831, 1486, -1377, -4689, -1243, -1310, 7534, -3479, 1764, 696, 1907, -2130, -2140, -389, -2132, 3514, 259, 5269, 4790, -1621, -1130, 648, -1683, 2365, 928, 1474, -4376, -1245, 3521, 3803, -1826, 4075, -1921, -590, 1738, -504, 3079, -1082, -52, -1599, 1433, 1508, 3418, -444, -1097, 4414, 1639, -1288, 986, 5341, -34, -799, -1645, -2204, -2471, 37, 8075, 4333, -6, 1603, 1892, -703, 1755, -113, 1455, 2836, -3113, -885, 2828, -870, -1185, 4884, 46, 1418, -1605, 1671, -166, 348, -3298, -1403, }; const TfArray<336, float> quant21_scale = { 336, { 0.00020403330563567579, 0.00024608170497231185, 0.00022898917086422443, 0.0002368597051827237, 0.00038847661926411092, 0.00039163310430012643, 0.00020694518752861768, 0.00021890155039727688, 0.00027088570641353726, 0.00024352004402317107, 0.00022438613814301789, 0.00030499114654958248, 0.00033542930032126606, 0.00019101507496088743, 0.00032947701402008533, 0.00018846776220016181, 0.00026596034877002239, 0.00026857480406761169, 0.00044608220923691988, 0.00034802599111571908, 0.00022821608581580222, 0.00023845546820666641, 0.00025451809051446617, 0.00043580628698691726, 0.00019389472436159849, 0.00024115224368870258, 0.00028716176166199148, 0.0003504611668176949, 0.00019715575035661459, 0.00021989968081470579, 0.00018536025891080499, 0.00023719477758277208, 0.00022593277390114963, 0.00025796383852139115, 0.00024215698067564517, 0.00027923172456212342, 0.00019249384058639407, 0.00017741632473189384, 0.00019431831606198102, 0.00020166815374977887, 0.00021484636818058789, 0.00026964800781570375, 0.00021165621001273394, 0.00018454094242770225, 0.00026770538534037769, 0.00014942814595997334, 0.00018722277309279889, 0.00016899689217098057, 0.00068473868304863572, 0.00016440919716842473, 0.00020400606445036829, 0.00017665272753220052, 0.00020702983601950109, 0.0001873122964752838, 0.0002696400333661586, 0.00025548783014528453, 0.0002523217408452183, 0.00030935322865843773, 0.00020019449584651738, 0.001022117561660707, 0.00030684389639645815, 0.00019125727703794837, 0.0001794311247067526, 0.00018764148990157992, 0.00041743394103832543, 0.00020801050413865596, 0.00018838282267097384, 0.00024289451539516449, 0.00018984745838679373, 0.00028755603125318885, 0.00032139717950485647, 0.00019300705753266811, 0.00020881225646007806, 0.00022185531270224601, 0.0001799572492018342, 0.00024880992714315653, 0.00023856425832491368, 0.00027071451768279076, 0.0002679861499927938, 0.00032459077192470431, 0.00024746253620833158, 0.00030567549401894212, 0.00024849455803632736, 0.00026614154921844602, 0.00023826300457585603, 0.00034285025321878493, 0.000247298798058182, 0.00028587956330738962, 0.00025689532049000263, 0.00017878501967061311, 0.00024749711155891418, 0.00018189151887781918, 0.00027737702475860715, 0.0002785967371892184, 0.00019872654229402542, 0.00023998718825168908, 0.00029539153911173344, 0.0002299519837833941, 0.00017415675392840058, 0.00022975965111982077, 0.00024794950149953365, 0.00015968309890013188, 0.00027075430261902511, 0.00024711410515010357, 0.00021278219355735928, 0.00018923953757621348, 0.00015462713781744242, 0.00033976006670854986, 0.00025541739887557924, 0.00048830924788489938, 0.000246030482230708, 0.00021765717247035354, 0.00020265881903469563, 0.00022619793890044093, 0.00020134491205681115, 0.00020151921489741653, 0.00021147479128558189, 0.00022670564067084342, 0.00018475316755939275, 0.00021399490651674569, 0.00027409425820223987, 0.00033945892937481403, 0.00033187074586749077, 0.00028655887581408024, 0.00024323732941411436, 0.00029697301215492189, 0.0003643044619821012, 0.00021878555708099157, 0.00019766351033467799, 0.0002251606056233868, 0.00029363067005760968, 0.00015566214278806001, 0.00023130117915570736, 0.00022327418264467269, 0.0001402644847985357, 0.00019473883730825037, 0.0001804603380151093, 0.0002063321735477075, 0.00017291716358158737, 0.00020765964291058481, 0.00019179824448656291, 0.00017228983051609248, 0.00027013340150006115, 0.00018452305812388659, 0.00020753314311150461, 0.00015122284821700305, 0.00031474939896725118, 0.00019600610539782792, 0.00021172399283386767, 0.00031193954055197537, 0.00039061246206983924, 0.00024397041124757379, 0.00025145974359475076, 0.00020386117103043944, 0.00020722854242194444, 0.00025340093998238444, 0.00024346499412786216, 0.00022520431957673281, 0.00023676091223023832, 0.00032653321977704763, 0.00032400645432062447, 0.00028823385946452618, 0.0002370519214309752, 0.00017904999549500644, 0.00021184080105740577, 0.00028595086769200861, 0.00024579142336733639, 0.00024089727958198637, 0.00028851110255345702, 0.00029007424018345773, 0.00022968246776144952, 0.00028350486536510289, 0.00014394409663509578, 0.00015824151341803372, 0.00022190772870089859, 0.00040620812796987593, 0.00019749681814573705, 0.00020991016936022788, 0.0002150773216271773, 0.00018736394122242928, 0.00016563895042054355, 0.00026338401949033141, 0.00035234689130447805, 0.00025745356106199324, 0.00017934034985955805, 0.00021903675224166363, 0.00016107346164062619, 0.00036275153979659081, 0.00025398458819836378, 0.00018528923101257533, 0.00020297740411479026, 0.00016263217548839748, 0.00017539452528581023, 0.00036116252886131406, 0.00021085576736368239, 0.00035038735950365663, 0.00018955684208776802, 0.00023202429292723536, 0.00018195048323832452, 0.00031012791441753507, 0.00022307196923065931, 0.00018288008868694305, 0.00023586903989780694, 0.00027851515915244818, 0.00018667752738110721, 0.00027433034847490489, 0.00027905520983040333, 0.00016805814811959863, 0.00020068419689778239, 0.00026304690982215106, 0.00036686670500785112, 0.00016894430154934525, 0.0002251800469821319, 0.0002478565729688853, 0.00019540406356099993, 0.00021147498046047986, 0.00026099866954609752, 0.00017057429067790508, 0.00025549798738211393, 0.00030668976251035929, 0.00020919804228469729, 0.00017438553913962096, 0.00027705161483027041, 0.00026408862322568893, 0.00023256159329321235, 0.00021692276641260833, 0.00027788692386820912, 0.00025966166867874563, 0.00019380678713787347, 0.00016395018610637635, 0.00026660965522751212, 0.0002243394119432196, 0.00025039198226295412, 0.00023904544650577009, 0.00018815894145518541, 0.00024919555289670825, 0.00022316494141705334, 0.00024034602392930537, 0.00021643185755237937, 0.0001876684109447524, 0.00023978731769602746, 0.00019063448417000473, 0.00037224925472401083, 0.00036081825965084136, 0.00018527850625105202, 0.00023122919083107263, 0.00025414806441403925, 0.00014111770724412054, 0.00025255314540117979, 0.0002028752351179719, 0.00023203618184197694, 0.00032698060385882854, 0.00018543095211498439, 0.00016100308857858181, 0.00016464204236399382, 0.0002558243868406862, 0.00026673919637687504, 0.00020851177396252751, 0.0002319241757504642, 0.00022328483464661986, 0.00021503142488654703, 0.00022260253899730742, 0.0001743500615702942, 0.00024271929578389972, 0.00029156816890463233, 0.00021052843658253551, 0.00024509720969945192, 0.00018716034537646919, 0.00031480012694373727, 0.00027537159621715546, 0.00028253468917682767, 0.00014473500777967274, 0.00017219888104591519, 0.0001696603576419875, 0.00022738006373401731, 0.00023385521490126848, 0.00024783777189441025, 0.00016832146502565593, 0.00029739036108367145, 0.00021485114120878279, 0.00019974303722847253, 0.00035393619327805936, 0.0002366166008869186, 0.00027474403032101691, 0.00032037388882599771, 0.00019900556071661413, 0.00021934279357083142, 0.00018316805653739721, 0.00018584585632197559, 0.00026516782236285508, 0.00017837461200542748, 0.0016396503197029233, 0.00021610391559079289, 0.00015835910744499415, 0.0001992675825022161, 0.00026871263980865479, 0.00024521906743757427, 0.00047106391866691411, 0.00019898026948794723, 0.00032499531516805291, 0.00042310051503591239, 0.00019475568842608482, 0.00023493528715334833, 0.00020034849876537919, 0.00019291281932964921, 0.00020589414634741843, 0.0002911656629294157, 0.0002452758199069649, 0.00028101829229854047, 0.00023397282348014414, 0.00019883034110534936, 0.00052382046123966575, 0.00016708484326954931, 0.00019203004194423556, 0.00030177252483554184, 0.00019823302864097059, 0.00054170750081539154, 0.00030642771162092686, 0.00016330412472598255, 0.00019743708253372461, 0.00024496423429809511, 0.00019576650811359286, 0.00028026799554936588, 0.00022837120923213661, 0.00037169255665503442, 0.00027738296194002032, 0.00014940682740416378, 0.0001492362207500264, 0.00022823894687462598, 0.00024948862846940756, 0.00026091071777045727, 0.000199573376448825, 0.00044184486614540219, 0.00025788854691199958, 0.00017363224469590932, 0.00023059251543600112, } }; const TfLiteAffineQuantization quant21 = { (TfLiteFloatArray*)&quant21_scale, (TfLiteIntArray*)&g0::quant9_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data22[1*3*3*336] = { /* [0][0][][] */ -124,31,45,83,45,19,-79,-76,-127,39,81,-2,4,-14,72,-5,-4,-127,57,16,-40,127,-3,-127,20,51,-127,4,33,4,3,-24,-91,-1,-32,-29,39,-105,65,103,-63,18,-50,14,-20,-49,-102,110,127,-23,-42,-127,21,29,-81,-55,-46,17,-25,1,-33,-50,-7,127,54,127,-58,-15,-91,28,-8,-127,69,-10,26,41,-47,-8,-23,-73,18,69,127,-26,-73,-68,18,-62,-3,-14,5,127,-68,-9,33,25,-10,60,-66,45,5,54,-44,19,49,0,1,127,-22,22,37,-43,1,73,-45,38,-127,87,-26,-93,36,65,-4,94,38,-12,-127,62,23,-82,-28,-122,127,121,-96,-56,17,6,-70,11,-11,-56,-43,-53,-92,98,-4,14,18,-44,-16,-25,3,-55,55,50,-127,-86,77,10,127,127,48,-127,-103,-12,127,-16,27,85,-9,13,-92,15,-64,-55,-28,111,38,41,107,-67,-8,1,-59,0,-99,52,-37,-25,-44,77,94,-1,26,-39,127,7,127,95,62,-61,-75,-7,-68,127,-82,92,-29,17,-32,-12,5,-68,106,-101,-56,118,35,-23,78,-68,112,14,-83,127,-14,-28,-52,66,-83,-74,-1,117,-78,-114,53,-18,3,11,-63,4,59,46,-75,14,-54,-25,1,-17,13,98,4,14,117,-9,94,-28,9,-5,-90,-75,-24,19,127,-46,-127,-40,43,36,-33,72,-122,67,-26,34,94,-30,-34,-31,7,2,-31,53,-46,-127,-13,82,2,54,-108,-10,-2,-98,31,58,102,-9,-115,-123,-49,71,-49,-41,45,-21,-13,-6,24,-111,-2,58,41,68,23,112,35,-24,-8,-11,-40,25,-17,-19,-3,-14,-94,-71,127,-24,-73,-22,19,122,-117,59, 127,127,11,-8,-29,-3,39,-32,-22,-9,18,-4,12,26,55,-35,25,-1,-28,82,-15,-87,127,-37,-57,-46,-92,53,-101,36,39,40,-29,41,18,16,101,-56,-56,-16,127,62,-72,83,-22,84,4,-43,13,-117,-1,-65,-72,36,-27,-82,47,24,76,5,4,2,-36,89,36,91,-18,1,-28,29,37,69,-127,68,110,-14,-14,-127,78,-76,-5,9,57,-29,-42,-32,-64,-4,56,-121,63,4,-21,127,104,-33,-62,-19,84,127,10,67,127,88,127,71,127,-52,20,4,-19,-14,-94,-29,14,99,109,78,-32,-15,34,6,-53,-16,-48,13,-14,-74,-2,-2,5,118,43,-7,-41,-39,-113,-30,104,-111,-46,-5,-51,30,95,-95,-12,127,-11,-44,10,9,-22,14,-127,82,-43,-64,-99,25,-53,16,47,43,-59,-36,28,12,-40,5,-30,12,74,110,-67,-6,127,73,-50,-33,-84,127,-9,127,111,8,10,-34,-44,102,56,-71,-35,-33,127,-2,4,48,-94,-5,3,73,76,14,-51,5,26,-63,-36,-21,-7,-78,-85,47,38,127,31,-108,-32,-64,-57,5,43,39,-38,-38,-45,13,-79,-28,11,-27,41,14,-54,22,127,-22,-93,-25,-38,-6,-39,-53,19,13,-39,-94,-22,32,127,35,-85,-85,95,1,-47,-43,-20,42,49,-26,-112,28,-21,69,-26,-15,-12,-67,71,111,-80,-69,-71,126,-35,106,-42,12,50,25,-55,-20,-52,32,69,-46,-8,-31,113,9,-127,-62,-48,-23,-99,-34,-124,-7,3,-100,-69,-81,-70,-44,-15,-9,3,45,39,26,-104,8,39,28,35,22,-37,127,-42,-89,74,72,-42,-39,-100,127,-50,50,-20,-55,60,-17,-53,-39, 42,-76,26,-70,-4,127,14,-127,6,27,-29,-6,14,42,127,48,-75,-27,3,-33,29,70,-8,4,-69,-127,-37,-7,78,31,72,-12,-96,-14,23,-34,59,82,-8,32,25,31,8,42,-50,127,-25,113,-10,127,24,-109,-21,96,42,-20,48,-8,-60,2,115,-33,-2,91,31,-24,65,63,-78,-19,-69,0,58,-55,85,-58,34,-5,-44,-127,69,44,-13,127,-6,48,46,13,127,74,8,125,127,18,-23,-11,61,72,114,43,-26,-11,-18,-91,-69,-46,26,114,-24,-63,-66,123,-17,52,-42,46,74,-55,-5,97,-34,2,-47,-126,9,41,-76,3,127,-45,26,60,91,127,2,127,127,-5,-24,-13,127,-98,-52,-99,120,-127,39,58,103,-48,-1,-43,-53,5,47,63,51,64,-23,63,16,113,-26,-109,7,-41,-25,-127,-102,-19,127,-30,127,-57,1,127,80,49,-86,-120,-1,-13,47,7,22,-103,31,127,-50,39,-9,66,81,-127,-67,23,96,127,14,127,120,127,1,-55,-87,40,-52,-43,-4,119,-30,107,29,26,66,-82,-21,4,127,-72,-24,104,4,-34,127,28,-37,43,32,-34,50,-4,-34,-81,-36,-59,64,7,14,31,-49,-78,-26,0,-44,54,-23,127,-127,-17,-43,-41,23,-70,6,-17,-19,-22,14,-10,-127,70,-23,-26,9,36,108,-53,21,81,96,-88,-104,-81,47,26,-45,-46,33,-6,-55,-51,40,127,66,-84,-48,-82,92,14,79,4,-21,15,104,92,-88,-127,57,49,127,-58,24,35,-87,-31,59,40,118,127,89,42,-101,-72,-28,-91,-25,21,-100,45,127,-122,58,-68,127,-49,105,12,-102,44,97,44,51,16,44,-16, /* [0][1][][] */ 43,-60,127,-43,12,-45,42,-75,97,-22,-45,-28,108,127,-44,28,127,-53,-42,-25,30,-15,-11,57,-96,57,-44,8,-78,7,6,33,-45,38,-55,-43,-71,-15,51,33,44,72,-15,-87,63,-101,-72,106,-52,-16,127,29,65,-127,-66,78,98,-3,-39,-1,-25,-97,78,48,-19,10,-30,-27,-127,-127,-127,-60,-117,127,-108,-87,-15,79,-18,45,-84,-41,-50,-7,-61,33,127,127,-74,43,15,125,-68,120,24,-30,127,110,45,-21,-45,114,-18,-92,-70,127,-39,101,-53,62,-76,10,-27,-46,79,-48,-18,7,-77,-108,91,-79,-35,22,-69,-95,-97,43,119,-13,30,16,17,75,-25,118,-10,-22,16,30,43,-28,127,5,24,105,92,-42,-47,-127,34,-19,11,125,59,7,43,95,127,27,-41,-32,-101,84,24,-11,-30,30,47,-38,-43,127,-80,2,60,1,96,127,19,120,-57,-26,22,-51,0,-127,-58,-82,-35,71,13,25,105,13,104,-1,82,8,-75,-13,-90,-44,-56,127,91,25,-1,-79,127,34,-40,-40,-81,-57,-15,103,-61,-127,-72,-10,127,66,-20,127,-80,-41,127,13,127,-127,14,2,-127,-73,26,-32,-36,-15,21,59,110,65,-66,-30,-86,127,114,-72,108,127,67,36,27,126,56,127,-56,-127,27,57,24,-104,-57,72,-28,-45,-15,127,127,-96,127,-31,127,-112,-34,127,-35,34,54,-50,-32,-101,-20,-16,-75,83,-62,-67,113,-64,-104,28,-105,11,78,-4,36,22,-127,-127,73,28,-58,103,5,-59,103,99,-39,21,-30,127,90,-127,-37,-67,-28,-51,120,-65,107,-56,8,-40,-87,-10,120,-22,-43,-113,55,-81,-4,127,50,-23, 83,-45,-70,90,65,6,30,-53,31,-67,-32,7,-27,-47,62,-34,26,-58,-19,5,-8,43,27,41,-51,-40,73,29,-31,-80,127,-79,-74,-79,76,-28,-34,-61,127,-67,30,-8,122,-125,-88,-119,-2,-61,-12,-61,38,74,99,-3,-40,-45,68,19,-96,-13,-65,-26,-127,-25,7,-35,12,-17,48,-22,-28,-55,-67,60,-72,62,61,51,127,-20,-53,127,-69,10,127,-29,53,-1,35,4,48,93,-97,-32,-4,-84,2,102,-119,-10,34,-120,32,27,86,-81,66,-16,-5,-22,-58,23,90,-104,127,-10,-100,-81,-94,22,-31,-22,127,127,-12,-39,50,-127,13,-33,-5,-98,85,-87,127,-100,-51,-72,-127,-35,-45,73,-32,-47,70,-1,70,-31,-77,-31,-19,47,12,127,-6,71,120,-28,94,4,-38,-47,26,-65,73,-30,-35,-45,-24,52,-12,-64,122,44,40,17,-7,16,61,4,3,61,49,-23,-54,51,-91,-12,-4,109,7,-18,-15,-37,6,-12,7,-65,3,12,-79,5,-9,-6,-45,42,127,17,-30,20,11,-31,-15,29,62,-47,10,-84,80,43,67,-14,86,-34,-15,-96,73,-41,56,96,77,-28,-42,74,4,-90,31,60,20,-69,15,52,127,-41,127,34,-63,-79,106,34,-26,69,-81,61,88,-13,-17,1,-33,127,55,27,-127,102,17,-46,-40,-5,52,0,13,-65,-25,-74,-3,-19,27,-49,12,-54,101,28,127,68,-74,-83,16,53,13,-34,48,41,-59,20,-47,67,-6,64,-69,96,24,-64,-30,-1,100,-69,-61,30,4,13,48,10,-127,-52,11,-90,-51,-19,127,-118,54,62,24,-77,-30,127,127,-114,-2,-6,-14,73,-26,-33,127,104, 11,14,58,127,81,-7,-82,-58,-111,-58,-127,-60,-27,-70,47,-70,-27,48,-33,-111,121,-47,12,39,-6,11,-25,-127,127,40,63,16,-50,-127,-127,-5,-92,-12,-67,-65,-102,127,-15,31,64,-114,-127,59,-2,85,-20,-50,-22,-86,105,-127,-67,-18,-51,38,54,127,-122,-115,-85,-3,15,-12,-33,-56,108,109,-51,15,-2,61,-31,74,-13,20,-53,18,103,12,-121,127,119,-12,-24,-95,-1,0,41,42,-102,7,-33,127,-2,-60,-24,57,-46,-53,56,-48,-85,-34,18,127,-29,103,35,-60,-101,6,-112,46,-63,-115,127,53,14,-71,1,69,-11,75,-82,127,22,127,-83,-89,-31,0,90,-6,-47,-8,-3,-127,-35,-52,-23,21,-67,-65,127,1,1,-30,-127,36,122,-77,-37,-39,-27,127,48,19,-79,-107,121,-53,-68,59,-59,111,71,65,66,3,-127,-1,69,-60,127,-32,-127,9,8,-24,127,-78,-75,-76,21,-26,127,-127,56,120,-45,48,-118,33,-42,8,105,64,33,55,123,93,52,-127,-46,-93,-64,-32,115,-34,127,19,89,83,-9,29,-76,38,127,-87,-101,-34,-41,-1,45,77,-127,51,119,71,48,-127,-16,-127,61,-95,100,-44,-59,70,-40,72,-83,97,-13,-19,-49,36,127,102,-86,38,127,43,56,37,84,36,10,70,48,-49,97,-88,94,-1,-29,81,66,-106,-127,-102,9,85,12,-55,31,-127,96,50,127,-65,-10,127,127,127,-12,-11,-38,75,46,127,-15,-16,-67,-15,89,-127,127,-13,1,-85,71,-31,43,33,-127,-48,-96,-14,127,127,-55,28,-47,-72,13,-127,111,26,27,-51,63,-5,123,-49,66,-127,-33,70,66,-64, /* [0][2][][] */ 90,-21,-43,104,127,61,127,-44,-25,127,-37,127,0,-3,-16,127,108,-14,127,-17,-124,9,-63,28,19,-68,15,-15,-123,-120,104,-26,-67,-47,-50,4,-38,127,24,127,-40,4,-127,-127,-127,-109,-59,83,-26,0,54,-85,127,-79,-127,15,-11,127,10,-2,127,-56,95,51,-127,-25,63,20,-102,9,28,-63,56,111,30,127,24,-81,34,-38,67,-103,-53,56,-114,-76,52,38,-48,-46,13,-36,-39,19,-25,-59,90,83,127,12,-6,14,-31,-127,40,-88,-1,6,127,19,-33,-68,-25,-34,17,63,-45,-49,-86,-97,-5,66,-42,-22,11,127,123,-51,-102,121,53,37,18,-66,-125,-17,-97,4,49,-84,0,-1,72,-24,-15,-22,4,-32,-40,-78,127,14,118,46,43,40,75,-78,-67,-94,32,-50,127,85,127,127,-53,37,2,-25,-104,-2,10,-52,70,54,-85,108,-102,127,-77,1,127,113,62,-94,72,42,5,-57,-33,57,-37,26,21,64,75,23,36,-3,127,87,60,-16,127,-9,-92,-92,87,127,127,12,-61,23,91,75,127,-110,70,127,12,-38,-41,-68,-46,-12,119,-26,33,-35,-84,-84,-84,-127,30,26,-5,115,94,-127,68,127,-9,-54,76,-3,-86,-102,-75,-83,44,127,-61,-127,127,39,7,79,-24,-44,92,8,-64,-10,63,127,-74,-47,-56,92,75,91,-24,-127,-94,48,44,89,93,127,-5,59,49,-68,-13,6,127,-127,-103,-16,-127,-3,86,127,-1,58,-40,-65,-6,-25,-17,-49,-32,-34,-127,81,-127,127,127,32,98,62,46,-20,-44,-72,-39,104,120,-70,-87,92,127,127,-49,-3,50,-113,-2,-42,-12,117,-127,-11,-75,-127, 79,-26,-34,-74,-14,15,-26,96,-83,-1,-75,28,-43,-91,15,107,58,-61,56,92,127,-40,-45,-16,82,53,71,100,-91,-99,-98,127,-2,-89,58,4,-127,-25,-8,-12,13,68,-68,37,102,53,15,118,-36,125,123,54,-34,50,21,66,38,10,127,0,30,-54,-36,-1,-43,-30,127,-127,-69,-31,10,-118,-24,-51,110,-71,127,42,-14,-16,-79,44,52,-57,-22,-2,74,70,-42,127,127,-13,-61,38,-127,-91,19,-38,-45,1,-28,-99,-31,20,14,91,-3,-52,98,10,-32,127,-127,37,-75,127,-65,38,-15,46,33,-10,53,-97,127,-27,-56,-23,-47,18,127,-71,8,85,28,113,57,127,-45,39,-109,-6,101,127,21,58,127,14,-98,-78,-78,127,86,-61,-18,127,2,127,-29,26,90,20,-77,23,-56,19,-11,-63,96,-71,-81,6,-5,-127,80,-39,77,126,-79,69,101,33,-34,2,119,12,-127,7,127,-127,-59,118,-63,-61,100,127,-51,11,84,-102,14,-96,127,3,-14,-49,37,116,57,55,-20,-40,127,50,-115,-64,0,-33,-40,44,25,123,-9,56,40,-6,-92,127,103,115,-87,63,72,40,127,110,80,23,81,119,-22,-6,22,31,64,107,127,-32,61,54,-3,-38,13,-87,-34,25,52,-2,127,-10,22,127,-71,63,-99,-68,15,110,-1,127,-61,-123,24,9,-78,-39,127,-75,127,-86,-127,-57,24,-17,24,-93,-38,-124,101,89,-85,11,-54,61,-127,-48,-52,-66,41,-5,-21,58,-1,81,-62,-127,8,61,-10,-59,109,9,-119,-67,-34,-21,-47,-24,-109,32,-110,6,13,-21,-16,16,-37,-124,-11,-20,127,-87,-7,-73,22,73, 69,-16,57,43,-28,-43,-72,-11,98,-4,-62,99,127,-40,-59,-15,20,36,-15,-127,103,58,-6,8,127,61,88,4,-48,-127,-60,-12,-127,25,-26,127,50,-126,-49,-27,56,16,44,78,72,-36,-124,127,-20,42,-73,124,3,-5,-53,-56,127,-3,32,127,-26,96,-88,101,35,7,50,-83,16,-74,-52,-31,110,-19,127,73,-79,-46,-60,-26,127,-100,-75,-43,20,12,43,-76,41,13,44,-36,70,-49,-26,127,38,-2,80,9,127,127,-106,43,-80,100,-93,54,86,73,-127,-42,20,-127,47,108,-45,-127,127,127,-13,127,-3,-34,-34,-11,-40,-25,-101,54,52,-27,-30,51,-102,13,-108,-94,-43,127,110,-84,-76,96,127,-97,87,-114,31,-95,1,-9,23,-16,42,-89,46,30,-51,82,91,27,25,-30,-72,-123,-81,49,-127,127,92,58,-10,-108,96,-30,-65,-20,34,-7,-90,24,-14,108,57,-2,67,-90,45,-34,-12,-37,-127,-49,57,-15,22,9,-51,11,-97,26,-2,-79,-91,-47,91,116,-51,-30,73,127,68,127,-80,110,-73,37,-31,69,12,127,30,26,-34,119,-5,-20,95,-13,-23,127,-47,-71,28,-43,-54,-9,127,-1,-127,-103,24,127,-91,19,25,25,-112,122,-32,36,-19,-124,-73,-14,28,86,96,110,-39,-100,-59,127,-66,-64,-44,102,32,-37,84,-127,125,-72,44,30,-79,-127,-17,52,-125,3,105,91,-3,-72,100,75,59,-37,-111,127,73,104,113,-84,127,7,30,-102,18,-127,-37,127,-85,96,-24,-90,-59,-50,-75,-36,-92,-101,32,-88,127,127,-89,97,42,70,-8,117,29,-27,70,-79,39,127,-14,-9,32,-66,102,-36, }; const TfArray<336, float> quant22_scale = { 336, { 0.0086714150384068489, 0.010458472184836864, 0.0097320396453142166, 0.01006653718650341, 0.016510255634784698, 0.01664440706372261, 0.0087951701134443283, 0.0093033155426383018, 0.011512641794979572, 0.01034960150718689, 0.0095364106819033623, 0.01296212337911129, 0.014255744405090809, 0.0081181405112147331, 0.014002772979438305, 0.0080098798498511314, 0.011303314939141273, 0.011414429172873497, 0.018958494067192078, 0.014791104011237621, 0.0096991835162043571, 0.010134357027709484, 0.010817018337547779, 0.018521767109632492, 0.0082405256107449532, 0.010248970240354538, 0.012204374186694622, 0.014894599094986916, 0.008379119448363781, 0.0093457363545894623, 0.0078778108581900597, 0.010080778039991856, 0.0096021424978971481, 0.010963463224470615, 0.010291671380400658, 0.011867348104715347, 0.0081809880211949348, 0.0075401938520371914, 0.0082585280761122704, 0.0085708964616060257, 0.0091309705749154091, 0.01146004069596529, 0.0089953886345028877, 0.0078429896384477615, 0.011377478949725628, 0.0063506960868835449, 0.0079569676890969276, 0.0071823676116764545, 0.02910139411687851, 0.0069873910397291183, 0.0086702574044466019, 0.0075077409856021404, 0.0087987678125500679, 0.0079607721418142319, 0.011459700763225555, 0.010858233086764812, 0.010723673738539219, 0.013147511519491673, 0.0085082659497857094, 0.043439995497465134, 0.013040864840149879, 0.008128434419631958, 0.0076258224435150623, 0.0079747634008526802, 0.017740942537784576, 0.0088404463604092598, 0.0080062700435519218, 0.010323016904294491, 0.0080685168504714966, 0.012221131473779678, 0.013659380376338959, 0.0082027995958924294, 0.0088745206594467163, 0.0094288503751158714, 0.0076481830328702927, 0.010574421845376492, 0.01013898104429245, 0.011505366303026676, 0.011389411054551601, 0.01379510760307312, 0.01051715761423111, 0.012991208583116531, 0.010561018250882626, 0.011311016045510769, 0.010126177221536636, 0.014571134932339191, 0.010510198771953583, 0.012149881571531296, 0.01091805100440979, 0.0075983633287250996, 0.010518627241253853, 0.007730389479547739, 0.011788522824645042, 0.011840361170470715, 0.0084458775818347931, 0.010199455544352531, 0.012554140761494637, 0.0097729591652750969, 0.0074016619473695755, 0.0097647849470376968, 0.010537853464484215, 0.0067865317687392235, 0.011507057584822178, 0.010502348653972149, 0.0090432427823543549, 0.008042680099606514, 0.0065716532990336418, 0.014439802616834641, 0.010855239816009998, 0.020753143355250359, 0.010456294752657413, 0.0092504294589161873, 0.0086129996925592422, 0.00961341243237257, 0.0085571585223078728, 0.0085645662620663643, 0.0089876782149076462, 0.0096349893137812614, 0.0078520094975829124, 0.0090947831049561501, 0.011649006046354771, 0.014427004382014275, 0.014104506932199001, 0.012178751640021801, 0.010337586514651775, 0.012621352449059486, 0.015482939779758453, 0.0092983860522508621, 0.0084006991237401962, 0.0095693254843354225, 0.012479303404688835, 0.0066156410612165928, 0.0098302997648715973, 0.009489152580499649, 0.0059612407349050045, 0.0082764001563191414, 0.0076695643365383148, 0.0087691172957420349, 0.0073489793576300144, 0.0088255349546670914, 0.0081514250487089157, 0.0073223174549639225, 0.011480669490993023, 0.0078422296792268753, 0.0088201584294438362, 0.0064269709400832653, 0.013376848772168159, 0.0083302594721317291, 0.0089982692152261734, 0.01325742993503809, 0.01660102978348732, 0.010368742048740387, 0.01068703830242157, 0.0086640994995832443, 0.0088072130456566811, 0.010769539512693882, 0.010347262024879456, 0.0095711834728717804, 0.010062338784337044, 0.013877660967409611, 0.013770273886620998, 0.012249939143657684, 0.010074706748127937, 0.0076096244156360626, 0.0090032340958714485, 0.012152912095189095, 0.010446134954690933, 0.010238134302198887, 0.012261721305549145, 0.012328155338764191, 0.0097615048289299011, 0.01204895693808794, 0.0061176237650215626, 0.0067252642475068569, 0.0094310780987143517, 0.017263844609260559, 0.0083936145529150963, 0.008921181783080101, 0.0091407857835292816, 0.0079629672691226006, 0.0070396549999713898, 0.011193821206688881, 0.014974742196500301, 0.010941776446998119, 0.007621964905411005, 0.0093090618029236794, 0.0068456218577921391, 0.015416939742863178, 0.010794344358146191, 0.0078747924417257309, 0.0086265392601490021, 0.0069118672981858253, 0.0074542672373354435, 0.015349406749010086, 0.0089613702148199081, 0.014891462400555611, 0.0080561656504869461, 0.0098610324785113335, 0.0077328956685960293, 0.013180436566472054, 0.0094805583357810974, 0.0077724037691950798, 0.010024433955550194, 0.011836893856525421, 0.0079337945207953453, 0.011659039184451103, 0.01185984630137682, 0.0071424711495637894, 0.0085290782153606415, 0.011179493740200996, 0.015591834671795368, 0.0071801324374973774, 0.0095701515674591064, 0.010533904656767845, 0.0083046723157167435, 0.0089876865968108177, 0.011092443019151688, 0.0072494070045650005, 0.010858664289116859, 0.013034314848482609, 0.0088909165933728218, 0.0074113854207098484, 0.011774693615734577, 0.011223766021430492, 0.0098838675767183304, 0.0092192171141505241, 0.01181019376963377, 0.011035620234906673, 0.0082367882132530212, 0.0069678826257586479, 0.01133091002702713, 0.0095344251021742821, 0.010641658678650856, 0.010159431025385857, 0.0079967547208070755, 0.010590811260044575, 0.0094845099374651909, 0.01021470595151186, 0.0091983536258339882, 0.007975907064974308, 0.010190960951149464, 0.0081019653007388115, 0.015820592641830444, 0.015334775671362877, 0.0078743360936641693, 0.0098272403702139854, 0.010801292024552822, 0.0059975022450089455, 0.010733508504927158, 0.0086221974343061447, 0.0098615372553467751, 0.013896675780415535, 0.0078808153048157692, 0.0068426309153437614, 0.0069972868077456951, 0.010872536338865757, 0.011336416006088257, 0.0088617503643035889, 0.0098567772656679153, 0.0094896052032709122, 0.0091388355940580368, 0.0094606075435876846, 0.0074098776094615459, 0.010315570048987865, 0.012391647323966026, 0.0089474581182003021, 0.010416631586849689, 0.0079543143510818481, 0.013379004783928394, 0.011703292839229107, 0.012007723562419415, 0.0061512375250458717, 0.007318452000617981, 0.0072105652652680874, 0.009663652628660202, 0.0099388463422656059, 0.01053310465067625, 0.007153661921620369, 0.012639090418815613, 0.0091311736032366753, 0.0084890788421034813, 0.015042288228869438, 0.010056205093860626, 0.011676621623337269, 0.013615889474749565, 0.008457736112177372, 0.0093220686540007591, 0.0077846422791481018, 0.0078984489664435387, 0.011269631795585155, 0.0075809210538864136, 0.069685138761997223, 0.0091844163835048676, 0.0067302617244422436, 0.0084688719362020493, 0.011420287191867828, 0.010421810671687126, 0.020020216703414917, 0.0084566613659262657, 0.013812300749123096, 0.017981771379709244, 0.0082771163433790207, 0.0099847493693232536, 0.008514811284840107, 0.0081987949088215828, 0.0087505010887980461, 0.012374539859592915, 0.010424221865832806, 0.011943276971578598, 0.0099438447505235672, 0.0084502892568707466, 0.022262368351221085, 0.0071011059917509556, 0.0081612765789031982, 0.012825331650674343, 0.0084249032661318779, 0.023022567853331566, 0.013023178093135357, 0.0069404253736138344, 0.0083910757675766945, 0.010410980321466923, 0.0083200763911008835, 0.011911389417946339, 0.0097057763487100601, 0.015796933323144913, 0.011788776144385338, 0.0063497899100184441, 0.0063425395637750626, 0.0097001548856496811, 0.010603266768157482, 0.011088705621659756, 0.0084818685427308083, 0.018778406083583832, 0.010960263200104237, 0.0073793702758848667, 0.0098001817241311073, } }; const TfLiteAffineQuantization quant22 = { (TfLiteFloatArray*)&quant22_scale, (TfLiteIntArray*)&g0::quant9_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data23[336] = { -836, -8, 797, 888, -2335, 413, 806, 1706, 954, 1149, 1145, 754, -1383, 1651, -125, 1544, 680, 34, -990, 1086, -1965, 1758, -252, 305, 1989, 697, 762, -1679, 320, 809, 343, 981, 1194, 1562, 147, 1044, 169, 2166, 425, -534, 659, 166, 3574, 115, 404, 1, -569, 319, -661, 305, 1542, 225, 875, 380, 128, -1000, 1233, 2003, 1568, -4175, -505, -304, -342, 146, 506, -159, 81, 723, 725, 2191, 251, 1544, -396, 2017, -523, 458, -350, 827, -1236, 1891, -1, -75, 3914, 76, 1995, 187, -1520, 585, 405, 1503, 770, 221, 1520, 700, 3723, 965, 160, 100, 715, 1676, -170, 739, 2517, 1522, -1199, -436, 121, -608, -645, -2463, 1032, -1231, 753, -134, 181, 110, 1395, 1956, 1548, 2420, -67, 1584, -2075, -598, -6, 368, 644, -689, -202, 26, -2474, -418, 711, -86, 304, -474, -26, 835, 273, 1170, -512, -158, -2065, 1172, -130, 1304, -3074, -509, 298, 275, -875, 1821, 1604, -856, -754, -771, 40, 2150, -1383, -350, -1591, 558, 1573, 793, 665, 124, 1134, 1123, 723, -1059, 257, -540, 1024, 212, 1228, 1096, 1090, -904, 628, 466, 1110, -394, -46, 699, 1334, 1552, 385, -134, -1194, 147, 529, 1524, -78, -382, 478, -1309, 745, 399, 332, -731, 1129, -295, -394, 684, 247, 292, -989, 2169, 1203, 188, 192, 488, -234, 327, 895, -511, 804, 1142, 466, 1229, 2731, 138, 891, 446, 542, -174, 6, 1638, -396, -67, 2853, -658, 2016, 1455, 3414, 2283, -18, 1307, 0, 1662, -337, 29, -2770, 918, 1658, 668, -323, -95, -1321, -714, -267, -1240, 707, 1569, 971, 1241, 970, 285, 497, 1469, -167, -111, 3016, -1893, 92, 400, 2, 134, -291, -561, 383, 586, -47, 2405, 3602, -463, -746, 1189, -2641, 785, 1699, 1473, 729, -47, 2604, 1521, 187, 3136, -75, 744, -1008, -10209, -68, 1828, -214, -29, 575, 778, 714, -1553, -940, -794, 1674, 743, 1904, 68, 117, -827, 533, 876, 739, -1460, 552, -82, -74, 208, 112, -194, -987, 575, 1342, 380, -1051, 204, 1449, -227, 1420, 1415, 285, 279, -1203, 402, 714, 656, 106, -553, }; const TfArray<336, float> quant23_scale = { 336, { 0.00011200460721738636, 0.00010472632857272401, 0.00010768754145829007, 0.00012320761743467301, 9.8395794339012355e-05, 9.8170290584675968e-05, 0.00013461598427966237, 0.00011906008148798719, 0.00010115618351846933, 0.00010466216917848215, 8.8296059402637184e-05, 0.00012601574417203665, 9.0393317805137485e-05, 0.0001207462846650742, 0.00011099773109890521, 0.00013922658399678767, 0.00013553822645917535, 0.00011504950816743076, 0.00010687854955904186, 8.8736080215312541e-05, 0.00010791739623527974, 0.00012389828043524176, 0.00014168348570819944, 0.00012367748422548175, 0.0001027283797156997, 0.00014561833813786507, 9.0174646175000817e-05, 8.5540610598400235e-05, 0.00010482434299774468, 0.00011194129911018535, 0.00014076702063903213, 0.00010788836516439915, 0.00011102608550572768, 0.00012004264135612175, 0.00012763417907990515, 9.0340181486681104e-05, 0.00011493461352074519, 0.00010558752546785399, 0.00011522944259922951, 0.00012708231224678457, 0.00012681448424700648, 0.00010765586921479553, 9.3501017545349896e-05, 0.00011279070167802274, 0.00014803832164034247, 8.8926892203744501e-05, 9.7563191957306117e-05, 0.00010242485586786643, 0.00011348355474183336, 0.00015518184227403253, 0.00011976254609180614, 9.656743350205943e-05, 0.00012886201147921383, 0.00010989682050421834, 0.00012118330778321251, 7.6299482316244394e-05, 8.5535037214867771e-05, 0.00012923683971166611, 9.3993388873059303e-05, 0.00013208195741754025, 0.0001143470944953151, 0.00013218066305853426, 0.00012698683713097125, 0.00012505223276093602, 9.6664123702794313e-05, 0.00011525830632308498, 0.00013813731493428349, 0.00010184251732425764, 0.00010290239879395813, 0.0001036551475408487, 0.00012515434355009347, 0.00010514680616324767, 0.00011218841973459348, 0.00010723810555646196, 0.00010831666440935805, 8.7701315351296216e-05, 9.3801194452680647e-05, 8.0202262324746698e-05, 0.00011131908831885085, 7.8235076216515154e-05, 0.00014108131290413439, 0.00010573658801149577, 8.0299825640395284e-05, 0.00015105275087989867, 0.00010963399836327881, 0.00013174072955735028, 9.8187534604221582e-05, 0.00014994248340371996, 0.00011500216351123527, 0.00010759420547401533, 0.00010996063065249473, 0.00011030819587176666, 8.245326898759231e-05, 0.00013300933642312884, 8.8413005869369954e-05, 0.00012071234959876165, 0.0001456371828680858, 0.00015650896239094436, 0.00014906565775163472, 0.00011251414980506524, 0.00010811443644342944, 9.0015520981978625e-05, 0.00010126459528692067, 9.964417404262349e-05, 0.00014230451779440045, 0.00012105490895919502, 0.00013072145520709455, 9.4928618636913598e-05, 0.00014669673691969365, 0.00011510498734423891, 0.00010962576925521716, 9.6586692961864173e-05, 0.00014799559721723199, 0.00013079898781143129, 0.00011403264943510294, 0.00011471573816379532, 0.00011232988617848605, 0.00010320329602109268, 9.4141054432839155e-05, 0.00010675656085368246, 0.00017091828340198845, 0.00010756289702840149, 9.9339064036030322e-05, 0.00010524627577979118, 0.00011900009849341586, 0.00015974415873643011, 0.00010855705477297306, 0.00012940751912537962, 0.00015786386211402714, 8.8809174485504627e-05, 0.00011287300731055439, 0.00016275647794827819, 9.6841889899224043e-05, 0.00011872082541231066, 0.0002490741026122123, 9.5189025159925222e-05, 0.00016419120947830379, 0.00013370743545237929, 0.00015275875921361148, 0.0001197125093312934, 0.0001344754418823868, 0.00013719200796913356, 0.00012264899851288646, 0.00013786597992293537, 0.0001391979749314487, 9.9174765637144446e-05, 8.3742226706817746e-05, 0.00011908403394045308, 0.00013231401680968702, 0.00010492600267753005, 0.00013389815285336226, 0.00011308062676107511, 0.00010104297689395025, 8.732762944418937e-05, 0.0001180959734483622, 0.00010771434608614072, 0.00010188757005380467, 0.00012693899043370038, 0.00011780465865740553, 0.00013439277245197445, 0.00010978868522215635, 0.00011164231545990333, 0.00010243405267829075, 0.0001067773046088405, 0.00011151952639920637, 0.00010029789700638503, 0.00010408522211946547, 0.0001197313322336413, 0.00012534567213151604, 0.00010584445408312604, 0.00013314429088495672, 0.00011510902550071478, 0.0001369589299429208, 0.00016567501006647944, 0.00012603860523086041, 8.6833511886652559e-05, 0.00012099651212338358, 0.00010903185466304421, 0.0001004573205136694, 0.00012446807522792369, 8.2528087659738958e-05, 0.00011868339061038569, 0.00010307450429536402, 0.00010239114635623991, 9.4610855740029365e-05, 8.9629458670970052e-05, 9.4026865554042161e-05, 0.00011307394743198529, 0.00010950480645988137, 0.00010055761231342331, 0.00013298432168085128, 0.00013566079724114388, 0.00013798908912576735, 8.2772188761737198e-05, 0.00012658663035836071, 0.00011345293751219288, 0.00014164252206683159, 0.00013704231241717935, 0.00014844984980300069, 0.00011707988596754149, 0.00011731955601135269, 0.00013324448082130402, 0.00011871681635966524, 0.0001094350591301918, 0.00011810762953246012, 0.00011049823660869151, 0.00013410592509899288, 0.00011497953528305516, 0.00013433601998258382, 0.00011197079584235325, 0.00011309507681289688, 0.0001018574257614091, 0.00010412515985080972, 9.7071424534078687e-05, 0.00013557446072809398, 0.00012733720359392464, 0.00012815461377613246, 9.7614560218062252e-05, 0.00011999283015029505, 0.00011164259922225028, 0.00012230202264618129, 0.00018733741308096796, 9.571920963935554e-05, 0.00013675953960046172, 0.00010454514267621562, 0.0001449038099963218, 0.00011548660404514521, 0.0001282108569284901, 0.00012553509441204369, 0.0001524280960438773, 8.5201507317833602e-05, 0.00010439749894430861, 9.875323303276673e-05, 9.6484800451435149e-05, 9.5716903160791844e-05, 9.4405062554869801e-05, 0.00012888695346191525, 0.00013753015082329512, 0.00010092609591083601, 0.00013832487456966192, 9.1602792963385582e-05, 0.00016061999485827982, 0.00011437235662015155, 8.6567059042863548e-05, 0.0001021805073833093, 0.00010537227353779599, 8.7775079009588808e-05, 0.00012018675624858588, 0.00010939071944449097, 0.00010219022078672424, 0.00013470655540004373, 8.8442546257283539e-05, 0.00011022435501217842, 0.00011894213821506128, 0.00011593943054322153, 9.072059765458107e-05, 9.2648850113619119e-05, 0.00011613155947998166, 0.00011237940634600818, 0.00011896661453647539, 0.00011713153799064457, 0.00010474831651663408, 7.2913062467705458e-05, 0.00011375058238627389, 0.00010273916996084154, 0.00013892205606680363, 0.00014987871691118926, 0.00016232537745963782, 0.00012925609189551324, 0.00010595411731628701, 8.3279461250640452e-05, 0.00010776258568512276, 0.00016477845201734453, 8.8804408733267337e-05, 8.262510527856648e-05, 0.00011064441787311807, 0.00011578775593079627, 0.00012147897359682247, 7.7422235335689038e-05, 0.00010506842954782769, 0.00011051016190322116, 8.4433748270384967e-05, 0.00011033506598323584, 0.00011586813343456015, 7.4036688602063805e-05, 9.7458141681272537e-05, 0.00016830848471727222, 8.3831771917175502e-05, 8.8156397396232933e-05, 0.00010306672629667446, 0.00010752479283837602, 9.7885262221097946e-05, 0.00012263705139048398, 0.00012858917762059718, 9.6342075266875327e-05, 0.00010955260222544894, 0.00014183773600962013, 8.4678140410687774e-05, 0.00011095172521891072, 8.0972458817996085e-05, 0.00012624397641047835, 0.00012597189925145358, 0.00013671674241777509, 0.00011673381231958047, 9.9437449534889311e-05, 0.0001020061899907887, 0.00013625189603772014, 0.00012976241123396903, 0.00011812312732217833, 0.00013115793990436941, 0.0001357315486529842, 8.7691070802975446e-05, 0.00011037146032322198, 0.00016357185086235404, 0.00010056918108602986, 0.00012561207404360175, 8.4181046986486763e-05, 0.00011123667354695499, 0.00013493961887434125, 0.00011673470726236701, 0.00011908446322195232, 8.8860950199887156e-05, 0.0001001658893073909, 0.00011849839938804507, 9.2406931798905134e-05, 0.00010760318400571123, 0.00014208826178219169, 0.00010230523184873164, 0.00011513638310134411, 0.00013749608478974551, 8.0414276453666389e-05, 0.00011569658818189055, 8.6779546109028161e-05, 9.8870521469507366e-05, 0.0001417923194821924, 0.00011385048856027424, } }; const TfLiteAffineQuantization quant23 = { (TfLiteFloatArray*)&quant23_scale, (TfLiteIntArray*)&g0::quant9_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data24[336*1*1*56] = { /* [0][0][][] */ -24,90,12,-127,12,-51,105,-30,19,9,-1,-17,48,54,-63,16,-26,-54,43,-40,-3,-2,20,-23,25,73,46,19,21,-26,52,46,25,41,-17,-88,-41,-36,44,-6,10,83,-51,-7,-1,-32,25,-63,-67,-7,-8,-15,109,-58,-45,-54, /* [1][0][][] */ 68,-34,-93,22,82,-33,-15,23,66,-15,4,-40,-127,-33,18,-7,6,-21,-122,-13,31,-9,27,54,-74,66,16,38,68,62,-56,37,8,27,49,36,-9,-54,107,-81,64,-20,-55,5,101,66,54,-97,9,-60,-21,6,65,-89,-36,-74, /* [2][0][][] */ 61,-17,-23,-86,30,127,21,66,62,-31,90,-49,-69,34,64,18,-1,-89,26,28,47,-18,-89,112,110,90,-11,-95,-101,31,95,22,51,-18,17,1,-19,-32,-120,-41,16,31,-38,2,11,3,-16,95,-33,23,7,-90,-33,16,57,-54, /* [3][0][][] */ 37,-48,41,-3,-127,111,-28,-27,10,51,-2,41,-27,11,29,-5,-86,48,0,-26,-29,-16,-23,20,25,83,60,-3,-18,-12,-24,-41,-46,88,-27,-50,-34,31,21,-55,56,-41,1,-33,26,-44,56,48,26,-92,-4,-42,93,-26,43,24, /* [4][0][][] */ 115,-3,62,10,23,-47,52,10,-35,29,-9,31,-27,-3,49,-79,75,-29,44,37,12,-26,-79,91,25,42,-58,-65,0,-126,-22,35,-29,39,-29,-127,26,-32,63,100,-43,96,47,55,59,-34,-56,50,-56,22,41,3,-27,13,-24,-82, /* [5][0][][] */ -41,56,16,-27,84,61,37,-53,102,69,67,-14,10,83,104,-14,20,77,19,82,8,16,-50,0,-38,-47,14,97,-41,-33,43,4,-15,127,-39,29,-76,31,-42,111,14,-13,27,11,68,-26,59,54,0,-68,28,-40,98,-67,-84,0, /* [6][0][][] */ 17,-46,39,-8,55,102,-125,-72,-26,-67,2,66,-51,-27,64,74,83,-8,-75,-17,5,0,-18,-52,0,-54,-14,-29,25,-127,-17,-47,-41,-22,54,50,-28,30,-67,27,9,4,-26,-2,41,-72,-83,62,-25,12,19,24,48,-58,-19,25, /* [7][0][][] */ -20,-42,42,-48,85,0,-3,-12,6,26,20,108,-127,-49,0,27,-54,-25,-71,97,-95,-22,11,110,-36,-10,-57,-27,84,29,-55,2,16,10,-62,81,-7,-50,36,82,-7,24,-33,-11,22,-38,56,-26,54,-27,-12,-47,50,-2,-36,-56, /* [8][0][][] */ -114,66,63,-34,-69,-36,-15,-19,44,-43,35,-60,2,117,28,-14,-40,5,-11,15,11,-36,13,-14,-28,108,-35,-39,2,-95,42,-40,-50,3,-74,-96,19,-65,0,-75,-49,38,-40,-29,127,64,-57,3,37,-5,-35,-43,-86,25,-11,12, /* [9][0][][] */ -10,16,9,-60,0,45,-119,74,2,24,4,-65,22,-94,71,61,55,-85,-7,-40,37,-87,-33,-112,-63,63,24,28,-108,12,-55,-20,71,-72,30,-44,45,-88,114,-94,-67,-9,-62,21,-83,-42,-53,-10,32,107,-15,-11,92,-127,-51,96, /* [10][0][][] */ 71,89,13,61,78,-73,97,-37,77,-75,71,-89,-14,-65,49,13,-46,42,-27,40,-36,65,-92,-114,-98,-25,-42,-122,127,50,-65,66,-9,93,-59,-92,-1,117,-84,-76,-39,-114,-21,18,40,-2,-52,29,-62,42,-76,19,64,-10,35,-15, /* [11][0][][] */ -73,-9,13,88,69,-76,37,56,55,65,-43,-10,61,21,26,-45,-69,-59,-12,36,-23,-25,-35,19,-70,-27,44,-5,58,-111,21,-30,-23,80,1,-26,84,36,-32,24,1,27,-39,-52,-58,-50,-43,82,-30,-127,-98,57,57,-53,-61,20, /* [12][0][][] */ -49,55,25,14,1,77,-30,-67,85,-72,-69,14,30,54,48,-90,8,22,50,43,-53,10,70,-62,16,-8,-101,-80,0,35,106,-38,-60,30,-78,127,-44,28,49,49,-54,59,-46,-62,31,24,78,39,-49,-14,39,-63,1,10,-63,9, /* [13][0][][] */ -93,-65,-58,-38,-84,-67,-12,-73,-50,-18,-22,4,-7,68,38,3,9,-60,-81,-96,-21,46,-18,38,-48,1,63,4,49,-29,-39,25,-61,-16,-42,30,-45,-57,41,-35,40,-127,-8,13,52,-71,5,-20,92,-75,53,64,-50,21,-70,-1, /* [14][0][][] */ -79,-43,-6,32,3,31,-45,0,-49,14,-14,-45,-39,44,21,11,-51,-49,-2,22,-4,-33,-27,65,-27,-28,27,80,55,51,85,-38,-15,37,4,-65,-89,83,95,-62,-52,-50,39,4,-54,1,127,-50,-71,-73,25,-21,43,-64,-8,86, /* [15][0][][] */ 29,23,-64,5,-2,-10,17,65,-22,-42,6,-3,-52,-17,25,0,-48,-77,37,-28,38,29,-13,-2,18,69,79,27,3,78,-90,-54,-13,-40,-38,127,-4,-27,29,29,-36,33,-33,2,59,74,34,62,-26,27,46,46,-21,38,32,-26, /* [16][0][][] */ 58,41,-58,-91,-13,-10,5,-40,-44,-56,-52,-53,-46,18,69,-26,14,-9,-19,-11,-19,-32,38,38,29,36,-72,26,20,-37,-33,-48,-45,-59,-1,-40,-127,-7,75,22,-32,32,3,79,-33,18,1,-15,-50,10,-39,-65,5,64,50,76, /* [17][0][][] */ 49,34,-22,29,-20,43,2,94,71,-26,25,13,38,-31,-61,35,-60,-1,-16,23,21,-76,-119,78,30,24,-69,27,59,-1,-40,-19,1,-21,19,-44,3,88,-71,-46,18,31,-77,105,14,-44,22,-70,-38,-29,-16,-127,39,-63,32,24, /* [18][0][][] */ -33,-80,22,112,68,29,68,18,20,24,-53,36,10,-8,-14,4,27,27,35,-8,-17,-90,-15,-26,-120,62,-44,-110,-9,-43,-62,-75,-69,6,37,43,-22,7,-56,-127,-5,-5,-57,52,-32,5,58,-40,-101,26,-4,9,104,-19,-9,3, /* [19][0][][] */ 15,19,-98,-26,40,-63,66,31,76,-48,34,-31,16,53,-1,-45,21,-127,-14,-82,61,35,36,-28,-36,-54,60,-11,-61,24,20,64,24,29,-68,-29,64,-1,92,23,12,-48,44,-2,-51,6,-79,7,50,23,42,-71,33,-19,14,-34, /* [20][0][][] */ -35,18,0,18,83,47,-50,3,-54,86,-78,-17,8,10,89,20,18,13,-21,-29,-38,59,5,2,-74,31,-57,-23,-5,-91,58,79,-75,-45,-116,-91,-15,9,64,66,51,67,3,86,-38,-103,9,127,-102,-3,47,83,51,8,9,36, /* [21][0][][] */ 42,-74,11,-40,59,-1,-11,45,-50,-41,35,-127,13,57,42,-67,9,-85,47,-39,59,15,66,21,26,38,49,38,-45,-62,22,-40,16,-61,14,12,-3,-18,8,24,-1,-17,38,16,-46,-21,-13,-35,-40,-19,24,9,26,-50,22,23, /* [22][0][][] */ 3,88,2,55,-36,-38,22,-1,25,25,48,58,75,-49,19,-102,18,24,-43,-42,26,20,4,5,-127,-51,-69,16,34,64,4,54,-73,-25,44,16,-18,47,-20,-85,-46,-23,-5,-48,28,4,-18,11,51,47,47,-5,-32,-16,-49,32, /* [23][0][][] */ 39,92,-30,-18,-34,-49,12,-52,-38,67,58,8,33,-19,-2,-9,-28,-24,78,-116,-33,-39,-42,79,-74,-40,8,-38,-18,-14,30,-20,-4,39,17,15,-42,-24,-6,56,-10,26,-14,48,40,-26,53,27,-127,19,-9,24,17,-10,36,5, /* [24][0][][] */ -12,18,15,-45,64,36,-25,-29,-9,60,-22,-84,50,121,19,-79,-57,-19,64,52,9,-32,-70,90,27,-53,-27,11,-21,39,-53,19,30,46,-33,4,28,-29,-23,40,-3,-93,-103,-127,47,29,-112,39,27,46,-43,35,-69,18,-28,-5, /* [25][0][][] */ -21,-6,17,-14,-13,-9,46,38,30,4,10,-22,38,3,-17,-2,43,5,-39,43,74,82,17,44,52,21,-41,-51,-25,59,-9,2,19,-73,-66,32,8,31,-2,-56,88,56,10,38,54,25,-38,70,10,-11,14,-20,-127,38,-4,52, /* [26][0][][] */ -62,-22,57,-2,38,-60,-16,-37,44,1,14,-56,45,-65,26,-50,-3,-50,54,0,-30,3,127,44,0,-103,0,-50,49,8,-44,0,30,78,70,-26,-14,112,6,71,-123,46,100,34,-41,9,83,-40,19,72,-11,-58,60,-118,-47,19, /* [27][0][][] */ -44,-107,30,-2,-61,-39,10,-30,-18,2,50,-45,-40,120,65,-58,-17,-37,23,15,25,-21,84,-28,33,10,-20,-9,43,19,56,-127,-58,94,-22,-65,-12,-85,120,37,52,98,-46,45,-27,-50,76,-89,-57,70,28,-52,-67,-50,-94,11, /* [28][0][][] */ 46,-25,13,23,127,-11,-42,38,-11,15,9,10,9,-65,-59,-24,66,-40,-17,-35,-67,37,42,124,-42,-48,55,47,-102,99,-33,59,-57,16,-39,82,-86,-13,64,89,107,100,-40,14,-108,40,-13,-43,-53,-17,-19,-23,33,-108,18,-12, /* [29][0][][] */ -24,-43,8,58,74,-37,21,30,59,66,-1,-20,-36,31,-19,-75,-15,-8,17,13,11,-127,-16,53,-51,-2,-45,99,38,80,-21,1,73,8,10,2,26,-14,85,42,-43,33,-35,-23,43,29,81,45,-36,35,31,46,-28,25,-63,69, /* [30][0][][] */ -61,-78,-52,30,-37,-27,-6,-107,34,-75,-4,-42,75,45,-16,-18,68,66,-53,32,-72,81,25,-6,127,1,-80,-20,9,-10,46,62,19,25,-45,25,16,-31,73,34,62,48,30,-75,35,-17,13,-21,58,8,20,24,14,14,76,-47, /* [31][0][][] */ 83,127,-63,-8,-63,-50,-110,-21,-15,-26,18,36,3,86,-3,77,41,76,-35,21,49,33,59,61,-13,71,67,8,-106,68,-38,18,-14,-96,35,48,27,39,-23,-44,-15,-65,-48,43,37,27,34,6,43,98,56,59,-99,9,42,65, /* [32][0][][] */ -60,127,-34,2,56,-11,28,10,-13,38,44,77,-28,22,84,-89,5,-50,-32,-80,3,-51,9,-40,-13,-31,104,-58,34,85,-29,25,-12,122,-35,2,-64,43,29,42,-29,-10,19,-19,45,9,-10,-54,0,65,-40,31,44,-4,13,12, /* [33][0][][] */ 33,-69,30,-54,29,41,-49,44,-19,-82,-25,91,74,-7,-21,68,-46,-17,17,-76,-26,7,61,49,8,46,22,14,42,-36,-29,41,17,18,46,87,-89,-17,-67,-47,-22,4,61,25,80,-24,127,-6,45,-36,13,12,43,-26,32,46, /* [34][0][][] */ 54,16,8,-82,57,-33,-13,15,-51,-69,12,14,-69,9,3,-53,-11,32,6,-84,78,8,72,11,60,-4,-9,24,-12,-56,52,8,56,51,-68,-33,64,32,17,19,80,40,-2,30,76,98,-127,28,30,-25,-55,49,-21,76,-35,58, /* [35][0][][] */ 71,26,127,23,-13,-39,-46,21,100,68,-38,59,76,-21,18,41,35,40,19,-23,21,26,21,1,-33,64,-80,11,-39,-85,-109,-43,81,-9,29,51,45,82,-74,59,29,73,-79,-113,90,-49,-16,-30,20,10,-58,20,66,-9,86,29, /* [36][0][][] */ 86,-99,52,-2,-62,52,-99,-21,72,38,-65,-18,34,-39,33,42,-101,-127,10,15,3,-77,-121,9,-20,-41,-103,-56,45,51,-76,26,-18,69,-40,69,-41,48,15,-44,72,42,6,-24,-14,-39,-27,-43,-104,15,-26,31,36,-40,76,89, /* [37][0][][] */ 66,26,65,103,49,-52,-55,5,-22,-27,-75,63,-29,1,43,32,12,0,-43,46,38,73,30,-14,64,-23,-20,-82,18,-48,-16,6,-19,-30,15,66,80,22,-74,47,39,-1,29,-47,34,-52,127,27,49,-17,68,-51,55,-53,-76,0, /* [38][0][][] */ 100,-110,-80,0,-124,65,35,-28,0,-69,43,-111,-57,-98,26,67,-51,99,-37,30,-53,-8,39,94,114,-118,94,58,-61,54,-30,-12,58,7,-36,88,-102,17,-9,37,-78,-58,-94,42,127,94,-39,-26,3,99,-94,-11,-15,27,36,11, /* [39][0][][] */ -39,30,-21,3,-87,127,60,-19,-43,36,-113,96,-28,73,-5,-46,87,28,-37,0,10,-17,-34,27,9,29,8,77,-21,-51,-39,-43,8,28,-4,7,-40,-25,-6,-82,59,25,19,8,101,-18,17,75,-13,41,42,89,-51,-99,24,-36, /* [40][0][][] */ -3,17,-59,-60,-79,31,86,2,-51,-15,-76,45,-87,-53,-34,-54,8,-99,44,-41,-61,0,4,47,80,-21,13,8,48,-59,-16,101,-28,14,-58,36,-15,29,-3,-24,-42,96,27,26,-86,-40,-80,127,2,54,20,-44,-29,-71,3,46, /* [41][0][][] */ 27,-4,-56,24,90,-2,30,-56,118,53,41,-125,-30,1,-6,-64,-97,7,52,-53,-88,-118,-73,43,-80,1,72,127,-42,102,-101,-59,-116,7,-23,59,-98,-18,-60,56,60,53,45,-33,23,29,5,46,-72,-21,-6,2,-51,67,-38,-2, /* [42][0][][] */ -35,15,-23,-71,95,61,-6,72,-48,-29,-45,0,26,6,-7,-85,-54,-67,-26,-9,42,-82,110,10,12,82,34,50,47,-67,11,31,21,-58,2,-35,-8,-127,42,-4,-46,-5,-38,54,-67,-49,-114,-16,-45,-27,-16,-42,18,41,34,9, /* [43][0][][] */ 22,-8,-30,16,78,119,7,-6,7,-30,-81,-96,-22,-46,40,26,-77,-83,85,11,-58,14,-72,-75,41,53,60,107,-54,20,0,46,-101,-30,23,13,52,2,-37,-19,126,63,71,59,-4,-50,-7,-8,-32,-8,73,127,19,-87,30,-21, /* [44][0][][] */ -29,-22,-2,43,-83,85,-25,-41,32,-22,-30,24,-71,17,42,-27,-3,-20,10,17,27,-37,-55,127,-14,68,0,9,3,21,39,-18,-28,10,-37,-28,-43,-11,18,18,44,36,-35,44,-48,23,-43,-121,-42,-4,63,-36,-47,8,-97,75, /* [45][0][][] */ 60,38,-43,-57,-42,46,-96,41,-45,-59,8,50,49,-4,10,32,-3,1,24,-44,98,-10,-27,-28,110,-59,77,31,-21,91,15,-24,72,-102,-102,-1,77,-17,-23,-1,37,-8,-4,-43,-111,46,60,18,8,28,127,-47,-13,57,102,1, /* [46][0][][] */ 29,53,-4,61,-27,-52,1,-58,5,-56,38,-93,36,12,38,-30,-49,-48,16,75,-127,10,41,41,-108,34,-83,17,30,19,-74,15,-28,-33,16,112,-12,20,-13,-65,-26,-34,-90,-120,-1,20,70,-48,27,22,-28,105,-25,-58,-17,24, /* [47][0][][] */ -20,-55,49,90,91,-58,-17,31,-36,-33,-21,-22,42,-123,-4,-65,7,127,55,87,-36,28,25,-39,46,101,47,-19,71,-111,11,-17,20,-94,57,64,-4,-35,-62,106,-87,6,22,43,-25,-1,96,65,18,-41,35,30,-12,-19,-4,-10, /* [48][0][][] */ 98,-127,114,120,-9,31,32,66,71,52,-15,23,55,80,-30,-10,-4,-29,-38,89,57,-31,-15,86,-24,18,-5,-40,48,-20,21,-60,-12,62,-4,-59,-62,29,-4,28,33,83,13,28,-14,-25,-26,-7,19,-58,-13,-50,24,47,-63,7, /* [49][0][][] */ -2,9,45,1,-8,17,32,-5,-97,-53,5,-30,37,-127,-14,-14,25,-53,-13,-14,-35,-39,-14,13,27,43,34,-31,26,67,-16,-14,17,63,-50,-47,-59,9,34,24,2,-22,-11,-1,-48,-61,103,62,-35,52,21,43,8,64,46,-8, /* [50][0][][] */ -107,-9,76,40,35,-57,38,21,25,54,-64,-46,98,-87,36,62,21,-10,-120,-37,-33,-29,52,-21,-10,-30,38,11,48,-59,-13,-65,-31,21,-35,-66,53,-30,18,-18,-5,12,-2,20,31,-127,102,21,-33,-95,30,57,66,-25,-65,-6, /* [51][0][][] */ 6,18,92,30,-2,-97,-76,34,31,43,-8,14,3,-4,-116,16,-45,-3,-31,90,-49,4,77,67,-43,58,-25,46,34,30,16,-15,20,-15,-29,1,127,-16,-41,16,-80,49,60,-44,80,-65,54,-77,72,15,-48,64,28,-27,-29,80, /* [52][0][][] */ 91,53,-25,-3,52,116,29,-38,18,127,13,9,36,49,-96,-27,2,-21,11,96,-7,-14,65,-80,49,-29,33,25,66,49,-79,-42,79,24,-102,-10,37,0,-43,25,11,-81,-104,-104,-37,29,-11,4,65,-48,96,-17,55,30,21,-7, /* [53][0][][] */ -44,-53,22,-9,36,47,-25,26,-15,55,-127,27,44,-23,69,49,-10,19,4,6,5,-20,-33,-56,-38,13,8,7,-34,-70,-51,1,-53,3,-27,75,38,-23,16,-106,-10,19,40,21,83,51,-20,35,25,52,38,-25,-24,-24,-22,97, /* [54][0][][] */ -12,-24,22,-10,-12,76,65,42,-37,-103,-44,-55,-39,51,8,-98,-9,-83,-37,-43,16,-16,8,7,29,-24,-1,29,3,19,-6,69,-22,68,20,-84,-48,44,80,-2,83,0,86,51,5,127,-4,-3,-24,-59,-50,12,-22,49,-79,7, /* [55][0][][] */ 34,56,-98,32,40,-34,3,-70,111,92,-21,75,20,46,-10,-74,-40,72,27,-81,-46,-78,-51,81,-71,28,-101,-29,-27,8,-121,-37,-32,55,10,-12,-91,36,10,-57,-37,-74,-127,-113,5,22,20,-29,29,50,-49,-44,-19,45,11,45, /* [56][0][][] */ 51,-39,127,-14,-54,29,5,123,12,3,-62,16,8,43,36,-79,30,-45,26,-18,-90,116,-82,-72,-3,78,-50,17,49,35,17,7,-4,-100,-48,-39,116,17,46,-87,-78,-28,-119,2,-14,-88,22,24,-35,92,47,19,27,40,-59,20, /* [57][0][][] */ 19,95,-42,14,36,-83,-70,-19,75,23,-24,13,8,12,60,45,106,15,-17,-51,-50,6,-8,-54,7,71,-47,127,-19,-78,43,9,-2,-73,10,-26,37,-13,11,48,37,-83,86,11,-47,14,33,58,-21,1,77,-7,-72,49,8,-30, /* [58][0][][] */ -97,-75,-35,-53,94,-28,-29,-23,35,81,37,100,-21,68,42,36,-41,11,49,-5,-110,-102,49,-10,68,29,-60,3,-35,-61,127,-26,-113,124,46,32,5,30,65,110,3,-20,23,95,-22,17,87,38,4,-77,-103,-115,-69,-92,-56,-29, /* [59][0][][] */ -63,75,-9,3,-44,-4,-39,36,-42,-108,18,-9,53,44,-30,59,-2,-22,-13,-22,34,-72,-27,-30,68,29,14,34,-21,-127,19,-69,29,6,-78,-36,8,-26,-12,26,76,-2,19,-31,-69,45,27,21,-48,26,-44,-1,-63,22,3,-77, /* [60][0][][] */ 27,-18,-30,-58,-16,72,27,-70,7,20,-19,-79,-77,-101,49,7,0,98,63,-24,-24,-76,-14,-17,31,9,-20,-27,-38,7,-9,-54,26,20,-69,-123,87,-46,74,2,-55,26,17,26,-94,-19,-20,-19,-66,-65,62,-3,6,43,-104,-127, /* [61][0][][] */ 26,-46,33,-127,33,-15,-10,8,66,24,-33,25,117,90,-57,38,5,15,-23,11,123,32,-17,-26,5,-21,84,7,-41,72,-5,-62,0,54,39,-6,-77,39,-25,-72,101,-75,-24,89,-5,-23,26,60,8,-54,21,56,56,9,-20,-63, /* [62][0][][] */ -28,26,-49,49,-15,-46,31,63,-1,73,-28,-73,-85,-20,90,48,-16,-11,-39,40,110,8,-89,46,3,-29,125,-14,17,52,36,-22,42,111,43,-45,-76,22,64,61,41,-17,10,29,2,-19,-42,-93,-7,35,-71,64,-6,-127,-49,7, /* [63][0][][] */ 65,13,8,-7,-9,-22,5,-47,-14,-7,88,-82,-59,4,13,-71,-3,42,27,-16,19,-29,38,57,-39,53,-36,-1,-38,-51,-29,-34,22,12,-31,-127,-29,-83,60,25,-6,52,-21,30,-77,22,-34,37,-68,-7,48,29,-44,-78,-20,14, /* [64][0][][] */ 83,62,-37,22,-55,5,27,-10,78,6,36,-6,33,-41,-53,-15,54,-54,21,40,-59,-70,-127,111,34,-52,18,53,-28,-25,-54,-88,2,2,-76,-46,-12,38,-75,70,-98,5,89,60,71,39,-17,-103,17,12,-62,63,51,-5,-23,48, /* [65][0][][] */ 90,43,5,13,9,-11,-29,-48,47,-57,-25,1,68,46,-32,27,94,39,33,-33,22,59,30,-35,-54,-58,32,-38,-29,-62,121,44,-10,-59,-8,101,-14,-51,-65,-12,69,-1,127,63,33,-16,37,22,34,12,-1,-35,-51,-16,-47,-11, /* [66][0][][] */ 3,35,10,64,-34,43,127,5,113,-32,22,93,81,-26,41,87,9,-1,2,-109,47,64,-41,-7,22,-57,122,-53,-29,73,55,29,23,29,-28,70,23,-45,-23,-20,-2,-56,-18,-20,-53,-71,54,109,31,-4,21,-47,-90,-27,62,-19, /* [67][0][][] */ 74,-38,85,23,-51,-98,52,-23,8,-79,29,26,22,-5,-61,-33,-25,-28,9,82,-62,53,-34,106,-120,91,1,-31,9,-16,-42,17,-93,50,-35,15,-46,7,-10,3,12,-40,-118,45,-3,-90,-28,-127,56,38,83,-2,76,27,-31,-27, /* [68][0][][] */ -66,-7,-74,-1,110,57,-3,-36,-71,10,85,42,44,-29,-39,-30,40,67,-35,-57,63,-47,0,88,-14,-8,34,-4,-36,-39,-127,56,-21,73,8,-107,-45,4,-66,-65,6,38,37,-104,-76,14,4,52,-49,13,-19,7,-73,-30,-74,-90, /* [69][0][][] */ -102,1,19,4,11,-88,54,-6,-51,-54,-7,39,84,44,-40,-3,-44,-14,37,75,19,22,-127,91,11,-98,4,67,-5,62,7,24,10,-75,-49,-27,-28,-65,65,60,42,-84,-4,42,40,76,-5,28,-6,48,37,-48,1,16,4,20, /* [70][0][][] */ 99,-84,24,26,37,-52,48,-64,-42,-19,-1,-76,-27,127,-1,15,9,-66,34,-6,15,17,-36,-74,20,72,-68,13,-24,64,-34,-61,-44,72,16,-15,14,11,-53,81,-69,62,-10,-45,-15,42,-14,-103,-58,16,36,25,17,-101,22,74, /* [71][0][][] */ -7,-69,120,16,3,84,-10,-34,-70,-39,-104,-2,-68,25,16,-26,52,-113,-44,22,-45,-21,-43,-16,-36,-84,59,40,20,68,-40,-71,-85,36,68,82,-41,127,26,55,6,-14,-29,-44,-68,3,-41,-82,-90,-5,-60,-80,-63,19,-82,39, /* [72][0][][] */ 67,98,-14,3,-22,19,61,-45,20,2,57,-6,-6,38,-39,7,-31,-47,20,9,25,-4,-46,68,-22,-120,7,-15,23,33,21,25,-104,115,-48,61,2,79,-69,1,0,-127,27,106,-57,-9,58,23,-22,-51,-68,66,43,40,-15,-72, /* [73][0][][] */ 16,13,6,72,-9,-72,68,-77,48,-22,-106,1,-3,58,-106,-53,-71,-50,25,28,31,83,18,-2,-10,-67,20,63,-21,-104,88,-94,-30,-48,1,-14,-43,-40,62,4,96,-26,-50,20,-69,21,-1,-127,-28,58,90,-52,47,27,-10,94, /* [74][0][][] */ 69,-3,57,115,-47,79,-3,7,-91,6,67,68,36,39,86,72,16,-69,-23,-41,19,-7,22,122,-7,-45,54,-14,66,1,-73,-106,57,38,3,-62,-21,12,9,7,15,-73,77,53,-14,18,-91,-17,45,-33,1,-127,49,-49,-30,31, /* [75][0][][] */ -22,7,75,-97,12,-20,-114,13,53,-2,-100,-46,80,-64,-22,46,12,103,42,84,-87,77,-119,-66,99,44,-110,-39,26,-47,-12,7,9,-5,-11,-42,37,15,52,-124,-127,-42,-115,20,30,63,27,-15,-85,39,-125,-32,-52,-51,-47,2, /* [76][0][][] */ -23,9,63,-55,-35,8,50,-37,31,-68,39,-33,22,33,-74,42,32,-67,96,-78,61,-28,-80,20,-5,-72,15,-17,-69,-108,-23,54,-45,-9,-117,-13,-36,-127,-94,37,53,-59,-16,82,2,-53,36,57,45,-42,58,-69,-79,92,-113,-84, /* [77][0][][] */ -14,16,-3,127,-54,-74,-77,-65,20,82,-44,46,50,-32,5,84,23,46,-54,71,72,28,81,33,60,90,-17,-33,114,-11,73,-15,-70,115,54,77,-125,38,34,-40,-2,59,-21,-41,-100,-74,-83,17,5,-91,24,-43,0,-34,-72,-94, /* [78][0][][] */ 49,28,15,-8,57,-4,-57,-111,-6,-47,82,31,55,107,-4,3,-16,-43,-72,-102,-31,76,116,-63,-24,-68,-10,-7,93,60,23,-71,-76,35,-49,-32,-17,-7,-8,25,-127,-15,-15,-54,5,-21,-30,-4,-9,-11,-24,-6,5,-15,-103,25, /* [79][0][][] */ -101,-87,41,-11,2,-87,-22,49,4,-48,-72,58,-52,33,105,-21,44,-42,-60,-51,-106,-41,34,-89,-72,-83,-92,24,58,71,-28,36,-90,35,-47,-100,65,-62,2,14,-81,-16,-90,-52,107,-116,-73,127,-74,-10,-50,-4,-27,38,-9,53, /* [80][0][][] */ 28,91,8,2,-60,19,-22,-22,53,-26,-16,-73,-34,-25,-44,-97,-3,-19,-2,-127,17,10,-43,9,49,-34,-33,-53,-1,17,-5,58,15,-23,-17,-39,-14,0,43,-49,26,13,-32,-19,-76,5,-33,-43,-43,-36,-12,-44,15,6,20,-48, /* [81][0][][] */ 47,71,31,49,-15,-32,-64,-10,22,69,53,90,62,15,-47,-7,41,12,60,52,-63,-60,8,63,3,-29,-30,-9,5,-15,-26,-63,59,19,-45,1,-7,-19,2,60,-23,-13,106,-30,35,0,78,-57,26,-18,-39,-9,-6,-127,16,-42, /* [82][0][][] */ 65,-37,35,-3,62,34,14,-46,9,68,-116,-4,-35,10,-75,41,-8,31,-62,59,17,-49,-45,-17,45,-36,58,-9,-63,21,-13,61,18,127,-25,-5,-77,-26,-20,18,-102,-16,-81,38,-63,-30,14,-54,103,-110,3,1,77,61,-111,-52, /* [83][0][][] */ -30,61,29,-5,87,-2,-17,-13,-33,45,40,5,32,22,45,-29,88,54,26,34,-35,-6,15,21,4,55,1,-18,28,8,-11,-24,20,-18,39,13,-65,-3,77,51,23,-31,54,127,28,-21,-16,38,-37,30,-35,33,-10,-31,0,4, /* [84][0][][] */ -67,-26,3,-10,-63,1,27,-32,41,34,20,66,-4,-19,57,27,83,18,0,51,-39,-51,-48,-51,-46,28,-127,-58,-76,-76,-68,-30,-34,52,21,-27,51,66,67,41,77,91,-34,-31,-55,-49,52,-60,0,-45,-23,-43,22,-15,-36,-97, /* [85][0][][] */ -76,-56,-20,-5,-48,-21,1,68,-24,-31,-1,-104,-17,2,33,-26,-127,86,63,35,-53,65,10,-67,58,-39,68,-42,-95,54,-32,-55,35,17,5,50,63,-39,-8,-30,-68,0,-46,-33,-22,-7,-30,-26,-43,23,85,-5,-30,-54,38,14, /* [86][0][][] */ -2,54,-111,-31,68,8,6,-34,48,14,-29,18,-62,-4,-31,32,4,-13,-62,-26,-87,-33,-13,-14,32,-35,35,99,-22,44,73,-107,75,6,-91,-89,7,-6,99,47,26,6,52,-26,44,50,29,-88,-55,7,-28,-127,-9,-18,27,-14, /* [87][0][][] */ 27,35,6,-97,33,38,30,-7,-17,25,24,5,-17,31,-9,-76,55,-8,40,-62,5,-16,-4,-12,23,-30,-14,-127,-21,-59,-26,65,-66,-47,79,-4,-71,52,68,64,34,8,4,-37,17,-23,-3,4,0,35,-12,30,-24,-65,57,19, /* [88][0][][] */ -72,19,-41,18,56,-10,16,-49,-52,0,12,66,-8,20,-38,-25,-58,45,-41,-87,-93,-34,7,56,-36,61,12,-48,53,14,-67,-45,2,-55,-49,-127,-109,7,79,1,-43,22,-32,17,25,75,-28,14,-47,23,56,-19,45,37,37,-25, /* [89][0][][] */ 66,21,-36,-10,47,8,-127,-16,6,90,4,-17,-20,-58,-32,9,61,-65,8,73,-22,-49,-77,-81,-56,12,-25,-51,1,12,-8,127,-58,-69,125,-1,76,-24,24,-17,48,60,-14,-8,47,31,82,74,30,60,18,71,-18,-29,-74,17, /* [90][0][][] */ -26,98,58,60,-26,62,98,14,5,-6,-14,92,-20,-19,-51,75,-62,26,10,67,-15,76,-23,-84,-90,26,-13,-23,40,-29,-40,-53,43,29,16,27,85,20,-37,-97,28,114,63,-29,-40,-23,48,-63,35,-11,104,127,0,26,-61,39, /* [91][0][][] */ -14,66,9,-20,-24,-8,1,-57,36,-71,-48,-1,-70,-13,21,-24,7,-76,-12,52,-21,-10,34,-16,-70,85,-11,35,19,33,-90,41,-17,-29,16,-51,23,-35,27,-80,-85,90,-69,-34,57,27,48,32,-107,55,-27,127,-25,56,-10,4, /* [92][0][][] */ -2,-28,-37,68,7,81,-89,6,-106,-19,28,11,55,-32,-69,42,-7,-12,33,16,42,51,36,-64,78,4,7,108,-60,-117,25,74,-5,-88,-49,60,32,40,-57,61,34,36,-1,-127,24,49,29,73,-16,-71,30,23,-74,37,35,-54, /* [93][0][][] */ 111,-127,-15,-51,17,-1,-84,9,40,-13,-61,94,-16,-39,-58,-64,-4,-1,72,-43,14,15,2,-100,-19,87,-55,-26,53,41,-33,35,-17,77,37,48,-21,89,30,7,40,-8,26,29,-33,57,-22,-40,3,-69,-69,14,56,-8,5,-18, /* [94][0][][] */ 25,-52,105,21,34,16,11,95,38,-61,-26,-70,-98,-8,-8,61,88,9,19,62,-33,38,-106,-99,-25,-82,-66,39,-10,28,-69,30,-127,110,-72,40,-55,78,25,-29,-46,7,8,22,83,14,53,-6,43,-47,-3,44,6,-66,23,-102, /* [95][0][][] */ 46,-89,17,23,0,52,40,-2,-50,6,12,12,-31,2,-37,-12,-93,-18,-32,7,-3,46,39,9,30,30,26,127,36,-56,56,20,66,118,-65,-73,61,-28,1,44,84,29,-103,-5,-43,-20,21,-8,20,-30,16,-2,-41,83,25,-67, /* [96][0][][] */ 20,25,88,-44,29,-41,34,37,-46,-3,41,-61,-5,-88,49,-4,97,56,-59,-47,3,-74,-6,-42,-68,-67,42,83,43,14,-34,4,22,20,-1,-127,30,25,-39,36,-2,21,-61,-36,-54,22,-61,-33,-5,-34,66,-5,-81,-28,-42,59, /* [97][0][][] */ -54,19,-45,25,77,40,-17,6,31,32,25,11,-23,-2,-24,25,-2,9,17,-42,-45,-12,25,28,-38,57,-68,-13,28,-46,127,-19,-10,29,-64,25,-38,-13,-1,-41,-52,-62,6,47,22,61,33,2,-22,23,38,-16,-77,58,-2,30, /* [98][0][][] */ 61,40,9,45,-6,-12,21,-25,-41,10,-6,1,3,-56,11,31,-16,89,-4,-10,40,-16,34,-18,31,23,-18,-57,2,18,-26,9,-24,-12,-41,15,-53,63,17,29,-50,-45,8,-17,-127,-11,-36,-15,-60,47,-27,-17,15,5,0,98, /* [99][0][][] */ -39,81,48,-13,97,-36,51,56,83,27,50,7,29,9,42,-47,-4,-31,-2,0,5,-54,32,39,69,6,-63,20,-90,1,29,127,-48,-66,-42,-16,-90,52,14,5,-1,-60,103,-49,-39,19,-56,-50,41,53,-31,-58,-12,-55,-117,-21, /* [100][0][][] */ 71,69,-41,42,-70,16,63,-101,0,-33,-23,-14,14,-62,-22,15,-75,-63,-24,49,11,11,98,59,-40,-18,76,-2,-43,79,-70,67,-16,7,19,10,32,127,8,-66,-21,-23,-74,41,13,23,84,-97,4,26,-51,36,-6,-94,53,-12, /* [101][0][][] */ 64,-61,52,-10,-30,20,102,-99,-8,39,45,-106,33,66,-44,-13,59,-10,97,-39,11,-21,-18,-108,-72,-110,16,-108,9,59,-62,76,-118,-21,-38,103,32,4,-76,105,55,6,-83,26,24,53,-7,-4,-13,-69,-45,127,-4,-21,-53,-77, /* [102][0][][] */ 16,63,10,8,99,39,2,-5,11,-30,9,-55,-10,69,73,-84,-46,51,-8,49,-3,-23,56,82,49,20,18,69,21,-7,14,-63,-12,36,-114,-16,9,-69,80,-42,28,-127,-65,-22,18,26,8,-76,-98,9,-61,-28,-70,-25,35,45, /* [103][0][][] */ -4,-101,20,95,11,-59,62,-29,-17,9,64,18,-2,116,102,22,113,75,24,-85,43,61,55,43,14,124,78,-10,56,29,33,-40,-50,29,127,21,14,53,-43,-40,-15,-35,-21,79,48,-47,-102,10,-42,-69,52,6,-73,4,10,3, /* [104][0][][] */ -57,64,-8,-50,28,-24,-34,31,-22,79,-15,21,80,22,4,50,-6,-40,-22,87,20,13,-4,-31,59,0,14,-19,0,56,-42,-31,46,-28,-16,82,-32,-26,-11,-68,-42,-127,-66,5,40,19,20,-66,-21,13,-6,-24,-13,46,90,-5, /* [105][0][][] */ -12,33,107,68,-7,-1,24,30,-66,-82,4,-29,-31,-86,-79,11,69,-29,70,-8,-11,38,-58,-83,3,6,-17,1,-10,-61,-63,-58,88,23,77,-24,22,38,-74,3,-8,5,67,-38,16,68,25,29,71,-27,57,-51,10,-18,127,22, /* [106][0][][] */ -39,52,2,39,-3,5,-79,-88,63,38,33,-4,-56,-7,-24,-70,44,-52,19,-12,8,-19,-60,31,21,-1,44,67,18,33,-25,27,-96,-52,28,55,-5,24,0,47,-37,19,-116,-52,20,-17,-38,-24,81,14,-38,-77,-91,127,-20,30, /* [107][0][][] */ 51,3,-7,61,8,-20,53,-68,3,60,-53,-41,63,-84,-19,-68,-8,62,7,40,-37,11,31,82,-36,43,-49,-81,6,-70,-38,-70,-73,47,20,23,57,12,16,50,-15,28,-16,57,92,80,96,-11,-22,-127,100,11,34,-46,-37,-30, /* [108][0][][] */ -69,-14,21,-24,0,-19,42,-24,-21,42,-14,-2,6,-28,-50,-38,17,-41,-61,-36,-72,-6,-64,12,34,3,42,-24,-20,-26,-54,-64,9,-10,44,31,-24,-13,7,-127,39,-54,-24,-14,1,66,-6,-75,-47,-92,60,48,33,-19,38,-41, /* [109][0][][] */ -78,-50,126,48,-27,101,26,-28,-103,-6,14,-43,63,50,-23,18,61,-42,-25,50,-56,30,28,42,-95,4,-26,127,103,54,58,31,47,-57,-65,-49,-5,-21,-1,71,-21,18,-36,24,-30,-93,-44,59,18,22,-2,-15,30,-62,40,-18, /* [110][0][][] */ 36,-37,-70,-21,76,-39,-16,-32,5,-24,26,-61,40,51,-28,-5,-39,-5,-95,-45,-54,-55,-25,87,7,-32,36,-39,-16,-9,60,26,-72,-69,-44,-2,62,-76,38,22,1,3,-32,-40,-127,40,10,-67,-12,-21,-92,-46,64,20,-14,29, /* [111][0][][] */ -17,9,-89,-48,57,-40,52,30,23,-39,-12,73,-27,-64,-29,-101,-17,17,22,-26,-78,-23,42,87,-127,-120,113,106,6,18,22,30,2,83,30,-107,-75,21,-4,62,51,1,73,79,-14,-23,5,8,-10,81,-78,105,33,-93,-3,118, /* [112][0][][] */ 1,-16,71,-20,-17,79,-18,50,-38,-21,-24,20,-41,23,-41,37,-52,-43,-25,8,-57,16,-7,24,35,32,30,-10,48,-2,51,-2,-50,7,-21,-88,-23,118,-27,-11,-17,-21,26,37,10,-61,31,-27,-108,-39,-24,-14,-7,33,-127,43, /* [113][0][][] */ 73,-55,-34,-107,-7,36,-96,-14,63,-109,10,13,-26,-64,31,-22,-82,-44,-2,-58,-45,-5,72,63,100,-46,3,-58,-127,68,8,-39,-46,43,17,76,68,-25,-1,14,28,77,-59,-51,25,-32,96,38,-7,-4,4,-33,-71,-5,23,7, /* [114][0][][] */ 4,59,-6,-3,-10,-75,-7,-43,51,-67,-55,34,-16,32,-39,49,64,-30,74,16,-13,41,-10,-53,50,-56,31,30,25,-17,42,-56,25,29,-23,80,15,-127,-60,-58,-19,-41,-117,83,-4,4,1,43,-42,2,53,22,54,68,23,-70, /* [115][0][][] */ -39,41,52,-52,29,20,-6,19,-45,-90,62,86,73,36,45,53,27,-47,44,22,-124,99,-72,5,127,-17,26,-79,15,-65,-15,50,36,24,-33,4,44,-56,-37,-9,-47,-69,52,-12,-83,19,35,-29,27,-46,18,-25,13,-20,-95,27, /* [116][0][][] */ 127,10,35,24,6,6,-35,-13,17,64,-41,2,-8,63,-5,-104,-27,26,-5,-12,-37,-66,71,14,28,-50,-37,-37,26,73,-16,-13,-38,13,-9,-11,17,-49,1,3,-98,-53,-51,-30,-27,-63,-35,-7,-18,-61,28,7,-52,76,-14,30, /* [117][0][][] */ 86,-122,-47,30,-66,25,-67,2,-70,-92,92,30,76,30,-7,39,-55,46,-30,45,-82,-76,76,-4,-76,-79,-78,-116,41,-109,-91,-41,-17,-14,-4,10,-44,-20,13,-81,-58,127,-45,121,-26,-16,-56,44,21,58,26,-60,-46,95,65,3, /* [118][0][][] */ -15,-43,78,-9,-61,-121,29,-33,38,56,109,74,54,118,-12,-68,84,-76,13,51,-45,63,10,-127,51,18,-67,-4,24,70,107,-88,44,-19,17,2,24,7,-36,-48,-8,51,-11,69,-84,24,74,-11,-39,-49,30,-49,40,-7,-76,1, /* [119][0][][] */ 25,-6,4,-1,56,-41,47,-103,14,-7,-15,-21,55,2,19,-87,65,37,-98,12,91,8,39,91,89,-99,-4,-51,27,45,-7,42,56,12,10,-28,14,52,-61,-127,65,68,-27,30,62,36,-66,-65,21,-6,-32,-43,17,-52,47,3, /* [120][0][][] */ 6,-60,-80,-6,-38,-122,-33,-76,74,12,8,41,68,-2,127,12,37,-14,-66,-41,-16,9,6,4,36,45,-10,-64,-12,-31,48,7,1,-38,-17,-36,5,-61,81,36,33,19,-8,-95,-15,4,39,-18,11,-28,-51,-31,-11,6,-4,-36, /* [121][0][][] */ -22,-16,-6,-28,33,42,-33,-21,25,-78,66,69,-9,46,19,35,8,48,-53,-77,6,-84,29,5,58,37,-25,-4,-78,21,88,58,2,29,78,15,46,5,12,-8,59,-92,-56,-47,-28,11,-68,78,-127,63,-6,-34,-36,-7,-36,-100, /* [122][0][][] */ 87,0,75,42,-48,3,-7,-20,22,19,-69,-51,8,1,-2,22,-18,85,56,1,7,-37,3,-70,-127,74,-79,-32,49,-42,-24,-81,-18,-38,2,-48,-104,-60,16,7,63,-15,-44,-47,-82,6,10,-59,89,-25,55,-52,71,109,-12,-57, /* [123][0][][] */ -80,-31,-53,-5,48,52,59,-38,74,-71,40,66,74,29,31,67,-8,95,-9,-42,15,-37,13,38,127,95,-3,-57,-25,52,-38,-48,65,31,-59,47,-26,-3,59,74,25,15,86,6,39,72,40,-19,-22,54,90,-8,-88,15,-2,-20, /* [124][0][][] */ 73,17,27,17,36,-39,-23,-31,30,-57,-84,81,-21,14,15,-51,-31,9,-127,39,-32,68,-5,-59,41,-27,-74,-33,17,28,-12,-10,-11,-10,-3,56,-11,-121,-85,-83,-91,62,21,-69,0,-4,-106,-67,47,-92,-41,24,1,49,-12,13, /* [125][0][][] */ 63,60,22,61,-9,-2,59,-9,-28,-75,-15,19,25,-4,-53,59,33,-18,95,-22,16,-7,-35,22,75,-3,-21,-1,-39,58,-21,-34,-54,127,-21,-5,-26,4,11,-25,-3,23,123,21,-31,23,35,16,-5,-40,-28,23,58,-20,-53,-9, /* [126][0][][] */ 24,-125,58,22,49,-55,-21,-89,23,-47,-33,36,-56,-127,29,26,-5,68,84,-38,-75,-13,69,-23,5,-8,-119,83,48,4,-7,-43,-24,88,40,-65,-10,50,33,36,-15,-9,34,3,-26,-4,41,4,-48,3,26,34,23,-29,76,-17, /* [127][0][][] */ 47,-6,-8,41,14,-71,57,-2,63,76,69,-42,-44,-4,-11,53,67,3,-11,11,-37,10,3,-10,-10,48,-66,-25,-127,6,-3,-9,55,93,15,6,49,55,-46,-44,-29,-30,24,-54,17,-34,-15,-64,-46,37,-57,-15,1,-96,27,-69, /* [128][0][][] */ 59,46,-76,-28,-100,33,-42,-25,-50,-12,10,-59,-11,-13,-44,3,-5,-2,-14,25,-105,-30,-1,45,-14,-40,-12,-25,18,127,-22,23,6,-38,-28,12,42,14,57,-44,1,33,12,39,77,46,-55,57,73,86,42,-64,1,-10,-14,-6, /* [129][0][][] */ 85,3,-93,81,-40,-65,-14,-52,-40,-82,-25,-18,-63,-23,48,-67,-90,37,-103,-75,40,-96,-88,-5,-75,-43,50,24,-3,35,0,-96,-17,12,36,-57,56,-78,-69,25,10,-4,-42,-59,7,24,-53,-114,-109,-31,-68,-127,-51,48,85,-28, /* [130][0][][] */ 45,-22,-45,-4,43,79,-11,-28,90,57,37,61,92,-12,39,-29,-60,-5,-38,-34,-98,-44,-50,42,11,-87,-127,31,-7,-59,-80,30,88,20,-64,1,31,-60,-84,-17,-20,-24,13,-14,-89,84,49,-14,-8,-50,-39,35,-79,-88,-74,-15, /* [131][0][][] */ 7,-53,127,-33,13,39,-42,5,15,34,7,69,11,22,-23,11,79,43,-45,-22,-67,-10,-4,10,23,47,0,8,23,-31,-35,50,-26,42,-19,-5,60,-19,-33,0,75,-83,5,7,21,40,-3,3,3,15,23,49,-10,-54,42,4, /* [132][0][][] */ 120,25,89,26,-4,-12,-6,75,-11,18,-3,85,-55,20,127,-36,61,-107,6,33,22,-71,34,-19,44,-53,12,-18,45,37,-10,-85,-17,-16,36,-84,34,46,-16,-58,-120,-67,-59,2,-33,-100,32,7,45,-72,49,25,20,-66,13,6, /* [133][0][][] */ 47,-15,36,-23,61,-26,-16,75,110,-13,-10,103,-32,-51,-74,-28,18,-72,8,-22,-87,39,-44,-44,18,10,-42,-49,49,-39,23,-19,38,2,51,-127,-88,-9,-52,-63,-48,-7,-5,-97,21,-4,-5,-6,-92,-63,-1,-49,-48,31,37,-12, /* [134][0][][] */ 5,73,66,10,13,26,-5,24,-31,4,47,60,-3,-25,1,8,-23,3,-46,-3,70,28,-16,23,-12,35,3,3,-33,-47,-11,-73,-6,22,-3,27,19,30,8,32,8,-14,-3,-38,-12,-39,-33,6,-45,-68,-19,-24,-45,-13,-9,-127, /* [135][0][][] */ -44,62,-105,-38,18,-56,-23,-59,-22,57,18,-9,-4,-104,4,25,37,34,50,-33,12,-22,6,67,23,-113,-31,-45,23,127,-44,-46,-52,14,91,-18,39,41,45,36,-71,28,-55,-73,-48,87,42,-2,-14,-65,-99,0,50,82,83,22, /* [136][0][][] */ -39,-91,35,-1,-7,-23,-16,62,-42,6,18,-3,-43,43,-31,-33,25,-31,-73,15,6,72,77,8,-5,127,28,-8,19,18,55,-61,-10,-26,-13,-4,-7,27,-12,15,-74,-17,43,36,-75,8,50,-87,4,14,12,-15,-7,32,54,28, /* [137][0][][] */ 4,-48,7,-21,66,-13,-26,-24,18,-55,90,0,-3,82,-6,-3,35,70,-35,18,-16,-39,-50,-4,27,25,-27,-45,-15,-49,33,-118,17,7,7,82,-10,87,54,-16,-24,16,-49,-91,38,43,30,-63,-66,127,100,-4,-29,48,23,37, /* [138][0][][] */ -33,-6,44,-21,6,31,-17,26,-8,-59,33,-5,45,21,3,4,13,1,-16,18,32,-13,9,-41,-33,-33,-49,-28,-43,18,-57,41,54,34,-127,-8,22,-13,1,-37,40,-11,3,-121,-25,17,56,28,-73,-2,29,80,-13,-50,58,34, /* [139][0][][] */ 16,-88,31,127,-122,-25,32,-18,-84,-36,-56,-13,-14,-50,-12,54,-1,-30,36,-13,0,12,33,-27,-37,-26,-35,15,-63,13,-9,73,-46,-27,-5,-45,-60,35,3,-13,5,-27,-57,-7,44,-44,-23,-65,46,-28,52,-69,88,-17,108,-74, /* [140][0][][] */ 56,-13,-20,34,-15,8,-60,-31,-40,-21,-30,15,-2,31,-54,24,59,-30,-17,71,18,-12,91,71,-49,46,-2,82,-30,-11,-38,-101,-8,-41,-50,15,-80,-15,16,-2,-68,-18,-19,43,-39,-78,-20,-31,-9,120,48,127,33,4,40,0, /* [141][0][][] */ -5,45,-41,2,-39,79,-113,-38,90,-8,66,33,-59,-63,-17,-33,-49,23,46,-19,-17,25,-37,117,-106,-78,-94,28,78,-127,-45,52,58,70,-114,86,40,2,91,59,1,7,0,-12,33,5,-51,-71,-7,-14,16,107,-4,22,-14,-97, /* [142][0][][] */ 13,13,47,12,48,-72,19,-19,127,-56,72,-17,34,37,-43,-71,13,7,-26,-52,-57,29,5,39,-16,-50,-73,-74,-40,-34,22,-27,-24,33,7,52,36,35,42,-70,-36,1,-17,1,-5,39,83,30,23,-24,-25,-15,28,-44,-26,-5, /* [143][0][][] */ -31,-92,-110,10,65,-51,-2,71,-17,79,29,127,67,-37,-42,-18,60,28,9,-79,-34,-12,52,33,-72,15,37,71,49,10,-106,-9,-18,4,-70,-93,23,-78,-33,57,-25,-9,-5,1,127,18,54,2,26,34,-44,63,-30,5,44,-84, /* [144][0][][] */ -127,-18,-20,-64,28,27,16,-88,30,79,-36,-83,-41,48,-13,-21,51,-38,48,-72,-38,47,51,-39,-25,-19,2,5,71,18,8,26,15,-14,46,-15,-49,-72,-3,-20,-39,5,-16,42,10,23,-18,35,61,-36,-1,-48,-7,26,-85,6, /* [145][0][][] */ -76,16,-21,8,-29,-86,-86,32,18,22,64,35,20,-16,-93,-16,81,-35,-34,-3,81,37,-49,-13,69,32,122,-22,-50,-1,1,127,-35,-92,-33,-2,-35,-18,31,73,-24,-18,-35,-18,-71,-49,-120,56,83,-23,58,10,41,-25,36,-4, /* [146][0][][] */ -28,17,54,40,-51,-44,103,33,107,79,30,60,57,-3,45,-6,32,-21,25,52,26,52,6,-14,66,-16,-110,-19,-32,63,-14,-56,91,70,83,53,-35,52,127,-31,-7,-126,35,-47,-123,-68,58,-35,-37,41,-122,-68,19,-27,-8,83, /* [147][0][][] */ -34,-31,46,10,36,-68,-3,19,-10,45,9,-127,-45,-7,-58,-10,53,57,-53,50,-25,-90,-60,21,-39,-51,-29,-40,-17,7,-73,19,-1,84,21,5,-65,-30,-4,49,0,4,-56,-41,21,-61,-48,-20,65,12,20,-17,5,-18,-12,-25, /* [148][0][][] */ 29,14,25,83,20,73,68,-127,37,-24,-40,42,21,-10,-110,-12,-33,60,16,-114,-57,51,25,-105,111,-85,28,20,-25,23,11,13,-25,-52,-68,28,5,-20,-35,40,12,76,-40,14,52,-34,8,17,95,31,15,-36,60,-22,-30,11, /* [149][0][][] */ -9,40,-20,27,-40,6,100,-22,17,38,70,11,41,52,1,-32,0,-97,53,68,35,-18,-49,44,81,108,43,-1,-27,98,-43,-42,-7,-14,57,-76,-127,-36,61,44,52,-71,-28,87,13,-82,31,10,-13,-38,23,-95,-18,-57,33,-9, /* [150][0][][] */ -1,70,55,24,-60,-18,2,-44,-27,127,61,-29,91,14,-36,43,-19,-51,84,-17,-78,56,18,-64,90,38,41,-8,92,21,-2,-17,43,58,-64,-55,-55,44,28,-3,-34,-32,72,6,44,14,-16,63,73,-39,-24,2,71,-10,59,26, /* [151][0][][] */ 55,64,1,5,-3,44,-5,-47,54,67,-49,62,-12,53,34,19,73,-9,37,4,30,-28,39,-54,107,0,-45,-17,9,22,73,-53,-90,-26,-35,111,-22,-127,13,-119,-58,-48,66,-77,19,44,-17,5,6,-58,36,36,3,-12,-18,68, /* [152][0][][] */ -23,-36,-80,-96,81,-109,15,-67,-12,-87,42,9,23,-49,46,32,-44,10,24,-123,-50,72,17,26,-98,51,0,23,-108,-65,36,-113,-43,43,74,-19,-47,-67,-13,-42,-24,1,16,-47,-127,79,20,82,-46,-84,14,-122,2,-104,44,-49, /* [153][0][][] */ -99,-69,-38,79,23,24,-106,-3,-83,3,11,37,41,32,51,50,-86,50,-69,-32,86,74,55,52,90,85,74,-9,-57,-108,-74,85,-23,58,36,-41,11,-83,-27,44,40,-30,1,95,-1,-68,21,35,65,75,-83,60,94,-127,15,81, /* [154][0][][] */ 19,82,-101,30,4,-110,-9,-1,63,65,-35,-12,-35,109,-7,11,-71,-83,-17,49,-106,-13,-4,-8,48,-21,-41,-6,57,60,-14,51,23,64,-22,14,-15,65,-12,62,9,35,-34,-8,59,27,28,-9,68,-4,-34,-19,38,-127,43,26, /* [155][0][][] */ 29,81,61,4,30,5,9,-11,-3,-35,-120,62,64,57,84,15,-43,36,27,16,-6,-2,18,24,55,-13,-55,14,103,-77,-10,28,-127,-12,33,-17,-57,-69,-6,35,-11,42,48,64,86,36,48,37,-6,-41,24,16,25,-1,-89,6, /* [156][0][][] */ -78,-53,54,-32,-47,-79,32,51,-38,23,109,-77,-60,50,-11,-28,42,0,-2,-98,10,22,29,2,6,-30,-25,-8,30,24,-60,-10,17,99,-42,-20,-98,11,70,-12,-11,77,-44,-80,-70,8,-34,-32,-112,-15,-14,-28,-74,-40,127,15, /* [157][0][][] */ 49,-21,-16,-1,8,28,25,-43,44,65,-63,28,3,-62,52,-29,7,-34,-37,-14,-11,74,-45,16,3,35,8,38,-13,42,28,-6,-2,-6,-7,31,-30,12,47,-127,-34,-15,25,-2,27,-28,-24,-4,21,-5,6,57,60,65,-77,-25, /* [158][0][][] */ -54,65,-56,-43,4,18,-1,-41,16,90,2,-23,-127,-8,-52,-14,-25,-13,64,-29,-99,-20,25,43,2,-63,31,60,-65,-26,37,15,8,67,-32,-77,14,-15,15,36,-16,33,-32,-95,-74,2,-21,-54,6,-73,-9,-18,23,-66,69,65, /* [159][0][][] */ 30,-22,-59,-67,29,-63,-98,-4,-11,-6,14,-50,125,-13,-23,-27,-64,-1,-47,-14,-43,-16,-11,-16,33,-46,12,68,-45,-68,-42,-59,-36,-56,-105,19,-35,24,28,71,-10,18,127,-14,8,-6,-21,18,6,46,-28,-42,-1,48,-51,80, /* [160][0][][] */ -40,39,35,4,-12,62,-5,-80,9,-21,-93,-22,5,107,16,-70,24,-45,17,95,-16,-18,-71,-47,49,-82,-22,74,40,67,-34,-28,25,60,-91,45,79,5,127,11,32,17,-17,46,-8,-41,100,54,-59,30,-104,-12,-19,-11,-47,18, /* [161][0][][] */ 12,-7,-8,0,-44,-71,119,-9,-4,40,81,-17,15,-5,127,16,-51,-43,54,-19,-1,12,-100,-11,53,-29,29,88,70,-2,41,-11,14,75,6,-59,-36,45,37,30,21,125,91,-9,9,79,36,-22,12,-15,-34,-13,-39,24,-27,37, /* [162][0][][] */ -4,-24,-22,49,4,109,18,33,5,29,21,112,-42,-34,-10,107,-4,-58,-65,15,86,21,-33,-47,32,-35,27,21,-21,30,6,16,-34,-50,-25,-32,-56,-60,-60,56,53,26,-73,-122,-56,19,-19,110,62,75,-13,127,35,-10,27,-40, /* [163][0][][] */ -14,3,0,-57,-12,-32,24,16,50,-42,-41,-4,-85,-2,36,-22,-22,6,34,49,-19,103,-36,12,-23,-17,-10,56,91,-1,20,-22,23,-33,-52,64,94,-102,117,42,17,1,-67,15,95,54,-10,72,43,-29,-71,-17,-35,127,-77,57, /* [164][0][][] */ 53,8,26,24,-84,3,19,103,-37,44,-78,-62,-46,-91,100,-2,-118,-56,-8,-36,-89,86,-68,-78,-48,-91,17,89,9,-78,-49,49,-24,127,-101,48,-17,-27,100,46,-43,84,61,65,-35,-6,7,-34,18,100,55,-55,-14,29,30,-18, /* [165][0][][] */ -41,-58,-79,23,-4,29,52,-26,-97,-68,127,-40,58,73,36,-89,-94,-3,109,-20,16,-29,23,-67,79,13,-58,-9,34,-89,26,72,-53,-43,49,-42,10,8,-89,43,-45,13,62,-23,20,6,-63,56,-28,-43,72,61,-57,11,20,-8, /* [166][0][][] */ 3,-83,-11,-97,23,0,-127,15,2,12,-8,-42,-52,-37,-80,61,40,-7,-47,-58,29,-59,-66,-32,13,-71,-45,43,48,-9,-22,-69,32,-17,73,-30,34,66,-62,52,-23,-77,-31,0,-16,47,-118,-68,-103,-118,-45,13,56,3,46,-35, /* [167][0][][] */ 56,-7,-10,1,-3,52,-12,97,38,-21,-79,1,29,34,-53,37,40,39,-20,-7,-127,-119,-73,-49,-12,-29,7,52,39,28,37,-41,-55,-20,19,54,-9,-42,18,-38,-58,-69,3,103,-102,69,-75,47,49,-63,-75,8,12,5,-46,60, /* [168][0][][] */ 7,-26,87,-12,-20,-20,104,29,-21,20,-54,48,1,22,20,22,-52,-36,-30,-30,-35,9,-4,94,52,32,8,-81,-79,12,23,-43,5,-7,-84,-27,40,-28,3,45,-105,-3,-4,-55,29,-28,-27,-74,-35,-36,54,-127,-20,-11,-105,-64, /* [169][0][][] */ 27,-36,-18,27,-42,37,-40,108,123,53,74,13,26,-30,-12,-30,57,-31,-94,20,-92,1,-6,-65,-66,9,-21,-14,5,-117,107,17,-66,-29,78,90,-47,8,49,-36,24,-13,37,42,-6,-127,-43,-56,-110,-62,64,-119,-75,30,43,-40, /* [170][0][][] */ 15,9,-14,-26,-48,-8,19,30,-11,64,-45,77,74,17,32,3,-27,-102,-89,48,6,11,-40,-51,-15,-127,11,30,-49,4,33,22,22,-41,4,-20,18,-2,-11,-49,3,14,111,32,88,31,-18,-14,-34,3,-46,-5,56,23,16,-3, /* [171][0][][] */ -70,-16,38,-27,-9,77,80,-52,16,-97,-37,55,69,-80,97,10,-17,-14,-40,41,52,-88,53,22,3,51,-52,35,69,-18,-63,47,46,82,-19,-50,67,-71,98,-62,21,38,127,79,-21,20,10,47,-23,-76,41,-31,52,40,55,-4, /* [172][0][][] */ -15,22,-13,14,30,-72,-57,13,32,-55,16,-73,-67,-93,53,-39,66,-15,26,-52,-33,-8,43,-8,-77,88,127,115,-36,39,20,24,-66,-41,6,21,-37,-19,-57,-20,18,91,-40,-15,-20,66,15,8,31,19,58,58,-95,40,39,-65, /* [173][0][][] */ -51,12,-51,63,-4,41,13,47,37,1,2,-14,51,-1,55,37,24,28,36,-27,-49,-47,45,47,1,-1,18,-31,-59,51,-33,29,-28,-30,-92,4,40,6,-72,-13,-25,-37,2,-10,15,3,-48,12,-20,49,-127,-9,46,23,-28,21, /* [174][0][][] */ -26,-20,1,4,69,54,13,2,-6,-43,57,-22,-48,-39,7,-127,28,-96,-10,31,-1,57,-26,27,26,11,-15,15,3,29,45,33,0,69,-82,-33,-48,-29,-29,-32,-54,27,13,-14,-49,-38,10,-84,-20,-54,19,-49,-5,-26,-9,-64, /* [175][0][][] */ -59,-50,-38,-14,-123,49,37,-78,-12,-75,39,-85,-14,55,71,-57,-82,-68,127,-19,-47,25,-80,-46,-53,-43,-37,92,39,38,103,16,-2,7,18,-16,6,33,-72,15,-92,118,-30,-48,66,43,61,-73,-67,48,17,-53,-37,-105,-9,17, /* [176][0][][] */ 13,-62,-10,43,-36,-51,29,59,5,42,18,-15,-23,46,-8,-24,-48,60,47,-64,33,110,-26,-20,63,127,-34,72,20,-34,-60,-64,-31,62,-51,-27,66,-35,30,-106,26,66,31,-16,-88,-9,-13,-45,35,-8,26,11,-100,18,-15,92, /* [177][0][][] */ 41,-35,15,48,80,-127,-26,-75,29,-36,42,-22,62,-31,11,6,19,5,36,-23,-6,-22,3,30,-92,2,-25,38,40,-6,-103,41,2,8,57,22,-56,-77,-27,8,-7,-46,49,93,4,-111,-9,-19,14,-20,114,-58,108,-61,-62,104, /* [178][0][][] */ 75,-51,-2,51,-15,-47,42,13,55,-28,1,117,-57,-92,-9,77,94,7,14,-61,-70,-30,21,24,-35,-5,40,-37,-20,66,58,-89,-67,29,35,127,48,63,15,82,-83,65,-11,-34,-26,-4,5,-56,64,-56,27,48,96,-1,-48,-61, /* [179][0][][] */ 76,44,-79,-35,4,14,109,-60,97,-63,-87,57,36,18,6,3,2,67,-74,-49,72,79,-61,44,-35,-23,22,91,38,-37,62,-4,30,63,-51,5,3,-88,-12,86,-21,-47,39,39,-13,0,127,-61,5,-50,20,-23,35,0,-25,23, /* [180][0][][] */ 38,90,120,12,55,-67,81,67,22,61,35,-22,22,-17,-123,-5,94,-26,-116,-8,-90,16,97,-13,40,127,-44,40,-39,55,-11,38,48,-96,-2,28,90,39,-52,20,-52,-16,-102,-8,-38,-114,-4,18,122,24,-38,-38,57,-19,79,23, /* [181][0][][] */ 41,18,55,18,44,1,-37,-2,2,-12,20,39,19,57,-10,-64,41,94,0,-23,2,-26,9,-8,-5,-65,-111,-69,-30,7,20,16,-15,8,37,33,-64,-2,-46,87,35,-39,43,61,-127,46,7,10,-12,-45,-61,21,56,50,2,36, /* [182][0][][] */ 14,-19,-23,20,-5,-76,92,14,38,26,-42,64,-21,91,48,97,38,-44,40,63,-12,95,22,-127,126,-18,-28,12,10,-88,-16,-73,24,0,-37,-44,-47,63,-34,-52,-13,31,37,59,-35,14,-87,-32,-111,-59,92,-72,1,12,-20,18, /* [183][0][][] */ 75,103,-31,-2,-25,-29,34,-18,39,42,5,-61,15,-79,-28,79,38,-27,-14,-81,16,-43,6,14,-4,-13,-14,32,32,1,5,-3,-16,40,-41,-117,34,121,95,-40,-56,-21,127,40,16,-81,38,-64,-123,96,67,-26,-22,-99,-66,5, /* [184][0][][] */ -44,-74,60,9,-87,41,-40,-75,99,30,-52,-52,115,85,-77,-24,-1,-67,70,-49,-127,-87,17,39,51,-51,-6,-9,-65,55,55,57,-54,3,10,90,-1,-81,65,-83,-78,1,-51,6,126,-76,-46,76,-35,20,-3,-55,102,14,49,-15, /* [185][0][][] */ -10,-73,88,-68,-8,76,21,-64,26,-93,-80,-16,26,78,-21,70,-124,-2,-50,-20,-31,-62,-23,-69,17,-26,-102,69,-109,45,-16,127,1,44,-24,-22,56,5,-54,-35,-89,-35,-45,79,28,-4,-67,69,44,19,-53,-37,45,28,-103,101, /* [186][0][][] */ -92,-25,-46,-49,-44,43,-120,-55,-13,-62,7,36,-42,-8,3,36,24,44,23,7,104,2,1,-87,42,42,91,-59,12,13,44,50,-20,-10,-91,-9,39,11,-42,-101,20,49,-33,3,66,80,-20,24,-22,-50,-83,15,-93,94,86,-127, /* [187][0][][] */ -120,-122,-53,-44,59,127,-15,-71,29,-69,-31,-35,69,40,19,-85,45,39,24,8,25,15,0,23,61,-11,-40,39,0,2,-48,11,24,7,-29,44,-28,-19,28,15,71,-44,-5,52,-30,-8,-49,-22,45,62,55,4,-58,1,12,-106, /* [188][0][][] */ 36,22,-91,-42,81,-45,-15,65,105,-39,22,-25,-20,38,22,-59,34,24,-72,15,-66,-70,22,65,60,-66,18,45,-14,-112,-59,39,37,-27,-4,22,-43,2,20,-57,69,-111,-16,59,127,-52,14,-44,22,-48,-90,54,-39,22,31,34, /* [189][0][][] */ 68,23,-34,75,17,-33,-26,-127,10,-23,-21,10,20,-13,-10,-33,81,-50,-51,-49,-78,-21,70,62,13,-12,-51,-29,15,19,-26,46,-60,14,-22,25,94,61,23,62,-28,-88,-86,-7,84,13,0,30,-58,-14,-21,36,42,11,95,67, /* [190][0][][] */ 12,1,-57,-7,-52,-125,4,74,33,73,18,-26,58,11,-37,22,-9,84,-41,-22,28,-2,-30,-2,-6,35,-28,69,59,-14,-39,-108,-16,-85,-28,87,58,-87,-70,127,1,42,-65,-34,-64,-12,-59,71,17,3,55,2,50,-41,-14,17, /* [191][0][][] */ -66,-10,-100,-20,-46,-5,19,-16,-27,43,-75,55,109,-2,42,59,38,74,-13,-19,37,-49,10,-53,-31,1,8,-127,-30,-24,13,12,-9,2,-56,52,-39,13,-1,47,14,-5,16,-49,-27,65,-54,-8,1,38,-44,28,18,-33,-36,19, /* [192][0][][] */ -46,33,-33,11,-7,13,25,97,27,-75,10,-20,-29,30,76,6,-4,-74,-21,4,-79,65,26,28,8,-34,-34,20,-10,-91,17,52,-3,19,-10,-39,11,-57,55,-127,0,-26,-3,-1,4,28,25,-62,93,22,-8,67,2,78,-5,62, /* [193][0][][] */ -12,-34,-5,-23,29,40,-56,-55,-1,28,-27,68,108,39,-17,37,-96,-82,-127,66,-10,-7,-7,3,36,-15,-80,109,-28,83,115,-45,-47,108,-44,-100,-61,-19,13,20,9,-25,2,-62,95,-35,55,-63,-8,-59,76,-71,123,80,-74,21, /* [194][0][][] */ 47,-25,51,-40,-24,-17,-42,78,-62,7,27,39,-55,-9,-34,52,-10,31,58,23,3,-6,33,12,-23,55,27,-57,5,11,12,-10,92,-36,-14,-83,31,60,58,11,-23,54,48,18,8,-16,127,52,31,-53,-4,12,9,-16,-40,-2, /* [195][0][][] */ -66,4,48,13,-8,21,25,-80,-40,46,-53,64,27,-92,-31,-33,-28,-40,-53,29,-19,-6,127,-32,23,42,-19,-5,-75,-119,23,-88,-16,4,-55,-71,-42,24,2,21,-32,13,-112,-69,-75,-63,98,-67,-49,-15,-9,-37,-56,-55,2,-102, /* [196][0][][] */ -11,37,10,-31,21,76,127,-50,-65,-35,79,24,-58,-12,39,9,62,29,-10,-41,-40,-13,5,19,-20,-26,30,15,-18,-93,-39,8,29,-39,35,15,-51,78,18,42,104,47,6,4,-17,-19,28,-19,-34,48,83,23,28,-86,16,-56, /* [197][0][][] */ 29,13,2,-10,11,7,-66,-27,22,16,34,-72,-28,-64,-127,-47,-50,-4,-48,7,-22,-8,-42,88,4,-36,34,32,90,-66,-3,21,-81,58,89,74,-60,-15,-47,-80,9,27,-77,62,-64,-96,-24,-43,10,20,-88,-64,-35,16,-9,54, /* [198][0][][] */ 78,26,-9,29,-71,-11,33,-10,11,-53,20,-87,-27,17,-63,-21,0,26,-71,-31,78,58,-39,127,-8,-1,79,-17,6,5,-16,23,-57,41,-86,22,1,-4,90,-8,51,63,18,-2,-19,-6,-36,-40,4,-55,22,3,-14,-52,-62,63, /* [199][0][][] */ -58,44,97,-95,-71,-6,4,20,-43,-100,-93,12,102,27,-37,-62,-21,-57,-29,-9,-31,-37,4,-15,-57,-77,-76,-7,-60,16,-34,40,-20,23,-32,45,40,-85,50,29,87,40,61,75,-7,-12,-34,16,-10,21,63,-40,-127,18,-14,82, /* [200][0][][] */ -108,-106,-57,78,28,20,-32,-23,-4,-31,67,-30,127,-6,-59,4,46,55,-44,-48,-75,-17,-37,-23,-41,4,95,31,-33,-12,-35,47,3,26,-12,32,-33,-60,17,-22,53,29,56,52,43,3,-42,7,34,-37,53,21,-62,-58,-55,20, /* [201][0][][] */ 61,96,127,39,-21,54,-54,-10,-43,50,27,-54,104,-72,49,84,29,15,-20,71,46,-47,68,95,-5,19,-106,-6,-16,41,17,-9,45,42,-38,0,83,-1,-37,-16,36,-95,2,-42,-43,-45,77,35,37,36,33,-43,-20,-4,25,-43, /* [202][0][][] */ -15,27,-80,26,64,65,16,8,24,17,-92,47,32,79,33,-31,38,-64,30,19,-38,6,4,19,73,19,-22,37,-41,7,28,-81,54,-29,-35,2,14,-106,127,-43,-5,11,12,20,-31,69,-70,26,29,20,-94,18,-16,0,30,-20, /* [203][0][][] */ 37,-21,-42,-34,26,-75,59,28,23,17,-19,75,25,16,32,12,-20,70,-20,114,-9,-33,111,-4,25,15,-28,60,-40,-127,86,64,-61,-32,51,6,-62,-24,-28,31,-5,61,51,47,12,-69,-71,64,-59,42,80,90,-50,70,21,-16, /* [204][0][][] */ -47,50,11,21,5,-33,-61,-22,18,-98,-77,-6,-36,-25,90,52,-32,-127,-39,-30,22,29,-42,-6,-56,27,-39,66,70,14,18,18,76,-113,-80,24,-25,-58,-51,57,-77,13,2,12,116,32,-57,-16,-8,56,-21,20,-61,-39,-48,-53, /* [205][0][][] */ 25,-11,-17,52,-45,96,-19,96,-73,51,56,-25,89,-60,10,-89,-6,25,-21,7,36,-17,25,103,-63,59,-19,-20,29,-58,14,24,-66,0,-83,-104,-37,-21,29,11,98,16,-16,3,4,85,41,-127,-37,67,7,-45,-19,-30,-58,-41, /* [206][0][][] */ -8,-14,16,-6,-4,49,56,-40,-33,-7,-57,-16,-28,30,29,-114,-19,-27,27,-22,-28,4,38,-10,-15,-55,-18,-44,11,10,9,-25,-60,-58,-127,7,-10,66,15,38,-11,17,15,47,4,14,85,-23,-56,-22,-1,40,-47,-77,57,-52, /* [207][0][][] */ 73,34,17,29,12,-14,-54,-19,-35,48,75,-84,-57,-51,-69,-50,9,-49,-24,-15,-2,8,1,78,12,7,-3,41,7,14,-4,-21,-90,-54,-109,84,-5,-19,-3,-10,-5,-127,12,-54,-23,-83,-6,102,0,42,-14,10,-36,-113,-31,19, /* [208][0][][] */ -24,-110,-5,18,-12,-28,85,-36,45,-45,42,75,-41,-39,-98,-25,-48,-43,-1,16,20,23,34,-51,-42,-28,-23,-98,-9,27,32,76,-37,43,-18,54,-59,-28,-29,53,32,-68,56,-9,-57,25,59,50,18,27,127,-34,56,-3,-63,51, /* [209][0][][] */ 14,60,93,46,69,27,36,-14,34,31,52,20,27,-50,43,-18,-49,14,62,-71,-31,23,-56,27,-52,8,-57,-28,0,7,57,38,-17,37,24,-90,28,-22,31,50,-24,-11,18,-9,81,14,-33,-107,-67,11,-80,64,44,10,-127,-63, /* [210][0][][] */ 127,28,90,35,-29,-104,-3,-25,-12,-18,6,40,-12,22,18,-25,-8,11,-28,-14,-82,49,38,26,-43,3,-64,-73,25,42,77,1,-8,-19,24,-60,19,-28,-28,-16,-13,-21,-15,-1,17,3,-2,-38,-7,47,61,50,-4,72,49,11, /* [211][0][][] */ -110,10,45,53,-57,41,-65,18,21,94,-37,20,57,15,15,76,-43,-12,-32,99,43,-84,3,-47,-14,-29,-127,41,-104,44,-115,-39,-96,-23,38,-23,-39,22,-27,69,-44,-57,-115,11,63,122,115,-107,35,-127,-2,61,36,-22,-23,43, /* [212][0][][] */ -30,-4,4,34,26,51,52,-46,115,38,65,-103,65,-3,-86,-28,-53,-45,-14,-38,-23,-78,68,-5,40,15,75,16,25,-27,-71,2,-9,82,56,-103,56,83,-24,93,5,-4,11,127,-13,33,-31,-19,27,94,-1,1,14,-14,97,-13, /* [213][0][][] */ -57,-44,35,-10,-57,74,-111,-44,70,68,19,16,-68,-94,55,-91,-38,32,-47,-14,-79,31,-76,3,-4,-58,70,-57,-55,41,-31,61,-127,-14,-11,-18,71,14,69,-85,-15,101,-55,-45,22,-6,55,-103,-44,74,-87,-22,-88,-97,-13,-40, /* [214][0][][] */ -51,-56,-18,73,-22,-12,68,43,18,-8,-43,-27,-1,44,-42,45,36,-56,-34,6,14,-6,28,-51,23,-28,44,-25,72,-42,77,-26,28,41,24,-17,-52,-15,44,43,-69,10,69,-42,-58,-127,-10,-7,-8,-92,-15,-25,16,32,-27,-18, /* [215][0][][] */ 77,35,36,-49,9,-61,-2,18,52,-41,17,39,78,-45,18,30,2,7,30,17,-6,75,25,66,-69,68,-32,-12,54,37,-7,-56,-73,40,84,64,13,-18,24,-57,11,0,-29,61,-88,12,-13,2,44,7,48,-71,-33,54,-60,-127, /* [216][0][][] */ -16,-32,16,-18,-12,33,-10,-31,23,-41,-127,65,-19,-17,39,-3,-41,66,20,-81,-97,-43,-15,60,-59,75,-20,48,-65,-7,63,-71,80,46,44,24,-82,51,4,-25,-57,14,43,44,27,-22,-18,-25,-61,-90,5,5,2,17,-54,-64, /* [217][0][][] */ 31,52,-36,-9,-61,-21,-112,-8,-86,-4,9,-30,20,28,-49,23,-52,8,-38,-127,10,84,-12,-21,108,87,-27,-29,1,-20,-106,-42,-18,-56,90,53,47,29,40,-71,49,20,30,31,-84,76,12,-104,-28,-21,-12,-16,-95,91,46,-34, /* [218][0][][] */ -19,-94,-67,71,-30,-76,-16,55,1,63,-64,10,-17,-49,14,45,76,39,3,-35,-86,63,-78,-4,19,-24,-36,9,10,17,30,-19,-127,-39,77,-66,-19,21,-16,29,-50,-40,-7,-63,-55,24,-52,-5,-41,-23,-19,25,-5,67,-96,60, /* [219][0][][] */ -59,-33,-19,67,52,-23,-54,-95,7,57,-52,32,-90,-86,48,-80,-28,56,-11,-74,5,-24,-50,25,-73,-18,-29,-16,56,-8,-49,15,80,50,-24,-33,-60,38,127,39,-8,63,49,-37,-3,4,-43,-16,-25,-28,-23,-11,61,-11,-26,-7, /* [220][0][][] */ -92,46,-29,12,-40,-54,-13,49,25,45,33,69,10,76,6,12,-70,48,-36,2,-24,-33,11,-11,-81,0,18,-60,0,-33,-88,27,-127,32,40,5,50,15,95,16,2,102,-98,12,-19,-53,-56,-39,79,61,14,-4,36,-15,48,41, /* [221][0][][] */ 11,-17,-18,18,36,-17,30,-21,-26,-12,-39,11,-19,-22,13,42,12,-27,8,46,15,40,-8,0,22,23,50,-29,-3,-11,-24,31,-19,16,-26,-15,-15,-19,14,-12,-13,-52,16,49,-28,3,-11,41,-27,28,-6,21,8,127,29,22, /* [222][0][][] */ -52,-24,71,54,-49,101,13,37,-64,-59,-6,-59,-44,24,-6,-21,-49,43,35,-50,-123,16,6,57,19,-68,-40,16,58,-54,-24,-52,-15,65,49,-41,-96,-58,71,123,89,72,42,-32,49,49,-101,72,-33,-93,127,7,-46,-75,-72,-6, /* [223][0][][] */ -70,20,-68,83,33,42,108,-72,51,14,28,-59,26,-10,-41,-32,-17,-9,3,49,50,27,38,50,-43,95,22,68,8,68,17,15,-15,15,-59,-53,-127,-35,-41,-8,43,-53,-1,-14,0,-36,-51,27,0,-40,-58,-4,32,-20,-23,15, /* [224][0][][] */ -104,-121,-40,-2,-6,-44,54,-55,-14,-65,-67,-34,-65,-65,-95,2,11,11,-29,-88,15,63,27,79,29,29,29,-79,-8,42,-43,-37,21,5,29,-13,65,14,-117,-75,91,36,-65,16,-28,-66,52,-110,-95,30,2,49,38,11,-16,-127, /* [225][0][][] */ 41,-59,9,-65,-38,-39,-46,75,-41,-42,-25,-35,-1,-44,-4,-18,-56,48,-24,-15,-1,-14,89,74,-21,59,-30,-127,37,-11,83,-44,37,78,3,29,-68,-22,4,-55,-83,-54,23,58,27,-97,-34,29,9,21,4,29,6,50,-42,-51, /* [226][0][][] */ -1,18,71,-6,-10,20,-31,71,127,60,-24,-52,54,-22,3,50,75,39,51,-31,2,-86,-16,33,-13,-17,25,6,11,46,70,6,14,-20,37,-41,-38,-16,-64,-11,-64,-12,20,-43,-65,14,11,18,4,3,-31,-1,88,-67,33,101, /* [227][0][][] */ -52,19,94,-6,22,5,-67,24,-42,30,-39,12,67,-57,-23,-8,-30,-127,37,99,9,9,-47,1,18,14,-45,-43,-86,-6,-14,15,-12,37,-26,-20,-23,-28,3,-20,14,12,36,-54,104,12,-25,51,-18,-7,-10,-89,-53,62,16,88, /* [228][0][][] */ -81,-23,39,-31,18,2,-86,-15,-16,-77,-31,-46,67,5,-106,-12,37,54,36,33,-46,-7,-87,-46,-55,-5,72,3,38,37,38,23,16,-45,-76,66,35,-67,22,-72,-69,-5,127,-37,12,59,-58,-56,-2,-22,69,15,-28,91,-61,24, /* [229][0][][] */ -74,-18,-25,75,-18,86,5,50,5,-10,100,42,32,16,-42,-54,7,61,89,50,33,-11,-49,16,-2,127,102,-51,-32,19,-11,62,39,-21,68,6,-10,13,-40,41,-53,-34,-50,-19,67,1,-19,6,-2,6,10,-21,-3,-9,23,-33, /* [230][0][][] */ 109,21,28,-39,29,-31,87,-22,13,-24,5,-12,-43,-72,-93,12,21,40,-51,-70,-31,61,-50,127,20,-62,39,-10,23,-17,-59,-91,47,32,58,41,-17,-50,-65,19,-55,-1,-67,34,5,-17,51,-29,-60,2,-49,-27,78,22,81,-20, /* [231][0][][] */ 52,-35,-25,83,53,29,-63,-24,118,53,13,-13,80,-127,28,-7,-3,-8,57,-10,-36,19,-15,117,19,104,45,-22,-44,32,38,-1,-99,64,-18,-6,-113,25,20,-13,-26,86,38,46,-42,-81,-54,106,53,-37,57,-39,19,116,-65,-38, /* [232][0][][] */ -64,-12,-81,-97,-16,-8,42,-42,5,-96,22,30,35,-102,-6,8,4,-19,41,18,-24,27,-73,110,97,-108,-70,-80,11,-18,68,-38,100,113,117,67,-31,58,101,51,-4,18,-91,-40,-7,-12,-71,-30,-11,1,-127,41,-25,-98,-30,22, /* [233][0][][] */ 17,37,8,17,110,14,-65,-85,65,-15,14,24,-94,-127,58,-68,67,13,-91,-63,11,-9,-69,49,70,-41,-7,76,33,-61,-106,-31,-83,57,53,48,-12,8,57,-3,45,18,-57,-33,23,50,-101,4,-106,26,6,29,20,-22,54,14, /* [234][0][][] */ -41,-45,-68,-47,-76,-12,-93,-47,-105,47,35,-10,3,34,-34,18,-91,-47,2,-43,10,-6,-34,67,11,38,-20,-22,-105,83,-91,8,-5,-5,-104,34,84,-43,-31,-32,-40,0,54,-106,-15,25,-5,14,-47,-95,23,79,67,50,55,127, /* [235][0][][] */ -70,35,-56,-37,30,39,2,46,-52,23,-15,-23,59,29,57,20,37,6,-55,-62,21,-35,-40,-41,86,-19,20,63,-35,-32,47,-7,24,-68,24,-53,-10,54,-28,55,127,31,20,88,-86,20,-80,60,39,38,65,-17,-64,46,-20,-15, /* [236][0][][] */ -23,-54,13,5,40,1,19,-78,-12,-33,43,-16,7,-5,-13,9,32,-39,-23,-31,4,-21,-36,57,4,-35,-17,11,19,20,40,-40,18,17,12,-21,-41,-27,70,52,23,27,-11,3,-43,28,6,-18,-12,64,-49,-106,3,-127,6,9, /* [237][0][][] */ -48,-39,7,-24,5,25,58,59,6,21,94,-7,60,81,12,16,-4,1,14,-71,8,-26,-44,43,-35,-2,-17,44,-76,8,17,-20,77,-39,72,51,127,-19,50,16,9,-32,-3,-15,12,-40,70,-16,-17,-57,-22,-1,20,-23,-28,37, /* [238][0][][] */ -85,29,-81,-66,38,-10,13,-3,22,-68,-23,-52,-7,-19,-38,35,-40,94,29,-89,88,-65,11,18,9,-80,102,-6,-127,-61,43,-6,54,-22,-2,-55,-88,12,-89,12,72,-17,-61,-122,84,91,112,-67,1,-21,75,-41,29,-9,80,47, /* [239][0][][] */ 13,84,113,-61,37,-73,-11,-75,34,-74,-6,-9,13,-24,27,-12,18,38,20,-59,8,84,-26,-71,78,0,29,-65,-70,-19,-8,95,-18,-17,81,-5,-42,-33,59,-88,5,-29,-20,-64,104,67,5,25,-17,-17,127,-52,49,-66,3,3, /* [240][0][][] */ 40,-70,-38,-25,-36,-113,-105,45,62,64,-13,-31,39,-56,9,118,1,-49,-97,88,104,-9,34,17,65,-39,-57,-35,-12,117,49,-105,-30,-13,-4,-26,-19,-2,-95,-127,78,77,-95,37,63,-86,-57,-73,77,12,19,29,109,-70,-39,-4, /* [241][0][][] */ 14,5,32,-31,-58,-25,9,-18,-82,-17,-30,-58,-6,34,28,13,19,0,36,-33,29,40,-56,-33,12,19,-3,5,32,-2,127,45,102,-44,47,3,-17,7,9,-6,-26,51,-44,-27,-9,-18,18,29,-8,69,-51,-5,34,24,-14,-26, /* [242][0][][] */ 4,-19,53,-67,45,55,50,127,105,-1,-41,66,22,-14,-5,-20,1,-9,-7,-46,-63,-30,-66,51,-51,-48,-41,-11,-84,-50,39,-6,-46,41,25,-51,-47,-27,-14,-12,22,16,13,72,0,36,10,60,-39,18,-27,-18,-18,-2,17,-14, /* [243][0][][] */ -44,-30,-34,44,-127,26,-4,73,17,-57,-34,-27,22,30,-22,77,-86,45,-75,56,-21,9,-23,-6,123,-4,65,-9,-39,23,59,-61,40,8,-67,67,41,51,-89,-35,-13,6,37,-30,-86,6,41,-5,-15,107,110,-41,-59,-82,-38,122, /* [244][0][][] */ 70,57,72,54,-69,-67,0,117,73,-78,-60,78,15,-112,-9,-50,89,25,45,-2,-71,33,-32,71,-39,-25,20,-45,-47,90,-57,-127,61,-89,-118,26,-87,-40,-25,-31,22,48,64,-54,49,85,-11,-65,-27,14,103,50,24,-6,-53,-44, /* [245][0][][] */ -70,83,-4,-16,75,-25,-19,41,-22,15,127,97,19,97,-40,-92,15,-57,-16,-76,-22,32,94,38,-56,32,30,4,13,4,8,-14,94,5,-16,85,19,4,92,55,94,78,-56,61,50,-102,61,-38,-35,-54,62,-115,-99,49,82,55, /* [246][0][][] */ 55,18,23,-73,62,-79,31,-101,-69,7,64,22,42,81,-77,-93,76,12,25,-36,-33,-44,14,121,-35,43,-127,78,-46,90,30,18,58,-50,56,105,-86,108,-33,71,66,29,-119,-82,92,71,94,-53,-62,-68,-25,32,28,80,95,63, /* [247][0][][] */ 4,-59,-20,50,40,-35,-23,-117,-61,19,-4,37,-29,-18,54,29,96,18,26,-73,40,1,28,0,9,-45,-78,3,-19,33,0,-5,51,-24,-1,85,-54,82,-127,-12,49,-38,-57,19,-49,44,-28,22,0,-18,-9,49,-46,-12,24,56, /* [248][0][][] */ -21,-35,87,-12,5,67,40,18,21,94,-12,31,32,-48,-30,-17,50,-43,3,-21,4,-55,49,-35,31,-57,21,-16,55,15,-63,-6,-10,45,3,-121,-127,-1,-120,-40,-15,64,14,55,-38,-32,23,-29,34,26,-45,42,-44,-10,18,9, /* [249][0][][] */ 98,35,43,26,72,60,-36,0,-51,28,-19,79,99,14,42,11,-19,-16,-18,-65,4,-14,-80,-92,86,13,-31,102,-108,-31,90,11,74,59,52,56,87,-127,-15,-8,83,-40,-26,-53,124,-83,74,-39,-29,42,37,34,-47,-120,68,-21, /* [250][0][][] */ 64,17,95,24,-16,23,5,-4,-25,73,-2,44,-42,4,25,127,-63,-61,-26,15,-47,68,-57,-56,27,-42,-11,-66,55,-87,-16,63,61,1,50,54,-44,67,47,53,-11,-16,37,10,88,23,-43,14,15,20,54,30,92,32,-57,-67, /* [251][0][][] */ -47,4,2,-99,75,7,104,-57,2,21,-13,-10,17,58,98,-9,43,-25,-46,9,-33,-88,-80,7,-93,-38,51,-54,-23,-8,-51,-127,19,14,-52,-10,14,36,63,67,-83,84,-88,-14,-49,82,-117,-33,-10,-62,-117,6,-27,-94,-70,-89, /* [252][0][][] */ -25,-5,-13,29,0,-73,-88,6,-24,48,41,-4,-42,23,-47,-36,-31,6,42,-89,-2,75,57,-41,-11,20,-122,-79,98,94,-68,86,-26,23,127,-90,-120,4,-98,108,-69,34,36,-32,-41,0,-63,-5,25,101,-116,-24,-3,50,-40,-27, /* [253][0][][] */ 19,-19,69,83,-9,28,-1,94,-40,10,-30,15,35,-25,-24,-8,127,-20,18,19,-57,124,60,1,0,46,-48,58,30,-42,9,-37,-16,-37,30,-46,42,-81,29,56,27,8,43,17,-12,29,25,91,-40,8,69,28,64,63,57,77, /* [254][0][][] */ 8,23,38,-25,124,-44,127,-35,23,83,58,-8,42,-42,-45,39,-9,-81,-40,58,-71,23,-98,-82,11,-33,109,-68,-30,-1,-1,-27,36,84,58,3,-27,-10,82,-10,-60,-6,-8,-32,-11,-60,95,1,-18,-40,83,-16,-75,-8,11,-112, /* [255][0][][] */ -108,-51,28,120,-35,65,-31,60,32,45,-126,13,32,11,104,71,-14,-19,3,66,81,-26,-69,-127,56,-96,92,-97,71,-48,64,40,-114,-12,-75,75,-10,15,123,-79,71,108,41,27,-45,-19,-2,47,-98,23,39,54,-14,61,5,14, /* [256][0][][] */ 35,51,-124,-37,-72,-5,-108,-45,-15,54,-22,-126,-48,40,20,14,-35,32,25,-77,-108,-13,113,7,-39,-7,17,-40,71,-3,-69,-64,57,-10,77,72,-23,57,-10,6,-41,-65,-63,-33,-20,-4,42,18,-21,-37,45,-41,-23,-10,127,26, /* [257][0][][] */ -127,-31,-31,0,34,-22,-52,4,-56,15,36,52,25,-13,68,31,10,-20,-14,33,-28,21,-37,-38,-67,-25,97,9,-96,10,-38,7,-59,-63,-87,18,72,-46,55,-55,13,32,10,-88,-10,-35,44,-56,85,99,14,80,-44,26,-12,3, /* [258][0][][] */ -15,-106,-14,-49,0,-65,-107,8,-14,-4,15,-73,114,-37,12,-1,-67,-106,-67,84,1,10,45,-52,65,49,5,-40,28,-82,42,25,-27,4,-49,-26,114,38,81,56,30,-2,-20,36,7,79,71,47,59,-32,11,36,-127,57,23,-67, /* [259][0][][] */ -127,25,39,20,60,-25,24,-23,-29,-30,37,-16,-18,-3,-1,43,-43,-3,-44,-9,-18,-29,-43,-4,41,-23,-13,77,105,-48,-11,-12,-73,61,-5,13,-49,-3,47,-47,-38,14,-40,-56,17,-85,93,-12,37,6,-57,-63,-6,-32,33,-65, /* [260][0][][] */ 16,-49,-56,-52,60,4,-72,-49,54,37,79,-72,-39,-111,29,-67,117,-38,55,-20,-48,35,94,-127,-63,20,63,4,88,-84,44,-5,-66,-13,-47,2,-5,-11,-7,-47,16,55,-79,15,74,0,-23,-24,-66,20,-46,58,1,-78,86,12, /* [261][0][][] */ 66,22,78,34,-17,-103,-12,-13,65,6,77,30,-5,39,35,42,68,91,119,-38,-7,3,-50,23,-4,-33,30,9,-71,-7,9,-107,-45,43,25,21,27,46,-127,-2,80,15,-22,-13,-62,42,43,4,12,0,-84,6,50,-86,37,1, /* [262][0][][] */ -100,17,-70,78,-29,109,35,20,-72,-44,-75,17,-96,-28,-42,0,-114,-66,-2,-97,12,25,92,51,127,-94,42,-94,-16,77,14,70,8,-60,77,65,5,-83,27,-51,-45,-29,-26,29,-55,88,-17,-19,17,-17,-63,-86,24,5,-41,53, /* [263][0][][] */ -10,-14,-25,15,3,-15,-24,-14,91,0,55,-25,-12,79,-13,-56,-1,12,17,12,-5,71,34,41,34,-36,-127,-23,-52,-58,-26,34,3,-70,20,-78,45,32,-86,-34,24,-52,6,-21,-100,50,-9,4,-16,25,-103,-37,-61,-57,25,9, /* [264][0][][] */ 79,-79,24,-7,-68,44,-57,57,42,-22,-73,6,24,-44,-7,26,24,-6,73,-50,-127,24,44,-20,-10,85,-35,-37,-39,-2,33,-102,30,-64,29,56,-48,70,37,43,-36,-36,33,44,-8,-29,31,-61,41,14,63,-50,42,-46,-61,10, /* [265][0][][] */ -3,18,-36,-59,-45,73,-33,-1,-83,-19,-2,69,13,-7,-22,-89,-1,54,101,0,-2,-67,-53,-37,-99,4,-34,-18,-42,-13,-11,-19,-4,-14,21,0,68,2,-42,-9,20,-97,-34,-15,9,-17,-28,46,-95,8,4,16,50,127,36,-79, /* [266][0][][] */ 58,32,36,-58,35,92,-51,12,-11,91,-5,39,3,-63,-22,-38,-81,7,-12,34,-127,-21,28,-71,-31,9,6,13,2,-65,-7,-2,-48,-18,-7,-9,-4,48,31,-31,42,54,-30,-24,70,-48,40,-15,-21,-69,-17,-25,4,6,-106,-44, /* [267][0][][] */ -34,-25,58,-30,13,-15,-24,-127,72,-58,-17,63,42,-1,20,-22,-12,43,-34,53,-32,45,-17,5,9,9,68,43,-70,-38,29,49,29,53,38,70,-67,9,-37,62,54,1,31,-17,84,-29,45,12,48,-23,1,-53,-51,-42,11,-9, /* [268][0][][] */ 22,48,-24,-57,23,85,-58,-79,-67,35,37,24,-66,-36,4,-29,19,13,-16,1,-86,30,-32,-127,-61,-50,-20,-67,-10,51,32,-4,-8,37,-25,-58,-39,10,7,-27,-37,35,27,-19,-21,61,-32,-11,-56,24,-9,-32,24,-61,3,-23, /* [269][0][][] */ 33,-4,-25,70,-4,51,-16,-7,72,25,13,64,41,-23,-53,-39,-34,-81,14,99,-68,45,-34,8,-13,-61,-91,31,17,-15,11,-69,-12,73,-62,-91,20,65,-53,1,36,68,74,50,0,51,-127,-102,-58,43,-39,-11,20,-105,-44,13, /* [270][0][][] */ -7,-56,102,1,-82,-84,-40,10,-18,115,47,-12,-66,-16,-7,19,108,121,-17,-37,64,-31,20,28,-73,-28,51,-18,-28,62,-127,-73,66,-22,47,-60,53,-8,38,25,38,-5,-117,39,-37,25,-19,44,6,13,-67,1,112,-45,-28,32, /* [271][0][][] */ 61,-32,77,-86,80,25,-26,-27,-42,20,-68,35,-51,-107,33,-73,-1,-80,91,55,-115,82,-24,25,-16,0,46,-77,-25,54,-99,-28,-13,-127,-118,72,14,-52,28,5,-69,-82,-78,-81,42,-59,-93,-49,-24,46,-114,107,48,-33,50,-59, /* [272][0][][] */ 13,-8,-4,1,20,36,-15,-118,-64,13,-15,-45,-41,38,-8,-57,-7,-45,-38,-3,-44,5,64,-90,127,-72,113,7,30,-46,-63,1,14,98,39,36,-43,-31,-36,35,-46,9,-39,-65,74,-21,16,-52,3,28,-40,-103,31,7,-69,-55, /* [273][0][][] */ -17,-121,-16,-79,21,7,22,19,-1,-127,20,26,-15,32,60,-64,8,-70,-37,2,112,-43,-29,-63,33,-21,50,-13,-19,-4,89,55,66,-36,59,-35,17,-76,28,-81,-41,24,-30,-69,-69,66,-119,-6,-30,47,-64,33,-41,21,41,27, /* [274][0][][] */ 86,82,94,26,27,-64,-101,66,12,25,-95,-37,-15,-54,-44,-60,127,-10,-52,-10,-39,-29,52,17,51,-90,56,-3,35,16,25,-75,-27,-56,-71,-13,113,-48,52,48,-5,-104,-23,110,-79,-67,-107,-98,-70,58,12,68,-12,-92,-23,1, /* [275][0][][] */ 4,76,3,39,36,9,30,8,-25,-3,23,-51,-36,-96,-12,-2,-1,0,35,-5,14,18,2,77,-21,-30,57,-13,23,127,-73,-38,99,10,-4,-9,-36,-32,55,41,30,-27,40,50,-4,56,-56,-87,-55,-28,-11,-15,43,17,-7,37, /* [276][0][][] */ 62,-79,13,52,-46,-49,60,-91,127,55,-53,34,44,22,-7,31,41,-73,70,52,31,46,25,-73,-6,9,-58,53,-25,-14,-38,-27,-58,14,71,3,-29,-35,-18,-9,63,-47,-14,-14,23,55,61,-67,17,-63,58,-59,-108,52,-50,-12, /* [277][0][][] */ 93,-36,41,17,18,46,-50,38,26,-15,-60,5,62,-28,8,-43,20,-87,71,-90,-97,44,66,-20,-15,-57,8,58,-44,-70,-4,-20,-127,-31,-22,126,-5,32,-57,-51,27,-40,15,10,41,-45,-73,-20,33,114,-21,-90,2,6,23,24, /* [278][0][][] */ 36,-108,68,33,-2,-56,-17,60,-13,89,90,44,115,-127,-86,1,-109,6,36,-9,48,-77,59,-123,-15,-1,-22,-18,-122,-50,-51,22,-100,-58,-80,-42,-89,96,-63,-45,89,-49,-15,52,10,26,13,-64,41,23,-14,99,-40,-75,-105,-126, /* [279][0][][] */ 29,56,34,53,-61,-25,3,42,70,-3,-37,58,-19,29,5,50,35,26,66,104,-20,-4,-32,4,-43,29,59,127,-41,-101,23,-31,37,76,-30,19,90,83,-81,-39,-87,-43,83,-76,12,-84,7,-14,-43,-2,33,-65,-3,-50,108,89, /* [280][0][][] */ -43,-94,-21,31,14,31,-9,-4,-80,41,-72,16,-71,-9,15,-7,50,-26,-75,59,38,87,72,-22,-99,14,-54,17,51,6,21,-50,115,39,-57,13,-40,-63,13,94,43,75,78,81,53,-19,73,14,-59,-127,-40,36,-10,26,42,-48, /* [281][0][][] */ -53,-4,42,-105,6,9,-63,22,-26,-96,4,-7,32,12,-52,-20,-24,-59,60,86,3,89,-57,-85,49,34,8,29,-46,-66,-11,-127,-30,-55,88,-57,8,-39,5,6,-52,41,35,7,13,13,71,-22,28,-22,74,-99,-127,-32,-97,-32, /* [282][0][][] */ 11,-31,42,12,-26,-95,4,78,22,16,-40,127,8,19,5,-22,8,47,-60,42,-6,-15,-73,-34,-49,-43,-104,-32,-29,22,45,-42,57,45,6,-53,47,-17,42,24,44,6,50,-20,102,-5,36,62,-12,-39,11,-26,54,-21,59,43, /* [283][0][][] */ -11,-14,-5,-11,67,57,73,14,-15,-16,35,-127,-116,14,-74,57,-1,16,-94,-66,51,2,5,70,72,-45,-37,9,-12,-41,30,-43,-101,42,-46,25,-38,28,8,-35,68,23,36,8,28,24,-71,38,-17,40,14,-43,-79,55,25,-31, /* [284][0][][] */ -83,-95,-1,-89,95,-65,-2,15,-4,-26,47,1,-78,76,104,28,-127,-80,-29,22,125,70,-113,31,9,-25,34,16,-42,-36,-51,-28,57,19,-79,-55,-26,-81,80,49,89,-4,-67,-89,64,8,18,30,65,-52,121,-38,-117,-40,-99,17, /* [285][0][][] */ -13,-74,38,-1,26,127,7,-71,-60,-65,41,-87,-23,-19,-29,-22,-40,9,-62,-55,42,-96,101,16,79,14,11,-12,-49,-5,-23,27,-60,96,19,-31,23,-63,84,26,13,-40,-60,20,-2,-1,-9,-122,-26,-13,107,-22,-108,-119,48,10, /* [286][0][][] */ -18,32,20,-9,-28,10,-26,74,30,5,50,36,-13,51,-15,-53,39,-8,9,-48,35,10,10,-71,51,10,-32,64,0,-35,60,5,28,42,-69,-43,24,-62,-23,4,4,-127,-2,58,63,38,31,20,-8,39,9,-38,1,-4,-6,-39, /* [287][0][][] */ -40,23,11,-63,-6,86,-6,39,61,-41,-51,72,-19,-75,31,84,-20,103,-100,-56,-8,48,-31,102,113,-39,80,79,-34,-17,35,40,75,14,43,17,62,0,111,75,-20,-50,-59,57,127,-1,16,57,85,87,80,4,-26,-24,-70,26, /* [288][0][][] */ -118,-91,6,-12,25,64,-7,94,-26,-35,-51,12,73,-54,35,-6,27,41,-8,30,77,-10,-76,-79,-11,41,38,68,-48,6,-8,49,7,77,71,108,120,-71,-89,4,-66,-46,-47,-46,56,-15,-98,-59,5,-75,64,-43,-127,-18,-93,-49, /* [289][0][][] */ -20,-34,31,-18,-3,32,-82,34,-33,29,-13,-1,-48,-13,-127,-18,6,40,91,-23,-11,16,68,55,106,96,12,71,7,-3,-100,34,-65,-111,28,-43,32,101,16,53,5,-19,0,-5,-122,-19,94,54,23,102,61,11,55,-70,-25,13, /* [290][0][][] */ 71,9,-33,74,-93,-62,99,1,-65,66,44,-18,-83,104,-25,44,20,-78,36,0,-43,26,-21,-27,37,35,-23,-99,-8,90,-49,11,18,123,-127,28,100,-31,58,70,65,44,-66,54,-125,-35,8,-40,26,-40,14,-40,-23,-98,-50,13, /* [291][0][][] */ -103,36,37,31,2,-45,3,-38,-8,-55,5,17,67,43,-9,1,-20,-10,-25,-33,6,-25,-18,-10,62,6,-1,14,-1,-127,-18,-35,56,19,-96,24,-22,15,6,21,31,10,-50,-4,-31,65,5,-12,-28,24,-43,14,-37,-22,-38,-40, /* [292][0][][] */ 18,-75,-18,-32,-2,2,-12,55,26,30,-51,34,-90,-36,51,41,-14,16,20,13,1,-45,63,62,55,-24,-63,-127,108,1,3,-97,32,-38,50,48,15,-7,9,-26,10,-29,45,9,16,38,60,11,-30,39,0,-83,29,-53,0,84, /* [293][0][][] */ -42,93,-10,12,-37,-38,26,-78,-25,-14,45,-14,-37,-44,6,6,53,-45,95,-19,-31,15,-35,-10,7,-18,-127,-77,28,-48,31,-17,-10,-17,-67,-13,7,-53,6,-23,-75,17,-54,4,-63,-20,-87,97,68,47,13,109,-17,31,18,2, /* [294][0][][] */ 21,-53,-34,-54,-86,46,-11,-53,119,-5,37,54,-24,-32,109,-74,-107,-106,74,-21,-27,16,14,5,16,-81,-127,-42,22,-122,-76,-113,-43,-110,-17,71,-125,87,-6,-17,65,6,-28,59,-93,38,64,-70,-16,6,7,63,-126,-43,-32,-71, /* [295][0][][] */ 39,-21,-68,14,-1,-15,-38,24,53,95,-29,85,20,49,40,-49,9,58,58,100,-72,-38,10,66,-28,49,99,34,76,-86,27,45,21,-43,-91,36,-101,-17,-7,-58,83,17,45,38,-59,30,-53,-4,-84,-46,119,-123,64,-127,-44,24, /* [296][0][][] */ 23,-24,-46,33,6,-33,-2,-32,-47,32,-23,-37,34,-5,-42,25,47,-11,-43,-54,38,-52,10,35,-21,1,25,3,-57,31,1,-18,-61,-1,68,2,-55,11,-5,-4,29,-16,-37,-17,-127,3,23,-10,35,0,29,-42,-1,-8,15,-57, /* [297][0][][] */ -21,-42,-56,-15,11,80,-28,-8,-16,-28,-24,16,33,12,4,20,-88,51,-22,-54,3,-39,37,-42,54,61,71,25,-12,-43,3,39,-42,8,-33,-55,-15,17,-21,-94,36,85,74,-55,-127,-62,7,30,54,-61,6,-59,28,42,-55,14, /* [298][0][][] */ -9,16,9,31,-124,-54,50,-103,45,78,-14,-2,5,-21,28,58,14,21,90,-111,42,-66,-28,16,-40,14,8,19,59,88,-1,-85,-29,-104,105,27,114,28,90,-127,-26,-28,18,81,17,-62,12,1,-62,2,53,-34,2,-98,34,-35, /* [299][0][][] */ 67,67,37,80,8,-64,25,-39,36,-2,-38,-29,-30,-107,-69,38,3,-63,80,40,-74,-11,41,85,84,-61,-90,14,112,48,25,15,-62,82,2,-41,-51,-18,-65,-14,-71,-31,-127,18,-5,17,-11,10,-58,63,-6,-19,-34,-1,6,-32, /* [300][0][][] */ -61,-13,-2,71,-48,58,59,-62,-14,-28,-16,10,-4,78,50,13,-27,-11,52,83,-69,-27,0,31,100,-56,76,48,15,10,26,-56,-54,-38,43,-4,-25,-127,32,-55,-4,-9,-4,-2,70,-24,27,70,21,71,-114,-14,56,-29,-69,-35, /* [301][0][][] */ -10,18,-36,30,-1,25,15,6,18,35,42,-7,17,-67,22,-16,91,-6,-22,31,-5,-36,-81,10,-22,-61,87,35,-2,45,57,54,109,-58,-8,-64,-20,-40,70,51,62,-7,-68,-44,-60,103,-12,-18,-29,12,12,-67,6,-61,127,-26, /* [302][0][][] */ -24,-20,62,-19,-20,56,-21,-11,-27,-14,28,24,60,-32,-35,-9,-23,-67,-94,-63,-2,4,9,44,-25,-56,8,-46,1,-3,-52,13,-34,12,41,1,12,127,35,19,14,-57,50,94,-84,5,-47,1,32,-18,33,8,-47,55,-37,-47, /* [303][0][][] */ -58,-104,36,-9,-22,-3,0,-57,46,-67,-29,14,7,-24,11,-77,34,-88,-64,31,-34,-30,127,-29,-106,-24,31,54,-46,72,-6,-18,62,-9,-100,117,96,-28,32,28,7,40,46,-45,40,-51,-17,44,73,42,-116,71,50,-31,81,82, /* [304][0][][] */ -16,14,16,-65,7,54,-16,-74,-8,-107,-93,127,-50,-87,-2,-48,-90,-18,39,-89,-11,40,-28,-90,8,-42,-19,-18,-15,-77,58,-8,-8,97,-15,4,-100,25,-103,51,-85,75,-11,-34,19,2,97,-88,8,-21,-44,-107,72,-64,-102,68, /* [305][0][][] */ -72,71,-21,-22,-107,-22,-82,-65,45,1,51,37,-69,69,-32,-55,-52,-55,-23,-36,46,0,-31,-5,-63,-8,-125,-14,-8,52,-13,46,-45,80,3,-127,55,-32,-56,122,25,-23,-108,-43,-73,47,-20,-55,1,-52,10,-39,69,24,-33,-56, /* [306][0][][] */ 56,73,90,83,-21,46,3,-35,98,-14,62,5,-39,73,15,25,14,-23,33,16,81,3,-9,-127,28,-40,-59,-69,25,-82,32,-55,100,-11,-57,38,-73,-53,84,22,-5,-64,-32,29,-2,59,-41,-39,26,-54,63,-19,61,32,31,-7, /* [307][0][][] */ 15,31,24,-38,-45,-32,-59,40,-30,3,-1,4,57,48,-62,-28,-16,-10,47,-68,-76,-31,16,-40,-61,10,11,13,51,48,-34,2,34,127,67,47,3,-25,-36,11,97,4,-28,41,8,-8,99,-28,52,20,-31,106,-22,-49,-34,40, /* [308][0][][] */ 18,-48,13,-6,44,24,19,-80,26,-127,60,-46,81,25,91,21,-38,9,18,43,40,36,40,-19,85,11,75,-4,-4,-59,-53,9,34,10,102,19,-54,32,-59,-43,11,-4,32,-12,53,65,-49,21,17,-14,47,-50,29,29,-21,62, /* [309][0][][] */ 14,4,-29,11,18,-36,58,-24,-15,93,-16,-6,-37,0,-8,-58,15,-127,-44,-43,41,-51,48,10,-58,-16,-25,11,1,3,-30,-18,32,79,-17,14,62,-13,9,-20,39,6,-15,59,6,34,-87,-29,-34,27,-22,41,-57,-8,23,55, /* [310][0][][] */ -3,-40,85,-27,28,-19,-13,-76,16,19,-61,33,-11,-19,40,35,-15,-46,61,67,10,-36,-15,42,49,-1,0,127,43,-58,31,7,28,-3,-31,-57,19,-21,-62,32,14,46,-42,64,-12,-19,127,-11,52,-42,-27,-80,27,22,21,14, /* [311][0][][] */ 99,6,45,29,-5,-62,-39,16,41,58,6,-42,-30,-37,34,4,-13,-11,8,-63,-107,52,-5,-38,-18,50,-47,-28,-32,31,-58,-43,74,52,9,-22,56,127,23,60,-82,-77,-54,-17,-2,15,40,-60,49,-27,-9,14,38,-4,14,-16, /* [312][0][][] */ 12,60,31,58,15,-85,-30,-54,-16,-30,-37,38,-57,-25,83,25,81,16,14,37,-20,-14,-7,30,-16,2,74,-38,51,-13,-56,-4,49,83,22,-65,-19,59,59,61,33,22,54,56,36,-18,-62,-127,99,-55,-29,10,41,11,15,1, /* [313][0][][] */ 34,-4,-34,-2,11,15,-25,1,0,-29,-13,27,-9,-87,17,-20,-8,-28,-64,-48,47,17,-25,4,7,1,-3,-18,-21,33,-11,-9,59,-18,-22,27,38,-4,-23,42,30,6,-39,-127,-25,-2,-12,9,15,32,-26,-47,15,-39,11,38, /* [314][0][][] */ -22,-79,-3,-67,-49,40,-33,2,-67,-97,-24,-60,-75,-80,-89,-7,-73,-17,8,-37,72,-36,-24,-117,12,-83,79,-52,-6,39,1,41,26,-20,-40,58,-41,13,51,-24,39,-6,-6,55,-74,69,11,-57,-27,-52,-26,91,11,-127,37,-82, /* [315][0][][] */ -100,25,-73,-23,17,31,64,-71,103,7,-26,-65,5,16,103,39,-2,-2,-46,8,92,1,33,-51,20,33,24,-67,-123,-52,35,31,-60,53,-2,14,-88,127,19,-116,25,-25,-39,-11,-107,-2,13,-2,7,-28,-41,-12,29,-22,-13,77, /* [316][0][][] */ -91,7,5,-10,-39,71,3,30,-85,-96,-55,40,5,65,-18,-52,-51,116,44,77,28,113,14,-17,35,78,37,15,15,-3,22,-17,59,-26,-17,72,-68,37,91,-23,20,127,28,-60,25,30,-29,60,-18,-2,-11,-60,26,-15,-28,57, /* [317][0][][] */ 122,-110,-127,4,54,-73,-94,-2,-44,34,-77,-66,31,58,-17,36,-76,-118,26,48,57,-38,65,-37,34,63,-38,3,-85,-13,42,-41,-13,-46,15,-2,-31,-56,-8,45,6,-45,-62,-7,-35,17,19,54,22,-18,46,-98,69,-58,12,62, /* [318][0][][] */ 48,56,86,18,3,-61,-32,1,4,61,-5,-43,112,-88,-72,5,-17,-52,20,13,-35,51,5,-30,83,42,31,31,-19,24,-127,-14,-15,-10,-24,19,-12,15,9,1,-26,-10,65,-8,6,-60,-9,-53,-17,33,-22,8,72,44,-3,19, /* [319][0][][] */ -54,-14,38,-36,-12,18,12,2,-20,-47,-41,-19,-34,-61,1,-34,-50,-22,-35,0,17,23,-32,112,-49,-30,2,49,4,76,6,-64,12,23,-19,79,-11,13,-16,33,-69,11,-41,-38,-43,-15,86,-114,-87,127,51,-59,-28,12,56,4, /* [320][0][][] */ 21,35,-84,-99,-26,16,30,6,42,-16,-13,12,-12,6,30,59,-24,16,-52,-16,-59,121,19,9,3,6,19,57,-55,-29,10,54,27,-61,-82,-54,52,-12,-21,-2,2,107,41,55,-63,36,58,55,13,-27,-16,84,15,127,-43,63, /* [321][0][][] */ 60,13,85,46,61,-65,-2,-20,71,31,92,35,17,-42,96,-71,32,15,96,88,68,0,-62,38,36,18,57,-53,-3,41,-127,-18,-70,99,-16,-22,-21,75,24,32,-52,-99,42,-44,83,18,44,-59,-10,-15,-126,11,-11,83,114,-13, /* [322][0][][] */ 18,50,-15,124,20,0,67,8,62,21,73,16,107,-41,45,4,20,30,-18,-28,-103,-39,-55,70,-2,-44,-110,73,9,32,-113,0,24,77,-6,41,71,-92,-83,39,-127,71,84,-49,4,58,1,-60,53,-19,-28,-64,-56,90,67,12, /* [323][0][][] */ -34,24,-3,-12,69,-20,-7,-26,47,62,37,-74,127,81,47,48,-11,10,16,0,26,71,-27,-70,18,-38,-32,-3,-80,-43,-1,38,40,-67,24,-51,8,-71,59,-12,0,22,49,-72,23,63,95,-16,-74,-44,-85,-104,36,14,29,15, /* [324][0][][] */ -13,-54,-84,-65,14,50,-19,42,32,-88,-51,68,17,47,64,61,118,-18,97,-28,-49,-15,-44,2,104,-19,-27,27,-29,36,-5,36,31,30,-25,58,-77,35,75,22,70,-23,63,-127,-17,30,7,123,14,-90,22,-71,89,37,-17,-33, /* [325][0][][] */ -34,51,91,127,37,-37,67,46,47,116,37,-11,-34,-25,-9,39,-22,104,23,-41,-25,88,37,39,103,-38,-45,-88,-9,6,15,74,-77,50,2,-24,3,-55,42,124,-40,-80,120,40,-105,49,-7,-58,-71,65,26,-107,5,-91,-82,-51, /* [326][0][][] */ -25,-77,55,-72,13,17,-25,9,-127,-15,5,38,-23,6,5,-11,-47,40,-61,-27,24,25,78,7,-11,-30,2,-2,44,-3,-36,-29,0,-69,-70,10,70,-61,7,-22,27,-16,-28,13,-13,-10,103,16,17,-34,-8,2,-9,44,-15,31, /* [327][0][][] */ 20,0,69,25,5,-93,12,16,-27,126,79,32,-80,-2,80,36,-20,-25,14,26,2,70,21,-33,-87,43,41,-30,29,-53,-22,39,-26,127,-35,-37,51,-12,43,13,3,-4,-97,-20,-71,-36,42,-76,87,-6,21,79,68,95,37,69, /* [328][0][][] */ -38,67,-32,-28,20,-43,-75,59,15,-8,-19,-43,-65,13,28,23,-39,-9,-82,-11,17,127,-15,-1,-49,51,-93,22,46,-86,114,-75,-101,11,-78,11,-7,10,22,6,2,18,22,-34,103,97,13,66,-93,37,-99,-9,-12,5,102,-9, /* [329][0][][] */ -100,24,-36,33,3,-1,10,-26,6,29,54,64,-4,-43,61,-63,31,50,49,-7,16,16,-51,30,59,-24,-1,46,0,-20,68,-9,10,100,-42,-33,50,-19,19,127,78,-38,72,-35,-90,19,72,-53,-69,1,31,29,20,-37,-19,-10, /* [330][0][][] */ -85,127,19,-50,92,86,43,17,-10,-82,-26,-68,24,84,15,-5,-55,-57,-66,47,44,29,17,12,33,-73,-36,0,-23,-6,-12,-39,-64,6,-75,5,30,-79,-55,-50,41,62,-61,-17,6,76,-32,57,10,12,-27,5,-124,-43,-52,-68, /* [331][0][][] */ 70,51,27,41,-26,-10,1,117,-127,-73,-18,102,115,72,-24,-74,81,-17,3,124,4,-5,42,64,20,-105,-42,-102,-57,92,40,41,117,-45,54,31,-74,37,62,-3,20,6,68,-28,-6,38,22,26,-34,-55,39,74,63,51,-14,-27, /* [332][0][][] */ -25,35,62,14,-84,12,-8,-88,-20,127,109,23,-16,9,-65,-62,-39,36,-32,-81,-20,59,-62,-35,47,26,1,-5,63,45,7,-36,-81,123,-7,-127,31,69,-108,39,6,-67,9,-98,58,-106,-54,-56,-36,-65,99,-5,3,-87,-86,31, /* [333][0][][] */ 27,-15,-9,-9,87,-23,-28,79,32,64,44,-83,40,-25,60,-64,-39,-58,46,19,-21,-77,-3,47,-93,64,17,-41,-21,-3,39,-103,-10,-30,11,-86,127,7,17,4,-2,74,-13,20,-1,27,17,2,-52,31,-96,37,-29,-3,-1,112, /* [334][0][][] */ -34,-14,28,46,-49,72,-35,-55,-27,-17,17,8,-83,-51,-6,38,33,32,-20,-23,21,10,26,-6,-11,32,-78,-44,-127,14,-34,-82,17,-33,-15,1,4,109,-66,-88,44,5,-10,-31,-28,-36,-7,44,-39,-11,22,-11,76,10,-24,-69, /* [335][0][][] */ 91,5,2,-14,-31,-31,77,-16,-64,-68,22,-94,-79,-92,-127,-58,38,-71,-13,-10,-104,30,-59,35,-6,-38,-10,-4,20,-18,-22,27,16,-18,-35,-17,70,-23,-71,94,-17,28,28,46,103,7,54,-58,31,-22,68,-54,29,45,18,-46, }; const TfArray<336, float> quant24_scale = { 336, { 0.0021181078627705574, 0.0019804690964519978, 0.0020364683587104082, 0.0023299669846892357, 0.0018607530510053039, 0.0018564885249361396, 0.0025457094889134169, 0.0022515333257615566, 0.0019129544962197542, 0.0019792558159679174, 0.0016697578830644488, 0.0023830712307244539, 0.0017094189533963799, 0.002283420879393816, 0.0020990669727325439, 0.002632899908348918, 0.0025631499011069536, 0.0021756896749138832, 0.0020211695227771997, 0.0016780791338533163, 0.0020408150739967823, 0.0023430278524756432, 0.0026793621946126223, 0.0023388525005429983, 0.0019426861545071006, 0.0027537737041711807, 0.0017052836483344436, 0.0016176499193534255, 0.0019823226612061262, 0.0021169106476008892, 0.0026620309799909592, 0.0020402660593390465, 0.0020996031817048788, 0.0022701143752783537, 0.0024136770516633987, 0.0017084141727536917, 0.0021735168993473053, 0.0019967551343142986, 0.0021790924947708845, 0.0024032408837229013, 0.0023981761187314987, 0.0020358692854642868, 0.0017681883182376623, 0.0021329736337065697, 0.0027995377313345671, 0.001681687543168664, 0.0018450077623128891, 0.0019369461806491017, 0.0021460761781781912, 0.0029346281662583351, 0.0022648174781352282, 0.0018261771183460951, 0.0024368965532630682, 0.0020782477222383022, 0.0022916854359209538, 0.001442891894839704, 0.0016175444470718503, 0.0024439848493784666, 0.001777499564923346, 0.0024977887514978647, 0.0021624064538627863, 0.0024996553547680378, 0.0024014352820813656, 0.0023648503702133894, 0.0018280055373907089, 0.0021796382497996092, 0.0026123009156435728, 0.0019259336404502392, 0.0019459769828245044, 0.0019602121319621801, 0.0023667812347412109, 0.0019884207285940647, 0.0021215840242803097, 0.0020279691088944674, 0.0020483655389398336, 0.001658510765992105, 0.0017738649621605873, 0.001516696996986866, 0.0021051440853625536, 0.0014794956659898162, 0.0026679746806621552, 0.001999574014917016, 0.0015185419470071793, 0.0028565435204654932, 0.0020732774864882231, 0.0024913356173783541, 0.0018568146042525768, 0.0028355473186820745, 0.0021747944410890341, 0.0020347032696008682, 0.0020794544834643602, 0.002086027292534709, 0.0015592655399814248, 0.0025153262540698051, 0.0016719695413485169, 0.0022827791981399059, 0.0027541301678866148, 0.0029597252141684294, 0.0028189655859023333, 0.0021277437917888165, 0.0020445412956178188, 0.001702274545095861, 0.0019150045700371265, 0.0018843610305339098, 0.0026911064051091671, 0.0022892572451382875, 0.0024720602668821812, 0.0017951856134459376, 0.0027741673402488232, 0.0021767388097941875, 0.0020731219556182623, 0.0018265412654727697, 0.0027987298090010881, 0.0024735266342759132, 0.0021564599592238665, 0.0021693778689950705, 0.0021242592483758926, 0.0019516672473400831, 0.0017802920192480087, 0.0020188626367598772, 0.0032322185579687357, 0.0020341111812740564, 0.0018785911379382014, 0.0019903017673641443, 0.002250398974865675, 0.003020905889570713, 0.0020529115572571754, 0.0024472125805914402, 0.0029853477608412504, 0.0016794614493846893, 0.0021345301065593958, 0.0030778713990002871, 0.0018313672626391053, 0.0022451176773756742, 0.0047102156095206738, 0.0018001100979745388, 0.0031050033867359161, 0.0025285279843956232, 0.0028888056986033916, 0.0022638712543994188, 0.0025430514942854643, 0.0025944244116544724, 0.0023194029927253723, 0.0026071697939187288, 0.00263235904276371, 0.0018754840129986405, 0.0015836408128961921, 0.0022519861813634634, 0.0025021771434694529, 0.0019842451438307762, 0.0025321345310658216, 0.002138456329703331, 0.0019108136184513569, 0.0016514440067112446, 0.0022333010565489531, 0.0020369752310216427, 0.0019267856841906905, 0.0024005305022001266, 0.0022277920506894588, 0.0025414882693439722, 0.0020762027706950903, 0.0021112565882503986, 0.0019371201051399112, 0.002019254956394434, 0.0021089345682412386, 0.0018967234063893557, 0.0019683451391756535, 0.0022642272524535656, 0.0023703994229435921, 0.0020016138441860676, 0.0025178783107548952, 0.002176815178245306, 0.0025900166947394609, 0.0031330634374171495, 0.0023835033643990755, 0.0016420998144894838, 0.0022881529293954372, 0.0020618904381990433, 0.0018997383303940296, 0.0023538032546639442, 0.0015606803353875875, 0.0022444096393883228, 0.00194923160597682, 0.0019363086903467774, 0.0017891763709485531, 0.0016949736746028066, 0.0017781326314434409, 0.0021383301354944706, 0.002070834394544363, 0.001901634968817234, 0.0025148531422019005, 0.0025654677301645279, 0.0026094978675246239, 0.001565296552143991, 0.0023938671220093966, 0.002145497128367424, 0.0026785875670611858, 0.002591593423858285, 0.0028073200955986977, 0.0022140860091894865, 0.0022186182904988527, 0.0025197730865329504, 0.0022450417745858431, 0.0020695154089480639, 0.0022335215471684933, 0.0020896210335195065, 0.0025360637810081244, 0.0021743664983659983, 0.0025404149200767279, 0.0021174685098230839, 0.0021387296728789806, 0.001926215598359704, 0.0019691004417836666, 0.0018357080407440662, 0.002563835121691227, 0.0024080611765384674, 0.0024235190358012915, 0.001845979131758213, 0.0022691723424941301, 0.0021112619433552027, 0.002312841359525919, 0.003542718943208456, 0.0018101363675668836, 0.0025862460024654865, 0.0019770427606999874, 0.0027402613777667284, 0.0021839556284248829, 0.0024245826061815023, 0.0023739815223962069, 0.0028825525660067797, 0.0016112371813505888, 0.0019742506556212902, 0.0018675124738365412, 0.0018246143590658903, 0.0018100927118211985, 0.0017852847231552005, 0.0024373682681471109, 0.0026008188724517822, 0.0019086032407358289, 0.0026158478576689959, 0.0017322911880910397, 0.0030374685302376747, 0.002162884222343564, 0.0016370610101148486, 0.0019323253072798252, 0.001992684556171298, 0.0016599056543782353, 0.0022728396579623222, 0.0020686769858002663, 0.0019325090106576681, 0.0025474221911281347, 0.0016725281020626426, 0.0020844417158514261, 0.0022493028081953526, 0.0021925189066678286, 0.0017156080575659871, 0.0017520730616524816, 0.0021961522288620472, 0.0021251956932246685, 0.0022497656755149364, 0.0022150627337396145, 0.0019808849319815636, 0.0013788515934720635, 0.0021511258091777563, 0.0019428901141509414, 0.0026271410752087831, 0.0028343412559479475, 0.0030697190668433905, 0.0024443489965051413, 0.0020036876667290926, 0.0015748895239084959, 0.0020378874614834785, 0.0031161087099462748, 0.0016793712275102735, 0.00156251504085958, 0.0020923854317516088, 0.0021896506659686565, 0.0022972766309976578, 0.0014641241868957877, 0.0019869385287165642, 0.0020898466464132071, 0.0015967180952429771, 0.0020865353289991617, 0.002191170584410429, 0.0014001004165038466, 0.0018430211348459125, 0.003182864747941494, 0.0015853341901674867, 0.0016671167686581612, 0.0019490844570100307, 0.0020333905704319477, 0.0018510983791202307, 0.0023191769141703844, 0.0024317370261996984, 0.0018219153862446547, 0.0020717382431030273, 0.0026822790969163179, 0.0016013397835195065, 0.0020981968846172094, 0.0015312620671465993, 0.0023873872123658657, 0.0023822418879717588, 0.0025854366831481457, 0.0022075413726270199, 0.0018804516876116395, 0.0019290288910269737, 0.0025766459293663502, 0.002453923923894763, 0.0022338146809488535, 0.0024803145788609982, 0.002566805575042963, 0.001658317050896585, 0.0020872235763818026, 0.0030932908412069082, 0.0019018537132069468, 0.0023754374124109745, 0.0015919393626973033, 0.0021035855170339346, 0.0025518296752125025, 0.0022075583692640066, 0.0022519943304359913, 0.0016804405022412539, 0.0018942271126434207, 0.0022409113589674234, 0.0017474982887506485, 0.0020348730031400919, 0.0026870169676840305, 0.0019346839981153607, 0.0021773325279355049, 0.002600174630060792, 0.0015207063406705856, 0.0021879265550523996, 0.0016410793177783489, 0.0018697305349633098, 0.0026814204175025225, 0.0021530152298510075, } }; const TfLiteAffineQuantization quant24 = { (TfLiteFloatArray*)&quant24_scale, (TfLiteIntArray*)&g0::quant9_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data25[56] = { 14339, 3693, -4638, -23777, 9469, -5585, 17319, -13378, 13087, -735, -6019, 12790, 23574, -4157, -11901, -12556, 11983, 10251, 18791, -3369, -20416, 25261, 16809, 7590, -12104, -428, -4105, -1424, 7718, -745, -7010, -4274, -14254, 5149, -3928, -17060, -21668, -4593, 24642, 432, -8217, -5604, 5205, -2578, -9351, 3399, 977, -10347, -25471, -3898, 578, -8530, 4986, 4677, -1794, 12378, }; const TfArray<56, float> quant25_scale = { 56, { 4.093207826372236e-05, 6.8444824137259275e-05, 3.7458812585100532e-05, 4.7635665396228433e-05, 5.1996343245264143e-05, 4.7854642616584897e-05, 5.575635441346094e-05, 4.8268164391629398e-05, 4.9509289965499192e-05, 4.8942180001176894e-05, 5.2758230594918132e-05, 4.0162190998671576e-05, 4.8972488002618775e-05, 5.6291959481313825e-05, 5.30587240064051e-05, 5.1874245400540531e-05, 5.9023022913606837e-05, 5.3954296163283288e-05, 5.4871794418431818e-05, 4.6475841372739524e-05, 6.0112957726232708e-05, 4.588852243614383e-05, 5.0873655709438026e-05, 5.660250099026598e-05, 4.549962977762334e-05, 5.0358383305137977e-05, 5.0588347221491858e-05, 6.0830032452940941e-05, 5.7161927543347701e-05, 4.7200530389091e-05, 4.4874308514408767e-05, 4.7254328819690272e-05, 5.6646240409463644e-05, 5.1493378123268485e-05, 5.0479113269830123e-05, 5.0362112233415246e-05, 4.4597090891329572e-05, 5.6066870456561446e-05, 4.5432854676619172e-05, 6.1710219597443938e-05, 5.2440660510910675e-05, 5.1014976634178311e-05, 4.8843394324649125e-05, 4.9932543333852664e-05, 5.5430962675018236e-05, 4.9964415666181594e-05, 5.1163911848561838e-05, 5.1943206926807761e-05, 6.2865423387847841e-05, 6.6272623371332884e-05, 5.1074410293949768e-05, 4.6660843509016559e-05, 4.6542532800231129e-05, 5.1855251513188705e-05, 5.7002973335329443e-05, 5.7326520618516952e-05, } }; const TfLiteAffineQuantization quant25 = { (TfLiteFloatArray*)&quant25_scale, (TfLiteIntArray*)&g0::quant13_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data26[56*1*1*192] = { /* [0][0][][] */ 64,87,-36,81,34,-34,57,-127,-36,-54,-19,32,-3,33,-66,-34,-34,68,-38,-55,-69,-34,-57,24,-24,16,68,6,-9,52,-43,-31,-14,-67,-88,45,21,-86,-29,22,-104,-59,54,81,88,15,35,-3,-37,-21,35,-36,-19,-27,-21,-15,-22,-65,29,54,-59,16,87,-55,-53,41,-18,-11,-113,-56,-21,-1,-68,-29,-10,-19,73,9,-12,20,-22,82,35,42,47,-9,19,47,-71,-59,4,37,-90,-65,2,-8,48,21,3,-10,18,-11,-42,-40,17,-15,15,34,84,-76,-35,-50,-17,-17,-111,5,-8,28,-13,27,14,-11,-3,2,-4,0,0,-47,17,-26,21,1,103,51,70,-45,-14,7,-1,-25,45,18,-84,77,-39,-71,1,1,49,36,-76,-79,-45,-12,0,35,33,46,91,11,-2,-118,35,-5,12,-43,10,-14,29,31,-43,-81,-42,68,-48,28,-21,-22,18,-52,-26,59,5,4,-48,-34,76,10,13,0,-13,7, /* [1][0][][] */ 28,-31,-26,10,-22,50,72,16,63,24,-66,-15,4,16,-31,39,52,-63,-77,34,-63,-24,-41,7,23,9,42,66,-73,-30,-53,21,20,3,-45,-17,-59,-15,29,6,13,-29,-3,32,59,-26,33,84,34,-1,34,30,-53,61,15,-50,33,-2,5,-39,-8,12,44,-76,36,37,-27,4,-10,83,-10,-50,41,-29,28,-4,0,19,-99,-25,-76,-14,26,36,-2,1,-48,-24,0,-54,-65,15,-127,-1,-11,-24,64,-40,88,3,-77,33,29,-8,-46,36,-37,-55,31,-26,-28,-43,-15,-18,13,-25,-27,-6,45,13,-55,-33,-79,-12,41,64,56,56,39,-25,-14,21,0,-17,16,-24,-20,67,33,-13,29,-9,-40,-29,26,36,-27,-44,-60,32,-43,25,-27,49,51,-3,-84,-17,33,69,-62,-50,-24,26,24,67,27,-33,13,23,55,23,15,-2,21,-33,-27,14,28,-21,48,-85,6,-1,12,-29,-72,28,-21,11,-8,-44, /* [2][0][][] */ 8,87,-53,-48,-30,16,-103,-62,14,45,6,17,20,-66,59,-47,64,33,0,-10,28,4,-33,-28,-31,68,-34,20,3,76,-6,-9,73,-3,-79,-90,-82,-23,37,67,5,41,3,-65,64,-12,48,-16,-30,-42,-17,-8,100,42,-14,-32,38,-6,30,75,-16,-56,27,-5,61,-40,-30,42,92,-17,30,64,-11,34,-43,75,-50,-51,-50,98,-19,57,76,39,19,-5,35,-6,59,-69,-39,65,13,-17,24,-42,-39,-57,-47,127,-38,46,75,-3,-45,10,-40,-31,-21,50,-59,-18,102,-7,-84,-7,-33,5,-12,16,55,-35,0,-39,-6,89,52,17,64,-16,80,33,-8,-114,105,-34,28,-13,-7,40,34,11,-46,-34,-5,-26,-48,-64,1,46,19,-17,-45,-87,-7,30,-44,89,-81,54,-43,61,32,30,31,73,59,-65,-58,-25,-84,-11,-90,20,73,-40,81,-1,-104,-45,24,41,29,-56,38,-18,-7,27,61,-67,-13,62, /* [3][0][][] */ 90,-38,-5,-47,-43,71,8,0,-11,-77,5,36,-95,-49,29,64,-39,40,80,33,55,-42,-19,47,36,-52,37,9,99,-84,-39,-124,73,-9,-3,44,-24,-1,20,-91,8,71,58,-25,31,47,86,35,-41,-3,-8,-24,-60,-10,-127,-61,12,-1,55,118,13,50,-18,14,113,-44,62,-22,30,127,-55,6,45,50,17,-49,-51,-53,-18,-72,-26,-9,7,31,31,84,63,-95,57,24,-56,-55,-44,-78,-87,-10,8,63,-103,-50,60,30,-87,-14,-6,-19,32,25,33,12,37,109,17,-57,4,-77,-20,-82,-18,-4,103,27,80,85,72,63,6,-50,18,67,-37,46,4,-61,3,-12,89,99,-14,3,81,-40,-51,-95,30,53,37,39,117,93,69,60,-43,69,-31,-9,-28,-22,15,122,-70,-111,39,10,53,-4,78,75,-53,48,59,88,5,-18,45,19,-12,79,62,3,23,-125,1,40,71,-44,100,-42,38,-15,-57,-1, /* [4][0][][] */ 106,66,12,-103,61,33,-23,-22,-22,26,-60,-33,-33,45,-23,75,40,-48,-21,-55,10,-66,-111,-39,16,17,62,12,-77,-48,-3,4,-43,28,-57,39,40,73,-11,69,-127,-64,-26,11,-48,-34,87,0,72,-69,18,-95,51,27,-9,105,-70,-15,86,-18,65,-110,-96,51,-58,-5,39,-43,52,-51,-81,55,-40,-66,-10,-40,38,-27,-59,-19,77,-59,35,-65,-27,-81,-1,-23,-76,62,10,70,-18,20,-73,17,37,10,16,-8,10,-7,-43,-63,-73,-96,73,-19,73,-27,70,33,-53,60,13,86,-66,-69,-17,5,-6,18,11,-73,-76,49,5,99,16,-9,50,43,-5,-6,32,87,-44,63,63,34,51,-54,-89,-88,-31,21,108,-53,21,21,72,-93,-51,96,55,-113,38,18,21,24,-15,17,89,-47,28,-26,29,5,16,62,44,-78,-82,26,-65,33,27,-34,18,2,16,-9,-63,-75,-10,23,-88,9,1,10,-48,49, /* [5][0][][] */ 41,-1,-9,53,9,-50,67,0,48,49,-9,12,25,-30,58,33,-11,85,-35,39,7,-68,31,7,20,44,-18,-10,-51,16,-18,-30,-32,55,-22,57,-30,-85,6,-44,-74,-1,76,-104,1,-93,-50,-93,34,113,-52,-75,42,73,16,4,73,-31,-75,9,47,57,62,-23,-87,-18,-49,46,12,-18,17,6,85,33,-87,24,7,47,-27,53,13,-26,54,27,-24,-15,-38,-49,-39,28,-75,-29,-1,-5,-5,-28,-97,-24,82,19,-8,88,127,-59,-68,-105,77,112,-65,-10,49,-64,-99,-64,39,38,25,-64,-28,3,39,124,-90,94,-94,40,13,-12,20,-79,-37,7,-63,-35,-29,18,70,28,81,-10,-25,-67,63,-4,1,57,-78,-13,20,43,68,19,-63,-33,6,5,-43,-39,-69,57,100,69,-44,0,42,-63,18,77,-1,-11,48,-36,-1,34,20,43,23,53,-7,-2,-38,-44,-38,31,-23,-51,8,41,31,25,96,14, /* [6][0][][] */ -110,-16,18,9,98,84,28,0,-30,-17,-120,-66,37,-65,-41,-25,-1,-87,-45,-58,-56,70,-16,-68,-119,82,-52,-64,10,55,12,40,75,-92,14,70,-15,-72,-9,-51,32,-43,-9,-58,-38,-34,-59,-12,45,46,107,74,-40,42,-116,-80,16,-54,45,22,-28,9,44,26,-30,3,-55,-48,20,27,31,-30,76,35,-65,20,-84,-28,45,23,-15,-116,-117,-12,-44,0,-101,19,29,-80,58,61,9,-51,-51,60,-37,65,103,-47,47,20,44,126,-18,-10,-69,-20,50,-7,-11,20,-125,13,19,-16,-77,12,-70,-58,23,-46,8,-12,-15,-21,-51,44,9,15,-53,-81,42,-31,-21,37,55,-38,13,-9,-19,96,-2,-22,39,21,18,-12,41,-74,-36,-45,28,60,-12,69,22,-93,16,-46,40,31,-97,-43,13,-18,26,-22,63,65,-31,52,-51,-37,86,3,38,75,-44,20,78,-75,-38,-124,-17,25,-37,127,35,90,7,64, /* [7][0][][] */ 76,25,-10,-21,52,53,58,-11,73,-13,73,-19,71,-25,-91,-64,12,-37,-52,-17,-15,-33,-47,-60,-24,59,14,-45,65,15,9,32,23,32,-25,-16,-3,2,101,17,24,65,-1,-17,-24,-94,2,-37,43,-9,63,64,-33,24,69,-2,-96,29,-42,-35,-2,-47,74,68,-5,116,-55,-45,-30,60,26,-8,123,-81,50,9,-18,70,-77,20,-51,-21,64,90,47,61,-9,-20,-2,-127,-31,77,6,-14,-52,71,-50,-25,-68,75,49,49,41,40,-2,-5,-13,-1,-33,-28,55,71,-22,-15,11,30,48,-85,26,22,-21,-51,39,32,38,-40,23,-13,-102,-103,-65,-14,-43,-46,-62,70,-1,-13,0,-16,1,4,-32,33,17,46,75,115,-4,-33,54,72,27,-103,-63,45,-7,90,44,47,-46,108,-95,45,57,6,50,-63,-6,-26,48,-5,-22,30,-25,68,-4,51,-33,-49,-4,27,10,-25,59,46,6,-68,-20,-72,-56,-13, /* [8][0][][] */ 30,-19,-37,44,-37,-2,-21,51,34,-23,53,-20,-57,10,-29,25,-12,-50,0,-39,25,-56,-33,-20,-64,-15,17,-73,-28,60,-69,-34,-54,-50,36,12,-31,-4,-40,-10,-36,-98,48,-41,42,-11,-48,-27,-56,-34,-62,-23,18,-50,70,-45,-52,30,-34,33,82,-15,124,85,72,2,-49,-53,-77,66,-33,-10,-33,15,-60,5,-127,-36,57,-74,-22,21,-53,1,29,-69,-23,-2,-18,22,19,4,-72,-4,25,21,64,-25,-17,-26,21,8,25,-11,-4,13,48,-75,36,-7,8,8,71,-68,93,-94,-15,11,-70,30,-17,33,43,-32,-8,-11,87,-41,8,-23,-88,31,71,12,-19,66,-49,-23,5,-72,26,2,29,40,-53,79,121,-6,-51,-6,-63,-111,-52,12,80,-31,-36,32,-20,4,-24,-6,48,-59,-39,14,58,91,18,48,-8,44,-32,35,-79,44,-22,2,-59,26,-28,21,-15,34,53,55,-38,51,26,45,-92,-39, /* [9][0][][] */ 59,8,-33,-42,-79,94,55,14,-4,-6,47,-71,2,26,-31,10,62,-25,80,44,49,39,71,-35,47,-85,27,-8,7,-2,-47,49,-63,-65,39,14,-21,96,37,-46,-106,-67,31,18,-17,-10,51,10,84,0,42,-21,45,21,27,-14,-55,99,50,-12,-24,2,48,35,-4,-60,26,51,-109,45,17,38,42,-6,48,-43,-67,-46,51,7,-11,2,-41,-67,-46,35,42,17,7,-28,0,14,5,34,6,-41,50,-80,30,52,-39,-28,17,54,-97,-11,-20,39,-92,-3,-59,-5,-36,-16,-2,-21,-9,12,71,56,10,-46,-87,-27,21,-94,27,-41,-2,-42,-71,-58,-48,11,-2,5,-6,92,-38,64,104,-12,-6,-72,-61,-12,58,23,-66,-64,24,24,-58,-12,-2,56,-12,-27,17,7,3,-36,-2,74,-18,-76,47,-29,21,25,28,-62,-32,67,42,-56,21,71,-56,127,79,-15,60,-5,-103,8,-63,-20,-13,18,45,7, /* [10][0][][] */ 28,-11,99,-47,-47,-2,-65,30,-46,89,92,-70,15,127,63,7,0,-4,-87,-28,41,-50,-47,8,-94,114,86,13,-87,-18,1,-23,-64,86,-17,-24,-38,25,64,104,9,-3,-23,40,-24,27,100,-47,-39,-56,3,-96,-91,-39,-90,-58,59,14,-41,108,71,-39,4,-25,-51,-51,-27,-50,100,34,125,-56,-11,25,52,-43,-82,-59,15,27,-88,33,-69,28,52,47,42,-12,-32,57,-55,-33,-15,10,-52,-9,-23,-38,102,19,61,33,-19,65,-2,-16,4,-63,-33,-79,-45,-41,12,-71,106,-10,-111,16,29,-45,50,-31,38,-40,-31,-4,122,-59,38,-21,-96,28,53,13,-43,65,1,-32,17,51,14,50,-12,20,50,5,-14,-20,42,29,24,42,83,-64,-7,-25,44,1,40,-92,-33,27,-12,-18,23,1,2,56,-16,14,-22,-29,59,2,123,-74,2,23,80,39,25,22,125,-69,-97,46,15,94,-26,-1,-17,17, /* [11][0][][] */ -77,-3,-32,-27,107,46,12,-18,4,-65,41,-27,-67,73,69,-37,36,51,28,-27,-65,4,-56,-114,-17,-2,45,-38,41,11,19,8,24,61,116,73,-10,-23,-115,4,39,30,-75,-4,0,-21,98,4,38,28,-24,-9,3,-108,-27,98,-17,-49,62,-4,-86,29,-87,29,60,-53,-78,73,-114,-68,-38,-109,-76,-17,-54,-41,-80,25,-26,-38,-61,10,-31,22,-4,0,-34,-70,-42,0,-54,-7,-57,-43,-40,18,-27,-32,120,-46,-31,-35,24,1,113,-80,-52,51,79,86,51,25,-18,-40,8,31,41,-39,-58,38,-25,39,-14,39,8,14,88,7,19,-42,10,-27,-2,-63,-6,39,27,-40,-15,-13,-2,-5,8,-36,35,78,0,9,-96,51,3,90,-42,30,27,46,21,-20,-62,-71,52,-35,-41,13,14,-7,127,-17,-67,-65,-10,80,83,102,-46,-42,-17,-39,-50,29,39,8,-115,-28,72,-70,2,-22,-94,-31,-29,-111, /* [12][0][][] */ -14,-18,23,71,-59,83,76,28,-29,55,-21,-39,9,-40,22,-19,-2,-16,16,22,53,-19,17,75,-44,-1,0,-89,30,22,61,40,21,-8,43,-53,94,-25,48,-62,-33,-4,-16,117,-51,-1,-48,7,-8,27,12,-83,29,-50,-4,-6,1,64,-7,25,95,22,-24,-30,87,12,67,-4,17,-33,57,-127,16,-49,62,9,-53,-37,-46,-66,-50,39,-62,34,29,-74,-10,-30,-8,-23,-32,32,-19,17,-21,57,-30,-31,0,36,-16,16,-23,0,-79,-53,37,-42,-101,-58,-22,81,-57,69,-54,68,-46,46,-89,28,-57,-89,-18,33,12,-24,27,16,34,5,-8,17,39,-14,-16,-2,-32,-34,-3,-42,19,-67,-62,30,-10,-39,14,-30,-42,-14,57,-53,36,49,-52,-55,-24,-60,-27,-11,-49,56,64,10,-40,30,27,-62,-113,-4,27,11,-5,-96,26,-68,-39,-17,94,-61,65,20,-29,-44,-94,2,19,-54,-55,64,-2,6, /* [13][0][][] */ -75,39,19,24,93,-63,-77,-42,-20,72,78,80,2,-49,-12,-49,18,-70,-78,2,-33,-29,32,-8,31,56,1,40,-67,-17,22,-28,-27,51,-43,-36,52,-15,-15,-23,39,16,104,40,80,17,-8,1,-28,18,-2,-29,-36,-15,74,-7,-100,-59,49,24,47,-3,39,-60,-46,44,63,-41,26,-5,25,-50,80,48,33,27,5,46,72,-61,13,-38,-40,-15,-42,-62,9,-38,-31,-25,-30,-5,-37,0,43,-29,3,40,-113,-49,-46,15,38,-17,38,10,-2,18,83,53,22,-5,-17,115,16,-43,-51,36,-36,-96,-18,-89,-71,-65,72,-7,49,-12,-23,10,-69,22,-48,34,-59,-45,28,79,2,50,0,72,-68,127,13,7,10,-37,-61,17,-9,-17,-122,19,-35,56,63,-64,-33,3,-34,-49,2,4,55,9,-7,5,74,-21,31,-72,38,1,58,-103,92,-3,28,23,-8,-53,34,18,36,23,3,75,32,10,6,45, /* [14][0][][] */ -3,-94,-16,6,45,27,-17,1,2,4,-50,60,83,-60,66,-78,62,-25,46,85,39,-42,14,59,-91,58,-46,17,19,-5,-29,-21,-34,9,-19,0,-55,-66,54,-69,-45,-88,8,-29,14,-2,-76,86,63,-15,-89,-60,56,21,-103,31,3,19,79,-32,-28,-7,24,30,-17,-43,49,21,58,63,12,28,-27,84,23,-24,13,81,5,56,-10,72,111,18,-41,34,32,23,-50,-11,42,81,-5,-6,43,103,68,-17,53,-10,21,-40,-29,72,25,-31,60,31,32,76,25,-24,-6,-62,11,127,64,52,7,-77,-29,12,-27,-33,13,-15,-80,-77,-20,22,71,22,63,-45,-34,28,-40,67,-88,-36,6,-58,87,51,-28,47,82,-16,6,-16,93,-45,73,-23,-7,49,12,7,-56,-76,37,-58,-4,55,-21,-56,50,46,-50,-50,24,-27,-11,37,17,11,-16,-16,-1,-35,-57,-121,66,-96,38,-1,23,-50,-57,-56,22,-25, /* [15][0][][] */ -49,20,8,-54,-3,21,-10,36,-7,47,30,18,-29,24,23,-4,49,29,-46,-48,24,-93,23,14,-56,-23,-39,1,-4,-2,74,48,42,-36,13,8,17,54,-60,0,-58,50,-78,25,-63,12,31,91,17,5,7,22,-6,-29,-67,102,-26,14,55,33,12,6,52,-34,-5,2,-37,-109,-51,102,26,12,-13,40,47,51,55,7,37,2,40,67,16,57,-41,-2,-15,3,16,94,93,28,51,1,0,44,-52,-39,-45,42,1,26,32,-23,-31,-52,-60,7,20,-7,67,29,-98,-64,19,-1,54,22,24,2,-61,-28,31,-53,-40,38,31,-57,54,43,-22,-54,-48,127,92,34,72,-17,-20,-44,-87,60,116,91,47,-13,16,28,-29,-27,-1,-7,-17,108,10,-8,-20,8,-22,-35,-35,20,-21,-51,-57,74,88,18,10,-78,41,1,0,-12,-37,-13,13,68,-14,3,-113,46,-42,2,66,-4,41,-92,-25,-100,-18,15, /* [16][0][][] */ 32,27,-64,20,-63,-67,-15,33,-64,57,-9,-52,83,-22,-87,2,-17,-40,38,14,46,5,-40,-66,-108,-9,-39,-104,-4,-38,32,57,40,78,2,-14,52,20,-4,75,25,6,-34,-68,-22,-21,69,30,-45,-31,-104,51,9,26,-3,-12,2,105,56,-63,8,-110,67,8,12,-7,77,64,-39,23,-88,-53,-16,-74,38,-13,-43,76,42,-41,-18,-93,-10,16,2,-27,-107,-58,7,9,-25,23,21,-1,-50,-4,6,-1,65,-18,-67,-56,-124,-17,-33,32,-6,57,63,4,33,53,-40,-13,-70,-14,30,-127,23,-42,85,-1,29,55,-95,-21,8,-33,27,-50,-37,28,9,28,-23,12,21,13,9,5,39,53,19,56,-59,-16,-9,-36,-8,-17,-8,41,-89,30,13,-21,-30,-66,-2,4,7,-65,101,9,-65,-25,-68,20,38,-40,-42,-1,34,53,58,-67,-36,3,-62,-39,10,102,35,26,-13,5,7,-69,-5,6,23,78, /* [17][0][][] */ 91,-94,7,96,18,-17,-70,-38,12,28,-91,26,-31,14,-33,10,-6,-36,91,81,86,-33,9,-31,50,46,70,-42,-71,-47,-93,38,45,49,49,47,67,31,51,-34,-30,100,-63,-123,11,-54,-99,20,21,22,-45,-10,-32,50,-8,62,3,-8,-3,0,-2,-71,-75,34,29,35,13,-68,-51,127,33,-30,16,53,-62,89,-89,-1,22,-71,-5,-45,0,-70,10,48,29,19,-12,-43,9,-14,29,9,-35,-53,2,-25,-85,-67,-4,-82,-23,-37,65,64,2,99,16,-36,-12,-45,-22,4,-15,-3,36,38,45,81,19,-52,23,8,-10,-33,21,51,-8,89,-5,-120,-2,88,79,29,18,-54,39,-26,69,5,-72,-39,-87,29,-69,30,-91,-4,-19,-11,65,33,13,33,-18,15,0,-44,-29,-17,-68,28,14,-48,17,-44,-43,11,-11,-41,5,24,79,-39,-68,-33,-44,16,-82,-9,18,-2,116,-6,21,-8,-50,-22,31,16, /* [18][0][][] */ -87,-43,-2,6,8,-83,-35,6,57,-12,-50,102,-60,-31,-88,-10,-44,45,-10,28,36,17,-4,18,63,46,-49,35,-38,-4,-4,-57,-72,-54,-43,2,68,-72,-49,42,-25,1,-10,15,84,-21,52,-6,10,-47,7,30,-27,62,19,29,-48,51,-47,-98,39,-29,113,-14,67,-96,9,78,43,79,35,-14,20,-95,-36,14,-84,51,-21,103,-25,26,-54,2,-10,68,-11,-19,37,19,-3,-65,76,-36,-100,45,52,17,-73,-8,3,27,43,-24,-55,-21,-55,-12,-1,73,-19,-13,-30,53,-13,-39,-47,-80,86,40,-71,-33,-64,61,-8,52,-20,-25,-22,-28,-22,-15,8,-28,40,19,10,3,-10,-14,-38,-32,30,-20,-64,5,-40,-26,18,-10,-32,-25,19,-42,-12,-1,19,108,26,-28,8,17,-29,43,16,-53,-18,19,69,-73,58,-2,37,-48,-44,17,-31,52,-34,23,-4,-107,43,-127,-7,-64,-55,-55,-23,-62,33,34, /* [19][0][][] */ 49,-45,27,7,-15,51,-95,-1,29,-97,51,44,2,-87,81,-38,51,32,-57,-10,9,6,32,-71,-25,-67,-27,-36,-50,-81,-36,-16,-61,12,-83,-17,11,-58,-14,-76,27,61,59,-4,-15,64,-92,19,10,74,-80,52,-22,22,-19,21,19,48,-1,45,50,-127,-22,-27,100,17,40,51,-40,-27,51,106,-78,76,91,50,-5,-118,43,12,10,-55,-70,20,27,82,64,-55,-45,-17,57,92,88,-29,0,-36,-12,-67,33,-5,24,72,43,52,97,59,5,8,63,-84,-97,-33,-1,-7,40,44,-10,-72,-32,-12,-83,-39,-26,-76,33,4,31,-9,-42,-60,44,-52,39,-1,-47,23,-42,71,-22,-12,-4,-7,74,52,80,35,-115,-36,10,20,-63,25,-11,77,12,-55,-125,-41,11,-8,-11,34,-27,45,29,-29,13,58,-80,14,66,1,-66,-51,10,29,2,-24,68,-8,-70,21,-54,-46,-36,15,0,66,-3,70,-15,15, /* [20][0][][] */ 3,-56,15,-54,20,53,-19,6,-20,-18,53,22,29,-34,40,9,0,-114,73,5,-4,-14,29,-52,56,13,-8,-28,74,73,67,-26,18,9,15,-2,-78,-40,69,24,71,-1,21,7,-40,32,33,-41,-10,75,21,4,-30,44,52,-27,-63,-26,20,-20,5,2,-108,-68,38,-50,-8,49,41,-10,58,21,-12,18,46,18,38,75,38,-15,-42,-14,-42,-68,60,45,59,19,22,-16,-45,-1,69,-20,9,40,29,-57,50,-44,27,9,30,73,-24,-6,37,58,80,-69,4,-1,-24,-39,62,-39,2,-4,20,34,-54,37,-7,-8,-63,28,-5,-33,56,37,55,15,-63,38,-17,-7,80,-37,-16,-24,20,-3,47,94,-96,127,0,-84,12,17,13,-27,69,46,-9,2,-19,-32,26,17,43,-15,-62,-28,33,-7,-74,65,32,-70,-38,-15,-87,-31,-61,-15,60,-39,24,39,-8,-70,35,-46,-20,83,53,-6,64,-30,-10,-17, /* [21][0][][] */ 38,-47,-74,-94,-50,-18,-42,63,1,-11,-34,64,40,23,75,-97,-37,-6,-54,-104,10,-88,-44,58,100,24,112,14,59,47,0,39,66,-87,-66,-71,-32,-65,75,115,69,-69,-43,-97,4,-31,5,-93,-77,-11,8,71,-22,-95,-34,-100,-35,46,-19,56,30,-12,-109,-58,67,46,-4,15,-27,-85,-23,-84,45,101,-66,-49,123,-59,-21,36,1,-35,-47,-19,-2,-127,19,-70,1,-25,73,-100,92,4,14,-9,19,-57,7,-72,-55,-59,-39,4,-30,-5,-82,17,21,-100,7,-37,102,30,-66,6,-3,-87,71,-77,-3,-53,32,-70,48,-87,47,58,-61,31,-49,-5,98,-39,80,69,-104,28,-92,-23,-49,-18,44,-24,20,-16,-79,60,-44,69,9,31,85,50,-39,36,-7,-46,-26,13,17,-87,-30,72,-48,-78,-47,23,100,-79,31,-13,-91,34,-19,60,-9,-53,-112,-78,-25,62,33,10,-20,-73,-50,57,10,21,-29,76, /* [22][0][][] */ -57,24,43,-9,42,-5,39,-44,36,48,5,-30,-59,-12,81,-58,57,3,58,100,-4,22,-13,-15,12,46,-100,-49,-28,-58,22,-72,-22,11,-39,18,-72,-68,45,61,-23,-49,19,-77,-37,21,47,-9,-26,51,-19,-87,-73,32,32,-19,-84,-25,44,-12,-1,-22,-63,-58,46,30,22,-67,-1,-15,-42,-50,-30,26,80,-70,37,-45,22,29,4,-59,-37,81,54,-41,8,-38,9,-50,28,-30,86,14,-26,-41,43,-25,-43,19,-7,22,-42,45,69,-46,-39,43,-114,-62,25,-56,25,1,67,22,43,16,-29,-127,-3,11,24,56,-20,-9,-34,17,-35,32,-50,81,6,-20,50,44,2,63,-25,47,3,20,-67,35,-29,-38,-77,61,-45,78,-33,-34,-38,-25,-37,-79,-40,-7,-64,19,63,-80,36,17,-14,-24,-15,47,72,9,10,-9,8,-49,-48,35,-3,-55,25,65,44,58,-44,5,-16,-54,-22,-45,-25,-36,-3,-50, /* [23][0][][] */ 48,11,-8,-10,-105,39,-52,-31,49,36,-7,-58,98,1,-59,14,-14,-127,40,48,-39,-43,24,45,75,4,2,4,-51,-46,-38,-47,6,53,15,-6,17,60,19,-42,124,84,3,-60,-12,-10,16,19,-54,19,16,49,4,-9,-115,-34,-42,-68,-21,61,-91,23,38,-29,-6,44,4,-46,-41,-38,-51,-59,31,-32,74,34,66,-4,-33,27,-57,-43,4,-27,43,-24,-55,-36,-55,31,-95,-18,13,-17,46,-17,27,-30,6,-44,66,30,40,-13,14,-4,-22,1,75,-117,-8,-5,74,4,58,79,-6,3,-35,21,10,42,-11,-122,29,3,4,23,60,5,38,-38,5,22,-26,55,65,-24,46,5,8,-87,-12,-28,-106,-72,48,-40,21,124,-46,-13,99,-32,44,-23,-2,-64,-39,-8,14,-5,49,-89,-22,-42,-43,23,112,32,-68,10,8,16,-99,-11,105,-59,-61,11,-21,18,-54,-66,-30,-123,46,-28,3,2,-10,42, /* [24][0][][] */ 14,57,-18,-48,-113,59,-43,1,-44,-3,57,-84,52,94,82,0,-28,98,-39,-11,25,3,26,58,28,94,58,-63,9,54,-45,-13,-126,-26,-27,92,4,-4,20,-44,20,14,-89,63,78,24,72,31,20,-48,-8,17,26,85,-68,-78,7,54,24,-12,-42,64,0,-100,-8,-62,37,52,-5,-14,-42,40,6,18,64,78,34,-32,-59,-3,39,-47,-19,13,15,5,-109,-17,13,-56,18,44,-33,41,-10,84,-97,-5,-51,41,47,-8,-23,2,23,42,-61,11,39,127,13,35,34,24,13,19,-43,-34,50,64,-2,-41,38,-68,-8,7,-69,72,52,-56,-105,28,-21,3,-56,-27,-35,92,77,-42,17,-56,-25,31,-10,55,-68,-29,-21,-39,-84,-77,-90,20,73,21,-31,-60,23,44,-17,0,58,55,51,19,54,-9,-13,35,-49,-48,-14,113,66,69,-66,31,-45,-12,-7,-42,-47,22,-15,-57,-51,51,88,-41,-2,54, /* [25][0][][] */ -51,28,-48,-60,-37,12,55,44,-66,67,-69,-21,-72,28,16,-5,-58,-30,38,113,13,-12,32,14,-127,22,-34,-9,19,-1,58,18,-23,26,-4,17,-42,7,14,63,-31,-26,0,-28,-54,52,-15,91,2,-24,-46,71,13,-48,100,-1,-121,32,-38,-9,-29,66,-86,-58,-20,38,-71,-6,-53,90,6,16,67,-25,4,-60,-9,18,-22,82,-28,48,-15,60,0,27,-1,21,-68,-10,-38,-81,40,51,-15,-41,-42,42,-26,2,-19,7,11,-64,14,26,20,-56,53,-73,-1,57,-25,-15,-101,59,2,38,7,18,45,-21,44,1,27,-4,76,-27,-57,-6,62,-44,-12,33,-3,28,6,5,-9,25,-36,-42,-74,-27,-19,-24,-14,-51,49,2,-84,-49,28,-23,13,25,61,33,48,67,32,-28,21,97,112,-13,37,-17,-62,19,-5,20,1,8,-25,79,35,-35,14,51,51,9,20,-27,-61,19,-42,54,22,-20,-13,-32, /* [26][0][][] */ 7,8,40,-46,105,79,-61,13,41,43,-62,9,-47,-31,-49,53,127,-31,12,23,22,42,10,-61,33,35,-3,-83,-18,16,-13,-21,-24,-31,-47,-20,-62,46,11,-12,58,25,-35,42,55,5,0,93,-27,-60,24,-51,29,41,18,-124,82,62,18,-43,-74,97,-12,27,0,56,7,22,19,12,-60,-22,-15,-84,-103,-66,87,-9,-76,-57,-33,3,-19,101,66,16,-38,10,21,-3,30,47,68,-27,54,23,-20,56,-125,-5,18,19,9,-74,-14,20,-13,-14,-7,-9,41,23,9,-32,-38,-57,-47,-93,45,6,-10,0,31,24,-1,-40,79,61,26,-20,-17,-22,-24,-46,-16,40,11,82,-38,-50,33,-41,28,75,88,28,-13,11,25,44,24,-5,92,26,-19,-40,8,-17,-3,6,13,27,-41,-62,-108,10,6,48,-52,-8,5,-52,-26,17,55,-40,46,3,-38,45,-44,37,11,-41,80,27,-44,-10,-35,-71,-15,-10, /* [27][0][][] */ -22,20,-48,-4,-6,54,-39,11,-52,2,-49,-48,-73,36,37,-52,-18,52,-4,-4,10,25,-29,-10,46,92,-10,28,-18,-4,14,92,26,7,-35,-40,-43,-86,37,-43,-37,-37,25,-56,-24,-32,-4,-47,54,3,22,36,26,74,-56,36,78,-40,-18,-25,-36,-75,13,-26,-15,-2,30,52,-36,-56,6,-52,2,41,24,-9,-1,33,-10,52,49,-5,-40,16,-3,-35,68,17,-1,-15,-58,-19,-4,-5,62,-25,-30,51,-18,-13,-7,43,24,-43,-12,-75,-14,-13,-13,0,-12,18,-4,14,-69,49,15,-27,44,83,-127,42,-3,-32,24,65,6,19,9,-2,72,-12,36,-15,-63,-61,54,67,-2,-28,68,-22,-23,91,-27,-63,67,17,-17,-54,51,-49,-2,-3,-31,0,10,67,-8,37,-4,10,-34,-108,-26,61,-5,-65,55,11,2,-38,37,52,-65,3,-14,-16,19,44,23,41,-22,0,43,72,-8,1,-20,7,55,-7, /* [28][0][][] */ -74,78,28,60,0,-13,27,-11,56,-13,51,-1,14,-99,48,62,-51,-79,100,30,13,-10,-40,-8,-127,-100,15,39,-21,44,26,-90,28,-53,-74,-30,-20,43,0,-10,56,-43,5,-40,30,-68,-23,-25,48,-58,6,71,-112,52,4,-45,47,30,26,25,-42,-32,13,46,31,-15,0,84,7,-73,40,37,-64,-40,6,68,38,-24,3,-26,46,-47,33,-13,-68,-95,45,-118,-3,-36,-28,-62,58,-4,-13,-17,22,-14,-13,-30,-26,-79,-27,92,-21,-35,-12,-27,-51,15,-48,59,69,35,-4,46,11,4,-25,-73,20,49,33,-15,31,-53,-23,88,58,-58,-38,-75,-30,58,10,-52,-99,-29,-1,12,33,-42,-7,58,41,-51,-89,6,32,-119,-6,20,23,60,-37,17,-18,-49,-34,-40,0,-21,5,12,102,11,22,-45,41,29,-4,41,72,77,-1,-26,-10,5,97,50,-19,42,8,42,45,-57,14,-1,-19,-80,34,-56, /* [29][0][][] */ 0,0,-14,-78,-127,17,78,-2,80,-43,-30,-34,-4,3,-17,-19,36,54,-48,-22,-31,4,-77,86,54,62,-37,-24,31,46,31,-60,10,26,-66,29,21,-90,-21,-3,66,40,-21,45,108,45,-42,-20,29,38,64,96,93,-33,59,-38,15,-29,-90,33,16,35,-18,96,-80,-60,28,-40,37,-10,-38,4,11,-74,36,14,21,4,38,3,61,-25,-70,22,-35,15,42,40,13,21,-55,6,93,-17,17,-63,12,40,5,-38,49,-82,-13,-52,35,34,12,-24,-7,-40,12,-21,65,10,11,-54,55,-79,-21,40,-63,-84,74,68,-42,35,79,-52,44,63,-10,-71,-96,-60,-8,76,12,63,-101,-69,65,12,-78,-44,16,60,-10,-3,-63,-25,21,13,-17,46,23,-52,-50,-4,-11,22,25,-24,57,26,-78,-71,-18,-6,-85,-38,-43,-69,-76,-63,0,3,28,-58,55,31,79,20,15,110,-33,12,-7,-36,46,-9,62,-6, /* [30][0][][] */ 50,-1,12,36,-28,-76,-15,25,4,-85,46,84,-3,23,4,-11,-3,-76,-69,-78,16,47,-102,61,9,-28,46,-72,122,34,-57,-3,44,-80,1,-35,-54,-9,16,57,25,-14,21,38,14,-34,-54,17,92,-17,83,-17,27,-64,84,59,50,-12,-29,-11,-38,46,28,2,-94,-50,-3,14,49,60,-27,20,127,29,64,27,-100,4,91,102,24,6,-64,-60,61,-47,-110,-16,22,-14,-70,24,12,35,-45,42,54,-4,2,-50,16,73,-4,33,-21,-34,46,90,9,13,1,66,-3,-44,39,47,-72,-16,-20,-27,72,62,-2,-76,70,-21,63,68,-93,40,20,33,-4,55,6,14,-7,-45,-44,3,-81,39,24,-18,-8,-100,-64,-24,34,-17,35,-106,-9,31,103,55,-31,-49,93,-82,-36,-23,-62,-47,-70,-44,11,39,40,-40,-2,-42,-72,10,-78,57,-7,116,53,20,7,68,23,118,43,-88,11,-55,-30,115,49,16, /* [31][0][][] */ 11,-25,43,39,54,51,9,-33,57,-55,24,64,-57,-18,-66,-69,-43,54,-38,-30,-46,-38,11,-5,40,7,37,-40,20,-71,57,-1,-17,32,22,15,41,-54,84,111,65,59,73,-94,-94,-60,-2,103,-37,-109,-5,-8,46,-57,-24,-38,-22,31,-15,-13,98,37,-64,68,27,2,48,13,-11,47,-2,13,63,-64,54,42,15,77,42,-35,-22,71,-5,-127,3,21,-42,-29,36,-17,49,-4,-55,-36,-27,41,-55,-43,61,-2,-35,-1,-27,-65,-24,-44,43,-80,-52,10,-49,-88,-5,65,-70,-28,-11,-1,-87,-34,-39,-34,40,56,16,3,-78,15,79,-47,7,-24,71,47,35,-3,27,52,3,-34,-45,67,7,20,37,11,55,-15,-40,83,-82,38,64,26,-54,6,10,-98,-75,52,-118,-19,34,-14,-22,-43,75,90,-62,56,45,31,25,44,30,60,-56,58,-28,51,-29,60,-31,19,-71,-70,-21,53,-10,23,-23,6, /* [32][0][][] */ 11,47,-25,-46,-63,-28,51,4,77,-40,-20,-53,-22,26,34,18,56,29,-102,-11,-48,30,101,9,-10,-13,17,-57,-73,6,36,-27,-34,30,-84,29,6,-4,110,12,81,29,-16,74,-11,-44,24,-26,2,-43,-29,9,60,32,98,-8,67,-50,86,2,-26,-91,31,-26,-6,48,-73,-69,2,-36,-23,-127,70,33,-47,41,-30,-89,-23,30,52,52,97,10,74,-32,-21,-12,-12,-9,-31,38,64,78,76,-17,53,78,0,-34,-35,-19,-62,-47,51,-16,-22,31,78,-59,-65,48,-66,48,-5,-27,31,81,61,26,-57,24,32,-34,-21,-87,-30,9,69,-21,37,-6,-11,62,24,42,18,-122,-4,-60,13,95,13,31,102,-27,14,20,77,22,0,43,37,32,33,-81,43,-20,50,16,5,55,-22,80,-9,15,3,-85,-28,19,-99,-26,-18,5,-42,92,45,21,56,89,2,-62,-3,-62,25,3,-20,-15,-61,-41,-13,45, /* [33][0][][] */ -1,-15,28,-15,31,-57,96,8,-83,-44,44,-8,-115,3,-77,28,-3,64,-16,60,-32,-36,39,-13,-31,-11,-43,58,-110,35,-2,-18,-54,-55,5,63,-1,93,43,-15,-15,0,-46,-80,-21,18,-14,4,13,85,25,-29,73,-31,47,21,22,52,28,-8,-14,-47,15,48,-41,-108,-5,-109,57,-79,63,2,-18,17,65,-7,122,-73,4,-74,-57,16,4,63,44,-49,-6,-9,76,8,116,-33,-6,76,70,-4,10,11,-23,-6,84,-47,-26,3,-124,-42,19,61,56,-20,-27,-15,0,-55,89,-60,-97,-33,20,-13,-27,5,-110,41,-60,-3,1,-27,-11,-12,-77,-59,97,-56,-20,-24,16,-2,20,27,41,-36,-53,80,57,90,-35,72,-13,-49,107,12,-77,51,63,-31,55,-103,24,55,26,19,0,-64,-30,70,-13,5,-29,-34,-22,31,22,70,-39,-49,-14,65,-127,9,-9,-87,-8,-59,54,-66,-24,51,31,-35,15,-96, /* [34][0][][] */ -93,-19,-25,25,22,38,28,70,15,26,-52,-16,55,68,22,13,-1,39,44,14,70,63,-42,3,36,11,-43,-68,-42,48,43,66,-87,33,34,61,-48,37,28,62,72,-14,14,-31,-29,39,-39,-62,19,-48,98,-127,-63,49,63,46,-18,10,11,-9,18,-37,-3,-30,45,-5,1,-28,38,-28,-31,98,91,38,51,9,6,-90,7,-25,22,28,11,43,-40,-39,58,10,-30,-47,-99,-54,10,42,-70,-45,30,-1,69,-66,39,39,-32,-36,27,-23,-6,9,-10,-84,18,18,-19,-5,8,-35,22,-29,-8,49,-65,-20,51,-14,20,-66,33,17,54,19,57,-80,84,50,-29,15,36,-51,28,38,-28,1,30,-7,-14,89,6,-22,-44,-83,-40,-93,-42,27,-54,-26,7,60,34,47,-58,-31,48,37,19,-54,7,-90,-58,4,-4,-62,41,39,20,25,-72,66,-50,24,-67,-90,36,32,31,-29,-45,4,9,54,-60,49, /* [35][0][][] */ -38,97,-16,97,-69,21,33,-61,-10,-21,10,-21,33,49,14,40,19,-18,18,50,-25,-15,-65,0,102,-31,-41,-33,-26,21,-3,40,39,-13,33,28,-2,34,-16,-53,-26,3,10,67,18,9,4,36,79,36,-29,122,-46,-33,66,47,9,85,-65,38,34,53,60,-41,-27,-52,19,22,108,-102,-39,56,-27,-41,36,12,-21,-89,-67,-77,59,13,68,29,-20,-33,119,-21,-52,0,13,12,20,-127,25,30,18,58,20,-5,-69,39,7,-63,-39,-56,-6,32,37,4,-36,24,-25,-93,-96,65,-3,-60,-44,16,-3,-50,-16,15,-43,-20,-37,32,-45,73,-29,-16,-23,-62,46,-24,-55,-61,-8,57,67,-8,45,59,50,-50,55,-41,53,78,77,-11,77,-16,2,37,-78,55,-37,30,-19,-64,0,-9,69,16,63,2,-23,20,-32,23,5,12,35,29,-51,-27,1,22,21,-40,4,7,109,-17,23,-17,-41,81,49,49, /* [36][0][][] */ 16,95,51,25,-14,-13,-12,3,-28,70,-106,49,-24,13,-81,84,-11,98,-118,-4,27,10,-40,75,-60,-51,-62,15,1,68,-39,-26,-20,67,-10,9,48,-28,54,13,31,51,4,2,-14,-71,-28,-37,47,-27,-71,-50,-39,-12,-16,-64,-1,-50,8,35,-42,20,-60,70,54,51,60,-21,-17,-1,29,-64,-3,96,39,-54,-40,-23,-50,24,-45,4,14,-12,36,17,127,37,16,-53,-1,7,-91,16,6,25,101,-34,-39,30,46,-68,-31,52,-61,31,35,15,62,19,27,-29,47,2,83,54,-4,-15,8,93,84,-45,-7,-40,45,-67,1,-100,-49,-20,59,-18,25,100,6,2,-12,49,20,78,25,-24,-54,29,55,51,41,-17,1,3,39,-23,114,21,54,112,-95,68,61,39,29,99,28,5,50,20,-41,103,-13,-10,-45,-35,47,55,-43,29,-19,29,-41,71,109,71,-9,-87,7,54,-4,-86,25,0,-16,-82, /* [37][0][][] */ -38,-40,71,-15,-54,-12,-26,35,-59,-73,30,98,-120,56,-31,72,0,-103,37,3,-21,-31,-26,-2,-29,6,-70,-73,-36,71,-31,-25,9,-4,-3,-21,-43,-4,63,33,44,23,74,38,-64,22,-23,-32,1,20,45,22,78,13,9,28,63,67,74,-34,28,-94,-20,40,63,16,6,26,-5,-98,-31,-67,-75,-60,12,21,47,63,-4,-105,16,-10,74,70,-13,-28,14,-9,50,67,32,-10,-26,46,-16,-39,105,9,97,76,46,-61,-89,-32,-44,-6,-1,-20,-87,-59,-3,-26,-11,10,71,-23,-38,15,51,-21,38,7,-15,53,13,26,105,93,20,-45,7,10,60,17,43,61,54,-30,59,-25,-7,52,-30,-95,32,23,-73,-44,-33,-23,-24,-39,31,-127,-35,94,85,32,-45,69,-46,-62,-82,55,-19,46,11,69,11,-59,66,-2,-9,-6,-32,18,66,-42,-25,3,-17,42,-55,48,71,31,-53,-44,-41,-81,45,2, /* [38][0][][] */ -8,-8,2,45,22,-3,-90,-25,-84,-48,-48,34,-11,47,-61,65,12,49,-26,-25,-21,-3,-63,-63,-71,-79,-4,-56,102,-35,35,-126,14,32,37,14,1,9,-7,-36,127,98,-60,22,-99,-63,-102,-15,6,-37,22,-17,-28,28,39,118,75,-72,24,-51,88,126,51,-18,54,27,50,-77,-107,9,20,61,-22,-40,-87,-52,36,-41,-33,-31,-34,-3,8,-52,17,32,-53,66,-20,-28,44,97,-45,-26,-30,50,-71,-86,-25,-26,-65,-78,64,58,-111,31,27,-14,25,7,-122,-68,46,-5,73,19,58,88,38,-106,-7,-99,-47,-22,25,15,31,-69,-116,-69,21,6,88,40,71,10,115,61,-74,-11,58,-28,18,33,-38,-44,61,-87,-39,-46,-49,112,-73,21,-12,117,-122,-54,-67,-41,-24,-54,79,39,14,-25,-11,-35,-89,41,27,-23,4,-28,-19,-26,-15,-118,-27,38,74,-30,-45,35,16,-60,-65,30,-103,-44,-54,46, /* [39][0][][] */ 81,33,22,52,29,-7,-55,-38,45,-42,-24,-50,30,60,-3,12,-21,-17,-44,8,55,19,13,-3,26,-14,89,-42,-7,-8,79,43,-9,38,76,22,-14,-60,-39,31,29,-13,44,-27,-48,-7,20,-84,24,50,5,-25,15,-8,-39,55,6,16,15,29,17,18,39,34,-12,-13,28,8,43,-68,44,29,-26,10,13,12,-33,-3,36,-52,-38,-28,-15,-26,-17,0,8,-17,-67,62,51,15,73,-17,-24,-63,46,-12,-38,1,-61,-22,-49,-44,-61,-29,45,-59,66,45,22,-85,52,32,-19,-90,-77,-3,-18,-15,-8,-16,66,46,68,-37,-33,-66,66,6,22,40,-68,43,-8,-48,-39,-18,20,20,92,10,-32,-48,36,-35,-100,38,33,-3,5,-25,34,7,7,27,43,6,-14,-5,39,-18,47,34,3,-18,-44,-103,-52,-26,33,-14,-39,30,-46,-30,-14,74,-15,50,38,80,58,-127,20,-8,37,-40,-93,3,-3,-4, /* [40][0][][] */ 13,-10,90,89,35,-42,-4,-13,17,-41,-46,45,-25,-27,-59,29,-38,-37,-13,11,-41,61,-64,-3,79,28,-6,-59,42,10,-17,-32,-61,-28,33,60,-15,-14,-12,-125,83,-69,92,-65,-37,64,82,-5,33,6,16,-83,-30,-26,0,83,-36,57,21,-34,-38,-8,82,27,4,40,-52,-28,-127,50,-9,9,-81,27,6,-34,32,-47,-16,-46,13,7,31,-54,58,6,120,20,1,36,37,13,-17,29,56,47,-90,71,32,91,23,81,-92,-77,16,-58,-41,32,91,-51,59,21,11,71,-8,34,-25,59,47,-21,17,16,31,-20,-37,-52,-45,18,35,10,42,-26,36,31,-24,40,-28,-80,-39,-16,41,-55,-43,-21,22,-82,92,-4,-81,40,-18,55,46,7,45,-46,-28,-50,19,51,16,5,-36,85,-35,9,45,-58,24,-22,3,58,38,-57,72,-51,76,2,47,-22,12,9,-79,-45,-27,-73,-33,30,51,63,68,24, /* [41][0][][] */ -123,-122,-9,109,-55,-42,-6,-109,-7,4,9,50,-42,-88,15,20,115,-113,-52,11,1,-28,36,41,102,7,-5,-58,-104,-84,91,-13,-7,-42,83,19,4,-8,56,-18,74,-89,-23,39,-42,43,24,-55,-33,-51,22,-9,33,-25,47,-1,85,-89,70,-29,102,-2,-45,-77,-26,44,107,-30,-78,-10,32,-62,22,-3,-126,-23,117,41,38,74,18,14,-49,43,8,-11,87,25,27,-58,-24,-8,18,-24,-48,30,-9,22,65,64,-63,35,-2,33,49,94,71,-12,53,-26,43,54,9,-60,-10,-47,121,-3,111,89,-46,-45,42,-66,2,90,56,-31,48,53,-49,7,-127,-3,60,-71,-109,119,-16,-23,-27,-17,21,-8,-45,-13,-17,-33,9,-26,-60,-70,-60,-76,-23,0,9,73,21,34,38,78,55,3,31,-16,-49,-31,109,45,-5,-28,-31,-10,107,-3,-75,66,-64,2,30,41,-2,-57,55,-116,11,72,53,-38,-9,54, /* [42][0][][] */ 42,13,-84,84,73,62,0,-5,71,-9,-19,54,20,44,24,16,-70,81,-24,79,56,-64,-25,-57,-3,25,54,-26,7,-32,-16,19,-42,63,13,47,16,-59,8,-42,-12,-34,-86,-65,22,-65,-67,-15,26,106,-72,-84,62,-63,16,-70,-11,-13,47,-25,-49,58,22,30,5,127,50,20,12,-27,-21,-24,-30,-45,-3,30,94,71,-23,-95,-46,7,32,30,-52,121,-84,4,-3,36,-69,-16,62,-28,26,-37,-31,56,1,-40,31,91,20,67,52,26,6,-68,-63,-48,15,-46,5,-21,44,109,55,-68,-15,-41,29,-21,8,-79,-12,33,7,-8,60,-57,-105,32,-45,-22,14,23,-25,-4,-30,-64,19,-35,-61,-23,-45,-24,30,-43,34,-23,-6,-1,7,46,5,-66,49,28,-6,-105,-75,-55,-76,37,-52,-36,-120,65,-59,-91,-6,16,41,-40,51,10,-23,92,93,-12,-20,41,66,-36,4,-32,1,-46,16,-49,26,48, /* [43][0][][] */ 49,56,1,29,115,-18,-56,15,14,14,-87,14,21,36,-48,112,16,31,-79,-5,-98,-11,2,29,-20,7,78,-105,-106,-61,44,83,-41,60,-54,-10,41,48,-53,92,-29,1,8,-39,-58,-47,-13,24,-43,18,42,50,15,-12,23,-51,-38,-65,78,-25,16,-61,25,42,5,-65,45,36,61,-111,-84,-21,55,-73,-35,62,77,-24,34,16,127,-49,-15,31,-23,12,-16,-71,67,28,-96,-5,-34,68,-30,10,26,3,22,-10,114,26,54,-5,-30,44,26,52,-78,6,-5,-38,39,-56,51,-89,-14,16,-53,-31,-60,-2,3,-28,9,103,-21,-50,-5,8,-38,73,37,-101,26,-36,35,-22,-73,-31,-44,-22,-31,83,-26,15,77,3,30,-89,-9,71,112,-17,-23,84,-50,2,-45,29,38,-79,-73,57,-11,-46,56,0,59,-11,-63,42,-7,33,89,2,67,-69,66,-36,-18,58,-5,-8,-37,-39,7,44,41,1,-93,-35, /* [44][0][][] */ 45,77,6,-32,44,60,-26,43,50,-98,-36,-57,-70,-71,70,34,-40,11,-27,125,48,-7,4,-8,33,-21,-15,-30,-23,63,-9,11,-20,-17,-25,24,-6,-57,-39,11,17,21,-28,37,-79,-64,-54,36,-47,43,39,46,-25,82,7,24,11,-76,-23,24,40,57,-34,22,-30,8,-66,58,54,32,-36,-38,65,-29,-3,50,-39,70,52,-60,-16,49,-15,64,-20,-25,10,65,19,61,-21,-38,-30,9,-50,4,-16,9,25,-21,-25,-23,-11,-5,7,-9,-53,-42,46,-41,-49,15,17,-51,-1,-7,5,13,22,-21,3,-13,-30,-4,8,2,-3,-24,-6,-87,121,-24,-79,-91,15,78,-29,38,127,-13,93,-6,-18,29,-82,-44,50,50,78,-11,31,57,82,-30,110,35,-46,-53,-29,14,-27,-27,46,26,-58,-52,-17,40,27,66,-23,8,44,-28,-20,15,-55,-4,-45,-33,-11,21,-4,76,-21,-2,32,96,-26,-15,-48,32, /* [45][0][][] */ 127,111,-53,-68,-34,-44,35,16,-18,55,-36,-9,-41,52,-25,-29,-105,-54,-70,25,32,-46,-24,42,5,-18,-82,-42,61,51,-34,-55,9,-11,46,58,19,29,61,24,-25,78,-28,9,46,-15,58,-7,56,61,-1,-21,-50,-47,-70,-106,-6,-125,24,36,4,0,19,-28,-61,-7,30,-23,-3,46,28,-102,-35,-60,55,-50,-22,-96,-84,-57,0,-11,115,-37,-90,74,22,38,0,21,-37,4,77,6,-38,11,126,58,60,46,-27,12,47,59,48,60,-58,-5,28,46,-53,14,-29,-61,-78,-25,-54,42,28,-55,-6,-2,49,33,-63,16,9,14,-8,-20,-43,19,-54,5,-3,-23,-111,62,28,-60,-98,-110,-5,72,39,3,-9,84,-54,-107,32,60,-7,34,-70,9,46,12,52,-18,57,52,17,-18,-1,57,-17,27,-3,92,43,-17,-13,2,-43,38,11,-45,20,-39,-85,-62,-35,40,32,55,-36,-24,65,1,32,-19, /* [46][0][][] */ -30,-24,-48,45,85,-9,-99,-41,29,14,49,-10,57,6,16,105,-43,-1,-31,-28,-13,43,-76,33,23,-48,-27,-20,19,-49,-22,13,2,-50,-78,-97,-4,35,-77,51,9,1,-127,-33,15,82,37,9,40,9,-37,12,-47,0,-52,64,20,50,-76,-60,15,23,-78,79,29,-22,67,-81,-16,45,39,-38,33,95,-26,22,-65,-27,-34,5,-114,42,40,-72,36,12,-42,-8,-27,-87,4,-13,88,36,91,65,17,29,98,49,13,1,14,55,-9,25,-23,-25,-10,-54,-29,-58,-7,-14,-59,-27,68,-23,23,-23,-47,13,-112,14,-89,-51,-46,44,23,-5,-68,3,-20,-30,-19,53,-36,-52,56,20,35,42,22,12,121,-41,-39,57,80,-47,20,19,34,-68,14,-60,23,106,35,100,-46,22,3,-2,80,1,-5,76,1,39,35,-9,-31,-8,-46,-65,47,37,-69,11,48,79,-50,39,90,-29,-40,-35,89,-4,-6,-41, /* [47][0][][] */ -22,25,-20,7,-9,65,-52,-52,-37,6,-19,3,-19,7,-33,-13,4,-56,21,19,60,8,-26,50,39,-91,-26,12,-69,2,-9,11,17,-67,18,-14,-15,24,51,34,-36,-34,-51,-21,22,76,4,-95,6,-30,11,35,27,21,48,23,35,9,13,30,-96,-23,82,6,-11,25,54,11,-42,45,101,73,-7,-79,-23,10,1,25,8,-35,4,-30,58,-18,17,80,-25,6,31,36,-28,91,-48,10,-65,-39,17,-24,-107,63,20,29,27,-1,-18,-23,-34,38,-53,24,-38,-27,76,45,78,-39,-4,50,-49,14,-6,36,-55,70,15,-36,25,-27,96,79,14,-22,47,47,19,59,-27,-87,-33,-51,39,-5,-34,-4,74,127,-32,-6,26,21,-100,32,29,-72,-96,-50,-14,-89,2,34,89,-21,21,5,-11,-9,4,120,62,43,29,52,25,0,-93,-23,37,-24,-53,9,19,25,22,2,-27,-35,7,65,69,15,-11,91, /* [48][0][][] */ -46,1,21,-5,31,16,33,35,53,7,84,-55,19,-9,-34,-74,64,65,29,25,-14,-2,-52,-6,-8,43,25,-95,23,-4,-66,12,-44,6,92,-17,-15,-52,31,-1,127,9,8,55,40,74,15,116,-68,-10,12,-61,-10,1,-55,14,43,-8,-21,51,6,-51,34,-41,50,60,-16,-58,74,69,35,22,42,-7,7,55,-27,-11,-42,-27,65,-28,10,56,18,39,9,36,-11,-4,11,-75,-7,-7,97,33,-40,-43,-38,-18,-30,-68,40,-8,-40,16,7,28,-30,74,70,-5,8,35,25,-5,-75,-10,17,126,20,-65,11,13,-27,-20,36,7,68,36,-82,19,38,20,52,-13,-16,35,35,38,12,-5,87,-4,11,-73,-8,28,53,-62,-10,62,66,34,-7,8,82,19,-38,-41,29,-30,36,-26,22,-19,-56,-44,45,55,62,-33,-63,30,-116,-75,71,5,-5,-58,35,29,-27,-36,48,19,-42,82,-34,14,31,77, /* [49][0][][] */ 32,-78,-8,53,-9,55,-28,54,-81,-9,29,15,2,-95,47,4,15,-32,-42,8,42,39,53,-27,-41,38,30,47,51,61,15,-50,-21,-59,-2,48,5,9,8,3,79,49,22,10,-3,-49,-76,-31,38,98,-18,77,29,-3,78,-4,43,-29,11,-18,-20,19,51,-45,46,-39,-47,-57,-56,12,-64,57,-46,11,41,-12,-27,16,57,27,71,-24,-24,80,-23,-22,2,-61,1,-28,15,-10,-28,9,-71,-49,-39,29,49,-46,-20,-14,-77,49,-17,-4,-7,-39,-42,28,-2,-54,0,-32,-104,21,-20,63,-47,12,-93,36,13,15,-20,19,2,63,12,26,-14,-4,-7,21,-39,54,69,-8,20,77,-21,8,-45,26,65,-43,-41,24,-20,-29,9,6,-30,-3,1,-23,0,62,-21,93,-40,-7,24,-25,6,32,7,127,66,49,-63,-7,-92,26,36,-56,-26,19,4,11,-49,33,-17,-75,-33,-67,31,-64,29,4,-32,57, /* [50][0][][] */ -33,-89,74,-56,36,13,57,-11,-37,4,-26,-30,-22,19,-47,25,27,-66,-36,-54,29,-15,18,24,98,32,-34,-30,11,-28,48,-37,-25,21,59,-3,50,57,45,68,5,12,40,-5,127,-10,2,30,14,51,-50,55,-1,-54,-31,16,-33,-71,-69,-27,-58,-34,65,-46,81,77,29,34,-3,-58,40,8,-25,82,-88,-14,82,22,-6,62,-24,30,25,60,-21,-55,-1,17,19,-80,1,50,-39,22,-30,-100,-46,-78,-29,-92,-13,26,-35,10,97,2,46,-45,62,-7,-26,-62,50,-9,7,-33,-60,-61,33,-84,64,1,67,-18,-2,2,-59,22,29,10,37,-4,15,-6,-18,37,-30,-37,5,7,-36,-65,-75,-76,-15,15,53,14,60,-65,-17,36,-36,20,0,40,25,-6,8,32,-44,70,-73,20,-36,-81,-45,15,-42,-24,103,-30,4,-10,18,-102,33,53,64,53,-9,66,-105,-7,3,-27,53,87,-54,51,21,-61, /* [51][0][][] */ -4,77,-11,57,10,7,-70,-4,53,-68,-78,-86,-78,10,-75,-7,3,-6,36,-11,-29,5,-1,-41,31,19,22,112,-57,4,-27,-35,2,26,16,-4,35,33,50,19,60,-17,-13,64,108,-20,-76,22,35,-62,-2,-81,47,13,45,6,71,-29,80,-20,43,-41,-12,3,36,11,4,-37,28,-23,-57,29,116,58,116,39,75,-54,42,-18,-64,-66,38,-25,36,81,60,-27,24,77,-17,49,17,24,61,6,-114,68,96,-28,-32,23,-72,10,-17,-21,-16,-63,41,127,-42,74,-14,-46,11,65,98,33,-48,-31,0,-22,-63,47,10,-4,-10,-3,-39,-20,-45,-5,41,-3,-3,-14,-70,-115,34,-53,68,-77,-7,-33,-5,8,-102,-55,61,46,-40,-65,-80,75,-52,-29,8,14,-65,-103,18,4,69,7,-15,24,-69,73,-14,-72,52,-23,41,-11,-33,-44,12,-74,9,-5,101,58,-104,-38,-46,60,28,63,10,60,23,46, /* [52][0][][] */ -29,62,23,-29,91,25,-55,26,-55,6,-21,28,29,-22,7,-85,-48,-88,11,-82,34,-30,-71,65,17,52,40,-8,-25,-26,-2,-30,23,-71,11,44,-1,-2,-15,74,5,-2,-34,12,-22,-20,-38,-88,5,68,-20,-3,28,76,18,-18,-43,-65,50,43,22,17,76,-36,4,-47,26,0,58,79,4,4,10,-26,-49,-19,-64,25,26,-26,-127,5,-16,9,46,71,-17,-36,26,78,-66,-28,36,-13,7,51,-56,-13,-70,-65,-70,-8,-17,7,-12,-103,39,46,32,74,-26,31,17,-1,-9,3,42,-14,-19,114,17,11,-26,-85,4,15,-48,85,78,17,-49,-32,-49,12,66,101,30,45,-57,-50,-53,33,47,-89,3,-11,17,47,-33,-23,36,110,-46,69,-28,-62,-100,44,-57,19,22,-16,-66,2,57,6,-14,-53,-4,7,-67,-37,-64,50,-16,34,-39,-1,41,11,47,12,1,-58,-5,24,-67,-13,-14,-3,41,32, /* [53][0][][] */ 80,-56,27,-35,-12,31,-16,54,31,24,-45,48,41,-39,31,29,1,5,-1,-9,21,2,15,31,-25,6,44,-42,17,1,37,-33,33,-91,20,27,-19,38,85,69,-71,-53,42,-26,-25,32,1,28,20,-49,16,-15,69,-31,-9,-50,-13,-81,17,-11,46,-19,-39,70,-12,-35,-59,-4,75,-71,-40,61,44,-73,45,-52,47,-12,18,50,-36,13,-76,54,42,-68,-72,34,-54,-33,24,-8,102,-74,37,-35,-41,-41,34,35,-18,-31,-75,26,92,3,-43,-29,69,34,2,22,127,64,-87,-54,39,17,-3,92,-89,-41,-34,15,-52,-31,-6,94,-64,72,-49,36,-14,41,-5,-58,71,-81,-62,1,7,5,-10,-22,-3,19,-45,42,52,-57,64,60,29,-50,-25,85,6,-12,-12,-35,-118,-39,25,-38,-3,41,-14,10,-44,-42,100,-56,-2,-66,-39,-45,-16,-46,19,-21,-67,-6,9,2,34,-21,8,55,-68,22,34,-12, /* [54][0][][] */ 15,127,-65,-62,-52,-90,-10,81,-41,-115,-1,-92,-37,0,41,-9,-22,-20,83,-8,65,-55,56,26,0,12,26,-54,-83,-10,70,-67,-45,43,-6,-48,-43,-13,73,-20,12,-6,-18,-79,-66,-57,-16,51,42,-30,-38,-31,18,6,-18,-47,-56,46,61,-71,-113,111,37,-20,-60,100,9,40,44,-90,0,-25,-35,12,-52,-51,22,88,32,52,-60,-34,7,48,58,39,19,16,-8,19,65,80,43,50,-35,-43,96,-84,66,18,3,31,51,-76,58,-13,-43,40,71,42,-55,-5,26,-49,-46,-40,-27,11,-32,80,-78,-33,-74,53,18,-15,2,20,47,-31,-19,-13,38,-15,-30,63,18,15,38,11,11,-9,38,-40,11,-29,-25,15,44,-73,30,-71,-37,-3,-4,-24,22,-30,-27,17,-74,-15,-30,-44,76,-81,-10,62,20,-30,20,-27,1,-40,115,29,-17,16,-32,-44,93,-38,37,112,10,3,-71,-21,34,71,-62,26, /* [55][0][][] */ 16,-35,42,85,87,-75,-36,-26,-33,10,74,-32,0,-16,14,22,-11,-23,-43,64,54,-5,69,22,108,-47,-74,2,13,7,-6,-34,-16,30,-71,7,-7,3,56,-85,48,-13,-8,41,70,14,-45,-60,-31,35,52,-87,-30,-59,-18,-80,-52,-67,99,17,-13,31,69,-47,-65,85,0,22,-9,60,36,20,-120,3,40,-100,20,-8,-61,40,17,20,32,-26,-4,-99,55,47,76,-34,-66,-15,-61,29,12,-69,-49,36,-8,-36,108,24,20,27,-101,109,-66,55,-51,-52,-38,-50,30,-107,-24,65,20,10,-127,29,4,-42,2,10,28,-73,23,28,-59,-73,-94,-78,-30,-71,4,-36,48,-74,2,-10,-38,58,-71,-97,58,-64,65,-34,16,-73,88,9,40,75,56,-23,-31,90,54,37,45,-16,47,-41,-123,-86,-34,10,-101,97,68,26,10,-30,-72,69,-71,8,-41,62,76,51,22,-32,-36,15,-16,-12,-6,-127,35,108, }; const TfArray<4, int> tensor_dimension26 = { 4, { 56,1,1,192 } }; const TfArray<56, float> quant26_scale = { 56, { 0.0017396133625879884, 0.0029089050367474556, 0.001591999433003366, 0.0020245157647877932, 0.002209844533354044, 0.002033822238445282, 0.0023696450516581535, 0.002051396993920207, 0.0021041447762399912, 0.0020800426136702299, 0.0022422247566282749, 0.0017068930901587009, 0.0020813306327909231, 0.0023924082051962614, 0.0022549957502633333, 0.0022046554367989302, 0.0025084784720093012, 0.002293057506904006, 0.0023320512846112251, 0.0019752231892198324, 0.0025548005942255259, 0.001950262114405632, 0.0021621303167194128, 0.002405606210231781, 0.0019337342819198966, 0.0021402311976999044, 0.0021500047296285629, 0.0025852762628346682, 0.0024293819442391396, 0.0020060224924236536, 0.0019071580609306693, 0.0020083088893443346, 0.0024074651300907135, 0.0021884685847908258, 0.0021453623194247484, 0.0021403897553682327, 0.0018953763647004962, 0.0023828418925404549, 0.0019308963092043996, 0.0026226842310279608, 0.0022287280298769474, 0.002168136416003108, 0.0020758442115038633, 0.0021221330389380455, 0.0023558158427476883, 0.0021234876476228237, 0.0021744661498814821, 0.0022075863089412451, 0.0026717805303633213, 0.0028165862895548344, 0.0021706623956561089, 0.0019830858800560236, 0.0019780576694756746, 0.0022038482129573822, 0.0024226263631135225, 0.0024363771080970764, } }; const TfLiteAffineQuantization quant26 = { (TfLiteFloatArray*)&quant26_scale, (TfLiteIntArray*)&g0::quant13_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data27[192] = { -3538, -2681, -1033, -774, -2659, -3867, -831, -599, -152, -255, -645, -2301, 1194, 2560, -1317, -542, -249, -161, 917, 3281, -72, 4879, 881, 96, -5009, -477, -635, 2011, -2254, -504, -1826, 1785, -1275, -1328, -786, -319, 130, 6, 2408, -1838, -1943, -2401, 1318, -1102, -986, 1097, -346, 1909, -1169, 5275, -233, -587, 993, 347, -1050, -2759, -1963, 246, -1661, 190, 251, -1578, -385, 749, -1133, 962, -3643, -3930, -1004, 1062, 2346, -116, 224, -811, -2166, -2009, -1106, 1207, 4600, -150, -1481, -305, -1010, 208, -14, 120, 1124, -1484, -198, 1121, -1399, -1135, -805, -689, 5405, 5073, -4654, 147, -625, -912, -58, 7441, 93, 2805, -2557, 141, -1709, -147, 100, -148, 164, -534, 3413, 2037, 8240, -714, -1143, 2623, 318, -252, -2619, 4671, -1336, 2741, -29, 6770, -1731, -2087, -1290, 1688, -2157, -1553, -1436, 3909, -527, -2254, -1943, -1312, -916, -2282, -3175, -1114, -1179, -134, -4704, -3371, -1560, 1225, -842, -222, 7564, 1870, -1339, -522, 486, -97, 2494, -856, 30, -785, 9729, -1399, -250, 8043, 1398, -351, -55, -822, -982, 923, 151, 2632, 1081, 19, -642, 664, 4075, -239, -3250, -1268, -827, -1357, -1185, -1116, -2763, -290, -1471, -2463, 559, -3040, -878, 2250, }; const TfArray<1, int> tensor_dimension27 = { 1, { 192 } }; const TfArray<192, float> quant27_scale = { 192, { 0.00021319264487829059, 0.00012533224071376026, 0.00023669730580877513, 0.0001587965089129284, 0.00017696799477562308, 0.00013719446724280715, 0.00014534029469359666, 0.00024743555695749819, 0.00020708766533061862, 0.00021172135893721133, 0.00014183322491589934, 0.00015651273133698851, 0.00021536313579417765, 0.00015085573249962181, 0.00011777842155424878, 0.0002766932884696871, 0.00024540818412788212, 0.00017942943668458611, 0.0001376216096105054, 0.00015594410069752485, 0.00020187826885376126, 0.00020572188077494502, 0.00022080622147768736, 0.00026237696874886751, 0.00015909514331724495, 0.00016851077089086175, 0.00019580077787395567, 0.00013120003859512508, 0.00011571832146728411, 0.00022234488278627396, 0.00022181357780937105, 0.00016052482533268631, 0.00019681460980791599, 0.00017638505960348994, 0.00013924579252488911, 0.00025809215730987489, 0.00023607966431882232, 0.00018986499344464391, 0.00015730521408841014, 0.00010799465235322714, 0.00022160114895086735, 0.0001313670800300315, 0.0001680519781075418, 0.00025113640003837645, 0.00016132248856592923, 0.00023587659234181046, 0.00012995615543331951, 0.0001812060218071565, 0.00024502354790456593, 0.00015881235594861209, 0.00017423344252165407, 0.00023481715470552444, 0.00026473373873159289, 0.00016000702453311533, 0.00011685046774800867, 0.00018113935948349535, 0.00021476544498000294, 0.00016647712618578225, 0.00025344701134599745, 0.0002556905965320766, 0.00014940554683562368, 0.00018608503160066903, 0.00012403105210978538, 0.00012498605065047741, 0.00018389961041975766, 0.0001194275391753763, 0.0001409536343999207, 0.00015147130761761218, 0.00017310894327238202, 0.00012538656301330775, 0.00015231620636768639, 0.00028513581492006779, 0.00019196857465431094, 0.00015034805983304977, 0.0001465701061533764, 0.00018671072029974312, 0.00017667413339950144, 0.00012577208690345287, 0.00019690132467076182, 0.00017230100638698786, 0.00019674986833706498, 0.0002091203787131235, 0.00021286135597620159, 0.00015298908692784607, 0.00022578833159059286, 0.0002203550684498623, 0.0001364645577268675, 0.00020319750183261931, 0.00022744497982785106, 0.00017991151253227144, 0.00015363648708444089, 0.00016813185357023031, 0.00019884298671968281, 0.0002489245671313256, 0.00015703952522017062, 0.00016076336032710969, 0.00015326790162362158, 0.00025680707767605782, 0.00019071188580710441, 0.00023281537869479507, 0.00021575402934104204, 0.00013430748367682099, 0.00019769114442169666, 0.00015111628454178572, 0.00016378522559534758, 0.00040013980469666421, 0.00017308646056335419, 0.00019820540910586715, 0.00016206224972847849, 0.00019189459271728992, 0.00020442331151571125, 0.00020976117230020463, 0.00020669453078880906, 0.00019175533088855445, 0.00014756384189240634, 0.00013907124230172485, 0.00016865554789546877, 0.00019432931730989367, 0.00015191610145848244, 0.00011613832612056285, 0.00016722037980798632, 0.00019128498388454318, 0.0002189511142205447, 0.00015835587691981345, 0.00025913125136867166, 0.00013456615852192044, 0.00022481150517705828, 0.00020946284348610789, 0.00025611315504647791, 0.00022281195560935885, 0.00015367730520665646, 0.00028275052318349481, 0.00014336634194478393, 0.00014399659994523972, 0.00029891336453147233, 0.00017630851652938873, 0.00018324077245779335, 0.00014615734107792377, 0.00020135233353357762, 0.00026396606699563563, 0.00012882349255960435, 0.00017250086239073426, 0.00025946245295926929, 0.00014072904014028609, 0.00013723329175263643, 0.00013177207438275218, 0.00015525383059866726, 0.00016733139636926353, 0.00019581758533604443, 0.00017020234372466803, 0.00019585799600463361, 0.00018653375445865095, 0.00019303314911667258, 0.00020379645866341889, 0.00024039599520619959, 0.00019203910778742284, 0.00014640268636867404, 0.00010881337948376313, 0.00028642237884923816, 0.00015630137932021171, 0.00012910112855024636, 0.00019431898545008153, 0.00015934642578940839, 0.00013415247667580843, 0.0001739120198180899, 0.00024362353724427521, 0.00019850490207318217, 0.00014657971041742712, 0.0001985807903110981, 0.00016707566101104021, 0.00017915027274284512, 0.00018861469288822263, 0.00014941235713195056, 0.00019833692931570113, 0.0001657545508351177, 0.00019663451530504972, 0.00016646912263240665, 0.00036349572474136949, 0.0001574581692693755, 0.00017169601051136851, 0.00018784507119562477, 0.00018099276348948479, 0.00016899339971132576, 0.00014100265980232507, 0.00024304148973897099, 0.0001776164717739448, 0.00022150429140310735, 0.00019247576710768044, 0.00018150756659451872, 0.00013232229684945196, 0.00018624844960868359, 0.00012323609553277493, } }; const TfArray<192, int> quant27_zero = { 192, { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } }; const TfLiteAffineQuantization quant27 = { (TfLiteFloatArray*)&quant27_scale, (TfLiteIntArray*)&quant27_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data28[1*3*3*192] = { /* [0][0][][] */ -113,20,-84,8,-9,30,33,-110,12,-32,86,-3,126,-53,-44,51,-73,-72,47,127,127,-60,25,-1,30,-40,71,-90,-41,59,-1,-51,70,-123,122,41,127,42,-112,106,14,56,82,51,127,127,-127,57,-72,-76,36,23,-28,-14,35,19,-12,31,0,77,-34,15,34,88,75,-91,37,-12,-38,-67,-88,66,-44,79,8,-127,-121,-63,-105,-53,-127,-59,-76,-53,-77,67,76,54,40,-14,-79,-1,21,60,-38,35,40,-17,-3,-41,-26,-81,-85,54,78,-127,60,11,19,-30,-51,61,50,40,-84,3,120,5,-68,106,-19,-127,10,-24,-58,-123,-36,-31,-65,-82,-26,-63,127,-127,26,37,41,79,29,35,-76,126,55,18,-2,-24,27,-97,-20,65,-84,25,-62,4,69,-127,-48,90,-45,114,-127,43,-73,-61,-23,34,57,-94,-8,-127,-21,-127,-123,67,-18,-31,-59,-127,73,-82,24,-34,61,78,54,58,42,-11,-75,-8,54,-127, 27,6,-60,35,57,76,-8,18,-3,12,34,-35,-23,-53,69,-30,-13,28,12,-67,-106,-89,-18,9,35,-57,-26,52,-21,15,10,62,34,-54,30,-56,28,-8,44,25,24,6,-31,-40,-17,38,20,-124,49,-119,-123,82,66,-127,22,122,47,-19,75,2,-57,17,47,-105,-26,-10,11,112,-69,112,94,1,96,18,90,-38,2,-66,-63,20,119,42,11,-40,46,2,-53,60,45,70,5,-7,48,-86,-39,-44,62,-43,83,22,127,-107,-78,-49,-18,-17,127,127,61,-45,127,-13,-26,-28,-4,29,30,-15,-2,1,125,-19,98,-51,-1,96,96,-1,-9,-86,37,-34,34,-94,-19,28,47,-24,-4,55,-24,3,35,9,12,79,-28,-73,42,-35,-101,-44,0,57,74,-14,-69,106,1,60,-108,25,-54,37,-26,26,66,76,31,-68,127,-85,-86,104,85,127,16,24,-70,50,34,127,12,-16,53,-56,78,127,39,-33,127,-109, 0,-26,-58,82,25,85,-28,21,38,127,90,127,-75,-6,97,77,95,70,-37,39,55,-66,-46,-26,15,-18,-21,60,95,55,-38,62,-5,-55,-62,-64,-73,-47,-38,-74,-10,-37,-66,23,-3,-39,112,-26,86,-29,105,88,24,-40,33,24,1,107,59,68,92,38,-77,-16,107,7,94,118,93,-38,-34,-19,-5,-28,-67,24,-20,47,-25,-15,-37,102,13,119,127,113,-45,48,85,-113,-8,-30,-30,-15,90,31,7,88,-38,3,42,21,-27,19,56,-63,90,-22,-59,47,-53,127,-33,-74,-127,89,109,19,7,-47,-18,-47,-20,-43,-26,-108,116,117,-47,-70,63,28,-31,105,71,74,-50,-81,-52,-4,40,25,11,46,26,18,56,-40,127,-37,-15,81,38,-15,-48,106,2,-48,-119,-48,-46,-26,123,-61,80,-67,45,-4,37,41,-70,71,110,-5,-50,-50,13,-40,-100,61,127,-87,-55,-61,9,127,-13,39,-97,111,-53,55, /* [0][1][][] */ 46,127,23,-34,-28,127,31,54,127,-70,89,25,127,-49,-44,-27,127,-34,127,86,-88,-127,127,-6,-2,-43,127,23,-65,127,-97,-82,-127,-68,-30,127,126,127,-116,103,-27,102,2,127,118,-21,-29,127,-53,27,63,26,-29,-4,-14,17,29,-25,-19,127,-13,-1,127,127,127,-50,126,22,45,-86,-127,127,-55,127,2,27,-30,-71,96,91,77,112,-51,68,95,-8,127,51,-127,-42,-26,-36,-27,127,-48,18,60,58,-15,-16,-34,-100,43,127,87,-10,116,-39,18,-62,19,-100,37,127,-58,-5,23,79,-20,127,8,-64,-8,90,24,-127,-13,82,9,59,-48,-35,115,-1,-16,-53,127,127,-67,127,67,127,127,-27,-60,55,34,127,28,127,-63,-56,-14,8,-127,-12,-18,84,-113,127,-71,-127,6,-113,-52,84,15,-73,32,24,-29,46,-54,-79,-36,-54,-24,5,70,-22,64,24,63,127,115,71,-51,51,43,-7,-5,-96, 127,60,9,-7,127,67,106,-35,-7,19,-24,-30,-46,-82,51,7,-41,6,-24,-114,-59,3,-30,124,127,17,13,-30,81,-19,127,127,-105,41,-102,78,-64,-7,-34,110,127,32,-55,-45,-18,-57,86,-97,-34,-127,71,127,127,35,92,127,127,-41,127,-39,-34,36,67,-119,13,-72,60,93,23,127,-3,-10,127,8,127,69,127,-127,-7,3,33,44,87,-65,-52,-58,-69,19,-122,127,92,39,127,-6,-123,-127,127,-85,127,127,69,-127,-25,-95,-36,0,23,88,127,-35,-20,-12,-67,-62,-69,-15,-127,-54,-48,30,127,7,127,-51,62,-45,122,-36,13,127,9,127,-11,-72,127,63,30,-64,127,-56,127,6,-9,-9,127,127,122,82,7,-3,-127,-54,37,127,113,26,-87,117,75,17,-73,102,-34,39,-69,8,6,127,108,-20,88,-67,-44,127,127,86,-127,60,111,31,14,107,75,-22,102,-74,-127,94,57,127,100,-18, 19,-24,127,127,-19,102,-77,-60,-14,110,127,95,-15,83,127,127,114,127,-86,-71,54,-75,10,-1,45,127,60,-119,127,47,13,-3,-22,127,80,-7,-45,69,127,-45,27,127,88,19,-38,-21,97,1,-74,86,127,77,-49,-87,127,72,-6,127,57,-15,127,127,-35,-65,-40,103,-55,127,127,49,-78,-30,-2,-46,-49,10,-40,98,-30,122,-17,-127,-2,127,-57,127,-57,-122,-40,-101,-3,127,-78,2,122,-85,18,127,-43,-16,-19,-33,96,-50,127,89,38,-30,-105,127,-26,16,-13,-84,-27,127,127,-97,119,-61,-111,-38,-47,-125,104,-101,127,127,106,-43,127,-41,120,79,-5,127,40,-28,-62,-110,60,-39,-65,127,120,90,49,-74,121,-50,30,127,127,-22,-43,123,-86,-127,-2,-60,-126,54,127,-98,127,-7,-90,3,1,117,-35,27,127,37,-80,-51,-35,20,65,127,125,-70,-127,-19,22,126,-45,29,-127,38,84,79, /* [0][2][][] */ 26,119,19,-72,-19,57,1,127,114,-85,-100,-87,28,-72,-57,-100,109,-28,57,55,-6,-21,121,6,-44,-49,117,127,-40,52,-62,-103,87,-15,-52,110,50,95,-25,12,-24,125,-127,59,29,-26,-16,75,-28,112,-2,2,-1,33,-35,9,40,-41,-1,39,-45,-72,104,127,-12,-62,127,120,-52,-80,-22,36,-28,79,-12,70,-1,-41,-127,-92,100,-102,24,-22,-92,-91,66,-127,28,-24,-28,-124,-47,69,-41,-101,28,75,-10,-20,-5,-100,127,64,32,-47,-13,-88,-22,-37,77,-66,-32,94,-94,-72,-46,127,-63,25,-19,11,-5,127,-30,-23,21,-24,41,-24,5,48,-7,-55,-7,-50,-22,48,-73,103,66,29,69,-78,21,37,22,-84,97,64,-8,-55,40,-9,-29,-50,127,-1,-127,-4,-120,-117,-28,-35,-77,127,-67,-34,2,33,27,49,55,-53,-19,-6,-99,-23,34,75,-4,46,26,68,-41,-36,49,28,103,-68,-81,-39, 95,71,25,-29,105,-6,127,-2,-2,-27,-40,88,-20,-12,-8,17,-45,-33,-41,-122,90,56,-12,127,107,-41,18,-49,105,-19,101,109,121,111,-80,-44,-82,28,-79,127,83,-24,52,3,16,-8,79,-74,127,-49,88,62,100,122,88,1,93,-52,81,-77,-5,19,8,-36,-48,-50,28,36,72,43,-35,-29,67,0,78,116,90,-47,-4,-23,-45,-43,127,-9,-5,-60,-29,-34,74,113,127,42,74,2,-127,-91,92,-35,59,121,-62,-118,-40,-84,-28,20,-83,-38,76,33,-97,82,-56,-37,14,-31,-71,-49,-5,23,-1,-70,39,-42,-96,-45,29,35,12,-114,28,43,-67,34,107,-27,-5,-32,117,91,111,19,-2,5,125,68,127,-43,-51,36,-79,-33,36,90,88,18,-12,49,59,19,101,98,65,-9,-69,0,-127,48,127,40,-18,-68,31,16,51,-46,3,71,127,23,-38,-29,77,-45,127,-7,83,-17,25,118,-75,70, 40,-45,-22,53,-97,-61,-31,73,-124,-2,55,11,17,127,31,71,-65,83,-63,45,-122,-37,76,-31,51,98,-47,-59,54,-12,82,-40,36,63,127,40,102,74,110,-70,50,-54,112,15,-38,-49,-18,26,27,69,31,-18,-32,-99,108,-17,-6,37,-10,22,53,98,-41,-77,-62,127,-100,36,44,83,86,-42,-10,-75,41,27,-27,92,-88,127,-17,-24,-22,33,16,29,36,90,-1,16,40,76,-77,37,91,-88,-73,110,-42,-11,-21,-2,72,-67,71,86,-95,31,8,58,-60,-81,-127,24,-45,48,89,-109,127,0,-121,-41,-25,-19,127,-84,4,48,127,-31,67,41,115,-111,-49,-15,125,68,-46,118,-23,-80,12,100,91,63,-1,24,-48,-40,16,54,122,7,1,52,-63,-88,62,-64,-94,75,-22,-127,102,-69,-20,11,-31,108,-125,-34,67,-51,21,-95,-65,45,57,16,44,-32,-45,-53,52,26,82,-6,-84,-9,43,47, }; const TfArray<4, int> tensor_dimension28 = { 4, { 1,3,3,192 } }; const TfArray<192, float> quant28_scale = { 192, { 0.0090606873854994774, 0.0053266198374330997, 0.010059635154902935, 0.0067488513886928558, 0.0075211399234831333, 0.0058307647705078125, 0.0061769625172019005, 0.010516011156141758, 0.0088012255728244781, 0.0089981574565172195, 0.0060279117897152901, 0.0066517908126115799, 0.0091529330238699913, 0.0064113684929907322, 0.0050055827014148235, 0.011759464628994465, 0.010429847985506058, 0.0076257511973381042, 0.0058489185757935047, 0.0066276243887841702, 0.0085798259824514389, 0.0087431799620389938, 0.00938426423817873, 0.011151020415127277, 0.0067615434527397156, 0.0071617076173424721, 0.0083215329796075821, 0.0055760014802217484, 0.0049180286005139351, 0.0094496570527553558, 0.0094270771369338036, 0.0068223048001527786, 0.0083646206185221672, 0.0074963648803532124, 0.0059179463423788548, 0.010968917049467564, 0.010033385828137398, 0.008069261908531189, 0.0066854711621999741, 0.0045897727832198143, 0.0094180488958954811, 0.0055831004865467548, 0.0071422089822590351, 0.010673296637833118, 0.0068562054075300694, 0.010024755261838436, 0.0055231363512575626, 0.0077012558467686176, 0.010413500480353832, 0.0067495252005755901, 0.0074049211107194424, 0.0099797286093235016, 0.011251183226704597, 0.0068002985790371895, 0.0049661449156701565, 0.0076984227634966373, 0.0091275312006473541, 0.0070752776227891445, 0.010771498084068298, 0.010866849683225155, 0.0063497354276478291, 0.007908613421022892, 0.0052713197655975819, 0.0053119072690606117, 0.0078157335519790649, 0.005075670313090086, 0.0059905294328927994, 0.0064375307410955429, 0.0073571298271417618, 0.0053289290517568588, 0.0064734388142824173, 0.012118272483348846, 0.0081586642190814018, 0.0063897925429046154, 0.0062292292714118958, 0.0079352054744958878, 0.0075086504220962524, 0.0053453133441507816, 0.0083683058619499207, 0.0073227924294769764, 0.0083618694916367531, 0.0088876159861683846, 0.0090466076508164406, 0.0065020360052585602, 0.0095960041508078575, 0.0093650901690125465, 0.0057997438125312328, 0.0086358934640884399, 0.0096664112061262131, 0.0076462393626570702, 0.0065295505337417126, 0.0071456036530435085, 0.0084508266299962997, 0.010579293593764305, 0.006674179807305336, 0.0068324427120387554, 0.0065138856880366802, 0.010914300568401814, 0.0081052547320723534, 0.0098946532234549522, 0.0091695459559559822, 0.0057080676779150963, 0.0084018735215067863, 0.0064224419184029102, 0.0069608720950782299, 0.017005940899252892, 0.0073561742901802063, 0.0084237297996878624, 0.006887645460665226, 0.0081555200740695, 0.0086879907175898552, 0.0089148497208952904, 0.0087845176458358765, 0.0081496015191078186, 0.0062714628875255585, 0.0059105278924107552, 0.0071678603999316692, 0.0082589956000447273, 0.0064564342610538006, 0.0049358787946403027, 0.007106865756213665, 0.008129611611366272, 0.0093054221943020821, 0.0067301248200237751, 0.011013077571988106, 0.0057190614752471447, 0.0095544885843992233, 0.0089021706953644753, 0.010884808376431465, 0.0094695081934332848, 0.0065312851220369339, 0.012016897089779377, 0.0060930694453418255, 0.0061198556795716286, 0.012703818269073963, 0.0074931117706000805, 0.0077877328731119633, 0.0062116868793964386, 0.0085574742406606674, 0.011218557134270668, 0.0054749986156821251, 0.0073312865570187569, 0.011027153581380844, 0.0059809843078255653, 0.0058324150741100311, 0.0056003131903707981, 0.0065982877276837826, 0.0071115843020379543, 0.0083222473040223122, 0.0072335992008447647, 0.0083239646628499031, 0.0079276841133832932, 0.0082039088010787964, 0.0086613493040204048, 0.010216829366981983, 0.0081616621464490891, 0.0062221139669418335, 0.0046245683915913105, 0.012172950431704521, 0.0066428082063794136, 0.0054867980070412159, 0.0082585569471120834, 0.0067722229287028313, 0.0057014799676835537, 0.0073912609368562698, 0.010354000143706799, 0.0084364581853151321, 0.0062296376563608646, 0.0084396833553910255, 0.0071007153019309044, 0.0076138866133987904, 0.0080161243677139282, 0.0063500250689685345, 0.0084293195977807045, 0.0070445681922137737, 0.0083569670096039772, 0.0070749376900494099, 0.015448568388819695, 0.0066919717937707901, 0.007297080010175705, 0.007983415387570858, 0.0076921922154724598, 0.0071822195313870907, 0.0059926128014922142, 0.010329263284802437, 0.0075486996211111546, 0.0094139324501156807, 0.0081802196800708771, 0.0077140713110566139, 0.0056236977688968182, 0.0079155592247843742, 0.0052375337108969688, } }; const TfLiteAffineQuantization quant28 = { (TfLiteFloatArray*)&quant28_scale, (TfLiteIntArray*)&g0::quant27_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data29[192] = { -602, 523, 704, 345, 58, 275, 479, -1167, -368, 1032, -195, -70, 80, 726, 837, -492, -282, -158, 212, -310, -481, 2806, -349, 436, 1038, 783, 461, 145, 658, 862, -961, 51, 2034, -1081, 486, 837, -471, -184, 199, 267, -741, 655, 1135, 313, 551, 3377, 603, -631, 1341, 621, 302, -998, 171, 1787, -57, 49, -929, 638, -655, 1095, 927, -313, 329, 213, -596, -471, 307, -352, 400, 567, 2035, 430, -99, 1146, 330, 1489, -494, -418, 2323, 438, 1140, -488, 703, 1055, 1203, 174, 1237, 1355, 878, 379, 342, 238, -749, -63, 189, 90, 880, -1748, 570, -540, -378, 297, 124, 346, 530, -1703, 933, 435, 793, -870, 1684, 56, -91, 1243, 25, -531, 1858, 712, 187, 490, -484, 1072, -2403, 100, 157, 681, -1264, -360, -497, 43, -257, -750, 512, 764, -1287, -2132, -749, -212, 1196, 1943, 212, 525, -1252, 1172, 274, 1616, -379, 1451, 356, 527, 2849, 752, -754, -100, 189, -449, -304, 212, -127, -615, 1485, -784, 1147, -7, -552, -557, 950, 17, -659, 1506, 549, 585, 1593, 1022, -317, 320, -32, -1594, 73, 34, 487, -1347, 205, 452, -2121, 444, 4091, -7, -755, 379, 202, 688, }; const TfArray<192, float> quant29_scale = { 192, { 0.00018438167171552777, 0.00015540033928118646, 0.00012978370068594813, 0.00015088364307302982, 0.00018253845337312669, 0.00017756599118001759, 0.00017894593474920839, 0.00014836601621937007, 0.00013956960174255073, 0.00014292904234025627, 0.00016250612679868937, 0.00021716261107940227, 0.00013026734814047813, 0.00018190935952588916, 0.00017392347217537463, 0.00011681483738357201, 0.0001557464711368084, 0.00020301240147091448, 0.00019670584879349917, 0.00013704941375181079, 0.00012264180986676365, 9.6717565611470491e-05, 0.00012686202535405755, 0.0001049776328727603, 0.00014462128456216305, 0.00014172654482536018, 0.00020182390289846808, 0.0001331943494733423, 0.00021609649411402643, 0.00015477761917281896, 0.00016144462279044092, 0.00015690743748564273, 0.0001141239918069914, 0.00015018056728877127, 0.00011107610043836758, 0.00010145868145627901, 0.00011021127284038812, 0.00013644847786054015, 0.00011024238483514637, 0.00017309539543930441, 0.00012007486657239497, 0.00020255109120626003, 0.00013055330782663077, 0.00013004583888687193, 0.00021305290283635259, 9.1798385255970061e-05, 0.00017897042562253773, 0.00011254918354097754, 0.00010026594100054353, 0.00016262303688563406, 0.00013688133913092315, 0.00013254511577542871, 0.00013688068429473788, 0.00013028801186010242, 0.00015548922237940133, 0.00017355970339849591, 0.00017377134645357728, 0.0001571199536556378, 0.00016492347640451044, 0.00012192143185529858, 0.00018014188390225172, 0.00015142942720558494, 0.00019859964959323406, 0.00019829052325803787, 0.0001163217966677621, 0.00019889281247742474, 0.00021580465545412153, 0.00013916537864133716, 0.00012287126446608454, 0.00015126730431802571, 0.00010836581350304186, 0.00013325423060450703, 0.00022701278794556856, 0.00016199001402128488, 0.00019797364075202495, 0.00012412175419740379, 0.00017111569468397647, 0.00020874700567219406, 9.2536414740607142e-05, 0.00013826329086441547, 0.00011582921433728188, 0.00017901035607792437, 0.00011754858132917434, 0.00013885274529457092, 0.00014452644973061979, 0.00016342912567779422, 0.00015465935575775802, 9.4163653557188809e-05, 0.00012323445116635412, 0.00011846923007396981, 0.00015893482486717403, 0.00017794987070374191, 0.00016454959404654801, 0.00016841840988490731, 0.00018255171016789973, 0.00012418096594046801, 0.00015648630505893379, 9.8826429166365415e-05, 0.00016089042765088379, 0.0001512065646238625, 0.0001207383829751052, 0.00012264166434761137, 0.00014726629888173193, 0.00012958787556272, 0.0001999514497583732, 0.00011170302605023608, 0.00010887828102568164, 0.00014695516438223422, 0.00016478225006721914, 0.00015334882482420653, 9.7646319773048162e-05, 0.00011383330274838954, 0.00016282335855066776, 0.00014341395581141114, 0.00015128230734262615, 0.00019589117437135428, 0.00013688232866115868, 0.00011853597243316472, 0.00016165190027095377, 0.0001628836034797132, 0.00017279002349823713, 0.000135280832182616, 0.00010201567783951759, 0.00014245955389924347, 0.0001189150643767789, 0.0001142009932664223, 0.00015925875050015748, 0.00011350315617164597, 0.00013592650066129863, 7.6583586633205414e-05, 0.00015485753829125315, 0.00014991349598858505, 0.00012167990644229576, 0.00014136578829493374, 0.00012380034604575485, 0.00011865899432450533, 0.00013869420217815787, 0.00017387869593221694, 0.00012220630014780909, 0.00010790477244881913, 0.00019918470934499055, 0.00018431247735861689, 0.00011865495616802946, 0.00015379911928903311, 0.00014014069165568799, 0.00011052278568968177, 0.00017177338304463774, 0.00012790456821676344, 0.00014615923282690346, 0.00015389789768960327, 9.7438001830596477e-05, 0.00015944147889968008, 0.00014129099145065993, 0.00013339878933038563, 0.0001354778214590624, 0.00012233082088641822, 0.00012745082494802773, 0.0001817517913877964, 0.00015704614634159952, 0.00018188524700235575, 0.00012223368685226887, 0.00023517080990131944, 0.00014467113942373544, 0.00014152021321933717, 0.00013455889711622149, 0.00018155333236791193, 0.00015479882131330669, 0.00023556539963465184, 0.00015121260366868228, 9.9061595392413437e-05, 0.00011792351142503321, 0.00011093269858974963, 0.00012523337500169873, 0.00015878949488978833, 0.00015391228953376412, 0.00012056643754476681, 0.00014215067494660616, 0.00013274059165269136, 0.00016533173038624227, 0.0002034391654888168, 0.00018628577527124435, 0.00015448627527803183, 0.00019182474352419376, 0.00019109275308437645, 0.00013159157242625952, 0.00015429445193149149, 8.6415631812997162e-05, 0.00014686623762827367, 0.00014620483852922916, 0.00013624227722175419, 0.00014157641271594912, 0.00019773472740780562, } }; const TfLiteAffineQuantization quant29 = { (TfLiteFloatArray*)&quant29_scale, (TfLiteIntArray*)&g0::quant27_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data30[192*1*1*32] = { /* [0][0][][] */ 63,45,-104,5,-54,2,48,-4,-88,53,51,67,17,-50,7,14,1,0,-37,-92,47,-46,-113,-2,-22,-36,8,18,-127,42,81,-14, /* [1][0][][] */ 10,63,-63,-73,-66,-64,19,35,-110,-60,41,-107,127,49,57,54,-81,32,1,54,34,17,59,-30,44,7,-9,71,122,58,-23,-80, /* [2][0][][] */ 36,-17,59,107,31,53,-57,71,39,-26,-85,40,6,-41,-33,53,19,90,-41,2,49,-65,-5,-13,127,45,34,48,-3,-34,25,35, /* [3][0][][] */ 92,-50,-34,73,36,-15,-58,-80,-67,-48,-9,-56,-100,-12,16,-72,40,-32,108,-16,42,-127,-74,60,-69,-121,7,-52,-79,-52,-81,13, /* [4][0][][] */ 71,36,7,-42,33,-11,49,-12,-78,-105,-18,23,-22,-8,43,-39,13,-54,-22,70,13,-44,24,-21,-45,-13,-29,-35,14,-127,48,63, /* [5][0][][] */ 30,-60,58,-29,-10,-11,-25,19,17,-127,-4,14,-2,43,33,10,22,14,59,16,26,-55,70,3,-58,21,-27,71,58,-13,50,-67, /* [6][0][][] */ -50,-36,-49,-53,69,13,-71,-89,-42,-22,-31,-15,72,72,29,30,-59,-23,3,54,116,42,-39,-127,-89,-53,-38,32,127,-14,3,-8, /* [7][0][][] */ -28,39,93,0,-17,-4,-51,64,-15,35,-10,-32,-11,15,24,74,-5,-29,46,-127,-71,-92,-23,10,23,52,-16,-59,51,-10,-12,4, /* [8][0][][] */ -45,-47,-41,38,9,-79,-20,50,6,-20,-22,-25,102,-18,-106,-127,19,21,60,30,-7,-45,-31,12,-31,-89,109,111,-15,56,-91,49, /* [9][0][][] */ -24,-25,-38,-88,84,39,-43,-67,50,-72,74,-80,-58,-73,92,-2,-63,-45,91,4,44,56,0,85,102,-67,27,-42,-54,41,127,-81, /* [10][0][][] */ 8,20,-112,8,82,52,-34,-117,-59,18,42,35,-94,2,-14,69,64,52,49,-64,-127,38,60,-75,-17,31,-33,-11,61,18,-98,31, /* [11][0][][] */ 0,37,-16,-26,18,-127,37,-52,-18,-17,10,6,-23,32,18,26,18,-1,38,45,65,-20,14,14,-30,-49,1,16,-31,-9,-32,-26, /* [12][0][][] */ 62,-35,-31,-50,-21,8,84,66,111,-66,42,-70,5,-90,-33,-10,127,-97,10,-104,99,-64,21,6,-13,-75,4,-6,52,62,-116,50, /* [13][0][][] */ -44,-60,-20,-89,-64,57,45,69,-36,-29,-68,27,-55,19,12,-86,12,49,-83,26,-52,34,10,65,-32,18,-127,-30,51,-53,19,-18, /* [14][0][][] */ 70,-64,57,-58,10,86,124,-71,69,110,21,-54,-66,89,18,127,-50,-21,-32,92,2,-80,5,-57,-39,82,-75,-11,24,85,-55,-39, /* [15][0][][] */ 28,-44,-10,-122,12,-127,-19,-20,69,59,-20,87,97,-95,22,107,-28,-13,-105,13,31,68,58,54,75,28,117,15,14,-78,66,-91, /* [16][0][][] */ 34,-57,72,1,-1,-51,-50,-62,20,71,66,-5,12,32,-19,-72,-1,65,-7,-127,-32,35,-70,5,12,4,-7,-52,-22,-25,-16,-18, /* [17][0][][] */ -14,-47,34,15,9,-10,17,-96,-5,-67,-42,116,43,-58,127,40,49,59,25,36,0,10,34,2,-47,-1,-16,18,20,22,-22,-40, /* [18][0][][] */ -55,54,-35,6,34,39,-14,-127,34,-37,-16,49,-55,72,-20,-12,-66,16,-28,-5,-114,-35,-55,95,-10,17,-43,47,-5,103,-78,18, /* [19][0][][] */ -13,53,-84,-39,-52,18,65,-43,76,-44,85,58,28,64,-5,42,-84,67,-47,-127,-79,-79,-51,50,-32,-30,-118,39,39,-4,71,1, /* [20][0][][] */ -4,15,-14,-82,80,-37,-9,30,2,-7,-50,-3,-16,21,3,50,49,-5,-4,7,-127,-96,91,1,-99,16,-74,98,45,49,-41,-20, /* [21][0][][] */ 73,87,-40,-90,127,74,-82,16,-98,-12,-28,22,-54,-98,39,51,-41,77,52,-53,-61,30,16,75,-101,117,20,72,-57,27,-42,26, /* [22][0][][] */ -7,-35,-29,38,-24,66,-22,2,-56,-103,-8,68,33,20,36,-101,-95,19,53,32,-25,-83,-23,-127,17,73,32,-93,-23,97,79,-92, /* [23][0][][] */ 43,114,80,113,-104,-38,-110,105,59,6,-127,33,53,-92,72,25,72,-16,42,-65,-11,74,-83,-47,65,41,74,-34,93,47,-25,-110, /* [24][0][][] */ -52,65,0,44,-85,-33,99,22,82,35,-5,35,-7,-52,-28,6,1,16,-127,-76,-58,16,-29,-46,74,-102,-13,35,27,53,17,33, /* [25][0][][] */ 33,4,79,-30,19,73,46,55,-60,112,53,-103,-79,47,-2,-25,-103,35,23,-36,-39,21,-127,30,15,-65,-36,41,-48,31,109,-85, /* [26][0][][] */ -24,-72,2,-8,-69,61,127,14,-34,-55,-21,4,-29,-15,50,-11,-47,-79,-7,10,-49,35,-51,18,12,-33,-17,39,71,43,-40,-14, /* [27][0][][] */ 50,-72,22,40,47,87,-111,35,31,-21,-34,-5,67,14,56,24,11,-127,-31,74,-18,19,-65,62,104,9,-22,30,44,98,-70,-17, /* [28][0][][] */ 20,56,-10,8,-18,26,-63,-36,-46,44,31,37,-28,-27,-29,55,127,-32,-17,28,68,-37,-15,-15,-65,-1,-112,-65,13,42,12,-33, /* [29][0][][] */ 10,17,-54,-3,-70,-21,64,-4,-18,-28,35,33,67,69,95,15,83,-41,115,60,11,20,-57,-127,49,36,125,60,-60,-103,47,11, /* [30][0][][] */ -105,57,40,-13,127,-22,-25,-17,41,67,57,6,9,86,11,59,14,62,-33,-16,-31,5,-3,-5,-67,-18,20,90,10,-21,83,84, /* [31][0][][] */ 1,-1,-67,-5,-67,-74,-43,62,6,-64,-9,4,43,100,11,-79,19,-9,38,127,26,86,33,-5,99,-43,-43,49,-50,-32,-57,-24, /* [32][0][][] */ -64,-127,-3,-30,68,-74,8,-29,110,1,-65,16,58,-18,-30,-64,-52,7,-18,-61,-62,-30,-74,-69,31,108,29,51,3,-75,61,-18, /* [33][0][][] */ -28,16,2,-101,51,82,6,-6,17,20,20,-57,88,11,103,-49,-33,48,17,50,84,-47,-67,127,46,-20,-53,42,-57,-34,103,-79, /* [34][0][][] */ 126,-17,92,104,33,-12,-120,-35,27,-44,49,85,-12,20,-49,96,111,-43,41,127,-55,16,-29,59,67,36,39,38,48,122,-45,-77, /* [35][0][][] */ -55,-56,-62,32,97,71,34,-49,127,87,35,82,41,35,66,-21,-5,0,69,24,-41,38,-74,-7,-8,-75,-58,31,24,62,-55,18, /* [36][0][][] */ -13,-47,55,40,-38,56,-55,-112,-50,-103,-39,-72,35,-65,-80,0,-45,-127,-35,16,14,19,30,69,109,-12,61,-30,13,107,-4,46, /* [37][0][][] */ 12,14,-127,-30,-40,63,-22,58,-46,-63,-20,36,86,27,-5,21,-63,-25,-68,-96,-48,-2,-65,-94,41,-5,63,-27,15,79,-52,-85, /* [38][0][][] */ -27,99,13,105,-43,-22,-50,-94,23,-35,11,82,57,108,78,77,49,-42,-37,-103,-80,-84,66,-75,-69,-69,15,-127,-89,-87,-63,112, /* [39][0][][] */ 6,-11,43,-4,70,-55,-28,102,-94,35,-42,-88,-19,-62,41,21,-72,-15,127,39,97,-3,-7,-43,-74,77,46,-18,-49,-68,-82,21, /* [40][0][][] */ -61,-58,29,-68,40,1,-104,-1,18,10,-76,-93,92,-53,-41,41,10,57,-107,-22,27,-43,-57,-55,17,-43,96,5,-10,-4,127,59, /* [41][0][][] */ 31,-64,-33,41,-96,7,-57,-25,-15,-21,-30,-46,-27,-14,41,43,38,41,39,54,54,-4,62,-10,-8,90,7,-40,-10,127,19,-29, /* [42][0][][] */ 46,-62,22,40,82,-19,-74,22,73,4,-77,-42,74,72,-50,44,-48,-37,52,2,127,-73,-28,-39,122,15,-87,-49,-19,79,69,79, /* [43][0][][] */ -39,23,-91,-49,3,-47,101,-12,-87,-127,103,47,35,-69,113,-38,57,-69,25,-86,59,-76,83,9,18,85,-61,-43,-38,44,-26,-27, /* [44][0][][] */ 42,127,-44,-33,44,0,-55,67,13,-70,23,47,77,7,-25,40,18,-39,5,-16,-32,35,24,28,65,25,-13,-11,-28,11,-73,79, /* [45][0][][] */ -68,-125,26,-84,21,-19,23,1,70,-36,6,66,41,54,32,59,-80,-22,-40,-38,-7,59,-101,-29,86,72,38,-82,-3,-68,127,-36, /* [46][0][][] */ 86,75,-41,-72,18,-77,35,-31,21,37,24,62,25,-33,30,-7,63,-64,47,-61,-82,124,53,-28,127,-37,13,70,72,68,-48,-84, /* [47][0][][] */ -66,76,42,-52,-120,-41,28,-59,0,48,48,127,88,26,-110,11,-121,75,68,-90,-82,-101,-35,1,-78,-71,-62,-7,-12,15,-116,20, /* [48][0][][] */ -25,-17,22,-62,-73,58,16,-26,-79,-31,39,-55,-85,75,-7,-92,70,52,-9,-116,86,85,-127,21,50,47,15,-87,6,21,92,-100, /* [49][0][][] */ -9,-44,33,-40,34,1,40,-39,94,-35,34,30,-12,-65,26,39,-80,-7,-4,25,9,-2,26,13,78,26,-1,-29,56,-37,127,-8, /* [50][0][][] */ 30,-5,-80,51,40,-9,-74,-28,70,-64,34,-8,67,11,-71,0,69,81,-56,3,-2,-3,-23,-127,-36,-75,101,-32,33,-55,55,29, /* [51][0][][] */ -55,0,-46,-46,52,-58,-40,-86,41,10,-33,22,47,-49,-16,-11,-90,-33,-47,-101,-71,2,3,19,-126,49,20,44,-61,-1,-2,-127, /* [52][0][][] */ 23,-30,51,-43,-30,-1,-36,69,53,-92,-25,-47,1,70,-22,25,-40,-127,12,-28,-10,34,-55,35,-72,52,-31,89,38,-8,-70,10, /* [53][0][][] */ -39,72,-71,12,-8,67,-72,-57,-66,-127,-22,74,47,1,66,52,-33,21,-9,18,84,-7,48,117,26,-78,110,-19,-23,-32,12,-47, /* [54][0][][] */ -113,14,-106,86,16,-82,-66,25,-127,-30,0,5,16,1,-108,42,38,-95,47,94,-20,-37,-93,-103,33,-67,67,-31,-31,-69,48,71, /* [55][0][][] */ -41,9,52,40,-64,-67,-28,-57,-23,-77,-44,-21,2,17,79,45,-7,-127,-3,48,-23,-25,12,43,-49,-12,18,-2,-69,7,-8,-83, /* [56][0][][] */ 2,-78,30,-127,32,1,-116,32,37,-20,1,-2,-41,-1,70,-65,18,28,-19,15,15,87,-71,-47,49,-1,-19,15,-62,-97,-41,-48, /* [57][0][][] */ 5,-24,65,-77,-99,-30,4,62,45,68,-47,-53,48,5,24,-6,8,77,54,53,29,-60,84,38,73,74,-102,38,26,-127,45,-39, /* [58][0][][] */ 63,15,25,-21,-20,35,6,52,-89,62,127,53,1,-40,-12,-27,-26,-91,-17,70,-13,-52,77,28,-45,71,41,-29,49,-57,-28,-48, /* [59][0][][] */ 72,-34,-9,11,88,123,-62,-83,12,-27,20,-82,28,-33,57,12,-22,52,66,-34,39,23,121,3,-66,-71,-127,45,-32,-98,42,19, /* [60][0][][] */ 64,-14,-16,-18,3,104,-30,-37,28,-27,-38,23,14,73,-32,32,6,-64,127,121,-5,-5,4,1,-32,-31,-25,-56,36,-47,32,96, /* [61][0][][] */ 13,118,85,-59,70,89,-10,18,116,31,50,-54,30,43,41,32,93,4,-108,-61,51,77,-18,-78,29,20,23,-127,-58,58,-38,-67, /* [62][0][][] */ -77,127,-13,8,19,-82,-26,26,-13,7,-27,25,-56,-27,40,-44,118,-12,5,8,-66,-2,8,29,21,69,45,-69,112,87,-2,-47, /* [63][0][][] */ -61,-29,29,-15,22,24,-27,-3,-14,14,-68,-39,-25,20,-73,127,40,4,-49,13,46,-9,-53,-8,-22,15,31,-40,66,-29,-43,41, /* [64][0][][] */ 82,9,92,67,-23,-83,-52,-22,10,-119,2,91,-8,-49,-96,-23,27,-5,59,28,-98,-63,60,19,-17,-60,32,127,-47,20,-57,25, /* [65][0][][] */ 12,-44,-7,-31,-7,-30,-127,77,-71,-63,79,-81,22,-83,47,21,-44,-19,-56,63,-27,-36,-11,-3,3,-51,50,62,-6,1,-62,9, /* [66][0][][] */ -17,-29,-18,55,-37,-74,-77,-31,-39,-12,127,43,-40,-49,33,0,5,-51,-78,-13,37,34,49,75,26,34,-37,12,-42,45,-11,78, /* [67][0][][] */ -85,-112,-57,29,96,-68,127,-25,-9,2,42,-27,91,34,85,96,56,-71,0,-60,-74,-21,29,31,64,-93,-33,51,-64,-3,-13,-42, /* [68][0][][] */ -41,-30,25,16,94,118,44,-15,-44,-96,-47,-42,-88,25,18,75,51,-101,-87,50,-80,43,-127,49,38,43,35,77,112,-32,67,-61, /* [69][0][][] */ -6,-19,-65,-75,-103,24,-77,-50,73,24,-73,36,-86,-98,-127,50,10,23,92,55,-2,-12,-75,-21,-39,-79,17,39,50,35,-5,-36, /* [70][0][][] */ 62,88,-60,34,-88,-31,-21,25,96,44,-23,82,73,108,-127,111,-30,-35,-38,46,-26,-12,-74,-48,-72,27,18,-37,57,83,-102,-44, /* [71][0][][] */ -33,21,95,-83,11,-51,-29,1,44,32,-106,0,13,21,5,25,35,13,-75,18,18,85,-41,-42,-20,-43,-14,-64,54,-127,106,31, /* [72][0][][] */ 53,-54,-15,-20,6,-48,-75,127,-40,-12,54,-29,0,67,22,-25,6,48,-15,26,-56,1,18,-12,9,-56,-74,63,-36,55,-21,-44, /* [73][0][][] */ 66,61,-57,-6,72,22,-61,2,-71,-53,-30,3,-14,86,-33,-35,-38,-92,-66,7,-127,-22,58,-5,10,23,-61,-100,-63,-54,70,-10, /* [74][0][][] */ 2,-45,82,2,12,3,9,22,-73,57,35,-5,92,9,-85,76,-3,-54,-3,15,-7,15,18,-25,49,23,127,63,80,-55,54,-96, /* [75][0][][] */ -78,14,73,-57,-3,42,32,99,-18,-3,1,-73,127,-122,97,-11,76,21,28,8,-43,-117,-20,-4,-103,-95,-81,-40,-126,-22,84,2, /* [76][0][][] */ -24,-7,-25,25,50,25,46,-9,72,51,-18,18,78,13,36,49,7,-26,-54,54,-63,-3,-50,14,43,-47,-46,-61,-38,127,50,17, /* [77][0][][] */ -47,-127,-22,-55,24,31,-10,8,-41,61,31,46,-108,-65,-64,76,-10,38,50,69,-79,-44,100,25,-14,36,48,119,-25,13,-56,13, /* [78][0][][] */ 3,-34,-91,-60,-72,14,-26,-37,-17,-110,-52,-7,-96,-50,-66,3,93,-60,-15,-32,-8,92,75,81,-51,43,8,127,102,91,-106,-34, /* [79][0][][] */ -12,15,-5,-11,33,-40,-29,-3,-45,-14,-53,70,46,-36,-106,-86,-62,13,1,-50,-20,-51,10,-66,-17,127,-46,70,-48,13,-85,-64, /* [80][0][][] */ 51,-9,-51,84,67,74,-107,-44,127,73,79,103,9,-84,9,-71,22,61,-30,-68,42,75,-75,3,-75,-60,-30,-57,-60,-25,34,13, /* [81][0][][] */ -127,-29,-24,0,48,-49,35,-30,35,-33,-25,1,-26,17,98,56,78,5,10,-33,16,-3,74,-70,-31,2,14,-10,-20,-7,-21,44, /* [82][0][][] */ -22,-69,-33,-22,-66,-1,15,21,113,56,-13,25,36,-13,-29,15,-127,-90,79,0,-66,-83,-99,-16,52,83,-37,-99,92,-112,122,-33, /* [83][0][][] */ -49,-41,117,-40,59,-27,-92,54,81,-101,112,59,33,-2,45,10,-91,37,6,-29,-66,20,33,120,63,61,-13,112,19,-127,-69,-54, /* [84][0][][] */ -4,54,10,-19,2,-39,12,-53,37,-16,-53,50,5,-101,-87,69,-6,9,-13,-5,12,5,40,-78,74,-4,62,127,-3,-37,-61,20, /* [85][0][][] */ 5,13,58,-10,-64,-21,57,127,-2,64,57,39,50,9,83,18,28,26,52,-44,36,51,-21,-12,-45,21,-90,6,-36,4,48,63, /* [86][0][][] */ -7,-32,-92,127,0,-13,-87,61,32,-106,-69,-65,-24,3,-51,15,-77,-32,-16,-10,14,-58,-67,29,76,-8,-103,50,-25,9,-28,-13, /* [87][0][][] */ 100,36,0,77,51,9,-15,78,76,-89,-59,-5,85,5,-67,60,-36,59,36,78,-40,63,-38,116,127,42,-19,-71,28,79,55,-16, /* [88][0][][] */ -17,-44,-16,127,9,-26,39,69,36,15,-17,114,-18,45,-23,29,35,-33,33,86,34,-75,-32,-57,36,14,3,-16,-26,84,9,-15, /* [89][0][][] */ -69,66,-24,72,91,-71,59,93,35,60,-52,97,-38,26,127,29,-13,-124,105,63,30,-71,-6,-4,-98,-80,81,55,64,2,-53,-29, /* [90][0][][] */ -15,-45,-29,-102,127,20,95,-1,-50,31,-14,28,21,-69,-67,-72,111,-87,63,-44,-62,72,-99,63,-33,-67,-76,-32,-53,5,-50,65, /* [91][0][][] */ -57,-75,-70,13,49,-31,-23,-103,-66,12,127,-40,-70,48,38,30,21,-38,52,-111,62,16,13,-29,-39,31,-39,38,-24,19,37,-10, /* [92][0][][] */ -62,-47,-16,45,51,0,82,14,-54,76,-37,-57,47,35,60,-40,-43,96,60,27,20,83,109,116,-106,-51,-41,71,74,-13,-30,-127, /* [93][0][][] */ 17,-52,-75,-52,-75,-16,-23,6,-10,23,86,46,27,-38,127,-83,-8,36,-72,-14,25,-62,-32,89,93,13,-24,-26,63,-46,-59,33, /* [94][0][][] */ 9,-25,-20,-3,-18,-52,-47,-50,21,0,16,55,-89,-61,-28,-63,-43,127,10,-65,-54,3,-67,8,19,-53,10,82,51,21,86,17, /* [95][0][][] */ -9,-55,127,-20,-53,-95,-47,-82,-100,-21,42,-9,-76,32,-2,-36,59,-43,114,-38,-62,12,17,-33,-10,91,-13,18,-79,-63,-60,51, /* [96][0][][] */ -63,29,65,-30,-93,-25,32,-12,-54,0,-26,-69,-92,-27,14,-46,10,58,22,-88,90,-40,-29,-45,24,127,28,7,46,16,-1,-12, /* [97][0][][] */ 53,-22,-73,-100,-41,127,-34,21,18,112,32,21,16,90,-15,5,69,-48,-4,-48,-26,-84,-64,21,110,68,17,121,-69,-102,100,82, /* [98][0][][] */ 33,-85,20,6,40,27,-66,38,-127,-67,-76,-94,-72,-73,-28,-13,-118,57,60,-29,78,-16,37,15,17,-63,-25,-24,-29,60,-88,-72, /* [99][0][][] */ 48,4,-20,-74,-3,-86,50,48,-11,63,40,-20,-73,-50,-46,-60,-55,-127,88,-89,50,31,19,16,-22,-78,18,44,68,-55,-94,32, /* [100][0][][] */ 29,85,-33,87,68,40,127,-29,-3,-23,108,17,-35,-37,-24,-118,32,-13,74,-39,57,34,59,-50,0,98,88,92,87,-72,38,64, /* [101][0][][] */ 84,43,-39,-27,55,98,5,-84,5,-96,22,-70,74,104,55,57,47,15,127,-39,-115,25,-123,77,-28,39,26,81,83,64,-87,74, /* [102][0][][] */ -11,-14,127,-50,50,96,-32,24,36,36,61,79,-71,-48,60,3,29,55,-90,-46,123,91,121,-12,-26,-45,62,-48,18,47,29,-62, /* [103][0][][] */ -25,119,-44,6,65,106,73,126,126,-54,-33,-62,-31,7,-44,16,70,-37,-1,5,-46,12,-127,60,33,21,33,-26,18,-28,28,-44, /* [104][0][][] */ -72,7,18,3,-16,5,-71,39,127,-90,37,-26,22,-3,3,4,-32,-30,59,68,-25,68,25,14,-40,46,14,-41,-9,69,2,-71, /* [105][0][][] */ -76,28,-88,-127,-19,59,2,-51,22,-17,1,80,83,-120,-48,12,-119,92,33,-64,-78,70,33,32,-51,-79,80,88,-104,-12,100,17, /* [106][0][][] */ 51,-108,105,23,46,74,-54,34,22,-49,107,-86,106,-61,89,-72,28,127,-64,-5,60,66,-70,54,-54,33,-6,-30,-55,-48,69,43, /* [107][0][][] */ 26,4,-75,127,25,93,-14,52,30,-29,-30,17,82,38,-51,3,41,-13,-20,-16,57,22,41,-14,109,48,6,-65,-21,44,-58,-20, /* [108][0][][] */ -73,45,-25,-11,-69,-11,16,20,-34,-70,-57,20,15,40,-30,41,8,66,-57,-126,63,-22,71,127,81,22,-25,-53,-40,-82,71,-8, /* [109][0][][] */ 51,-97,-9,93,65,6,-97,-58,-64,4,-4,7,-17,-24,36,39,25,-119,-24,-23,-43,25,-60,-4,-6,17,48,-31,39,127,-9,-55, /* [110][0][][] */ -117,-39,-81,41,57,-39,61,-3,127,-64,73,-44,-29,-52,24,3,-105,87,-38,-80,-39,71,-25,-31,11,-89,-6,-55,37,-70,76,13, /* [111][0][][] */ -82,92,-59,-123,-28,-30,-39,-26,-49,-22,97,24,71,-14,-6,24,-79,-117,24,-68,-123,-127,82,-11,70,-100,-98,11,-36,23,25,22, /* [112][0][][] */ 16,14,-105,-127,-44,50,-35,47,5,67,-62,15,33,35,-47,46,-7,14,-48,75,51,49,-5,26,-11,-3,36,-32,76,-51,73,-8, /* [113][0][][] */ -7,-122,-1,-11,-36,81,55,-68,-24,50,-60,-49,37,8,-123,-44,-32,-22,-8,-10,127,65,-10,36,19,42,0,-99,-8,11,-17,126, /* [114][0][][] */ -8,-90,-111,-9,3,-18,-8,-42,-5,-44,-24,43,-4,-9,-122,-6,-32,-127,31,-65,46,-120,63,78,1,85,13,-51,-29,57,-112,-112, /* [115][0][][] */ 65,-11,22,-94,35,115,-33,64,14,-6,-2,-94,-127,64,-56,-20,38,41,-6,58,57,-37,81,44,-7,42,-15,29,-27,-20,13,-26, /* [116][0][][] */ -38,40,-17,40,-20,4,6,31,-29,67,64,53,-39,35,-33,101,-13,83,-30,-96,36,-37,-38,2,-127,-102,37,-59,16,48,10,-55, /* [117][0][][] */ 10,-122,-98,88,26,113,62,-126,61,-17,-81,-77,127,21,11,101,26,80,-30,-33,78,-99,-105,59,112,-17,-11,61,8,-42,22,54, /* [118][0][][] */ -18,8,-55,-9,-12,-59,72,51,-104,59,-79,31,-53,-92,-43,7,51,87,-36,5,20,-6,-127,-41,17,27,-65,72,-57,36,60,-41, /* [119][0][][] */ 69,-52,67,12,-46,32,-112,-83,4,-14,-26,8,-24,-60,-29,10,-14,-82,-18,-72,-41,-32,-49,-28,93,-38,-72,-58,97,127,-83,-102, /* [120][0][][] */ -11,-55,59,-7,18,-30,88,-43,-24,-24,-55,-49,-43,7,-13,45,41,-85,-102,-55,63,52,40,127,-60,-27,-5,25,120,46,38,69, /* [121][0][][] */ 73,2,-78,77,67,66,-3,22,-30,-63,127,12,-57,-17,-88,9,-5,-45,26,-55,11,-28,-58,31,-87,32,-82,111,93,98,-70,-1, /* [122][0][][] */ 21,-62,-14,-7,125,15,27,-123,80,-11,56,2,97,-127,76,39,88,60,-51,-105,29,77,-57,-97,-111,0,4,60,-56,-48,35,50, /* [123][0][][] */ 12,-20,-99,-69,-67,21,4,-36,57,-70,57,16,54,94,-107,-61,-8,-39,6,88,93,5,56,13,26,97,73,1,12,122,-34,127, /* [124][0][][] */ -33,50,69,57,40,17,-51,-7,-37,-24,113,107,53,-40,77,78,-48,-20,-61,83,0,59,9,1,-116,-30,93,127,-23,-57,70,97, /* [125][0][][] */ 47,73,-30,-95,-127,-23,10,63,45,-57,68,-93,32,5,-95,80,-2,-39,101,-65,-66,-116,-51,-45,91,54,-41,-34,117,60,-67,-2, /* [126][0][][] */ 87,4,0,-50,20,51,-10,10,-34,33,3,-71,-38,5,-25,47,-127,43,40,-98,-22,-65,53,-63,-13,39,49,15,-67,-86,25,52, /* [127][0][][] */ -95,-99,-3,40,64,30,-19,-63,118,127,13,-74,-4,0,-43,-29,-112,-62,-21,-9,44,48,-11,-47,-3,-12,-25,-73,106,21,113,-22, /* [128][0][][] */ -39,-91,-27,70,23,32,-22,39,-12,118,104,-71,23,-60,95,3,34,65,31,0,-122,-72,-38,17,-127,113,-39,89,-18,11,20,76, /* [129][0][][] */ -71,3,-40,59,106,-15,-2,23,-87,-112,-57,-75,27,-19,-45,-120,96,-59,-9,40,-14,18,113,72,-69,6,127,71,47,29,-122,-87, /* [130][0][][] */ -50,21,-51,-32,-113,-19,76,-40,-62,-92,13,2,95,127,-3,20,-41,-5,-4,90,38,-97,-7,-16,43,85,-70,99,-48,-20,-44,31, /* [131][0][][] */ -13,-9,16,-76,64,43,79,69,17,69,59,-1,14,0,119,97,-103,-38,-93,23,127,-85,-61,13,4,6,13,-11,-78,38,33,64, /* [132][0][][] */ 74,97,20,73,10,39,-8,94,-121,-58,-93,-59,-58,-22,1,71,-61,-4,-96,67,73,64,33,-127,1,-16,-42,-18,40,-39,-62,-100, /* [133][0][][] */ -68,39,-72,-75,24,55,-17,35,-4,9,11,-18,19,-83,-7,-97,6,59,107,-77,71,-24,-34,127,27,-13,-37,-76,-70,-97,25,-15, /* [134][0][][] */ -11,-83,-52,32,-48,38,-105,-8,-14,-15,-69,8,-14,-48,111,45,38,-51,15,96,-10,29,13,-17,37,127,-5,-54,73,83,36,-1, /* [135][0][][] */ -82,37,-68,-15,-55,-30,40,85,16,-21,-96,70,-45,97,-76,77,45,23,77,54,-53,-89,26,-36,-76,-11,127,36,50,16,-25,-83, /* [136][0][][] */ 45,-32,1,66,12,-36,27,2,-65,-24,23,41,-115,39,-16,45,36,-10,-23,53,89,-56,57,-86,-52,93,65,10,-7,26,-6,-127, /* [137][0][][] */ 21,-29,-3,-5,48,44,-95,127,-25,77,46,-33,-27,10,-62,69,1,38,38,-61,56,54,-42,-60,13,44,-104,-47,-93,26,-43,-85, /* [138][0][][] */ -49,-41,-73,-54,-42,-24,-16,81,46,-57,-31,-89,22,-76,-72,-77,-25,52,8,-41,-26,15,-127,64,2,-34,12,-64,-48,-52,8,99, /* [139][0][][] */ -38,10,73,48,22,-6,76,-29,-3,5,-14,-71,47,-54,-67,-41,1,120,9,-52,-116,26,-46,-52,24,-21,-5,30,-2,-89,127,38, /* [140][0][][] */ 12,27,53,-25,-26,-37,38,-55,69,40,-25,-35,-14,-3,-22,27,-22,35,-12,1,-101,-23,-16,64,80,48,6,22,-127,-68,38,-71, /* [141][0][][] */ 80,-27,30,-5,58,-65,21,48,23,-64,-9,-46,-20,-21,5,-6,-61,-41,42,-45,67,-92,-127,106,45,-66,-37,-79,40,-34,-57,30, /* [142][0][][] */ 29,-66,78,1,-12,36,-61,67,-15,-61,-18,56,-44,-45,26,2,69,-16,56,-10,21,35,-41,106,111,-47,66,-105,29,-1,127,-63, /* [143][0][][] */ -7,10,-124,-89,103,-19,33,77,-102,-23,25,-58,-51,-68,75,42,29,-77,124,66,93,109,-81,10,-36,75,28,-127,-62,23,-28,-19, /* [144][0][][] */ -30,19,-20,38,-101,23,-50,26,127,96,99,-79,26,102,-80,82,63,50,67,7,-53,-38,-63,50,103,106,47,56,-109,28,-91,118, /* [145][0][][] */ -49,7,-18,-51,9,58,48,56,41,-95,111,85,-109,60,-74,121,-31,-127,20,127,-27,107,-62,-112,91,-41,94,120,29,93,-23,16, /* [146][0][][] */ 63,87,-3,47,-28,-57,86,26,71,-55,-17,-83,41,-56,-37,76,-105,-9,26,8,-3,52,50,-21,-7,100,18,-4,-54,-61,127,11, /* [147][0][][] */ -49,31,89,-127,59,57,-48,-2,-43,-35,-119,15,21,-56,-53,30,-1,-33,56,16,-48,-77,-19,52,-28,31,-22,9,4,-16,-31,-32, /* [148][0][][] */ -70,22,-74,-21,24,-24,66,-77,-49,-24,-10,28,61,-67,30,-127,-27,13,-84,-117,39,-18,41,-14,-65,96,-84,79,-22,94,-63,125, /* [149][0][][] */ -49,-46,39,85,6,36,-20,-34,-35,-101,-55,-14,-34,7,-6,47,11,-116,72,36,107,61,36,-21,106,55,-42,127,-55,49,47,42, /* [150][0][][] */ -20,12,48,-56,28,-71,38,-36,-59,-63,99,-80,72,-77,97,9,19,38,29,-6,-22,-48,51,-106,-31,-127,59,10,44,-30,-92,90, /* [151][0][][] */ 71,39,-20,103,4,-54,46,-5,-56,-127,-85,81,31,-53,19,21,-47,44,70,-14,-11,78,-27,73,-21,-57,19,108,65,2,115,-94, /* [152][0][][] */ 59,88,-23,43,14,2,39,-3,5,-127,-71,-62,-27,0,-28,-61,41,-5,1,8,41,-57,-25,57,-80,84,-26,95,0,-55,-67,24, /* [153][0][][] */ 44,-46,-55,48,62,123,-16,-14,-17,-17,41,127,84,18,-11,-29,36,-73,-33,-17,-63,-8,98,-106,-16,23,-67,63,35,-43,31,-51, /* [154][0][][] */ 43,-81,-89,9,102,17,-25,86,-43,-58,-35,37,31,79,38,66,-30,27,62,-87,4,18,127,-47,-64,-7,-62,-50,18,20,-83,102, /* [155][0][][] */ 6,3,57,-105,99,-97,107,-86,6,-24,-3,61,114,-81,-87,98,17,106,-40,-27,66,36,68,-23,-91,9,-53,-79,-127,-52,-90,-55, /* [156][0][][] */ 66,-48,9,-52,106,93,-38,127,71,23,-95,34,18,1,-19,42,44,-90,37,29,-68,73,-64,-122,-43,-11,-22,-48,20,85,-3,-14, /* [157][0][][] */ 95,127,44,44,61,-68,-43,-39,-47,75,-94,-37,-47,0,-71,-31,-39,58,7,22,24,-36,24,58,-39,-55,39,-2,-2,72,-30,-43, /* [158][0][][] */ 35,2,64,30,-69,-10,-73,-41,10,23,-3,-3,91,-38,-37,52,-21,127,15,-37,-16,-10,8,-8,44,-31,-55,-30,-14,-80,64,12, /* [159][0][][] */ 16,-63,42,-2,-67,-111,-127,60,-59,45,30,19,-8,-23,-32,-70,17,-15,66,-26,-71,9,72,-50,-27,-33,33,16,-5,-12,18,-52, /* [160][0][][] */ 50,-27,19,11,49,-127,-46,-87,41,61,-66,27,-50,14,76,19,-52,77,22,-35,36,-13,108,-34,-98,-58,45,103,73,-8,-117,-59, /* [161][0][][] */ 51,-100,17,-4,46,3,-31,57,1,3,-4,-35,-28,20,29,8,37,59,14,-127,26,-43,36,25,-13,-35,17,63,-13,45,29,27, /* [162][0][][] */ -2,-10,-96,-28,17,75,-101,-84,-127,43,-36,70,79,-43,-24,-41,-36,12,58,45,-3,-50,111,-8,38,14,-21,48,-18,59,-75,79, /* [163][0][][] */ -77,-60,-32,-97,89,25,-45,-6,69,74,-30,-68,-104,78,80,-26,106,-86,37,17,40,56,-86,2,-21,69,11,17,10,127,-23,-91, /* [164][0][][] */ 62,-95,33,1,0,21,114,103,41,95,-32,-119,-13,-102,42,76,15,12,-90,29,30,127,-22,124,-20,29,-2,-61,34,85,13,40, /* [165][0][][] */ 127,1,18,-34,-65,115,37,-74,-70,59,-85,-88,111,27,29,52,-92,-23,34,48,-53,81,10,-51,-31,-61,94,26,-2,-65,111,-13, /* [166][0][][] */ 4,31,17,-40,-2,18,-58,29,-17,-93,17,49,-11,-12,69,25,69,13,-127,-15,2,46,64,-7,3,-53,100,-53,15,36,-101,38, /* [167][0][][] */ -89,-66,12,20,39,-7,42,40,-40,106,15,7,-24,-35,-43,31,37,-76,59,0,-6,-31,-15,-14,6,-21,75,-55,-57,127,8,24, /* [168][0][][] */ 45,-57,-44,25,67,-87,-1,15,19,44,-51,-4,123,-14,-39,4,-29,-10,127,45,-97,-77,38,-16,-51,-69,30,-59,13,105,48,-62, /* [169][0][][] */ -10,-34,-122,49,-10,110,-84,-85,14,47,-26,-94,93,-47,-127,-6,-51,53,-36,24,116,74,4,-74,-12,90,127,19,-110,64,54,-70, /* [170][0][][] */ 16,-127,-9,8,-10,117,103,-19,-12,-89,-30,-75,8,26,-71,-14,-91,-102,-34,61,-47,47,-99,-48,44,22,-18,92,-54,51,-26,-17, /* [171][0][][] */ 73,64,-64,57,-58,44,-29,44,-61,-127,10,52,36,78,-35,47,53,-93,-25,4,-62,10,14,51,-8,-73,100,11,-54,17,-54,-10, /* [172][0][][] */ 0,52,-31,72,31,112,-84,127,25,-116,-66,-107,35,15,63,-52,27,36,-48,-23,-70,6,-96,-63,21,-37,117,91,-74,-95,-76,37, /* [173][0][][] */ 32,-48,-7,-61,-59,12,-64,10,-40,-9,-56,76,127,20,74,-65,109,-13,93,44,-82,-30,-14,94,37,89,68,29,-63,14,-75,-3, /* [174][0][][] */ 8,127,42,-27,85,97,6,-115,-127,41,14,-42,-88,-100,8,7,57,39,47,-54,3,34,-19,74,40,-62,18,21,127,-24,-29,-35, /* [175][0][][] */ -60,124,8,-23,-52,-2,-13,28,68,20,-76,13,81,-127,-17,67,-98,61,-38,-38,94,67,-49,55,-113,62,96,-2,43,-13,14,-24, /* [176][0][][] */ 18,-95,6,-29,64,-4,-103,-20,59,-9,-108,-63,-58,-127,-57,62,-78,-70,-42,11,-68,-2,-34,52,-20,108,-60,57,84,19,49,21, /* [177][0][][] */ -30,56,3,31,-72,14,-53,53,-78,90,-76,-57,-79,-14,20,10,45,56,-41,-127,-44,-60,-11,-70,-15,-59,-48,17,21,-63,90,58, /* [178][0][][] */ -5,18,-37,80,-18,-34,44,7,54,23,127,37,18,22,23,-63,80,41,47,-42,6,-12,63,-17,-64,4,29,-50,-57,-52,33,-37, /* [179][0][][] */ -29,-22,-19,32,-9,-13,-82,62,-15,-71,-4,41,-35,-32,-43,-57,67,3,63,-9,34,-44,-5,-127,-7,-44,47,-48,47,-50,38,-27, /* [180][0][][] */ 35,1,85,-23,48,26,30,-38,0,20,-45,-54,50,20,-127,-15,17,10,-34,-32,29,49,-6,37,18,9,-17,64,-36,-29,-39,-61, /* [181][0][][] */ 16,9,34,-70,127,53,-23,-29,-51,-45,-19,-69,30,-22,-51,-10,-4,16,-32,46,50,17,-32,13,66,15,-21,60,-32,14,56,-2, /* [182][0][][] */ -29,83,4,62,-6,-49,-21,-42,-8,68,-21,32,-22,-83,66,-53,-88,87,-9,-57,22,13,53,-87,76,37,-18,42,127,62,3,11, /* [183][0][][] */ -92,-25,-37,-49,5,26,-92,31,-57,41,-63,35,-60,40,80,109,67,1,-31,24,12,30,-15,127,1,-13,17,15,-57,-18,-34,69, /* [184][0][][] */ -12,63,68,-21,-41,26,13,14,-60,-7,52,45,42,80,-18,-35,-91,-49,15,-80,-49,-114,-6,127,-70,-5,-54,-19,-63,33,85,89, /* [185][0][][] */ 23,-39,53,37,54,26,-103,75,-3,-56,-61,-36,-24,-36,-127,35,-36,80,-14,-17,-27,-35,-36,14,59,-34,-24,-18,15,28,16,-11, /* [186][0][][] */ 36,30,-46,35,-85,72,-58,80,-76,-82,-10,-66,-74,26,39,1,15,31,-6,-21,115,127,15,49,87,11,110,59,21,42,35,-61, /* [187][0][][] */ -6,-57,62,-73,5,48,50,62,-27,-78,11,-23,12,45,4,47,-20,-32,127,12,-74,-13,121,28,-39,-28,-43,98,-14,73,-80,59, /* [188][0][][] */ -15,11,41,-127,-64,-7,-18,-52,0,-23,79,-77,10,-91,35,-28,7,10,-39,-17,-2,-72,67,66,-83,-48,-15,11,-55,-70,-55,26, /* [189][0][][] */ -108,7,54,19,37,51,82,96,-34,20,-33,-12,104,30,-50,27,11,-20,13,-77,-121,-92,127,-44,53,-40,-28,92,35,42,-93,-74, /* [190][0][][] */ -86,12,48,-18,-39,3,-24,-13,4,-18,-12,45,-84,127,-33,-20,21,62,-21,-99,-93,-1,19,-17,59,84,-38,31,-43,78,69,-97, /* [191][0][][] */ 12,-17,-12,24,57,-36,-5,5,-21,31,85,-19,-28,34,17,-19,-40,-68,18,51,-10,37,51,-68,1,36,-127,46,-97,30,15,-7, }; const TfArray<4, int> tensor_dimension30 = { 4, { 192,1,1,32 } }; const TfArray<192, float> quant30_scale = { 192, { 0.0016214841743931174, 0.0013666173908859491, 0.0011413402389734983, 0.0013268967159092426, 0.0016052746213972569, 0.0015615458833053708, 0.001573681365698576, 0.001304756267927587, 0.0012273991014808416, 0.0012569426326081157, 0.0014291068073362112, 0.0019097654148936272, 0.0011455934727564454, 0.0015997422160580754, 0.0015295129269361496, 0.0010272897779941559, 0.001369661302305758, 0.001785326050594449, 0.0017298650927841663, 0.0012052361853420734, 0.0010785332415252924, 0.00085055088857188821, 0.0011156464461237192, 0.00092319137183949351, 0.0012718244688585401, 0.0012463675811886787, 0.001774874166585505, 0.001171334064565599, 0.0019003897905349731, 0.0013611409813165665, 0.0014197718119248748, 0.001379871042445302, 0.0010036260355263948, 0.0013207137817516923, 0.00097682233899831772, 0.00089224509429186583, 0.00096921692602336407, 0.0011999513953924179, 0.00096949050202965736, 0.0015222306828945875, 0.0010559590300545096, 0.001781269209459424, 0.0011481082765385509, 0.0011436454951763153, 0.0018736239289864898, 0.00080729078035801649, 0.0015738967340439558, 0.0009897769195958972, 0.00088175595737993717, 0.0014301349874585867, 0.0012037580600008368, 0.0011656245915219188, 0.0012037522392347455, 0.0011457751970738173, 0.0013673990033566952, 0.0015263139503076673, 0.0015281750820577145, 0.0013817398576065898, 0.0014503654092550278, 0.0010721980361267924, 0.0015841987915337086, 0.0013316964032128453, 0.0017465194687247276, 0.0017438010545447469, 0.0010229538893327117, 0.0017490976024419069, 0.0018978232983499765, 0.0012238442432135344, 0.0010805510682985187, 0.0013302706647664309, 0.00095298764063045382, 0.0011718606110662222, 0.0019963895902037621, 0.0014245680067688227, 0.0017410143045708537, 0.0010915480088442564, 0.0015048208879306912, 0.0018357570515945554, 0.00081378116738051176, 0.0012159112375229597, 0.0010186220752075315, 0.0015742478426545858, 0.0010337424464523792, 0.0012210949789732695, 0.0012709904694929719, 0.0014372238656505942, 0.0013601010432466865, 0.00082809134619310498, 0.0010837450390681624, 0.0010418387828394771, 0.0013977001653984189, 0.0015649218112230301, 0.0014470774913206697, 0.0014811004512012005, 0.0016053911531344056, 0.0010920687345787883, 0.0013761675218120217, 0.0008690966060385108, 0.0014148980844765902, 0.0013297365512698889, 0.0010617941152304411, 0.0010785318445414305, 0.0012950851814821362, 0.0011396181071177125, 0.0017584074521437287, 0.00098233565222471952, 0.00095749436877667904, 0.001292348955757916, 0.001449123490601778, 0.0013485759263858199, 0.00085871852934360504, 0.0010010696714743972, 0.0014318965841084719, 0.0012612070422619581, 0.0013304026797413826, 0.0017227006610482931, 0.0012037667911499739, 0.0010424257488921285, 0.0014215946430340409, 0.0014324265066534281, 0.0015195452142506838, 0.0011896828655153513, 0.00089714344358071685, 0.0012528138468042016, 0.0010457595344632864, 0.0010043032234534621, 0.001400548848323524, 0.00099816627334803343, 0.00119536102283746, 0.00067348923766985536, 0.0013618438970297575, 0.0013183651026338339, 0.00107007403858006, 0.0012431950308382511, 0.0010887215612456203, 0.0010435075964778662, 0.0012197006726637483, 0.0015291192103177309, 0.0010747031774371862, 0.00094893312780186534, 0.0017516645602881908, 0.001620875671505928, 0.001043472089804709, 0.0013525359099730849, 0.0012324213748797774, 0.0009719564113765955, 0.0015106047503650188, 0.0011248148512095213, 0.0012853494845330715, 0.0013534046011045575, 0.00085688655963167548, 0.001402155845426023, 0.0012425372842699289, 0.0011731318663805723, 0.0011914152419194579, 0.0010757982963696122, 0.0011208244832232594, 0.0015983565244823694, 0.0013810908421874046, 0.0015995302237570286, 0.0010749440407380462, 0.0020681326277554035, 0.0012722628889605403, 0.0012445531319826841, 0.0011833341559395194, 0.00159661122597754, 0.0013613274786621332, 0.0020716027356684208, 0.001329789636656642, 0.0008711647242307663, 0.0010370396776124835, 0.00097556127002462745, 0.0011013238690793514, 0.0013964221579954028, 0.0013535311445593834, 0.001060281996615231, 0.0012500975281000137, 0.0011673435801640153, 0.0014539556577801704, 0.0017890790477395058, 0.0016382291214540601, 0.0013585789129137993, 0.0016869398532435298, 0.0016805025516077876, 0.001157238963060081, 0.0013568919384852052, 0.00075995392398908734, 0.0012915669940412045, 0.0012857505353167653, 0.0011981379939243197, 0.0012450473150238395, 0.0017389132408425212, } }; const TfLiteAffineQuantization quant30 = { (TfLiteFloatArray*)&quant30_scale, (TfLiteIntArray*)&g0::quant27_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data31[32] = { 2452, 7566, -24903, -15123, -3941, -21292, 7282, -5562, -2045, -12358, 7060, -4312, -8434, 4166, -3750, 11708, 15799, -9550, -11754, 5938, 2463, -7109, 5654, 4255, 8477, -4597, -3526, 11258, 3602, -1568, -130, -17499, }; const TfArray<1, int> tensor_dimension31 = { 1, { 32 } }; const TfArray<32, float> quant31_scale = { 32, { 6.1528102378360927e-05, 6.0483376728370786e-05, 5.1326558605069295e-05, 7.6232499850448221e-05, 5.671655890182592e-05, 6.5682193962857127e-05, 4.2278505134163424e-05, 6.802545249229297e-05, 4.8400223022326827e-05, 4.2183022742392495e-05, 6.0282003687461838e-05, 5.1999762945342809e-05, 4.8695252189645544e-05, 5.719783075619489e-05, 6.2826860812492669e-05, 5.690503166988492e-05, 5.5151667766040191e-05, 5.3534389735432342e-05, 4.9085603677667677e-05, 4.8678248276701197e-05, 5.5412496294593439e-05, 6.3997758843470365e-05, 4.5294105802895501e-05, 5.807981506222859e-05, 5.8916590205626562e-05, 5.701549889636226e-05, 4.7992969484766945e-05, 3.8960548408795148e-05, 4.7038145567057654e-05, 5.72468779864721e-05, 5.3139447118155658e-05, 4.5531218347605318e-05, } }; const TfArray<32, int> quant31_zero = { 32, { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } }; const TfLiteAffineQuantization quant31 = { (TfLiteFloatArray*)&quant31_scale, (TfLiteIntArray*)&quant31_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data32[32*1*1*192] = { /* [0][0][][] */ 57,11,11,69,53,-45,18,-3,1,-60,-127,40,89,20,-34,63,-38,21,-15,-89,29,-75,-6,-8,31,61,-32,2,-6,-7,-12,29,8,-27,-6,-24,-51,46,73,29,28,5,21,-47,3,83,20,65,79,3,-5,-16,-35,-55,-17,-31,-11,-38,-74,32,-26,29,-89,-33,18,-48,37,19,20,-19,-72,-95,-11,-45,47,-19,58,-32,55,-38,-39,-26,-4,29,26,49,48,-79,-30,52,39,29,20,-6,-36,50,105,51,-90,-13,-5,5,-114,49,45,11,-87,-24,-4,-30,-6,10,-21,111,-12,-56,72,7,14,26,-34,-1,45,-39,40,-21,44,-10,29,8,51,12,-12,70,90,19,63,-15,-73,0,25,3,41,-56,24,34,0,42,-46,-47,-58,-66,-93,43,1,0,-11,-59,-36,32,74,1,-51,-50,72,-88,-83,21,-30,-29,-46,10,-17,-120,66,99,24,49,-55,-35,-8,-46,-71,-2,87,-16,-21,-87,-12,39,63,10, /* [1][0][][] */ -45,11,16,-21,27,17,63,-2,54,-6,14,-3,24,58,13,21,-30,-45,36,-34,-49,-1,22,25,-7,52,49,-25,7,2,-66,-16,-37,-3,40,-59,1,-102,-7,9,-7,-3,62,-29,58,-32,-39,17,-3,-101,-41,54,-25,17,-48,29,2,3,52,-76,-34,-61,68,8,30,48,15,-38,-9,81,-39,-47,7,-6,75,-48,78,-29,35,-33,48,-66,24,15,-1,-3,-12,-89,81,-32,-33,7,21,5,-127,7,90,-68,5,-75,27,3,67,53,-62,3,31,-8,-40,-16,-21,48,34,41,-11,-65,43,-66,21,27,-11,-14,-39,-26,8,-71,-18,74,-19,5,12,18,-53,-62,21,30,35,-32,33,-57,-6,11,37,2,20,-76,22,39,-48,14,-18,20,34,104,-9,-24,-36,-9,47,24,-1,-69,-64,14,-6,-16,53,-34,-35,-36,-83,19,52,-43,44,4,-16,26,14,-70,-30,-30,-4,56,-46,-12,-3,24,10,-8,-35,-7, /* [2][0][][] */ -63,-4,-39,-4,79,-54,20,-32,103,64,76,23,-109,-1,-12,-61,65,-19,-59,-1,29,45,9,32,82,4,77,18,67,65,-35,-18,-27,40,-10,-16,-39,-12,112,16,-1,-71,-16,75,-33,95,-24,0,-44,-10,-6,22,30,-14,85,-19,-3,62,-54,11,127,64,37,37,63,-33,-49,101,10,75,-61,15,38,86,-60,59,82,-80,21,-46,13,-10,13,-84,-41,-20,-20,42,72,-35,-21,25,-17,75,-72,-16,52,-17,-77,-21,-2,9,95,19,41,30,-39,52,4,4,-1,56,-6,19,-54,-8,106,107,62,-21,-4,71,81,-2,58,-105,19,-73,-13,-8,-34,30,-39,-24,-5,29,19,46,-41,104,16,-73,38,-47,32,-5,83,32,-62,1,-7,-59,-9,-61,-2,10,-71,-9,24,25,20,-1,-51,-105,5,49,49,86,-62,-6,14,80,-25,-23,97,3,36,-15,5,-2,36,1,-26,18,37,26,-36,-96,-45,-18,17,-19, /* [3][0][][] */ 67,-68,1,-11,-30,-1,68,-36,-44,-25,-38,45,-22,-22,-35,51,-34,64,30,-25,31,-19,-9,17,36,-23,58,-27,62,3,15,31,127,-10,8,41,10,4,28,-16,33,-42,104,-57,25,-65,-22,85,-19,14,-20,14,17,-37,75,68,15,-76,76,62,33,-11,-21,50,42,3,-63,32,64,48,-52,0,70,51,-36,-79,-24,29,-80,-31,16,37,51,-16,15,6,-9,-24,32,15,-18,21,32,10,-7,-60,-12,-16,28,3,50,35,23,15,15,93,67,24,-1,10,-49,45,-13,-30,3,-71,68,11,-24,-34,-1,-14,41,-6,-45,35,-48,16,61,-28,10,44,-67,5,0,-13,70,-11,74,-24,11,-74,-60,21,15,23,24,-42,-26,75,-35,13,42,-8,52,-78,42,-10,-36,14,9,-15,22,31,-59,-37,-9,38,50,-8,2,-32,-25,-8,-9,53,33,-14,-34,-12,-14,8,-49,-5,-51,36,5,-10,28,-20,62,36, /* [4][0][][] */ -115,-50,71,60,2,31,-3,23,-24,-7,31,10,50,-68,-26,46,4,-76,-12,-1,-28,-42,-21,45,-26,-60,-66,0,-25,32,-32,20,-10,-36,-91,28,49,73,47,109,-56,60,-87,-92,109,-15,-53,22,-36,51,5,-58,-6,-55,-51,-3,-72,70,8,66,-12,-7,-35,44,36,-46,23,-66,-100,-35,-24,-14,-5,10,63,22,-64,-41,-29,-13,39,-60,5,34,47,-19,-58,-12,-19,40,-88,-8,76,-44,59,-91,71,-42,24,59,52,-47,-5,86,24,36,-28,-55,-113,22,-19,-56,-7,67,11,64,-74,47,35,30,30,-77,-44,109,38,34,-6,-36,-2,38,48,101,20,0,98,-67,1,-36,24,-2,26,4,-22,42,127,-6,9,20,-15,-25,-95,49,-41,2,49,-69,-16,-4,-26,114,-11,-83,-16,-3,24,62,63,-17,53,-64,-15,65,94,-3,113,-4,-29,-24,-13,-51,37,42,59,31,-8,114,55,57,9,-39,27,28, /* [5][0][][] */ -46,-26,-38,-47,-23,32,127,-32,-17,41,-67,74,57,8,77,48,-53,-60,50,-72,21,-24,-51,77,-40,-53,-64,39,27,19,-51,52,-14,-16,-26,-9,28,22,31,4,67,23,-65,-39,49,-66,75,11,78,-21,-48,5,-9,12,25,27,42,52,-34,8,9,-71,33,-80,-17,59,-80,19,-43,-12,31,90,-18,36,31,-8,7,-57,33,49,32,-63,34,42,81,-8,37,-18,-11,10,-48,57,-47,69,-9,-9,-27,50,-55,70,81,93,29,12,-22,14,46,13,86,-5,11,28,38,56,11,41,-26,-100,-52,34,-30,6,39,59,-9,-44,22,48,-29,9,-49,-77,24,-75,-77,23,11,-47,-55,19,-56,24,-13,51,91,118,-83,-27,-31,29,-11,23,50,45,57,57,12,15,5,-40,61,15,-53,34,-46,5,-27,-34,46,-45,-21,61,77,-74,20,-28,44,58,-46,11,37,97,-5,28,38,-10,74,-22,60,-2,11,9, /* [6][0][][] */ 37,55,-39,-8,-76,-70,-44,99,37,-45,-67,90,7,-13,-32,-33,-34,-32,-34,-86,-83,-39,-63,46,-57,50,53,-66,31,-33,-44,-65,-11,-19,113,127,126,103,-24,3,-45,-61,-15,30,-97,12,-63,13,-15,-32,-58,3,-85,53,34,-89,43,47,32,27,-18,-61,-74,-72,-50,-56,88,74,-70,99,68,71,-12,-24,-22,14,-63,-40,-41,4,58,-56,-3,-11,-14,-36,16,8,-36,-14,-7,-66,17,-53,11,30,-21,20,62,63,47,65,-32,32,56,-66,-31,-23,-35,44,7,32,-61,38,-93,-4,-29,97,-29,-95,34,77,20,81,-91,-21,87,42,41,-61,51,-59,16,-61,-29,9,12,24,-13,9,87,37,-75,38,-65,-30,-23,39,29,-89,15,118,62,10,-41,-27,41,29,-15,-20,95,-44,-65,-11,-31,-10,-10,-67,18,15,-71,62,-42,10,-30,-71,38,50,23,-26,102,-7,92,81,-13,46,41,-84,9,36,-7,-62, /* [7][0][][] */ 15,5,-79,-8,-25,38,3,-1,35,18,15,-41,-9,-2,-22,-40,-9,30,-17,-11,2,-31,-40,40,14,-11,-27,12,-14,13,32,-52,12,65,14,69,-40,26,40,-4,-55,-82,-18,-24,37,84,47,56,-12,-7,1,-1,68,16,-23,28,25,-58,2,41,-12,41,-28,10,-32,21,-8,11,27,65,-38,31,22,-90,-9,-8,-60,30,69,24,11,-105,4,-24,6,74,-45,-35,0,0,56,-23,4,1,-12,-47,24,-22,-53,6,49,36,1,-10,4,-26,-19,23,-127,61,-13,74,40,-51,23,87,-18,48,9,-73,21,8,14,-28,8,-18,44,-39,4,5,14,-13,13,35,9,-16,0,19,-4,19,-29,13,-15,32,16,17,-31,27,-14,6,-20,-3,-15,-17,9,-19,-6,-19,-8,12,-89,42,32,-13,-49,-56,-20,26,-48,26,-45,0,56,36,58,-13,63,14,-25,55,-1,-35,-14,50,29,15,10,-21,30,-15,40,63, /* [8][0][][] */ 0,28,31,-33,54,-25,-41,12,-5,-18,127,-48,-14,-25,-5,0,52,-19,12,-47,-35,60,2,5,-16,47,32,89,49,-42,20,-6,-32,-48,21,-20,-45,93,-24,-57,28,19,-32,13,-6,72,-85,-23,-37,-3,92,-74,13,-63,-14,-48,28,11,-81,8,77,88,77,-72,-17,-21,7,-4,-2,18,-60,-47,-86,42,75,-61,21,-12,-50,-7,-39,47,29,14,59,7,-22,-16,-16,2,19,-47,-12,-44,88,-14,39,80,-27,-32,84,-45,-32,67,-4,7,-22,87,-11,-77,-41,29,-17,-22,113,34,-46,-31,-46,35,-46,-46,34,41,36,56,-23,-42,-51,-22,34,2,67,75,-78,10,-45,-101,-10,50,26,-28,83,40,20,17,0,11,-36,3,8,35,44,-96,3,12,-10,28,27,24,3,-28,-64,107,54,54,16,-26,98,-52,-33,24,40,11,-49,30,-53,37,-47,-99,-28,6,33,-40,-4,39,-73,-15,-53,48,4,58, /* [9][0][][] */ 28,-39,2,-96,18,-52,-49,-83,-18,-40,-23,10,2,2,24,-62,-30,71,-36,19,-113,20,60,8,-32,-8,100,55,95,-52,-1,5,13,20,-78,5,-13,9,50,86,17,-44,44,-30,40,-66,-93,-57,-16,16,-49,7,94,7,15,2,49,-74,21,-60,38,5,19,9,-29,-22,8,-8,75,21,-9,-51,44,-29,-12,9,-37,23,66,25,-69,66,-87,7,47,3,19,65,-75,-13,30,48,18,127,55,63,13,46,12,10,32,68,-5,45,74,59,-103,49,-41,10,10,-39,16,-27,-25,87,38,24,-12,5,-48,-24,11,-18,18,28,-52,-5,31,34,35,25,32,-39,27,-10,8,-7,34,24,35,17,-14,-106,-13,46,63,28,-42,59,21,32,-67,87,108,61,-53,-77,-22,52,-24,-19,10,-5,-23,55,47,-34,87,46,-42,37,52,-52,-49,34,-43,-18,-1,30,-55,-118,23,14,31,3,-13,3,3,25,-69,14, /* [10][0][][] */ 21,-34,-29,-37,19,30,29,-3,-86,70,-55,-3,-18,-22,26,-35,-73,-7,13,-45,-69,-17,80,52,-39,-5,44,-13,-49,8,-56,-5,-13,16,42,-70,-12,60,3,35,9,-43,37,-14,-19,17,-49,-39,-18,-53,94,44,40,20,-4,45,-46,50,-54,-9,31,-26,7,-65,-111,44,76,18,10,21,42,-53,33,17,127,18,35,-6,-2,-57,-9,28,-43,16,13,66,-36,-80,-67,-15,-28,-68,-76,13,-81,-33,62,-24,-17,0,122,12,-5,-6,-14,49,26,32,-58,-32,-74,-54,71,62,-95,33,-21,-24,50,20,15,-71,53,26,17,49,-25,-17,-26,53,38,-48,-111,13,33,-9,43,-2,-89,46,-22,-11,4,-46,-61,-5,12,-44,-43,-7,-3,-1,-16,24,-53,-14,-63,34,-22,-61,54,39,-3,-12,-5,-45,6,51,107,57,-9,-52,-53,-74,26,-14,-55,-15,2,-37,-7,64,43,72,46,-43,7,16,75,4,69,41, /* [11][0][][] */ 33,37,-65,-46,-1,-43,89,-86,102,56,-12,-13,-117,-23,56,61,8,82,-102,12,11,71,42,-123,-7,25,56,18,-39,51,29,7,69,57,-33,-26,24,-4,-39,39,51,-4,-12,73,16,-6,-67,-45,11,31,-36,-47,-80,24,38,55,35,-46,37,-23,-53,34,-53,-8,59,-51,-84,28,-20,24,23,63,-4,59,3,-49,-2,40,-54,-17,-50,-6,38,40,-36,-17,61,-24,-61,31,-41,-14,127,-53,86,11,-83,-37,57,100,22,80,-7,110,64,-32,36,-11,-11,6,-16,16,-7,-33,-68,-14,40,103,-18,18,-22,52,26,-59,-16,50,38,36,77,-38,-38,61,-27,-26,41,-35,40,0,-10,-75,0,-40,-69,-45,-113,-14,8,-5,4,-68,26,32,6,-38,-77,30,-28,60,-119,-16,59,11,-44,26,-46,52,14,-40,21,8,54,-75,4,-22,25,46,-34,60,-46,-52,34,-34,-45,-30,18,-53,14,0,20,58,70,18, /* [12][0][][] */ -42,46,-19,2,104,45,-32,90,-8,-43,57,7,-81,27,101,5,-52,38,-24,40,1,-1,38,-61,-18,-57,-59,40,-4,9,-22,-60,-45,-62,-63,18,-1,108,-96,31,-28,35,33,18,-2,-10,2,-27,87,1,60,2,44,-50,25,-27,-15,86,14,28,21,-111,-47,64,-62,87,-115,-63,-3,29,-24,45,54,-43,-39,-86,-94,52,-35,75,-52,108,31,74,-17,35,-61,19,4,-15,51,-11,82,15,52,-18,-41,22,-64,40,32,-38,-58,9,26,75,-4,-11,2,-30,-7,-81,43,77,67,-12,80,-127,-8,-39,120,-22,21,10,105,-23,-45,-79,14,59,21,97,43,-8,107,73,-3,85,-89,46,-30,63,-49,-27,-11,79,-27,-4,-20,-21,-44,-5,38,70,-75,14,56,-26,31,80,13,22,-9,-24,87,-15,47,-80,-21,12,79,-58,-112,-9,7,-103,14,73,-73,-17,-58,-46,-8,-21,49,99,-76,56,-39,52,-38,-43, /* [13][0][][] */ -37,47,69,-33,-97,-31,14,8,-69,63,-37,104,-12,46,-53,38,-2,-53,-66,-117,-48,-69,-24,-10,-6,-47,37,-2,29,1,45,-5,-85,5,-24,18,60,31,36,35,2,-9,-28,-29,59,15,-70,55,73,31,51,124,105,116,-36,-42,-50,-3,57,-77,92,-19,-36,29,-48,-33,27,-109,43,-23,-12,-7,27,39,73,27,63,-74,-14,25,-127,18,-61,-54,18,10,60,-31,12,-21,21,-6,-76,26,-39,-61,20,37,4,17,-90,23,3,11,-80,5,48,-71,63,-45,-23,-26,5,-36,-6,-22,-31,-17,32,-43,-61,-120,78,80,6,28,76,-1,-22,14,121,-93,-12,10,-43,54,44,9,26,-64,-60,-17,-39,5,13,-7,7,4,-26,3,-54,27,-39,69,52,19,72,54,-36,-18,-100,-26,-4,26,-35,-48,-26,-36,-6,94,65,31,7,-4,67,12,-45,-13,-32,28,106,4,-36,111,46,88,-58,-47,-53,-56,3,-66, /* [14][0][][] */ -4,58,86,66,13,38,-10,38,-2,-13,-65,6,54,22,-42,2,20,59,27,43,-16,63,-15,20,14,-47,-27,-39,-17,16,3,-14,71,15,18,-20,51,8,-37,10,46,-38,71,-76,-51,46,38,19,-58,-33,-43,25,-28,-36,7,-37,-29,-44,-51,-10,-17,-31,43,-63,-8,21,18,-35,33,66,4,87,-44,-56,-66,-28,-21,-98,-78,12,55,-2,-15,-76,-14,38,45,-6,2,-36,4,31,-1,-24,54,64,-17,127,-17,11,-22,92,15,-59,-4,26,-18,2,-107,-30,4,0,-40,15,-17,31,38,-26,31,23,73,-68,28,-12,-71,6,12,-17,-72,17,58,-62,12,31,-3,69,9,54,37,10,-15,-36,-43,38,38,20,-5,44,-10,47,21,12,-73,109,-17,-7,66,43,28,-75,47,-9,-29,-11,-20,-53,-62,-73,-4,54,7,8,-46,-45,-9,35,-12,-64,-14,-34,-104,48,43,32,45,37,37,43,84,24,47,48, /* [15][0][][] */ -73,30,-50,42,-28,-3,-4,27,32,-34,1,31,-16,-9,11,11,37,-1,-6,-32,-41,5,-97,-44,7,-17,-7,-24,68,-64,14,49,89,0,127,7,31,56,30,-8,25,55,-92,49,-23,-51,-64,14,-77,-44,-17,-53,53,-37,26,23,-13,54,14,-65,47,-45,38,27,21,-79,-28,-32,-16,4,3,-54,17,-107,-107,29,37,72,11,43,-9,-13,3,31,30,39,57,34,9,14,97,-36,1,-63,-58,-23,-65,-96,-14,-10,-41,-38,-103,87,47,-16,-18,86,-28,63,-119,44,13,-71,2,-26,17,38,9,40,-22,-9,24,5,74,-28,-112,-84,-10,13,-33,33,-77,14,33,-46,95,15,5,-29,-41,11,54,31,-1,-82,42,-13,75,2,69,-15,30,45,-23,-21,-39,22,-61,-9,-16,-88,-6,-67,-57,60,-55,-100,-42,58,41,-53,-38,43,-11,-85,67,6,9,57,-47,41,23,-73,62,17,95,41,-83,-4,8,-2, /* [16][0][][] */ -44,12,18,50,58,-82,26,8,-72,14,-11,-31,4,-17,2,-44,-53,-46,10,32,35,-60,-63,-72,-9,-109,47,47,-93,-26,-9,28,-17,5,-22,-57,-97,-13,58,-32,0,-40,-44,-26,-20,-1,6,-9,-2,15,10,-46,36,50,-15,-12,-27,-71,-79,-23,8,-4,25,-18,58,13,49,27,-1,-12,58,-58,-14,-26,30,-37,25,10,-13,73,-15,6,12,-48,105,-57,-70,65,47,9,-76,25,-14,7,-15,59,-36,32,5,-29,9,1,-17,-29,71,35,52,-70,-42,-81,-60,-20,-48,32,-69,-66,-30,-11,51,17,19,-65,-76,-127,-19,35,-24,-6,-41,-37,-33,11,-43,53,86,-16,18,73,25,-28,-34,49,-20,8,14,6,-9,51,58,52,-29,-27,-62,17,44,54,-13,56,-43,-62,94,32,-83,-6,88,-6,8,35,-3,11,-10,20,4,-70,-18,-28,28,43,-48,8,38,45,15,-52,-48,12,9,36,2,-42,67,1, /* [17][0][][] */ -58,-55,-29,-5,-23,27,-6,-22,-41,-89,21,-25,-53,62,-53,-27,36,-23,51,53,-85,-50,-41,-23,-1,9,22,32,4,-69,-45,42,48,87,-10,-56,-29,-12,38,0,14,41,-70,47,-5,62,12,-56,4,-25,101,-93,58,52,21,-7,40,14,-10,7,52,33,54,-8,6,-34,31,-45,31,20,-51,62,-24,52,50,31,-36,79,-38,81,51,-11,-35,42,-4,-70,-15,58,-31,83,-52,-69,54,-4,35,-44,-27,-24,-34,-21,127,-51,-5,-49,18,-21,86,89,84,32,73,40,49,-36,106,15,-87,-25,12,-3,-10,-19,10,6,-12,-52,-18,-101,-23,-7,53,69,-39,-7,5,-51,-18,31,11,49,24,-90,10,-1,0,46,66,-25,-33,43,-5,-64,-91,-79,-11,21,36,11,-65,35,-13,61,-31,89,97,73,-25,-80,-19,102,13,-65,30,-6,-69,110,16,-1,63,16,-16,-12,13,-21,31,-28,-72,-44,-14,-30,-9,67, /* [18][0][][] */ 0,-5,13,-61,36,-101,15,94,2,-56,-49,22,-15,108,18,-3,30,-51,42,-46,-14,-45,7,-10,32,-32,12,-4,57,-94,26,-21,58,63,-9,-6,-31,-48,-43,13,-33,-45,-48,-80,36,20,33,30,-21,19,-53,40,65,-50,38,-29,53,-7,34,13,10,14,28,19,4,-46,69,-60,19,-1,57,12,-11,60,-1,-49,31,-45,73,-9,15,60,34,23,-41,-57,-10,-18,-21,-41,13,6,18,-4,59,6,-21,66,101,9,-66,-6,-15,29,106,-21,-51,-31,29,40,44,-70,-20,27,-27,22,11,1,50,68,48,8,40,-26,24,102,-48,44,69,25,-1,-100,39,45,-16,74,44,-108,71,-127,-60,-28,-22,-36,17,33,62,28,-18,32,7,-44,17,-9,-62,14,0,65,28,87,-32,-23,-37,-117,-1,-51,-9,77,63,25,45,5,31,-75,-29,-20,-46,4,80,10,-17,-88,99,45,32,-11,38,61,83,63,-63,10, /* [19][0][][] */ -10,69,-70,-44,44,16,70,-1,-70,-68,-78,-8,-35,8,44,-39,-23,-13,-46,16,-8,69,-19,96,-55,-69,27,-60,64,56,-24,-47,-31,-26,-76,-47,29,1,-11,-5,10,-56,40,-36,19,-13,0,49,21,83,-66,50,-21,-10,-33,25,-7,25,-20,65,46,22,38,11,-5,-13,50,32,-18,69,32,-15,9,-74,104,-46,-13,-54,-90,-76,-57,-23,55,-1,24,11,10,31,-99,50,-38,-74,-28,-55,-47,-38,18,-36,45,27,17,7,-27,81,70,33,45,14,19,51,49,47,-121,-67,-14,-24,-62,25,-16,12,-87,-60,50,-17,7,-14,33,58,55,-57,84,15,-38,42,44,-33,-52,51,-27,-38,73,-41,-17,-3,-20,30,-127,-43,49,38,45,38,3,-3,-47,-61,-8,-14,-50,1,38,8,94,-12,1,13,-70,31,52,-20,-55,-4,-88,-30,-52,53,-32,11,-56,58,-14,24,-79,77,-37,40,19,-50,81,60,43,22, /* [20][0][][] */ 27,-10,47,-27,-6,-1,-36,12,-20,-14,-3,-34,-55,1,29,12,62,12,10,-19,42,23,31,13,-43,68,-25,-31,-30,-50,-56,11,9,95,47,-40,36,-8,12,-7,-20,-4,-22,3,-43,-26,-30,-2,30,-18,-13,22,28,-81,-4,-53,-14,9,21,14,45,-16,17,-11,92,11,5,57,-50,-51,33,-45,-82,27,39,-53,-3,-6,-5,-68,21,16,-1,-39,-36,-13,-30,7,62,31,27,-11,42,-22,-24,41,-11,-127,35,43,-12,31,44,-6,27,41,56,-64,19,-11,-61,10,-66,59,-38,-50,-79,-6,51,-48,5,4,-30,11,-59,4,81,-4,68,-7,-39,-1,-64,43,30,19,22,18,-45,32,32,27,-31,54,3,27,18,14,76,-16,-49,9,-13,-71,-52,3,63,-18,39,34,-16,14,44,16,11,15,27,2,10,-31,41,-15,-77,38,89,-12,28,-36,12,0,-11,-61,5,0,16,-88,3,-24,-53,-107,39,-23, /* [21][0][][] */ 38,36,-1,-94,45,1,2,7,8,-31,24,53,-7,97,24,-26,-14,56,-53,71,-57,52,2,-90,20,-8,3,7,26,-13,48,80,44,38,-6,-73,10,-20,-24,57,0,-41,-31,72,41,47,4,-30,-1,12,42,-26,81,41,-39,-93,19,-24,15,60,-89,-63,-57,4,9,-32,-27,22,-25,-50,103,-15,-59,51,-62,4,-33,18,-36,27,27,25,-5,-33,0,-2,-12,0,21,32,38,105,-50,31,-14,44,-29,14,-5,28,15,-52,39,-8,-40,-55,49,23,-36,-79,-49,-71,-52,13,27,8,79,-18,1,47,75,-40,-26,10,34,-34,-69,51,77,-37,-51,-20,27,51,9,13,-41,-16,15,23,27,-2,-17,-49,43,-88,18,127,28,64,14,-19,-79,93,-96,-48,-41,21,4,12,95,-46,60,-16,49,-2,-25,12,88,64,-5,-50,50,-86,-69,-70,11,46,-45,-12,32,39,42,71,-30,-87,41,-32,-17,-7,-8,50, /* [22][0][][] */ -44,49,-40,17,22,-78,-46,8,37,-72,-33,78,-1,-38,19,-31,-8,22,44,-24,-32,56,105,24,58,53,53,-75,-35,22,-27,-8,-78,-64,46,15,-18,-43,-8,100,-62,-39,-76,6,36,28,-126,63,-38,-32,-13,-14,37,-81,28,-95,6,-16,-74,-35,-13,86,-45,22,-91,-64,-104,24,114,8,-25,75,29,46,57,-18,81,-105,-76,-19,50,14,-44,-87,-50,3,-42,92,16,31,26,-39,-1,11,35,34,46,9,-63,26,34,-63,-29,23,-1,36,94,-41,75,-64,-58,-59,-14,35,-47,-79,-26,-93,35,68,-44,-12,-30,-44,-90,58,76,52,-26,13,44,53,21,0,16,-17,127,-111,23,-61,30,-104,45,12,18,55,-76,-8,-19,-33,50,0,24,14,51,-31,-19,4,73,24,16,-17,-21,35,-63,9,-1,40,51,96,-110,-90,73,40,-61,-21,74,45,48,67,17,5,50,-5,-66,-31,-11,42,5,-76,-15,28, /* [23][0][][] */ 21,1,-34,75,55,-79,-41,-41,33,46,-21,19,-20,25,-41,-11,-84,-39,-6,-17,12,-9,-65,38,-12,68,37,-49,21,-25,49,60,0,23,84,0,-36,2,-48,-23,42,-27,24,-77,-51,-92,12,27,-17,-8,-94,-40,-50,-72,58,-51,36,-66,-20,3,3,-52,-1,1,66,55,-36,-6,-37,-33,29,47,-61,17,21,-5,56,-93,-85,26,70,55,18,62,24,47,44,-18,43,-127,26,-92,17,78,-55,73,-10,58,40,-72,-55,-32,22,-50,81,28,81,20,-71,15,-12,34,18,-49,9,30,-13,19,-1,3,-30,-66,-64,66,-41,-48,-20,-24,89,12,34,47,46,-39,48,27,-5,47,31,-23,1,-73,17,0,-14,-45,61,12,84,52,-51,121,34,13,34,-1,67,-82,-90,46,-30,-16,8,-24,-13,-18,-43,30,58,29,-19,-79,-41,2,-13,32,-10,37,36,-68,-38,-59,-23,55,34,10,37,8,-60,40,89,78, /* [24][0][][] */ -63,0,7,-30,56,57,5,-52,-86,-22,17,32,-14,-16,-72,8,-27,-9,-25,-45,17,-3,59,3,-3,21,-35,36,17,-25,7,12,-32,-11,17,57,20,49,36,-93,15,7,-40,-13,8,34,-15,-8,25,-24,13,4,-9,39,69,19,30,53,47,-11,59,-21,89,70,-52,45,-8,-34,9,34,43,21,58,50,-59,-39,32,-7,-90,-19,15,-16,-27,-6,31,-33,67,-6,-61,-22,82,70,-45,89,91,-5,-66,-20,41,127,-67,-2,38,-20,-76,53,-23,17,28,7,18,-34,-28,-37,5,-46,55,-86,-48,-15,55,21,57,-73,-41,2,-98,-56,-57,-50,11,-27,-17,-83,-33,-65,-39,-22,24,-41,51,-20,10,-81,15,36,36,11,-117,6,74,-40,-24,30,13,16,-43,-32,-12,-9,17,-66,54,-19,-58,-13,13,-23,-17,-20,-16,-34,26,-2,76,-50,15,-43,12,11,1,0,-116,39,7,-67,24,47,-70,35,4,7, /* [25][0][][] */ -21,-79,47,-52,-16,39,47,-91,-48,29,16,-19,29,54,-47,-84,68,0,25,-16,-119,11,9,74,-63,119,49,85,93,-40,13,-69,37,14,19,-16,-15,34,-25,-20,16,7,35,5,15,21,0,-1,38,-41,-30,-46,-22,8,-19,8,77,-26,-105,34,-1,-46,-79,64,45,-7,31,-33,-91,62,-14,-20,-19,0,-76,-26,13,-51,-35,44,32,36,-48,57,44,-8,46,-39,52,-23,-56,-72,-25,-59,-32,-105,8,76,17,-8,4,17,50,27,-6,28,-79,-15,25,66,78,-29,2,71,-5,82,-49,26,91,24,16,-9,12,42,29,-34,38,61,17,-35,-49,26,-48,26,-19,25,87,21,33,-54,-82,9,-39,2,18,25,14,25,70,21,-37,-25,43,-64,15,127,-43,67,-45,-17,-28,33,-1,19,-49,-9,60,-76,-86,-53,-4,68,-22,-25,56,-28,-31,-50,-2,50,-18,73,5,-26,-63,-59,4,12,61,53,-13,68, /* [26][0][][] */ 7,93,29,6,12,-60,59,-28,55,-83,16,52,-43,-18,10,-32,-3,-35,54,-101,59,-44,86,76,-26,-12,-22,36,38,34,127,76,-51,-22,45,6,20,-18,46,-48,-36,28,-23,-60,59,-19,45,-21,44,84,11,43,61,-6,-16,-16,48,76,-51,46,-24,1,-40,-11,-8,13,5,-80,-43,93,-22,-58,13,-43,37,94,-12,-28,-22,32,-50,-46,66,-96,-76,17,28,-52,-34,91,19,-14,64,75,17,44,-14,-30,30,31,6,32,18,22,-19,31,14,31,7,36,25,-52,-26,23,-82,-58,37,3,-73,55,21,-79,-38,-16,26,75,-1,56,-13,-55,31,-55,-85,38,-94,48,-51,-120,62,-4,-78,51,44,-43,-29,-11,85,-2,-3,29,43,36,-77,10,-93,28,-26,-29,-98,-66,-44,-73,34,-2,-58,41,-11,-71,-2,34,115,-58,-18,33,-21,104,-10,-117,2,-25,-24,16,-52,-24,-72,74,-6,114,74,52,70,84, /* [27][0][][] */ 27,-32,17,27,-19,15,-50,-79,-8,-74,0,0,-44,-65,-95,-83,-18,-7,-10,28,-28,-47,12,27,28,-70,69,-57,96,-19,19,-21,-31,-16,79,28,20,-59,-55,-12,-36,11,38,-7,32,-15,25,24,33,-83,15,-47,-66,-11,-36,-90,-39,47,46,-35,-42,-26,76,-36,7,-58,32,-10,27,-15,66,-103,-60,-9,-24,-14,-30,82,7,1,41,-89,108,-57,-50,-35,-3,67,60,54,78,12,108,-53,-10,28,-37,10,44,28,-38,86,17,-89,-84,59,-34,26,58,96,-7,0,14,23,58,58,-30,-99,-24,-86,40,56,-18,56,-11,-112,60,-20,60,-6,76,-90,-63,6,9,37,60,-10,95,-104,2,-17,-72,22,-102,36,-41,-40,-80,-46,1,-104,56,-26,-71,28,42,17,3,-60,1,-127,69,5,28,103,-19,-34,-19,9,29,24,34,25,65,-118,24,-38,85,1,87,-83,25,-35,34,16,43,37,2,6,47,-31, /* [28][0][][] */ -15,14,-69,-27,35,113,7,-49,-27,34,-40,-2,-14,-35,7,-106,-50,-20,87,-84,-17,114,5,3,94,-37,77,-71,55,110,71,-68,-18,-10,32,27,34,0,47,-55,29,0,13,57,-23,-51,-72,1,-98,52,6,-22,5,-17,-19,-23,-8,-6,57,14,-80,24,8,-44,-83,13,69,72,48,-89,59,59,-88,43,-38,76,83,71,23,-38,-32,-36,58,-15,-104,27,2,28,63,-99,-40,9,-59,-45,-7,7,67,-22,-28,31,-39,33,-78,-68,-47,107,28,17,-4,29,-30,18,-79,67,78,-47,-70,-50,-33,-23,21,-18,-30,35,17,4,-8,91,42,121,52,-28,-48,23,5,-30,-17,-28,-16,-62,3,-105,-67,18,-14,-68,2,4,-85,-15,52,-9,-43,-44,26,-61,4,-4,36,-73,23,-113,39,58,-48,-87,-41,127,-54,61,60,6,40,12,26,16,45,97,40,-18,-37,-92,-21,-23,98,46,8,-6,-5,-66,55,31, /* [29][0][][] */ -11,4,-5,-15,-19,-1,16,32,15,15,-54,-73,41,22,32,57,28,-66,39,4,0,1,-66,-6,53,-19,-8,-50,-7,-65,-24,-77,-11,45,-52,-70,-6,-10,-38,46,64,-7,79,3,30,-93,23,1,71,47,-7,24,-3,4,48,-15,16,15,-11,-48,11,5,55,19,13,31,33,102,-5,-99,25,-14,-73,-58,-30,70,19,-57,21,-43,-127,61,-6,-10,-31,81,20,-3,-30,-14,-79,17,-51,45,-5,0,37,-99,-32,53,-25,-38,-49,-14,19,-13,20,60,73,-3,25,24,68,-8,50,23,38,-33,24,-48,-46,40,-25,-13,-71,-8,-48,-54,45,-52,50,-100,96,-28,-4,-49,-18,-57,57,-60,5,83,28,40,-25,2,-28,-39,29,-12,54,6,-10,-10,5,-42,40,-7,34,-13,-14,-13,38,-25,-33,33,54,38,-50,-42,12,31,-53,13,8,-25,39,60,-26,70,44,20,48,20,-78,79,-18,38,76,22,1,1, /* [30][0][][] */ -45,-55,-48,26,15,-90,53,-6,7,-13,-24,-67,16,-92,-82,-25,25,-76,-121,90,-22,56,111,22,-27,-39,-104,127,-30,-39,-104,-34,17,-37,-50,40,-62,-31,25,41,-83,-14,49,30,53,-13,12,-45,-3,99,-11,-16,-26,26,-12,-72,16,-3,-20,-90,47,-22,9,-1,-51,64,13,61,9,17,10,-20,19,-2,-17,-42,45,10,-12,21,-2,-1,21,-53,16,92,41,27,33,86,26,-73,-13,112,-25,24,14,48,2,9,48,39,-41,-20,-97,10,110,-37,25,-10,17,11,102,4,-16,13,26,14,-22,-42,9,-76,-40,-2,46,-4,-59,14,-36,-6,10,-34,-18,42,11,-16,-20,0,39,35,-25,-8,-35,-7,-69,3,-33,-46,-70,-9,64,-13,61,-7,36,-19,-18,64,-76,-34,-7,12,-44,57,26,41,-63,-110,54,50,-22,-7,55,40,24,3,-76,49,97,8,32,-31,34,56,-33,-21,43,64,34,38,88,-24, /* [31][0][][] */ -86,48,-8,-73,-41,-17,-12,-34,53,-2,-20,-13,36,-25,-49,67,83,-1,11,-8,93,-26,-14,42,36,-16,33,-1,23,-32,-62,18,43,-20,55,103,-74,56,64,-57,127,91,53,20,61,0,64,-45,4,63,7,-21,85,86,-30,60,-30,49,-52,-109,-103,-37,-34,-44,69,75,10,-71,62,80,-59,45,-36,-43,31,27,-75,-29,54,-39,30,117,-25,-87,88,64,39,4,16,17,-67,-53,-110,-20,125,-63,-3,-21,-16,-53,-37,-69,-39,-87,17,-22,-41,-44,29,27,-45,60,93,51,-11,-59,-51,54,-9,-46,122,-62,125,92,39,13,35,-11,-5,62,-41,-37,4,26,32,-18,11,45,50,-45,-53,-59,39,-4,-44,-13,41,-19,123,56,-11,33,26,42,86,-14,28,31,5,-74,27,11,37,-92,-5,19,-39,-45,-83,4,18,15,21,39,33,-1,-85,62,-103,47,59,103,-30,-92,-21,-2,-104,41,34,3,-45,17, }; const TfArray<4, int> tensor_dimension32 = { 4, { 32,1,1,192 } }; const TfArray<32, float> quant32_scale = { 32, { 0.0026149442419409752, 0.0025705434381961823, 0.0021813786588609219, 0.0032398812472820282, 0.0024104537442326546, 0.0027914931997656822, 0.0017968364991247654, 0.0028910816181451082, 0.0020570093765854836, 0.0017927783774212003, 0.0025619850493967533, 0.002209989819675684, 0.002069548238068819, 0.0024309076834470034, 0.0026701416354626417, 0.0024184638168662786, 0.0023439459037035704, 0.0022752115037292242, 0.0020861381199210882, 0.0020688255317509174, 0.0023550309706479311, 0.0027199047617614269, 0.0019249995239078999, 0.0024683920200914145, 0.0025039550382643938, 0.0024231586139649153, 0.0020397012121975422, 0.0016558232018724084, 0.0019991211593151093, 0.0024329922161996365, 0.0022584265097975731, 0.001935076666995883, } }; const TfLiteAffineQuantization quant32 = { (TfLiteFloatArray*)&quant32_scale, (TfLiteIntArray*)&g0::quant31_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data33[192] = { 2083, -2732, -1816, -3517, 1911, -1143, -2532, -935, -1370, -6407, 6806, -1206, 409, 2336, -1841, -2710, -131, 2425, -274, -976, -1988, -1940, -2555, 3483, -2367, 505, -1447, -1459, -1109, 1923, -1454, 19, 1323, -816, 1553, 1371, -4395, 5774, -303, -3767, -2324, 395, -1415, 2921, 5261, -1008, -1711, -2097, -78, -69, 99, 185, -1900, -2823, -3042, 1539, 257, 1626, 1911, 3991, -1986, -1355, -3190, 96, -1653, 2364, -3628, 2407, 6293, 8997, -2343, 7498, -1360, -3009, -1555, 4464, -2136, -964, -402, -3698, 1869, -3082, 2585, 6927, -2629, -67, -1074, 536, 5447, 6510, -4052, -1870, -1618, 8903, 243, -4419, -1905, -396, -2038, -1605, 2579, 5734, 1078, 752, -3154, -1086, 1668, -422, 3977, -1074, -3185, -3837, -2075, 513, 440, -81, 5596, 6750, -2689, -594, -891, -1334, 4379, 4206, -478, -2125, -632, -1207, 357, -528, -1210, -468, -788, 2985, 1864, -90, -1143, 4975, 1112, 4131, 33, -933, 1040, -947, 1444, 1144, -1621, -359, -3413, -3539, -2599, 614, -2626, 5167, -1419, -1103, -638, -2990, -2564, -2000, -508, 2607, 1006, -399, 1749, 5716, 5487, 1044, -1738, -4453, 436, 4709, -938, -4401, 939, -1266, 416, -1444, -1264, 581, 1901, 3350, 1191, 1242, -327, -815, 1383, 1460, 1503, 3132, -535, -3780, }; const TfArray<192, float> quant33_scale = { 192, { 0.00016164928092621267, 0.00025019448366947472, 0.00018352564075030386, 0.00022223975975066423, 0.0001976710045710206, 0.00024173983547370881, 0.00022931114654056728, 0.00014543150609824806, 0.00026275069103576243, 0.00013760107685811818, 9.3321461463347077e-05, 0.00023777889146003872, 0.00028210764867253602, 0.0002468618331477046, 0.000191080107470043, 0.00025603588437661529, 0.00019667908782139421, 0.00024587498046457767, 0.00025797326816245914, 0.00022993586026132107, 0.00012817459355574101, 0.00021648043184541166, 0.00017258104344364256, 0.00013814303383696824, 0.00019858777523040771, 0.00015884330787230283, 0.00020297651644796133, 0.00022799464932177216, 0.00034408341161906719, 0.0002165198529837653, 0.00031249516177922487, 0.00025162668316625059, 0.0002566892362665385, 0.00019903670181520283, 0.00024326398852281272, 0.0001448619004804641, 0.00015555527352262288, 0.00015924905892461538, 0.00024405933800153434, 0.0001659473346080631, 0.00020483313710428774, 0.00024055124958977103, 0.00014616141561418772, 0.00027557328576222062, 0.00023949773458298296, 0.00013251908239908516, 0.00019748842169065028, 0.00024264963576570153, 0.00021500105503946543, 0.0003523717459756881, 0.00018863660807255656, 0.00022798666032031178, 0.00021310908778104931, 0.00018854244262911379, 0.00023481936659663916, 0.00023193928063847125, 0.00029373326105996966, 0.00021992981783114374, 0.00018193104187957942, 0.00012697395868599415, 0.00011739285400835797, 0.00023373319709207863, 0.00019567385606933385, 0.00013484449300449342, 0.00022095281747169793, 0.00018917443230748177, 0.00020846017287112772, 0.00019317917758598924, 0.00017585168825462461, 0.00013786420458927751, 0.00019497600442264229, 0.00013829987437929958, 0.00019268669711891562, 0.00017048761947080493, 0.00023379267076961696, 0.00021961778111290187, 0.00019018568855244666, 0.00018408318283036351, 0.00018340871611144394, 0.00018648759578354657, 0.00020206063345540315, 0.00017769336409401149, 0.00016785461048129946, 0.00016242638230323792, 0.00013899846817366779, 0.00025608489522710443, 0.00028636757633648813, 0.00024647961254231632, 0.00016624490672256798, 0.00015485496260225773, 0.00016388106450904161, 0.00022842899488750845, 0.00026279498706571758, 0.00014895753702148795, 0.00026869488647207618, 0.00013310385111253709, 0.00025626964634284377, 0.00018047030607704073, 0.00020343903452157974, 0.00021530753292609006, 0.00017871394811663777, 0.00015612000424880534, 0.00024201565247494727, 0.00029255679692141712, 0.00019172414613422006, 0.00025714852381497622, 0.00019504289957694709, 0.00015508422802668065, 0.0002304569206899032, 0.00029471711604855955, 0.00017619867867324501, 0.00021818422828800976, 0.00013541801308747381, 0.00014531437773257494, 0.00023245005286298692, 0.00026059552328661084, 0.00016743360902182758, 0.00013644527643918991, 0.00026920399977825582, 0.00021223301882855594, 0.00034087820677086711, 0.00020845815015491098, 0.00013372440298553556, 0.00020762807980645448, 0.00025187258142977953, 0.00021140268654562533, 0.00017894177290145308, 0.00024722708621993661, 0.0001906516554299742, 0.00021666580869350582, 0.0002520511916372925, 0.00022085491218604147, 0.00031599559588357806, 0.00016226024308707565, 0.00020500982645899057, 0.00030043261358514428, 0.00022971424914430827, 0.00025617194478400052, 0.00026664813049137592, 0.00014025592827238142, 0.00030895115924067795, 0.00030277634505182505, 0.00026482442626729608, 0.00022527959663420916, 0.00020855102047789842, 0.0002974050585180521, 0.00016726016474422067, 0.00024351655156351626, 0.0001932914019562304, 0.00016961756045930088, 0.00014065603318158537, 0.00031669397139921784, 0.00014695993741042912, 0.00024104020849335939, 0.00022919989714864641, 0.00017874727200251073, 0.00031878726440481842, 0.00031898540328256786, 0.00018514142720960081, 0.0002601039013825357, 0.00035320688039064407, 0.00022613511828240007, 0.00021867211034987122, 0.00034792977385222912, 0.00010824261698871851, 0.00016505576786585152, 0.00020449164730962366, 0.00020866876002401114, 0.00018647179240360856, 0.00015794095816090703, 0.00025050094700418413, 0.00014837774506304413, 0.00022481323685497046, 0.00015157062443904579, 0.00020310030959080905, 0.00021560887398663908, 0.00020386226242408156, 0.00025320655549876392, 0.00025047076633200049, 0.00016517967742402107, 0.00014306145021691918, 0.0002022153785219416, 0.00022176084166858345, 0.00022610722226090729, 0.00021440768614411354, 0.0001471998548367992, 0.00017426791600883007, 0.00021197447495069355, 0.00019686715677380562, 0.00023150802007876337, 0.00018758421356324106, 0.000139097377541475, } }; const TfLiteAffineQuantization quant33 = { (TfLiteFloatArray*)&quant33_scale, (TfLiteIntArray*)&g0::quant27_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data34[1*3*3*192] = { /* [0][0][][] */ -96,-57,-31,52,116,127,-19,7,38,-52,-127,127,-10,-127,-33,-38,-3,-122,-20,-44,127,11,-25,127,-35,-11,-105,-64,-84,23,5,-61,-8,-64,16,-4,127,-48,127,16,80,-36,127,9,45,-124,-75,-4,-117,-41,-99,127,-39,24,86,70,-24,-49,127,95,-11,6,-41,121,-65,-68,106,41,-33,-121,-70,-62,-3,100,-125,111,-127,-51,127,30,-99,111,127,23,19,-114,-51,127,-56,-127,-14,-2,-28,20,-52,79,82,15,127,127,-50,-26,76,-46,127,-83,24,51,-53,26,-1,-11,-77,-50,39,-110,-61,117,102,64,127,-11,-72,49,0,48,30,127,127,77,69,8,-8,-77,-91,127,75,-4,-1,77,8,40,-8,23,-86,-11,-75,58,-42,-53,62,-48,127,-127,-43,-97,127,-7,67,31,-18,-106,16,-33,55,8,-127,46,37,107,38,116,-36,-62,-40,-1,9,76,92,32,-103,104,-26,-112,127,17,-2,72,-71,-64,-82,-103, -7,127,-14,127,-77,-35,66,1,115,71,-124,27,40,124,127,-63,127,-23,29,-73,-12,-59,127,-69,81,125,-83,0,3,-58,34,38,-13,-23,88,-34,53,58,10,17,-82,87,127,-101,-90,-85,-11,43,127,23,-14,77,37,12,52,82,127,-62,-68,-69,-106,61,-14,127,-11,-72,53,66,-127,-15,-14,-54,106,-63,75,0,79,-26,-95,-78,20,-56,52,-88,60,-17,-67,-67,-127,-27,20,-67,45,-127,32,43,-60,-7,-9,8,-127,9,127,20,35,125,-53,-125,-5,27,97,37,127,-16,127,17,39,-3,-11,2,-31,-41,23,-56,-35,-39,-58,20,-16,72,-109,-43,-19,38,-73,-6,-67,-44,-26,-4,-33,-59,-32,67,33,44,-112,-88,127,0,44,-4,73,9,-77,-55,-35,21,41,24,-12,-76,8,127,-32,-108,-61,50,-77,29,-86,-20,-23,127,-88,-54,127,-11,-3,127,54,97,53,-42,-52,-77,-44,57,-35,-35,26,69, 5,62,-74,-3,-55,-71,-54,72,-13,69,-8,-28,-125,-24,-38,127,4,-96,-70,-41,-37,45,100,-115,-32,-82,-36,81,-1,-73,47,-26,-17,-67,42,-45,-41,-69,-78,-75,99,-84,33,31,-51,-20,97,40,-60,-41,-72,55,39,127,-7,-12,3,55,72,120,22,39,-68,-9,104,31,127,-91,-11,-107,127,-16,127,37,50,-49,-59,-74,-46,-29,16,-59,-25,-45,10,-38,0,-34,-65,-28,-9,-52,-38,-67,34,54,-15,118,8,81,-15,127,-113,35,75,-9,-44,114,-50,127,48,36,103,-23,-58,-36,26,-54,127,-13,-10,48,66,-108,-127,69,-22,15,12,49,39,-33,-47,-98,-105,0,-108,87,77,127,38,-2,6,127,127,-78,-40,-10,80,115,-83,-26,103,10,24,-70,15,-16,89,56,33,127,-8,-54,-127,-4,40,82,-119,-57,3,-68,54,26,-103,-19,-88,33,-55,-8,-12,-49,83,37,55,-33,-17,35,-29,-62,-69,-27, /* [0][1][][] */ 80,42,-31,3,-99,15,-8,-69,69,121,-82,85,10,24,-5,91,61,127,-53,127,-46,-4,-19,120,-45,-10,30,87,127,-76,127,13,-20,95,8,-21,-33,-127,28,56,127,24,41,-68,-70,70,84,127,108,-48,57,-3,-68,-14,-87,-127,-25,43,-100,-83,84,127,-74,-44,95,-27,26,-38,-12,-116,17,-122,-83,127,-105,21,58,-22,5,127,127,-2,-17,53,9,-6,127,47,-94,-93,53,1,-9,0,-28,72,5,-98,94,-115,-108,53,45,-127,-97,127,127,-20,-127,97,-64,127,-97,127,-82,127,-95,-124,17,112,-29,40,-127,-127,-11,-22,-18,-55,-90,-16,-25,84,127,-100,116,-66,-22,-79,-84,86,-58,-100,-24,-75,119,-127,127,127,14,88,28,127,-92,-86,127,116,-33,127,-28,-97,-11,72,127,-24,-49,-83,-4,-30,71,112,1,-103,6,108,116,-50,39,-6,12,124,-88,-80,-14,127,8,-123,-40,-1,74,64,127,-27, -115,-26,127,25,60,75,7,-91,-54,14,-124,83,-16,-102,60,-12,-28,43,-60,11,62,16,26,-96,-9,95,92,-127,0,-88,0,-44,-54,76,-13,-106,122,-82,-2,91,77,-33,34,-9,27,34,60,-86,-50,-54,-78,-114,127,85,127,-74,18,-89,67,-117,45,-55,127,-48,112,56,-26,36,-99,-24,11,-62,-59,-28,41,-127,24,127,-20,94,-79,1,14,17,127,-43,-13,30,112,41,107,-6,-34,-105,-53,-106,127,-68,15,70,92,-94,-37,-13,-17,-80,-48,-71,-23,-35,29,-34,11,-17,-69,6,16,36,29,1,14,7,-35,-14,65,-55,110,-6,22,-54,127,127,-9,127,55,-19,1,-19,-53,-35,16,127,-68,-44,-18,-81,17,20,-127,127,127,-66,-62,-74,70,46,67,-1,53,24,36,74,-52,85,-120,-24,-66,-127,127,127,65,-127,127,0,23,38,22,-39,-103,-30,127,-127,-18,-38,65,105,127,-69,-127,45,-101,43, 50,-71,7,-19,-127,0,68,81,15,-48,-1,1,127,-64,105,31,-7,-87,127,9,83,-28,-23,4,11,-31,-41,-88,21,-19,6,-65,-34,104,-33,47,26,103,93,23,24,-7,-50,127,-33,123,30,-23,-35,57,127,-14,-76,-49,41,-45,-62,-76,-58,96,-40,-49,-31,-53,-127,127,18,-97,-64,-15,-32,127,-51,-20,127,-24,30,-5,-51,75,-127,28,-35,-94,-39,77,62,-103,-92,-35,-12,73,22,-95,8,127,-1,-127,-13,-59,-45,-80,5,44,-114,-14,-16,111,-11,-11,-37,3,-8,-90,4,46,-127,-127,-11,103,24,127,125,-32,68,-18,119,-62,-72,57,-44,-1,31,-79,127,-15,-12,-24,-100,-124,-91,-65,9,-5,-56,1,77,-19,41,90,17,35,26,-20,115,127,-5,43,44,-30,127,-29,-61,-64,84,-127,19,-53,13,-34,-112,60,-106,63,-19,84,-20,39,16,12,-46,-34,31,34,87,-58,0,-71,-10,-30,113,113, /* [0][2][][] */ -91,56,49,-36,56,-16,-26,-30,-127,96,45,-21,29,22,2,97,62,30,-17,71,-107,127,97,25,127,16,127,15,79,-39,-28,30,-11,71,43,71,-74,-64,-56,127,11,-52,-82,9,-127,73,79,69,68,-18,10,-39,-41,-63,45,42,64,-58,-55,-127,120,14,11,-47,-70,-75,-99,-127,51,65,92,-126,-7,39,68,4,-41,43,-19,-19,84,127,-51,-127,-102,127,-19,-23,-89,-110,127,66,54,-69,23,-6,-46,56,30,-47,-30,-61,6,26,85,-5,53,22,-67,-31,71,25,-56,73,-2,63,-114,-33,48,-127,-11,-6,-10,59,59,-14,28,16,17,61,64,-17,17,45,-83,24,127,-56,127,-121,54,57,127,10,35,120,-41,47,-17,123,-45,-91,-62,-53,-42,68,23,8,19,127,-4,-53,-2,-126,105,-40,-90,-13,3,-96,-13,95,-64,62,127,-37,-21,-3,35,-88,-113,-21,-127,-34,-90,-21,-118,-127,112,-127,-10,127, 127,11,115,36,-29,-23,127,1,31,127,-109,-27,5,-20,-16,84,-103,-80,-50,96,-62,93,-118,-72,122,-104,86,82,-29,127,-38,-16,127,-127,-127,-111,-14,-57,-49,29,-40,8,-36,-78,0,127,-127,14,5,127,89,10,69,83,109,-34,-42,127,-58,-109,127,-45,111,-5,-16,-83,22,11,-27,-77,116,-59,-5,71,20,9,70,101,98,-14,-36,70,-116,-106,-23,32,41,-12,33,26,77,127,127,-44,124,98,-12,44,-22,75,103,-89,-87,-62,-21,29,-41,127,81,15,127,87,26,72,-23,-35,-110,-89,19,11,38,66,-47,-26,63,36,127,66,-36,-24,-11,-81,-42,-102,9,7,-2,-86,28,-127,-55,101,-40,16,-83,0,36,6,70,49,-21,69,-13,26,-69,-68,14,13,127,72,-24,-90,-27,-45,122,73,-105,-26,51,104,-68,-95,34,35,-5,127,-14,1,127,-30,-48,-33,-16,-19,-45,127,-83,-12,-95,-72,-80,117, -39,58,-43,41,-55,-7,38,127,20,111,97,-49,-16,-52,-74,-54,-79,-27,64,-34,80,30,25,35,-69,-127,14,83,67,-27,12,127,-69,23,-77,127,87,-67,41,-40,-52,127,-75,26,-59,-67,21,36,22,11,72,52,-61,76,-29,5,-8,-41,-23,-19,-58,-6,80,-114,24,-58,-23,-28,6,-127,-23,-107,30,-112,-93,-83,52,92,106,117,-36,28,-66,-107,25,9,49,98,3,-23,-21,25,-40,-15,-127,-80,19,-20,20,-42,-64,-102,-17,-24,116,14,-43,-101,58,-33,-23,75,111,-79,-7,9,43,-100,-20,-88,-29,-47,-32,-80,24,127,-110,-23,23,-127,-63,-13,7,4,-94,53,66,-127,-80,-38,127,-37,-31,-17,-75,-35,109,25,31,-104,21,-65,-4,12,-31,103,-50,18,-44,-78,46,-41,-82,7,-37,-87,11,49,22,13,127,-25,72,-76,-28,78,-34,127,-25,-44,-44,-37,-39,-83,4,-64,52,-1,-5,71,93,-60, }; const TfArray<192, float> quant34_scale = { 192, { 0.00687009422108531, 0.010633265599608421, 0.0077998396009206772, 0.0094451894983649254, 0.0084010176360607147, 0.010273942723870277, 0.0097457235679030418, 0.0061808391474187374, 0.011166904121637344, 0.00584804592654109, 0.0039661619812250137, 0.010105602443218231, 0.011989574879407883, 0.01049162819981575, 0.0081209046766161919, 0.010881524533033371, 0.0083588613197207451, 0.010449687018990517, 0.0109638636931777, 0.0097722737118601799, 0.0054474202916026115, 0.0092004183679819107, 0.0073346942663192749, 0.0058710789307951927, 0.0084399804472923279, 0.0067508406937122345, 0.0086265020072460175, 0.0096897725015878677, 0.014623545110225677, 0.009202093817293644, 0.01328104455024004, 0.010694134049117565, 0.010909291915595531, 0.0084590595215559006, 0.010338719002902508, 0.00615663081407547, 0.0066110990010201931, 0.0067680845968425274, 0.010372521355748177, 0.0070527615025639534, 0.0087054083123803139, 0.010223427787423134, 0.0062118601053953171, 0.011711864732205868, 0.01017865352332592, 0.0056320610456168652, 0.0083932578563690186, 0.010312609374523163, 0.0091375447809696198, 0.01497579924762249, 0.0080170556902885437, 0.0096894325688481331, 0.0090571362525224686, 0.008013053797185421, 0.0099798226729035378, 0.0098574189469218254, 0.01248366292566061, 0.0093470169231295586, 0.007732069119811058, 0.0053963931277394295, 0.0049891960807144642, 0.0099336607381701469, 0.0083161387592554092, 0.0057308906689286232, 0.0093904947862029076, 0.0080399131402373314, 0.0088595570996403694, 0.0082101151347160339, 0.0074736964888870716, 0.0058592283166944981, 0.0082864798605442047, 0.0058777444064617157, 0.0081891845911741257, 0.0072457236237823963, 0.0099361883476376534, 0.0093337558209896088, 0.0080828918144106865, 0.0078235352411866188, 0.007794870063662529, 0.007925722748041153, 0.0085875764489173889, 0.0075519680976867676, 0.0071338210254907608, 0.0069031212478876114, 0.0059074349701404572, 0.010883607901632786, 0.012170621193945408, 0.010475383140146732, 0.0070654083974659443, 0.0065813357941806316, 0.0069649452343583107, 0.0097082322463393211, 0.011168787255883217, 0.0063306954689323902, 0.011419531889259815, 0.0056569138541817665, 0.010891459882259369, 0.0076699880883097649, 0.0086461585015058517, 0.0091505702584981918, 0.0075953425839543343, 0.0066351001150906086, 0.010285665281116962, 0.012433663010597229, 0.0081482762470841408, 0.010928811505436897, 0.0082893231883645058, 0.0065910792909562588, 0.0097944187000393867, 0.012525477446615696, 0.0074884439818561077, 0.0092728296294808388, 0.0057552652433514595, 0.0061758607625961304, 0.0098791271448135376, 0.011075309477746487, 0.0071159279905259609, 0.0057989242486655712, 0.011441169306635857, 0.0090199029073119164, 0.014487323351204395, 0.0088594714179635048, 0.0056832870468497276, 0.0088241929188370705, 0.010704584419727325, 0.0089846141636371613, 0.0076050250791013241, 0.010507150553166866, 0.00810269545763731, 0.009208296425640583, 0.010712175630033016, 0.0093863336369395256, 0.013429812155663967, 0.0068960604257881641, 0.0087129175662994385, 0.01276838593184948, 0.0097628552466630936, 0.010887308046221733, 0.011332545429468155, 0.0059608765877783298, 0.013130423612892628, 0.012867994606494904, 0.011255037970840931, 0.0095743825659155846, 0.0088634183630347252, 0.01263971533626318, 0.0071085565723478794, 0.010349453426897526, 0.0082148844376206398, 0.007208745926618576, 0.0059778811410069466, 0.013459493406116962, 0.0062457975000143051, 0.010244208388030529, 0.0097409952431917191, 0.0075967591255903244, 0.013548457995057106, 0.013556879945099354, 0.0078685106709599495, 0.011054416187107563, 0.015011291950941086, 0.0096107423305511475, 0.0092935645952820778, 0.014787015505135059, 0.0046003111638128757, 0.0070148701779544353, 0.0086908945813775063, 0.0088684223592281342, 0.0079250512644648552, 0.0067124906927347183, 0.010646290145814419, 0.0063060540705919266, 0.009554562158882618, 0.0064417514950037003, 0.0086317630484700203, 0.0091633768752217293, 0.0086641460657119751, 0.010761278681457043, 0.010645006783306599, 0.0070201358757913113, 0.006080111488699913, 0.0085941534489393234, 0.0094248354434967041, 0.009609556756913662, 0.0091123264282941818, 0.0062559936195611954, 0.0074063860811293125, 0.0090089151635766029, 0.0083668539300560951, 0.0098390905186533928, 0.0079723289236426353, 0.0059116384945809841, } }; const TfLiteAffineQuantization quant34 = { (TfLiteFloatArray*)&quant34_scale, (TfLiteIntArray*)&g0::quant27_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data35[192] = { 1270, 360, 146, 336, 517, 497, 342, 153, -649, -109, -81, -212, 1022, -351, -54, 35, 903, -1779, -641, -407, -204, 1154, -122, -305, -258, 1079, -429, 1483, -358, -268, 499, 1066, 326, 3684, 1004, 812, 878, 748, -68, 326, 114, 355, -233, -1379, 1573, 4131, 3352, 534, -1250, -1081, 94, 1265, -287, -153, -1019, 2301, -676, 378, 5, 1398, -339, 382, -130, 1010, 1386, -796, 1196, 531, 1126, 961, 29, 642, 1708, 672, -562, 1335, 66, -636, 740, -175, -1275, 305, 604, 1018, 639, -291, -185, 1754, 2375, 1003, 34, -235, 1684, 400, 629, 954, -320, 895, 506, -369, -351, 55, 440, 336, 1558, 1107, -188, 1099, 900, -1223, -151, 150, 753, 104, 1999, 334, 470, 1089, 106, 853, 749, 1547, 292, 999, -1139, 1262, -1361, 173, 705, 504, -307, 703, -126, -370, 1633, 1223, 147, 1040, 590, 775, -305, -2114, 70, 1195, -944, 462, 439, -122, 1199, -488, 934, 846, 85, 2003, 845, -637, -266, 1552, -133, 421, 302, 1472, -5, -1635, 666, 673, 1351, 17, -764, -177, -952, 1284, 31, 632, -965, -412, -389, 1008, 920, 436, 640, -165, 1617, 897, 105, 1365, 397, 757, -2512, 193, 1348, 397, }; const TfArray<192, float> quant35_scale = { 192, { 0.00014714602730236948, 0.0001629204343771562, 0.00024628781829960644, 0.00022507336689159274, 0.00021929173090029508, 0.00016718926781322807, 0.00013964922982268035, 0.00023445974511560053, 0.00015031799557618797, 0.00020224647596478462, 0.00013949032290838659, 0.00022673675266560167, 0.00013601130922324955, 0.00012692270684055984, 0.00020953259081579745, 0.00014897504297550768, 0.0001733164390316233, 0.00011342777725076303, 0.00015828605683054775, 0.00021714068134315312, 0.00016616439097560942, 0.00019691670604515821, 0.0001596116489963606, 0.00015930905647110194, 0.00012801229604519904, 0.00012213479203637689, 0.00016550648433621973, 0.000142407909152098, 0.00015739513037260622, 0.00019684607104863971, 0.00018215100863017142, 0.00017436889174859971, 0.00019524441449902952, 0.0001018149487208575, 0.00012754094495903701, 0.0001469360722694546, 0.00017106106679420918, 0.00012458505807444453, 0.00015033103409223258, 0.00020296515140216798, 0.00023815350141376257, 0.00012434138625394553, 0.00014188163913786411, 0.000123067875392735, 0.0001582436088938266, 7.8874123573768884e-05, 0.00010580826346995309, 0.00016882632917258888, 0.00015996038564480841, 0.00011442851973697543, 0.0001513460447313264, 0.00012577103916555643, 0.00017748969548847526, 0.00017324228247161955, 0.00014753102732356638, 0.00010355837002862245, 0.00017746056255418807, 0.00018580553296487778, 0.00016110509750433266, 0.00015504937618970871, 0.00016687320021446794, 0.00014203845057636499, 0.00018098161672241986, 0.00020692210819106549, 0.00016667954332660884, 0.00013137463247403502, 0.00016893434803932905, 0.00016624666750431061, 0.00014926861331332475, 0.00010389338422100991, 0.00015357350639533252, 0.00012816654634661973, 0.00013288849731907248, 0.00017211533850058913, 0.00015048957720864564, 0.00014892546460032463, 0.00019222832634113729, 0.00014220894081518054, 0.00017161275900434703, 0.00016839300224091858, 0.00015213221195153892, 0.0001696524559520185, 0.00019802605675067753, 0.0001430509437341243, 0.00034048574161715806, 0.00010422784544061869, 0.00017054508498404175, 0.00014615415420848876, 0.00010278358240611851, 0.0001615859946468845, 0.00015491388330701739, 0.00020431364828255028, 0.00012882408918812871, 0.0002222709299530834, 0.00012651328870560974, 0.00023133246577344835, 0.00018548138905316591, 0.00012369785690680146, 0.00012904002505820245, 0.0001497494668001309, 0.00015341822290793061, 0.00018435578385833651, 0.00014995686069596559, 0.00014025728160049766, 0.00017494786879979074, 0.00020955003856215626, 0.00017011922318488359, 9.8853168310597539e-05, 0.00014893908519297838, 0.00015368843742180616, 0.00014462185208685696, 0.00014822144294157624, 0.00015032044029794633, 0.00021112307149451226, 0.00015243839879985899, 0.00020021713862661272, 0.00014464143896475434, 0.00014220882439985871, 0.00015219772467389703, 0.00014893575280439109, 0.00016181696264538914, 0.00014384281530510634, 0.0002279948239447549, 0.000153768589370884, 0.00016528513515368104, 0.00012316695938352495, 0.00013097301416564733, 0.00014194240793585777, 0.00018121236644219607, 0.00014438963262364268, 0.00018460878345649689, 0.0002121245488524437, 0.00020225520711392164, 0.00018934339459519833, 0.00011126178287668154, 0.00013420575123745948, 0.00015130008978303522, 0.00014059306704439223, 0.00016105652321130037, 0.00014189074863679707, 0.00010476939496584237, 0.00011304429062874988, 0.00018383009592071176, 0.00013027613749727607, 0.00012582098133862019, 0.00012628453259821981, 0.00021253015438560396, 0.0001866935781436041, 0.00015682974481023848, 0.00020215478434693068, 0.0001718836574582383, 0.00011475208157207817, 0.00015084273763932288, 0.00010289922647643834, 0.00019296458049211651, 0.00020638990099541843, 0.00017534884682390839, 0.00013280434359330684, 0.00019080002675764263, 0.0001121071181842126, 0.00012407224858179688, 0.00016195754869841039, 0.00014457812358159572, 0.0001966120908036828, 0.00024259460042230785, 0.00015162961790338159, 0.00015659345081076026, 0.00015206291573122144, 0.00016286541358567774, 0.00019673792121466249, 0.00010690400813473389, 0.0001434339937986806, 0.00014882911636959761, 0.00015675196482334286, 0.00014911466860212386, 0.00019625104323495179, 0.00019099791825283319, 0.00012540703755803406, 0.00010286817996529862, 0.00020006744307465851, 0.00019772871746681631, 0.0001772347604855895, 0.00012777946540154517, 0.00019491407147143036, 0.0001759493607096374, 0.00011200963490409777, 0.0001621286355657503, 0.00019422230252530426, 9.8132462881039828e-05, 0.00017345194646622986, 0.00014443008694797754, 0.00021614860452245921, } }; const TfLiteAffineQuantization quant35 = { (TfLiteFloatArray*)&quant35_scale, (TfLiteIntArray*)&g0::quant27_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data36[192*1*1*32] = { /* [0][0][][] */ 82,-13,-63,80,-40,23,-49,123,-25,42,-48,9,-10,-14,-13,-64,-68,89,-19,-86,-30,79,0,63,-93,-12,-51,68,59,24,-41,-127, /* [1][0][][] */ 18,21,12,-60,-86,-127,-48,23,-102,-39,69,78,-24,3,70,-7,-10,-34,27,23,-29,8,-17,-52,-36,-20,-42,-6,39,-55,15,-14, /* [2][0][][] */ -52,-22,27,-8,-41,-63,-63,-30,-47,-20,-73,64,-10,-127,-32,-29,-12,42,-1,-15,-44,-39,-62,-4,-26,-23,1,14,5,7,50,-54, /* [3][0][][] */ 27,-4,-30,-2,-15,95,-70,30,-40,37,127,44,43,27,21,35,17,-34,32,-11,-64,-30,3,23,17,-43,-1,79,31,-11,49,34, /* [4][0][][] */ 14,-81,-127,7,-4,-32,66,-22,-41,39,29,-26,-4,19,-62,-15,-25,-62,20,-9,-30,21,8,-10,-31,26,45,94,15,6,-17,26, /* [5][0][][] */ 6,42,48,-63,29,69,-127,-13,113,74,-75,-71,36,38,-51,18,-88,34,51,-99,12,-94,-31,41,47,-27,-97,10,36,-3,-1,26, /* [6][0][][] */ 47,-22,79,-63,-84,96,-22,-63,22,93,-33,13,-37,57,39,127,103,-68,97,-34,117,59,-4,82,-43,-32,30,28,64,-76,-43,-23, /* [7][0][][] */ -2,-86,3,41,4,12,53,-34,5,-59,14,-2,-6,-38,36,65,6,-19,-53,35,-69,21,-18,-12,28,-52,-34,-7,-114,9,-127,-51, /* [8][0][][] */ -32,22,-8,-127,96,-55,-84,11,31,50,-30,-2,-31,16,63,-102,-26,86,3,-33,-23,-23,69,1,11,71,2,29,-95,-59,-91,-5, /* [9][0][][] */ 26,-64,-63,23,14,-95,-27,-57,77,26,61,53,-33,-38,-20,29,-5,-35,-51,-29,28,-14,-60,52,33,127,-1,-30,-48,-13,41,-107, /* [10][0][][] */ 126,-3,2,-23,49,-72,28,-110,-74,27,45,-52,-78,99,41,-26,-48,-83,110,119,-111,102,60,46,-12,-51,-57,17,-32,-127,-56,13, /* [11][0][][] */ -46,24,-23,-14,-5,6,-49,-70,-25,-34,10,-30,-88,5,23,-24,-80,127,-4,-5,-33,-35,10,-24,-17,-23,8,-44,24,-33,27,7, /* [12][0][][] */ -45,-5,-40,-108,84,-6,-22,-60,-36,-45,79,40,-10,-30,13,71,25,-78,32,-19,-34,-21,67,-27,-55,-127,13,-3,-40,121,-16,-42, /* [13][0][][] */ -56,4,91,-82,-95,-1,46,-22,-127,-79,36,-25,86,67,59,-86,45,-18,23,10,41,-114,55,-65,-34,69,36,-39,-66,74,55,3, /* [14][0][][] */ 73,57,34,30,30,-85,-11,42,-19,-50,38,-74,42,-28,-127,45,45,68,49,-9,-19,72,-52,-44,-91,26,-57,27,36,61,79,-18, /* [15][0][][] */ 16,-65,-59,-71,-2,-28,66,102,18,12,-3,112,-49,-81,85,-14,-13,-4,0,-127,11,-38,-43,-70,-102,-27,66,21,6,41,-70,-28, /* [16][0][][] */ -41,-127,84,9,75,40,100,73,-116,12,-7,-13,-81,69,32,27,-66,-52,-28,-71,44,31,-81,54,-3,-7,-17,14,5,8,-17,2, /* [17][0][][] */ -77,61,-42,-100,97,-37,-1,38,50,-30,-57,2,-66,-60,-123,-43,-30,-10,-29,38,24,35,-16,33,127,-99,-28,-19,78,-6,53,42, /* [18][0][][] */ -43,95,82,-59,-29,61,-24,-32,-27,-12,40,-5,-76,4,44,-96,-89,39,20,-116,-23,127,-28,15,88,9,98,36,-95,-78,-62,34, /* [19][0][][] */ -127,-19,2,-61,25,-48,-82,37,36,24,-36,-25,-9,-68,-5,14,-2,61,-6,-26,-63,-5,-31,-42,33,-11,-25,15,-42,-29,48,14, /* [20][0][][] */ 36,23,102,56,-36,-21,-38,9,-81,-42,-114,74,-42,-23,-27,64,-3,-26,25,46,-40,46,-35,49,102,44,4,69,42,-51,-47,-127, /* [21][0][][] */ -42,9,3,-35,-7,-43,5,-71,33,17,-39,-12,-13,-9,17,3,36,53,6,8,2,21,15,-18,102,-14,28,-127,57,11,-2,44, /* [22][0][][] */ -12,-30,44,13,77,-72,-42,39,51,21,57,22,37,-12,-58,4,-15,25,-10,23,-19,30,84,-81,-3,-120,22,-84,66,-119,-57,-127, /* [23][0][][] */ 21,30,7,-72,49,-10,56,4,15,-111,68,-41,-41,80,-80,49,-46,41,-127,-44,72,34,-38,-27,-37,83,6,5,26,99,6,-75, /* [24][0][][] */ 53,40,11,-104,40,-90,76,-57,53,12,115,55,20,89,-127,19,-1,33,94,70,-64,-44,89,-111,54,52,80,67,62,-83,45,46, /* [25][0][][] */ 30,57,19,7,84,80,127,-9,-115,-7,9,72,-38,-25,0,-103,-96,19,-55,-57,28,42,-57,-72,-32,82,-21,-40,40,-9,116,85, /* [26][0][][] */ -2,-52,2,-87,-74,-69,-51,57,-25,118,-25,-30,90,-53,-6,14,17,-6,32,-127,15,-6,24,32,37,-23,-25,8,23,34,61,65, /* [27][0][][] */ 23,9,-26,-48,-16,32,-19,18,-14,-50,21,63,-47,81,-54,14,11,-56,3,-7,-5,-41,-16,28,48,127,59,-23,-3,112,-19,-54, /* [28][0][][] */ -30,7,40,-4,55,17,34,-17,-60,-5,65,14,-43,-32,127,36,-83,103,27,20,76,-7,-72,-16,-19,6,90,-13,-9,-119,-42,17, /* [29][0][][] */ -19,-25,107,27,-11,-48,-32,-5,63,-33,-68,-17,-37,19,87,31,12,27,-127,45,-20,-41,32,88,46,-13,26,-52,-17,31,-42,-8, /* [30][0][][] */ -51,-30,51,-11,58,127,43,-15,62,60,-8,-53,11,16,90,-2,21,74,81,44,-56,-26,-1,-25,23,90,31,30,-30,21,26,113, /* [31][0][][] */ -15,28,32,31,-9,-39,-20,10,38,48,-90,-42,-31,127,65,-48,-5,-35,12,14,-79,-57,-73,58,-18,101,-30,1,-47,-23,72,4, /* [32][0][][] */ -27,15,-34,59,-127,-22,8,6,35,-55,84,-25,-49,37,30,-4,-20,-27,-76,65,79,60,-41,5,-20,8,-32,3,28,77,8,-65, /* [33][0][][] */ -58,-21,-93,84,88,65,-3,-125,90,74,-64,-22,65,19,77,127,-13,-76,70,74,102,23,-19,108,-55,43,9,-9,104,-82,-27,123, /* [34][0][][] */ 29,127,56,-50,91,47,-81,-57,-39,-104,22,28,14,7,16,101,17,29,56,-60,121,17,35,42,16,91,63,19,27,-121,-12,15, /* [35][0][][] */ 27,45,-43,11,-50,43,-47,66,-80,35,17,71,-47,29,48,91,43,20,76,-17,-13,-45,38,63,127,22,-18,51,-14,74,-8,-114, /* [36][0][][] */ 46,-127,34,51,4,55,-73,-59,74,53,68,23,66,-63,-11,-37,-25,-62,39,63,98,56,-45,21,20,-44,44,-62,12,-109,-27,-65, /* [37][0][][] */ -88,127,-5,-83,73,34,-113,61,-28,-54,107,-20,-87,36,47,81,88,-1,-91,-52,0,16,61,93,-21,5,-26,22,122,-91,-110,68, /* [38][0][][] */ 19,-90,-6,-8,-44,-58,16,-37,23,14,0,-24,-11,73,67,85,-12,0,43,-64,86,4,-102,35,66,-17,-23,12,11,-84,127,1, /* [39][0][][] */ -20,-127,-22,-31,-26,-6,-13,-23,-14,7,38,63,-111,-53,70,48,-12,8,70,56,-90,-36,16,-6,-33,40,-42,2,38,-25,-16,-41, /* [40][0][][] */ -127,-35,31,-8,40,-54,-27,-31,39,-6,0,20,-20,3,34,42,-38,53,2,-43,-12,61,-43,3,-6,-33,-5,-3,-5,13,-6,20, /* [41][0][][] */ 71,7,-61,-33,44,52,-45,117,14,-50,54,76,-70,37,29,-6,50,100,68,-89,108,-46,-110,97,118,127,77,-23,35,36,-88,50, /* [42][0][][] */ 24,59,31,49,76,-90,-113,-34,-37,-47,-68,-59,12,15,-20,20,127,-8,9,-45,-47,-96,47,105,30,83,-20,43,15,-8,-37,-7, /* [43][0][][] */ -11,-7,59,64,51,-34,90,-126,127,72,76,75,28,-95,-2,-27,62,-117,90,36,-47,-6,4,43,22,-105,-91,-59,-53,-101,90,-12, /* [44][0][][] */ -27,-6,-27,21,-78,-110,22,-100,-52,-5,17,23,-25,69,-36,47,9,63,-37,-21,25,-50,-10,-2,-11,-75,-45,9,-34,15,34,127, /* [45][0][][] */ -16,-53,-89,57,102,18,-124,68,-43,-80,-35,115,6,-45,-101,110,24,-127,-51,26,-73,121,43,-73,-10,11,30,126,28,76,-24,38, /* [46][0][][] */ -14,-69,-101,51,12,90,-88,12,-7,-95,14,114,-51,15,-25,-123,-112,-83,20,-58,-63,78,50,7,-8,-9,92,127,1,107,-34,-44, /* [47][0][][] */ -12,-41,-101,-52,24,7,91,39,-80,22,9,27,-60,-90,73,-127,31,10,-83,31,44,-43,41,-61,-43,30,-30,36,66,-51,-33,-3, /* [48][0][][] */ -127,-16,51,-36,-41,0,26,48,-17,53,27,-39,-39,5,-38,29,-17,22,15,28,-51,-44,-97,57,-55,-7,-5,-45,54,-84,68,-45, /* [49][0][][] */ -10,-65,16,15,-32,-33,7,15,60,-21,-127,-2,-59,-81,-16,-40,60,-66,-9,48,107,-19,-100,24,27,22,-47,-14,-4,86,106,74, /* [50][0][][] */ -37,18,104,-15,55,-42,-4,17,16,84,-3,-44,-117,-34,71,-43,13,59,-93,1,9,-57,-40,-87,37,1,16,-53,-127,-97,-19,-69, /* [51][0][][] */ 93,26,74,127,-48,50,5,-76,-70,96,52,95,12,52,16,-66,-62,70,35,-34,20,0,-83,70,-11,-63,4,-104,-33,-12,8,10, /* [52][0][][] */ -22,-70,25,-72,-41,-14,2,34,51,80,-51,-21,63,-26,-6,-127,-89,13,-21,-4,66,-51,96,-111,-30,-26,-43,44,32,55,-19,83, /* [53][0][][] */ -19,-84,77,21,79,60,102,69,19,-49,47,64,72,51,-69,35,-87,49,-33,-41,-44,-78,57,-38,-32,-59,-16,-54,127,-45,-62,63, /* [54][0][][] */ -64,65,7,-10,42,-78,127,-115,18,-57,44,33,-23,64,-42,-100,35,84,97,-100,8,-24,-26,21,37,-22,21,4,-64,-18,23,-1, /* [55][0][][] */ -26,8,-71,90,90,50,-127,-7,8,-48,70,28,104,45,-107,78,-3,-63,-86,-36,-58,1,-37,-11,59,-70,-81,79,-49,12,-16,-15, /* [56][0][][] */ -88,6,32,-12,127,58,-15,36,-29,67,30,-33,68,-9,56,-64,-38,8,4,41,28,-45,49,34,-21,-122,39,4,89,40,10,-42, /* [57][0][][] */ -16,23,1,-48,32,127,-30,-69,-5,-17,24,35,37,22,-28,-36,-50,-20,72,-22,-7,-61,56,3,-33,62,95,74,14,-49,67,15, /* [58][0][][] */ -85,25,-29,-79,-27,59,-57,51,37,4,-100,23,-16,67,91,44,-73,76,-92,14,-38,-127,15,34,-13,98,21,69,67,-3,69,-58, /* [59][0][][] */ 9,102,-17,42,21,19,22,-80,16,14,-65,-20,-23,8,38,12,37,63,70,38,-70,-22,-36,68,31,24,101,-127,-54,-50,40,69, /* [60][0][][] */ -59,-68,109,47,-24,71,-32,-74,127,57,-73,-19,-31,29,-61,75,36,-54,113,-26,70,-55,47,17,100,102,-114,-85,38,1,105,-23, /* [61][0][][] */ -12,32,97,75,-32,-65,52,103,-96,73,-1,74,-62,-105,-65,-63,7,73,-14,118,-5,20,81,-127,23,69,-65,56,-79,81,-51,-8, /* [62][0][][] */ -38,-63,-28,-43,1,-11,50,49,-127,-48,15,-32,45,-21,26,62,-36,25,-6,-20,113,-96,58,-18,-70,-40,-26,11,72,-43,-100,53, /* [63][0][][] */ 78,-25,-78,23,-51,83,-13,69,-36,37,20,11,-41,14,64,127,69,15,-55,48,-71,23,2,89,29,25,-5,5,15,-19,68,-4, /* [64][0][][] */ -16,-5,53,-31,124,-83,13,-27,-29,54,57,19,3,2,-79,-59,6,37,-25,48,-39,-11,13,-118,-19,41,-3,-35,-23,0,-32,127, /* [65][0][][] */ -43,-48,-62,-83,57,-55,68,37,93,-22,13,63,-53,28,-65,55,34,-61,-67,111,13,-24,-15,53,33,32,30,-39,-48,127,61,-26, /* [66][0][][] */ 6,85,-86,13,127,-7,75,34,-10,-4,23,-10,91,-66,0,28,37,28,0,62,56,-2,-71,-12,12,17,23,31,31,-34,51,-47, /* [67][0][][] */ -8,-122,-37,-46,-12,66,45,32,-38,-26,31,14,-23,-7,-61,27,-30,10,-9,93,31,-12,-127,34,83,-10,-14,78,40,100,-19,14, /* [68][0][][] */ 40,60,10,9,-88,59,-62,-3,-27,-51,74,-62,-74,94,83,-8,28,-2,127,-12,-46,85,25,-27,81,36,51,-111,102,-31,-6,16, /* [69][0][][] */ -32,12,41,52,-5,-32,-121,-65,36,-28,82,-33,105,56,-120,80,40,-74,106,63,-48,-26,-18,-74,44,127,19,19,-53,44,-99,-69, /* [70][0][][] */ 127,117,29,22,-10,-10,-89,29,1,10,36,12,-42,58,36,23,-73,16,-54,-30,2,-71,111,-64,-40,7,-71,-52,-83,-25,-2,27, /* [71][0][][] */ 58,62,32,108,68,13,111,-36,117,41,-70,7,-81,-67,12,85,-30,26,29,-7,101,17,-72,-108,-126,-32,17,20,-2,-59,116,-127, /* [72][0][][] */ 64,-66,84,-11,25,55,25,-55,14,-106,12,-94,124,21,2,1,119,2,127,-63,-55,-57,7,6,91,-91,-62,51,90,-59,-75,-84, /* [73][0][][] */ 37,-127,-14,-45,-4,-9,90,-11,46,27,7,1,-45,-69,42,23,104,-55,38,-25,-6,51,32,-51,89,-26,-105,4,107,38,46,44, /* [74][0][][] */ -9,-101,43,19,10,-2,-41,-53,-127,56,44,-50,109,-20,49,57,56,70,-49,-71,26,60,-9,10,-86,-56,12,-48,41,51,0,67, /* [75][0][][] */ 21,-33,79,-60,24,63,-11,-127,-36,-33,-46,25,4,54,-7,-78,43,-50,-83,-66,-56,-9,24,-34,47,-30,46,-121,51,88,18,49, /* [76][0][][] */ -24,-74,-127,-27,44,67,11,28,35,-28,16,-55,-54,-14,-37,76,10,13,52,39,-40,-67,1,-122,83,33,15,-4,-76,47,19,-38, /* [77][0][][] */ -69,32,33,-96,-26,-72,-5,-127,-50,56,-87,-82,61,-31,-22,-48,9,15,55,67,-8,-35,-81,54,20,103,88,11,-45,48,35,-15, /* [78][0][][] */ 43,25,35,-47,67,57,-48,79,8,11,-60,56,-81,-54,-127,-33,-70,14,-16,49,-41,-18,-82,-15,4,-29,15,-11,45,-16,-31,-58, /* [79][0][][] */ 29,68,30,-29,43,80,-96,-84,127,-17,71,-120,-14,28,-53,-37,-14,-45,-5,-11,6,-60,50,124,-100,80,78,7,-36,31,-4,84, /* [80][0][][] */ -95,40,77,13,17,-30,-66,-7,-32,-14,-19,7,46,30,-4,38,-66,-127,-29,74,60,-47,10,-49,-11,-23,55,-44,-40,-3,-41,-37, /* [81][0][][] */ -44,-108,-70,106,49,46,-2,33,8,6,68,-76,33,55,-32,12,-64,98,-74,-17,-77,-6,-70,-29,35,-41,8,-21,33,37,60,127, /* [82][0][][] */ 25,-51,-21,-9,31,-127,-7,-82,-26,-9,-47,21,-14,8,-46,-18,9,61,-96,2,9,-65,-38,69,80,-26,-26,-44,42,21,34,-12, /* [83][0][][] */ 16,-46,-7,-122,51,17,-7,78,34,91,-23,-22,-42,15,-48,127,1,68,86,-51,-21,-32,-46,-35,0,-28,-66,71,-90,43,-90,24, /* [84][0][][] */ 39,-3,-36,23,-72,37,23,45,39,-10,10,-4,23,-4,52,54,-5,3,-4,-4,8,-13,20,19,10,13,8,127,39,70,18,-11, /* [85][0][][] */ -72,-25,-92,108,40,10,-119,-109,-106,48,-9,-38,-37,-126,48,14,59,59,65,-58,87,-28,-59,-46,-57,-93,34,-68,-102,-17,-122,127, /* [86][0][][] */ 127,-1,6,14,-8,-34,72,9,-45,47,16,1,12,-85,-6,30,-20,22,36,-104,77,9,-83,45,25,36,60,-3,-71,103,12,-4, /* [87][0][][] */ 74,13,-62,-46,-40,40,69,-63,1,-79,30,-10,-54,-52,-52,-4,-22,-71,63,15,-2,67,53,80,7,16,127,45,8,23,-20,4, /* [88][0][][] */ 47,82,-76,49,-73,48,-79,106,-83,27,9,-94,50,-127,-99,64,-127,96,-27,-20,62,-13,-46,-17,75,-4,67,-38,90,-38,74,-49, /* [89][0][][] */ 27,110,-48,-33,13,-18,-31,30,2,17,70,-18,-33,63,24,56,-9,18,-91,83,-120,127,-83,35,-48,13,-62,13,19,-81,10,-42, /* [90][0][][] */ 4,12,43,4,-41,85,-127,-60,-47,-51,1,-16,9,9,53,-23,8,-3,7,-17,53,41,32,14,70,67,79,-26,-41,95,80,-31, /* [91][0][][] */ 23,-44,85,43,31,12,37,7,-15,10,-19,1,-13,-127,-5,18,36,5,26,-45,-12,27,-24,35,107,39,4,50,74,76,15,-34, /* [92][0][][] */ -22,6,5,-1,-108,32,-90,-96,-120,87,127,-89,-122,-49,80,8,68,-35,36,55,40,-13,63,59,-41,-17,24,73,17,-66,-11,-109, /* [93][0][][] */ -52,-15,-52,60,-41,10,-30,-27,-21,-43,7,6,35,45,-30,-24,55,-2,127,-4,-6,26,-33,-30,-83,-47,28,-33,32,20,-77,-7, /* [94][0][][] */ -39,12,-1,65,-106,22,96,29,98,127,-55,85,12,-77,-6,2,21,54,77,32,-3,-35,-81,32,65,-35,10,-81,3,-113,-24,-21, /* [95][0][][] */ 15,-86,-45,-13,-7,47,-31,-63,-27,20,-35,72,20,33,-21,-32,-4,-28,40,62,-39,5,20,-3,-12,-127,-69,-3,-37,-26,12,-44, /* [96][0][][] */ 71,-75,-14,66,-45,-35,48,16,-3,31,-10,-26,-3,99,36,46,37,-40,22,9,51,-28,37,127,12,99,-44,10,33,11,15,-33, /* [97][0][][] */ 127,41,40,104,-35,33,-121,-96,-60,12,114,95,-10,23,-80,2,10,-61,33,89,-19,51,-72,-21,49,-120,124,21,-68,-30,-55,54, /* [98][0][][] */ 64,-14,-65,88,-73,-65,33,127,-39,-113,42,34,-69,-55,-125,63,74,-17,-50,110,82,3,39,99,37,30,-84,-13,2,54,-10,106, /* [99][0][][] */ -19,18,57,-67,9,-127,8,-75,-39,-26,-25,91,-82,10,3,67,104,-42,21,-23,94,-73,84,25,-31,11,30,78,-45,-9,-8,11, /* [100][0][][] */ -14,-59,-29,69,-16,13,1,-65,58,21,-71,-36,-17,-5,-27,94,-36,117,-58,43,60,127,10,36,51,-1,50,3,-104,41,26,-28, /* [101][0][][] */ 20,-3,57,-32,26,-127,0,15,-5,-114,5,-2,-5,30,38,44,-73,-45,8,31,62,-65,20,-18,71,-15,20,106,-17,-57,-29,-81, /* [102][0][][] */ -58,-69,-13,15,17,-36,-49,-79,-37,-57,-56,27,-32,-41,53,-66,-57,-57,-54,-18,32,57,-6,64,6,68,45,-73,-66,-127,44,68, /* [103][0][][] */ 54,47,111,64,45,20,-8,-127,-79,-30,11,77,-68,39,32,40,-12,9,32,-39,75,-88,6,-10,-127,-26,30,56,-28,-36,29,-59, /* [104][0][][] */ 14,-16,-8,38,-29,48,58,18,-5,-90,-14,65,-38,-20,-127,42,1,11,14,40,17,-15,-23,83,31,20,42,-58,-2,-58,35,41, /* [105][0][][] */ -58,-13,11,9,-13,-32,17,3,22,-22,-52,61,-26,-56,53,-22,56,41,-4,-5,7,-100,4,31,11,1,127,32,-35,5,-42,33, /* [106][0][][] */ -55,-55,46,72,-3,-60,-34,-19,34,-33,-95,-45,-96,108,-63,70,52,9,62,60,-18,-30,66,127,-23,-23,96,-99,-92,63,-1,25, /* [107][0][][] */ -18,-14,42,13,50,43,42,80,127,-46,-54,-28,-117,-81,-104,64,77,-2,-63,20,-1,123,10,-103,60,-110,88,52,-34,-17,118,23, /* [108][0][][] */ -18,-27,-28,26,72,1,0,9,2,-6,104,63,30,-110,-41,33,50,84,93,-22,18,-8,53,-115,26,6,68,-85,3,66,-18,127, /* [109][0][][] */ 112,27,-9,32,42,4,-32,-49,69,78,44,-2,83,-60,-73,8,-127,-32,-113,-18,73,-44,73,35,46,111,6,112,40,32,-55,54, /* [110][0][][] */ -42,-87,-127,11,28,24,-18,-8,5,26,52,20,51,73,-47,-56,-29,-65,-21,-84,90,6,-37,71,120,-7,-88,-73,91,43,-84,-57, /* [111][0][][] */ 47,44,12,28,23,77,-53,2,62,116,-5,2,70,-23,-31,53,-65,98,-82,-4,61,-6,-10,35,75,-83,-55,-31,54,127,28,-16, /* [112][0][][] */ -72,51,-70,21,86,-68,-19,-42,-12,25,43,12,41,88,-94,17,-28,-20,12,-19,-64,-8,36,-4,-5,-13,127,109,15,87,-9,-5, /* [113][0][][] */ 23,33,-21,4,127,45,50,-37,-8,-66,-14,19,-9,44,-18,27,4,-11,5,46,23,-30,37,-20,-23,-14,-89,80,25,94,10,-52, /* [114][0][][] */ 3,45,59,-93,26,19,-26,-61,61,-50,-15,-54,-27,1,-84,-35,-14,10,6,-60,-81,36,36,-127,-37,18,39,66,-21,50,28,-60, /* [115][0][][] */ -64,41,19,0,43,49,-24,-57,28,-17,-13,-65,49,-127,39,-38,75,31,72,11,15,-8,-39,6,-78,14,-48,-34,-38,15,61,-38, /* [116][0][][] */ 33,29,-46,-4,79,-81,-127,-106,-97,-74,56,-65,18,-5,96,27,-28,8,7,-45,-14,-29,-21,7,-124,9,-38,63,-42,3,56,-14, /* [117][0][][] */ -8,-14,-17,-1,57,-71,-78,-123,-13,32,-64,-26,115,-9,-45,21,29,-109,93,43,127,-121,34,20,-58,-57,-13,16,61,-31,-76,-87, /* [118][0][][] */ -27,88,72,25,-27,-46,94,-56,-18,46,-14,-6,16,-46,-18,-62,-127,13,-1,-50,-114,-4,18,80,-28,34,-12,-6,7,67,-28,37, /* [119][0][][] */ -6,-6,-62,-76,-65,48,-54,31,127,121,77,7,-56,12,-54,-93,4,70,76,-22,-7,-12,81,109,10,56,100,-29,-21,31,-120,-33, /* [120][0][][] */ -12,-8,-45,19,45,-6,7,32,59,23,7,33,31,-60,17,-47,-127,-101,-74,58,76,-50,-37,-18,37,3,-5,-62,90,-86,18,54, /* [121][0][][] */ 47,-20,76,75,19,127,4,1,40,-37,-43,44,83,-39,3,-29,-61,-97,-53,-58,-113,-11,-19,55,-1,118,26,52,30,-21,13,-20, /* [122][0][][] */ 41,-67,-10,68,-71,-18,-127,96,6,-13,-11,56,-5,3,-71,-25,51,11,-17,3,72,-51,-7,-18,5,-82,-7,60,13,27,61,-66, /* [123][0][][] */ 41,-9,-39,-27,82,-58,-37,31,-55,14,-12,19,57,-62,-49,-24,64,4,32,49,-12,-55,20,88,82,67,-127,69,85,-27,31,-47, /* [124][0][][] */ 20,-16,-15,1,64,53,2,23,36,25,-88,-8,72,35,-34,-55,23,-89,10,-22,127,12,-9,-9,-6,53,84,67,26,61,-46,-15, /* [125][0][][] */ -45,2,-66,-43,-63,91,-36,-70,17,-127,-93,-46,-22,34,89,-37,35,-93,34,11,17,6,79,-52,31,121,53,67,-29,9,14,-21, /* [126][0][][] */ -67,-120,75,4,16,-95,-35,-42,-50,-38,26,24,86,-53,-80,12,127,67,-93,-61,-66,81,-19,15,-81,-46,50,76,-107,18,-26,-22, /* [127][0][][] */ -20,57,-113,-31,127,-14,-12,29,-84,38,-100,-8,-77,3,-99,18,55,-36,-21,-41,-64,-74,11,-10,87,9,-42,73,-78,11,12,-78, /* [128][0][][] */ -62,12,40,127,21,79,-119,-37,81,-91,70,30,-5,59,16,32,-89,-18,93,-74,48,-77,-50,-11,-31,4,-60,88,-14,88,-25,-60, /* [129][0][][] */ -9,45,-30,0,3,47,-23,65,35,-32,113,65,-21,-86,11,-74,-109,-70,66,-99,37,-127,-42,52,-79,114,14,30,-39,57,12,-65, /* [130][0][][] */ 57,-41,10,-21,-35,36,-52,-58,-82,65,10,-22,127,10,55,89,-51,70,70,-72,13,0,-25,-49,-34,-1,-63,-11,13,-16,4,-23, /* [131][0][][] */ 14,-24,35,-19,41,20,-3,-42,93,3,3,-127,8,-33,84,58,29,-31,11,6,-43,-88,-63,-44,112,-49,10,13,-46,-12,-62,29, /* [132][0][][] */ -39,-41,22,-16,30,-5,20,66,-66,-4,-127,89,62,-41,45,-79,-26,31,8,-52,-4,-92,-17,6,1,-20,-5,9,-19,-82,-33,-41, /* [133][0][][] */ -17,31,49,-107,6,-74,3,-10,6,22,29,-31,-42,12,-22,60,52,-25,127,60,4,-100,-71,-8,-19,52,-37,-23,13,-50,-15,18, /* [134][0][][] */ 35,-71,-64,-17,-60,115,-61,-23,44,-59,-25,-127,-41,-46,-21,53,66,-110,-45,-46,64,22,-84,-21,-74,-26,102,-80,16,-48,-71,-87, /* [135][0][][] */ 24,10,62,-46,-83,61,-13,-24,23,53,70,103,27,26,26,-14,-68,61,-29,-49,-127,-70,-29,6,-32,58,12,-2,99,52,55,-103, /* [136][0][][] */ 9,9,19,-3,-28,-95,43,-37,-4,113,-73,-116,-66,-22,97,-42,4,42,-35,-74,-58,-75,-52,-30,127,31,83,77,-74,12,76,-67, /* [137][0][][] */ 68,34,34,12,40,-95,127,-8,15,-18,29,6,-14,-73,-6,-35,17,73,71,44,-37,-72,14,-74,-50,52,-1,51,-1,-60,41,34, /* [138][0][][] */ 20,63,-65,55,28,6,-67,50,-1,29,61,-30,12,-127,-25,21,-49,7,-31,36,-34,57,-59,28,102,-34,-56,-30,19,9,38,-17, /* [139][0][][] */ 53,22,51,-84,-46,25,25,13,1,17,-10,-95,-13,-39,102,54,6,21,78,-55,-28,-127,-79,17,-117,-12,-68,-13,5,-18,101,10, /* [140][0][][] */ -55,-37,-26,-97,-21,-127,85,8,-110,83,124,83,72,29,-86,-114,87,-20,48,81,-46,-82,15,-15,-120,-5,103,6,-27,-22,6,32, /* [141][0][][] */ -56,54,23,9,-59,-70,15,18,43,108,127,66,-36,-77,-58,19,-92,-5,-15,-95,95,15,-34,44,1,-27,-18,-12,-109,57,5,-68, /* [142][0][][] */ -4,-23,41,-66,73,-72,17,-51,-17,47,-78,25,40,-35,18,3,14,-118,81,21,18,119,-45,45,-118,79,-107,-27,-85,-120,13,-127, /* [143][0][][] */ -80,50,82,-127,77,-34,65,-72,-32,-63,20,-19,-67,119,85,8,-68,-20,-45,109,-107,7,121,-2,52,-42,-126,42,-9,17,39,41, /* [144][0][][] */ -127,35,37,11,-82,76,9,-27,-111,-95,-18,-88,12,-11,-10,20,87,-28,-13,31,37,2,13,-11,27,126,48,54,56,-64,-98,59, /* [145][0][][] */ 26,-16,-89,88,-106,40,10,59,115,99,-45,22,0,-69,-4,14,-47,127,21,26,-90,65,20,-91,-32,-27,-37,60,25,-38,-48,91, /* [146][0][][] */ 92,-47,-40,-1,52,-2,-51,59,6,-65,-26,-67,-14,-25,41,96,5,-5,-11,-94,-13,-85,-18,-10,8,127,34,-52,12,-40,73,92, /* [147][0][][] */ 20,-37,-121,-61,40,-71,-121,-127,-18,-39,-51,-63,52,-19,-42,-9,-26,-89,28,-51,25,-14,21,-63,-29,9,-47,-71,-15,9,63,-5, /* [148][0][][] */ -16,-1,31,-31,108,-48,-30,25,0,-51,12,61,-54,127,-17,14,-30,14,-27,19,47,59,7,47,11,94,37,-33,54,10,-17,-78, /* [149][0][][] */ 43,-31,-68,-63,-12,-31,8,13,-7,28,37,-127,-32,31,-2,-55,5,-22,121,-51,-30,-29,63,-17,-52,-25,25,-26,40,-27,-29,34, /* [150][0][][] */ -2,38,127,-31,-96,-67,-56,-21,38,-100,13,19,-16,-59,-30,6,102,-36,117,67,-48,-17,-69,-11,-88,46,-56,-102,16,107,-67,-55, /* [151][0][][] */ 67,111,-80,110,-4,11,-13,-58,27,8,32,27,103,21,-4,-15,-6,-50,106,-89,-118,-127,-38,1,-62,-76,32,100,-61,18,96,30, /* [152][0][][] */ 112,-36,116,53,-17,42,-88,56,-76,-27,-54,53,-40,-49,-68,-33,-11,-68,-38,75,50,-6,-102,-69,121,35,76,-25,16,127,-26,45, /* [153][0][][] */ -107,-110,-6,43,-69,-56,-78,85,98,-72,-45,-5,-102,94,66,104,37,-20,32,-113,95,-127,49,-1,-85,-58,-27,-58,-21,-100,-9,-30, /* [154][0][][] */ -17,-108,3,-25,-38,28,23,38,41,42,30,25,-23,85,5,23,3,55,-16,-21,-3,-41,5,-12,-61,39,46,-17,18,-50,127,54, /* [155][0][][] */ 37,6,-4,30,95,-83,-16,25,-2,-81,7,70,15,-13,-10,24,6,26,-17,-74,-17,-14,-19,66,-36,13,127,-91,61,-11,57,37, /* [156][0][][] */ -18,20,59,-87,-33,13,-26,-23,-18,-62,-12,-35,81,20,-36,8,54,-16,55,-71,47,-54,-64,-52,-127,-8,20,-84,-41,37,-59,45, /* [157][0][][] */ 98,-43,22,113,-7,-72,93,97,-111,-53,-30,31,-70,75,90,-112,-53,49,-97,62,94,52,-11,9,-6,36,17,98,78,127,-43,94, /* [158][0][][] */ -4,-11,127,86,25,-57,18,26,46,-43,-11,46,-37,24,-19,42,-35,32,43,59,-55,-38,48,11,51,67,11,-12,1,32,-21,-72, /* [159][0][][] */ -66,-104,-80,38,63,18,117,3,93,36,61,48,-11,44,-125,-66,-2,78,32,5,-23,85,73,-15,58,-34,10,-127,-31,-114,123,53, /* [160][0][][] */ -62,-15,-73,-101,-26,61,65,57,73,80,47,25,109,-73,17,-5,127,48,45,2,-26,-31,-68,1,-114,-66,-28,10,-115,103,103,-55, /* [161][0][][] */ -1,-12,-52,-34,55,24,6,-39,79,27,28,-9,33,-7,-65,30,8,-12,47,0,-24,14,-59,-29,49,82,12,-21,127,-9,47,28, /* [162][0][][] */ 46,-17,92,-67,-85,33,-29,67,28,-29,32,61,-4,0,73,-32,-37,80,-34,-90,81,-80,-39,43,57,29,-58,-25,127,24,25,-89, /* [163][0][][] */ -19,-44,14,127,8,54,-10,30,-31,16,-28,67,-32,-57,62,-32,30,5,-37,-36,-16,-7,64,-25,9,10,-29,-11,15,-90,23,-20, /* [164][0][][] */ -31,43,89,-76,127,-25,-52,-63,52,14,-29,-48,-14,58,-17,30,-50,29,-6,25,-31,-18,-5,-68,31,77,48,13,-13,-12,73,49, /* [165][0][][] */ 5,7,-53,-74,19,23,-56,34,-45,-12,-68,127,11,31,-111,37,-12,-15,48,-59,-8,-47,-33,-93,-66,-28,-106,75,53,-27,53,-31, /* [166][0][][] */ -127,-42,29,-36,-50,-22,88,14,54,-19,-17,-25,-44,-1,7,-33,-88,52,-5,-1,-24,5,-12,64,13,-41,77,-18,23,-6,16,16, /* [167][0][][] */ -64,49,75,-53,48,44,-30,23,-90,-51,-63,-26,-33,127,-31,5,-10,-45,7,52,79,72,-11,-44,2,-39,-15,57,56,29,7,-66, /* [168][0][][] */ 59,-4,-46,-79,61,40,32,-9,52,0,-27,-10,18,32,-18,38,-87,31,-71,32,39,59,-43,0,39,58,-45,1,48,37,32,127, /* [169][0][][] */ 76,-17,-8,8,50,-61,-17,11,-16,0,-19,-13,-103,-41,40,30,-48,29,-95,-91,7,-127,22,36,11,7,-59,10,-29,-1,-40,-41, /* [170][0][][] */ -25,11,11,19,10,48,-84,12,-99,39,-44,19,-95,126,-70,-127,52,-102,57,16,-94,16,61,-42,-32,36,110,108,4,-10,-1,-46, /* [171][0][][] */ 63,-12,-60,9,62,56,50,108,22,-67,-96,127,9,74,-31,52,-10,34,41,11,35,15,23,-65,31,-25,73,9,42,43,-16,9, /* [172][0][][] */ 82,7,-23,-77,-27,-101,17,6,-63,119,-58,0,-61,87,48,56,3,-1,-48,5,42,-10,-51,90,-31,100,58,-127,-47,42,110,-75, /* [173][0][][] */ 70,89,83,-14,-3,22,40,37,-71,40,5,31,25,18,-45,-20,12,-108,23,4,1,-18,16,58,127,88,-68,88,17,-62,114,-61, /* [174][0][][] */ 40,87,-81,19,-44,-52,30,-1,10,-3,-88,-127,28,-121,106,32,7,-84,-38,46,104,42,-59,65,-72,-62,-78,-65,-44,-27,-31,-57, /* [175][0][][] */ -7,46,127,71,-34,50,-57,-56,44,-19,1,43,11,-66,33,50,-77,63,23,34,20,-35,32,68,-32,-38,27,-11,-40,35,58,16, /* [176][0][][] */ -79,-76,-41,-28,-67,39,11,-45,3,-47,43,-5,37,90,-50,-36,-26,38,27,1,127,103,-26,72,14,16,66,34,-2,-61,-6,-92, /* [177][0][][] */ 15,-39,116,-61,-3,-16,110,19,1,-23,37,-83,72,48,-81,-16,-35,-60,-53,-74,50,56,-75,-80,106,-20,-36,-59,23,32,110,127, /* [178][0][][] */ 17,-24,-52,-90,-70,25,101,-20,94,25,-53,-101,-16,-17,24,-50,-53,44,25,-111,53,-7,-24,78,127,-16,7,97,60,102,74,-108, /* [179][0][][] */ 2,-75,74,-30,-42,-68,75,48,-35,-31,17,-43,-31,25,-39,-20,42,12,20,1,-13,-18,-127,51,15,-55,-12,-51,-60,58,48,-48, /* [180][0][][] */ -2,-38,44,57,11,-49,39,-103,55,16,-23,-40,17,-1,92,-107,-23,-32,-66,40,-37,-52,78,-53,127,18,-3,21,-109,-5,-52,28, /* [181][0][][] */ -71,63,60,-42,-69,-1,-33,-22,-32,5,86,-8,-34,-37,63,-76,17,-10,52,25,-2,-71,64,55,-64,127,-53,21,18,56,16,86, /* [182][0][][] */ 81,108,-93,57,51,52,-21,-32,-2,96,127,-125,10,-113,-66,110,-73,-21,-47,118,-59,-105,-21,78,1,-18,49,12,-28,18,98,-112, /* [183][0][][] */ 16,-106,-20,-5,21,-127,9,76,-3,60,26,-60,-51,-32,64,2,9,-105,33,61,-50,46,-104,-55,-19,51,2,3,8,-21,-46,42, /* [184][0][][] */ 25,-15,-10,71,-34,127,65,13,14,-40,69,-27,-42,-74,51,-58,-11,49,84,-101,12,31,29,-57,39,86,-41,7,-87,27,-58,-35, /* [185][0][][] */ -20,-54,-81,127,38,-81,98,44,120,82,-79,-51,37,79,30,39,46,99,34,120,-17,31,-50,-94,-127,-69,35,-36,-28,113,-64,25, /* [186][0][][] */ 61,-13,-26,7,-54,-22,9,-38,-3,64,-1,-15,33,-40,-79,95,114,-10,-109,10,47,-17,-26,48,-20,-25,-107,-53,20,32,-47,-127, /* [187][0][][] */ 11,68,-43,-11,-19,-84,-127,27,6,32,-13,1,36,-64,-3,109,48,-60,-55,11,-29,28,8,65,-18,-40,1,45,-62,-3,7,19, /* [188][0][][] */ 114,-46,-127,76,-8,0,20,49,19,21,122,39,-53,109,-93,37,-41,54,95,-43,-124,-116,-41,-72,96,108,39,-17,45,29,-36,-20, /* [189][0][][] */ 9,-81,-24,13,15,-61,4,-38,9,-23,36,77,40,11,-31,48,44,-9,-79,-32,10,-127,16,-30,-60,-51,-95,-35,8,-4,27,23, /* [190][0][][] */ 61,-59,46,5,-127,22,49,-7,-44,-5,-10,60,-107,15,111,-73,24,-44,27,68,-40,-32,88,103,84,63,83,-27,-39,-29,-19,-9, /* [191][0][][] */ 16,127,-58,115,-10,-23,0,-31,-8,-85,-10,16,-17,-6,18,12,-25,-1,40,7,35,-9,15,-28,11,64,83,-8,30,77,15,4, }; const TfArray<192, float> quant36_scale = { 192, { 0.0017813730519264936, 0.0019723405130207539, 0.0029815991874784231, 0.0027247737161815166, 0.002654780400916934, 0.0020240196026861668, 0.0016906156670302153, 0.0028384067118167877, 0.0018197734607383609, 0.0024484277237206697, 0.0016886917874217033, 0.0027449110057204962, 0.0016465743537992239, 0.0015365462750196457, 0.0025366346817463636, 0.0018035153625532985, 0.0020981961861252785, 0.0013731746003031731, 0.0019162360113114119, 0.002628739457577467, 0.0020116122905164957, 0.0023839047644287348, 0.0019322838634252548, 0.0019286206224933267, 0.001549737062305212, 0.0014785830862820148, 0.0020036476198583841, 0.0017240126617252827, 0.00190545036457479, 0.0023830495774745941, 0.0022051488049328327, 0.0021109373774379492, 0.0023636596743017435, 0.0012325878487899899, 0.001544030848890543, 0.0017788313562050462, 0.0020708923693746328, 0.0015082464087754488, 0.0018199313199147582, 0.0024571281392127275, 0.0028831239324063063, 0.0015052964445203543, 0.0017176414839923382, 0.0014898792142048478, 0.0019157220376655459, 0.00095486256759613752, 0.0012809315230697393, 0.0020438381470739841, 0.0019365056650713086, 0.0013852897100150585, 0.0018322191899642348, 0.0015226040268316865, 0.0021487183403223753, 0.0020972983911633492, 0.0017860338557511568, 0.0012536939466372132, 0.0021483656018972397, 0.0022493910510092974, 0.0019503637449815869, 0.0018770522437989712, 0.0020201932638883591, 0.0017195399850606918, 0.0021909920033067465, 0.0025050316471606493, 0.0020178488921374083, 0.0015904420288279653, 0.0020451459567993879, 0.002012608340010047, 0.001807069405913353, 0.0012577497400343418, 0.0018591851694509387, 0.0015516043640673161, 0.001608769060112536, 0.002083655446767807, 0.0018218506593257189, 0.0018029151251539588, 0.0023271464742720127, 0.0017216039123013616, 0.0020775711163878441, 0.0020385922398418188, 0.0018417364917695522, 0.0020538393873721361, 0.0023973346687853336, 0.001731797237880528, 0.0041219741106033325, 0.0012617987813428044, 0.0020646457560360432, 0.0017693652771413326, 0.0012443142477422953, 0.0019561855588108301, 0.0018754119519144297, 0.0024734532926231623, 0.0015595648437738419, 0.0026908470317721367, 0.0015315897762775421, 0.0028005472850054502, 0.0022454669233411551, 0.001497505814768374, 0.0015621789498254657, 0.0018128907540813088, 0.0018573052948340774, 0.0022318402770906687, 0.0018154014833271503, 0.001697976840659976, 0.0021179465111345053, 0.0025368458591401577, 0.0020594901870936155, 0.0011967320460826159, 0.0018030800856649876, 0.0018605764489620924, 0.0017508149612694979, 0.0017943921266123652, 0.0018198029138147831, 0.0025558893103152514, 0.0018454433884471655, 0.002423860365524888, 0.0017510520992800593, 0.0017216025153174996, 0.0018425296293571591, 0.0018030396895483136, 0.0019589816220104694, 0.0017413838068023324, 0.0027601413894444704, 0.0018615468870848417, 0.0020009679719805717, 0.0014910786412656307, 0.0015855799429118633, 0.0017183772288262844, 0.0021937855053693056, 0.001748003764078021, 0.0022349031642079353, 0.0025680132675915956, 0.0024485334288328886, 0.0022922209464013577, 0.001346952747553587, 0.0016247160965576768, 0.0018316627247259021, 0.0017020418308675289, 0.0019497757311910391, 0.0017177518457174301, 0.0012683548266068101, 0.0013685320736840367, 0.0022254760842770338, 0.0015771434409543872, 0.0015232086880132556, 0.001528820488601923, 0.0025729236658662558, 0.0022601420059800148, 0.0018986056093126535, 0.0024473178200423717, 0.0020808507688343525, 0.0013892068527638912, 0.0018261260120198131, 0.001245714258402586, 0.0023360596969723701, 0.0024985887575894594, 0.0021228007972240448, 0.0016077504260465503, 0.0023098553065210581, 0.0013571864692494273, 0.001502038212493062, 0.0019606836140155792, 0.0017502856208011508, 0.0023802169598639011, 0.0029368884861469269, 0.0018356521613895893, 0.0018957450520247221, 0.0018408976029604673, 0.0019716743845492601, 0.0023817403707653284, 0.0012941968161612749, 0.0017364345258101821, 0.0018017487600445747, 0.0018976640421897173, 0.0018052057130262256, 0.002375846030190587, 0.0023122509010136127, 0.0015181974740698934, 0.0012453384697437286, 0.0024220480117946863, 0.0023937351070344448, 0.0021456319373100996, 0.0015469184145331383, 0.0023596605751663446, 0.0021300707012414932, 0.0013560063671320677, 0.001962754875421524, 0.0023512858897447586, 0.0011880070669576526, 0.0020998367108404636, 0.0017484934069216251, 0.0026167291216552258, } }; const TfLiteAffineQuantization quant36 = { (TfLiteFloatArray*)&quant36_scale, (TfLiteIntArray*)&g0::quant27_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data37[32] = { -360, -2347, 3931, 9653, 2129, -21823, -19891, 8850, 479, -15239, -909, 3009, 4855, 2107, 23086, 3921, -15374, -3297, 13584, -5501, 5667, -18581, -119, 10672, -3897, 1319, 6254, 868, -3297, 13297, -4710, 5037, }; const TfArray<32, float> quant37_scale = { 32, { 5.9798047004733235e-05, 4.2758812924148515e-05, 3.5030119761358947e-05, 5.5572472774656489e-05, 4.5506680180551484e-05, 4.3921194446738809e-05, 3.7516372685786337e-05, 4.3564639781834558e-05, 4.4793250708607957e-05, 4.598837040248327e-05, 4.0209048165706918e-05, 4.9223093810724095e-05, 4.7518427891191095e-05, 4.5812885218765587e-05, 3.840751014649868e-05, 4.5784108806401491e-05, 4.3306947191013023e-05, 3.7390454963315278e-05, 4.5923887228127569e-05, 4.4826567318523303e-05, 4.2489584302529693e-05, 5.9381971368566155e-05, 5.2976607548771426e-05, 5.1826060371240601e-05, 4.2822386603802443e-05, 4.4392272684490308e-05, 5.2509934903355315e-05, 5.3988063882570714e-05, 4.4851814891444519e-05, 5.0096550694433972e-05, 3.8191941712284461e-05, 4.5430948375724256e-05, } }; const TfLiteAffineQuantization quant37 = { (TfLiteFloatArray*)&quant37_scale, (TfLiteIntArray*)&g0::quant31_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data38[32*1*1*192] = { /* [0][0][][] */ 9,-82,2,-35,-76,14,55,12,40,-14,-72,-35,-22,-36,21,1,-17,9,-64,35,-19,69,16,29,-31,-15,43,-70,-50,25,-22,17,53,49,24,74,11,36,-35,-18,-56,-54,-46,23,13,-46,-37,68,-30,-17,33,75,25,-42,61,-36,42,4,-40,83,26,66,-9,-14,62,-20,17,-87,-18,-31,-7,10,-6,-4,-24,-26,45,-67,23,33,10,36,18,-19,12,-19,-74,-46,67,-14,-47,38,-16,-11,-51,15,-16,16,22,50,-11,-12,-12,-77,54,-62,-19,-46,33,20,40,79,14,-17,-19,22,2,-14,-54,-11,-27,78,20,-42,20,-34,-5,-40,-9,-15,58,6,-2,-98,41,-65,-9,34,-9,-10,-3,21,42,44,19,10,36,-6,24,-12,-11,22,1,26,-70,-38,-15,56,-38,-3,-37,-54,127,-37,73,-20,-7,-2,-62,-30,42,60,25,3,9,-41,1,33,1,108,74,-59,-13,71,-13,31,19,13,-5,12,-40,-14, /* [1][0][][] */ -101,13,-15,11,-12,8,-13,-77,28,-10,-28,99,61,26,-20,-9,-31,22,-102,50,-79,-59,26,13,26,-49,72,-25,-59,-61,37,10,54,37,20,43,-46,-33,-63,29,-37,52,-22,-38,77,13,24,84,15,-1,-4,52,-16,54,0,47,63,-34,33,-125,-48,62,2,10,58,-15,-38,13,5,-16,13,-80,-3,-10,-6,-29,-8,-13,71,-98,9,-59,9,-12,3,20,-92,-16,-3,19,-103,64,-65,5,21,83,-70,127,-10,5,43,-15,-17,-2,24,78,-55,22,3,30,57,-10,-4,-39,72,-101,72,-28,-11,-7,44,17,11,14,16,-18,-77,60,62,-26,-15,-46,30,7,41,-8,-3,-36,-89,1,-3,-78,-21,-21,27,-65,-21,-10,98,7,9,26,57,45,-18,-6,-98,-36,79,54,12,-28,76,-3,-88,28,8,67,21,2,13,38,-8,39,18,-45,-71,-1,64,-60,74,-20,68,37,27,17,-43,40,-31,-6,20,-10, /* [2][0][][] */ -21,-7,1,-15,2,-71,28,-30,15,50,55,-35,28,-29,20,34,65,81,26,7,61,68,-30,-16,66,26,55,-61,46,-32,-13,4,21,53,80,19,28,64,29,-15,-4,-11,-18,71,-55,-98,114,-80,16,30,24,-116,16,-59,48,-105,47,84,73,45,1,-45,21,-24,-2,-3,-34,11,-22,-81,64,-10,-2,61,-12,22,63,-20,-16,-93,-33,-16,-41,80,31,-22,-62,-44,-19,126,-127,53,113,-22,-11,63,-9,22,5,-16,-24,26,-86,-37,-31,46,-88,-59,-36,26,46,-71,-36,-22,52,-22,-74,-82,-36,88,-118,-12,-98,-36,18,-81,-3,3,-58,-3,88,78,-61,28,77,-19,-13,27,-43,-7,-29,10,-66,32,30,45,-73,-15,-31,-88,20,-17,13,-67,33,15,10,-44,44,12,35,-59,-27,94,7,-10,4,-33,9,-54,-1,-31,-45,55,100,-10,28,54,-46,-94,-19,-29,-85,-19,-3,21,3,78,98,53,-37,-98, /* [3][0][][] */ -27,47,7,35,29,16,-62,-31,29,-62,-3,-22,6,25,101,-21,-77,-59,-27,22,-79,7,-6,-70,127,-18,41,9,-14,71,-36,18,75,-36,14,-9,37,-1,0,33,-23,-11,-96,26,-25,49,4,-8,-73,11,34,19,37,58,-39,-50,-54,1,-44,-14,-25,-15,41,17,10,3,-8,-15,24,8,-38,-5,-67,-25,-14,8,-20,11,-90,-19,-28,56,44,18,-2,-82,-67,16,60,-28,64,-55,-50,84,2,60,20,-15,-46,-21,-79,-13,-45,-4,-29,23,0,63,-16,0,-4,-25,5,-42,15,22,-32,11,64,71,13,9,-21,32,3,-22,12,-49,24,26,-35,-2,-16,-5,1,26,50,39,-13,-40,-4,40,-27,0,31,-2,32,22,-59,29,-15,27,-53,-41,-50,42,39,87,-15,19,-8,-16,-28,-50,19,45,-53,-36,-31,-12,-120,-13,0,-29,3,-18,14,14,-39,-15,-12,6,-11,67,-40,-56,43,48,-17,-30,23,48, /* [4][0][][] */ -60,-56,-39,-61,-16,-39,35,78,15,-69,-32,-77,-65,-58,127,5,7,-17,26,-15,52,74,-38,-27,-82,26,-27,12,53,-7,-10,68,-59,86,49,-28,-28,-1,-78,1,-1,34,40,101,-35,-14,82,-96,-24,16,29,51,-23,36,-32,60,-5,98,33,-20,-67,-32,-1,46,22,-121,-2,125,28,76,-2,24,-49,38,-56,-53,10,-30,22,-13,49,-98,38,87,56,5,50,7,-24,-38,7,-11,-13,8,-6,-111,-1,-11,61,19,-12,-28,34,-10,53,-33,-4,64,-29,35,13,-11,84,-32,-34,19,40,60,16,-40,9,-31,-51,47,-17,-48,-76,-41,14,38,-15,35,39,-22,-36,46,-111,22,-65,28,-65,17,61,-7,51,-71,-11,-45,12,-36,1,47,-27,26,49,-57,-94,-76,88,25,-37,3,-3,63,-18,50,12,-66,-2,-70,51,-10,4,1,25,-15,21,-5,-33,25,-16,-5,-51,-21,-59,29,-13,-7,5,-55,2,30, /* [5][0][][] */ -12,-35,-66,101,75,34,-48,3,102,-59,-1,-29,-52,61,19,-97,46,-23,78,18,31,-15,83,78,58,-75,76,-24,16,-31,16,37,5,84,50,-1,18,-14,90,13,-18,-79,-4,14,-55,-7,-29,91,3,-6,69,55,99,24,10,-14,-98,-9,23,61,-60,15,-25,-54,36,68,-6,45,-35,50,-82,-5,-15,-31,24,59,-68,-70,-40,88,20,-27,-5,-82,-27,-27,28,21,32,19,-42,-12,-12,-70,61,26,-8,78,44,17,3,-34,16,0,89,72,16,-127,-40,-19,-76,-27,9,40,-8,38,41,8,-76,42,46,55,45,61,-40,-33,19,-102,21,40,-40,89,-66,13,36,58,8,-35,-61,-16,4,95,-109,98,-41,102,17,66,57,-73,18,-63,-47,64,71,-5,58,94,-2,55,53,68,-11,-8,64,11,-32,-9,28,113,-7,-44,-50,-76,67,5,50,-61,63,-64,71,-15,32,-31,-38,39,-29,-36,7,-2,-20,-87, /* [6][0][][] */ 39,106,-28,-66,101,-5,-11,-3,-6,57,15,21,21,28,25,82,-65,28,15,-12,-29,24,-13,6,1,14,15,-51,73,-14,77,-87,-95,-104,9,19,47,75,-12,-59,115,-50,-18,-54,41,-37,0,21,-65,-54,-90,84,-17,104,15,-69,18,-25,-12,15,11,49,20,50,-29,28,-19,45,51,41,-47,-59,69,-2,-7,53,-36,-70,24,80,-18,-4,6,90,-38,-53,-15,-52,-29,104,-9,-2,34,-29,-44,52,3,-17,27,22,41,-2,58,0,27,-92,-89,110,13,-49,94,-36,-15,5,100,120,-51,24,127,85,-40,-12,-78,8,75,86,-44,65,-16,-42,36,47,86,-40,-68,-47,23,39,56,10,-35,11,-35,-73,-16,65,-102,-31,0,14,10,57,-20,-63,-47,19,1,9,67,46,-99,16,3,42,9,75,67,23,86,71,-19,1,-8,-2,24,60,48,-52,21,78,-8,-55,39,-64,2,-88,-51,30,75,47,-43,-29, /* [7][0][][] */ 15,19,-52,20,-42,31,-11,-9,-65,28,-68,32,25,-61,-77,0,-93,8,-25,-53,-11,-27,8,-21,-26,-17,-45,-47,-10,-22,-6,-35,-70,33,-17,-64,-29,-64,-31,23,11,-27,84,47,61,-40,-6,63,25,-20,55,95,28,-85,-23,22,-22,-33,-17,53,-19,-60,39,-27,35,50,9,-72,-50,-12,57,-46,-66,91,-9,-34,-48,-14,-24,5,12,-57,-41,-3,-55,-99,60,-18,4,-38,-31,41,-30,-38,-62,-9,-81,37,-29,31,-17,49,-12,-55,16,30,-51,40,-18,-19,24,-29,8,16,-10,-44,74,-127,79,7,-39,50,25,36,-65,40,21,39,-4,-11,-23,22,29,36,16,27,24,-90,41,27,88,109,-25,2,90,-41,-37,7,42,7,62,-38,-27,69,15,0,46,6,13,-22,-92,-45,-49,14,24,24,-6,-51,-14,4,-55,50,21,39,38,8,-67,51,-38,27,-71,28,60,2,-61,-18,23,-16,46,6,-14,32, /* [8][0][][] */ 47,13,-9,30,71,46,-50,1,32,57,-92,18,51,6,44,-36,11,20,10,42,-60,-39,25,-23,6,67,9,-4,106,-37,-93,-51,-56,30,-89,-5,-94,-43,74,-52,-32,-96,-13,61,12,31,32,28,-14,17,51,35,75,-12,5,-65,-58,42,-24,65,37,-40,-19,-12,-30,-55,-97,6,-29,1,-60,8,67,127,-2,13,66,28,74,96,-29,-112,-1,-65,24,-19,44,-43,-39,-24,-61,-23,-14,-53,-47,5,-13,-28,-20,26,73,4,4,3,-6,-32,-68,40,-16,74,17,4,50,12,-78,27,62,-23,-4,-8,0,-47,-25,-19,-16,30,-21,9,-4,-15,7,51,1,52,-36,80,-93,-15,-20,-8,20,34,-47,-29,-52,-11,-6,42,-19,-45,16,3,47,10,18,-47,-19,-28,11,90,-16,-12,-6,40,45,50,80,73,-9,-32,-1,2,-46,-57,0,93,32,11,37,17,-13,38,10,-1,75,-58,-31,24,-10,-55,-30,-73, /* [9][0][][] */ -22,58,14,48,-14,6,9,15,8,25,33,-50,6,-127,31,-13,17,-77,-13,57,-26,-45,-62,-56,-17,0,-74,-7,67,12,11,-16,28,-4,63,3,-28,51,97,-53,38,-3,74,20,11,-38,-113,12,42,33,-107,-101,29,-122,43,7,45,-14,91,19,92,0,-13,-49,14,-76,30,35,-18,5,7,24,-11,-18,-15,105,14,-39,49,-48,-50,-29,-20,12,-14,-61,-11,-61,72,62,7,-35,48,46,-34,-29,8,57,-49,49,39,-64,-58,79,97,-14,21,35,-63,10,10,13,-40,62,-49,70,41,83,73,-8,-28,67,26,-7,26,119,52,31,7,-70,34,-10,-80,-29,-16,78,19,-37,-12,28,21,32,64,-3,14,-31,-13,53,-69,-69,-29,13,0,25,-13,30,-24,16,16,-3,-18,30,-1,-26,-10,19,45,33,-49,76,36,-35,49,91,-53,-47,52,63,-1,21,11,-115,-73,27,2,31,55,-5,22,-26,35,-18, /* [10][0][][] */ 27,27,-73,-17,-35,41,-55,41,9,17,-24,-4,-26,32,67,-49,-23,-52,1,-3,6,-34,38,-32,7,-45,36,103,-7,-53,-6,-32,13,15,1,21,22,-16,-28,-67,-39,-34,-20,-66,57,76,-83,-24,-6,-15,-42,-21,44,-74,49,-98,-38,48,-42,-52,-4,-55,4,-80,44,-50,15,-11,27,14,-16,-76,-112,-44,39,48,34,-10,70,13,-36,2,49,37,-115,67,50,25,-37,55,-47,-22,35,1,34,-12,5,-3,-27,6,-115,127,-2,118,42,-84,8,-63,-29,-97,38,4,57,7,8,-30,-38,46,77,-43,98,-10,-47,-9,88,13,28,-15,-64,25,40,6,16,39,-26,1,-62,14,55,88,87,-42,-46,37,-78,64,89,52,-8,-1,4,61,-22,-46,13,76,-51,53,52,-101,-31,42,-29,86,48,46,62,-5,45,-9,64,36,27,-27,59,-4,-19,6,32,-55,16,-48,-39,-29,-67,-86,-58,-75,-7,9,25,26, /* [11][0][][] */ -55,-11,52,49,-55,101,-8,-13,-23,-30,-15,60,5,-18,-11,-12,-59,37,20,79,-33,-51,32,32,45,127,-21,9,-24,-1,33,-35,35,5,-44,56,-49,15,-23,17,71,33,53,-29,33,44,-1,14,-7,-43,-34,14,-24,-70,30,-14,-75,-40,72,68,26,-33,22,-75,37,53,-12,-44,-71,72,91,-32,-19,-57,31,12,-39,-13,-14,50,49,11,-3,-35,31,-38,50,20,-4,-17,59,7,21,20,-20,42,-47,-17,-14,43,20,7,-21,-36,-13,-18,-72,-20,82,-31,110,-49,85,56,-80,-52,82,52,-67,-4,50,-81,-70,-26,-36,-2,-70,-9,25,-15,-23,-47,-30,46,-21,-47,57,27,41,-9,12,-99,-26,-75,-44,-6,50,26,-14,-27,-31,37,46,56,4,-53,28,-32,-2,34,-2,23,10,-36,-76,78,76,1,-16,-50,-30,-31,28,20,124,-25,2,-24,37,-25,-53,-63,57,-84,-4,-22,-49,7,-30,-62,12,49, /* [12][0][][] */ 47,-11,0,-61,20,49,4,-13,10,-18,-40,-50,21,-25,68,54,-36,-42,4,-24,-28,-72,108,-5,-18,-26,-14,13,83,-71,39,45,48,-10,59,-56,103,42,-61,31,-88,-66,9,20,0,-82,-36,7,34,2,32,-36,2,29,-32,-19,-48,16,-17,-35,-48,-35,-64,63,-3,-3,4,19,17,67,-86,31,-24,21,-38,-89,-41,4,0,18,-45,47,-13,84,-29,-20,-91,-15,15,66,56,28,-4,49,-4,-42,31,7,-65,-36,-29,79,-44,81,9,6,-28,7,-1,1,-22,-16,-94,66,-13,0,19,-10,-32,-15,11,-52,-32,12,5,-64,56,-33,31,-33,-26,26,14,-50,-2,21,32,76,-16,-66,-3,28,14,67,3,-5,20,-74,-20,2,-61,24,-83,50,-94,-34,-11,13,36,-28,-72,97,23,80,43,-102,-19,88,5,30,19,48,-59,64,23,-6,80,85,27,26,-23,-67,11,-31,48,0,127,76,-24,-98,-55,-5, /* [13][0][][] */ -31,21,-27,-67,36,51,8,31,49,-58,23,23,24,-20,23,10,-55,-10,-46,-63,-2,5,64,-10,40,22,106,97,-15,-27,-42,56,20,-9,-54,7,-19,35,88,72,11,4,14,-16,29,-9,20,-2,-28,-19,-25,26,-127,45,-38,-89,10,-56,69,-18,-71,5,21,-31,-41,-30,-7,9,-46,-9,-25,-59,-3,-92,106,91,-25,12,64,22,-88,29,-10,4,-35,-52,25,-105,-54,78,53,-9,-9,-37,4,-51,-63,-1,13,47,-45,-15,52,30,32,-57,-17,3,-7,-24,-57,-35,11,20,-55,-60,75,15,-49,45,-5,-60,14,21,23,5,113,78,-32,29,62,-66,-2,-10,-2,4,-18,63,-30,33,7,-38,-61,80,-14,63,-69,-5,4,111,-55,71,29,1,31,-1,3,38,-25,-85,34,-18,43,-20,19,23,-6,-43,-60,-36,-2,52,-35,8,-29,25,104,-45,-24,-22,-93,-49,-4,24,-55,-13,13,42,-4,-4,22,4, /* [14][0][][] */ 19,21,-59,-55,50,-31,-5,-18,-12,-23,33,-52,18,43,-54,72,-18,66,-80,72,58,12,28,-13,9,-10,-91,44,-91,-29,4,52,8,-116,87,-23,-71,13,-16,-53,-22,-101,-53,-114,10,-13,-47,43,-30,-68,-16,-53,7,58,-42,-9,47,-79,5,-39,29,13,38,-71,-63,-13,-46,-45,-45,-57,9,-53,3,11,-26,95,14,-72,-60,92,-98,57,-24,-77,14,68,-52,27,18,-11,47,17,-52,-21,16,-52,66,17,-19,1,38,29,38,80,11,-54,-25,-30,7,-26,-33,-32,8,-51,-13,-46,3,30,-81,-18,6,44,-54,0,-60,-54,54,36,66,67,25,8,57,32,127,63,-41,-35,9,-70,28,-29,4,-43,-70,-8,1,-86,29,-28,-36,62,-33,-3,1,-8,-41,22,-9,19,80,-34,-47,-11,-16,-83,46,-15,125,-14,-53,85,4,-52,-42,-83,-98,25,1,34,28,-54,-4,-1,-66,58,27,-35,-44,5,-15,19, /* [15][0][][] */ 9,-77,-5,97,67,-36,20,-15,-32,-57,-66,-8,25,-14,-47,-90,-45,-33,-40,-68,10,-46,34,-81,9,42,-47,-87,16,41,50,28,57,10,-72,-21,-22,-14,8,0,25,36,-64,45,44,-45,58,7,127,36,59,28,-34,32,20,-17,54,-41,66,-9,-56,36,-3,-31,13,-23,-14,3,-8,66,12,-22,75,21,5,17,-45,51,34,43,-59,-26,14,16,-54,-53,80,-77,-65,37,-61,4,27,-41,-21,-25,-18,-21,2,64,39,-6,7,17,-14,-19,-43,-29,3,-31,-16,-29,48,14,-36,-5,-20,28,24,-54,19,70,13,82,-73,38,29,-104,61,-58,63,-6,-27,-13,20,88,-31,-60,76,-10,-43,7,36,66,19,65,20,-30,73,71,-36,20,-14,-51,-40,40,-7,-64,22,-59,-14,-21,-38,10,-20,49,33,66,-35,-42,96,-75,32,-68,-73,53,-74,-126,62,-12,27,75,-31,63,14,-51,-32,11,36,65,-58,-46, /* [16][0][][] */ -25,80,-20,-18,70,-36,9,7,39,18,4,-8,-29,-29,5,-43,-59,-21,4,-2,-112,40,105,-6,-78,68,-30,34,31,-68,18,66,27,-25,-45,66,16,9,-40,-35,9,-46,10,-18,3,-34,-28,-12,-61,1,63,62,76,42,101,-28,56,-25,-62,103,70,95,22,23,58,-2,37,-42,27,-76,-38,-5,14,-69,84,9,1,-21,-21,41,-17,-37,-44,0,26,-91,1,-10,-5,-43,-5,-56,-2,-19,-48,-43,-110,62,6,-25,-47,-59,59,-45,-11,76,12,121,-17,48,-38,103,24,9,-1,-48,77,2,73,6,80,42,10,17,-63,-10,79,-36,8,22,-71,51,-15,-8,41,-5,8,-53,-47,57,-38,9,-17,-26,0,24,-44,-57,11,-39,56,62,-30,20,-16,55,127,69,-20,-32,-33,61,-105,89,55,-42,-33,33,-14,-83,-17,47,32,54,26,36,-21,45,1,-56,-57,24,126,27,1,14,-50,-15,58,-76,45,78, /* [17][0][][] */ -13,80,55,17,-16,-76,-35,83,10,-42,80,79,70,22,-123,-12,84,31,-67,72,34,51,-46,57,-127,82,-35,39,92,-11,52,-68,-3,-45,41,64,12,-8,74,63,-64,4,-26,59,-42,49,51,5,-55,6,-4,-13,54,-1,-29,117,-24,-30,45,-14,71,-37,35,27,-39,1,60,-20,-12,-83,-3,-17,28,33,48,34,-101,60,45,-9,16,-51,25,15,17,28,-84,-66,-60,14,-2,23,0,8,-1,-16,1,-55,7,-35,-40,38,-112,-67,-80,-2,-21,7,12,35,92,46,-52,-54,30,93,46,-53,-10,56,0,-11,-12,-33,42,0,-85,5,36,-47,-44,-84,-88,-44,100,80,56,-112,12,-22,-84,-97,22,91,100,-35,-46,-100,-34,-26,-52,31,-15,38,34,12,15,-81,45,2,5,-15,-81,-2,72,43,-19,-42,56,26,-11,-6,80,9,85,10,-84,-39,-26,-29,-52,-39,-70,-18,-20,-50,38,25,44,50,55,-75, /* [18][0][][] */ -69,38,31,-26,-18,50,6,1,-26,-20,-23,28,20,-8,-41,-37,-91,-60,-54,-5,10,36,44,36,-38,0,20,-59,22,1,-82,-17,24,-25,-24,-6,-70,-24,12,-60,29,-23,-62,-2,18,-5,21,-96,-26,-22,-30,8,-50,-21,16,43,65,35,-80,-21,17,5,28,-53,68,58,-69,89,-29,61,0,-13,-33,13,2,-69,30,24,-9,39,-77,-37,-74,12,4,7,16,9,17,-10,-17,8,110,-41,43,49,6,-31,-11,-16,-62,97,-3,-17,21,-33,102,10,-18,28,-28,32,-62,19,5,-51,-1,56,-42,-40,-63,-33,5,48,-127,-55,-40,-58,-45,43,6,-22,-15,31,-21,16,12,-59,8,108,30,-11,-30,-14,15,-18,21,-14,-10,-59,43,88,-55,-64,73,19,9,-30,27,-114,-6,-58,-47,-29,51,-74,5,48,-11,88,-62,-20,28,-24,-40,3,-24,60,38,41,14,-15,34,38,-3,72,40,14,19,45,-52,21, /* [19][0][][] */ -94,-30,-80,-20,43,-55,-50,-53,-61,-104,67,-26,38,-24,-66,40,34,-87,35,6,32,-28,-82,6,46,21,-12,8,59,-72,9,-31,56,12,-46,-36,0,-37,95,-50,77,23,1,-52,27,-35,-42,-3,-3,56,-34,23,27,-7,-103,-61,52,97,-66,6,-24,-10,15,-11,6,-13,-3,-67,7,-13,-33,18,6,-61,82,-59,76,-2,45,-14,38,-46,0,-23,26,16,-19,-2,119,-68,33,80,96,-37,12,-69,5,-20,-53,-6,54,-27,42,-32,-4,-6,28,-42,-43,-46,64,-14,61,-3,41,11,-1,127,38,-3,1,-60,-17,-48,42,47,54,0,-21,38,-44,-79,24,-25,80,25,-18,-44,-26,43,5,-67,18,-83,10,-37,103,76,97,-7,25,26,14,27,4,35,-4,0,22,40,37,58,-25,9,27,26,-61,-18,23,20,11,-29,32,7,-73,92,23,31,-59,11,-1,36,-18,-50,-47,-1,25,44,65,41,25,-25, /* [20][0][][] */ 72,15,-20,15,33,87,14,67,-33,16,-29,1,5,-11,30,-95,-24,1,-31,69,-19,71,-15,-1,-39,56,68,-30,4,6,32,47,-73,-31,52,-17,-52,-29,40,-95,29,-19,-70,-62,73,-1,-41,3,80,38,-13,-28,37,-52,-13,-79,87,12,-58,-12,47,-21,9,25,26,21,116,-52,22,-25,-61,-46,-71,-14,-100,-65,4,-30,7,-97,-73,36,9,-40,90,-67,-38,-103,52,0,-74,24,50,18,-26,-9,20,-72,-33,14,0,-19,-15,55,-11,26,11,6,88,-49,-2,95,-48,32,-91,35,51,-27,-127,22,-12,79,-59,61,-40,5,4,-53,0,-25,26,-51,-17,-40,20,-7,-8,-16,85,25,57,-20,41,-77,6,19,-24,-37,70,-57,-70,0,65,-10,15,33,47,42,-16,-14,8,-38,-32,81,17,-58,-6,20,9,18,41,-52,22,40,35,-38,58,13,26,43,-12,-27,72,-3,-21,-100,27,16,45,6,9,33, /* [21][0][][] */ 8,83,-5,-2,24,-49,-70,-1,-44,-8,-1,-12,14,8,-33,-29,7,81,-54,3,26,-6,-2,33,-40,-27,31,54,35,7,-25,65,-25,14,78,7,8,11,44,14,-5,-19,48,-43,53,0,17,23,-23,80,-5,26,12,34,-17,-32,10,29,-24,46,9,-20,39,30,8,-46,-40,28,-34,4,4,-60,20,46,37,40,-69,-1,-22,25,-13,-29,34,31,19,1,-81,31,10,-4,0,22,80,0,-127,-32,-4,-12,68,-26,28,-3,-28,-26,43,33,-40,-72,32,-60,-30,0,43,53,-28,4,15,45,39,-26,44,-46,35,-29,-74,1,-8,31,-8,23,66,-33,80,23,-24,16,38,-42,5,12,-24,11,4,6,32,2,37,45,-37,-76,15,-10,0,64,-16,73,-47,43,-26,-38,40,43,-43,13,30,11,5,43,10,47,-19,-59,14,24,-22,23,33,-24,11,-37,-45,-50,-9,89,40,9,20,52,79,-1,21,33, /* [22][0][][] */ 24,4,-7,20,18,-5,-101,-2,-36,13,31,-32,-40,1,-20,40,-23,-13,-35,0,27,36,11,2,-66,-5,75,-17,20,-59,-4,2,-14,-32,0,12,46,-13,-16,-37,-12,3,81,-7,-3,21,-36,23,40,9,18,-7,61,-24,-35,29,67,-20,54,11,43,-118,13,6,-25,-42,17,-26,-55,-7,28,-11,35,21,-6,14,1,50,-37,24,-37,8,-34,-64,-22,-25,-37,-4,22,29,-19,47,-41,-56,17,42,-17,26,12,16,57,-58,-4,-26,62,-78,-57,3,38,23,39,38,-96,-69,18,-26,18,37,54,-73,29,-1,21,-14,-29,-38,-20,-38,-90,-20,-1,20,6,-9,59,31,-51,-74,-32,60,31,-8,26,-10,-7,24,74,-42,25,127,60,5,5,36,-17,89,8,64,-41,-23,-8,-31,11,-41,-18,-42,18,45,-21,1,65,-15,19,-23,-23,-58,10,-7,2,45,-36,-46,70,-44,-10,-21,40,-33,7,-23,34,-30, /* [23][0][][] */ -21,-3,-6,39,58,-18,-28,-46,-3,61,-78,57,-8,21,-49,-20,-54,10,-17,-51,-104,9,-29,-50,49,21,-12,-72,-20,-42,23,-23,-80,24,-73,-41,2,-126,-24,41,-14,16,-55,-5,-100,1,-45,42,3,-15,-20,6,-58,-8,-63,34,30,-17,39,0,54,-4,-13,-40,42,4,-119,2,62,5,86,47,41,-72,-9,29,25,-24,6,-3,39,56,81,76,28,-37,51,-40,22,-17,-19,-51,24,12,-7,65,22,73,-106,13,-18,16,35,56,18,-53,82,-31,40,-1,-8,16,28,14,-71,28,-20,-50,21,-53,-50,-18,-3,-52,-58,-62,117,-35,-4,74,72,32,40,-46,-18,-61,14,57,62,-69,21,35,-108,12,-29,0,6,4,-41,-8,32,-30,9,-32,55,-44,6,17,-19,-53,-8,14,-5,0,-41,17,1,-1,7,-10,-18,-30,127,35,34,-46,27,0,-46,-45,-33,14,-26,40,-6,72,-6,70,25,52,-3,-40, /* [24][0][][] */ 45,-22,9,-25,-34,-20,54,0,-63,70,-60,77,25,-18,-53,91,-41,55,13,13,21,11,19,24,-11,11,53,20,10,-15,33,49,17,-9,62,50,-8,19,-21,25,2,48,-104,-7,-21,-67,-6,5,46,-32,90,47,13,-20,62,12,18,14,0,-18,6,5,46,-88,-59,-29,-15,-41,-32,-16,-42,-38,53,-68,15,-87,13,8,-51,9,14,34,74,-53,7,-2,-63,37,-14,-75,86,17,46,-7,-83,9,54,76,-127,60,1,6,54,57,17,-19,-32,37,-1,7,31,-31,-11,-26,-8,20,1,-23,-100,5,54,-6,-1,-32,43,-40,1,46,-59,-19,-77,7,-17,-40,-27,104,48,-41,-6,42,14,33,-29,4,29,10,-37,13,-14,-69,19,81,21,-64,-50,-4,-67,87,-53,-31,81,-48,11,103,-64,10,-31,-30,-50,14,76,-3,7,-11,40,66,52,3,16,4,75,-47,-46,-35,27,-10,-8,51,38,2,30,12, /* [25][0][][] */ 36,55,65,-8,51,-54,-77,58,-56,-13,-7,65,-28,39,-16,3,-94,-86,-61,-115,-2,-38,-21,49,-23,29,-28,-36,76,38,32,52,48,-34,-25,63,-3,-52,-8,4,4,-76,3,-37,64,-25,59,-20,12,-64,-23,-6,-33,-23,-48,-16,63,-68,51,-21,89,-38,64,14,9,67,-5,127,-25,54,58,85,56,-118,15,6,-75,-17,37,-11,-25,-1,-48,-16,26,10,-84,25,-9,-39,16,67,-41,-22,38,-39,-35,-116,-52,-40,4,5,-62,-59,31,-44,-39,-32,-27,-45,24,-22,37,-2,57,1,-3,-45,-57,-38,113,36,16,-2,67,-29,-53,-23,52,27,39,39,21,-7,-54,-17,-34,-6,-8,53,-1,-64,-10,31,-9,65,27,-3,32,6,-22,34,51,-3,38,124,51,38,13,55,-62,-4,-31,8,-44,29,-12,-30,-19,-72,8,6,11,31,-35,83,-4,35,-51,-58,-36,-78,-25,23,34,-10,-14,43,-86,-13,-7,90, /* [26][0][][] */ -9,-23,-4,29,-17,-18,4,-47,31,-33,72,-10,-25,5,-71,30,-30,29,68,30,28,5,-47,12,-14,28,76,56,-2,50,-31,12,-98,22,-17,34,-23,-11,51,-37,-6,43,-10,-14,31,-39,-18,-55,-42,72,-19,-9,-2,38,-35,-41,-13,-60,-47,-28,-127,96,6,-115,-13,-40,3,-15,1,5,76,-48,5,-3,8,63,47,-34,-58,46,65,7,-42,34,-1,48,10,-86,-11,21,34,25,-35,-15,22,60,-23,-48,16,-70,23,22,47,13,18,31,3,-30,-14,19,40,-33,-5,64,-17,29,3,4,-8,-10,-45,-66,18,-27,-1,58,-4,-27,34,1,12,-40,9,82,-83,-34,19,-15,-40,-5,30,-47,-57,-57,-36,-28,-24,2,-14,-39,17,71,-28,4,-12,-15,-24,42,-68,14,55,62,-13,7,3,11,-29,27,-79,-47,-5,-14,19,-12,-15,-2,-13,78,23,0,-30,-50,15,7,49,-6,46,56,46,-30,-21,-36, /* [27][0][][] */ -16,58,29,-34,47,1,-46,36,9,25,-29,39,-19,5,3,4,66,50,43,-30,-79,36,36,42,-3,50,11,-42,-38,7,-21,-63,-16,53,32,96,-19,-27,-33,21,-38,3,-80,-48,42,77,-7,-36,12,-42,45,-4,109,-12,7,7,-29,-35,-12,17,22,9,-63,-55,29,-55,-10,-29,52,-15,-46,-49,-8,-45,-50,16,-93,-12,-73,55,98,7,-19,17,19,-1,30,29,-49,38,-15,85,-51,48,-78,-11,-18,50,36,-56,-7,2,26,12,38,-40,-45,-21,57,-15,44,30,7,-31,33,-34,-5,21,-65,20,-16,-25,-21,-99,-33,-37,-49,-41,-3,76,1,104,-64,-14,-10,33,41,-4,25,51,-41,-11,-50,-70,-14,22,-3,52,35,30,-70,19,-61,3,-23,41,49,-54,-45,38,-43,50,-84,-52,-59,-21,12,-6,-45,-5,86,-53,-127,79,-39,-5,-17,76,-39,13,53,-1,-4,97,51,33,-1,22,19,-18,-95,20, /* [28][0][][] */ 49,-5,-67,-15,-43,28,-40,18,17,79,75,-47,-54,111,-76,46,-117,7,-51,-78,91,-66,52,40,36,-14,-17,-27,-52,16,28,43,-65,43,56,12,13,-12,-45,107,-26,-10,31,25,0,-71,-19,-2,-87,-46,28,17,45,-78,-15,73,4,-70,10,-69,-115,-47,-78,-25,59,3,-115,38,-48,10,-92,-2,24,51,-6,68,23,-11,9,60,30,83,18,-20,-41,25,-37,35,-83,83,-2,-37,40,26,23,64,95,-23,77,-37,-29,-30,118,-35,-45,-18,56,67,61,38,39,-75,-20,-29,-45,21,-53,-8,36,127,0,-37,64,-1,42,-58,32,-23,85,-30,112,40,-49,-19,33,39,8,-10,-2,-9,64,-2,4,59,-10,-11,66,-65,2,-52,-80,12,32,54,113,31,-45,-35,-96,-91,30,73,-63,37,103,-52,-44,18,-4,-83,-87,-23,43,1,24,-39,67,-25,-56,30,17,-75,46,16,-11,50,18,1,30,71,-101,-37, /* [29][0][][] */ -20,-82,-19,-53,48,107,74,6,-65,-12,36,-65,-50,-1,-27,-34,49,-51,40,40,6,56,5,5,40,34,24,-64,-40,31,-47,52,-55,10,-40,-36,1,1,-47,-16,47,28,0,-36,-34,-119,-59,-52,52,-26,53,17,-71,30,45,10,-28,-25,16,0,-31,-26,19,-6,79,19,30,0,-15,-8,-91,-66,-56,-37,-43,-18,15,116,37,47,20,5,-60,-22,20,-15,64,4,-41,11,-64,-61,-9,-58,33,-17,10,-6,-62,55,-2,-29,-73,-75,37,-63,-74,-117,21,-56,50,-26,-8,56,40,52,88,-25,17,29,31,-5,106,-54,2,61,-62,-102,-47,4,-28,-21,25,42,-23,-6,-36,-45,-58,12,-5,84,20,14,-14,29,21,-9,-127,4,23,94,89,44,-41,-12,-52,-32,24,-13,22,-6,14,-40,15,-57,52,18,-64,-3,7,-3,-17,-28,-64,-3,18,-4,24,19,19,-55,31,53,-16,73,36,72,-5,36,4,-57, /* [30][0][][] */ -23,38,-66,25,-18,42,13,68,15,34,48,98,-41,-13,6,-71,-41,13,-62,-39,-35,45,-28,15,-13,-3,37,35,-11,96,-15,100,-13,-34,5,31,-35,2,111,0,17,41,-53,-68,-11,-8,-48,39,55,5,29,-21,-31,-38,-36,-3,31,27,-7,75,-32,-12,-22,20,16,-49,45,41,-32,8,-48,-78,-61,37,-46,-23,-58,14,-75,-26,40,29,69,-35,27,86,57,-15,27,102,-79,-6,12,-82,127,-71,9,41,19,1,87,-22,-59,-5,-59,-89,-48,33,28,-13,-11,-22,59,11,123,-37,-67,8,67,29,18,58,1,51,-22,42,-78,5,23,34,73,43,-58,93,70,-25,-30,43,-16,8,-43,-70,-43,-82,-32,26,68,69,-9,-33,36,22,77,-18,39,-51,-53,-48,20,-52,79,61,48,50,-4,3,30,-109,-8,72,-79,67,-26,9,32,90,-53,2,-58,52,-33,-57,-90,-71,-16,75,34,-69,-52,-42,-42,-78, /* [31][0][][] */ -28,21,-73,105,30,-6,-26,51,-85,21,-21,12,62,-11,-8,31,127,44,11,-11,-10,-39,31,0,-22,54,-55,8,74,11,27,12,17,9,-40,16,13,-49,49,-12,14,5,47,-33,19,-56,12,-6,-45,20,-3,-54,7,-70,-23,-37,-15,-29,76,8,-56,-12,-104,20,-53,3,-1,3,-18,-4,-4,-29,-67,20,55,12,-51,-31,50,-28,-30,1,6,-49,17,-76,-70,-44,6,0,15,10,-14,41,-65,-33,-26,-32,-16,21,-55,5,38,-47,3,26,22,-32,4,-28,-68,-7,12,71,-11,50,68,28,59,19,5,21,6,38,-18,-3,24,15,1,38,-45,-77,96,-1,-31,2,29,-5,9,-26,-43,20,72,-25,23,6,6,5,-24,7,29,-93,-14,-10,-1,-7,30,41,-25,39,-76,-64,-7,35,14,-62,-21,35,37,6,-52,18,70,-38,-61,67,35,13,-26,55,16,9,5,1,-62,27,-48,-42,22,-14,-83,29, }; const TfArray<32, float> quant38_scale = { 32, { 0.0025414170231670141, 0.0018172495765611529, 0.0014887801371514797, 0.0023618300911039114, 0.0019340339349582791, 0.0018666506512090564, 0.0015944457845762372, 0.0018514972180128098, 0.0019037130987271667, 0.0019545056857168674, 0.0017088844906538725, 0.0020919814705848694, 0.0020195331890136003, 0.0019470475381240249, 0.0016323191812261939, 0.0019458245951682329, 0.0018405452137812972, 0.0015890942886471748, 0.0019517651526257396, 0.0019051290582865477, 0.0018058072309941053, 0.0025237337686121464, 0.0022515058517456055, 0.0022026074584573507, 0.0018199514597654343, 0.001886671525426209, 0.0022316721733659506, 0.0022944926749914885, 0.0019062020583078265, 0.0021291032899171114, 0.0016231575282290578, 0.001930815284140408, } }; const TfLiteAffineQuantization quant38 = { (TfLiteFloatArray*)&quant38_scale, (TfLiteIntArray*)&g0::quant31_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data39[192] = { 906, 2798, -2869, -994, 199, -1052, 583, -983, 5195, 716, -2624, -977, -3687, -946, 329, -3555, -863, 5155, -3307, -332, 1483, -1439, -321, 2588, -429, 1660, -1211, -1864, -1408, -1929, 895, 1362, -39, 497, 2733, 3656, 1891, 4768, -6517, -246, -42, -514, 3230, -1191, -1320, -1363, 1489, -2458, -4166, -296, 2265, 588, -105, -2661, -2597, -2671, -4817, 2518, 30, 2699, -1030, -2122, 294, -807, -2587, -892, -163, -5307, 1241, -2600, -160, 2023, -7226, 2051, -1846, 7120, -294, -5627, -717, 181, -878, 421, 884, 893, -1657, -19, 0, -379, -835, 581, -4031, -2915, 1719, -913, 728, -2142, -776, -1814, -4824, -1602, -3517, -927, -2009, 3767, -2193, 51, -35, -1223, -2017, -1169, -1700, -1269, 560, -683, -956, 2613, 1978, 2379, 1920, 2275, -2192, 1172, -1790, 603, -303, -429, -1764, -1429, 1403, 2653, -892, 147, -77, -984, -556, 2688, 2522, -153, -2041, -3001, -3088, 10982, -4996, 476, -1501, 4629, -529, 1023, 96, 4870, -1709, -230, -319, -4230, 769, -819, -1272, 801, -1601, 9, 724, -219, -1064, 5600, -3957, -2944, -739, 1427, 718, 3089, -2097, -1141, -2201, 7678, -84, 1987, 229, -132, -2167, 6531, -654, -485, -3991, -1499, 3007, -505, -301, -45, -2283, 5008, -3834, -1737, }; const TfArray<192, float> quant39_scale = { 192, { 0.00023394679010380059, 0.00019050348782911897, 0.00016226779553107917, 0.00018501472368370742, 0.00021922746964264661, 0.00019566614355426282, 0.0002727389510255307, 0.00025729142362251878, 0.00019384305051062256, 0.00027446667081676424, 0.00016571681771893054, 0.00024057383416220546, 0.00015048196655698121, 0.00026488924049772322, 0.00024186256632674485, 0.0001925585966091603, 0.00016015376604627818, 0.0002072341158054769, 0.00017294024291913956, 0.00021777291840407997, 0.00012700805382337421, 0.00029945326969027519, 0.00024652306456118822, 0.00017234943516086787, 0.00023523985873907804, 0.00018757117504719645, 0.0002566702023614198, 0.00022689036268275231, 0.00022582986275665462, 0.00014218648720998317, 0.00021111586829647422, 0.00017099398246500641, 0.00019525925745256245, 0.00018300175725016743, 0.00014711955736856908, 0.00018530058150645345, 0.00021703531092498451, 0.000167759571922943, 0.00015873057418502867, 0.00020000076619908214, 0.00021751517488155514, 0.00031222312827594578, 0.0002161123848054558, 0.0002465368015691638, 0.00027259188937023282, 0.00024304915859829634, 0.00014547091268468648, 0.00023506683646701276, 0.00016241784032899886, 0.0002754934539552778, 0.00015943545440677553, 0.00023293164849746972, 0.00023683632025495172, 0.00021740292140748352, 0.00023897382197901607, 0.00020650603983085603, 0.00021626366651616991, 0.00023287862131837755, 0.00019822957983706146, 0.00012504415644798428, 0.00016849891107995063, 0.00015838057151995599, 0.00019946385873481631, 0.00027847391902469099, 0.0002023212582571432, 0.00032066501444205642, 0.00027112767565995455, 0.00015651072317268699, 0.00029105611611157656, 0.00022104532399680465, 0.00014060361718293279, 0.0001818370510591194, 0.00010963771637761965, 0.00016136823978740722, 0.00023845037503633648, 0.00016148223949130625, 0.0002825194678734988, 0.00014494384231511503, 0.0002435543283354491, 0.00017540011322125793, 0.00017578025290276855, 0.00023770221741870046, 0.00025267552700825036, 0.00021687665139324963, 0.00026181418797932565, 0.00030489327036775649, 0.00020360320922918618, 0.00018545582133810967, 0.00017462146934121847, 0.00019447607337497175, 0.00019163555407430977, 0.00016726533067412674, 0.00016225629951804876, 0.00020068557932972908, 0.0002640333550516516, 0.00024903469602577388, 0.00024329934967681766, 0.00017399185162503272, 0.00014964812726248056, 0.00027156711439602077, 0.00018804044520948082, 0.00027547945501282811, 0.0002773074374999851, 0.00021547070355154574, 0.00018843752332031727, 0.00024837203091010451, 0.00025251467013731599, 0.00027098256396129727, 0.00025756051763892174, 0.00021998907322995365, 0.00029104950954206288, 0.00023266025527846068, 0.00017320337065029889, 0.00023052809410728514, 0.00013742793817073107, 0.00015595540753565729, 0.00020504998974502087, 0.0002080910635413602, 0.00025046570226550102, 0.00012961066386196762, 0.00018385046860203147, 0.00019435297872405499, 0.00032109458697959781, 0.00032081647077575326, 0.00024633953580632806, 0.00015610357513651252, 0.00027113841497339308, 0.00013599991507362574, 0.00023802900977898389, 0.00022533052833750844, 0.0002869699674192816, 0.0003045449557248503, 0.00015730326413176954, 0.00018063308380078524, 0.00015591536066494882, 0.00019790149235632271, 0.00021719411597587168, 0.00025103380903601646, 0.00021813662897329777, 0.00019381119636818767, 0.00020485570712480694, 0.00013222682173363864, 0.00015175447333604097, 0.00023510331811849028, 0.00015930669906083494, 0.00017594413657207042, 0.00022522395011037588, 0.00019979516218882054, 0.00019499393238220364, 0.00025355754769407213, 0.00020424647664185613, 0.0002616280980873853, 0.00024085553013719618, 0.00014139679842628539, 0.00024389266036450863, 0.00027089563081972301, 0.00018552060646470636, 0.0001330096711171791, 0.00023709288507234305, 0.00025494681904092431, 0.00017060671234503388, 0.00015249349235091358, 0.0003373020444996655, 0.00017461509560234845, 0.00028861479950137436, 0.00020020939700771123, 0.00030581280589103699, 0.00026998936664313078, 0.00026086898287758231, 0.00019242908456362784, 0.00027762711397372186, 0.00024765162379480898, 0.00019389190129004419, 0.00012559461174532771, 0.00032209910568781197, 0.00015200895722955465, 0.00028489629039540887, 0.00025102883228100836, 0.00022806742344982922, 0.00015989685198292136, 0.00020730961114168167, 0.00016972102457657456, 0.00017407225095666945, 0.00017838057829067111, 0.0002877941878978163, 0.00022165126574691385, 0.00020014321489725262, 0.00017919625679496676, 0.00024122431932482868, 0.0001575182395754382, 0.00013493697042576969, 0.00025920735788531601, } }; const TfLiteAffineQuantization quant39 = { (TfLiteFloatArray*)&quant39_scale, (TfLiteIntArray*)&g0::quant27_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data40[1*3*3*192] = { /* [0][0][][] */ -25,-40,-25,-19,127,-18,-34,16,-41,-21,-43,-63,-75,-62,-15,-7,27,-126,127,10,-22,-52,-64,-127,-19,-30,-55,127,-33,-7,47,-24,-13,-50,-4,11,-127,-18,58,74,19,33,-67,-49,-20,-3,-108,127,-11,-5,-127,-7,3,96,10,-13,34,49,-93,14,-22,-104,26,56,-81,-39,-28,113,127,-34,122,72,-30,-43,75,-37,127,-1,26,-2,21,-101,-48,9,-35,-55,-19,-6,-104,60,-27,127,95,-44,127,-41,36,127,127,127,-34,38,27,-127,-125,-17,-72,-9,16,88,9,5,-22,-35,-18,127,7,77,-43,-123,51,-51,14,-6,-40,-86,-127,-17,22,-34,6,-48,35,32,-80,-127,-62,-23,44,24,68,-127,48,7,-124,95,1,-67,-38,-50,-30,7,-14,127,127,-58,-52,28,32,-62,24,-90,26,4,10,-51,67,-77,-46,-124,49,-75,67,-114,-28,-93,-48,33,28,-38,-17,-74,-13,82,33,14,-123,123,-13,-84,127,-2, -127,18,86,24,51,-39,-23,2,-14,-23,91,56,23,-41,-57,-52,-77,3,45,-95,-65,123,30,0,85,-34,127,-15,0,-94,-91,-85,62,-127,-70,-122,118,-1,38,127,53,-8,21,-25,-40,11,111,-28,54,-7,-104,-3,88,48,-58,20,-11,-54,69,-77,54,-65,-41,69,-34,-57,-7,108,-25,127,56,81,27,-22,-7,-127,-42,-20,-15,-21,-15,-9,30,92,-17,-89,-10,-21,-15,59,23,5,-127,79,-24,127,-39,4,40,-21,29,-19,6,-78,30,-67,-13,-9,-14,-82,59,-31,-105,94,3,-89,-21,-32,-123,127,-33,-49,-46,-18,-23,48,-32,94,58,-61,127,-19,-115,59,123,-60,-24,127,13,101,48,-106,105,127,30,-127,-2,14,21,-64,-46,-61,-45,72,6,82,-7,0,19,-12,-50,17,127,-40,53,54,-26,-43,-122,-74,25,33,-37,-124,-45,-19,-27,-36,-76,-51,-66,109,-73,51,-3,-39,127,23,-45,23,15,-21, 21,-12,127,10,18,127,-45,-27,-58,-47,51,-18,-57,101,-29,58,-58,-17,42,-42,-101,-2,27,-74,7,31,-30,-31,-30,120,-10,-70,-5,-31,-62,-15,-50,-47,127,-32,-116,10,54,2,-27,-23,-52,-34,59,-44,97,-1,5,85,66,-10,-36,-59,-10,33,51,13,-65,-29,116,54,39,-81,-101,114,111,73,67,-59,15,26,-7,124,-55,55,84,-33,-4,-27,127,-18,30,-33,77,22,60,106,43,-56,17,-22,9,32,85,23,-82,-22,15,0,-31,-61,-20,-20,57,17,7,34,-99,-31,-60,42,-9,-5,40,120,48,-34,24,-82,127,-34,6,87,-80,1,-56,-31,-32,-2,18,-41,1,26,-15,-25,-6,-24,7,49,63,42,-13,-56,23,-6,85,-13,-45,-33,-49,26,127,1,4,63,-127,-76,-64,94,-15,18,-19,28,-127,18,11,57,-9,127,-19,-8,25,7,78,-65,113,64,32,47,20,-6,-110,127,44,127,3,66, /* [0][1][][] */ 77,-85,19,-99,-30,-33,-79,-127,-105,-9,127,-48,127,127,-11,74,3,-31,-38,-64,95,127,-8,41,127,76,7,-115,-18,108,-68,-32,2,116,127,-41,-86,-127,70,-57,-57,127,-127,10,-71,-53,4,70,-17,127,-71,-1,-53,-74,11,123,-26,44,-26,54,-72,127,127,-22,-39,127,-59,-88,-63,77,-110,-112,115,-113,5,-111,12,112,-6,-68,69,-127,-65,-49,-89,2,-2,-61,5,31,82,23,60,-43,-99,35,-80,115,52,64,-81,27,127,116,72,-30,127,127,127,-29,-7,-44,-18,10,121,-60,-108,-127,-48,-94,112,17,-44,-67,2,-37,-5,-60,-65,-127,-8,127,-70,66,-83,31,52,-43,118,127,12,47,127,-102,3,-107,89,-127,127,-110,86,111,-65,6,-75,127,70,127,-20,127,-2,125,-37,-127,-21,-38,127,36,23,-57,-7,-127,-88,-27,19,-127,33,-109,-57,-118,25,127,8,30,24,3,-5,-72,24,-80,83,-23, 13,7,91,-13,-23,-41,-19,29,123,-15,46,-70,55,46,18,127,127,-21,2,-19,69,-9,78,-79,-77,-44,26,83,-13,-85,-2,49,127,93,-91,-37,-3,19,60,-62,127,-73,-4,127,94,13,-27,2,127,19,65,113,65,-65,127,-127,127,-82,127,-127,-33,34,-55,-95,6,93,-8,92,-12,-53,41,-127,5,127,31,-72,2,68,127,58,127,108,17,-78,101,127,-78,127,127,36,2,109,-48,-72,47,-3,17,-31,-16,-33,43,-35,5,-16,87,127,-81,-21,-12,127,-70,127,-12,77,50,-90,-29,-69,3,79,127,78,13,-22,6,47,63,-50,-127,32,-56,51,127,127,127,54,111,4,127,89,77,-85,-119,-88,-10,-8,-81,-26,-38,28,78,47,-7,73,-70,-3,94,-76,-73,11,70,-40,-63,-76,-7,-61,-41,16,23,-55,-26,121,68,-83,-21,-84,-30,28,31,-53,46,-13,82,-12,5,-12,23,-53,-5,-100,61,37, 50,-8,20,-60,-9,74,127,103,-20,-17,-82,103,83,-2,127,6,-8,-127,85,-20,-114,-44,-76,-65,49,127,-10,90,127,35,15,5,-84,56,-87,-43,-65,-26,11,111,86,22,19,78,34,127,-68,15,-78,-54,-44,-21,-127,127,-19,-11,12,127,39,40,58,28,102,26,-27,-48,71,-6,58,50,-96,-58,124,17,-7,-26,-53,-30,48,45,-63,-73,-50,-21,-22,6,127,26,11,-100,-23,-31,-21,127,-36,-41,-2,-7,113,82,127,127,46,63,127,-6,53,-23,28,50,-32,46,127,85,51,40,19,-69,-42,60,-12,62,-12,26,-22,22,100,-31,113,109,-3,-12,-14,20,80,-105,-127,1,-33,-24,-83,-90,47,-91,14,-46,-47,24,-25,9,-16,-50,127,22,-6,-39,0,0,-18,-28,87,67,64,47,23,127,-17,-56,119,-36,8,54,-50,51,23,0,27,127,-39,-99,127,-52,127,-40,-127,35,18,-45,33,23,-35,127, /* [0][2][][] */ -100,-69,-69,127,36,107,26,-43,-85,127,64,127,101,0,-32,-3,-28,65,-4,66,-70,-32,-127,55,-95,-121,0,-17,78,127,122,127,-39,-80,-4,-112,91,-84,112,57,-89,-24,23,8,127,12,97,-60,35,-36,42,-127,115,56,-31,62,123,66,-33,107,-22,98,-82,-58,9,-60,127,127,50,13,-127,-55,-34,-70,3,-61,-20,115,-8,-44,-33,-8,45,-8,4,66,-33,127,-100,127,51,74,-41,80,15,33,127,-67,87,-53,86,60,-25,-35,-20,39,23,-3,50,42,57,28,45,1,103,-3,-76,-50,-28,-32,7,-94,27,5,-38,-127,40,-80,-7,-28,104,-77,-126,-15,6,-6,-26,-21,62,1,-69,-75,94,-5,106,-22,2,-58,102,22,127,-127,30,38,-2,-64,-100,9,127,-88,-3,127,-11,-75,46,73,-26,-110,-19,-121,127,74,86,-16,-12,78,-74,72,127,127,91,-94,98,89,-79,127,67,-26,29,26,-5,-92, 77,-52,15,116,-28,-4,19,9,-88,-30,14,58,103,-30,-34,79,113,2,-57,127,127,23,14,97,-38,-98,-23,13,95,95,127,-20,-45,43,-2,127,-68,-62,-37,-15,-88,18,3,-54,-7,90,29,32,118,-2,36,-35,-62,-4,85,99,58,-94,-59,-127,127,25,-67,127,127,-30,43,18,18,1,70,72,-15,42,127,-53,5,127,-13,-51,-57,-47,-31,-20,33,46,-5,-50,75,-65,55,17,-19,27,-11,18,-61,-88,3,44,19,74,-4,-118,14,25,-9,-3,47,-58,64,-90,103,-127,50,-63,33,67,127,-108,-53,-81,127,32,21,84,-38,127,105,-51,-40,-76,111,-39,-120,31,-92,-17,-126,-82,127,-71,100,-7,127,-79,127,88,-83,-127,-35,7,50,103,81,-15,-41,-90,24,13,-97,-73,6,-85,74,18,0,-49,-45,127,26,-93,127,-114,127,94,127,4,60,-44,-34,-57,10,-86,-64,30,-38,-6,127,-94,-18,-11, -72,127,-19,-80,-39,-39,-43,62,-127,27,-30,-48,-79,-10,-3,17,-84,-76,78,-1,-9,-3,99,81,5,-48,-5,-20,-43,47,-83,39,0,-51,63,-14,-30,89,54,-62,11,-7,-59,12,80,3,-127,-25,-31,-26,-95,-8,0,-46,-29,37,-4,-28,-27,113,14,64,74,5,64,-24,-37,1,-65,27,17,-37,127,-85,-42,2,84,-34,-80,127,-19,13,127,127,94,-19,-8,-55,-13,-61,127,-66,-3,-46,-51,22,14,11,-12,38,75,59,-26,29,-26,-10,28,28,-44,-91,127,68,27,-3,-127,-34,127,16,33,-49,-7,127,32,127,-10,100,52,95,-76,-39,17,35,55,-73,-8,75,39,-46,44,97,5,-100,62,-8,-112,21,-10,66,40,-53,-1,72,-14,-9,-6,-19,-52,18,97,-8,125,74,29,-6,127,53,48,127,76,-17,-35,65,52,-111,-73,44,-3,-90,24,-25,-84,79,42,127,9,-42,23,-12,2,18,-16,60, }; const TfArray<192, float> quant40_scale = { 192, { 0.009942738339304924, 0.0080963978543877602, 0.0068963812664151192, 0.0078631257638335228, 0.0093171671032905579, 0.0083158109337091446, 0.011591404676437378, 0.010934885591268539, 0.0082383295521140099, 0.011664832942187786, 0.0070429644547402859, 0.010224387980997562, 0.0063954833894968033, 0.011257791891694069, 0.010279159061610699, 0.0081837400794029236, 0.0068065347149968147, 0.0088074496015906334, 0.0073499600403010845, 0.0092553487047553062, 0.0053978422656655312, 0.012726763263344765, 0.010477229952812195, 0.0073248511180281639, 0.0099976938217878342, 0.0079717747867107391, 0.010908483527600765, 0.0096428403630852699, 0.0095977690070867538, 0.0060429256409406662, 0.0089724240824580193, 0.0072672441601753235, 0.0082985181361436844, 0.0077775744721293449, 0.0062525812536478043, 0.0078752748668193817, 0.0092240003868937492, 0.0071297814138233662, 0.0067460495047271252, 0.0085000321269035339, 0.009244394488632679, 0.013269483111798763, 0.0091847758740186691, 0.010477813892066479, 0.011585154570639133, 0.010329589247703552, 0.006182513665407896, 0.0099903400987386703, 0.0069027580320835114, 0.011708471924066544, 0.0067760064266622066, 0.009899594821035862, 0.010065543465316296, 0.0092396242544054985, 0.010156387463212013, 0.0087765064090490341, 0.0091912057250738144, 0.0098973410204052925, 0.0084247570484876633, 0.0053143766708672047, 0.0071612033061683178, 0.0067311739549040794, 0.0084772137925028801, 0.011835141107439995, 0.0085986535996198654, 0.013628263026475906, 0.011522926390171051, 0.0066517055965960026, 0.012369885109364986, 0.0093944258987903595, 0.0059756534174084663, 0.0077280742116272449, 0.0046596028842031956, 0.0068581500090658665, 0.010134140960872173, 0.0068629952147603035, 0.012007077224552631, 0.0061601130291819572, 0.010351059027016163, 0.0074545047245919704, 0.0074706603772938251, 0.010102343745529652, 0.010738709941506386, 0.0092172576114535332, 0.011127103120088577, 0.012957963161170483, 0.0086531359702348709, 0.0078818723559379578, 0.007421412505209446, 0.0082652326673269272, 0.0081445109099149704, 0.0071087763644754887, 0.0068958927877247334, 0.0085291368886828423, 0.011221417225897312, 0.010583974421024323, 0.010340222157537937, 0.0073946532793343067, 0.0063600451685488224, 0.011541602201759815, 0.0079917190596461296, 0.011707876808941364, 0.011785565875470638, 0.0091575048863887787, 0.0080085946246981621, 0.01055581122636795, 0.010731873102486134, 0.011516759172081947, 0.010946321301162243, 0.0093495352193713188, 0.012369603849947453, 0.0098880603909492493, 0.0073611433617770672, 0.0097974436357617378, 0.0058406875468790531, 0.0066281044855713844, 0.0087146246805787086, 0.0088438699021935463, 0.010644792579114437, 0.005508453119546175, 0.0078136445954442024, 0.008260001428425312, 0.013646519742906094, 0.013634700328111649, 0.01046943012624979, 0.006634401623159647, 0.011523381806910038, 0.0057799965143203735, 0.010116232559084892, 0.0095765469595789909, 0.012196223251521587, 0.01294315978884697, 0.0066853887401521206, 0.0076769059523940086, 0.0066264024935662746, 0.0084108132869005203, 0.0092307496815919876, 0.010668937116861343, 0.009270806796848774, 0.008236975409090519, 0.0087063675746321678, 0.0056196395307779312, 0.0064495652914047241, 0.0099918907508254051, 0.0067705344408750534, 0.0074776257388293743, 0.0095720179378986359, 0.0084912944585084915, 0.0082872416824102402, 0.010776195675134659, 0.0086804749444127083, 0.011119193397462368, 0.010236360132694244, 0.0060093635693192482, 0.010365437716245651, 0.011513064615428448, 0.0078846253454685211, 0.0056529110297560692, 0.010076447390019894, 0.010835239663720131, 0.0072507853619754314, 0.0064809732139110565, 0.014335336163640022, 0.0074211414903402328, 0.012266128323972225, 0.0085088992491364479, 0.012997044250369072, 0.011474547907710075, 0.011086931452155113, 0.0081782359629869461, 0.011799152009189129, 0.010525193996727467, 0.0082404054701328278, 0.0053377710282802582, 0.013689211569726467, 0.0064603802748024464, 0.012108092196285725, 0.010668724775314331, 0.0096928654238581657, 0.0067956158891320229, 0.0088106580078601837, 0.007213143166154623, 0.0073980703018605709, 0.007581174373626709, 0.012231252156198025, 0.0094201788306236267, 0.0085060866549611092, 0.0076158405281603336, 0.010252033360302448, 0.0066945250146090984, 0.0057348208501935005, 0.01101631298661232, } }; const TfLiteAffineQuantization quant40 = { (TfLiteFloatArray*)&quant40_scale, (TfLiteIntArray*)&g0::quant27_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data41[192] = { 533, 914, -17, 1167, 2000, 211, 549, 617, 2379, 1139, 655, 1136, 73, -299, 899, -1092, -231, 1113, 488, -358, 351, -810, 402, 409, 1130, 1230, -675, 125, -548, -104, -147, 1030, -239, 2413, -69, 641, -847, 732, 149, 1039, -1978, 366, 159, 905, -1203, -726, 367, 442, 526, 408, -191, 298, 368, 2898, 1135, 2138, 959, 2146, -537, 1836, 1122, 1818, 496, -1167, 446, -445, 664, 928, 1162, -364, -3, 1627, -313, 564, -134, 994, -310, 290, 1817, 845, 400, -250, 2162, 1038, -502, -1798, 399, 331, -513, 197, 1391, -64, 592, 1383, 742, -29, 1336, 366, -54, -377, 657, -775, -30, 1441, 2123, 290, 788, -260, -213, 1025, -873, 458, 1768, 310, 505, 377, 1424, 1109, -422, 583, 337, 917, -427, -503, 1038, 1354, 435, 1976, 48, -1283, 92, 93, 703, 738, 946, 1606, 598, 1520, -710, 531, 280, 1245, 944, -887, 658, 1198, -224, -46, 1882, 262, -177, 1750, 648, 628, 2013, 3158, 39, 1314, 1633, 184, 704, 118, -1026, 499, -455, -124, 160, -688, -1930, 664, 1036, -722, 224, 486, 538, 996, -2022, 243, 720, 1050, 698, 738, 557, 252, 2003, 489, 139, 1445, 47, 277, 147, -673, }; const TfArray<192, float> quant41_scale = { 192, { 0.00015574455028399825, 0.00018451522919349372, 0.00020288903033360839, 0.00019088359840679914, 0.00012504229380283505, 0.00016239214164670557, 0.00019344508473295718, 0.00019304628949612379, 0.00010885054507525638, 0.00017509752069599926, 0.0001521837548352778, 0.00014208948414307088, 0.0002286697126692161, 0.0001359377201879397, 0.00019206230354029685, 0.00015360416728071868, 0.00019292635261081159, 0.00015911718946881592, 0.00016119566862471402, 0.00016090941790025681, 0.00016436949954368174, 0.00011489715689094737, 0.00016150773444678634, 0.00021298423234838992, 0.00014853161701466888, 0.00015522137982770801, 0.0001355163985863328, 0.00018854450900107622, 0.00014493580965790898, 0.00026335447910241783, 0.00013895562733523548, 0.00018062000162899494, 0.0001528304856037721, 9.5423623861279339e-05, 0.00019130778673570603, 0.00014329113764688373, 0.00016414548736065626, 0.00015093367255758494, 0.00019653669733088464, 0.00015237968182191253, 0.00011581745638977736, 0.00012091553071513772, 0.00016744734602980316, 0.0001783789339242503, 0.00012619282642845064, 0.00014147572801448405, 0.00017710936663206667, 0.00021207459212746471, 0.0001516094635007903, 0.00019839823653455824, 0.00013110433064866811, 0.00016708689508959651, 0.00017029777518473566, 0.00011589452333282679, 0.00012546881043817848, 0.00010352866956964135, 0.00014216385898180306, 0.00010244947043247521, 0.00015163084026426077, 0.0001191681731143035, 0.00012548516679089516, 0.00014103444118518382, 0.00012417076504789293, 0.00013803194451611489, 0.0001612356718396768, 0.00015873541997279972, 0.00016085185052361339, 0.00017770711565390229, 0.00011708652164088562, 0.00014424438995774835, 0.00013709384074900299, 0.00011844539403682575, 0.00027001809212379158, 0.00017176389519590884, 0.00014385745453182608, 0.00013509378186427057, 0.00012599831097759306, 0.0001683507434790954, 0.00015414443623740226, 0.00015566396177746356, 0.00019648355373647064, 0.00017919800302479416, 0.00011447794531704858, 0.00016120827058330178, 0.00017407933773938566, 0.00014562768046744168, 0.0001353617844870314, 0.00012856634566560388, 0.00016729423077777028, 0.0002504418371245265, 0.00013688104809261858, 0.00015147562953643501, 0.00017318781465291977, 0.0001978408545255661, 0.00014320573245640844, 0.00014523450226988643, 0.00011322116915835068, 0.00016466827946715057, 0.00015669866115786135, 0.00014741449558641762, 0.00018537195865064859, 0.00014791023568250239, 0.00015314015035983175, 0.00014763014041818678, 0.00012172921560704708, 0.0001468159316573292, 0.00016839761519804597, 0.00019306021567899734, 0.00015907226770650595, 0.00014558286056853831, 0.00012593128485605121, 0.00019633716146927327, 0.00011505823931656778, 0.00017775897867977619, 0.0001870490814326331, 0.00015098271251190454, 0.0001680612622294575, 0.00014322042989078909, 0.0001169918105006218, 0.00015654218441341072, 0.00019574673206079751, 0.0001604908611625433, 0.00011065480794059113, 0.00015135962166823447, 0.00019727354811038822, 0.00016549683641642332, 0.00012766326835844666, 0.00016561397933401167, 0.00011793590965680778, 0.00013147006393410265, 0.00018531341629568487, 0.00011727074161171913, 0.00018741359235718846, 0.00015449991042260081, 0.00020322010095696896, 0.00010904009104706347, 0.0001672166254138574, 0.0001620543043827638, 0.0001643405994400382, 0.00013806564675178379, 0.00017647321510594338, 0.00012768001761287451, 0.00013483050861395895, 0.00019765167962759733, 0.00013275093806441873, 0.00012318069639150053, 0.00014951024786569178, 0.0002346160908928141, 0.00015097670257091522, 0.00013580561790149659, 0.00017806557298172265, 0.00012470706133171916, 0.00017317084711976349, 0.00019487389363348484, 0.00013096698967274278, 0.00011553587683010846, 0.00014231647946871817, 0.00014786123938392848, 0.00011905574501724914, 0.00020187969494145364, 0.00015374641225207597, 0.00019170129962731153, 0.00015156078734435141, 0.00013944874808657914, 0.00014906252908986062, 0.0001750352093949914, 0.00012584224168676883, 0.00015637457545381039, 0.00015046008047647774, 0.00013955961912870407, 0.00014601541624870151, 0.00013479831977747381, 0.00017013208707794547, 0.00022485973022412509, 0.00015135720605030656, 0.00012166962551418692, 0.00010712892253650352, 0.00014710305549670011, 0.00015076182899065316, 0.00014719023602083325, 0.00014799322525504977, 0.00015836345846764743, 0.0001685315219219774, 0.00017419533105567098, 0.00010802973702084273, 0.00023074283672031015, 0.00020683382172137499, 0.00016133977624122053, 0.00014565810852218419, 0.00018442000146023929, 0.00025143451057374477, 0.00014582848234567791, } }; const TfLiteAffineQuantization quant41 = { (TfLiteFloatArray*)&quant41_scale, (TfLiteIntArray*)&g0::quant27_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data42[192*1*1*32] = { /* [0][0][][] */ -51,27,-74,4,3,12,17,10,34,73,-74,-63,-24,63,6,37,-64,-25,15,74,-21,68,8,-26,-58,47,-1,-127,-17,55,58,-24, /* [1][0][][] */ 15,-32,-7,-96,-83,-19,32,36,93,-73,-18,32,-73,-34,77,36,-22,-87,28,-2,-124,-79,-83,-127,-70,107,-31,-124,5,68,-19,-43, /* [2][0][][] */ -18,36,79,81,64,44,-14,-66,-125,74,46,-127,92,24,-46,-24,72,0,-25,-4,-62,119,-14,-84,21,17,59,20,63,36,87,-29, /* [3][0][][] */ -48,65,-53,-7,-40,127,17,4,-59,-56,-31,-66,-56,-40,34,83,-25,-1,61,-73,-31,119,-15,-48,-45,-57,-52,21,1,14,18,-75, /* [4][0][][] */ 63,-127,5,17,42,-27,43,30,-13,-44,26,96,71,59,5,-15,3,20,-111,5,65,52,11,-70,126,109,50,68,36,-16,-15,-96, /* [5][0][][] */ 114,-37,-78,-22,-31,-94,87,-80,-25,38,-44,-25,43,-36,-38,127,30,21,28,-50,-4,-27,-56,-101,-30,91,10,-16,105,-82,-25,99, /* [6][0][][] */ 47,-42,-71,30,92,55,-20,-14,31,22,-26,1,63,23,-44,-55,127,-23,78,-27,28,44,34,-7,55,-19,34,23,3,68,5,55, /* [7][0][][] */ 16,3,-11,-27,-33,-37,-11,46,-20,7,-77,86,-43,-29,-29,7,14,74,-12,-14,-67,42,127,-8,11,33,33,-39,16,-111,-101,-38, /* [8][0][][] */ -93,28,-31,-54,-54,107,46,-3,-8,64,-61,68,-87,78,-15,-101,61,37,46,-69,-30,-28,32,29,-62,-96,-65,42,-47,-29,50,127, /* [9][0][][] */ 66,-26,127,18,39,5,-13,-77,-27,28,-17,62,13,-24,-52,103,-26,10,70,48,-21,10,-35,-18,99,-23,50,-9,-20,3,49,-52, /* [10][0][][] */ 127,20,94,21,14,-30,1,30,-87,-20,97,-28,41,-57,-19,-7,-85,-9,-43,21,5,33,42,-104,-8,46,-83,-87,26,69,-109,76, /* [11][0][][] */ -21,9,14,92,-49,80,-49,17,19,80,-29,20,18,-31,-14,27,-127,-47,-21,-27,56,25,-39,-77,91,47,-14,-41,91,-33,64,-39, /* [12][0][][] */ -82,-1,-78,10,74,53,-16,-24,-4,-19,16,-21,-28,-7,13,-35,-18,36,33,31,-44,72,127,-81,1,38,58,-43,-28,-48,-22,43, /* [13][0][][] */ 113,-44,-25,118,10,21,75,53,20,57,-37,-26,-30,52,-115,35,127,-58,-106,-99,36,31,12,-40,20,-2,10,-66,-57,-110,-71,-91, /* [14][0][][] */ -36,52,127,-52,34,14,45,68,-43,-50,11,9,36,-41,-36,85,-49,13,-62,-42,45,20,16,-49,-28,-21,12,-40,-39,43,-34,-51, /* [15][0][][] */ -23,64,-100,-95,22,93,38,-51,76,-27,26,-99,-9,-36,-59,33,58,22,7,108,34,28,-23,-35,-27,-19,-127,-85,32,52,64,-21, /* [16][0][][] */ 97,5,43,-27,49,-42,-13,-111,16,-109,30,-8,-55,40,-54,11,72,57,-13,-23,10,40,78,38,-16,38,72,56,70,-76,127,47, /* [17][0][][] */ -3,-34,84,-3,55,-28,10,0,-15,-79,-39,-62,0,-16,15,-15,-29,-15,74,53,61,40,-41,30,10,39,-11,-25,-22,-64,-127,-33, /* [18][0][][] */ -55,-83,-15,5,127,-42,-54,-41,28,-31,11,16,36,59,36,-19,-58,98,89,-26,102,15,-94,1,70,80,-44,22,-45,67,103,-33, /* [19][0][][] */ 53,12,-6,77,-22,-21,-57,-28,49,-39,-32,-76,47,-127,-23,8,41,32,43,35,76,67,58,88,-45,-104,48,18,93,39,107,53, /* [20][0][][] */ 50,-12,11,-127,59,50,17,30,29,-83,-80,82,-5,41,48,29,-64,-20,81,94,73,42,-94,106,-22,17,12,33,116,47,87,-93, /* [21][0][][] */ -113,1,-77,104,6,40,72,25,49,-5,41,20,50,-8,-108,19,-9,31,70,-126,32,37,99,29,94,127,4,-62,-54,-17,67,10, /* [22][0][][] */ -75,-105,-30,-103,-44,-52,-34,-19,19,54,-57,-127,25,-20,-11,-26,12,108,19,-46,-25,49,-22,-10,1,13,-14,24,78,-16,107,46, /* [23][0][][] */ 31,5,-6,-78,-57,-1,-64,20,30,-67,-34,-14,1,8,10,28,-35,58,-3,3,8,-30,13,-11,21,-10,7,20,60,6,49,-127, /* [24][0][][] */ -45,-74,-51,-1,-33,25,-6,-48,-65,67,-38,-30,-50,-65,-53,54,31,21,15,29,33,55,-127,58,85,16,-28,34,35,7,14,25, /* [25][0][][] */ 59,-43,127,122,23,-21,31,18,-38,55,-50,31,-23,-72,19,-31,93,-41,-31,-27,70,3,-17,-26,30,-75,95,1,72,-10,118,-54, /* [26][0][][] */ 81,6,-87,94,119,-24,10,-78,-83,-14,-63,86,91,-41,-42,47,33,-83,-57,-127,-114,69,31,34,-19,37,-14,39,25,19,96,50, /* [27][0][][] */ -4,9,-14,48,10,-61,-36,-8,-2,27,-54,104,15,-2,-29,-34,-12,-20,-30,-39,20,-127,3,-49,108,-11,70,33,61,41,55,-17, /* [28][0][][] */ -55,6,-1,-14,29,-9,-84,-20,89,-40,-106,-75,-84,-11,-22,45,-127,-62,35,117,45,-46,34,29,-1,73,53,-59,-63,-11,48,-69, /* [29][0][][] */ 42,-52,-46,-14,37,127,-1,38,27,21,-48,17,-28,-69,-41,-56,-48,42,-56,41,3,-21,0,-15,-1,-14,-8,-1,7,38,-11,-1, /* [30][0][][] */ -39,6,21,15,108,101,-34,-13,20,2,-31,-88,62,-127,41,63,46,21,-8,-55,-79,-5,-47,31,-62,-4,37,41,-69,-23,55,59, /* [31][0][][] */ 92,-22,-45,87,35,34,1,48,-76,19,121,36,41,39,13,-33,12,-25,-22,-49,-28,-64,55,-26,-35,-71,-16,-43,21,77,-29,-127, /* [32][0][][] */ -7,-48,53,-12,11,-48,-10,50,-53,-54,-52,8,48,14,72,58,-22,-39,83,127,39,34,125,-34,-63,13,-14,64,59,-3,13,-81, /* [33][0][][] */ -14,-25,59,-95,67,-66,50,54,-11,59,-70,-66,-24,62,24,34,12,-127,93,44,36,-44,33,-121,39,-83,116,-2,23,59,-126,-95, /* [34][0][][] */ -48,16,126,-57,1,25,61,88,-28,-42,-8,-77,-27,74,50,22,71,78,-75,0,-35,-127,-52,21,-45,-15,3,-37,-38,68,-15,-17, /* [35][0][][] */ 127,15,-29,23,47,-22,-74,-43,-6,-30,98,-30,29,-61,-47,0,-35,43,-68,49,-76,12,-19,-43,58,20,66,21,25,6,-46,78, /* [36][0][][] */ 9,45,8,-19,-17,22,-53,40,-12,19,38,-127,18,-7,-3,33,-10,4,1,-17,12,-22,-20,58,-123,-19,-11,6,3,5,-39,-100, /* [37][0][][] */ 64,4,-17,-71,-26,-16,-7,58,59,32,56,48,79,40,-22,46,18,-107,45,33,62,65,-127,84,113,-19,-92,58,15,-71,-76,-19, /* [38][0][][] */ -33,18,-22,-13,-36,18,19,34,-12,121,11,2,40,-39,14,-20,42,99,-17,-20,127,-76,113,34,-16,-8,19,-31,-68,8,36,-39, /* [39][0][][] */ -42,-79,-5,-38,-9,28,27,-55,-34,18,-26,-95,22,28,-10,32,106,31,14,-71,14,-3,-35,127,58,5,3,-77,-3,4,-20,-19, /* [40][0][][] */ -8,0,-68,-48,7,3,114,-17,-25,84,-39,102,-16,-93,-116,-4,-58,-123,84,107,-56,-50,123,-42,-56,-9,-127,16,106,50,38,47, /* [41][0][][] */ -48,47,6,96,-19,-35,19,45,-20,97,-61,123,-26,-114,-13,-106,9,127,-33,-106,18,32,-30,-69,72,10,4,33,-76,-41,12,-24, /* [42][0][][] */ -31,-32,-127,36,-62,8,-2,-46,54,29,-12,-7,60,32,10,20,-9,24,35,23,84,-36,-60,44,-34,-32,-18,-27,98,-41,12,-86, /* [43][0][][] */ 32,39,6,43,-38,4,30,73,20,-118,127,70,19,-28,6,-29,6,-28,-59,-26,-3,72,31,-71,-3,-99,0,47,-55,0,79,-30, /* [44][0][][] */ -108,-116,14,5,-41,71,52,10,96,49,79,-5,50,-4,-82,-22,-50,-62,66,-36,86,1,94,127,-29,-100,-30,-22,91,94,119,17, /* [45][0][][] */ 127,-34,24,-49,33,-78,19,-29,-41,17,45,112,-5,-3,67,29,-13,26,-29,108,-9,-55,57,-64,-78,-32,11,-42,39,20,-33,-15, /* [46][0][][] */ 6,-13,-22,26,-23,78,-50,64,-7,9,-10,-8,-34,62,127,20,26,-101,75,-32,15,11,27,-12,1,-63,69,12,-67,36,-27,-48, /* [47][0][][] */ 127,-56,-106,-23,-76,-59,-6,-26,-8,3,-12,16,-8,-29,-45,73,-45,-22,-29,-15,-50,-51,-60,30,30,-80,-1,-8,-61,22,42,89, /* [48][0][][] */ 35,-127,6,-28,7,31,-52,-100,-31,-33,7,-62,83,32,38,-36,-95,-104,71,-56,-6,-8,-27,12,39,-28,37,-15,-98,-35,25,95, /* [49][0][][] */ -33,-21,-113,37,-42,-65,33,100,-127,13,106,-83,-54,56,39,-52,-11,-2,33,-3,105,-48,50,81,10,-28,27,26,28,5,88,22, /* [50][0][][] */ 72,17,-27,-51,-38,46,-57,-61,-39,72,2,59,99,40,-68,48,-4,3,69,48,-3,-96,-12,50,-81,-107,-43,38,93,52,-127,10, /* [51][0][][] */ -53,2,-91,10,-8,-38,64,35,58,10,-47,-5,69,-1,37,127,-60,60,-8,-23,15,-23,-58,-19,22,58,-12,10,-8,15,40,69, /* [52][0][][] */ 32,-57,6,102,9,-34,90,-73,87,-1,-76,23,-23,-127,21,60,-109,20,45,-51,-76,67,4,30,-101,-25,5,-62,21,-64,-87,-10, /* [53][0][][] */ -28,-40,33,41,122,77,3,38,-28,-15,-121,127,-38,48,-74,28,-57,80,-31,-55,6,-14,69,58,51,27,-52,-121,-15,-14,-21,44, /* [54][0][][] */ -107,-127,-10,-10,49,-67,82,-64,-59,26,80,92,-5,-73,-41,60,-45,17,89,-83,-48,-47,-44,97,62,-112,-20,-2,42,10,4,31, /* [55][0][][] */ -71,48,-104,-72,-17,53,-46,-17,104,12,67,46,-54,34,-26,3,-55,20,-23,-8,-58,36,-72,32,39,-14,-93,-75,24,60,122,-127, /* [56][0][][] */ 22,9,9,78,18,127,26,-3,-33,-57,57,-6,-8,-49,-89,-5,-24,34,-74,-34,-11,-97,-5,54,16,49,2,-60,114,-16,68,10, /* [57][0][][] */ -31,124,94,-24,123,127,-53,72,6,-91,-57,-8,92,105,-121,17,-124,-36,-99,-9,4,27,15,-7,62,-39,-3,-22,106,-102,-45,-8, /* [58][0][][] */ -56,47,-16,16,37,18,-85,-17,84,-11,-92,-87,-44,-5,77,37,78,-42,43,77,-33,28,-73,-8,-102,-16,-10,77,34,-45,-127,-117, /* [59][0][][] */ -76,5,125,-55,123,14,-49,-2,-43,4,-14,-40,82,-127,-67,12,36,15,-61,60,-98,10,-70,10,-16,-62,51,-70,-21,-80,33,50, /* [60][0][][] */ -74,73,-30,-81,-64,14,-90,6,-50,-40,81,-121,32,75,-5,59,-74,22,-60,112,-33,67,111,58,-107,31,16,33,127,-18,11,-77, /* [61][0][][] */ 0,-54,-86,88,-53,33,-127,93,-27,-7,-104,100,72,71,-36,82,-22,42,3,38,-24,19,-89,92,-70,6,62,-11,20,-41,-36,-30, /* [62][0][][] */ -38,112,108,17,5,-62,73,45,97,68,-48,31,-31,72,31,52,-109,11,31,8,59,-70,-114,-60,-127,-58,-97,-42,-7,59,116,-97, /* [63][0][][] */ -4,56,-69,20,28,117,63,29,-30,90,127,31,-32,94,35,3,16,56,23,-30,14,-54,67,-9,97,-22,-9,79,28,-90,-22,-23, /* [64][0][][] */ 52,-36,32,-19,77,0,23,-23,1,-86,-8,46,-59,-47,-1,-25,-18,-32,23,-10,57,102,-61,28,-5,80,-54,9,127,-19,33,84, /* [65][0][][] */ -18,-9,16,111,-14,3,101,48,29,123,11,-57,36,-7,-37,13,24,19,-55,-127,-2,-60,-6,59,-7,-6,47,17,-29,-23,65,40, /* [66][0][][] */ -46,-17,-12,70,-18,89,80,-8,21,49,73,-21,63,-17,18,-69,11,127,-24,59,-22,11,-49,-11,8,-2,-43,-3,-9,39,76,-27, /* [67][0][][] */ -7,-46,2,52,-127,16,-61,38,1,54,62,24,-1,-21,4,48,37,54,5,49,117,51,84,-1,125,22,30,34,-11,40,-49,-47, /* [68][0][][] */ 59,-45,-12,47,-13,66,21,-59,9,20,-36,35,113,-61,-106,56,28,37,-113,-21,-35,22,82,-104,-40,127,-106,17,55,-86,58,124, /* [69][0][][] */ 36,96,94,39,14,-18,12,-38,-98,74,125,5,-68,17,15,56,15,-25,12,-64,127,19,74,101,-93,34,55,18,57,-1,-44,5, /* [70][0][][] */ 36,66,69,-97,92,-74,-39,-25,13,80,108,-27,112,69,-127,13,-56,67,72,8,-112,50,-46,-70,-26,-52,73,96,51,116,85,-52, /* [71][0][][] */ -37,-20,-10,17,26,-29,-77,-62,33,97,-23,-49,-12,127,-11,1,90,-29,17,86,117,19,-104,64,84,2,-4,-68,-15,60,-3,-67, /* [72][0][][] */ 23,41,-50,-20,127,68,102,-32,42,-49,4,-66,-2,-1,-87,-36,16,7,-16,64,-78,34,29,60,8,-48,28,-58,-56,-39,-22,-56, /* [73][0][][] */ -55,7,1,31,-37,58,10,1,127,-9,-17,14,59,-1,-81,-4,7,36,29,-8,20,28,-95,-28,2,-3,18,-20,44,-50,61,-31, /* [74][0][][] */ -98,-32,-56,-60,90,-63,-13,-37,-25,-85,-7,14,-18,84,127,55,-110,49,34,-8,-30,68,-15,-14,-88,-89,-3,78,-16,19,-39,-105, /* [75][0][][] */ 3,-79,-56,32,127,57,82,51,7,-55,72,25,16,56,-35,8,-70,-24,-41,-48,4,22,56,-35,121,47,12,-56,38,-77,70,-66, /* [76][0][][] */ -61,-37,104,-18,-97,-2,-45,-54,-106,-89,-38,-46,-25,-48,94,8,13,32,61,-19,-30,-19,127,44,-105,-59,43,-118,46,32,-50,-93, /* [77][0][][] */ 73,-32,-42,23,-13,30,66,-42,42,-23,51,57,49,61,20,-109,-30,-17,26,-127,-4,-63,37,-84,0,-13,-19,-58,104,-46,-45,-69, /* [78][0][][] */ -32,61,-6,23,50,49,-21,22,89,-74,-31,10,107,-12,-21,-11,60,18,-24,-27,-23,96,87,-90,-105,-31,49,7,127,-15,-19,68, /* [79][0][][] */ -114,115,56,49,-70,-82,-60,98,55,5,26,47,10,-23,29,-106,34,-39,-2,45,79,47,-6,-58,-16,-6,-118,127,81,12,45,-94, /* [80][0][][] */ -82,-31,-7,82,16,-55,60,33,-2,78,-7,-90,-23,15,-115,127,-62,-26,2,10,-61,14,-45,-45,-17,106,50,53,39,-4,4,28, /* [81][0][][] */ 38,76,15,31,-35,71,81,-66,-109,5,-17,12,-31,-86,-97,31,34,81,3,113,-23,-6,-19,30,-74,80,-25,-104,-127,-66,-30,36, /* [82][0][][] */ 56,23,57,25,118,-53,25,-70,56,30,34,71,127,28,6,85,42,6,-21,37,-14,-69,34,-38,-41,-90,90,12,8,94,74,-36, /* [83][0][][] */ -14,1,-26,-45,5,-25,10,-5,-109,52,9,8,-2,-8,7,127,35,-51,115,72,-119,99,-76,10,34,-35,-3,12,73,2,-1,-54, /* [84][0][][] */ 94,26,-6,-11,107,54,-6,-102,74,83,-75,-14,24,-54,30,-74,45,-39,-55,-34,-25,-44,-26,-127,-48,88,17,89,-25,66,75,-26, /* [85][0][][] */ 84,62,61,-94,3,24,-60,-47,26,83,30,-13,-10,-88,42,1,-22,-9,55,2,81,-65,-44,9,1,-31,-13,-124,-76,-62,127,-21, /* [86][0][][] */ 54,33,38,16,77,-46,-7,-12,-107,-51,-55,33,3,-106,-118,-23,58,38,127,55,-30,14,-17,38,-108,0,21,-69,-88,-113,-45,-21, /* [87][0][][] */ 74,-17,16,36,45,4,-74,47,65,-46,51,127,-29,9,24,-90,-124,-62,-13,45,-113,-84,64,14,15,-49,66,-14,0,110,-62,-31, /* [88][0][][] */ 47,88,-13,9,-82,40,28,84,-95,-6,-53,43,-15,-18,-50,-66,-87,-12,22,-21,-55,18,16,22,24,5,-127,17,24,-113,53,22, /* [89][0][][] */ 43,38,33,28,33,-16,-52,-67,13,-127,-59,21,28,-29,-16,65,-28,-51,14,-55,48,-29,12,17,-46,23,-49,-31,-9,60,-35,20, /* [90][0][][] */ 94,54,81,-112,-42,-4,51,67,18,33,41,-3,69,8,-127,-95,70,-24,60,13,-89,-14,-36,-9,-32,52,45,-8,102,-102,2,44, /* [91][0][][] */ 2,-20,-127,6,57,49,62,-10,29,82,39,-62,6,78,-73,49,-40,58,57,-50,74,85,49,27,16,-13,-39,-75,-41,-56,48,0, /* [92][0][][] */ 79,-22,-2,14,75,77,127,34,15,-69,-35,32,-63,0,-51,-66,97,52,63,68,-42,0,-14,55,88,9,-36,-4,27,-31,-64,55, /* [93][0][][] */ -78,8,9,0,127,-6,15,-10,-18,-48,-34,-10,31,-6,-44,21,-20,44,-9,64,-77,18,-32,-49,13,-16,42,-48,49,81,64,-2, /* [94][0][][] */ 4,-2,1,-79,-48,9,-2,16,-1,-52,-67,28,-12,67,-60,94,32,7,32,98,51,-32,-46,5,72,16,24,-38,19,-5,-127,-121, /* [95][0][][] */ 15,29,34,28,-28,-12,-9,-63,-116,-112,-81,21,-10,-102,-127,-92,95,-79,9,-1,4,31,-38,-77,52,81,95,3,-76,60,-50,43, /* [96][0][][] */ -23,-69,-5,126,93,19,-61,-57,11,5,-14,-26,98,33,5,54,-15,126,20,65,-84,-91,6,-113,104,-127,79,-24,93,101,-33,64, /* [97][0][][] */ 69,96,-6,14,-99,-79,27,58,16,-27,38,-59,-8,-83,127,-14,-31,52,11,-66,-16,-40,-9,-33,23,-21,-19,-1,-36,63,46,14, /* [98][0][][] */ -68,-56,45,-18,-10,15,-29,51,-127,-104,-37,101,76,-48,-121,61,-16,54,-24,60,-68,1,117,80,7,-49,38,49,63,43,-14,-18, /* [99][0][][] */ 73,35,-11,95,22,-66,-19,-42,35,45,44,-113,23,12,-82,-37,0,0,0,-64,7,-19,-98,22,-50,55,-20,67,-86,-127,-95,97, /* [100][0][][] */ -30,-27,103,25,8,56,33,-127,56,-57,68,36,50,-34,-63,28,92,-38,-43,-23,55,38,56,-22,63,8,-21,-17,30,-69,0,13, /* [101][0][][] */ -59,-43,-65,-5,100,61,-67,-99,-90,58,11,61,-29,-42,60,18,2,-40,15,-119,-127,54,-26,-44,-65,24,45,-33,36,-87,-31,-32, /* [102][0][][] */ 37,41,-73,58,-22,-11,-17,-54,89,14,9,127,-32,71,-103,-4,-16,-60,-12,-119,111,114,-32,-6,114,-71,12,89,31,-74,-6,75, /* [103][0][][] */ -62,-2,-101,48,-107,94,109,19,36,75,-42,20,-77,-60,-22,75,-44,2,-51,37,17,-21,22,61,38,-64,127,20,-100,-43,-72,-127, /* [104][0][][] */ 54,-38,84,6,126,10,0,51,-114,1,-29,-2,-36,-76,-98,-32,26,-118,26,7,-41,-37,27,33,-26,69,127,68,73,32,19,-81, /* [105][0][][] */ 43,33,3,-127,81,-51,-36,-9,-86,14,-12,-13,-70,53,-34,11,27,-67,-93,89,-10,-48,-11,-88,38,110,12,47,-49,38,-35,-86, /* [106][0][][] */ -4,-8,-81,-66,-26,127,31,73,10,-7,-22,12,-53,-37,0,-7,-33,20,-83,-73,-46,44,-101,-44,25,23,19,-24,72,-41,9,-2, /* [107][0][][] */ -35,92,-36,51,16,44,-57,31,-18,-10,17,113,-127,-31,-7,96,-18,20,-47,52,-75,-70,-34,-26,35,-23,23,51,38,-17,28,50, /* [108][0][][] */ -18,-27,-54,-31,75,127,-25,27,17,-31,-58,-12,53,-25,-101,-10,2,-26,46,1,83,-10,5,-99,-44,91,40,-6,-4,-3,38,7, /* [109][0][][] */ -1,-127,12,-20,50,-44,5,84,-8,-6,-2,-43,7,-43,-71,75,-51,-111,115,-33,-108,18,-105,8,88,-67,-23,5,16,-26,3,84, /* [110][0][][] */ -84,-42,31,-73,24,-118,-109,-79,-46,62,29,93,-18,-40,59,18,-17,127,-49,-21,64,120,28,-35,-78,41,69,-9,-32,-56,-47,80, /* [111][0][][] */ -49,34,48,73,-44,106,-33,-38,20,3,52,-28,-24,12,-29,9,-47,-9,80,-13,-20,25,-19,30,52,25,-42,-5,35,-43,-53,-127, /* [112][0][][] */ 70,-3,-90,12,29,44,126,12,9,0,55,127,38,-60,-56,52,-48,-46,104,89,98,-82,28,-20,60,-10,-15,-47,90,-44,11,-37, /* [113][0][][] */ -6,22,10,-1,-29,-36,41,23,60,47,-7,1,-99,-17,-47,52,23,35,27,2,-71,-64,-20,61,26,-10,-33,-55,127,0,-16,-5, /* [114][0][][] */ -24,-14,53,127,21,89,33,-4,-54,0,-17,-11,37,-4,-57,40,6,-39,-59,-8,20,-5,61,62,-24,50,-64,-20,-12,75,13,-75, /* [115][0][][] */ 43,43,24,78,26,36,-78,58,38,-21,56,9,67,44,-23,0,28,-93,23,25,14,43,127,-83,-5,42,25,5,47,-54,3,-42, /* [116][0][][] */ 16,4,27,-2,-7,-1,-39,-9,-41,-2,115,14,14,7,46,-5,-46,73,-127,-24,-25,25,24,9,71,119,-66,-58,44,79,99,1, /* [117][0][][] */ -127,-16,22,20,43,-66,6,-125,-60,-4,82,88,60,-9,-94,-29,-32,-32,34,14,-86,-97,13,-18,102,4,125,54,2,-13,49,35, /* [118][0][][] */ 28,16,-91,-45,22,-14,45,-72,80,102,47,100,-12,-77,-51,-98,-59,32,50,-82,-100,-17,22,23,29,-44,-127,16,49,113,10,25, /* [119][0][][] */ -38,114,-34,74,-84,-13,104,-57,-16,111,18,127,-17,24,56,11,61,69,6,109,2,109,35,48,26,43,-19,30,-63,-57,22,-65, /* [120][0][][] */ -67,-6,38,24,-47,-25,32,-55,-91,-3,60,37,38,44,-41,-91,11,-127,61,4,-109,-55,-5,22,-72,-53,-32,-57,31,-55,-64,-66, /* [121][0][][] */ -15,-55,-29,20,-99,-72,0,-44,22,80,-80,-94,-56,44,-22,53,-24,-87,-63,-24,-19,-31,-67,127,-12,9,29,-73,-19,-22,-78,23, /* [122][0][][] */ 101,-65,127,-25,-16,-45,23,44,-122,-82,-35,51,15,21,72,-67,14,3,-55,-50,97,-90,82,46,-97,1,50,43,-72,-105,84,-77, /* [123][0][][] */ -7,60,-66,-45,-67,-56,-5,7,45,-31,-32,-33,-127,-71,39,0,6,14,64,-31,52,-5,-63,-3,42,-56,-62,28,-4,-25,-29,-74, /* [124][0][][] */ -1,-37,4,-19,-61,63,24,-53,3,75,22,8,8,73,7,52,42,-30,11,59,-117,33,-38,122,-59,96,-21,-97,-22,-37,-127,-46, /* [125][0][][] */ -93,77,-21,1,40,23,109,22,22,64,-16,5,-32,16,-127,99,95,28,40,74,-11,33,-30,-42,56,109,-71,22,-110,-30,-35,-96, /* [126][0][][] */ 2,-74,-55,67,22,-75,-51,42,25,-127,-115,-86,-71,-56,39,-32,74,-91,-71,-86,37,-91,-16,82,-85,82,-25,-17,66,-16,125,48, /* [127][0][][] */ 50,9,6,-12,23,-2,-12,-23,33,-9,-7,-56,15,-3,64,67,10,19,-9,54,-91,-12,24,12,-69,-36,-112,19,79,16,-127,-63, /* [128][0][][] */ -24,-41,62,-55,73,-15,-51,-41,-13,23,-57,38,19,-10,-44,-91,-8,-55,74,76,-48,-55,69,-24,55,-51,-32,123,37,-5,-127,29, /* [129][0][][] */ 1,22,46,-4,4,-7,-89,-8,-27,44,-16,-104,64,-2,77,94,10,82,8,68,88,-71,127,92,-34,-95,40,-90,-17,35,65,-11, /* [130][0][][] */ -50,-28,36,65,-33,119,-30,4,-18,55,-33,52,-25,-40,-47,-127,60,51,-47,-26,-37,-2,-27,24,71,4,36,12,-17,12,75,34, /* [131][0][][] */ -87,40,-97,21,42,52,25,-23,-23,-3,127,113,124,-117,-24,31,25,38,13,-40,-85,-119,60,-43,22,-106,-58,94,-30,-88,18,-63, /* [132][0][][] */ 10,68,-31,64,17,-45,28,10,-18,-19,-49,86,71,34,29,-35,62,-49,127,-37,-78,83,6,49,32,-61,5,-18,23,-38,-19,25, /* [133][0][][] */ 78,12,-1,27,-40,-56,-29,-27,67,-58,13,74,-80,45,6,82,-78,42,-42,-33,113,127,-33,-16,-47,8,83,-22,6,15,-33,-29, /* [134][0][][] */ -54,-9,-127,21,11,41,68,-6,-11,-27,-35,2,-45,-48,-38,52,-33,-34,-26,9,-24,47,-10,-57,-25,-49,45,-64,-33,-32,-10,7, /* [135][0][][] */ 108,-64,-127,66,88,49,20,-59,11,71,46,-27,122,-22,14,124,-77,29,-51,-26,-29,45,-67,-51,13,-23,63,-70,81,97,-50,-73, /* [136][0][][] */ -15,19,-5,36,-17,61,-90,-19,46,1,82,38,-32,75,-52,-38,28,-57,-96,39,39,-19,127,-14,-56,21,-14,-59,-46,-40,-96,-2, /* [137][0][][] */ 67,-46,-44,4,-34,-36,-55,5,31,91,-24,25,-20,127,35,-3,-9,-14,16,39,-77,-11,-20,7,91,60,-70,-46,29,-21,103,54, /* [138][0][][] */ -40,127,-7,-70,-58,-30,-6,12,-94,69,-5,38,18,-32,52,-38,-38,77,-8,27,-48,4,65,-79,-2,54,68,-59,73,-39,22,21, /* [139][0][][] */ -44,-49,-36,81,53,19,60,-63,81,88,-81,2,-41,9,-127,-52,-71,11,-103,23,31,-81,73,11,17,-44,103,-69,91,54,37,-35, /* [140][0][][] */ -27,26,70,-83,-51,19,69,28,-2,96,1,-47,-3,27,13,77,108,29,12,-56,55,25,-34,4,-49,-127,92,22,-63,20,93,-16, /* [141][0][][] */ 20,22,66,79,46,24,37,22,-45,-127,-97,-45,50,125,-14,-12,-75,-70,-2,-68,-50,-52,-1,-1,-57,22,0,-48,-44,-61,112,86, /* [142][0][][] */ 28,-27,20,1,-64,25,40,30,43,51,78,67,-1,10,-4,-32,-61,62,-35,-37,-93,-127,-9,43,-2,5,84,72,46,40,63,-14, /* [143][0][][] */ -12,-9,53,34,31,-9,-3,-1,-108,-14,-36,-79,35,8,-2,-127,50,-13,11,62,-7,-58,17,-18,-11,-4,33,-31,23,22,-24,-10, /* [144][0][][] */ 8,-56,-7,74,-8,82,-112,30,-68,-3,62,-80,71,31,49,62,73,-32,73,85,70,32,-80,85,-20,-38,-127,-90,72,48,37,85, /* [145][0][][] */ -55,-73,-111,-78,32,-68,39,121,49,48,97,52,9,63,-127,-28,-70,54,54,-19,6,-94,-41,-126,-14,102,21,-11,-5,16,103,-62, /* [146][0][][] */ -54,108,85,-95,65,-37,25,0,-23,-63,39,-18,56,36,44,-57,-12,-18,7,-54,-79,-43,12,-86,29,-17,-53,127,-14,-32,-11,-33, /* [147][0][][] */ -15,51,-61,36,14,22,2,-9,1,-26,-27,-32,-17,45,-65,14,27,-127,-10,5,47,64,-42,89,1,-39,-5,69,19,16,-7,44, /* [148][0][][] */ -73,2,13,10,-74,39,53,-66,-46,11,19,49,-25,-19,56,40,-103,-63,1,-90,31,91,60,82,98,-15,53,12,66,127,45,-36, /* [149][0][][] */ -6,-18,14,45,55,-6,1,-127,-35,-14,28,8,-27,-26,-62,76,4,-26,-62,-52,16,84,-63,61,-30,-53,39,-109,-24,-71,58,35, /* [150][0][][] */ 102,-39,-9,-50,99,9,-20,-35,-20,-50,-16,-127,-15,105,68,-10,-84,-35,42,10,-17,24,-36,52,73,33,-16,27,-29,-7,-25,-15, /* [151][0][][] */ 21,35,-48,59,33,25,84,-19,100,-51,-2,0,37,83,28,-6,30,48,41,55,-61,-51,24,-22,89,-64,-127,47,6,45,-27,-59, /* [152][0][][] */ 90,-23,15,75,-21,46,103,-23,99,62,-40,4,24,12,-23,-16,17,-37,12,1,-59,36,-59,-7,40,127,-11,-16,-52,62,-45,76, /* [153][0][][] */ -5,47,-40,-53,52,15,15,-43,-67,-7,39,-33,30,42,-46,127,16,-45,-46,3,-14,-68,9,123,-40,-3,48,-15,69,-63,-63,-43, /* [154][0][][] */ 21,25,-73,-69,-18,66,-57,26,16,66,19,12,-58,-93,-65,-10,73,38,-20,-26,56,-127,58,70,-25,21,83,57,18,84,-86,-50, /* [155][0][][] */ -10,37,-21,56,74,-45,45,84,-54,-57,-102,-62,90,56,-59,14,-8,-35,-62,62,-56,-94,127,40,-39,48,49,-60,93,88,85,-13, /* [156][0][][] */ 37,18,127,-27,18,34,-88,-59,0,-20,61,7,-21,40,28,-3,-2,-39,-75,26,-88,-105,90,-115,-43,-67,37,57,57,16,71,-28, /* [157][0][][] */ 86,98,-117,110,-110,-51,-19,-59,34,-111,28,25,19,98,57,3,-43,54,92,-101,92,-127,57,-62,88,-62,-34,-36,126,19,-67,-31, /* [158][0][][] */ -127,-37,-22,88,90,-97,88,-4,107,-113,19,24,-6,-114,-60,-13,54,70,27,80,-10,109,-55,91,-47,-23,-61,-16,45,-58,44,-39, /* [159][0][][] */ 35,-14,-21,4,-45,29,-37,3,54,10,-16,-47,8,29,5,15,84,-50,32,-4,28,-21,32,34,-34,-28,-11,-124,-33,17,-127,9, /* [160][0][][] */ -61,-31,-127,-74,10,-16,22,18,47,-25,96,-113,-111,35,-85,-19,-5,15,23,56,-53,11,66,39,75,45,-29,10,11,35,120,40, /* [161][0][][] */ 46,50,44,-85,27,23,-40,14,56,-36,76,-75,81,-65,-6,28,-18,-5,-19,70,-13,-36,70,-54,87,-10,-30,81,-23,-94,11,-127, /* [162][0][][] */ 82,34,-54,30,-25,25,23,24,-11,30,-30,13,15,-42,29,-30,-49,40,41,53,-13,-58,2,-30,-27,-49,-26,127,-15,74,-113,2, /* [163][0][][] */ 71,31,-6,-83,-40,-6,8,-104,-31,41,44,-54,-37,-20,89,-127,-17,41,9,-7,-14,-37,-11,17,7,4,22,113,-15,-23,21,49, /* [164][0][][] */ -74,-47,3,17,72,-52,-3,-62,-19,-1,28,-78,0,-41,-19,45,-27,-78,-11,-17,4,24,-68,-3,-48,30,65,-78,-33,-127,13,-13, /* [165][0][][] */ 8,-28,-2,-44,-16,-36,78,61,-127,-63,-6,84,11,64,-107,42,-40,-29,-17,2,63,36,29,4,-61,87,36,2,-8,13,3,6, /* [166][0][][] */ 76,47,107,-125,12,-79,-58,-24,-36,92,46,65,6,-59,19,81,-7,1,-21,-27,-74,-127,-21,63,17,-68,-57,-38,-35,-44,-56,61, /* [167][0][][] */ -101,71,69,-73,27,93,10,-5,100,10,13,43,-33,-88,-60,-24,-116,-25,-31,-4,5,-3,7,52,-42,-86,-122,5,-127,-17,16,-58, /* [168][0][][] */ -19,56,31,25,31,17,-97,-26,-25,48,-53,-9,-100,57,-17,-10,-119,-42,10,11,2,50,-22,31,-49,72,-127,-28,8,13,67,-18, /* [169][0][][] */ -44,-83,-8,62,7,10,38,60,35,-6,-91,-16,-23,46,97,46,-43,-68,-20,-28,43,17,-94,-14,30,-8,29,-99,-14,-78,9,127, /* [170][0][][] */ -22,-7,22,75,-87,-25,11,-9,80,42,59,17,25,92,-32,-21,-58,-12,11,-114,-10,-73,-65,-63,55,127,-59,105,-23,-34,41,-46, /* [171][0][][] */ 71,69,94,-88,-79,-30,4,-127,-25,-6,-44,-19,-37,11,-29,-122,-28,66,-24,5,96,33,65,-22,19,43,35,28,-79,5,-7,55, /* [172][0][][] */ -27,38,-26,-102,54,43,-15,3,-35,11,-75,30,-47,-92,24,114,-9,-6,13,-43,51,-119,-41,78,68,21,16,-127,-73,-9,32,-5, /* [173][0][][] */ -2,-53,-73,28,-32,49,-18,-55,29,19,47,-61,-58,-45,16,27,38,25,58,14,12,12,-17,-127,-48,-12,43,2,-25,43,17,26, /* [174][0][][] */ 27,-87,-30,-84,-16,-34,-10,-21,33,-61,-55,-127,-65,-78,59,-46,-65,25,-26,-58,-48,-58,-92,38,-31,86,67,-4,-33,43,19,27, /* [175][0][][] */ 53,25,37,-44,83,-96,-12,-51,-127,-5,73,-3,102,-80,-113,-33,-45,-45,-51,76,28,-33,17,-101,-92,-58,-12,70,-49,98,-61,-2, /* [176][0][][] */ 6,-2,-21,-99,52,-55,-15,34,-72,-62,31,-68,-113,101,-87,-32,49,-94,-50,116,-7,47,24,-62,-20,-29,127,-19,7,0,17,-34, /* [177][0][][] */ 61,-56,52,-23,-35,127,-87,-84,2,-99,101,18,56,32,56,-85,-7,-29,-18,-2,124,65,3,-106,-92,45,41,22,-31,41,-28,-50, /* [178][0][][] */ -3,-5,37,-69,55,-2,65,48,43,-127,67,-52,-3,-106,62,5,-56,103,31,-36,-10,4,-105,-25,-87,42,37,-95,33,-85,-53,-82, /* [179][0][][] */ -94,35,7,32,96,-46,-60,-46,38,37,-60,-8,53,13,-59,-9,5,13,-31,-69,-16,127,-28,-107,-21,-120,23,-32,59,84,61,-107, /* [180][0][][] */ 29,-14,51,-28,111,19,57,98,36,-13,65,33,71,74,28,-34,-54,38,2,15,-3,-101,48,-71,47,-14,5,127,14,14,29,18, /* [181][0][][] */ -8,14,-33,48,2,70,5,74,-18,-67,8,-12,-26,57,31,13,12,-47,-17,28,-18,107,17,27,127,45,-23,-75,33,-11,37,19, /* [182][0][][] */ 44,5,95,-72,0,-64,-46,30,10,55,-4,-29,-11,42,54,-66,13,59,41,6,-123,-21,-42,-39,9,127,21,51,4,16,-35,15, /* [183][0][][] */ -123,-29,-21,26,55,35,68,-31,71,-46,49,45,35,-37,68,-36,16,7,9,-8,24,-32,-127,-12,89,35,74,53,33,8,18,2, /* [184][0][][] */ -92,-45,-55,-127,26,-106,-68,-34,-37,48,-39,17,-66,-23,81,-31,-42,-55,32,-60,-4,11,-13,54,-6,67,13,13,-87,-14,-35,17, /* [185][0][][] */ 57,-88,43,-59,57,72,-4,-12,8,-9,8,127,47,58,7,47,21,58,24,-57,4,-73,-36,12,75,-42,-17,-29,5,22,-67,-64, /* [186][0][][] */ -22,56,-68,-65,-27,9,60,87,53,25,18,-8,-32,-55,30,77,2,53,4,67,-18,-127,11,85,-69,-37,37,-50,-57,-72,5,0, /* [187][0][][] */ 44,-77,19,5,5,17,73,22,-1,74,-14,32,17,127,-30,20,-72,17,-51,86,-46,87,14,13,-33,-27,-44,-75,93,57,94,-26, /* [188][0][][] */ -127,56,1,-103,17,111,47,22,-17,19,19,-108,-100,-28,-11,104,-41,-74,-36,-75,83,-76,13,-56,101,-26,-51,31,41,88,-48,-1, /* [189][0][][] */ -56,86,-12,25,58,85,6,-64,-1,-9,6,43,11,-99,-11,22,36,-36,14,6,-64,-100,127,49,6,-25,-1,7,-10,-43,29,-80, /* [190][0][][] */ -3,-2,-21,7,-20,-56,-81,127,44,-27,-23,32,32,-24,-36,33,44,35,31,-110,-49,-51,101,-14,-10,-79,8,-7,15,105,-12,19, /* [191][0][][] */ -34,127,84,46,-34,13,-30,-15,18,34,-97,-65,27,-65,24,-33,7,93,-44,-118,36,-45,-23,8,-80,-31,18,8,-1,12,-105,-24, }; const TfArray<192, float> quant42_scale = { 192, { 0.0026518607046455145, 0.0031417387071996927, 0.0034545890521258116, 0.0032501728273928165, 0.0021290937438607216, 0.0027650489937514067, 0.0032937871292233467, 0.0032869968563318253, 0.0018533968832343817, 0.002981383353471756, 0.0025912309065461159, 0.0024193560238927603, 0.0038935565389692783, 0.0023146099410951138, 0.0032702425960451365, 0.0026154164224863052, 0.0032849546987563372, 0.0027092865202575922, 0.0027446767780929804, 0.0027398027013987303, 0.0027987174689769745, 0.0019563524983823299, 0.0027499902062118053, 0.0036264800000935793, 0.0025290460325777531, 0.0026429526042193174, 0.0023074361961334944, 0.0032103450503200293, 0.0024678204208612442, 0.0044841333292424679, 0.0023659958969801664, 0.0030754145700484514, 0.0026022428646683693, 0.0016247768653556705, 0.0032573954667896032, 0.0024398164823651314, 0.0027949032373726368, 0.0025699457619339228, 0.0033464280422776937, 0.0025945671368390322, 0.0019720224663615227, 0.002058827318251133, 0.0028511239215731621, 0.0030372559558600187, 0.0021486836485564709, 0.002408905653283, 0.0030156390275806189, 0.0036109916400164366, 0.0025814524851739407, 0.0033781244419515133, 0.0022323117591440678, 0.0028449865058064461, 0.0028996581677347422, 0.0019733346998691559, 0.0021363559644669294, 0.0017627814086154103, 0.0024206223897635937, 0.0017444059485569596, 0.0025818163994699717, 0.0020290750544518232, 0.0021366344299167395, 0.0024013917427510023, 0.0021142540499567986, 0.0023502681870013475, 0.002745357807725668, 0.0027027861215174198, 0.0027388224843889475, 0.0030258169863373041, 0.0019936307799071074, 0.0024560475721955299, 0.0023342950735241175, 0.0020167683251202106, 0.0045975949615240097, 0.0029246218036860228, 0.0024494591634720564, 0.0023002403322607279, 0.0021453716326504946, 0.0028665061108767986, 0.0026246155612170696, 0.0026504884008318186, 0.0033455230295658112, 0.0030512022785842419, 0.0019492146093398333, 0.0027448912151157856, 0.0029640467837452888, 0.0024796007201075554, 0.0023048035800457001, 0.0021890976931899786, 0.0028485169168561697, 0.0042642704211175442, 0.0023306719958782196, 0.0025791737716645002, 0.0029488669242709875, 0.0033686337992548943, 0.0024383622221648693, 0.0024729061406105757, 0.0019278154941275716, 0.0028038048185408115, 0.0026681062299758196, 0.0025100249331444502, 0.003156326012685895, 0.0025184657424688339, 0.0026075155474245548, 0.0025136966723948717, 0.0020726819057017565, 0.0024998330045491457, 0.0028673042543232441, 0.0032872338779270649, 0.0027085216715931892, 0.0024788377340883017, 0.002144230529665947, 0.0033430305775254965, 0.0019590952433645725, 0.0030267001129686832, 0.0031848824582993984, 0.0025707809254527092, 0.0028615770861506462, 0.0024386125151067972, 0.0019920181948691607, 0.0026654419489204884, 0.003332977183163166, 0.002732675988227129, 0.001884118071757257, 0.0025771984364837408, 0.0033589743543416262, 0.0028179127257317305, 0.0021737208589911461, 0.0028199071530252695, 0.0020080932881683111, 0.0022385392803698778, 0.0031553292647004128, 0.0019967674743384123, 0.0031910890247672796, 0.0026306682266294956, 0.0034602263476699591, 0.0018566243816167116, 0.002847195602953434, 0.0027592966798692942, 0.0027982254978269339, 0.0023508421145379543, 0.0030048072803765535, 0.0021740060765296221, 0.0022957574110478163, 0.0033654128201305866, 0.0022603487595915794, 0.0020973961800336838, 0.0025457092560827732, 0.0039948052726686001, 0.0025706784799695015, 0.0023123605642467737, 0.0030319204088300467, 0.0021233856678009033, 0.0029485779814422131, 0.0033181153703480959, 0.002229973440989852, 0.0019672280177474022, 0.0024232210125774145, 0.0025176315102726221, 0.0020271607208997011, 0.0034374031238257885, 0.0026178383268415928, 0.0032640958670526743, 0.0025806238409131765, 0.0023743922356516123, 0.0025380859151482582, 0.0029803223442286253, 0.002142714336514473, 0.0026625881437212229, 0.0025618819054216146, 0.0023762800265103579, 0.0024862028658390045, 0.0022952093277126551, 0.0028968369588255882, 0.0038286838680505753, 0.0025771574582904577, 0.0020716672297567129, 0.0018240829231217504, 0.0025047219824045897, 0.0025670197792351246, 0.0025062065105885267, 0.0025198787916451693, 0.0026964526623487473, 0.0028695841319859028, 0.0029660218860954046, 0.0018394209910184145, 0.0039288555271923542, 0.0035217569675296545, 0.0027471303474158049, 0.0024801187682896852, 0.0031401172745972872, 0.0042811725288629532, 0.0024830198381096125, } }; const TfLiteAffineQuantization quant42 = { (TfLiteFloatArray*)&quant42_scale, (TfLiteIntArray*)&g0::quant27_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data43[32] = { -8130, -6810, 12358, -5730, 5971, -3546, -2368, -2533, -4648, 8731, 13788, 3973, -19170, -3134, -2651, -2569, 2921, -8197, 5697, -12933, -174, -4358, 4294, 6145, 8459, 5787, 3690, 7467, 5527, -753, 4858, -20301, }; const TfArray<32, float> quant43_scale = { 32, { 5.7801338698482141e-05, 6.3489707827102393e-05, 5.2765110012842342e-05, 4.7853496653260663e-05, 5.6244829465867952e-05, 5.219154991209507e-05, 5.3517182095674798e-05, 5.9417670854600146e-05, 4.3982301576761529e-05, 5.1412309403531253e-05, 5.8715264458442107e-05, 6.0517555539263412e-05, 4.2910214688163251e-05, 5.1560742576839402e-05, 5.6337303249165416e-05, 5.1448474550852552e-05, 6.1837206885684282e-05, 4.9628477427177131e-05, 5.5548094678670168e-05, 4.8486643208889291e-05, 4.6954348363215104e-05, 5.807168417959474e-05, 3.8856338505866006e-05, 5.6409957323921844e-05, 5.0880935305031016e-05, 4.5143351599108428e-05, 5.0933285820065066e-05, 4.7259683924494311e-05, 5.5944135965546593e-05, 4.9377569666830823e-05, 5.2588664402719587e-05, 4.6780492994002998e-05, } }; const TfLiteAffineQuantization quant43 = { (TfLiteFloatArray*)&quant43_scale, (TfLiteIntArray*)&g0::quant31_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data44[32*1*1*144] = { /* [0][0][][] */ 3,-49,-39,-42,-16,-40,-8,-3,-11,33,3,-16,-67,-6,-42,17,22,-39,-36,-69,13,32,-24,-5,77,35,70,-93,-1,-33,-29,23,0,-50,-11,68,53,-87,-63,56,19,-22,-53,35,-6,-81,73,2,-34,10,-68,127,-86,-8,65,-14,-65,-65,12,7,-3,40,-30,72,47,24,20,60,50,-27,-30,62,-24,39,-116,16,7,38,23,29,23,77,69,20,9,-40,-8,77,47,33,-51,-20,91,42,-22,-25,-66,-57,-88,12,-65,-15,19,41,-80,-39,40,-24,-18,43,52,-64,-44,34,-45,72,-45,-13,22,-62,-8,31,32,-42,12,29,58,79,40,-68,60,3,72,-26,38,-21,52,99,-25,49,20,85,75,5, /* [1][0][][] */ -13,-20,-35,41,-6,-27,7,-75,-19,8,-1,-6,2,4,-33,15,-26,-1,20,21,20,16,-20,37,41,23,28,-20,-56,0,-56,82,20,-51,45,33,3,21,-5,-16,2,-127,71,-64,-17,-71,9,34,33,19,-14,-14,27,64,23,-22,33,34,-15,-9,-12,-82,-7,14,7,19,-43,-56,63,73,15,93,25,91,-98,26,-56,33,110,24,32,34,44,49,-11,61,43,36,-122,9,-34,81,-49,-56,-53,69,-15,23,37,-67,-64,-8,40,6,42,-1,-16,-16,29,-48,-23,46,-22,-19,-33,-18,48,3,120,33,1,-46,11,-7,-85,16,-22,-22,-41,51,-21,41,-73,1,34,-48,-20,20,32,-43,37,41,20,50, /* [2][0][][] */ 33,12,-71,39,79,18,-13,-25,73,10,-6,-27,-42,38,-8,40,-44,-2,12,24,-52,44,-25,30,-83,-57,30,34,28,-87,-26,-2,36,-58,-39,-54,-37,-2,69,-4,16,-3,-59,-96,13,-14,25,-27,-84,37,-28,-14,-80,-1,-39,-18,35,22,27,-49,-104,2,14,-58,27,-24,-67,86,-20,66,-39,31,-67,4,-46,-8,-16,96,-44,-8,-13,-97,127,-27,108,-79,25,-10,11,-10,-3,-71,-30,6,-17,-62,-4,-20,25,-76,-18,37,-38,50,53,19,114,14,68,83,-67,-4,-9,-57,-43,-20,30,-59,-96,-79,45,-23,-43,-76,-45,51,-40,32,-6,-27,13,101,-56,28,34,52,-18,15,-27,-13,8,-40,30,9, /* [3][0][][] */ 29,-83,41,-12,127,-9,-23,8,34,-38,23,39,-59,-2,-51,71,67,-13,-69,-6,-46,-1,5,40,-41,-18,-87,-9,64,100,-14,40,16,0,-20,43,72,80,-26,4,2,1,63,16,-36,45,-85,26,56,19,-26,15,12,27,-76,-11,20,-67,100,-90,39,-108,15,31,40,18,65,-13,-53,-56,-16,-95,7,19,-85,72,70,93,-3,-42,98,-22,-24,21,-22,13,71,-54,34,52,-56,30,103,-104,-62,-75,72,-10,-91,20,5,22,-15,-7,74,90,77,81,23,11,-96,67,-13,53,42,24,-13,-45,60,-61,-43,18,8,-62,-4,-4,-6,-45,-70,-76,18,15,-59,49,65,88,3,-26,-54,21,3,-75,25,65, /* [4][0][][] */ 11,52,24,-2,1,83,23,-19,56,70,43,25,60,18,85,-44,97,-74,-47,-7,-54,-75,-46,-66,-76,-30,-127,53,-24,76,78,8,66,14,-11,-11,51,-75,13,-25,13,-41,-122,-56,10,28,-68,6,-27,-12,97,76,4,-16,25,-41,58,67,-27,-4,-19,-51,-19,-73,-67,-16,-22,34,-11,37,19,-12,-16,31,-56,-73,-20,-7,22,4,-39,-6,-11,75,62,-103,-23,-3,-19,-30,80,8,16,-89,-54,-40,26,44,-45,10,51,41,-67,33,-1,-19,-56,9,-49,48,47,58,-105,59,-74,64,-23,-75,30,-36,-82,4,21,-2,-33,-44,-1,93,-36,106,28,83,55,-37,-45,29,35,-7,23,11,-87,49,-97,32, /* [5][0][][] */ 88,52,-9,-6,4,29,59,40,-6,21,42,-28,51,-21,9,-37,38,-3,26,-50,-25,-80,26,-38,103,-68,-5,-57,-40,-45,-59,55,-20,-19,41,-35,96,-47,-19,-26,36,-26,16,80,2,52,-42,83,-34,-15,71,57,-77,-30,-53,-46,-4,36,15,70,9,2,-8,5,0,18,-106,40,37,-98,-54,-50,-29,-28,-15,8,-4,22,74,28,-28,40,-6,60,14,79,-33,-77,-89,31,-100,-18,76,-32,26,21,-62,-45,-34,-10,127,-5,-78,38,11,37,-18,29,7,-3,-49,-38,9,-34,39,95,-56,97,-32,49,-67,-23,-2,27,65,40,72,32,-4,41,32,0,-20,-54,49,-19,-21,-53,47,38,31,46,-3,5, /* [6][0][][] */ 40,-48,-6,48,24,-61,-62,-5,-40,13,-127,29,37,-71,-35,-31,32,-40,78,-82,-89,-16,16,-110,-46,-60,-15,-76,-76,-19,-82,14,1,-3,64,61,-7,8,56,32,-8,-2,39,-25,-73,61,10,37,-28,60,-36,-127,8,-47,-51,-3,79,81,19,36,73,-44,64,-8,-85,57,61,96,-25,65,94,-32,-2,-54,-89,37,-5,-62,-8,53,-51,66,-32,10,52,23,34,13,2,26,-18,-69,63,55,-6,87,64,44,64,35,103,-6,22,-15,-23,1,7,-55,60,38,-28,97,21,124,-34,-56,29,-11,-62,-44,-14,0,68,-40,56,-16,64,45,10,-85,16,-35,43,10,13,-88,-56,4,-8,68,18,2,-94,-71, /* [7][0][][] */ 88,24,-32,-38,37,-54,-33,61,-75,-15,10,0,-44,-14,127,78,4,-4,29,69,10,-2,-19,27,49,21,40,-67,16,3,-72,-26,25,69,-21,67,39,56,-61,48,30,-49,20,55,3,17,-31,25,52,-10,-16,-28,-71,-59,17,-32,55,-19,-9,-3,-24,-26,4,44,-42,-15,-43,-5,-49,-28,-10,101,-28,-22,29,-82,-17,14,3,-75,3,3,-1,-54,41,15,39,-13,-59,9,-70,77,-1,-1,-2,15,31,38,-8,-27,-53,3,-9,-64,49,34,42,12,-68,75,28,-55,11,28,13,-40,37,-18,47,-42,-17,-59,-38,6,-18,59,-60,11,-46,29,-25,15,48,-27,-55,51,92,-32,-83,-18,36,-9,-10,-29, /* [8][0][][] */ -66,-9,36,53,101,63,37,-125,52,0,-110,14,3,21,6,45,17,72,-44,-4,33,-8,12,-57,59,-41,-61,86,28,-72,51,107,1,-35,-123,-16,30,10,0,-14,-8,101,-42,11,35,1,41,18,-16,-11,-16,-54,6,-20,-93,-46,37,-31,-1,-41,33,-88,53,21,-75,-3,35,-17,-6,39,-73,-35,19,-61,-43,-33,3,-40,-34,38,56,-76,52,-127,40,-15,-58,4,41,-59,-44,-4,7,117,2,18,-16,-67,69,103,-56,-31,-38,-64,31,24,-1,73,-27,95,-5,-26,-10,-1,57,0,6,-20,77,-80,9,25,110,87,-124,-35,29,-77,-14,22,-61,97,38,112,38,40,-51,-29,124,30,-23,10,38,38, /* [9][0][][] */ 13,-12,-18,70,-127,6,37,-45,20,41,6,-57,64,25,37,-56,-20,15,9,-44,-36,-1,20,88,0,-45,-56,-38,55,22,-33,-79,13,-27,10,-4,11,19,-47,10,-15,2,63,-15,16,36,-9,-28,1,46,97,-48,37,-37,69,-16,-57,-15,-13,-24,-40,-48,-10,-65,44,-12,-83,-40,-2,-42,-66,-36,-41,26,-14,-4,6,51,-43,-1,58,55,-56,-73,-26,-57,-22,4,-23,2,5,3,-10,73,86,30,13,22,23,39,-11,-5,-47,29,49,-30,-56,15,38,-62,-29,41,-9,4,-36,90,-17,-53,-19,31,14,46,20,-63,-62,50,45,8,-33,-7,-29,-34,-13,26,-68,-18,-2,7,-5,46,62,9,-43,29, /* [10][0][][] */ 43,11,-25,5,73,-29,17,-40,-33,-12,-52,-12,-90,-12,39,-24,21,-23,-16,-52,-62,-84,88,-25,22,14,27,-62,-35,56,2,-40,5,-11,-12,-15,-127,-64,-10,-24,16,-35,-22,-78,30,35,-54,13,44,-92,-12,20,-7,-58,-89,-34,-101,10,-16,-4,17,40,9,-4,-17,-13,-5,-67,-19,-23,-58,-20,15,-33,-17,-106,-9,65,-39,-9,-57,20,-1,65,115,21,-17,84,-18,57,-7,-103,15,0,126,86,-14,-34,-75,-5,51,-46,-27,-38,-46,48,11,-44,84,18,24,-28,-49,58,20,56,-35,24,26,68,-70,-35,49,-25,-47,-31,3,95,-80,57,31,84,7,53,62,-47,-51,-42,20,-55,7,26,39,-12, /* [11][0][][] */ -36,43,-11,-11,41,60,-17,67,-56,-7,-12,-45,-62,-22,54,25,33,-67,-57,26,29,14,-59,14,24,19,-33,-17,54,7,53,62,-39,-47,20,97,32,33,-44,-12,-3,-13,29,17,54,-17,45,49,43,-15,-56,-47,42,-43,34,-10,-67,-32,38,48,-38,-62,-24,-60,-55,-75,-39,2,24,38,-19,63,92,-38,8,8,-2,-39,2,35,20,104,-31,29,15,56,-33,6,72,-38,4,27,117,-88,-30,-75,-26,-36,-4,-63,39,41,14,85,1,57,34,-57,-16,-46,-20,45,19,-68,39,-75,28,36,-20,-43,3,-4,13,-59,-55,-61,-26,8,42,87,-29,-53,-14,41,-31,-33,-58,4,-48,22,-127,-10,33,12, /* [12][0][][] */ -105,30,30,37,-42,-55,36,109,36,17,-109,-42,-43,7,-50,29,-4,-13,-62,39,101,6,-42,89,75,-48,-53,-57,54,49,5,65,-10,13,-2,-65,112,34,-17,87,24,-55,-50,-87,91,60,89,-122,40,5,81,-2,-117,21,-5,27,28,13,13,28,-70,-86,-23,41,-66,14,79,62,31,118,-1,-67,97,-23,28,10,7,8,13,-8,11,-30,38,16,64,53,-40,31,26,3,43,30,69,106,31,-5,-61,-69,37,-108,86,45,34,23,-40,20,-10,-5,50,-127,-51,-42,61,-11,-10,7,-59,66,54,99,-2,-51,-37,-8,114,57,-36,-59,2,20,32,121,47,48,50,-102,11,-62,60,59,2,-102,-51,112, /* [13][0][][] */ -16,10,-5,-27,22,-34,4,-13,-49,-80,12,24,-30,3,-53,4,7,-11,-10,-15,4,10,-6,-29,14,51,-94,57,63,-12,-65,21,-22,-76,-53,-2,-2,58,-86,46,-54,14,-36,-35,-72,-10,86,72,9,9,127,-21,36,-7,-52,-75,75,-46,-64,7,55,-33,-8,29,-27,4,16,52,-93,57,-32,18,15,-4,53,-14,68,-32,-29,-45,68,34,-9,-25,61,-95,-75,-33,-35,20,-52,-18,20,-59,16,-5,12,27,-40,63,-36,22,-21,44,15,49,3,64,7,18,-1,-51,102,45,-8,-33,-52,-29,44,1,-26,16,-7,8,23,-16,73,-57,76,7,27,24,31,-74,28,55,-44,106,13,9,36,4,-28,47, /* [14][0][][] */ -74,30,43,42,3,14,-31,79,-108,-50,98,48,-68,43,-15,-9,23,9,-66,-32,-61,54,-36,-45,-30,-7,-55,-5,-9,42,-73,-39,-23,-16,-39,-84,-17,8,0,29,1,33,-127,29,-2,-35,-71,-41,16,-12,3,-35,-81,38,32,19,30,70,30,53,86,7,-17,-6,5,3,44,-7,-16,41,23,79,72,12,-7,27,-58,28,98,33,19,-14,12,27,-12,44,37,-34,-40,0,22,-29,24,7,-16,30,21,19,-53,-52,24,51,10,36,81,-60,-41,32,1,11,32,-56,12,-5,-22,-48,4,19,-47,46,73,3,16,-95,-14,28,45,53,12,-33,-13,-45,-9,43,-17,38,-25,28,97,-90,-15,-20,77,3, /* [15][0][][] */ 14,-12,58,9,14,65,0,20,14,-7,10,-61,-16,-9,-44,-22,-46,51,17,-21,84,-57,3,-49,58,-10,78,-63,-13,60,47,-61,34,-35,-57,61,-32,18,13,-23,-19,38,-11,-85,-50,-56,5,-53,54,59,51,22,-55,19,-38,-43,13,38,-5,44,53,36,16,-4,-13,-19,-35,-78,-7,5,-20,49,-29,28,30,-7,55,-45,37,-34,-7,20,46,40,32,27,-35,10,59,48,1,-41,12,-60,-54,-90,37,-127,28,48,19,-31,6,17,11,25,-11,-5,-43,39,-43,39,-29,44,-13,-7,6,-28,23,41,-12,17,14,-46,-64,-27,13,41,-29,0,-34,25,-6,-25,43,-1,37,-5,59,1,36,-83,8,17, /* [16][0][][] */ 10,-100,-3,47,-60,41,19,26,45,11,29,-6,3,-82,-10,-1,20,-41,38,55,70,55,46,-35,-33,-96,50,-13,-27,-21,-2,-36,-35,-50,33,-30,54,12,-15,-47,17,-59,-25,0,34,-54,8,-36,7,4,-24,-44,13,59,-118,17,-11,12,27,43,-23,-24,-18,-4,77,1,27,19,-105,-10,-43,-15,-24,-28,-60,-24,62,-66,50,-47,-12,-26,-49,-30,16,41,9,19,-91,-29,35,-9,47,23,7,-30,41,-30,127,-32,-31,51,30,32,38,20,-10,43,27,4,-6,25,105,29,37,17,-44,-2,21,-5,62,-41,19,-56,-3,-75,-35,63,3,10,117,-48,-46,-42,-82,28,-23,8,-35,-30,-87,46,44,46, /* [17][0][][] */ 46,66,56,-17,64,4,20,-45,-78,-97,-34,-2,31,-5,-28,-39,0,-22,-25,127,-45,7,68,-2,16,-20,67,5,-14,-51,-27,32,-4,10,42,0,-59,-96,-11,60,69,-64,-2,48,-9,62,24,-38,52,-31,61,75,62,68,-86,36,4,25,8,-110,2,-24,4,100,-89,-17,76,-4,46,-75,82,2,-67,16,18,18,19,34,47,44,20,-67,17,-2,-35,5,72,-24,-7,21,7,13,0,60,-64,-54,33,-51,-15,11,-27,-49,-35,-77,6,9,-54,43,27,-1,-33,-6,-8,-36,-1,27,40,-24,-60,72,104,65,53,-23,-60,31,-43,101,-6,-1,-2,55,35,57,58,-26,-70,19,-61,-22,19,-29,-15,43, /* [18][0][][] */ -85,-39,-62,6,38,37,-51,23,54,-65,2,-28,-23,43,69,9,-16,22,113,-19,4,-3,22,26,48,-61,23,54,-84,11,-75,-51,3,-95,67,15,-1,-45,12,-13,10,105,41,31,10,-40,-88,-50,53,100,66,-38,-22,-29,-32,-64,17,59,-26,31,15,61,-18,18,-17,-17,-81,-44,60,63,5,-127,2,27,-63,-13,43,59,-55,23,17,26,61,52,63,-29,60,49,-45,33,45,46,-94,93,-54,-10,-49,-82,-93,-19,45,-8,1,26,-6,23,-63,44,-72,23,-17,-75,39,48,-73,3,-38,38,-8,-53,5,-27,-3,49,82,-50,-28,-100,19,6,55,-124,51,-98,8,27,-20,1,-66,-53,0,47,16,36, /* [19][0][][] */ -42,-54,80,48,42,1,20,-27,-21,12,57,-21,-32,24,8,-23,60,-31,33,94,-56,45,65,-20,66,-46,-25,-57,-43,-13,-41,-14,-2,79,7,-20,3,26,-19,-18,2,18,-82,-38,67,60,51,-48,-38,11,11,76,-73,94,-24,-9,24,24,-65,-3,44,38,-21,-22,57,-59,-17,53,31,16,41,56,-9,3,74,-6,-48,-50,-100,54,-18,127,-16,-78,54,9,-62,22,45,-5,9,-20,48,9,63,-64,14,62,30,29,-31,40,-21,2,17,4,44,20,78,18,-47,22,51,-15,18,14,-2,-59,33,-64,0,-12,30,-8,52,-28,-56,-47,-10,-6,-46,-99,-39,37,-33,-33,17,78,-34,-26,13,96,19,62, /* [20][0][][] */ 87,37,-95,-66,-22,49,30,51,-35,61,-57,1,-27,-93,-18,-48,-26,116,-44,-17,16,-22,-81,-23,-47,-90,-49,55,-55,46,-31,-25,12,23,33,22,-8,41,22,20,3,26,5,-26,-38,25,13,-91,19,47,19,60,30,-33,-26,-12,-19,-115,-42,74,-19,33,21,-5,16,60,18,41,46,-91,28,-42,-6,103,-4,-17,39,-50,7,81,67,59,-2,-31,29,113,45,-110,101,-39,0,12,5,-35,-41,20,91,-28,-115,42,-33,72,8,-20,11,5,19,-66,-43,11,-27,-5,52,28,77,-35,-14,-23,30,98,22,-122,-60,91,-16,33,24,46,52,-25,-71,-103,-28,-36,42,51,105,-53,-74,-127,47,44,-27,22, /* [21][0][][] */ 45,-11,0,51,37,26,-18,-64,20,4,-29,9,-40,8,-12,-127,-2,65,44,8,-12,-42,-22,-21,33,107,-60,50,-36,-2,23,-72,48,4,82,38,20,58,-36,127,46,-10,41,12,-74,55,-25,12,12,5,-14,-69,1,-21,38,44,-45,64,27,42,37,-9,43,-19,2,10,-29,100,13,24,42,-18,-27,-48,-53,-97,-11,29,-43,-15,-19,7,-36,26,-76,-8,-52,-2,19,23,25,-64,43,-80,-16,28,10,-41,-81,53,-38,-49,-14,-51,-56,-7,28,76,-50,-23,-24,-36,-6,25,38,15,25,-16,92,11,43,-55,55,-14,-27,15,23,65,-12,37,14,40,10,46,-35,-26,6,17,22,13,-6,-23,60,-40, /* [22][0][][] */ -4,-30,-4,30,84,2,-12,6,27,20,18,9,85,-86,-9,40,79,-22,65,100,39,7,-69,-27,9,-6,-72,-102,53,-91,-29,13,23,-82,-64,-84,45,-62,-7,-6,115,63,-127,7,-22,-12,71,-8,35,-30,-54,29,3,63,21,54,-43,-41,-35,19,43,27,12,8,27,-86,-47,-47,-75,2,-26,24,-17,30,11,-2,-81,14,-68,-30,60,14,-29,67,-10,-7,41,-34,38,-36,1,90,78,-45,21,-25,1,17,-80,-56,7,4,31,-49,75,34,-72,-36,2,22,-38,71,49,-48,34,-83,14,103,30,49,-75,40,57,19,-47,22,-21,-2,13,-38,-114,-59,-23,-82,-17,-78,50,-69,66,17,42,44,-50,32, /* [23][0][][] */ 78,-65,34,28,-42,-83,-15,35,-23,-61,33,-8,-91,-35,-20,-51,-48,-18,-73,-55,-3,22,-79,-69,65,69,30,9,-8,-48,58,-30,-44,-63,55,-40,-2,-24,-19,-24,38,-4,25,62,-34,-63,-52,9,-3,24,-37,23,79,103,-93,-22,10,-80,34,57,48,-39,28,-3,50,-1,24,34,-21,71,11,-37,-9,-17,12,-34,-18,-72,-57,29,15,17,52,44,-1,52,20,-12,-47,28,-43,-19,-53,49,11,-55,-104,-40,51,22,-5,-16,-6,50,17,32,-75,-57,-28,127,-45,16,-20,-32,11,-59,-82,52,29,13,71,12,-33,-48,-12,-71,4,78,-23,-63,29,91,-55,-61,11,61,27,25,6,-57,71,42,-49,-41, /* [24][0][][] */ -2,15,80,-52,0,40,-29,44,6,-25,40,-15,-60,-70,1,14,24,-26,-24,37,-40,-30,-21,75,-30,114,8,16,-40,-35,24,-9,-16,5,41,-29,-6,27,34,-35,-127,-104,-25,74,68,28,-97,32,5,-10,-12,-51,24,53,-72,28,-40,-70,-43,-69,-28,32,16,-16,-30,26,64,-113,-41,16,-25,-60,3,35,-76,-30,59,-117,-43,29,14,-6,112,-25,-2,-22,14,-42,16,-59,-21,-56,6,-5,-4,42,-13,-39,-17,16,23,-39,7,17,16,30,40,-18,-15,62,-38,1,-12,37,-62,-37,74,51,-52,-25,-13,48,27,7,34,52,-50,40,13,-44,-5,-52,-17,-63,8,-39,0,58,104,-73,-11,-34,11,25, /* [25][0][][] */ -98,-66,-43,-64,12,28,-95,4,86,72,-22,33,-47,-60,18,43,12,66,30,-47,-13,65,24,-29,-35,-15,-127,69,29,2,48,-25,-119,25,-16,-41,-48,-49,-54,60,-11,-95,122,109,54,-18,-70,-36,-32,-13,-115,-71,-81,-47,11,-28,-7,-4,-55,53,29,-85,77,11,18,66,64,-17,-12,-23,-34,78,124,-68,-80,47,10,29,49,7,-111,-26,79,-19,50,-107,-17,-29,0,-2,58,-16,85,-51,-38,103,-1,-19,-21,43,-33,38,33,-60,15,-13,-7,-74,3,46,-41,-10,-28,-104,33,24,-38,57,78,91,-40,-3,-46,-18,-17,-34,57,2,16,-68,-11,-17,-42,21,41,-40,-121,86,-63,110,60,85,-20,111, /* [26][0][][] */ -60,-2,37,-91,-21,-8,-7,-107,64,-26,-50,-33,-24,43,62,-40,-19,28,61,-14,-35,-95,-20,-127,-48,-32,34,17,4,50,-33,-13,-53,-49,-20,-34,110,86,-44,19,-63,-56,-19,-67,53,-19,47,56,-58,-65,-23,113,13,-6,12,-22,-52,-58,-74,60,28,-36,35,18,63,31,36,73,32,41,-100,107,2,-97,-80,72,69,-7,104,61,-3,-63,87,8,-12,89,-59,-13,-35,-73,52,43,-22,30,-3,29,56,38,-56,-13,-40,2,-33,17,-24,53,-69,12,-2,89,-34,-49,63,-63,28,57,38,94,-19,126,-44,75,-76,-7,-40,-39,-18,-15,61,-23,12,22,48,20,-97,-85,37,-81,-79,87,-25,-89,-65,-4, /* [27][0][][] */ 13,29,1,-29,-12,21,-11,-127,42,24,38,32,-24,23,-30,27,60,43,-8,85,12,45,-88,-42,-48,-127,0,7,45,12,-37,-18,-18,3,13,43,15,44,-10,64,44,-62,-105,42,85,44,-25,71,23,-14,9,12,8,-22,-63,-20,32,82,67,-53,-77,53,-81,-7,-12,-37,22,54,-42,72,30,-99,46,-103,32,-69,-12,-22,-65,4,39,-46,23,-6,-29,-42,77,95,-69,-68,-75,-86,36,-95,53,-17,-91,53,-42,-17,62,-39,43,-46,-31,10,44,32,-79,18,39,-50,-79,-43,-66,-58,-5,-43,15,54,-51,-32,-63,54,20,-6,57,11,-31,0,-60,-36,-30,66,-40,-16,-2,63,-10,78,123,83,-73,18, /* [28][0][][] */ 17,13,40,24,14,-64,64,15,7,23,-51,49,-41,63,-25,50,34,42,49,46,127,-86,20,5,41,-77,-70,25,-76,2,10,36,20,60,-63,-9,-40,-40,-2,-17,-52,28,28,-55,0,14,-89,-2,12,66,27,33,68,-28,33,0,-77,-12,-17,48,48,-56,21,9,-4,-20,-66,-24,-17,59,10,-39,-55,-6,46,91,42,16,-33,-56,-4,98,-58,-60,-84,-54,-54,-46,11,19,35,-26,14,56,-58,25,-20,-35,92,-15,33,-11,-4,-30,2,-49,12,-60,12,25,11,-9,14,-48,22,-85,-11,-16,-50,-2,-91,36,26,13,-123,10,2,65,32,-51,21,-12,-18,21,25,-1,-30,43,-8,17,-19,28,44,-59, /* [29][0][][] */ 27,-29,22,-20,50,115,67,-31,57,39,40,-36,-86,-27,-65,-38,-34,-70,2,66,27,13,17,25,40,57,-104,-6,-46,79,-7,55,49,42,29,6,9,57,-20,13,-52,56,-8,-24,57,19,-17,96,-63,-39,-36,-27,-34,34,-73,13,63,-33,64,11,-16,10,-41,31,29,-19,62,-68,-8,-57,-87,22,12,71,30,-11,-14,28,-66,-5,8,-107,-37,-72,16,-3,-38,81,-45,-17,17,43,-10,127,3,-44,78,16,-13,-22,47,-95,40,-13,-27,22,-7,-16,-99,11,-21,-3,-46,2,-42,6,30,-31,-83,-1,32,-63,4,-127,-35,60,12,114,15,19,67,-52,13,59,28,-76,55,-19,-36,51,-53,-42,13,42, /* [30][0][][] */ -41,-71,74,70,15,-98,94,-27,-66,8,-85,91,-34,98,-50,30,59,-50,-60,21,18,50,31,-13,-55,39,-41,54,19,25,8,-16,-37,39,48,-6,91,22,18,-44,61,-55,102,8,80,21,99,-9,7,-51,2,9,-13,-5,-10,-9,82,-11,-40,17,2,5,-3,1,-90,38,-127,91,-38,-45,-48,-40,-57,12,-16,-20,-34,-54,8,-40,-37,16,-21,28,60,27,18,-85,-53,-29,-98,5,53,88,41,-16,12,27,-54,-26,-84,-22,-5,29,-24,-2,70,-35,22,42,-40,-21,27,-42,17,-65,-62,-6,22,37,-38,88,-89,-21,26,-36,-25,18,77,51,-38,-57,4,10,-73,58,-78,18,8,47,-56,-65,35,56, /* [31][0][][] */ -58,-27,-3,103,16,14,-12,68,51,-23,-23,-40,51,-59,28,-63,-25,36,-21,87,-24,126,19,32,-4,11,-30,-45,-7,106,-40,-99,7,63,-127,-87,-77,-32,-34,4,25,-34,51,-7,-56,-69,49,55,-29,-23,3,71,90,61,-15,-12,-1,28,84,56,-11,24,11,12,-51,31,82,29,41,73,9,-56,-42,52,-31,58,-72,26,74,-43,-45,14,-24,-31,18,-10,-19,-19,29,40,-24,-1,-7,62,-40,9,-47,16,8,64,68,74,-85,-52,23,-4,-11,77,-13,16,13,-34,34,53,59,-56,65,37,-44,-8,73,87,39,62,51,42,87,-36,70,-20,23,22,-25,-39,-29,-62,12,77,58,-97,-11,-7,-89,94, }; const TfArray<4, int> tensor_dimension44 = { 4, { 32,1,1,144 } }; const TfArray<32, float> quant44_scale = { 32, { 0.002456556772813201, 0.0026983125135302544, 0.0022425171919167042, 0.0020337735768407583, 0.0023904051631689072, 0.0022181407548487186, 0.0022744801826775074, 0.002525250893086195, 0.0018692477606236935, 0.0021850231569260359, 0.0024953987449407578, 0.0025719960685819387, 0.0018236840842291713, 0.0021913314703851938, 0.0023943353444337845, 0.0021865600720047951, 0.0026280812453478575, 0.0021092102397233248, 0.0023607939947396517, 0.0020606822799891233, 0.0019955597817897797, 0.0024680464994162321, 0.0016513942973688245, 0.0023974231444299221, 0.0021624397486448288, 0.0019185923738405108, 0.0021646646782755852, 0.0020085365977138281, 0.0023776257876306772, 0.0020985465962439775, 0.0022350181825459003, 0.0019881709013134241, } }; const TfLiteAffineQuantization quant44 = { (TfLiteFloatArray*)&quant44_scale, (TfLiteIntArray*)&g0::quant31_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data45[144] = { -1074, -2992, 189, -965, -1428, -909, 496, -790, -1184, 4994, -287, 2809, 541, -1298, -128, -908, -1586, -1552, -1627, 267, -1357, -1941, 1318, -933, -1143, -1343, -786, -374, 9012, -1374, 314, 70, 1049, -478, -1506, -248, -55, -1942, 642, 6239, 664, 429, -1791, -4405, -622, -232, -909, -38, -1324, -48, -824, -718, 2873, 226, 6309, -580, -847, -465, -268, -87, -2800, -1015, -1101, -496, -2648, 4563, -475, -608, -264, -1305, 2578, -664, -1000, 1269, -1562, -495, -1759, 14, 1199, -1084, -125, -416, -479, -705, -1796, -1380, 4293, 3183, 1003, 2755, -1305, 3280, -1733, -1263, -1270, -749, -257, 5200, -115, 4406, -1934, -4342, -295, -848, -1226, 2892, 11, -689, 19, 3329, -1235, 206, -2, -3279, 470, -1046, 107, -414, 204, -3649, 7789, 2680, 3899, -1391, -484, 267, -475, -147, -749, -113, -173, -291, -1226, -1664, 369, -3178, -2208, -837, -131, 355, -2550, 743, -1170, -1463, }; const TfArray<1, int> tensor_dimension45 = { 1, { 144 } }; const TfArray<144, float> quant45_scale = { 144, { 0.00027553303516469896, 0.00019433042325545102, 0.00022139598149806261, 0.00026232886011712253, 0.00014850340085104108, 0.00014092742640059441, 0.00013841927284374833, 0.00028126698452979326, 0.00018473634554538876, 0.0001665558957029134, 0.00020276762370485812, 0.00022347431513480842, 0.00015903610619716346, 0.00028350049979053438, 0.00023256322310771793, 0.00027095942641608417, 0.00022957538021728396, 0.00024345066049136221, 0.00020528896129690111, 0.00024791693431325257, 0.00021810660837218165, 0.00020136662351433188, 0.00016665112343616784, 0.00028903881320729852, 0.00021946070773992687, 0.00013852925621904433, 0.00026256163255311549, 0.00013794322148896754, 0.00012975311256013811, 0.00019188197620678693, 0.0002802620583679527, 0.00030249226256273687, 0.00017537982785142958, 0.0002807247219607234, 0.00019406655337661505, 0.00020631527877412736, 0.00020444917026907206, 0.00023691152455285192, 0.00020892219617962837, 0.00016468011017423123, 0.00026722904294729233, 0.0001793618721421808, 0.00032068366999737918, 0.00012487928324844688, 0.00018170545808970928, 0.00015999033348634839, 0.00024398598179686815, 0.00026372680440545082, 0.00021987351647112519, 0.00019429957319516689, 0.00039338352507911623, 0.00021904302411712706, 0.00021553100668825209, 0.00019182627147529274, 0.00016662264533806592, 0.00038355975993908942, 0.00026144488947466016, 0.00030080013675615191, 0.00020623467571567744, 0.00018702892703004181, 0.00012813640933018178, 0.00021714279137086123, 0.00025565197574906051, 0.00018433436343912035, 0.00025666813598945737, 0.00022593729954678565, 0.00018921116134151816, 0.00020380136265885085, 0.00020664020848926157, 0.00018756711506284773, 0.00014313908468466252, 0.00025946027017198503, 0.0004162603581789881, 0.00023691818933002651, 0.00034475955180823803, 0.00024500166182406247, 0.00027248234255239367, 0.00015010428614914417, 0.00032368904794566333, 0.00024212665448430926, 0.00021653574367519468, 0.00026394869200885296, 0.00020090813632123172, 0.00025659787934273481, 0.00017512393242213875, 0.0001156728103524074, 0.00014612088853027672, 0.00013736310938838869, 0.00014162606385070831, 0.00020156560640316457, 0.00019926980894524604, 0.00015916056872811168, 0.00028006054344587028, 0.00028763565933331847, 0.00022633351909462363, 0.00025573681341484189, 0.00020327024685684592, 0.00014062026457395405, 0.0002068607573164627, 0.00011388515122234821, 0.00020124949514865875, 0.00016692369536031038, 0.00019733408407773823, 0.00030037047690711915, 0.00027200084878131747, 0.00021406231098808348, 0.00024216338351834565, 0.00023535372747574002, 0.00030658836476504803, 0.00017174203821923584, 0.0001776944991433993, 0.0002191974053857848, 0.00022975965111982077, 0.00010062108049169183, 0.00021819227549713105, 0.0002511532511562109, 0.00022519881895277649, 0.00030515421531163156, 0.00027116708224639297, 0.00019917490135412663, 0.00012401600542943925, 0.00020414225582499057, 0.00018052449740935117, 0.00027623760979622602, 0.00025974551681429148, 0.00028978468617424369, 0.00021517842833418399, 0.00027566796052269638, 0.0002348891575820744, 0.00021225381351541728, 0.00026005986728705466, 0.00023135953233577311, 0.00019945974054280668, 0.00016821178724057972, 0.00040084632928483188, 0.00013644597493112087, 0.00016272091306746006, 0.00020833846065215766, 0.00015505930059589446, 0.00017466777353547513, 0.00015550341049674898, 0.00024679818307049572, 0.00022851537505630404, 0.00027926007169298828, } }; const TfArray<144, int> quant45_zero = { 144, { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } }; const TfLiteAffineQuantization quant45 = { (TfLiteFloatArray*)&quant45_scale, (TfLiteIntArray*)&quant45_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data46[1*3*3*144] = { /* [0][0][][] */ 3,97,-48,-24,-28,36,-67,8,127,-94,13,-67,5,-3,1,42,44,-21,127,-1,-14,-79,53,-26,-2,-44,-23,55,-112,12,6,-64,2,64,5,2,-85,48,-29,-48,-33,-50,-17,-49,-38,-14,127,-60,-34,110,-8,127,42,8,28,-33,-8,127,-40,15,-106,127,-32,-9,-41,-18,41,69,-39,10,-1,38,127,85,127,9,127,65,-43,-44,127,-3,127,127,66,-72,-10,127,127,-27,-52,59,1,-19,-26,-29,127,-88,-51,35,-5,41,-59,-20,26,-54,-12,127,-36,-61,63,-38,-41,61,110,8,127,20,-10,127,79,29,-58,-2,-28,-48,127,15,127,-31,127,127,-28,-22,-16,-61,127,-48,-56,-2,-48,10,-31,-56, -4,127,-10,-49,1,-8,-79,6,35,20,127,-46,-43,-4,-23,-2,-45,127,83,127,-42,118,99,-16,20,-50,16,-121,-34,33,50,-42,-57,-31,-21,51,79,25,66,-127,-35,50,127,-35,83,-30,-11,-11,-60,127,28,53,-70,127,-95,127,3,18,21,-120,-24,52,95,-78,3,12,-25,-6,-10,127,-55,-31,-1,-23,-13,-14,86,63,47,-8,-31,-32,75,-8,17,28,-103,72,-15,92,1,-57,-7,-30,43,127,35,-127,-4,127,54,78,-54,127,-19,-43,0,36,46,-53,78,127,11,117,55,-11,-48,-17,-14,47,-26,-48,67,40,-4,127,35,4,-36,-46,-36,-4,127,7,-44,-42,39,-21,-98,8,72,127,66,-10, 27,-18,-44,-68,-25,74,-15,-14,-59,-51,23,23,-24,31,127,127,-66,64,13,-49,70,127,93,-47,127,-10,-7,-61,-84,-70,-32,127,-17,3,-13,-31,-50,16,-7,35,13,-53,-7,-17,64,25,-25,127,100,-4,-10,12,-38,21,-46,-3,-42,7,-25,-11,114,-66,35,1,8,25,-4,-25,8,0,-63,13,9,-30,-15,9,-39,45,-46,-19,109,-5,-11,60,-39,5,58,-46,21,-89,51,14,8,-1,127,10,-24,40,-13,113,127,78,69,-16,-14,-84,57,71,38,-58,127,18,-59,23,-18,-3,13,127,-9,-22,-120,127,-57,-23,11,-92,118,9,68,-8,38,-7,5,-7,127,-9,-9,75,-25,-43,67,-16,-43,99, /* [0][1][][] */ 24,-23,13,127,126,11,-27,7,-8,60,30,-41,127,4,-49,6,15,-5,-59,-37,40,0,-117,-38,56,103,-20,117,-127,35,63,0,-127,-21,127,-48,-31,34,102,-74,-127,-20,8,127,16,-127,20,-18,-9,-59,-5,7,127,-91,-1,3,-36,-36,-93,36,16,-13,127,-46,127,51,51,127,15,106,127,-21,-57,-2,-41,-6,-83,112,30,84,-95,6,-89,32,3,-14,-81,-72,32,-100,127,-80,-11,-10,-6,30,-22,-12,127,-85,-3,127,41,30,2,-64,127,-13,-25,127,-18,14,127,39,-127,-44,33,44,127,42,-73,-98,-127,127,127,-41,-63,127,95,87,-93,21,56,46,2,108,110,38,16,103,123,-37,127,127, 4,31,-120,-18,127,127,-123,127,72,-127,-72,127,-50,127,19,3,-46,-20,-16,43,27,-10,-81,54,-4,102,127,127,14,35,34,62,-34,127,-103,127,-92,-20,-24,62,21,127,11,82,-56,83,7,-16,127,-60,-69,63,-69,-39,-127,-5,0,-40,127,68,127,-15,-43,127,41,-127,-74,-27,127,-20,-73,18,3,-49,8,-18,-65,38,-55,-55,-9,127,-34,-35,36,-96,-56,-110,-48,-127,-97,-56,127,127,-15,-30,27,-119,-19,-95,-25,116,-106,-17,7,-79,20,-47,8,-31,-38,85,47,123,-19,-38,-35,-6,-52,0,-127,-40,-95,24,-12,-41,3,12,-38,127,-50,-7,11,-123,25,114,-60,127,103,76,-78,-77,-62,-15, -9,24,28,51,-60,110,112,-32,-26,-26,75,-30,-18,-28,23,13,127,-56,31,11,-62,44,127,127,-31,-17,14,-2,-3,-68,-127,-13,-26,-60,72,53,-45,127,68,-15,44,-91,-11,56,-13,-24,-13,37,-8,51,-4,4,93,16,-65,-18,58,-7,2,-97,109,-20,-10,-80,6,-33,127,9,-59,10,112,-14,-4,-73,2,-19,-25,-127,0,10,-32,-6,119,-26,-92,127,-93,23,-43,72,-9,59,-6,-9,-5,1,-12,15,-10,-83,46,-21,110,-9,38,-5,-37,-27,51,-40,-36,-28,-4,34,-23,-16,72,-58,12,-5,-34,-72,100,7,-7,-30,-61,-7,-30,17,6,-7,44,127,-33,1,13,7,43,-79,-21,-27,0,-8, /* [0][2][][] */ 127,40,127,39,26,-33,115,10,35,30,-34,-101,91,-23,-8,42,-16,-39,5,-31,60,-7,-67,-42,-23,2,-39,-109,-67,-69,-4,-23,93,13,-15,-54,-14,-10,-127,-110,14,-30,1,108,-75,115,-1,-5,-29,-31,-29,-6,-16,-49,27,20,127,-7,-68,57,-80,-9,-32,-8,35,-69,73,-44,123,-22,-85,127,18,57,52,127,38,-96,127,60,-50,-25,-39,-13,127,-68,106,-34,66,-23,102,-127,10,-5,-4,4,-30,125,95,-82,18,-49,127,23,62,-107,-26,-24,127,24,-26,-50,-24,-124,-10,43,-28,37,-2,83,-69,73,-19,-39,14,25,-10,-38,-47,-52,25,6,-73,19,-26,-65,78,7,-29,127,127,-12,58,12, -7,0,-13,-16,-72,-101,127,-22,59,-126,-3,-94,-62,-17,-12,-34,108,15,-16,-30,127,1,-8,-20,59,127,-46,112,-92,127,18,-21,122,-33,109,-75,15,1,-103,-59,71,22,-8,35,127,65,4,32,-30,-28,127,-21,-8,-38,-71,22,5,16,17,72,86,6,46,79,-7,-35,-34,6,-3,-47,-95,-30,-1,-62,1,8,31,14,-12,127,22,66,27,9,20,98,-127,-52,-65,43,45,-48,-25,16,-26,-7,64,-95,16,-86,-19,19,-25,9,-30,54,-33,-1,-29,-49,-49,-28,16,127,-5,127,-22,23,-6,18,-127,-44,-11,-9,19,-36,-7,7,-2,-90,-6,0,20,69,3,58,9,-58,127,-46,5,-25,9,30, 26,-6,72,-6,-49,0,-23,-16,-23,-57,-18,-34,-27,18,0,-6,11,8,-12,-11,-5,38,-5,39,26,-65,53,-39,-88,-98,-55,-22,0,-28,-16,-24,127,-5,27,-6,37,53,-5,49,20,-86,-12,-20,-36,18,4,-23,-54,-27,-12,8,24,33,114,127,6,-7,-30,16,-4,-69,-29,-8,-105,-10,-23,-7,7,127,-5,-55,20,-71,-44,-23,42,18,34,-3,-53,121,100,-108,-59,-55,-9,74,-1,-8,43,-14,-27,-24,-30,4,14,4,95,-14,127,127,-7,-14,-75,-39,-24,-17,-16,30,53,-14,11,-16,-5,15,3,-59,-12,1,-11,22,-75,-18,18,-9,-23,-6,2,113,-15,127,44,-22,28,88,-92,8,9,14, }; const TfArray<4, int> tensor_dimension46 = { 4, { 1,3,3,144 } }; const TfArray<144, float> quant46_scale = { 144, { 0.011710153892636299, 0.0082590430974960327, 0.0094093289226293564, 0.011148976162075996, 0.0063113942742347717, 0.0059894155710935593, 0.0058828191831707954, 0.011953846551477909, 0.0078512942418456078, 0.0070786257274448872, 0.0086176237091422081, 0.0094976583495736122, 0.0067590344697237015, 0.012048771604895592, 0.0098839364945888519, 0.011515775695443153, 0.0097569534555077553, 0.010346652939915657, 0.0087247807532548904, 0.010536469519138336, 0.0092695308849215508, 0.0085580814629793167, 0.0070826723240315914, 0.012284149415791035, 0.009327080100774765, 0.0058874930255115032, 0.011158869601786137, 0.0058625866658985615, 0.0055145071819424629, 0.0081549836322665215, 0.011911137029528618, 0.012855920940637589, 0.0074536423198878765, 0.011930800974369049, 0.0082478281110525131, 0.0087683992460370064, 0.0086890896782279015, 0.010068739764392376, 0.0088791931048035622, 0.0069989045150578022, 0.011357233859598637, 0.0076228794641792774, 0.013629055581986904, 0.0053073693998157978, 0.007722481619566679, 0.0067995889112353325, 0.010369404219090939, 0.011208388954401016, 0.0093446243554353714, 0.0082577317953109741, 0.016718799248337746, 0.0093093281611800194, 0.0091600678861141205, 0.0081526162102818489, 0.0070814625360071659, 0.016301289200782776, 0.011111407540738583, 0.01278400607407093, 0.0087649738416075706, 0.0079487292096018791, 0.0054457974620163441, 0.0092285685241222382, 0.010865208692848682, 0.0078342100605368614, 0.010908395983278751, 0.0096023352816700935, 0.0080414740368723869, 0.0086615579202771187, 0.0087822088971734047, 0.0079716024920344353, 0.0060834111645817757, 0.011027061380445957, 0.01769106462597847, 0.010069022886455059, 0.014652280136942863, 0.010412571020424366, 0.011580498889088631, 0.0063794320449233055, 0.013756783679127693, 0.01029038242995739, 0.0092027690261602402, 0.011217819526791573, 0.0085385954007506371, 0.01090540923178196, 0.0074427672661840916, 0.0049160942435264587, 0.0062101376242935658, 0.0058379317633807659, 0.0060191075317561626, 0.0085665378719568253, 0.00846896693110466, 0.0067643239162862301, 0.011902572587132454, 0.012224515900015831, 0.009619174525141716, 0.010868814773857594, 0.0086389854550361633, 0.0059763612225651741, 0.0087915817275643349, 0.0048401188105344772, 0.008553103543817997, 0.0070942570455372334, 0.0083866985514760017, 0.01276574470102787, 0.011560035869479179, 0.0090976478531956673, 0.010291943326592445, 0.010002532973885536, 0.013030004687607288, 0.0072990367189049721, 0.0075520160607993603, 0.0093158893287181854, 0.0097647849470376968, 0.0042763957753777504, 0.0092731714248657227, 0.010674012824892998, 0.0095709497109055519, 0.012969054281711578, 0.01152460090816021, 0.0084649333730340004, 0.005270679946988821, 0.0086760455742478371, 0.0076722912490367889, 0.011740098707377911, 0.011039184406399727, 0.012315848842263222, 0.0091450829058885574, 0.011715888045728207, 0.009982788935303688, 0.0090207867324352264, 0.011052544228732586, 0.0098327798768877983, 0.0084770387038588524, 0.0071490011177957058, 0.017035968601703644, 0.0057989535853266716, 0.0069156386889517307, 0.008854384534060955, 0.0065900199115276337, 0.0074233803898096085, 0.0066088945604860783, 0.010488922707736492, 0.0097119035199284554, 0.011868552304804325, } }; const TfLiteAffineQuantization quant46 = { (TfLiteFloatArray*)&quant46_scale, (TfLiteIntArray*)&g0::quant45_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data47[144] = { 376, 381, 827, -204, -36, 923, 1022, 1403, 751, 424, 626, -7, 241, 68, 132, -93, 3841, 1405, 460, 1356, 538, 156, 985, 1853, 1392, 587, 1265, -189, 1085, 255, -598, -286, 1577, 1812, 975, 15, 932, 263, 1291, 2430, -1050, -1585, -1255, 287, 386, 717, 914, -1621, 1375, 1953, -2274, -121, 1, 1039, 3782, -272, 2484, -1251, -1377, -1540, 132, -91, -65, 301, 1292, 2920, -52, 56, 1179, 164, -321, -208, 410, -361, -1099, 813, 118, 1219, 2133, 636, 346, -642, 1781, -658, 1284, 187, 433, 932, 149, 3517, 2420, 1667, 970, -570, -178, 1182, 387, 780, 273, 1376, 429, 951, 1561, -614, 2119, -503, 1067, 207, 28, 169, 859, -1198, 2285, 125, -164, 1679, 654, -1566, 707, -257, 1089, 1251, 2619, -517, 434, 1051, -811, 228, -604, -248, -939, 184, 1690, -541, -332, 586, -507, 693, 268, -1025, 1530, 104, 275, 1141, }; const TfArray<144, float> quant47_scale = { 144, { 0.00011640998855000362, 0.00017116201343014836, 9.7777090559247881e-05, 0.00013136499910615385, 0.00012241033255122602, 0.00013783913163933903, 0.00011543677101144567, 0.00020291017426643521, 0.00015924204490147531, 0.00016247075109276921, 0.00011570235801627859, 0.00010040939378086478, 0.00020779545593541116, 0.00015824798902031034, 0.0001584215642651543, 0.00015447828627657145, 9.545336797600612e-05, 0.0001430533011443913, 0.00017903107800520957, 0.00013957300689071417, 0.0001420847256667912, 0.00012218422489240766, 0.00011311472189845517, 0.00010561986709944904, 0.00011103563156211749, 0.00025372617528773844, 0.00015012320363894105, 0.00012027818593196571, 0.000166261539561674, 0.00011146828910568729, 8.5867839516140521e-05, 0.00012873369269073009, 0.00012138290912844241, 0.00012323155533522367, 0.00013833762204740196, 0.00013674580259248614, 0.00011403028474887833, 0.00012680418149102479, 9.3413720605894923e-05, 0.00011344009544700384, 0.00013338591088540852, 0.00012384392903186381, 0.00011324777005938813, 0.00014568229380529374, 0.00017541428678669035, 0.00016837817383930087, 0.00012002530274912715, 0.00012926025374326855, 0.00013097804912831634, 0.00015443770098499954, 0.00013683474389836192, 0.00017459555238019675, 0.00011394611647119746, 0.00012492152745835483, 8.5448038589674979e-05, 0.00010996009223163128, 0.00012670227442868054, 0.00012407382018864155, 0.00015629596600774676, 0.00011006058048224077, 0.00011680881289066747, 0.00019745829922612756, 0.00014762807404622436, 0.00016433352720923722, 0.00014261264004744589, 8.9968933025375009e-05, 0.00015112465189304203, 0.00020339689217507839, 0.00013534689787775278, 0.0002194414846599102, 0.00011722338240360841, 0.00014025640848558396, 0.00015144163626246154, 0.00018263420497532934, 0.00014034597552381456, 9.6706935437396169e-05, 0.00013423871132545173, 0.00013446749653667212, 0.00011148821795359254, 0.00018671719590201974, 0.00012375264486763626, 0.00014952532364986837, 0.00010658246901584789, 0.00012632524885702878, 9.7535179520491511e-05, 0.0001648090110393241, 0.0001122957983170636, 0.00013964928803034127, 0.00026745157083496451, 7.7258795499801636e-05, 0.00012024820171063766, 8.436190546490252e-05, 0.00013419182505458593, 0.00015738270303700119, 0.00015497779531870037, 0.00012195464660180733, 0.0001168746457551606, 0.0001364074123557657, 0.00015269385767169297, 0.0001119743610615842, 0.00017368538829032332, 0.00014255761925596744, 0.0001258465345017612, 0.00012275029439479113, 9.4087394245434552e-05, 8.2905229646712542e-05, 0.0001626995945116505, 0.00016155662888195366, 0.00012436475662980229, 0.00017377657059114426, 0.00014160346472635865, 0.0001821087789721787, 0.00011272660049144179, 0.00015158989117480814, 0.00012804524158127606, 0.00013889691035728902, 0.00010782409663079306, 0.0001054226522683166, 0.00012129532842664048, 0.00018829875625669956, 0.00012681592488661408, 0.00013247181777842343, 8.7795800936874002e-05, 0.00011397722118999809, 0.00015481012815143913, 0.00013637858501169831, 0.00012642763613257557, 0.00016499949560966343, 0.00017669275985099375, 0.00017506400763522834, 0.00013544804824050516, 0.0001817824668250978, 0.00012872143997810781, 0.00013635458890348673, 0.00015196697495412081, 0.00023950861941557378, 0.00015339002129621804, 0.00013267123722471297, 0.00017246123752556741, 0.00016247641178779304, 0.00011752122372854501, 9.7520518465898931e-05, 0.00020494464843068272, 0.00013921251229476184, } }; const TfLiteAffineQuantization quant47 = { (TfLiteFloatArray*)&quant47_scale, (TfLiteIntArray*)&g0::quant45_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data48[144*1*1*24] = { /* [0][0][][] */ -86,51,-16,26,3,-62,-66,74,-23,-57,-93,-35,127,-57,-33,5,113,-64,-38,-37,98,14,89,48, /* [1][0][][] */ -13,-14,4,-49,127,-27,36,-29,-27,-88,-71,10,-67,2,-20,-72,-2,-41,-25,17,-61,-11,-78,62, /* [2][0][][] */ 66,-41,105,5,52,81,26,4,1,0,12,27,-64,26,-36,-81,-96,-18,7,-90,70,38,-127,31, /* [3][0][][] */ -80,-6,-7,65,-73,35,-50,61,-98,1,10,35,-37,127,12,37,57,84,-106,43,59,-81,67,71, /* [4][0][][] */ -116,-110,-127,54,-38,-47,70,-1,-9,100,-90,-52,95,-59,101,-109,-34,-84,-16,80,-15,-23,9,6, /* [5][0][][] */ -29,-67,-62,27,-55,-38,-25,16,-3,-2,78,-62,127,-105,43,-54,-73,-9,-11,77,79,-101,75,-66, /* [6][0][][] */ -51,19,65,6,-106,-51,-75,76,-76,-6,8,-4,7,102,107,116,52,-70,127,-2,33,-73,-45,-69, /* [7][0][][] */ 35,-4,-10,-44,-21,-7,53,-50,2,31,-4,24,-31,-25,-26,74,-29,-22,127,-44,3,-26,-10,36, /* [8][0][][] */ 47,-12,-27,16,-127,-40,12,43,-29,29,31,-92,56,10,-8,45,-10,-14,-8,78,17,2,-23,32, /* [9][0][][] */ 41,14,6,-6,-36,-22,26,103,31,-2,0,2,-6,4,51,-47,44,54,-127,10,-88,54,-14,-1, /* [10][0][][] */ -29,32,-23,60,-54,48,-30,-33,-127,-107,-67,8,22,-17,14,45,-27,-82,-26,-4,10,118,-29,39, /* [11][0][][] */ -79,-127,-60,-6,-56,-98,-53,-16,-53,7,-51,-41,-49,56,85,98,30,-40,39,-16,55,-63,41,120, /* [12][0][][] */ 16,-107,-49,-11,15,28,-12,-127,-67,35,-31,-32,6,73,-9,-27,-82,-5,41,-43,-28,21,67,-43, /* [13][0][][] */ 9,-6,23,127,52,-65,-63,40,22,-50,32,-16,108,51,-22,16,58,-93,1,107,-72,62,8,-1, /* [14][0][][] */ 63,-127,-76,-66,3,-51,-41,15,-8,-61,6,-95,111,-17,-93,-38,18,61,-27,63,68,41,-18,23, /* [15][0][][] */ 16,-21,49,-20,-18,-35,-41,-11,-8,-11,127,-87,65,-30,-6,25,-52,-20,21,55,-33,36,16,-120, /* [16][0][][] */ 14,32,91,-71,60,-112,50,1,-65,-13,-14,14,-63,31,23,79,-80,22,-21,-127,-91,-86,-25,-83, /* [17][0][][] */ 10,22,-100,-43,-30,30,57,-14,-52,-127,-17,74,-22,61,-1,-6,90,23,18,7,-53,-7,70,57, /* [18][0][][] */ 46,-8,-55,18,-81,80,76,-6,-16,38,-5,-127,78,-14,-39,29,-27,32,-16,-41,-77,-65,33,34, /* [19][0][][] */ 28,-17,-57,-89,-5,9,26,-127,-6,35,-62,-112,41,-48,-104,-44,-13,67,44,72,-52,-43,-27,63, /* [20][0][][] */ -13,40,35,-48,-17,-85,106,69,16,41,51,-3,72,22,34,127,31,-85,81,48,-42,94,-37,-90, /* [21][0][][] */ 90,-62,67,-69,16,-58,91,75,-41,-48,38,62,-127,-41,25,-10,58,101,-45,-93,4,-40,41,29, /* [22][0][][] */ -15,94,-33,-49,-67,-53,127,24,-41,-60,96,-27,28,26,-57,96,-12,-18,32,95,-20,-118,29,-25, /* [23][0][][] */ 90,-75,-94,5,-41,-111,-9,-2,54,76,45,9,-8,83,-63,65,-31,54,127,-91,13,-4,4,-56, /* [24][0][][] */ -20,-57,-15,68,52,-16,127,-41,46,65,-66,-94,53,29,-76,43,-98,-90,-61,37,24,50,-27,-90, /* [25][0][][] */ 28,-57,-26,45,-42,0,47,-11,25,9,-45,-13,41,-8,-18,43,33,-6,-36,-9,22,51,-34,-127, /* [26][0][][] */ -48,-56,4,8,5,-109,35,13,55,-104,-49,1,11,-38,-53,55,-65,28,-127,95,-91,62,-70,84, /* [27][0][][] */ 52,32,-103,72,16,-33,12,66,-82,-25,1,74,84,54,-66,19,94,-96,-1,127,75,-19,44,16, /* [28][0][][] */ 47,56,-9,7,1,53,-71,-89,-28,-15,61,-60,56,-127,-4,49,-52,40,-54,-27,38,-1,-13,28, /* [29][0][][] */ 1,92,-18,-75,-12,-59,127,-93,-5,-40,21,-91,-42,-116,-1,60,-36,-83,-46,72,-86,55,121,70, /* [30][0][][] */ -16,102,45,-12,-107,20,14,-124,13,13,6,99,-77,107,-16,57,6,29,-10,-116,116,20,90,127, /* [31][0][][] */ -88,-86,-17,-59,-25,8,20,88,-14,5,-4,-127,71,24,14,19,-66,-89,60,31,-67,31,-85,-102, /* [32][0][][] */ 42,-49,56,-30,21,44,-75,-127,58,-94,16,44,-39,6,68,-67,-38,56,59,22,-8,-116,-95,8, /* [33][0][][] */ -78,11,-113,7,3,-67,-11,-84,57,-18,-13,119,-5,-102,27,55,-96,-7,29,-15,1,127,-25,42, /* [34][0][][] */ 8,-40,-12,35,93,-4,-31,21,-29,70,-31,-22,28,8,-35,-127,13,-87,97,6,38,69,-38,-117, /* [35][0][][] */ -123,-97,-14,9,-73,-121,120,23,-9,-35,32,7,64,-39,-65,76,-127,27,-65,-55,-121,13,15,-92, /* [36][0][][] */ 16,-54,-20,2,-90,-68,-41,24,-68,-53,0,10,103,20,28,-19,-9,-19,89,-1,39,127,17,15, /* [37][0][][] */ 55,-114,-3,-119,-81,91,52,67,54,-127,89,39,91,-24,-63,42,-38,36,110,82,74,91,-46,-40, /* [38][0][][] */ -98,35,-52,113,-85,-115,-127,-86,-73,-55,78,13,-121,72,22,-7,61,76,-5,-35,75,-85,52,-32, /* [39][0][][] */ -126,-72,44,52,50,-9,-94,-41,1,59,62,-69,67,-35,-59,50,-85,77,78,109,69,-12,46,-127, /* [40][0][][] */ 82,70,-127,92,-16,-70,-59,12,-81,-44,4,-5,30,110,-10,34,11,-36,13,-85,-61,-23,3,15, /* [41][0][][] */ 22,-40,-105,127,-54,33,-6,-24,-46,29,60,-30,-72,-36,39,-39,5,4,45,121,74,-32,-36,-47, /* [42][0][][] */ -111,-80,-20,40,60,-70,30,7,63,-42,50,-3,-62,-99,43,-19,41,-64,-48,34,-127,-77,115,-118, /* [43][0][][] */ 38,-65,-112,65,-44,-41,69,-40,-87,19,-127,33,69,58,14,-29,-3,-73,-13,-64,7,32,95,-47, /* [44][0][][] */ -112,-24,68,93,32,41,-30,-57,-8,-17,127,-38,51,90,-56,-11,34,-8,-62,37,36,-1,106,-15, /* [45][0][][] */ -17,72,-1,-35,22,34,-2,-66,-38,-24,41,-34,-49,-8,-18,-127,30,11,-18,28,-26,20,-21,-61, /* [46][0][][] */ 81,-119,-79,-67,89,96,-22,49,-79,5,50,-38,-60,48,-107,-127,-51,73,-22,90,-83,-17,105,11, /* [47][0][][] */ 68,-72,-33,33,-111,108,13,1,23,-22,21,-68,-12,-76,-25,48,6,127,89,-26,22,43,-34,48, /* [48][0][][] */ 107,-14,-27,-127,15,0,-85,-38,54,36,19,-85,79,20,20,28,35,-3,13,-11,-16,62,50,-28, /* [49][0][][] */ 12,-127,38,96,-8,2,70,46,2,-8,-91,-86,0,31,65,55,-98,26,15,5,-9,-4,62,-49, /* [50][0][][] */ -82,59,41,82,-33,-9,-2,47,127,-21,-57,-52,21,13,-21,-45,-8,-45,-31,78,5,23,74,-16, /* [51][0][][] */ -3,29,-33,24,105,3,-28,17,17,-34,4,-127,-48,-3,20,4,-67,-37,64,91,-103,64,79,84, /* [52][0][][] */ 63,-42,-14,68,72,-28,-93,-127,-19,43,97,-13,33,61,-11,20,66,-46,89,-53,106,56,-70,-13, /* [53][0][][] */ -25,78,51,-28,-3,40,22,-52,76,30,-70,-127,-46,-96,-56,-101,-10,-29,101,50,64,-23,-8,-65, /* [54][0][][] */ 13,-112,-13,-61,-76,95,-42,53,-13,-8,16,74,-12,-64,-59,-117,-113,70,40,2,127,12,-97,-42, /* [55][0][][] */ 127,64,52,24,0,23,-43,114,-24,-92,-3,-108,45,75,52,20,4,-28,-68,-71,-62,-119,5,12, /* [56][0][][] */ -6,118,-17,-18,-87,63,87,-44,-127,18,-1,-21,-35,-51,-89,-10,-45,-37,-58,-18,-71,73,49,-73, /* [57][0][][] */ 82,37,-14,51,84,16,127,-106,-76,-52,-21,-78,-52,-92,-25,52,66,45,-80,-24,-17,22,-33,-46, /* [58][0][][] */ -58,-17,-106,-116,1,-127,25,4,-84,-28,49,3,-13,19,-12,-124,82,0,-3,-4,15,49,-17,-74, /* [59][0][][] */ 41,113,-5,43,-28,127,-24,-50,-5,55,92,-50,57,19,66,-2,-15,-59,5,44,34,84,-36,-50, /* [60][0][][] */ -56,-8,-1,79,-43,-98,-5,86,-111,30,15,74,-97,-9,-14,18,-44,18,127,63,86,-50,96,53, /* [61][0][][] */ 1,-83,-127,6,9,23,-22,-33,-11,50,0,-62,-69,8,29,-38,53,-2,-71,-2,-33,34,-82,-33, /* [62][0][][] */ -28,81,-18,28,-67,-77,72,107,-30,-37,127,12,31,50,-56,28,-55,85,-28,-48,-3,-39,-91,-8, /* [63][0][][] */ -49,-24,15,27,87,19,-32,-46,-79,-21,-121,-76,13,55,-75,10,-85,9,-8,102,27,-46,-127,5, /* [64][0][][] */ -7,-60,105,-2,60,-23,25,8,30,-83,85,65,-22,-22,-61,-125,127,16,35,-39,-55,-22,-8,-26, /* [65][0][][] */ 6,-6,-64,-76,80,-48,-24,-5,-8,-55,48,29,-118,21,-22,21,51,0,-5,-123,46,-127,-73,6, /* [66][0][][] */ 35,42,-124,-55,-61,48,34,5,-53,81,30,65,-59,13,20,-27,24,-1,48,-22,127,-40,-21,3, /* [67][0][][] */ 54,-34,-55,44,33,-24,1,7,-127,-17,-36,-93,-25,-3,-13,-46,-70,37,44,40,49,-70,-58,78, /* [68][0][][] */ 50,65,-57,127,-35,-52,14,106,8,-112,-16,72,-5,-47,-26,35,-6,6,21,1,-53,6,-96,111, /* [69][0][][] */ -67,-32,36,31,0,9,96,-76,11,48,22,-20,27,30,5,-16,49,18,127,46,-43,-1,11,-39, /* [70][0][][] */ -82,13,-12,86,80,21,32,-51,-27,71,19,-95,103,113,-56,15,-51,-35,-88,97,-127,-76,-25,-31, /* [71][0][][] */ -82,2,57,-33,12,38,76,116,25,-35,-58,-48,-90,-2,-127,115,120,33,-9,20,-30,-15,2,-14, /* [72][0][][] */ -16,-20,53,-53,50,-68,54,-55,-69,-27,-25,89,-7,50,21,78,127,91,76,-34,-45,-40,-28,-20, /* [73][0][][] */ 27,-39,1,10,35,-6,-50,-26,16,0,7,-60,-4,-41,-127,33,-66,-39,37,-23,60,7,31,1, /* [74][0][][] */ -17,8,26,-22,-15,-13,30,-18,-15,5,-23,-23,-114,35,-2,49,127,-106,-65,-8,-123,-17,28,-43, /* [75][0][][] */ -113,-3,-106,-122,-104,-127,57,-115,-71,-102,-56,83,114,87,5,-73,-78,106,-4,-33,57,113,-27,-52, /* [76][0][][] */ -107,22,73,127,-42,-45,33,-47,4,-87,22,68,-29,35,29,5,16,21,6,39,-1,-89,47,-3, /* [77][0][][] */ 93,71,93,87,-4,-94,-41,80,19,28,127,-99,111,-83,38,-48,-35,-44,-18,-111,-39,21,-121,100, /* [78][0][][] */ 127,-29,-39,83,-33,12,-12,-19,44,-41,-39,44,31,0,41,6,-88,42,28,-77,100,37,27,-57, /* [79][0][][] */ 3,-13,-25,79,41,23,-1,-22,-70,-11,-39,32,-19,-37,17,58,-45,-5,40,5,-54,-127,48,71, /* [80][0][][] */ 59,-21,53,-127,-86,-71,100,75,-14,45,35,-78,66,-33,-11,-93,-42,-53,47,73,20,-13,15,-28, /* [81][0][][] */ 26,34,-1,59,39,66,127,-82,-7,-78,15,-88,61,-49,6,90,17,10,37,-44,-11,47,22,79, /* [82][0][][] */ -86,12,-1,76,-18,0,-34,-127,19,-27,-1,-122,63,84,-83,2,2,-64,-88,-17,83,83,48,40, /* [83][0][][] */ 21,-92,81,127,51,42,-30,-71,-90,50,-25,-25,-36,-41,71,-34,39,36,-63,79,-17,74,-63,-36, /* [84][0][][] */ -79,21,-58,-82,-118,100,116,-107,-58,-10,-7,-60,-108,-15,-119,-91,127,-106,-22,48,74,-23,21,-4, /* [85][0][][] */ -15,67,-127,-59,72,-11,5,27,-83,-14,20,-73,76,-47,-12,-5,17,-125,-16,-73,58,32,-37,43, /* [86][0][][] */ -7,45,91,127,-2,-56,82,22,-24,66,67,-23,53,83,-15,43,-51,-84,43,109,97,48,51,-52, /* [87][0][][] */ -32,66,39,32,-59,36,24,-127,-16,-9,13,10,49,-54,-80,-32,-28,10,-99,59,-65,32,-7,-73, /* [88][0][][] */ 4,-91,-6,25,-30,-16,4,13,-15,25,15,-10,20,-68,-33,-127,-4,20,-19,51,19,42,17,77, /* [89][0][][] */ -96,107,96,-35,-127,-126,-7,11,89,92,-56,-13,15,87,-58,-7,-104,-76,-36,107,49,-58,-22,-72, /* [90][0][][] */ 18,-127,111,20,65,-53,-40,32,23,-96,38,-76,-25,11,27,-14,62,93,24,28,57,-3,-93,1, /* [91][0][][] */ -83,115,-85,-127,-73,27,-120,71,20,-17,90,65,125,18,-123,32,21,-51,90,74,119,32,79,120, /* [92][0][][] */ -125,-9,-95,-23,58,123,112,9,-10,-9,45,-127,3,-7,-76,32,13,94,16,-32,8,65,23,-13, /* [93][0][][] */ -98,-69,62,112,-36,96,-1,17,-36,-25,-65,15,10,-1,48,57,90,15,-127,29,-74,-4,-38,6, /* [94][0][][] */ 44,52,30,70,-38,-27,-2,-19,90,18,51,8,-11,85,-45,-49,-122,127,87,58,-19,60,28,-35, /* [95][0][][] */ 114,-24,-87,11,-27,127,89,77,25,-57,-33,-8,104,-105,58,-12,63,-127,-82,57,-43,12,32,-84, /* [96][0][][] */ -96,79,-91,51,-91,126,74,127,-55,-107,59,-10,-102,-86,4,-44,-93,43,13,43,64,87,-57,-117, /* [97][0][][] */ -56,-70,26,21,-28,-58,64,-46,-70,42,-48,73,13,34,33,33,-32,-127,114,60,24,-9,21,-23, /* [98][0][][] */ -39,61,28,-82,9,-60,51,-9,-51,-28,101,-47,-76,33,-60,12,-20,-28,42,127,-26,84,36,-44, /* [99][0][][] */ -33,0,-6,9,32,67,-74,34,-35,-79,127,84,-10,78,-22,3,15,-94,-104,-113,53,-82,-41,90, /* [100][0][][] */ -49,-76,18,-1,-31,46,62,-50,-53,56,31,-41,16,-33,20,-79,-13,57,-77,-35,3,-24,-127,38, /* [101][0][][] */ 41,-29,73,14,-69,68,-8,78,-96,-14,41,26,-7,-5,41,27,-4,-59,127,-121,-40,30,14,76, /* [102][0][][] */ 0,-14,-76,39,-92,11,-75,47,43,-44,127,91,-34,67,-74,49,48,-90,23,0,-83,-74,-70,16, /* [103][0][][] */ -127,78,119,116,103,-43,65,-3,-54,5,64,-115,-7,17,-33,22,25,84,17,-11,11,29,-76,-121, /* [104][0][][] */ -74,48,15,83,-9,-66,-49,83,-7,-45,-10,-79,-17,127,-51,96,-94,98,39,-65,117,-5,110,43, /* [105][0][][] */ -75,106,95,4,31,-23,-41,76,-127,86,20,33,-117,62,16,-56,18,47,-87,-9,-89,-83,-45,1, /* [106][0][][] */ -27,42,-127,16,0,76,16,20,-55,49,43,-78,-24,-55,-65,-90,-40,36,6,19,-28,30,44,10, /* [107][0][][] */ 52,-19,-8,-78,45,56,62,-37,61,-60,127,-27,-9,12,85,-103,-38,-71,-91,-21,17,-5,-17,32, /* [108][0][][] */ -16,127,-24,0,17,-88,-21,36,-48,33,-3,-20,55,-31,-60,65,-17,-97,94,53,-35,-9,28,20, /* [109][0][][] */ -27,-12,29,-74,32,56,127,19,-46,16,-12,-38,-66,-42,65,-75,11,1,51,47,21,-30,-22,37, /* [110][0][][] */ 127,33,59,74,84,-75,-118,28,-61,-2,31,-22,81,5,95,-48,-10,55,93,-16,-77,-48,-14,29, /* [111][0][][] */ -26,7,127,-30,-63,-4,55,45,-99,7,-16,-48,52,-68,-4,-60,-40,10,58,-2,-96,-52,11,-20, /* [112][0][][] */ 126,51,9,-33,96,55,7,-127,35,-41,-37,16,99,28,29,-113,24,2,5,90,51,-105,-80,-24, /* [113][0][][] */ -80,-125,49,-31,-67,-3,127,26,-89,-25,22,61,28,-94,23,71,-18,-37,11,113,39,4,-64,6, /* [114][0][][] */ -92,33,-22,63,-11,-41,6,16,-2,-75,114,127,50,-76,-8,-47,-20,-92,10,15,-8,-46,-71,64, /* [115][0][][] */ -5,-4,26,127,-55,3,75,-1,33,50,-52,-89,-6,-86,-59,-67,-32,15,97,25,-6,-27,-21,-53, /* [116][0][][] */ -53,-101,-36,-127,92,101,-28,4,101,-88,115,-49,6,-76,-45,76,22,76,33,85,2,90,-27,-42, /* [117][0][][] */ 46,-37,-127,62,-88,23,-112,-90,-111,111,-53,42,72,-47,34,-32,-7,32,-40,2,9,18,-62,-106, /* [118][0][][] */ 31,8,-125,107,9,127,51,73,-53,-19,62,24,-51,-58,111,22,14,-62,-49,114,-97,42,-13,-119, /* [119][0][][] */ -4,4,-54,63,62,1,30,84,-14,-33,-29,-32,-1,42,13,-3,60,65,14,67,-14,-127,45,-26, /* [120][0][][] */ 120,-38,109,48,-56,63,-67,0,34,-85,127,-43,23,-105,-35,21,32,77,65,86,-83,-15,33,62, /* [121][0][][] */ 127,-23,-48,64,-18,11,-58,101,-48,-20,97,108,-32,-99,-39,-15,-57,-69,-53,21,66,-3,-78,-19, /* [122][0][][] */ 71,-37,-70,4,-2,121,-36,-121,-127,4,58,120,71,-29,77,-5,-4,64,-99,-85,53,-23,-76,41, /* [123][0][][] */ -100,-114,-89,71,61,97,47,-5,-52,-127,-127,-31,-21,27,22,8,-71,-17,80,119,3,-35,98,18, /* [124][0][][] */ 56,-12,-23,-35,23,75,-28,-8,-127,-70,-2,-64,26,40,-60,-32,0,6,-2,16,-80,18,-69,-72, /* [125][0][][] */ -25,43,-17,-62,-47,8,25,-69,6,-101,-107,-17,-56,30,-75,-43,14,-79,-65,-27,-24,-127,-8,65, /* [126][0][][] */ 108,-86,-57,-58,-26,-2,95,-127,-4,97,-8,-56,-62,-21,-46,-11,20,40,89,-58,-2,-74,-65,66, /* [127][0][][] */ -26,-55,15,10,51,-56,21,18,-40,35,-1,-89,84,-98,-40,96,127,21,-54,41,121,25,-11,-35, /* [128][0][][] */ -40,-58,-7,37,4,-36,61,66,-22,-89,-55,12,-62,13,-35,-62,51,-7,-28,24,19,33,16,127, /* [129][0][][] */ -25,16,37,18,-45,-45,-16,49,-24,-127,9,-10,35,68,0,56,3,5,57,23,0,39,-9,30, /* [130][0][][] */ -118,-55,60,70,61,-45,120,-75,-29,-7,-30,-59,60,75,7,127,-81,30,-21,22,-45,24,11,-57, /* [131][0][][] */ -21,116,41,-5,93,68,13,-5,-22,8,26,-23,16,12,61,-31,23,-10,2,127,78,25,0,-2, /* [132][0][][] */ 61,-107,-65,63,19,10,77,-84,43,95,-65,-60,127,63,-52,-9,19,53,-109,98,-59,13,-35,99, /* [133][0][][] */ -112,-6,-97,-99,24,9,127,-111,-44,20,41,-11,-11,-49,28,-71,-12,36,35,55,28,78,23,-11, /* [134][0][][] */ 33,46,4,-29,-2,32,127,-52,-41,72,98,-13,62,-1,-21,55,27,23,22,26,-69,29,-15,-37, /* [135][0][][] */ -4,26,-43,18,17,-1,-27,-3,-32,23,-43,-75,-3,-15,-33,-60,-53,44,42,-5,-39,3,22,-127, /* [136][0][][] */ -42,-9,-118,40,33,70,-31,37,13,4,45,-127,77,-42,-58,-54,82,10,37,-12,-53,81,27,-20, /* [137][0][][] */ 44,-65,12,18,83,14,22,-101,23,-41,7,15,-20,-63,56,-50,26,-36,64,125,127,4,-30,-18, /* [138][0][][] */ -54,-26,127,-23,-70,10,-33,-34,50,-98,24,-42,-55,-38,-76,-1,67,-55,31,40,16,70,7,-102, /* [139][0][][] */ -77,52,67,19,127,-15,11,72,-68,11,-70,-28,76,-17,-44,-120,-51,-77,48,-48,-99,7,-97,-98, /* [140][0][][] */ -89,-16,-127,-20,-63,74,-51,77,-83,-71,-70,9,49,-27,59,63,45,-26,30,110,-58,77,44,0, /* [141][0][][] */ 50,122,26,-62,127,85,-48,-44,11,86,50,-123,-27,-99,93,-69,112,123,-38,-23,26,59,-76,-42, /* [142][0][][] */ -54,-13,22,5,127,25,75,1,-6,-6,55,4,-41,-61,-21,-33,-61,-16,-49,-48,-16,-42,-34,17, /* [143][0][][] */ 85,-127,25,-33,-43,34,31,-9,-88,-16,-15,2,6,-30,73,-13,48,-55,-84,86,-89,-5,52,35, }; const TfArray<4, int> tensor_dimension48 = { 4, { 144,1,1,24 } }; const TfArray<144, float> quant48_scale = { 144, { 0.0010327112395316362, 0.001518434495665133, 0.0008674127166159451, 0.0011653820984065533, 0.001085942261852324, 0.0012228161795064807, 0.0010240775300189853, 0.0018000828567892313, 0.0014126885216683149, 0.0014413314638659358, 0.0010264336597174406, 0.00089076475705951452, 0.0018434217199683189, 0.0014038699446246028, 0.0014054097700864077, 0.0013704276643693447, 0.00084679818246513605, 0.0012690728763118386, 0.0015882435254752636, 0.0012381980195641518, 0.0012604802614077926, 0.0010839364258572459, 0.0010034778388217092, 0.00093698856653645635, 0.00098503357730805874, 0.0022508883848786354, 0.0013317923294380307, 0.0010670273331925273, 0.0014749607071280479, 0.00098887179046869278, 0.00076176179572939873, 0.0011420388473197818, 0.001076827640645206, 0.0010932276491075754, 0.0012272385647520423, 0.0012131169205531478, 0.0010116001358255744, 0.0011249216040596366, 0.00082870380720123649, 0.001006364356726408, 0.0011833102907985449, 0.0010986601701006293, 0.0010046581737697124, 0.0012923955218866467, 0.0015561578329652548, 0.001493738149292767, 0.0010647838935256004, 0.0011467101285234094, 0.0011619493598118424, 0.001370067591778934, 0.0012139059836044908, 0.0015488945646211505, 0.0010108534479513764, 0.0011082199634984136, 0.00075803761137649417, 0.00097549211932346225, 0.0011240175226703286, 0.0011006996501237154, 0.0013865529326722026, 0.000976383569650352, 0.0010362493339926004, 0.0017517174128443003, 0.0013096571201458573, 0.001457856735214591, 0.0012651636498048902, 0.00079814397031441331, 0.0013406764483079314, 0.0018044007010757923, 0.0012007068144157529, 0.0019467375241219997, 0.001039927126839757, 0.0012442606966942549, 0.0013434885768219829, 0.0016202080296352506, 0.0012450552312657237, 0.00085791898891329765, 0.0011908757733181119, 0.0011929053580388427, 0.00098904862534254789, 0.0016564296092838049, 0.0010978503851220012, 0.0013264883309602737, 0.00094552809605374932, 0.001120672794058919, 0.00086526665836572647, 0.0014620749279856682, 0.00099621294066309929, 0.0012388747418299317, 0.002372650895267725, 0.00068538816412910819, 0.0010667613241821527, 0.00074840220622718334, 0.0011904598213732243, 0.0013961936347186565, 0.0013748588971793652, 0.0010818997398018837, 0.0010368333896622062, 0.0012101150350645185, 0.0013545973924919963, 0.00099336134735494852, 0.0015408201143145561, 0.0012646755203604698, 0.0011164259631186724, 0.0010889582335948944, 0.00083468016237020493, 0.00073547952342778444, 0.0014433615142479539, 0.0014332219725474715, 0.0011032805778086185, 0.0015416290843859315, 0.0012562108458951116, 0.0016155467601493001, 0.0010000347392633557, 0.0013448037207126617, 0.0011359313502907753, 0.0012322000693529844, 0.00095654302276670933, 0.00093523896066471934, 0.001076050684787333, 0.0016704601002857089, 0.0011250257957726717, 0.0011752010323107243, 0.00077886541839689016, 0.0010111293522641063, 0.0013733715750277042, 0.0012098592706024647, 0.0011215810663998127, 0.0014637646963819861, 0.0015674995956942439, 0.0015530503587797284, 0.0012016041437163949, 0.0016126519767567515, 0.0011419302318245173, 0.0012096463469788432, 0.0013481489149853587, 0.0021247596014291048, 0.001360773341730237, 0.0011769700795412064, 0.0015299603110179305, 0.0014413816388696432, 0.0010425694053992629, 0.00086513656424358487, 0.0018181313062086701, 0.001234999974258244, } }; const TfLiteAffineQuantization quant48 = { (TfLiteFloatArray*)&quant48_scale, (TfLiteIntArray*)&g0::quant45_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data49[24] = { 5644, 491, -284, 6993, -2259, 14543, -4780, 916, -751, -8586, -1963, -4565, -16325, -10341, 372, -8091, 87, -2048, 155, -13154, 3435, -4413, -2843, 13062, }; const TfArray<1, int> tensor_dimension49 = { 1, { 24 } }; const TfArray<24, float> quant49_scale = { 24, { 4.9932703404920176e-05, 4.915167301078327e-05, 5.5279349908232689e-05, 5.3936601034365594e-05, 7.2944640123751014e-05, 5.1922328566433862e-05, 6.2020626501180232e-05, 5.1999195420648903e-05, 6.2291903304867446e-05, 5.6010358093772084e-05, 5.9879283071495593e-05, 6.1204642406664789e-05, 5.8871595683740452e-05, 6.7284017859492451e-05, 6.8281973653938621e-05, 4.4590004108613357e-05, 5.5305958085227758e-05, 6.3062827393878251e-05, 6.3177103584166616e-05, 5.3470976126845926e-05, 4.2127932829316705e-05, 5.7899651437764987e-05, 6.1860751884523779e-05, 5.1484312280081213e-05, } }; const TfArray<24, int> quant49_zero = { 24, { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } }; const TfLiteAffineQuantization quant49 = { (TfLiteFloatArray*)&quant49_scale, (TfLiteIntArray*)&quant49_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data50[24*1*1*144] = { /* [0][0][][] */ -3,27,8,-73,-11,-19,48,114,39,54,23,10,-77,-35,-20,29,-37,-11,-29,-55,65,-74,-71,24,30,-42,31,11,60,-14,-18,-103,-37,-24,-21,-23,-29,23,-44,32,36,-71,-28,0,-27,86,17,-80,-36,10,-68,-12,24,84,2,-54,-83,57,-12,-15,20,-9,-14,8,-62,-12,-8,68,48,-5,71,-127,20,-39,-112,-13,37,-15,-16,86,18,-8,-98,-80,-58,-47,33,46,16,40,-36,-77,13,-26,10,-77,12,10,50,11,13,108,-29,49,68,-3,-53,-4,63,39,92,-25,82,108,-38,52,119,-38,37,31,-91,53,-21,-52,-27,22,-20,38,-18,-50,40,-28,-26,-18,38,0,-36,-15,42,-42,-26,-25,-25,-68, /* [1][0][][] */ -55,-36,-69,-56,-45,-23,90,-4,-47,56,-30,50,-47,-43,18,-18,-19,-35,47,-14,-47,-13,24,-60,-39,44,-43,-19,63,82,-42,-8,41,-60,4,59,47,58,114,-24,0,-5,-52,7,-21,-21,43,31,121,77,-25,5,-2,-4,30,3,-83,-9,33,-38,-12,-36,71,5,58,-71,65,-74,40,109,13,-26,127,-9,44,31,2,35,105,38,-28,28,-56,-40,21,15,-14,-24,-29,-46,9,-35,-47,-6,3,13,-39,-14,-26,-31,-4,-44,27,14,6,14,-7,-90,2,-10,14,6,-74,48,-31,-10,-93,27,101,16,-45,2,-9,-7,-57,-19,-39,2,23,-64,37,-100,19,-24,15,-33,33,7,-59,-63,25,74,7,50, /* [2][0][][] */ 6,-19,9,-19,2,57,26,1,12,23,17,47,-53,16,33,72,48,-37,35,-49,-1,11,19,41,8,-1,-20,49,-13,-51,-6,15,59,7,8,13,-74,-33,-27,53,35,-30,-29,-40,-48,42,-16,47,-20,-27,-64,-13,69,60,-16,-24,6,-14,-95,34,18,-55,53,38,-54,-1,18,-49,65,28,55,19,6,33,-78,-20,36,-39,-9,-78,46,-25,-2,15,45,-4,-52,-31,40,47,59,-63,69,17,-53,-23,-21,-53,-7,-4,-26,-29,3,-25,-50,39,55,-23,35,-35,-20,25,93,-19,-79,120,-14,-11,27,-59,-83,22,63,-51,-13,28,67,27,-57,42,-6,-2,3,-36,-127,27,-26,-31,-12,-33,24,17,68,-41, /* [3][0][][] */ 20,-101,51,-17,29,7,-26,12,17,-67,-10,21,-17,-57,-36,-45,33,66,-33,43,25,-12,28,-43,81,9,18,0,34,46,-57,-127,-87,0,-30,43,3,16,51,-111,16,30,29,-24,15,54,-59,-87,-38,53,17,-50,60,27,32,34,-7,2,-38,14,31,-15,59,-39,24,-38,74,-10,67,6,-49,-65,68,88,22,42,28,64,-60,-79,17,-28,42,-20,73,7,12,8,-14,-41,-79,-100,15,61,-34,-8,-94,72,-34,51,65,20,-74,-114,-22,72,-28,-36,42,-62,-42,44,-27,-27,-20,-37,12,55,-55,-46,56,26,64,41,-34,-57,57,62,-10,-22,-30,-72,104,30,-15,-10,-38,6,-55,37,-27,-33,-14,-22, /* [4][0][][] */ -15,-48,31,42,-18,15,-89,48,50,-63,-33,-44,55,43,-41,-8,37,-36,21,-33,0,-5,113,-13,52,14,-83,44,24,-20,12,-8,-88,-32,36,44,-29,-34,-7,41,34,16,18,-14,-46,47,-42,-78,-44,-18,25,-9,-52,12,-9,15,10,-19,-35,-21,17,-11,0,21,-38,-20,22,48,8,83,-5,18,64,-41,-12,47,0,59,2,35,-13,17,-22,48,41,-13,4,-44,9,-6,39,-44,37,-33,-35,65,50,19,-5,-23,-20,-23,11,47,30,-27,34,-37,4,-1,-56,4,14,53,-66,1,8,-16,20,89,10,12,9,30,-48,-26,3,3,-39,27,-127,14,-42,36,-7,50,-18,44,-12,-27,-18,30,-24,37, /* [5][0][][] */ -35,-57,-35,-98,4,81,-1,-23,-47,-36,-38,-75,-37,14,20,-93,-65,7,-27,-10,-53,1,16,-70,15,70,-44,3,-33,-15,-8,-52,18,36,11,46,-97,-61,-37,9,-30,-5,-55,-14,-13,-14,-81,-37,-18,61,60,-57,15,37,30,40,51,-111,-109,45,-64,76,-63,28,46,-63,44,-8,75,-41,2,-4,79,-15,-28,21,-27,45,-33,-47,-15,-8,70,52,16,31,-78,-35,-6,-5,30,-43,-16,-13,90,-42,3,-37,42,-90,-40,-41,-5,1,-25,50,-8,42,37,24,49,-6,-3,-13,-32,-119,29,49,19,127,-34,-49,86,-23,-29,-87,7,-31,82,17,-16,63,-51,3,-14,111,-40,-35,5,15,-28,68,72,-12, /* [6][0][][] */ -49,-90,32,-6,75,-70,-72,52,-38,4,-55,2,0,-21,-8,-19,29,47,-34,73,-45,30,55,-4,11,15,8,-23,-51,4,83,-50,-47,-12,-32,28,-67,115,55,76,2,-72,-70,-21,4,27,8,-110,-50,47,-12,57,12,17,47,31,10,-3,-71,45,-60,-51,22,-49,19,-28,10,31,108,-60,-23,-27,30,51,29,-24,-81,19,11,-89,71,34,-13,-30,-16,38,-37,108,-86,23,-43,66,-48,12,-40,31,-3,127,40,41,15,0,-44,117,34,31,69,-2,-8,-91,6,-41,-61,-50,11,18,14,24,-107,-68,-7,34,27,-12,-1,-31,6,13,-17,1,28,-15,35,65,8,60,-9,-10,7,17,114,0,25,36, /* [7][0][][] */ 127,-25,-13,-74,4,-84,-57,40,-8,-42,19,41,28,-26,-49,-73,63,-9,-14,17,35,-15,21,-70,-82,24,-28,-63,13,41,13,37,20,-32,30,-47,-36,40,97,21,-57,-77,-72,50,-87,-18,30,-42,-51,-52,44,16,-24,5,5,101,19,16,6,-34,-59,41,6,-74,-25,37,4,-15,-10,59,-44,-37,-88,-96,17,-42,51,23,-24,-15,-38,117,-9,19,44,33,-75,6,48,23,34,23,27,-28,25,-28,2,70,-68,14,-9,-31,-55,-1,25,49,36,61,-21,8,23,-3,-20,-34,-6,37,37,11,44,-60,68,39,26,-70,13,-19,42,15,-20,-28,-13,68,3,-8,-21,-58,66,91,-22,32,54,-63,1,-2, /* [8][0][][] */ -20,77,-78,106,-100,25,38,38,24,8,-17,18,38,-58,13,-25,26,37,-57,-34,45,6,-79,-64,22,-4,-52,29,25,-115,55,-35,-17,-53,-84,28,51,11,44,-42,-18,-42,-38,48,-1,-53,12,-17,-26,56,-32,8,-82,-30,63,51,40,18,4,-26,86,1,-47,-85,-33,107,-22,6,-15,-11,63,32,-79,42,-90,-49,99,49,15,-43,-1,-41,51,-44,-37,-18,77,-2,40,65,-55,-17,45,-43,53,-31,24,-46,2,-10,54,48,66,13,-8,-48,-52,-76,-13,-32,-3,-127,26,40,-85,-20,48,-48,109,41,-17,-34,10,25,45,-51,21,-7,-16,-19,48,19,39,13,-13,39,4,17,-16,-86,42,43,26,-73, /* [9][0][][] */ -22,37,13,6,-48,-32,-21,99,127,17,-42,91,24,-19,-2,8,15,78,22,102,19,-11,-75,46,-15,-37,-21,32,40,-12,-57,-60,0,17,-57,80,51,-30,68,-32,37,66,-36,-31,-41,-40,24,-57,-17,-36,1,3,-28,22,-14,118,-54,-13,44,-36,-22,-36,32,16,-4,34,-31,-2,-30,-2,6,-31,48,-1,-18,1,2,49,-64,-61,24,77,61,9,36,-1,43,-47,-30,-68,10,12,46,0,-5,-32,30,-9,-27,-61,-10,73,87,-30,-42,-68,30,44,43,-70,75,30,-66,-28,2,-17,6,65,-5,113,-108,-28,46,-40,-82,21,-42,-51,20,-45,3,3,2,38,94,2,61,-24,59,0,37,81,-37,14, /* [10][0][][] */ 9,-17,7,-6,-92,8,17,-10,40,-77,4,28,-69,30,127,-23,-53,5,24,-32,-21,84,24,-71,100,-9,68,4,-42,37,91,46,-77,46,-54,17,14,-30,14,30,12,-1,-26,-19,86,111,-18,-23,-2,-33,44,-27,-3,-73,-17,19,3,-38,0,62,47,46,91,-14,58,-84,-14,7,9,42,-7,18,-34,-33,-53,35,18,-35,-68,83,47,87,112,29,-40,-13,19,28,4,0,-62,-52,-26,48,-14,47,-39,-102,-72,-44,11,-60,-107,-84,-52,24,-19,41,65,7,-51,-53,42,57,-33,29,82,-9,63,15,9,-60,21,-16,18,-32,-44,15,-31,-23,20,26,38,-18,-16,67,23,18,-42,82,-76,-34,-31,8, /* [11][0][][] */ 75,92,27,22,38,-44,6,-79,10,53,34,15,-4,-53,34,55,95,-39,-1,44,-36,-78,17,47,36,-84,74,-17,14,-127,16,19,95,36,21,-66,21,-2,-60,-22,-63,-11,-48,38,-15,72,-86,-6,69,-58,-60,78,4,-17,-71,-16,-7,-1,16,-16,98,-25,25,42,4,-37,-101,9,-38,19,47,75,8,-36,4,-3,29,8,21,54,-74,23,35,54,43,-83,34,-5,8,72,7,-50,56,7,-7,-10,-47,-70,-5,-25,-26,-48,96,-24,39,48,-64,-34,-12,97,0,-110,-56,94,31,14,-2,-76,104,-65,23,-53,46,-29,-9,-33,20,-41,86,-50,-82,5,-86,40,-68,-6,13,79,15,-100,1,82,-11,58, /* [12][0][][] */ 15,-34,114,-7,-112,107,-61,-23,-58,-86,33,-61,-45,49,49,-42,-114,69,-71,5,101,37,-56,-34,-42,48,-4,18,-12,25,10,-58,23,-3,-40,58,40,39,-114,91,-4,-19,-1,-25,18,73,-41,-81,13,34,-77,86,-15,-97,6,36,55,12,6,127,31,50,-35,-11,76,64,60,14,-33,46,-48,50,22,31,63,14,65,23,48,-102,49,-76,29,34,-14,40,-35,6,-102,8,60,65,20,-35,33,6,-1,-95,12,-67,63,37,-38,-1,0,0,8,35,-86,-79,-70,19,19,-4,49,-1,-9,20,-5,21,11,-20,97,17,86,99,-34,5,116,68,-28,-34,92,76,-45,-69,27,-19,-63,78,100,12,63,-26, /* [13][0][][] */ 83,58,21,56,-12,-25,-72,-39,60,-14,15,72,15,17,21,83,-57,23,-54,21,41,48,106,-42,-78,8,-39,-33,-80,3,61,50,-6,9,-7,28,20,-12,127,44,-3,-86,-36,88,1,-35,-23,31,15,115,-9,118,-31,50,79,38,76,-54,3,-29,-32,38,2,-67,28,-48,8,31,5,-1,-55,47,1,-18,32,13,-81,-33,36,48,-11,-76,78,-42,-29,42,88,49,-57,-18,-38,-16,-16,13,-72,94,43,-23,103,100,-51,-85,10,-80,-8,8,8,-6,-13,21,-3,-48,-36,0,23,-42,-20,-10,17,-103,29,-14,-24,-63,59,-49,-15,37,10,-93,11,72,29,21,-62,-57,50,47,2,-9,21,-70,66,-41, /* [14][0][][] */ 74,5,-2,-18,16,-50,61,-4,55,16,-35,-29,65,44,15,2,-18,-12,20,-38,21,-29,-6,-32,-3,-24,65,-6,2,-91,3,-63,39,30,31,-4,54,-13,-6,-31,50,-5,-87,-7,-30,7,32,-11,29,16,35,-64,13,-4,26,-16,28,82,86,32,54,-62,-2,52,-47,1,9,-9,-48,-14,27,6,31,5,-4,-12,55,11,-70,3,-14,27,-25,-23,-49,50,-13,-11,64,23,-17,-4,80,28,-19,-4,-4,-127,8,64,-58,8,28,20,52,51,35,-31,40,58,-14,71,6,13,36,-37,40,-57,-15,2,11,-25,-66,43,-32,-40,-33,14,24,-19,-80,-65,-35,19,-42,-60,9,-32,2,-41,-79,49,17,10, /* [15][0][][] */ 47,-7,15,66,-64,-41,54,21,-7,-7,37,-47,30,14,-53,-38,-72,30,17,46,-114,-104,85,-65,-6,-43,-32,-44,-49,-20,66,-12,-3,27,28,30,71,17,5,-1,-37,-1,76,14,51,-101,31,-15,-14,6,-3,10,8,-1,-10,41,40,52,40,-29,-68,-6,31,-7,10,21,37,46,5,4,-3,86,46,19,-13,-9,49,-13,-41,60,-40,-57,-8,-35,-67,42,-39,-23,-52,-52,22,-10,-13,43,-20,34,19,14,40,-50,-48,3,18,40,-21,62,25,-55,-20,10,76,-17,-89,-12,82,27,28,30,-46,-19,22,21,8,-12,-37,35,-29,50,127,-35,108,53,27,-35,25,-79,45,-30,27,104,-47,30,-49,6, /* [16][0][][] */ -27,-12,43,39,-25,-5,-25,-22,-14,8,-32,4,-17,-53,-64,1,-67,25,-93,-119,-14,-69,56,-127,66,8,67,34,52,-56,31,-23,26,-1,10,-20,-39,25,-51,-47,43,-83,-2,75,73,26,42,18,24,-52,-46,45,53,-3,18,4,-105,-16,-33,23,15,37,37,-83,38,0,27,18,0,7,-3,-4,-30,-37,-36,-8,-43,-32,-20,92,10,-43,21,-18,-16,5,90,-7,-39,14,3,-8,32,74,84,53,100,15,-12,44,40,-12,-1,-47,55,52,-51,19,7,-25,-37,-35,1,113,-25,20,63,19,-38,7,3,16,35,-55,-11,44,2,-23,-25,-81,-9,1,13,7,-55,-42,77,72,109,-42,-2,77,-66,-110, /* [17][0][][] */ 52,-26,20,18,-22,64,70,39,-34,10,-52,-18,26,-10,-52,44,-26,-6,-23,-21,-30,-83,-7,-67,13,-69,56,30,64,86,37,-29,17,9,40,-23,-2,-2,19,6,57,-20,20,-12,-90,18,-4,76,31,57,-37,-57,-20,-53,0,-38,37,-75,28,-24,33,39,-56,76,-10,82,7,16,14,-81,10,85,-52,-18,-25,77,9,-68,6,-49,-15,-82,22,-40,-50,58,29,25,-45,-49,-82,0,3,0,22,-21,104,57,1,-52,-14,-54,23,24,38,-16,29,56,22,31,-11,-84,50,54,-35,41,84,-36,56,-36,33,127,68,-18,-21,-51,92,-7,-24,-56,45,-1,-1,-23,-59,-60,-68,-20,-47,-92,-70,96,2,-83, /* [18][0][][] */ 55,-15,-46,-109,33,-44,-82,-3,79,50,-95,16,36,-23,44,28,79,20,70,28,35,-68,2,-25,-127,28,-8,38,6,0,0,-24,39,2,-56,-9,10,-20,-105,-9,43,23,1,-98,35,28,35,-17,-35,30,24,4,24,-50,-2,-14,45,-40,-14,1,98,43,-48,4,-7,-8,-7,-9,47,32,61,6,15,27,-19,44,-39,10,23,29,13,20,-11,-5,-14,6,32,-53,41,-21,3,22,-26,15,20,32,14,-60,-37,-41,66,-2,-39,-80,27,-11,-57,13,-31,-24,-73,1,-10,-52,-19,37,-16,26,24,54,31,25,-20,-40,-32,20,-18,3,-45,-3,-32,-9,27,51,56,29,11,-1,-45,-12,4,-16,73,35, /* [19][0][][] */ 19,-27,18,21,2,-82,35,-51,-21,-10,4,24,61,0,-9,14,15,-54,-12,35,48,116,41,54,-59,26,26,-37,8,51,42,45,-48,86,-75,-20,41,-3,-27,-55,69,-20,-54,-12,34,-7,-3,-80,-83,6,48,37,-73,24,-77,-69,26,47,-92,-9,8,6,-59,62,13,73,60,82,46,6,-2,3,-15,7,17,51,-127,56,-30,-36,7,-7,27,40,75,61,-46,94,6,-11,3,26,-44,1,-71,19,-1,88,40,-15,48,74,-57,-65,10,71,-19,-19,5,15,82,-21,45,-76,95,52,21,-3,-111,68,86,34,-40,15,47,-20,60,20,33,3,47,20,-8,83,42,-61,85,-12,8,-29,37,-63,36,-44, /* [20][0][][] */ -10,43,-44,-38,60,26,102,-87,32,-41,-102,-45,-21,23,-31,21,37,-70,-66,15,31,-97,-8,66,17,27,42,-41,32,-29,-61,98,56,67,28,-1,-30,-72,38,17,-8,-2,66,127,-67,46,-47,56,-3,-14,15,23,-23,18,20,-47,25,-47,-41,56,22,49,67,12,127,-51,-1,28,-23,-58,-88,-65,-35,47,-43,-42,2,58,-42,-17,-38,19,-46,27,-47,-17,31,-18,15,58,-54,27,-43,-67,-10,4,127,-18,-72,47,-30,64,-55,-24,6,-79,-18,9,39,-27,78,-76,-9,-23,-23,96,-50,-2,-41,-44,49,-51,49,-32,41,-78,0,-44,-61,-22,-44,46,-18,-9,29,-14,-4,-11,51,-57,1,-29,78,-26, /* [21][0][][] */ -20,-21,33,-43,47,52,45,49,-39,-86,28,-15,-42,90,68,18,-85,14,56,34,37,24,91,19,4,24,-7,64,-10,127,48,-22,-49,28,-37,-40,-68,73,13,48,-42,-12,-38,-56,-17,-73,23,24,-62,-23,-25,13,30,25,-20,-27,-21,-28,12,-49,-22,27,-13,44,4,-29,21,-64,-12,-89,-38,-27,26,89,26,1,-23,9,-7,80,-27,6,1,37,64,65,14,-86,-44,-33,60,-16,-3,9,29,-14,-31,54,-30,-17,-20,30,-12,46,-25,1,-95,106,34,69,22,54,-1,-58,35,3,60,-3,-121,62,-36,-70,-61,39,64,64,-20,-82,-12,60,57,9,-27,-70,-8,52,-78,-12,1,10,-23,107,-10,-4, /* [22][0][][] */ -15,35,12,-15,62,12,21,-58,6,54,43,1,-51,-96,103,20,17,-25,-15,94,-1,62,52,17,42,32,93,5,72,6,13,34,61,94,-77,9,-81,-12,57,11,-13,-1,-4,44,-90,-16,17,9,-10,-62,-35,37,18,-55,7,41,2,-45,4,39,-61,-62,66,-9,8,42,12,51,31,-35,-61,-38,-74,24,-9,-46,20,-33,-18,-50,8,5,49,19,-23,-74,-30,21,-62,-14,-52,-16,-23,-21,27,-91,51,-52,-16,16,56,-36,-15,36,47,-49,80,18,-32,-58,-6,-13,-57,60,-14,78,19,-30,-69,-40,44,23,9,51,-53,-66,-86,16,66,-17,101,-33,-42,-15,-43,-66,-72,-38,127,48,-8,103,6,-51, /* [23][0][][] */ 36,-3,-14,16,-53,-27,9,-10,27,12,-24,-91,-50,-11,-48,-10,28,117,6,8,0,-14,-31,-55,-14,-27,6,-36,-12,-56,-89,-12,-2,47,-19,3,6,39,-57,0,-59,-37,-18,61,-50,11,12,120,34,-64,-26,42,127,-19,38,46,30,-23,26,92,78,-37,-23,-22,23,-12,-19,-36,-46,-33,45,-37,27,41,-3,-31,75,-40,-27,-43,-96,51,-18,25,-24,-5,8,-6,-80,45,-24,-71,54,-58,-46,26,-36,-46,-25,53,-68,-46,-64,19,82,35,16,-45,82,8,-22,14,-89,64,48,-35,49,22,39,-30,-9,-13,-20,2,32,2,42,-6,20,-45,-23,-4,-33,-26,-51,6,-27,-9,-13,-12,-16,-4,-15,-90, }; const TfArray<4, int> tensor_dimension50 = { 4, { 24,1,1,144 } }; const TfArray<24, float> quant50_scale = { 24, { 0.0021221397910267115, 0.0020889460574835539, 0.0023493722546845675, 0.002292305463925004, 0.0031001472380012274, 0.0022066989913582802, 0.0026358766481280327, 0.0022099658381193876, 0.002647405955940485, 0.0023804402444511652, 0.0025448694359511137, 0.0026011972222477198, 0.0025020428001880646, 0.0028595707844942808, 0.0029019839130342007, 0.0018950751982629299, 0.0023505031131207943, 0.0026801701169461012, 0.0026850267313420773, 0.0022725164890289307, 0.0017904371488839388, 0.0024607351515442133, 0.0026290819514542818, 0.0021880832500755787, } }; const TfLiteAffineQuantization quant50 = { (TfLiteFloatArray*)&quant50_scale, (TfLiteIntArray*)&g0::quant49_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data51[144] = { -2992, -1331, 3570, 5588, 4028, -68, 2167, 4948, -1918, 507, -2107, -1328, 2352, -597, -2062, -2210, 668, -2774, -1395, 2320, -528, -73, -1167, -1899, 101, -1966, 269, 345, 5330, -2040, 2167, 6887, -7174, 232, 933, -3763, -1887, 2915, 5250, 967, -432, -867, 681, -1758, 8263, -750, -3730, -3452, -277, 1723, -1691, 709, 3676, 4865, 2592, -4826, -2047, -339, 374, -1407, -2603, -1165, 4082, -1463, -3304, -1741, -1815, -517, -90, -916, -2259, 2492, -1871, -2097, 7591, 1078, 5883, -3035, 6160, -1457, 1052, -1227, -1057, -478, 1194, 2839, -6116, -620, -1047, -2793, -667, -1513, 222, -2704, -102, 1357, 1157, -1574, -808, -558, 2518, -949, -1133, -1820, -5182, 333, -891, -50, 1384, -352, -5750, -4610, -1243, -811, -760, -365, -1641, 124, 3153, -3370, 432, -845, -917, -690, 242, 329, -1961, 954, -328, -2074, -2795, -1133, -1766, -157, 5744, -2032, 242, -2272, -2366, -2068, 4463, 9370, 2113, 5113, }; const TfArray<144, float> quant51_scale = { 144, { 0.00016804438200779259, 0.00024315870541613549, 0.00033682520734146237, 0.00014918509987182915, 0.00032800686312839389, 0.00030463642906397581, 0.00015904477913863957, 0.00023993206559680402, 0.00026465312112122774, 0.0002460624382365495, 0.0002591828815639019, 0.00019830744713544846, 0.00025016150902956724, 0.00029300976893864572, 0.0002775585453491658, 0.00019196965149603784, 0.00028724520234391093, 0.00018853212532121688, 0.00018506799824535847, 0.0002126285107806325, 0.00030525645706802607, 0.00023997943208087236, 0.00014348367403727025, 0.0003259139193687588, 0.00030513940146192908, 0.00024656931054778397, 0.00017485179705545306, 0.0001941126974998042, 0.00016540457727387547, 0.00032574057695455849, 0.00022054466535337269, 0.00016249671170953661, 0.0001277225383091718, 0.00022226093278732151, 0.00015165659715421498, 0.00015579925093334168, 0.00025402105529792607, 0.00013860512990504503, 0.0002263685455545783, 0.00013066768588032573, 0.00022016442380845547, 0.0002480729017406702, 0.00016531156143173575, 0.00027749082073569298, 0.00013789640797767788, 0.000310482457280159, 0.00017952013877220452, 0.00024654594017192721, 0.0001632040657568723, 0.00025465906946919858, 0.00035042912350036204, 0.00017660466255620122, 0.00016097980551421642, 0.00029875044128857553, 0.00021734685287810862, 0.00018430384807288647, 0.00027028814656659961, 0.00022570973669644445, 0.00028618521173484623, 0.00027172412956133485, 0.00031873219995759428, 0.00032914758776314557, 0.0001885590172605589, 0.00026711993268691003, 0.00015294711920432746, 0.00015104058547876775, 0.0001979056978598237, 0.00022544446983374655, 0.00016925434465520084, 0.00029349609394557774, 0.00022930486011318862, 0.00017529404431115836, 0.00022554588213097304, 0.00036115734837949276, 0.00016106921248137951, 0.00029430119320750237, 0.00018645648378878832, 0.00014823126548435539, 0.00022655785141978413, 0.00020339050388429314, 0.00021410737826954573, 0.00024066581681836396, 0.00021907950576860458, 0.00022498788894154131, 0.00013948831474408507, 0.00026830416754819453, 0.00016566799604333937, 0.0002538725093472749, 0.00027559575391933322, 0.00024583464255556464, 0.00016752530063968152, 0.00029328509117476642, 0.00030166265787556767, 0.00013914046576246619, 0.0002221287286374718, 0.00021354737691581249, 0.00016185335698537529, 0.00022856731084175408, 0.0001998792722588405, 0.00030046430765651166, 0.00034096560557372868, 0.00026428967248648405, 0.00021950787049718201, 0.00034007421345449984, 0.00020321371266618371, 0.00019055462325923145, 0.00038183634751476347, 0.00028498930623754859, 0.00022675884247291833, 0.00025818846188485622, 0.00013578412472270429, 0.00028055152506567538, 0.00019866880029439926, 0.00023745052749291062, 0.0002939624828286469, 0.00029588968027383089, 0.00023918520309962332, 0.00029194646049290895, 0.00017412283341400325, 0.00027039158158004284, 0.00018745189299806952, 0.00019570274162106216, 0.00024421245325356722, 0.00023552043421659619, 0.00030927310581319034, 0.00018733288743533194, 0.00028996021137572825, 0.00022375774278771132, 0.0002504500444047153, 0.00022043746139388531, 0.00018261434161104262, 0.0002830629819072783, 0.00019361857266630977, 0.00026059654192067683, 0.00017382216174155474, 0.00012552562111523002, 0.00026538496604189277, 0.00023271823010873049, 0.00021866369934286922, 0.00032735712011344731, 0.00015596738376189023, 0.00013427005615085363, 0.00025391147937625647, 0.00018625441589392722, } }; const TfLiteAffineQuantization quant51 = { (TfLiteFloatArray*)&quant51_scale, (TfLiteIntArray*)&g0::quant45_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data52[1*3*3*144] = { /* [0][0][][] */ 38,36,-8,-47,31,-67,49,-65,-3,-19,-64,49,48,-25,12,-9,-19,127,15,74,-8,53,-48,-13,-55,29,-55,-89,46,17,-28,12,78,-53,92,106,-97,-95,17,-93,127,6,-31,29,-127,22,127,9,-64,-40,40,-28,-17,38,39,-24,8,-49,32,127,32,39,-70,-94,-1,-70,-11,70,92,4,-4,-33,127,10,-127,-20,-82,-40,-50,-46,-127,32,71,127,-95,-127,109,-27,84,11,-22,-4,112,27,19,-50,-96,43,-70,6,-24,16,-42,-1,-6,14,10,6,-1,45,60,26,127,35,-25,-41,40,-14,-27,-46,-5,20,-85,-90,-17,-75,92,-121,-59,-35,-11,-70,7,107,-45,31,-25,127,26,88,15,-118,127,-93, 95,85,-52,-127,-127,-50,-13,-117,69,60,-4,127,-64,29,27,54,-17,71,-2,29,127,-122,-19,7,-19,24,-69,127,-44,-32,26,-127,57,-6,-39,-40,20,-4,-110,110,109,-42,-123,-37,-115,-127,79,4,-21,32,6,-63,117,-97,-37,127,127,-47,41,45,-40,-21,-72,14,-41,115,-57,14,127,108,-10,-76,55,34,-103,98,-52,-12,1,-46,-20,-26,-127,54,-78,3,26,-63,20,-12,1,-19,-25,-14,110,-39,-8,127,-96,13,-127,-14,4,-28,56,59,127,1,61,55,1,-7,95,-1,-29,-13,52,69,-51,-13,-28,34,-57,-34,-96,-1,-24,97,-3,127,127,101,-26,28,35,-44,15,54,-60,19,127,-127,-35,-65, 29,70,5,-61,-8,-27,116,-127,-3,-15,25,-57,98,-13,-27,68,7,-47,44,8,23,-21,-20,-22,-14,14,15,61,-38,-57,34,27,-47,127,83,-8,-49,82,-20,124,6,72,-8,25,-59,16,-18,32,-74,-4,49,23,-38,-38,67,74,-6,48,21,47,-2,-23,-41,18,54,18,-17,-9,77,-30,-11,39,61,-9,-96,-127,21,-40,23,-49,63,-19,106,-62,103,12,-24,-16,-65,-9,38,24,49,56,29,-21,127,14,61,-101,-9,22,13,36,32,43,-56,-6,92,20,127,2,-86,-6,-46,22,25,-6,-33,0,-41,14,29,-30,1,7,21,10,55,50,34,127,-29,-127,46,28,74,32,13,10,-116,-47,21,-42, /* [0][1][][] */ -21,-24,-127,-95,66,110,127,-32,46,127,-31,-37,109,99,-9,-127,-79,-63,25,-107,15,-28,-40,127,-27,-54,-42,77,30,49,-33,-53,49,44,60,90,127,-41,-12,-34,-75,114,-63,80,-120,49,-7,-74,46,-127,7,-37,-124,-47,-127,94,-53,-86,84,40,14,-9,-127,69,118,-55,12,-127,-112,-85,-48,-23,-34,127,-1,-107,-106,127,-7,37,11,117,-69,-115,-30,105,-3,-68,45,127,-42,47,-127,-26,-127,31,-90,-57,38,20,-54,-36,60,-10,87,-35,25,127,63,127,15,67,-19,63,127,25,127,40,14,-55,-62,0,-55,80,-86,-3,94,105,14,57,105,48,127,-82,-59,-126,127,39,73,-58,-5,-77,-102,127, 127,-88,41,-20,-31,127,-68,-33,-19,-34,127,52,-120,-127,127,-5,-70,48,-127,85,-43,127,108,-2,127,100,101,-101,-127,127,88,-50,78,-36,-127,96,63,-122,-26,-127,-47,-85,84,127,-110,119,-86,61,-28,-59,127,100,-113,-62,-18,-4,-24,127,-112,20,127,-19,100,33,73,127,127,-22,-59,-16,64,-27,82,-47,-31,-82,-3,79,-84,-13,-62,61,115,-43,-72,-35,38,127,-127,88,69,127,110,43,-38,-91,-18,-52,47,127,56,-24,-91,127,127,-76,-53,-40,-102,-45,62,127,3,-126,109,127,-24,-72,-127,127,-116,77,127,-8,127,-87,-42,-127,-46,62,79,-3,-25,54,-127,127,10,-117,127,-38,-81,-4,-72,-112, 45,127,-29,70,-1,15,-2,-113,-56,-59,-76,-19,-127,119,3,49,44,-52,2,-32,-13,-66,127,20,-9,-65,-127,-30,-13,42,-42,72,96,96,49,53,-3,-33,10,47,53,127,35,6,-20,27,95,-43,117,-27,-57,127,-127,-2,-27,19,-32,-26,-65,-17,9,11,-17,-14,-16,-57,25,81,-43,-32,-48,127,-28,11,-57,-20,28,-7,-51,-36,-7,5,61,-34,69,-58,78,24,53,12,127,-5,-2,127,43,52,-45,38,-66,27,-4,7,15,-34,28,-88,26,-60,-127,-4,123,-14,-59,49,17,-22,37,-31,-16,77,-21,-34,-22,4,49,10,16,-24,69,21,-112,-106,47,-52,-18,125,-88,64,-30,-62,-108,-126,64,3, /* [0][2][][] */ 52,-4,48,-65,40,20,-57,48,-11,-6,4,-9,-50,2,-22,-1,127,91,127,-25,-12,-71,-115,18,22,127,65,1,57,-14,-127,-96,127,-21,-42,-53,-20,-91,-127,-38,-22,6,-93,-68,-46,-45,-8,127,-106,80,8,-58,124,-127,104,11,43,33,-9,-4,43,127,7,-6,127,-69,-82,51,-105,127,127,-36,-58,15,-20,-14,17,81,-80,-16,9,-127,2,24,127,35,127,57,59,30,10,-42,-108,-71,-38,-56,-84,-1,-70,-24,29,127,110,20,-25,127,42,-25,66,-78,-17,-26,9,24,-62,25,-53,0,75,81,127,-127,77,127,-28,20,-100,-61,4,62,-40,81,-61,-14,24,-30,33,-2,12,38,-95,-84,19,15, -84,0,-84,-74,-11,-19,-91,45,127,27,71,-44,45,39,-6,124,71,-64,76,-100,-33,50,99,28,-25,-90,63,-15,-126,-40,-116,-107,-13,-9,-35,127,-32,127,-20,3,58,-27,127,-39,-56,-42,48,49,30,49,-8,-52,-63,29,-45,-26,80,-20,-13,-58,23,6,-62,-20,-27,49,50,17,14,4,65,-37,-13,45,-37,85,-127,78,-127,127,77,-24,-59,71,-46,-76,55,-50,11,33,81,-60,8,10,-7,127,73,11,127,-14,-25,6,127,9,-3,-72,-20,-4,-27,-14,16,19,-15,76,-53,-73,-31,127,99,6,105,50,21,86,-27,-37,127,81,127,-27,3,-67,119,-1,-86,63,-112,37,47,127,-66,-27,-21,-66, -4,-24,-28,29,-88,31,-49,1,19,-38,-31,-34,-16,-19,-3,53,4,15,-37,-127,6,-31,-107,16,-9,54,48,-48,-6,11,35,-6,85,-34,-17,-30,35,81,-27,84,9,52,-35,25,71,44,43,56,127,-9,-34,-3,-55,-8,-90,-3,29,-4,127,8,-14,12,-75,127,3,13,71,76,-16,-12,81,-1,-23,-3,-41,14,-104,41,-14,67,43,-3,-35,29,-51,-28,-1,41,22,6,-40,23,9,-37,84,-24,88,37,64,-8,-13,-29,15,-30,-20,-7,4,16,-42,-2,40,43,-45,127,19,-10,-11,10,50,-27,26,80,19,-6,-10,127,-42,-61,-42,-38,1,6,51,89,-69,21,-34,24,19,-11,14,-18,-38,17, }; const TfArray<144, float> quant52_scale = { 144, { 0.0071418862789869308, 0.010334244929254055, 0.014315070584416389, 0.0063403667882084846, 0.013940291479229927, 0.012947048060595989, 0.0067594028078019619, 0.010197112336754799, 0.011247757822275162, 0.010457653552293777, 0.011015272699296474, 0.0084280660375952721, 0.010631863959133625, 0.01245291531085968, 0.011796237900853157, 0.008158709853887558, 0.012207920663058758, 0.0080126151442527771, 0.007865389809012413, 0.0090367114171385765, 0.01297339890152216, 0.010199125856161118, 0.0060980562120676041, 0.013851341791450977, 0.012968424707651138, 0.010479195043444633, 0.0074312011711299419, 0.0082497894763946533, 0.0070296945050358772, 0.013843974098563194, 0.0093731479719281197, 0.0069061103276908398, 0.0054282075725495815, 0.0094460891559720039, 0.0064454055391252041, 0.0066214678809046745, 0.010795894078910351, 0.0058907181955873966, 0.0096206627786159515, 0.0055533763952553272, 0.0093569876626133919, 0.010543097741901875, 0.0070257410407066345, 0.011793359182775021, 0.0058605973608791828, 0.013195504434406757, 0.0076296054758131504, 0.010478202253580093, 0.0069361729547381401, 0.010823010466992855, 0.014893237501382828, 0.0075056981295347214, 0.0068416418507695198, 0.012696892954409122, 0.0092372409999370575, 0.0078329136595129967, 0.011487246491014957, 0.0095926634967327118, 0.012162870727479458, 0.011548275128006935, 0.013546118512749672, 0.01398877240717411, 0.0080137578770518303, 0.011352596804499626, 0.0065002525225281715, 0.0064192246645689011, 0.0084109921008348465, 0.0095813898369669914, 0.0071933092549443245, 0.012473583221435547, 0.0097454562783241272, 0.0074499966576695442, 0.0095856999978423119, 0.015349186956882477, 0.0068454411812126637, 0.012507800944149494, 0.007924400269985199, 0.0062998286448419094, 0.0096287084743380547, 0.0086440965533256531, 0.0090995635837316513, 0.010228296741843224, 0.0093108788132667542, 0.0095619847998023033, 0.0059282532893121243, 0.011402927339076996, 0.0070408899337053299, 0.010789581574499607, 0.011712819337844849, 0.010447971522808075, 0.0071198251098394394, 0.012464616447687149, 0.012820662930607796, 0.0059134694747626781, 0.0094404704868793488, 0.0090757636353373528, 0.0068787676282227039, 0.009714110754430294, 0.0084948688745498657, 0.012769732624292374, 0.014491037465631962, 0.011232310906052589, 0.0093290843069553375, 0.014453154057264328, 0.0086365826427936554, 0.0080985715612769127, 0.016228044405579567, 0.012112045660614967, 0.0096372505649924278, 0.010973009280860424, 0.0057708253152668476, 0.011923439800739288, 0.0084434235468506813, 0.010091647505760193, 0.012493405491113663, 0.012575310654938221, 0.010165371000766754, 0.012407723814249039, 0.0074002202600240707, 0.011491641402244568, 0.0079667055979371071, 0.0083173662424087524, 0.010379028506577015, 0.010009618476033211, 0.013144106604158878, 0.0079616475850343704, 0.012323308736085892, 0.0095097040757536888, 0.010644126683473587, 0.0093685919418931007, 0.0077611091546714306, 0.012030175887048244, 0.0082287890836596489, 0.011075353249907494, 0.0073874415829777718, 0.0053348387591540813, 0.01127886027097702, 0.0098905246704816818, 0.0092932069674134254, 0.013912677764892578, 0.0066286139190196991, 0.0057064774446189404, 0.010791237466037273, 0.0079158125445246696, } }; const TfLiteAffineQuantization quant52 = { (TfLiteFloatArray*)&quant52_scale, (TfLiteIntArray*)&g0::quant45_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data53[144] = { 341, 1600, 2225, 652, 1251, -1257, 632, 698, 1843, 1843, 937, 1004, 2008, 1485, -285, 523, 1285, 1182, 860, 1359, 1130, 3087, 444, -801, -280, 1628, 206, -31, 477, -513, 2322, 585, 732, 1341, 513, -446, 1178, 519, 1530, 344, 57, 667, 95, 1271, -211, -502, 896, 1235, -945, -12, -929, 2631, 205, 2264, 1149, -165, 666, 397, 3406, -670, -1401, 1472, 1011, -774, 33, -134, -499, 835, 2042, 1528, -2022, -27, 900, 427, 937, -1148, -1067, 1202, 2142, -1149, -12, -27, -148, 798, 591, 2292, 459, 502, -339, 499, -71, 1069, 2072, 485, -597, 1884, -333, 433, 615, -192, 1884, 545, -326, 955, 1648, 1723, -581, 64, 3249, 855, -178, 1879, -498, -1075, -1949, 613, 188, -532, -317, 1541, 79, 412, 939, 845, -1847, -397, 1368, -376, 1738, 243, 2008, -980, 584, -567, 198, 166, 2276, 733, -138, 5141, 299, 1159, 564, 644, }; const TfArray<144, float> quant53_scale = { 144, { 0.00017219567962456495, 0.00012476692791096866, 0.00012758602679241449, 0.00012956597493030131, 8.9245004346594214e-05, 0.00012406049063429236, 0.000198540830751881, 0.00013848072558175772, 0.0001319832808803767, 0.00017484452109783888, 0.00014658152940683067, 0.00013306009350344539, 9.7176882263738662e-05, 0.00013627881708089262, 0.00020958397362846881, 0.00014729931717738509, 0.00013506175309885293, 0.00015625957166776061, 0.00018258593627251685, 0.00013612245675176382, 0.00018027611076831818, 0.00010732904775068164, 0.00017615083197597414, 0.00018896770779974759, 0.00016997096827253699, 0.0001513239840278402, 0.00016767192573752254, 0.0001992137695197016, 0.00016226092702709138, 0.00013233405479695648, 0.00010687821486499161, 0.00015269490540958941, 0.00013311741349752992, 0.00019316517864353955, 0.00022473253193311393, 0.000164797980687581, 0.0001773031399352476, 0.00015366071602329612, 0.00013409390521701425, 0.00022663541312795132, 0.00020355153537821025, 0.00016143027460202575, 9.9109471193514764e-05, 0.00014629041834268719, 0.0002053592907031998, 0.00010822277545230463, 0.00013777520507574081, 0.00013697773101739585, 0.00013832369586452842, 0.00017700549506116658, 0.00021971456590108573, 0.00012716157652903348, 0.00020852236775681376, 0.00010506794205866754, 0.0001748460199451074, 0.00022423412883654237, 0.00019803372561000288, 0.00021488781203515828, 0.00011272632400505245, 0.0001850017870310694, 0.00015004517626948655, 0.00014439447841141373, 0.00013390216918196529, 0.00014034599007572979, 0.00027654366567730904, 0.00021922474843449891, 0.00016719722771085799, 0.00019468023674562573, 7.9368517617695034e-05, 0.00010581663809716702, 0.00012392284406814724, 0.00018313873442821205, 0.00020819708879571408, 0.00012204416998429224, 0.00013101923104841262, 0.0001149483141489327, 0.0001314781402470544, 0.00015780603280290961, 0.00011856288620037958, 0.00015062667080201209, 0.00015935435658320785, 0.00021202361676841974, 0.00014927801385056227, 0.00019253822392784059, 0.00018708064453676343, 0.00012320994574110955, 0.0001462936052121222, 0.00013923821097705513, 0.00025561780785210431, 0.00018438261759001762, 0.00016695441445335746, 0.00017993825895246118, 9.614610462449491e-05, 0.00038647613837383687, 0.00016299805429298431, 0.0001074649699148722, 0.00018354323401581496, 0.00020529028552118689, 0.000175175562617369, 0.00014586176257580519, 0.00010655808000592515, 0.00019860982138197869, 0.00015676252951379865, 0.00015026990149635822, 0.00014439926599152386, 0.00016012923151720315, 0.00016820014570839703, 0.0001663562870817259, 0.00011214085679966956, 0.00017809723794925958, 0.00017765213851816952, 0.00014052588085178286, 0.00019438037998043001, 0.00013597415818367153, 0.00011297935270704329, 0.00024096695415209979, 0.00028440094320103526, 0.00016190690803341568, 0.00017991596541833133, 0.0001457948237657547, 0.00015345137217082083, 0.00018615511362440884, 0.00011328147957101464, 0.00019286062160972506, 0.00011701525363605469, 0.00022795054246671498, 0.00010276130342390388, 0.00010763640602817759, 0.00013568894064519554, 0.00012506888015195727, 0.00013789183867629617, 0.00013390864478424191, 0.0001701839646557346, 0.00014637483400292695, 0.00021872465731576085, 0.00021725807164330035, 0.00010501221549930051, 0.00015541752509307116, 0.0001555848284624517, 8.2428516179788858e-05, 0.00023027724819257855, 0.00021386935259215534, 0.00018995406571775675, 0.00025390516384504735, } }; const TfLiteAffineQuantization quant53 = { (TfLiteFloatArray*)&quant53_scale, (TfLiteIntArray*)&g0::quant45_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data54[144*1*1*24] = { /* [0][0][][] */ -23,-18,61,81,-94,-118,38,-4,-1,-127,-58,-26,-32,-47,37,-75,57,-9,84,-22,29,74,-29,38, /* [1][0][][] */ -2,28,-53,-93,-5,-10,-78,6,113,104,-19,41,-53,-12,8,73,37,-4,93,-57,1,-25,-127,3, /* [2][0][][] */ -57,-103,-96,-13,76,49,-49,-52,11,18,-34,127,-7,-3,59,79,-9,-37,4,-37,85,13,18,-6, /* [3][0][][] */ 40,-117,87,-48,101,-36,-121,5,44,127,-67,84,-48,-30,-69,-58,56,-17,1,-54,-10,12,120,70, /* [4][0][][] */ 65,-50,114,-6,-58,-34,25,17,92,77,-76,33,-1,47,-44,63,-102,104,53,-127,67,75,-15,40, /* [5][0][][] */ -76,-15,48,87,-103,17,35,-66,28,-83,-127,45,27,30,25,114,-106,-50,-37,-30,-72,59,61,82, /* [6][0][][] */ -7,30,-93,-15,-32,21,36,29,110,-127,-4,-58,48,-45,-9,84,33,-10,8,-31,-40,-9,30,1, /* [7][0][][] */ -74,50,-107,10,27,-8,-63,21,83,66,-6,-80,127,92,69,8,60,95,-76,86,-45,-101,114,83, /* [8][0][][] */ 89,28,52,11,-82,110,-68,-72,112,78,99,45,-12,110,-35,-6,-15,77,21,0,-81,99,-127,88, /* [9][0][][] */ 15,-3,29,-25,5,53,-127,13,27,78,33,-36,-32,-6,-12,38,44,-60,95,5,43,61,86,-25, /* [10][0][][] */ -37,-51,-5,-44,40,-49,40,-83,23,-82,-1,43,-44,86,-117,-14,39,-50,18,-32,-127,-99,-52,37, /* [11][0][][] */ 121,63,15,-95,116,64,-61,77,-22,-9,28,-56,93,-68,-30,93,76,30,54,70,62,33,13,-127, /* [12][0][][] */ 18,-98,7,-44,-63,-28,16,39,-44,-21,15,51,44,127,-80,8,-126,66,93,-37,91,4,75,-18, /* [13][0][][] */ 80,49,27,-15,24,5,73,-127,-42,-64,70,-58,48,20,58,30,41,-13,-75,98,-22,-14,28,-20, /* [14][0][][] */ 70,-36,-18,13,-27,17,54,42,-37,-35,-50,35,-53,-18,90,49,-60,29,42,77,100,-80,-127,-19, /* [15][0][][] */ 87,42,27,39,-26,40,66,116,33,20,37,10,-68,43,37,25,21,-64,-32,101,-15,-127,-39,89, /* [16][0][][] */ -67,14,-90,-6,-36,-48,84,-19,-114,46,-37,29,1,-36,-23,49,-84,37,127,-44,-14,6,96,29, /* [17][0][][] */ 38,95,-63,48,-55,61,-31,-29,-28,77,41,64,-67,54,-11,11,-30,-127,0,86,-14,92,-23,42, /* [18][0][][] */ 14,67,-33,41,86,-21,-21,-40,-28,-3,19,45,-44,-27,-127,-48,-52,-16,22,46,-28,61,-3,-29, /* [19][0][][] */ -127,48,63,9,50,-11,-36,-53,31,-4,36,30,-116,18,105,-43,6,-32,6,-13,11,-95,-23,-18, /* [20][0][][] */ 47,-21,37,-95,55,-5,-66,-41,-127,-40,47,-7,-18,87,-105,25,41,98,-5,16,-73,92,11,-63, /* [21][0][][] */ 35,-47,37,77,-127,-5,-97,72,-20,-72,126,47,114,35,-38,-30,56,-98,93,-68,-91,70,107,51, /* [22][0][][] */ 2,40,127,-93,62,9,-14,-71,11,-25,-27,6,-13,-64,-8,41,51,-1,-26,29,-67,-7,-39,9, /* [23][0][][] */ -59,-32,127,-46,-25,5,-30,33,18,-39,9,-43,-20,1,104,0,100,-45,11,-2,8,-34,57,-44, /* [24][0][][] */ -41,83,-9,32,-70,24,127,-61,-3,-15,-48,-24,5,-14,8,26,51,-15,-55,31,-5,6,54,-20, /* [25][0][][] */ -34,2,-20,-71,66,39,41,-26,-39,92,43,-10,46,-16,52,20,47,41,-2,127,-21,6,38,-9, /* [26][0][][] */ -11,32,-78,-46,32,127,-12,-5,-40,7,-25,-65,101,-24,-22,14,6,34,-36,65,8,39,40,-7, /* [27][0][][] */ -39,-107,16,1,-60,-59,51,74,-42,-40,19,-70,-35,10,127,-64,-32,-62,-10,31,10,-14,47,12, /* [28][0][][] */ 42,-27,-36,-19,-5,-15,-47,59,34,96,127,2,9,98,-40,-105,-40,64,95,59,-9,77,126,-46, /* [29][0][][] */ 68,45,-73,-51,3,-75,7,-39,92,-8,42,36,-6,35,50,84,127,115,-61,-81,-93,-99,-20,-40, /* [30][0][][] */ 30,-64,-127,52,39,43,-115,-35,-68,62,39,117,7,24,-11,-19,-97,-27,49,-104,17,-98,5,-8, /* [31][0][][] */ 77,9,105,88,62,127,-37,-31,13,-15,60,-127,-97,-94,-22,60,-19,-93,-14,-65,0,-48,-38,31, /* [32][0][][] */ -14,-15,92,-79,106,-16,14,22,80,74,-14,-55,-25,21,-14,8,-103,-12,-3,-127,-65,-29,-94,-65, /* [33][0][][] */ -19,75,-83,26,-14,-10,40,53,48,-23,11,20,-22,-89,56,-127,51,-18,63,-27,-8,-11,39,-35, /* [34][0][][] */ -26,15,83,-108,-43,-114,38,-58,-22,-7,25,-15,7,-22,76,35,-17,-76,42,16,-84,0,-23,127, /* [35][0][][] */ 19,-76,-1,-18,67,110,6,-3,96,47,85,37,97,-27,-127,-98,-22,71,80,55,-23,8,33,-75, /* [36][0][][] */ -32,89,-13,-14,108,1,-8,-24,-42,-69,-31,127,-24,-88,-21,-11,-55,-24,-114,54,46,-60,-28,23, /* [37][0][][] */ -14,-12,-103,111,11,-76,-73,59,-38,13,-75,-72,94,-69,-81,-127,-44,-55,25,-4,-104,-18,-106,57, /* [38][0][][] */ 11,-98,13,23,46,100,-1,-59,-19,79,-43,-69,-23,-121,-70,52,-127,-97,-1,34,25,-19,-6,-20, /* [39][0][][] */ 14,-3,18,-12,17,52,-14,2,9,-50,39,-57,-29,-5,-4,-127,-28,-26,31,-71,26,-23,26,-87, /* [40][0][][] */ 2,-127,17,9,9,-52,22,68,-86,-66,-26,-36,30,-3,84,-22,54,-16,11,12,-78,43,-25,64, /* [41][0][][] */ 9,-36,20,-127,-67,75,-61,16,15,66,14,-14,63,-117,47,-8,6,-70,-44,39,-24,31,-8,20, /* [42][0][][] */ -89,-115,-80,114,2,-41,27,-95,-115,9,-106,-123,96,-85,-127,55,15,-43,78,-57,50,25,-60,-29, /* [43][0][][] */ 24,-88,109,81,-11,30,-52,55,-38,127,-18,-5,-67,-83,-16,-45,-91,24,97,-49,26,49,3,-8, /* [44][0][][] */ 20,-48,7,-23,21,25,40,84,70,-127,-79,98,31,-25,-30,-47,-63,88,-6,-32,-48,88,-70,69, /* [45][0][][] */ -70,-106,55,-126,90,-37,-6,59,39,21,-31,104,-124,-55,55,23,54,-13,104,-127,18,47,-54,-49, /* [46][0][][] */ -50,-79,-99,126,119,80,-89,-21,-41,-34,127,-16,-21,-55,-65,-53,-113,-17,9,66,-94,17,-65,-79, /* [47][0][][] */ -44,-11,23,26,-12,20,-20,-55,-18,85,-35,53,125,-48,-92,-42,66,-30,-9,126,-56,22,127,35, /* [48][0][][] */ -31,2,-52,12,-38,-44,113,-92,-127,4,60,17,-72,73,-86,9,-28,-68,-27,59,101,89,-91,-4, /* [49][0][][] */ -11,-14,105,104,-26,45,-53,6,49,24,73,-63,-14,-4,-24,-62,127,22,-20,99,-36,-18,-47,86, /* [50][0][][] */ 47,2,-65,24,17,-24,29,-16,-12,-32,-16,17,-49,75,60,92,-24,-78,23,57,-127,-13,-10,-86, /* [51][0][][] */ 12,-83,93,-70,9,-80,83,-118,9,25,35,-119,51,117,21,-127,-8,1,93,-10,35,70,-36,-41, /* [52][0][][] */ -3,-61,52,-43,-19,13,4,3,19,-21,-16,-79,-4,-57,-4,8,-27,-7,-13,-74,-53,-32,127,-75, /* [53][0][][] */ -24,-76,-89,-32,-45,-24,-3,87,17,-42,25,-33,-51,39,102,76,28,46,-15,92,36,-119,-18,127, /* [54][0][][] */ -47,13,35,-127,-27,-31,2,30,4,61,-12,-32,-8,-42,3,7,11,-70,61,-10,6,30,63,25, /* [55][0][][] */ 61,59,-9,-21,32,19,24,-12,-13,-67,58,24,127,-34,-41,0,-14,119,-62,40,21,13,20,-80, /* [56][0][][] */ 20,6,34,28,-47,-33,10,62,28,44,-34,-15,127,-31,7,23,12,-49,-6,38,34,-25,-7,48, /* [57][0][][] */ 41,-75,51,-23,-38,1,127,-34,28,-18,-40,-5,102,45,-46,-81,35,-12,0,90,-21,-67,-34,2, /* [58][0][][] */ 64,-39,5,-85,-12,-49,-21,8,15,12,-28,-22,-79,-7,-27,6,-26,35,38,-127,0,79,7,66, /* [59][0][][] */ -26,17,98,-3,-38,71,59,-83,27,2,-19,-9,-57,-117,52,70,-83,125,127,41,-46,-34,-58,39, /* [60][0][][] */ 66,71,-81,28,-19,-36,57,-127,-18,-45,93,105,18,-58,-58,-6,31,94,81,7,-3,109,17,10, /* [61][0][][] */ -2,-41,21,-47,56,127,-26,68,63,-84,-12,-11,72,79,127,41,113,63,86,-116,58,-18,-9,-1, /* [62][0][][] */ 127,-89,-20,-103,-22,61,2,-106,6,70,0,-42,-23,70,-38,-41,45,-66,40,31,70,59,-33,-16, /* [63][0][][] */ 35,97,-26,35,44,-38,-42,-66,-127,101,23,19,71,-24,-72,-49,23,-21,-25,75,-79,51,96,-52, /* [64][0][][] */ 29,32,38,-69,-27,-40,33,36,-127,5,5,-48,-15,-45,-10,-51,84,-10,96,45,-98,-58,-24,99, /* [65][0][][] */ -65,-67,17,12,127,-49,94,15,63,-56,-48,-30,4,107,69,10,-51,-125,-104,24,44,23,-36,94, /* [66][0][][] */ 8,-22,63,2,8,125,31,12,52,11,24,-87,25,25,21,36,26,-123,127,41,-76,-21,-35,-29, /* [67][0][][] */ 100,-80,100,-29,-64,20,-23,-38,-38,-91,-86,-100,21,21,-127,33,20,-10,-41,-22,43,-30,-37,10, /* [68][0][][] */ 109,26,2,127,-123,-104,-34,-60,2,0,-123,-54,39,71,-105,37,52,44,67,123,122,33,103,-69, /* [69][0][][] */ -101,-76,78,54,-123,19,115,127,-29,-125,-13,-19,52,102,-51,51,-15,-30,29,-79,-88,74,83,68, /* [70][0][][] */ 27,-20,66,22,79,17,36,-74,41,-127,125,-9,52,-91,37,-92,15,35,-13,-56,36,27,-112,3, /* [71][0][][] */ 90,76,31,79,-68,79,-111,-27,-98,-72,91,-63,-80,-4,-86,-43,40,-63,-43,-38,127,-70,53,-58, /* [72][0][][] */ 31,-57,48,-1,-40,33,-9,21,-3,11,-60,-33,-37,30,-9,-14,0,127,-19,2,33,-48,-40,43, /* [73][0][][] */ 117,32,-47,64,14,-54,56,-11,17,-125,9,87,-98,65,-4,81,42,63,127,28,81,88,39,78, /* [74][0][][] */ -19,63,62,-68,51,-28,-114,100,-104,22,-10,73,-84,-6,63,-74,-10,-15,-17,-47,-42,57,-52,127, /* [75][0][][] */ -26,-47,61,15,86,-12,-127,-62,47,-64,31,-25,-68,59,-28,24,92,-54,-74,-39,0,-34,-33,57, /* [76][0][][] */ -54,-9,127,-20,-35,39,-20,-13,32,-45,-14,-122,-25,-59,-8,-42,108,-12,-25,55,-17,96,11,83, /* [77][0][][] */ 65,-4,-2,45,-125,13,22,81,-4,36,-78,-103,25,4,123,-77,42,-79,127,-46,-49,-38,13,48, /* [78][0][][] */ -40,109,-20,-118,103,-83,-35,81,64,5,15,-16,76,18,-33,93,-127,5,79,-73,-71,-95,35,-4, /* [79][0][][] */ 11,4,45,68,57,-67,105,38,87,104,-117,4,5,88,-11,-82,78,-72,127,100,-7,113,21,-53, /* [80][0][][] */ 80,-15,44,106,47,-58,-20,34,120,36,53,-21,75,-56,42,-54,-39,75,56,-70,-113,127,-52,74, /* [81][0][][] */ -1,-56,-63,127,7,-67,-60,4,14,43,-4,24,-17,43,-36,72,36,59,-96,52,43,-19,3,-32, /* [82][0][][] */ 38,-119,-80,-111,-28,19,-49,-35,73,72,32,70,62,-81,20,-8,-80,127,19,-23,-10,0,91,33, /* [83][0][][] */ 2,-127,-27,-25,-45,-31,19,-65,33,66,-29,-68,48,-43,15,69,-5,-46,88,-48,19,-39,-4,15, /* [84][0][][] */ 6,-22,35,-44,3,-20,85,-31,-23,-26,-2,-68,-28,-13,30,-11,-21,-71,127,28,118,-40,-48,-78, /* [85][0][][] */ -102,-87,-14,-73,-112,-105,17,-38,-34,127,-16,-70,-48,46,34,115,-113,116,-78,61,-18,-46,10,55, /* [86][0][][] */ 5,45,-60,127,-65,-32,3,-20,-117,52,81,-52,-2,-88,-62,-26,13,4,-45,-29,33,86,-85,15, /* [87][0][][] */ -54,14,73,-18,-53,-65,59,-91,99,-101,-4,-14,-20,77,-38,-60,80,-36,107,38,127,37,-23,-30, /* [88][0][][] */ 35,-35,30,-13,8,-20,-127,-14,-4,-67,15,-13,-34,-6,5,22,13,-6,-55,51,-6,-37,-29,-36, /* [89][0][][] */ -97,41,-23,-1,-34,26,16,-112,86,101,-127,-36,-26,41,-14,-13,-46,38,33,31,6,-113,28,-93, /* [90][0][][] */ 35,-28,21,-46,-105,59,121,-60,2,59,61,44,21,-20,-63,-84,127,-29,-96,85,4,65,9,-16, /* [91][0][][] */ -2,66,63,127,-75,-83,-75,27,8,7,9,18,-14,26,48,-75,-6,-22,32,-1,10,-29,6,-31, /* [92][0][][] */ 99,-1,16,28,-55,25,1,93,107,102,127,22,-10,37,-102,116,-84,4,-61,-17,-22,-122,22,3, /* [93][0][][] */ -33,26,32,-127,-48,-49,59,7,-11,2,78,36,63,-76,8,-15,-64,13,29,-55,11,-42,-8,-17, /* [94][0][][] */ -11,-99,79,-72,-90,-1,-15,6,-63,-27,35,-26,-4,-78,-44,-36,-35,7,113,106,-121,-30,-127,-96, /* [95][0][][] */ -50,-35,19,-104,63,127,23,-64,33,57,-65,-99,-29,-113,-50,127,-74,-67,43,121,69,15,20,-40, /* [96][0][][] */ 118,-91,-1,-15,-16,-19,48,7,84,61,10,69,31,-35,-29,10,-80,38,-10,56,-40,-14,-127,-24, /* [97][0][][] */ 46,35,21,8,37,-19,35,-71,-20,-41,8,-36,116,11,28,-7,19,38,-29,127,66,11,5,-39, /* [98][0][][] */ -57,-8,20,-59,33,36,14,80,-12,33,76,-1,-62,-49,13,51,-1,50,-9,-127,40,48,-21,-83, /* [99][0][][] */ -93,-19,-45,74,12,62,-26,49,24,-48,125,59,-45,127,12,30,-48,104,-58,17,-34,-54,18,-15, /* [100][0][][] */ 69,-50,63,-67,-49,70,-44,-14,117,127,-59,-27,-25,27,60,115,4,86,-41,29,-70,-28,33,-33, /* [101][0][][] */ 100,-8,-17,41,36,-56,96,-38,-25,-53,127,-73,60,-58,12,31,-16,24,-40,22,-80,-27,-65,86, /* [102][0][][] */ -95,42,-64,64,-99,69,-35,-24,-85,-92,49,127,-40,2,-39,104,-1,43,9,-80,96,33,107,-42, /* [103][0][][] */ -90,8,-9,15,-127,-75,44,2,44,28,13,10,-21,10,-10,-19,-57,-48,-12,-8,35,-76,96,-15, /* [104][0][][] */ -52,14,81,91,75,24,-112,-45,-54,127,95,-54,75,64,47,-14,-98,-51,104,-89,3,14,-77,-26, /* [105][0][][] */ -110,1,64,27,97,-11,-10,-47,-37,-29,4,55,37,-127,-80,-39,106,-3,-16,1,-13,-19,-56,8, /* [106][0][][] */ -35,3,44,-9,34,-66,-91,27,-24,20,36,-45,-127,-52,82,-27,-55,-7,-21,-60,-10,-77,-4,-60, /* [107][0][][] */ -122,-127,-24,-46,-42,-42,83,-1,-86,-12,32,-49,-1,-22,-21,19,-39,-38,-18,-1,-95,76,51,-86, /* [108][0][][] */ 65,-18,0,51,-80,-42,25,-37,10,-43,70,-38,-3,-19,-127,70,-108,109,7,-18,-38,40,27,79, /* [109][0][][] */ -69,55,13,22,-44,-44,-127,-62,82,-78,59,121,-7,-15,17,-23,-48,-39,-36,-50,-5,-39,-7,-41, /* [110][0][][] */ -41,-37,10,28,67,-13,127,-31,76,69,-81,-30,32,-40,-3,-38,-82,-48,69,49,-14,53,77,48, /* [111][0][][] */ 58,-28,120,21,-119,-127,11,8,-13,-76,-102,68,6,33,-29,21,86,64,32,94,38,-44,21,89, /* [112][0][][] */ -42,7,1,3,-22,61,31,0,-113,61,-127,-56,30,-60,24,50,2,51,11,89,15,-2,42,-1, /* [113][0][][] */ 13,52,-7,95,-44,-83,-51,-69,-47,-86,19,77,13,30,-35,-58,85,-121,40,32,47,-127,-62,19, /* [114][0][][] */ 84,30,12,-7,-125,-111,127,79,-37,7,-28,-52,11,87,17,19,-37,-23,77,68,-26,28,88,24, /* [115][0][][] */ 0,46,-18,50,58,-3,-127,25,-20,37,-37,36,17,-5,-26,90,-31,-3,-31,-35,-51,11,62,22, /* [116][0][][] */ -29,-66,-7,5,1,-61,55,0,-42,50,-21,-57,-77,-23,-96,38,18,66,25,-25,-59,0,-127,-21, /* [117][0][][] */ 70,49,-34,-23,-60,-127,24,-23,1,-118,-13,-76,41,-25,94,-31,63,114,22,9,-36,114,-55,2, /* [118][0][][] */ -20,48,-36,127,44,-116,45,54,-21,-40,57,8,-44,6,-15,-18,-60,-64,13,5,16,-101,16,54, /* [119][0][][] */ 55,-111,9,-14,-24,-63,-61,-3,49,-53,1,22,-64,85,20,41,102,-49,9,-79,15,-54,127,27, /* [120][0][][] */ -37,-25,-55,-66,-27,127,85,34,6,-81,-10,-20,33,-118,-73,22,-20,83,-51,24,-119,28,-23,-10, /* [121][0][][] */ -11,-66,-8,-105,-1,-32,-127,-88,-102,15,47,70,110,-110,19,-91,54,-97,18,-21,-37,-111,-23,42, /* [122][0][][] */ 51,-28,-76,-106,91,-48,-14,67,26,18,31,-54,-95,-1,-30,34,47,127,34,19,22,-118,-35,40, /* [123][0][][] */ -1,-127,-40,79,-91,-1,-115,57,36,4,87,-36,61,-3,-83,-5,-22,-9,-6,6,-108,35,3,-5, /* [124][0][][] */ 69,-8,44,-68,24,11,66,-8,3,-116,34,24,60,61,-100,-126,44,-29,80,-81,11,127,78,-89, /* [125][0][][] */ 10,-19,-2,127,63,-22,83,-21,-45,-33,4,-45,-57,58,44,2,-46,37,39,60,-4,57,75,-56, /* [126][0][][] */ -9,110,127,39,-8,4,29,27,-96,-78,-1,-59,84,73,-120,-31,-92,2,24,51,84,4,74,6, /* [127][0][][] */ -16,84,-67,5,39,-37,127,-120,-85,-10,94,63,9,-68,118,-82,12,90,-35,82,-9,-61,-2,52, /* [128][0][][] */ -86,127,-75,78,-108,57,-73,-20,4,-29,52,117,-15,41,8,-24,37,-7,47,67,-45,35,-55,10, /* [129][0][][] */ 60,50,5,8,25,-69,-118,3,-94,-92,1,91,41,45,83,81,-43,127,1,35,39,-31,-23,107, /* [130][0][][] */ 7,-15,60,10,11,15,-51,127,12,-36,88,84,-81,-12,82,-83,-17,-36,24,-85,89,18,-47,23, /* [131][0][][] */ -127,-36,-57,-81,46,-26,57,60,22,-82,63,2,9,-86,91,-102,44,-49,-60,-46,-7,-57,-1,47, /* [132][0][][] */ 17,-45,-2,36,114,41,-41,-3,-12,29,-36,-32,-53,4,-27,-39,-12,21,28,38,-127,5,-81,27, /* [133][0][][] */ -14,-37,-40,35,26,-11,-9,-127,-39,-16,32,-52,81,-70,-23,-6,63,-29,-65,-21,-48,-83,15,-73, /* [134][0][][] */ -42,16,-9,-53,20,48,28,-43,127,20,-22,46,29,40,23,34,2,8,-74,50,-11,-59,-16,37, /* [135][0][][] */ 121,-31,7,-7,-29,0,33,-84,-15,-84,59,-17,52,21,50,-2,36,127,-44,16,93,68,62,62, /* [136][0][][] */ -44,-69,-86,76,-92,-127,-59,14,88,17,-43,-3,22,101,-46,1,-13,48,58,11,-22,3,19,17, /* [137][0][][] */ 115,-56,-46,-86,-34,-23,-91,-71,33,-8,127,30,58,-55,-57,-78,29,46,17,-45,-10,-21,-16,-42, /* [138][0][][] */ -23,23,-1,31,-38,-68,-20,-11,-5,105,121,-13,83,85,-53,1,74,-127,15,66,-108,-114,19,-63, /* [139][0][][] */ -50,115,-92,78,-30,-63,101,-122,-28,17,15,-14,17,-53,39,-61,107,-82,-10,26,6,127,-67,-28, /* [140][0][][] */ 65,82,-45,-68,0,-7,14,31,8,-86,-114,8,-34,-11,-127,-1,7,45,41,-20,67,12,-64,8, /* [141][0][][] */ 67,-73,-24,-2,6,-28,127,21,-31,-8,5,-52,18,4,-80,0,-14,-20,-43,67,14,-41,73,67, /* [142][0][][] */ 17,-29,36,2,1,-57,24,127,-39,-76,-24,90,-1,-11,14,-23,-41,-9,-13,26,7,-17,-40,-20, /* [143][0][][] */ -53,-31,10,6,6,-65,-25,36,22,-19,-127,12,31,-56,-48,-10,-10,47,-41,-6,-54,4,1,-45, }; const TfArray<144, float> quant54_scale = { 144, { 0.0017496624495834112, 0.0012677438789978623, 0.0012963884510099888, 0.001316506415605545, 0.00090680923312902451, 0.0012605658266693354, 0.0020173527300357819, 0.0014070883626118302, 0.0013410684186965227, 0.0017765770899131894, 0.0014893996994942427, 0.001352009829133749, 0.00098740425892174244, 0.0013847149675711989, 0.0021295610349625349, 0.0014966931194067001, 0.0013723484007641673, 0.0015877373516559601, 0.0018552367109805346, 0.0013831261312589049, 0.0018317668000236154, 0.0010905592935159802, 0.0017898502992466092, 0.0019200813258066773, 0.0017270573880523443, 0.001537587377242744, 0.0017036970239132643, 0.0020241905003786087, 0.0016487165121361613, 0.0013446325901895761, 0.0010859784670174122, 0.0015515170525759459, 0.0013525922549888492, 0.001962731359526515, 0.0022834839764982462, 0.0016744951717555523, 0.001801558886654675, 0.0015613306313753128, 0.0013625143328681588, 0.0023028189316391945, 0.0020682660397142172, 0.0016402762848883867, 0.001007041078992188, 0.0014864418189972639, 0.0020866345148533583, 0.0010996403871104121, 0.0013999196235090494, 0.0013918165350332856, 0.0014054927742108703, 0.0017985344165936112, 0.0022324968595057726, 0.0012920756125822663, 0.0021187742240726948, 0.001067584496922791, 0.0017765922239050269, 0.0022784196771681309, 0.0020122001878917217, 0.0021834527142345905, 0.0011454004561528563, 0.001879784045740962, 0.001524593448266387, 0.0014671772951260209, 0.0013605661224573851, 0.0014260410098358989, 0.0028099315240979195, 0.0022275198716670275, 0.0016988737042993307, 0.0019781256560236216, 0.00080645526759326458, 0.0010751918889582157, 0.0012591670965775847, 0.0018608536338433623, 0.0021154689602553844, 0.0012400781270116568, 0.0013312728842720389, 0.0011679779272526503, 0.001335935783572495, 0.0016034507425501943, 0.0012047052150592208, 0.0015305019915103912, 0.0016191831091418862, 0.0021543500479310751, 0.0015167983947321773, 0.0019563608802855015, 0.0019009070238098502, 0.0012519235024228692, 0.0014864741824567318, 0.0014147850451990962, 0.0025973061565309763, 0.0018734927289187908, 0.0016964065143838525, 0.0018283339450135827, 0.00097693060524761677, 0.0039269439876079559, 0.0016562063246965408, 0.001091940444894135, 0.0018649637931957841, 0.0020859332289546728, 0.0017799407942220569, 0.001482086256146431, 0.001082725590094924, 0.0020180537831038237, 0.0015928477514535189, 0.0015268768183887005, 0.0014672259567305446, 0.0016270565101876855, 0.0017090642359107733, 0.0016903289360925555, 0.0011394516332075, 0.0018096276326104999, 0.0018051048973575234, 0.0014278689632192254, 0.001975078834220767, 0.0013816192513331771, 0.0011479714885354042, 0.0024484402965754271, 0.0028897684533149004, 0.001645119278691709, 0.0018281075172126293, 0.001481406157836318, 0.0015592034906148911, 0.0018915027612820268, 0.0011510413605719805, 0.0019596368074417114, 0.0011889798333868384, 0.002316181780770421, 0.0010441469494253397, 0.0010936823673546314, 0.0013787212083116174, 0.0012708118883892894, 0.0014011046150699258, 0.0013606318971142173, 0.001729221548885107, 0.0014872995670884848, 0.0022224385756999254, 0.0022075367160141468, 0.0010670182527974248, 0.0015791814075782895, 0.0015808813041076064, 0.00083754758816212416, 0.0023398231714963913, 0.0021731043234467506, 0.00193010363727808, 0.0025799039285629988, } }; const TfLiteAffineQuantization quant54 = { (TfLiteFloatArray*)&quant54_scale, (TfLiteIntArray*)&g0::quant45_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data55[24] = { -786, 9602, -21268, -4890, -1924, 9042, -304, 6411, -10915, 23553, 9558, 12789, 5494, 2183, -18620, -4454, 8065, -3812, 5420, -6161, 19232, -7320, 13854, -7462, }; const TfArray<24, float> quant55_scale = { 24, { 4.1327817598357797e-05, 4.235216329107061e-05, 4.1240295104216784e-05, 5.3175201173871756e-05, 4.5794604375259951e-05, 4.7641337005188689e-05, 5.1703023927984759e-05, 4.1260169382439926e-05, 5.1053870265604928e-05, 5.2827363106189296e-05, 6.3326850067824125e-05, 6.8633889895863831e-05, 4.2825769924093038e-05, 6.9306835939642042e-05, 4.8054323997348547e-05, 3.8140147808007896e-05, 4.9104412028100342e-05, 4.9289403250440955e-05, 4.177368464297615e-05, 5.0236911192769185e-05, 5.7247376389568672e-05, 4.6233526518335566e-05, 4.7834644647082314e-05, 4.1223593143513426e-05, } }; const TfLiteAffineQuantization quant55 = { (TfLiteFloatArray*)&quant55_scale, (TfLiteIntArray*)&g0::quant49_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data56[24*1*1*144] = { /* [0][0][][] */ -51,39,27,49,2,2,26,-46,24,-21,-2,-4,-73,-86,-1,8,26,-59,-16,7,11,8,29,81,32,-29,-40,-10,-46,72,-50,47,63,-14,1,-78,-85,-9,-70,89,39,30,36,-14,-25,26,-59,25,-81,22,96,43,10,-66,-21,28,46,24,-63,-39,-17,-5,43,-60,52,11,32,-8,-31,6,-22,-24,-53,-45,-35,101,41,8,2,-42,115,-34,-21,40,-16,-57,-42,-71,-12,-47,-127,13,39,-68,90,24,33,-32,-45,2,-71,12,21,-13,-43,54,53,94,124,-82,-19,-73,-61,45,-31,-32,-6,-34,-14,31,76,-53,-69,50,63,-11,83,-5,-6,-7,11,38,47,48,40,78,5,-15,-20,-67,81,-105,-35,-30, /* [1][0][][] */ 16,75,65,7,61,13,-60,24,-106,-101,-33,7,-72,24,-7,-48,-14,-43,-67,-35,-32,-71,46,51,23,27,-68,59,-6,-6,72,43,-10,19,50,21,22,-59,5,-6,-127,-12,-72,-60,31,-60,14,-16,31,-31,11,25,-36,-48,10,20,15,81,-83,-62,-89,95,-52,-7,20,36,34,46,-7,9,20,8,-33,21,23,-115,-105,53,75,37,-48,2,47,85,10,-73,49,-112,20,-24,0,-61,-25,3,19,-36,-29,79,19,28,-1,37,-108,-54,-7,49,43,-46,24,-14,2,0,36,-109,53,-46,47,-26,-47,-48,42,-96,6,-44,49,-41,8,83,24,13,45,93,9,-13,-14,5,-29,41,56,32,-11,126,-12,-37, /* [2][0][][] */ -3,59,51,0,-26,-30,43,27,16,71,55,-38,-69,9,15,10,75,23,33,68,-65,-22,-14,27,-32,-12,-10,82,-20,8,20,21,96,62,27,40,-25,38,82,67,-4,-23,49,50,-72,41,37,-15,-30,-40,15,26,39,-13,-1,7,-45,38,35,18,8,28,62,0,-3,-68,-49,-89,68,-7,-6,-56,66,20,-13,78,-94,8,-6,83,56,-27,64,-17,31,-2,18,6,-59,65,33,-55,58,-74,-69,17,-33,-26,25,47,-44,-52,-48,3,-35,-41,-73,14,14,26,12,127,-71,76,22,62,-24,4,29,-17,-15,18,45,-5,10,40,-47,2,-28,47,-26,51,68,37,1,67,51,-25,48,10,1,-114,-13,28, /* [3][0][][] */ -64,-17,17,-27,22,-20,12,5,2,-12,0,-17,-1,13,37,2,-13,-3,48,-52,46,33,-36,3,35,-36,-16,40,24,44,-40,-44,15,46,9,23,13,7,-34,-7,18,72,45,-62,-35,4,28,30,28,-29,25,-37,30,10,37,-42,43,-18,23,93,-10,-44,-64,-19,-20,41,-53,51,-43,-87,11,10,55,-21,58,-127,2,17,-120,43,44,27,-67,-14,-37,19,-40,-19,23,-48,60,-44,-29,23,-17,-5,-5,-3,14,-15,4,61,-49,-26,-37,-25,-63,63,45,-45,-8,9,37,43,47,-20,4,16,68,0,-75,30,-35,-12,-43,-78,18,-16,-12,36,55,35,36,-3,2,-14,-2,-2,29,98,-57,30,75,61, /* [4][0][][] */ -34,-13,-31,65,-4,22,-30,-28,46,-84,10,-45,-7,45,-17,17,-51,-22,28,-107,37,15,40,-48,34,-17,-45,-70,19,66,45,-24,-45,-17,-40,-37,41,-36,59,56,-33,-63,-11,-21,27,-39,-93,0,32,3,57,96,0,-12,-74,8,20,-58,52,-44,43,-1,127,101,-40,63,38,-43,22,28,-37,-20,-72,53,5,52,5,-46,46,31,-61,20,29,-21,-3,1,123,61,45,-54,-4,-15,27,-5,-99,-4,36,1,0,-28,29,46,16,39,41,-29,79,-45,-58,84,61,37,-110,-32,-86,35,-56,-29,38,32,-4,-41,107,39,-49,42,-50,8,18,-43,-30,-15,-37,16,-19,-56,-12,11,78,-19,-39,-26,8,19, /* [5][0][][] */ 15,40,-65,46,-16,91,24,10,-23,56,-58,19,-48,-40,60,12,-27,-20,-38,13,66,-29,1,43,-7,-107,52,58,-56,9,47,-7,-39,-95,-54,58,-36,-12,-13,-37,-46,24,-44,37,54,-48,4,-29,18,-20,30,30,34,-38,-12,76,-94,-127,48,113,11,1,48,21,-38,-64,-11,98,-9,-1,-77,-107,-27,13,-44,98,14,40,-18,70,-4,-55,-17,-50,51,49,-19,-26,-9,67,-40,-73,-34,-12,-69,12,20,-13,82,-32,-40,-25,58,-10,54,53,-33,-51,-32,18,-73,0,-65,-29,-30,27,75,25,-5,-21,-95,-28,49,45,-43,6,-21,-60,-87,19,-10,-15,-3,-61,62,25,18,81,-4,-73,10,-12,-24,8, /* [6][0][][] */ -43,17,16,15,-55,-40,-7,10,-40,32,12,-49,-37,53,-7,9,29,83,5,-1,-26,-31,53,99,53,31,-10,67,28,10,48,-15,4,54,-33,-45,-38,44,-50,-127,69,61,31,68,-97,-13,63,-3,-51,18,-26,-6,30,39,2,0,-32,34,-16,23,-26,53,23,47,-31,-21,-17,18,28,-31,2,59,-3,4,11,-103,-77,38,6,30,-49,47,-2,15,32,16,-9,-77,82,3,15,5,-92,-89,9,65,13,-57,21,17,-40,75,44,77,48,-49,42,-60,3,7,-30,9,-65,-65,4,-1,-25,-30,-24,17,-23,-55,-7,69,-9,96,46,-38,-11,-21,41,-36,17,84,58,-43,-21,36,-39,1,-31,-74,25,-18, /* [7][0][][] */ -6,-99,18,10,-23,85,-25,-43,5,-12,3,53,4,12,-35,-23,23,-7,-11,43,-67,-33,-57,20,-78,7,10,-49,-16,9,-35,52,3,61,-58,35,-38,42,-38,6,-28,-11,47,35,27,-26,-66,31,68,46,-13,-60,24,-66,-3,-18,32,-43,59,44,-33,-35,-53,48,10,-59,53,-44,-23,-27,-7,9,-18,33,-17,23,-39,-64,58,-6,-40,-8,43,48,12,-45,6,-3,-29,-18,53,15,-30,48,-27,-3,58,-52,-41,-19,-22,-17,84,14,-36,-60,14,-25,38,40,-14,-14,13,71,-87,-30,39,59,54,6,26,49,26,-52,16,-115,-62,-18,87,96,-77,-63,-4,-5,-7,-48,-51,-49,114,28,18,127,-1,-38, /* [8][0][][] */ 0,57,-34,4,-34,-4,-50,-51,42,-33,17,42,-30,-18,69,10,52,-6,45,-35,86,-5,51,-29,-29,-58,13,4,-36,-7,44,-31,-18,-96,14,78,68,72,15,127,-26,-49,19,-31,25,68,-32,68,47,-64,-25,-29,-29,38,14,-26,7,27,16,23,-13,-49,34,-32,-49,-14,-5,48,5,119,43,-122,-23,-30,67,91,48,62,41,-15,-39,2,39,76,81,-16,-36,67,14,9,15,-17,65,28,76,34,-58,-3,-54,66,58,31,-45,-47,-63,5,30,-105,1,45,-42,18,-48,2,13,-77,-51,-32,-2,-15,-2,-58,-32,50,28,6,-17,-12,82,18,-49,-48,1,49,23,21,-60,43,-47,-28,-68,49,46,15, /* [9][0][][] */ -13,24,-46,-63,33,30,-43,16,8,4,6,63,-64,-54,93,-62,-1,-43,29,-53,-38,17,-5,10,15,-26,-24,57,-78,-8,-72,-25,-23,-39,24,3,81,-19,45,-9,-37,22,16,-11,-35,-5,3,-60,35,-15,-124,21,46,-50,42,30,-119,-16,-58,-15,-35,-57,-49,-30,5,-5,84,-16,19,30,17,-81,10,-23,4,99,41,-37,-97,-26,-38,38,-64,122,-80,-89,-12,-29,-26,-119,113,-18,-21,64,3,21,9,-80,21,44,-17,39,-66,-127,-43,68,13,75,27,6,-55,-26,-78,-52,77,-54,-68,-5,-80,22,27,-23,-40,-107,8,11,28,25,31,2,-39,8,-25,-38,-22,23,-62,19,32,20,73,-16,-46,0, /* [10][0][][] */ -71,-27,-36,13,-51,-12,-32,-53,-26,-18,-33,-10,-36,-2,-25,-59,-37,44,13,-57,-127,-12,-50,20,-6,-73,27,16,20,54,26,-13,-60,-56,25,-36,-19,42,-5,33,-26,-63,32,-32,-43,-22,46,15,-10,29,-30,58,24,-8,7,86,-106,13,48,-48,-32,6,5,-68,2,43,-21,21,-4,40,-13,-39,-23,22,-62,13,41,-50,106,-3,-30,-31,16,60,-12,30,-53,-55,-20,37,-36,1,4,30,-62,95,-98,5,-21,13,58,-52,1,19,45,-48,8,10,-24,-52,29,2,-31,59,3,3,-2,81,-29,35,11,9,-28,-47,-77,-6,-26,-1,37,79,-30,58,-25,26,15,-37,34,42,38,35,-44,-15,70,26, /* [11][0][][] */ -7,-19,-36,-35,31,50,-61,-70,-13,-32,-32,-36,-76,22,-65,-16,-3,-18,7,-21,-35,44,-20,46,21,56,19,23,8,-9,-64,9,-9,-9,-45,-22,37,10,43,20,-13,-17,-90,-31,51,-19,40,25,40,-57,4,-25,-1,45,-65,-37,26,-43,58,-19,-24,7,-13,34,4,-12,19,-78,-15,15,47,54,-3,23,25,-31,-22,38,-9,-50,-42,36,-26,-13,-5,2,-69,90,29,-12,0,21,19,127,5,-29,-55,46,-25,-29,-29,29,-27,17,46,-25,-60,-2,-39,-76,1,-64,6,44,-38,-74,9,-3,14,-22,89,-20,-1,-26,3,-14,-26,39,-21,-15,-8,-14,-36,-23,-56,43,-21,61,45,13,-40,95,-42,-8, /* [12][0][][] */ -50,9,-65,32,-37,-103,45,79,50,-56,9,-26,28,-69,9,-44,8,58,-68,-73,-12,30,-58,-40,36,-84,8,48,-89,69,80,-60,-41,-24,-3,4,-63,-3,12,-78,-19,-57,41,28,-44,77,5,-45,-8,106,22,53,0,-109,105,77,41,7,-51,32,25,-34,41,-9,68,34,9,3,56,9,16,-12,92,41,4,-56,2,73,-86,17,88,-38,-24,127,39,-39,12,-72,-3,-78,-9,48,-32,-72,51,28,-24,22,-26,-15,28,67,-15,117,37,-36,1,-1,-78,-10,34,-71,97,-86,-48,-52,-32,24,-83,17,-8,-66,-9,-69,34,-16,-10,-7,28,9,117,0,-31,-3,99,10,-21,-58,-27,-1,-67,-84,-53,-88, /* [13][0][][] */ 41,-16,-41,-20,8,-7,-50,6,-22,-37,24,11,-22,-54,35,81,-31,-4,25,29,-58,-1,28,-14,-70,14,-15,1,25,-33,-75,-45,-37,-74,47,57,24,2,24,3,10,5,-58,26,-10,4,-1,76,26,-3,-7,38,45,-60,8,-10,-35,-38,22,17,33,27,-64,21,-7,3,-21,-35,-30,-9,33,-12,-1,-24,-8,-24,35,-29,67,-6,11,3,-47,18,-7,30,-13,91,21,20,40,-40,43,127,8,27,-42,-7,4,-5,-38,-40,-54,-40,17,-9,-8,24,-44,-36,-12,91,13,14,15,-6,57,51,-17,-72,38,-47,-21,7,9,17,20,10,8,-29,6,-62,22,-4,2,-24,2,-6,-7,56,52,-27,-13,-11, /* [14][0][][] */ 124,8,34,99,5,-43,-32,-22,6,-53,-49,-102,48,4,12,58,-26,-45,9,-3,-85,91,22,34,18,21,-22,37,49,25,-87,-112,-98,-59,63,-51,105,-31,72,111,80,100,-6,-7,59,41,-3,127,86,27,-73,16,7,-45,-19,-20,5,55,41,-32,31,57,4,-30,48,62,-68,-102,-74,57,-68,12,48,27,11,46,-30,23,-7,44,87,38,-52,-45,-100,9,-5,-13,12,-46,-16,-78,54,-17,15,-5,107,-45,79,48,1,-52,1,-32,34,42,42,15,-54,-1,-95,59,10,28,-64,0,18,-32,-104,31,6,33,32,40,-51,-28,-41,83,71,32,4,-91,0,48,-3,78,53,6,43,-40,-14,72,19,31, /* [15][0][][] */ -32,-39,87,55,103,-12,6,15,-38,53,24,-51,-27,59,72,19,25,-32,-15,-91,-43,-19,73,29,16,-91,-23,-12,61,9,24,-28,-16,-65,-32,-101,14,34,37,9,62,14,11,-48,23,4,24,-25,-14,-17,90,79,44,-67,-79,-17,-41,7,-51,-80,-63,-8,-7,-22,16,21,-2,104,-29,0,24,-47,-72,53,-18,-1,112,71,-11,25,-32,-32,-57,114,-62,104,-71,-55,-87,-52,-19,-65,-18,28,39,-40,-27,-30,-41,-5,-22,5,23,10,-20,-75,-13,91,24,32,-79,47,24,26,63,46,73,-15,-29,52,84,57,-127,-27,-14,-1,39,31,80,6,18,-26,80,-68,-56,-12,7,1,-31,32,114,43,-97,-58, /* [16][0][][] */ 0,-11,-19,37,45,-24,78,-18,-59,47,-31,33,10,-61,-19,100,-27,12,21,41,-65,-18,-15,-37,-38,-74,22,48,-2,-26,34,-56,-59,12,-29,-27,-17,105,14,40,4,31,-29,57,-57,-66,34,88,50,-13,31,10,66,-37,49,-11,-16,-1,-5,60,29,17,28,-13,28,67,32,14,-42,-13,-47,-37,-33,-10,96,-9,-33,55,9,-127,-41,33,-21,-52,28,28,-45,19,64,-21,-95,1,-35,37,-7,-31,-50,-36,-59,38,51,13,-35,4,-25,-40,32,23,-46,7,66,-38,-20,12,-61,-10,52,-19,-73,-25,-59,-44,-20,-1,-91,22,14,11,36,-42,14,-45,-58,1,42,27,0,-35,-47,-49,-40,16,18,-61, /* [17][0][][] */ -4,30,-50,52,21,48,66,33,-33,-12,59,45,10,11,33,37,40,-69,-55,0,20,37,35,30,-26,73,-25,41,-46,-45,77,40,-19,-4,20,25,-117,-33,-13,27,-29,-11,56,13,4,-43,10,1,18,-27,-15,43,60,-25,12,-24,12,17,28,-39,1,-31,-71,-47,30,-31,-39,-38,-102,70,-15,-26,45,-75,7,120,65,10,-11,-30,39,51,-18,37,6,-19,-61,-2,-8,0,-46,2,-60,-31,-29,41,10,50,-101,-13,37,29,32,-7,-58,-56,11,48,44,11,89,22,-61,-107,-106,28,45,81,-30,-85,54,-43,9,11,-8,127,35,-24,-63,58,-5,-24,44,-60,-19,-50,40,-81,-44,16,-14,104,79,5, /* [18][0][][] */ 6,-25,89,48,-34,33,59,46,-7,-15,36,1,50,-50,-69,15,-51,-51,-63,-4,-44,-8,-3,7,-20,-13,30,-35,-43,34,59,-64,-38,-6,-37,32,35,-1,-28,-74,-14,-54,-5,-12,-87,71,-14,-81,-20,-35,21,-43,-55,49,30,83,-5,-34,57,-11,-6,5,37,13,-39,-20,-86,39,5,-33,11,0,43,32,-12,-4,-45,25,83,-62,42,32,-39,-21,59,30,44,-40,0,13,69,-30,-35,-29,-5,-1,-21,-32,41,-41,59,24,30,-24,121,11,62,31,58,-30,-26,-61,35,11,7,8,-35,-59,53,-40,11,40,27,10,-6,-13,-52,-11,-127,30,31,-11,-10,-45,14,34,-22,1,58,6,-13,-69,-50,77, /* [19][0][][] */ 0,45,39,-31,11,5,65,5,-5,-58,30,46,56,7,-20,65,-3,-10,-98,-29,30,73,-77,50,121,-5,-66,19,-96,-1,56,26,-9,7,-14,15,-6,26,-34,-26,33,35,-62,32,-23,-27,29,65,-80,-16,15,19,-59,-2,113,33,-124,3,-20,44,0,26,-17,52,56,-66,-36,34,13,-49,32,33,38,-43,6,-107,21,72,-49,105,60,53,41,-11,-61,-94,-27,0,60,-13,18,-35,19,-84,94,-9,2,49,1,15,9,5,70,6,82,37,4,-42,41,2,-17,-31,-9,-78,49,61,-36,-18,-34,5,56,-15,20,15,25,-90,-57,-36,58,-107,127,67,59,2,-5,-32,1,1,-61,32,23,-67,-31,-65, /* [20][0][][] */ 29,-54,-23,-55,3,45,-44,-14,8,-29,-8,-26,3,-38,-29,-33,34,-60,-41,43,55,11,-11,-68,6,38,-41,-62,27,-58,-8,-28,-10,34,14,-21,-17,-19,-28,1,-39,17,-39,-35,79,12,-6,23,-11,0,36,-34,-13,3,-12,51,-32,-20,3,-1,-14,6,-78,28,0,31,11,-12,-55,-11,21,-24,-33,-9,15,-80,-19,-23,-71,-21,-37,-31,10,-40,-39,-34,-18,55,79,32,53,-3,-10,78,44,-65,-5,-42,16,40,-53,-27,8,-35,-103,-6,27,-33,-52,-1,30,-19,37,-6,-38,-61,127,19,-95,23,63,-32,-48,5,-38,25,-29,13,6,-44,37,-41,5,-44,0,44,6,24,10,-6,80,-5,-51,5, /* [21][0][][] */ -9,-3,84,14,-57,-3,15,81,76,-9,-3,-7,3,-51,58,-122,54,-6,-12,45,108,-30,-32,-15,50,-37,22,96,-81,2,45,36,-32,56,38,49,-44,-119,-60,-26,67,45,-32,26,-25,-24,47,-2,-4,-22,13,-1,-61,-22,-44,24,13,-23,53,12,29,0,-15,5,-40,-50,-30,56,33,-58,-1,20,22,-7,-6,69,10,14,-52,11,-3,16,12,18,33,17,9,-54,-35,-11,13,119,-43,-127,30,30,-15,15,44,-48,-21,-42,33,-11,32,-33,100,23,14,-73,54,-17,-15,26,-77,64,-15,-35,47,5,22,71,76,24,5,-38,-11,10,-54,63,4,11,-42,-15,-5,52,-13,106,-22,-87,71,-49,14,16, /* [22][0][][] */ -7,-64,5,-55,27,-38,-84,30,-39,15,64,41,2,-41,-8,-56,109,-19,-26,84,-6,-63,47,25,17,-74,-3,21,100,0,-121,30,-24,50,12,-75,-38,18,75,-55,-19,-70,-62,7,-1,19,0,-87,53,-53,-20,37,40,-27,77,8,-58,48,11,-6,-21,53,-83,-42,80,47,-8,7,-16,-19,57,-26,29,-83,-66,-81,-7,21,42,-8,103,6,-65,65,-22,49,-74,26,70,34,53,47,-42,-94,-19,-36,13,-127,-54,53,33,21,13,72,-3,-38,-44,60,-6,-61,29,28,89,80,5,52,62,-56,50,-73,9,-74,-48,-61,-5,-95,4,-10,16,10,-20,-25,39,-24,-26,61,-69,31,-30,100,14,-87,58,-48, /* [23][0][][] */ -8,-54,-20,33,-27,-42,-23,-23,19,49,-21,-27,48,33,32,88,25,29,-18,-6,116,7,32,-61,7,67,62,53,-67,-10,-127,22,5,-42,46,-83,-46,20,2,26,24,15,-67,86,35,-72,-1,121,29,-56,106,-42,47,-20,68,-6,-25,-15,19,-15,-20,-95,-54,-47,93,-27,-42,-5,33,-36,-79,47,-36,21,30,37,-37,-58,57,-87,11,-62,-22,31,-86,-82,-97,-12,-7,-4,28,4,6,3,80,-22,-27,-48,6,-22,-93,31,37,-2,48,-16,15,75,43,-32,-39,-1,112,-22,-35,6,69,50,-6,26,53,28,-5,-27,120,40,30,96,-21,27,-33,-71,-34,-19,26,-41,36,-14,60,19,36,61,23,-7, }; const TfArray<24, float> quant56_scale = { 24, { 0.0017564322333782911, 0.0017999669071286917, 0.0017527125310152769, 0.0022599459625780582, 0.0019462706986814737, 0.0020247567445039749, 0.0021973785478621721, 0.0017535571241751313, 0.0021697895135730505, 0.0022451628465205431, 0.0026913909241557121, 0.0029169402550905943, 0.0018200951162725687, 0.0029455404728651047, 0.0020423086825758219, 0.0016209562309086323, 0.002086937427520752, 0.0020947996526956558, 0.0017753816209733486, 0.0021350686438381672, 0.002433013403788209, 0.0019649248570203781, 0.0020329724065959454, 0.0017520026303827763, } }; const TfLiteAffineQuantization quant56 = { (TfLiteFloatArray*)&quant56_scale, (TfLiteIntArray*)&g0::quant49_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data57[144] = { 1816, 3270, -1141, -2897, 2577, -1376, 11033, 6547, -1402, -195, -1593, -1295, -301, -5554, -3334, 4399, -107, 2084, -1450, 301, -621, -94, 687, -2502, 113, -5032, 102, -3087, -1642, -2830, 3084, 1695, -974, 657, 1327, -111, -1816, 6369, 3631, 1077, 7806, -4732, 2641, 22, 5753, 106, -2174, -2845, -1830, -2492, -386, 1119, -1272, -389, 2129, -558, 8605, -3933, -4692, -537, -844, 33, -312, 294, -1983, 2252, -1285, -1851, 2329, -3248, 435, 2444, -2207, 1452, -3725, 11586, -1204, -1871, -101, 1446, -2604, -1949, -3156, -513, -441, 370, -3550, -1168, -1974, -1196, -1833, -327, -2027, -54, 532, 488, -1369, -388, -2317, -604, -782, -925, -3135, 2607, 719, -1495, 652, -2672, 319, 1721, -2591, -863, -2337, -1224, -3348, -2682, 3342, -199, -104, -1004, -608, -332, -1530, -1273, -972, 1151, -4448, -5883, -336, 106, 4608, -1034, 3118, -964, -920, 1139, -2636, -3667, -1094, -5372, 269, 1018, 1073, 6005, }; const TfArray<144, float> quant57_scale = { 144, { 0.00019377199350856245, 0.00024838405079208314, 0.00034028087975457311, 0.00024914401001296937, 0.0002138265990652144, 0.00022818913566879928, 0.00023009383585304022, 0.00018423217989038676, 0.00025581265799701214, 0.00027947843773290515, 0.00023395328025799245, 0.00015280705702025443, 0.00021906604524701834, 0.00018651376012712717, 0.00020433684403542429, 0.00010081424989039078, 0.00015989490202628076, 0.00017474568448960781, 0.00021841311536263674, 0.00018072659440804273, 0.00024134146224241704, 0.00028521366766653955, 0.00021346675930544734, 0.00031659580417908728, 0.00022469680698122829, 0.0001961745583685115, 0.00018691652803681791, 0.00020178199338261038, 0.00035155974910594523, 0.00019790351507253945, 0.00021945191838312894, 0.00025625005946494639, 0.00034997655893675983, 0.00029639017884619534, 0.00020085248979739845, 0.00029865509713999927, 0.00020700259483419359, 0.00023036669881548733, 0.00014385851682163775, 0.00014877712237648666, 0.00025018869200721383, 0.00023572960344608873, 0.00021764064149465412, 0.00024396271328441799, 0.00020128466712776572, 0.00026495492784306407, 0.00017953668429981917, 0.00024305802071467042, 0.00023112799681257457, 0.00024927768390625715, 0.00023495106142945588, 0.00022588409774471074, 0.00023397547192871571, 0.00019582863023970276, 0.00017225895135197788, 0.0001951032318174839, 0.00013156032946426421, 0.00017066266445908695, 0.00021962556638754904, 0.00026979649555869401, 0.00029759897734038532, 0.00022152868041303009, 0.00014775489398743957, 0.00031459194724448025, 0.00017798156477510929, 0.00019170533050782979, 0.00029803515644744039, 0.00022249251196626574, 0.00019560732471290976, 0.00020150281488895416, 0.00015744382108096033, 0.00018439942505210638, 0.00017782690702006221, 0.0001960136869456619, 0.0002133660891558975, 0.00013963918900117278, 0.00019494240405037999, 0.00017916396609507501, 0.00030849134782329202, 0.00020571200002450496, 0.00017450022278353572, 0.0001518318458693102, 0.00021857062529306859, 0.00019117379270028323, 0.00014779299090150744, 0.00012517868890427053, 0.00019812938990071416, 0.00031643270631320775, 0.00015139853348955512, 0.00028074215515516698, 0.00025391980307176709, 0.00016534056339878589, 0.00022503311629407108, 0.00017463063704781234, 0.00020123143622186035, 0.00020927429432049394, 0.0002353803429286927, 0.0002199764276156202, 0.00030552284442819655, 0.00027854862855747342, 0.00028201405075378716, 0.00021544456831179559, 0.00029948179144412279, 0.00020597982802428305, 0.00022529346460942179, 0.00015693406749051064, 0.00020014191977679729, 0.00020009871514048427, 0.00025454335263930261, 0.00020869297441095114, 0.00025157502386718988, 0.0002673114649951458, 0.00023381234495900571, 0.00028565200045704842, 0.00014686663052998483, 0.00016928697004914284, 0.00017207408382091671, 0.00024052642402239144, 0.00010273748193867505, 0.00015416360110975802, 0.00028182414826005697, 0.00030272878939285874, 0.00018857656687032431, 0.00020911965111736208, 0.00017175350512843579, 0.00019390645320527256, 0.0001260554272448644, 0.00026075096684508026, 0.00017390867287758738, 0.00025429806555621326, 0.00016359184519387782, 0.00019757192058023065, 0.00020202097948640585, 0.00021984112390782684, 0.00024068284255918115, 0.00021941236627753824, 0.00022464504581876099, 0.00018735667981673032, 0.0004078750207554549, 0.00023383888765238225, 0.00032467677374370396, 0.00014568980259355158, 0.0001642084534978494, 0.00015147025987971574, } }; const TfLiteAffineQuantization quant57 = { (TfLiteFloatArray*)&quant57_scale, (TfLiteIntArray*)&g0::quant45_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data58[1*3*3*144] = { /* [0][0][][] */ 72,-23,55,-47,-88,-45,-49,-74,17,-19,24,-56,-5,-36,-17,-53,-127,82,13,-22,-7,38,6,-32,53,47,-32,-28,127,73,43,32,-5,-98,-21,4,-46,7,-37,89,-56,38,-63,17,-51,8,44,84,53,67,-8,-40,12,-42,-18,72,-91,9,28,25,-40,-20,80,-45,96,-127,2,11,30,54,91,-9,-21,-101,-23,-57,23,-44,-7,-103,-21,-78,79,79,-66,-127,127,69,-127,9,6,-82,-1,-34,-13,-83,-22,-36,-6,-31,8,-127,30,46,-40,-54,-40,74,-42,-3,10,32,0,-20,-42,-36,-127,127,60,-2,4,-71,22,-62,102,109,-127,19,-6,25,127,9,-109,22,10,-14,78,-11,-88,-20,-7,-68,-76,-46, 46,-127,1,127,27,16,-81,-61,127,127,127,-16,51,3,58,7,4,-81,127,58,-35,-19,-17,34,127,-4,27,46,20,-11,-29,90,38,-39,4,28,-24,-61,-80,93,9,94,127,10,-81,69,127,-19,-37,127,-91,6,10,66,-12,-2,-21,127,54,103,2,-41,127,12,-21,-99,57,-21,127,127,-110,-28,-7,-11,70,-46,37,41,-17,-61,54,-69,29,-84,-33,-81,61,62,-82,10,-56,73,-2,-2,15,14,5,120,-6,8,12,-33,-35,-2,24,-22,40,-5,-33,-42,-3,64,8,-60,-24,33,-37,-94,-111,-29,37,24,3,-5,127,0,29,-52,-2,-57,118,-40,98,-34,2,42,127,-30,22,11,4,-15,-65,41, -39,45,54,26,32,-22,-43,3,52,-2,-51,-1,10,118,-16,111,-70,127,-2,-46,13,20,-7,-14,-13,49,1,21,-10,12,36,-44,-14,37,-43,-106,0,11,51,127,-57,-11,-1,-51,-52,20,22,-76,11,38,36,-19,127,-38,-53,14,-15,-39,28,56,-32,-35,88,83,77,-13,68,6,-24,61,-32,9,85,-15,-20,-71,-6,12,4,-63,54,10,-11,-18,17,26,3,61,-18,24,10,-49,-23,-10,-30,-26,63,-30,46,18,4,-46,-14,36,20,24,48,34,12,-4,4,42,16,21,30,44,33,46,88,33,-6,-33,108,-9,77,73,74,1,-5,-23,11,21,-36,28,15,13,-24,56,-44,39,-15,-19,-33,-127, /* [0][1][][] */ -127,84,-7,-3,-127,79,-127,-127,31,-8,-11,-14,-55,118,127,-127,45,-19,-118,119,127,-105,-121,-19,-33,127,-62,16,-50,-57,-120,-25,127,-17,25,127,54,-108,-116,-91,-70,36,-25,-49,53,-109,-22,28,30,27,46,-127,-1,86,-44,53,-94,0,127,-61,94,67,73,-127,122,51,127,127,25,-60,69,-85,-92,-28,21,-86,127,-2,-36,-19,127,7,-53,-18,-34,-27,39,83,76,127,41,55,43,75,-8,-99,43,-127,48,-2,38,96,26,-80,-100,45,-21,127,127,-87,-19,127,1,127,105,-42,101,-74,71,-95,-56,-3,-7,-6,-34,-42,-56,101,-104,-45,-74,-37,-109,-50,73,127,-34,-3,127,20,0,-77,109,-109, -100,-36,9,64,-113,98,-98,-50,-51,-7,-33,-35,127,127,78,-102,113,-71,27,-127,-5,-10,51,127,-39,86,-51,127,-23,14,-127,-127,-35,127,53,-72,127,-127,113,-95,-127,127,-44,127,-62,127,-73,127,127,88,127,-63,-33,127,-37,127,-88,-30,97,-125,-80,-32,8,23,-5,105,-43,-91,-99,-43,57,-127,-9,127,127,-25,64,-69,127,81,29,114,73,127,-91,85,101,-100,69,-21,127,-7,127,-127,19,127,3,-38,127,127,-76,84,127,-86,-58,127,115,8,22,11,-13,-92,-98,-36,-67,56,-55,57,-79,83,127,-50,118,127,-120,-127,114,127,127,-13,-89,17,-5,35,-47,-96,4,127,-11,127,-20,-100,-48,0, 125,17,-13,27,-61,69,79,-84,13,-8,46,127,-47,-70,33,87,-87,-33,93,-31,-46,-24,-18,3,31,47,-50,-61,-24,29,-91,52,30,12,95,47,9,-65,127,-102,-9,-1,33,3,4,-35,89,22,55,19,0,12,-88,29,31,38,-50,76,74,79,37,-35,-51,-14,-127,57,5,-44,-75,36,-127,44,-52,70,18,-84,-20,127,5,127,-40,-80,50,21,58,124,-127,127,87,86,43,-9,18,-2,-14,49,127,126,-28,-27,9,39,19,-127,127,-7,56,-115,-69,127,56,-10,-62,-5,12,-47,-52,14,-61,35,-92,15,-127,39,121,9,112,81,121,53,-70,55,-92,12,-21,-24,33,-8,-7,70,12,-84,-86,-64, /* [0][2][][] */ 63,-32,127,19,127,34,-113,-35,5,19,-22,-86,-60,-12,-57,-70,-55,32,58,113,22,-19,-90,-28,-42,14,127,20,-8,127,77,-67,-17,-5,-37,50,52,-56,-53,-2,-93,23,-50,-42,90,-50,-20,14,-28,-5,-37,24,101,-76,-127,-51,-89,65,-67,127,-43,127,-8,14,57,-103,-2,20,-101,67,61,14,33,-49,5,-120,-55,35,-40,-66,5,-18,-13,46,63,-60,-43,-17,-31,-29,-2,127,35,106,127,47,-80,33,11,-33,-13,25,42,108,-26,-107,-28,4,15,-41,18,7,61,48,96,-37,97,31,127,122,18,31,-53,45,9,-15,125,-8,-65,127,-56,-2,127,57,-33,30,42,115,11,66,127,58,15,-77, -26,-14,99,51,46,-127,-116,-25,-15,-52,-7,108,-9,62,38,-57,4,-64,2,29,39,127,40,12,4,-44,89,28,61,87,109,-44,5,-74,-127,33,-5,29,-112,-35,-12,-30,-31,-50,-127,-116,-6,1,23,61,28,99,-14,-39,46,-60,51,108,-37,-36,127,-84,-30,-2,-13,-34,59,62,-31,70,-39,48,127,-59,-21,-83,-68,99,-23,54,68,127,127,41,-35,63,-5,-33,104,-16,7,19,-27,27,-37,-81,-63,-10,2,-14,127,45,17,-38,3,104,-127,36,45,21,127,-13,127,16,107,127,-82,-25,11,-6,-54,127,78,41,-56,-16,81,7,-19,9,-50,127,-80,127,127,-45,12,32,12,13,-53,127,127,-87, -99,-89,-10,-8,-12,125,-112,35,14,11,54,36,-31,45,2,95,-81,80,-75,-77,5,-19,127,1,-8,49,-27,26,47,59,-51,-4,-22,2,13,-13,44,0,-61,-16,-46,34,-51,61,-55,28,79,30,-15,29,16,59,-60,-35,70,30,-127,-3,23,-10,8,22,-62,-33,-5,-1,13,31,17,-12,52,41,79,-64,84,-127,19,19,-25,-3,-29,16,3,-45,127,58,15,4,-4,14,-30,-74,13,92,-29,2,-3,125,22,-40,2,-17,-39,-51,44,27,11,41,-32,-34,17,33,29,-2,127,65,1,86,-45,127,-5,-31,-10,26,-9,-40,11,29,18,-38,-102,7,-48,-41,58,-2,76,23,6,-32,-1,70,44,-90, }; const TfArray<144, float> quant58_scale = { 144, { 0.0082353092730045319, 0.010556322522461414, 0.014461937360465527, 0.010588620789349079, 0.0090876305475831032, 0.0096980379894375801, 0.0097789876163005829, 0.0078298673033714294, 0.010872037149965763, 0.011877833865582943, 0.0099430140107870102, 0.0064942999742925167, 0.0093103069812059402, 0.0079268347471952438, 0.0086843157187104225, 0.0042846053838729858, 0.0067955334670841694, 0.0074266912415623665, 0.0092825572937726974, 0.0076808803714811802, 0.010257012210786343, 0.012121580541133881, 0.0090723372995853424, 0.013455321080982685, 0.0095496140420436859, 0.0083374185487627983, 0.0079439524561166763, 0.0085757346823811531, 0.014941289089620113, 0.0084108989685773849, 0.0093267066404223442, 0.010890627279877663, 0.014874002896249294, 0.012596582062542439, 0.0085362307727336884, 0.012692841701209545, 0.0087976101785898209, 0.0097905844449996948, 0.0061139869503676891, 0.0063230274245142937, 0.010633018799126148, 0.010018507950007915, 0.0092497272416949272, 0.010368415154516697, 0.0085545983165502548, 0.011260583996772766, 0.0076303090900182724, 0.010329965502023697, 0.0098229395225644112, 0.010594301857054234, 0.0099854199215769768, 0.0096000740304589272, 0.0099439574405550957, 0.0083227166905999184, 0.0073210052214562893, 0.0082918871194124222, 0.0055913138203322887, 0.0072531630285084248, 0.0093340864405035973, 0.01146635040640831, 0.012647955678403378, 0.0094149690121412277, 0.0062795830890536308, 0.013370157219469547, 0.007564216386526823, 0.0081474762409925461, 0.012666493654251099, 0.0094559313729405403, 0.0083133112639188766, 0.0085638696327805519, 0.0066913622431457043, 0.0078369751572608948, 0.0075576435774564743, 0.0083305817097425461, 0.0090680588036775589, 0.0059346654452383518, 0.0082850521430373192, 0.007614468690007925, 0.013110881671309471, 0.0087427599355578423, 0.0074162594974040985, 0.0064528533257544041, 0.0092892516404390335, 0.008124886080622673, 0.0062812017276883125, 0.0053200940601527691, 0.0084204990416765213, 0.013448390178382397, 0.0064344378188252449, 0.011931541375815868, 0.010791591368615627, 0.0070269736461341381, 0.0095639070495963097, 0.0074218017980456352, 0.0085523361340165138, 0.0088941575959324837, 0.010003664530813694, 0.0093489978462457657, 0.01298472099006176, 0.011838315986096859, 0.0119855972006917, 0.0091563938185572624, 0.012727975845336914, 0.0087541425600647926, 0.0095749720931053162, 0.006669697817414999, 0.0085060317069292068, 0.0085041951388120651, 0.010818092152476311, 0.0088694514706730843, 0.010691937990486622, 0.01136073749512434, 0.0099370246753096581, 0.012140209786593914, 0.0062418319284915924, 0.0071946959942579269, 0.0073131481185555458, 0.010222372598946095, 0.0043663429096341133, 0.0065519530326128006, 0.011977526359260082, 0.012865972705185413, 0.0080145038664340973, 0.0088875852525234222, 0.007299523800611496, 0.0082410238683223724, 0.0053573558107018471, 0.011081915348768234, 0.0073911184445023537, 0.01080766785889864, 0.0069526531733572483, 0.0083968061953783035, 0.0085858916863799095, 0.0093432478606700897, 0.0102290203794837, 0.0093250256031751633, 0.0095474142581224442, 0.0079626590013504028, 0.017334688454866409, 0.0099381525069475174, 0.013798762112855911, 0.0061918166466057301, 0.0069788591936230659, 0.0064374860376119614, } }; const TfLiteAffineQuantization quant58 = { (TfLiteFloatArray*)&quant58_scale, (TfLiteIntArray*)&g0::quant45_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data59[144] = { 808, 2355, -1699, -670, -1533, -282, 2368, 491, -68, -277, 766, 887, 351, 2815, 139, 45, 823, 249, 2015, 1661, 453, 192, 1660, -469, 966, 2369, 360, 711, 1580, 1112, 2337, -170, 1128, 1598, 1674, 2070, 807, 2590, -169, 853, 635, -218, 990, 1162, 3776, -603, 593, 1575, -699, -924, 449, 942, 904, -203, 1749, 1451, 984, 820, 213, -1248, 1749, -985, 1875, 40, 35, 1169, -85, 509, 878, 1966, 1221, 2026, 729, -215, 852, -456, 988, 2311, -936, 682, 185, 1396, -1034, 996, 89, 507, 934, -1834, 1132, 843, -627, 1732, 243, -20, 517, 429, 2830, 822, 171, 254, 293, 1679, -432, -260, 1070, 961, 1019, 3331, -338, 412, 1009, 577, 808, 544, 2427, 625, -403, 1647, 301, 981, -1192, 329, -607, -364, -1211, 267, -678, 1757, 838, 1396, 2579, 853, 257, 292, 297, 107, 184, 1317, 2394, 1296, 839, -130, 1537, 616, }; const TfArray<144, float> quant59_scale = { 144, { 0.00021636027668137103, 0.00015971444372553378, 0.00015773157065268606, 0.00017811318684834987, 0.00017284549539908767, 0.00015114981215447187, 0.00011476004146970809, 0.00018534596893005073, 0.00019142121891491115, 0.00023996429808903486, 0.00019039053586311638, 0.00019617134239524603, 0.00022175992489792407, 0.00012473674723878503, 0.00025022393674589694, 0.00016913255967665464, 0.00019507457909639925, 0.00022023962810635567, 0.00015018328849691898, 0.0001724370667943731, 0.0001786000793799758, 0.00022111533326096833, 0.00015487974451389164, 0.0002089017943944782, 0.00018036243272945285, 0.0001508917921455577, 0.00021771038882434368, 0.00016270070045720786, 0.00015710535808466375, 0.00015570395044051111, 0.00014265303616411984, 0.00014150186325423419, 0.00017810433928389102, 0.00015419234114233404, 0.00016519261407665908, 0.00012271036393940449, 0.00018264735990669578, 0.0001266725012101233, 0.00018298627401236445, 0.00023606196918990463, 0.00013738211418967694, 0.00021488027414306998, 0.00014359570923261344, 0.00015559668827336282, 0.0001027990147122182, 0.00016279969713650644, 0.00019167913706041873, 0.00015942835307214409, 0.00016398770094383508, 0.00013891700655221939, 0.00018416481907479465, 0.00016188230074476451, 0.00012932614481542259, 0.00013556137855630368, 0.00015557832375634462, 0.00011354976595612243, 0.00021948301582597196, 0.00022061531490180641, 0.00021824792202096432, 0.0001366929936921224, 0.00011378875933587551, 0.00018711326993070543, 0.00014244586054701358, 0.00018924876349046826, 0.00022189879382494837, 0.00013910292182117701, 0.00018512509996071458, 0.00020419897919055074, 0.00017834233585745096, 0.000163735167006962, 0.0001681729918345809, 0.00012138328020228073, 0.00020895407942589372, 0.00021542389004025608, 0.00017708039376884699, 0.0001544457336422056, 0.0002487994497641921, 0.00015650541172362864, 0.00019262215937487781, 0.00016248782048933208, 0.000263858528342098, 0.00014777190517634153, 0.00012588239042088389, 0.00016363176109734923, 0.00029270205413922668, 0.00024489415227435529, 0.00019420105672907084, 0.00015873571101110429, 0.00016451592091470957, 0.00015014299424365163, 0.00017496314831078053, 0.00011684520723065361, 0.00020389730343595147, 0.00030317227356135845, 0.00022378802532330155, 0.00016455033619422466, 0.00012510007945820689, 0.00017723679775372148, 0.00017369982379022986, 0.00015119709132704884, 0.00015584249922540039, 0.00013829057570546865, 0.00018001663556788117, 0.00019224667630624026, 0.00027987049543298781, 0.00015794030332472175, 0.00022460601758211851, 0.00014206054038368165, 0.00021633265714626759, 0.00015479816647712141, 0.00016824918566271663, 0.00018139203893952072, 0.00014917273074388504, 0.00018208179972134531, 0.00014595307584386319, 0.00025910077965818346, 0.00021302749519236386, 0.00013737531844526529, 0.00032746855868026614, 0.00021742249373346567, 0.00016707213944755495, 0.00019931471615564078, 0.00019080823403783143, 0.00012193759175715968, 0.00018432369688525796, 0.00016256143862847239, 0.00015565274225082248, 0.000179187351022847, 0.00017709018720779568, 0.00013784761540591717, 0.00016779616998974234, 0.00020839179342146963, 0.00018440796702634543, 0.00012761975813191384, 0.00018086763157043606, 0.00017718263552524149, 0.0001918270718306303, 0.00020887107530143112, 0.00013143676915206015, 0.00028553517768159509, 0.00017433564062230289, 0.00017236344865523279, 0.0001753267424646765, 0.00015625421656295657, } }; const TfLiteAffineQuantization quant59 = { (TfLiteFloatArray*)&quant59_scale, (TfLiteIntArray*)&g0::quant45_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data60[144*1*1*24] = { /* [0][0][][] */ -19,-85,-33,11,17,-13,-11,-50,-61,-12,-16,-54,-56,18,22,38,11,127,83,12,-4,18,-35,-53, /* [1][0][][] */ -28,39,-59,-7,70,26,47,12,-18,-56,33,127,76,-15,-113,8,-14,-50,-40,87,21,51,-46,-40, /* [2][0][][] */ 49,70,-1,108,-20,-65,60,31,0,-74,-91,14,127,-51,-82,68,-44,110,13,110,-69,-45,26,-3, /* [3][0][][] */ -47,-50,27,43,37,-117,-38,31,7,21,-6,25,42,-95,-127,22,-33,11,79,-115,-79,73,39,-27, /* [4][0][][] */ 42,74,-15,-27,-33,-81,-9,23,-53,15,39,127,39,-53,103,-9,-21,-28,4,-85,17,-29,3,101, /* [5][0][][] */ 50,-23,-79,-121,67,-74,-58,-2,68,5,39,0,73,-3,79,70,-33,127,43,-46,-14,-14,47,7, /* [6][0][][] */ 8,26,110,20,-54,-46,-9,127,61,1,-42,7,35,85,-83,41,29,76,-54,-1,-125,26,56,-12, /* [7][0][][] */ -48,46,-127,-33,110,5,-83,-15,24,-51,84,126,-18,-1,-7,27,94,-45,24,-35,-9,-14,17,26, /* [8][0][][] */ -35,43,-5,63,-94,62,-1,127,10,-33,13,48,9,61,96,-63,21,-58,44,-33,-36,-37,-4,52, /* [9][0][][] */ -5,-22,-16,-24,15,17,1,-44,15,39,8,30,2,-127,-3,-90,-25,26,20,-32,-16,-57,5,-59, /* [10][0][][] */ -16,21,-79,-10,-36,20,25,64,-56,-19,-20,9,28,31,29,44,-37,-127,-26,23,49,-64,-11,44, /* [11][0][][] */ 70,-3,-101,40,-39,-8,-13,91,32,2,6,98,-19,-127,-31,117,-81,44,-31,63,84,-63,-7,74, /* [12][0][][] */ -127,-83,18,-15,-71,61,5,-6,-18,-39,-48,-66,-5,-5,-48,-68,16,-59,-26,-70,81,-10,6,27, /* [13][0][][] */ -13,-62,-57,-57,-10,8,7,-3,-124,2,15,-7,-60,105,65,122,-127,80,74,-63,-87,42,-65,-16, /* [14][0][][] */ 14,30,-59,-41,104,-8,-45,23,-1,-7,56,-22,-36,70,-10,15,24,16,44,5,13,-21,-127,-39, /* [15][0][][] */ 25,39,-14,48,-117,-39,59,-52,-127,106,32,-125,-3,-103,-24,-9,1,59,18,72,45,11,-3,-26, /* [16][0][][] */ -3,-7,-7,106,-39,-7,46,29,90,-5,57,-116,-15,-34,-71,40,-80,-12,11,74,21,-44,12,-127, /* [17][0][][] */ 40,25,83,-71,127,33,32,-10,0,30,5,-47,23,-40,16,-2,58,-97,28,91,-21,-8,61,42, /* [18][0][][] */ 24,-54,-7,-127,31,6,-53,64,-17,44,55,60,3,-28,96,33,55,-49,94,3,120,-97,-66,-36, /* [19][0][][] */ 16,37,57,8,-96,72,-48,-87,49,34,21,13,-40,-104,-127,1,-31,30,-67,104,75,65,64,-27, /* [20][0][][] */ 127,-5,67,23,6,-24,-44,-49,-12,35,-115,-40,11,19,-111,-64,-57,-25,68,-44,8,106,-79,-12, /* [21][0][][] */ -21,-67,-21,-84,-105,-12,-40,-68,9,-127,104,46,51,-50,-29,65,34,-90,55,23,20,-3,-21,38, /* [22][0][][] */ 19,1,-6,50,-15,-51,-105,127,60,20,-12,70,-45,16,-65,63,-2,22,15,77,-5,19,68,16, /* [23][0][][] */ 26,-118,-6,53,10,119,22,-58,-60,-6,86,94,-30,53,20,23,63,-46,67,-13,-127,75,-66,-27, /* [24][0][][] */ -68,24,44,72,-1,23,29,-49,54,-127,-50,101,30,-47,-21,-79,47,-14,12,35,120,-9,-34,33, /* [25][0][][] */ -41,-106,8,-84,70,17,-67,66,19,-16,57,37,-9,100,-77,98,-79,-127,-14,74,-86,-38,-53,-78, /* [26][0][][] */ 79,-24,49,86,-14,-18,-76,127,-32,-76,97,-20,-35,-72,-80,9,-89,-47,53,-53,-56,-15,-6,52, /* [27][0][][] */ 5,32,-17,29,44,102,120,-48,21,64,25,-37,-23,-83,31,-127,79,66,-40,42,-61,93,37,81, /* [28][0][][] */ -28,-23,-62,-26,-127,-43,-16,-12,-31,-48,-65,-67,71,85,-14,44,29,-25,30,-3,-32,6,27,42, /* [29][0][][] */ -3,-96,-37,-13,112,56,82,-127,-39,-13,-29,-114,-27,58,-19,98,-38,-89,-18,112,24,-89,-93,94, /* [30][0][][] */ 63,-20,-50,-104,-33,9,20,0,16,40,5,54,0,-50,-23,20,-9,-43,40,73,108,127,-103,-51, /* [31][0][][] */ 111,-30,-51,-53,16,-88,-74,8,-15,-69,55,127,72,-57,117,-7,-87,32,126,8,-15,-20,-13,108, /* [32][0][][] */ 55,-80,84,89,4,50,-101,-31,46,-33,31,109,52,-73,-74,-12,-48,17,-35,-18,98,126,127,-98, /* [33][0][][] */ -121,-36,32,18,61,-116,-23,40,-30,85,127,9,17,77,-5,34,14,9,-84,-28,-3,-70,114,7, /* [34][0][][] */ -74,-38,-75,-37,5,58,-71,-47,-13,51,2,-60,-13,-40,-54,-16,-51,-14,13,76,127,-88,8,55, /* [35][0][][] */ -44,4,127,-32,-114,-6,54,105,75,-12,-49,-8,-17,81,-90,-92,45,-65,-17,-43,86,-26,97,59, /* [36][0][][] */ 46,50,51,50,40,-8,88,-4,86,77,-20,-127,-1,-66,-3,-60,-55,-14,-1,-64,-49,93,52,-81, /* [37][0][][] */ -34,-86,-77,-35,-73,47,83,23,127,65,-56,-121,-66,20,-2,13,30,-64,-57,-6,-82,27,16,44, /* [38][0][][] */ -1,-38,-17,10,-103,72,13,-76,-44,-64,-59,-127,-17,-85,35,-31,31,3,9,22,-9,57,-25,36, /* [39][0][][] */ 127,-73,103,-51,41,39,76,75,-35,-31,49,-6,-30,-12,-50,31,-17,92,-124,89,17,100,-44,-34, /* [40][0][][] */ -77,-42,4,-59,89,-52,-53,24,61,-103,-45,41,60,89,9,55,-34,-54,-4,-127,-78,30,-63,106, /* [41][0][][] */ 81,-84,-8,29,56,-30,28,-127,66,-12,-9,24,-60,91,-12,0,-31,-37,-62,-10,-43,-10,-58,-50, /* [42][0][][] */ 26,-10,-39,10,-13,-11,36,48,39,-4,-116,87,55,-1,-127,-61,-5,-117,41,93,57,71,122,-4, /* [43][0][][] */ 36,96,2,25,54,10,-113,-49,-16,32,47,-72,-69,-38,108,-42,-55,35,7,-49,-90,127,-51,70, /* [44][0][][] */ 107,111,-90,90,-97,-127,43,-8,45,-122,95,29,61,-35,-23,127,-54,-102,-44,122,127,-72,99,99, /* [45][0][][] */ 34,3,48,33,-69,-78,-127,-28,67,-37,-14,26,-37,99,6,-26,107,6,-24,-27,-32,-61,22,26, /* [46][0][][] */ 114,24,-32,49,106,-91,6,13,39,-63,-104,-21,-62,44,-54,-23,-15,-49,7,127,-4,55,9,109, /* [47][0][][] */ -83,-39,44,-11,127,-3,-93,90,50,66,31,-14,-43,35,62,10,-63,14,46,-75,-72,-65,7,-79, /* [48][0][][] */ 71,52,21,60,42,-91,6,121,-55,-50,-127,-22,93,-52,49,9,117,-6,-37,121,13,114,-49,3, /* [49][0][][] */ 12,-72,-62,112,52,-44,23,-21,127,-35,-7,23,-62,85,49,-6,30,-53,30,58,-78,67,56,84, /* [50][0][][] */ 88,-23,26,-35,31,-71,-120,7,-21,-31,81,-48,3,-44,125,18,-46,4,1,-4,-29,-36,-27,-127, /* [51][0][][] */ -47,4,61,51,-87,9,-109,-8,85,127,-34,-28,-25,66,27,44,40,79,36,-29,-18,-125,125,69, /* [52][0][][] */ -33,96,93,-103,31,117,23,-108,49,-25,62,2,31,-11,-14,-82,106,-14,8,49,33,6,127,-124, /* [53][0][][] */ -91,94,44,105,-1,-55,-54,-10,-75,-36,-127,56,25,22,-10,-61,70,-89,66,61,-52,-24,76,-54, /* [54][0][][] */ 50,2,69,-91,-96,11,-47,-74,-74,-127,13,-5,-92,-35,65,-68,-51,96,-83,83,54,63,-84,-54, /* [55][0][][] */ -127,74,86,117,-40,7,65,-29,-66,-40,-65,-92,87,110,-100,-10,-126,-99,-25,-45,-87,-102,17,12, /* [56][0][][] */ -57,43,10,-80,-31,-15,49,0,-58,-15,-19,-8,41,-127,78,-3,28,-100,-48,-13,-14,-50,31,-26, /* [57][0][][] */ 6,-63,-10,21,-26,-28,2,41,-127,-83,-74,-10,6,-15,-1,-26,22,-14,2,16,-9,77,-15,5, /* [58][0][][] */ -57,20,-5,92,29,-49,-5,56,-42,58,20,-34,-32,-21,10,51,-86,19,-21,-33,-127,-71,76,17, /* [59][0][][] */ 76,-84,-31,49,-38,24,6,-30,-10,53,-40,62,9,-23,-7,63,-31,40,26,-1,96,82,-127,44, /* [60][0][][] */ -24,-54,25,-97,-15,-92,106,-84,101,-127,43,91,-42,36,113,8,3,25,-35,76,-27,-80,7,-9, /* [61][0][][] */ -89,69,49,-74,32,79,34,-67,-34,-41,-38,-55,75,-50,-23,-27,-30,16,26,31,-73,-42,-47,-127, /* [62][0][][] */ -43,-9,114,30,-91,-6,-27,26,-35,-68,-107,-127,42,-10,-14,-102,-52,-67,55,-22,-47,9,5,-7, /* [63][0][][] */ -32,16,-9,5,20,-127,53,79,-27,-85,86,60,52,29,-15,41,19,-66,82,91,50,-60,-83,-58, /* [64][0][][] */ -97,22,-26,38,33,-96,-35,-31,-5,-18,101,86,-13,-127,75,13,15,60,-35,99,19,55,-51,-5, /* [65][0][][] */ -109,-10,-45,43,20,43,54,2,-88,-68,8,-62,105,-56,-49,-104,118,18,87,-127,31,64,65,-29, /* [66][0][][] */ 16,-28,28,-51,64,13,-3,-41,5,-95,71,59,60,-5,-16,14,-24,18,55,-127,66,-33,-37,-59, /* [67][0][][] */ 61,-29,14,27,-52,-62,-36,-31,-104,-28,27,43,106,74,127,-59,-61,-18,19,54,66,-9,-27,16, /* [68][0][][] */ -127,-23,-22,49,-35,14,2,116,-11,-92,100,-5,8,40,2,9,-46,-24,95,102,82,57,-60,14, /* [69][0][][] */ 22,35,1,17,89,33,-96,19,-5,45,40,-23,-41,-1,2,-21,-49,-39,-72,-46,-1,2,-45,-127, /* [70][0][][] */ 71,-56,13,8,-53,45,-29,120,126,26,-33,-99,18,-31,-127,-114,40,-18,2,51,23,61,-18,-112, /* [71][0][][] */ -13,56,73,-37,64,-51,-95,97,-103,107,-91,-16,30,79,127,-104,-73,-78,50,23,53,72,-73,-13, /* [72][0][][] */ -98,-16,-70,37,-84,30,-45,23,-127,-8,-30,-22,28,-71,-18,61,-10,-10,38,69,-85,99,-70,25, /* [73][0][][] */ 105,97,2,41,67,-48,43,-32,13,93,57,-67,4,16,-7,-45,60,-94,49,2,-48,127,-9,-39, /* [74][0][][] */ -25,-127,71,-57,-31,12,-51,-83,1,-39,0,63,-19,8,-45,69,-119,4,-34,-101,47,-67,19,-119, /* [75][0][][] */ -55,47,-34,127,-2,-87,92,40,-35,-2,-121,60,46,-60,-49,-20,6,-82,50,113,59,25,15,61, /* [76][0][][] */ -18,-79,-80,47,-12,-33,-69,-13,-35,9,52,-14,-11,-84,-49,-33,-24,16,-17,-11,-15,127,33,-51, /* [77][0][][] */ 5,116,-15,-9,26,-55,-31,-44,-60,-1,-53,8,-45,-121,-127,-54,-14,5,-90,-37,-10,51,-21,32, /* [78][0][][] */ -26,40,10,-69,38,-22,11,27,-17,-106,-19,-91,-124,-2,13,-23,-56,-25,-29,103,-52,-95,127,35, /* [79][0][][] */ -58,-93,79,-94,48,39,-94,40,-21,11,30,-10,-44,-52,-29,51,-22,-6,-11,25,-95,-127,24,-27, /* [80][0][][] */ -15,59,-9,34,77,8,71,-29,17,42,6,10,8,-65,-5,12,-34,15,-19,0,34,127,-60,-14, /* [81][0][][] */ 95,67,-3,-32,38,-113,-82,127,-110,70,57,-43,62,-106,-77,-90,-68,-78,-107,-16,-11,4,-72,53, /* [82][0][][] */ 67,-40,-88,118,-27,48,-18,-88,-127,12,50,28,-44,28,115,-58,103,118,-14,102,-13,-3,-76,-64, /* [83][0][][] */ -19,74,32,39,-19,-3,15,71,-25,-74,-77,32,-46,-1,1,4,-93,-97,23,-69,44,127,-26,-55, /* [84][0][][] */ -50,-66,-127,4,63,54,29,-27,37,7,-20,-18,28,-92,22,22,21,34,121,26,-53,29,-45,-24, /* [85][0][][] */ 11,-46,12,55,100,40,70,-70,50,-64,-89,46,-25,-92,8,24,42,-127,71,75,-13,105,40,-88, /* [86][0][][] */ 8,-56,-22,-78,95,127,8,44,35,4,44,20,58,-39,-116,57,-12,98,-5,93,-98,-13,7,-59, /* [87][0][][] */ 38,-72,3,-43,127,-14,-75,-9,72,1,55,115,-51,-54,-4,-26,64,8,12,-31,51,-54,81,-37, /* [88][0][][] */ 6,-21,108,-65,43,127,67,-13,65,-78,-126,-112,-41,-10,-111,-58,-100,60,-57,-1,-44,-40,-95,-122, /* [89][0][][] */ -19,74,72,68,9,-78,76,-105,-75,42,-112,45,-48,-56,-70,127,23,-53,-35,-17,-82,-9,68,122, /* [90][0][][] */ 32,75,34,100,-57,-105,48,3,5,-127,-49,-5,3,89,14,-66,67,-5,-4,-101,25,21,21,56, /* [91][0][][] */ 31,72,22,-95,-3,108,55,-50,-19,-1,126,-68,-36,-127,98,-38,-35,-5,-63,38,-37,63,-48,63, /* [92][0][][] */ 50,127,6,18,8,-12,114,-65,17,-49,3,43,-18,19,-48,-29,112,-80,-29,32,51,39,11,34, /* [93][0][][] */ -69,-19,16,18,-5,30,36,42,-54,-54,-30,-3,8,43,-38,-37,-23,-127,-3,0,96,-20,34,-21, /* [94][0][][] */ 48,16,106,61,-62,54,-74,-53,-85,-10,25,-18,18,5,15,-127,-47,52,46,43,-5,4,-86,-52, /* [95][0][][] */ -47,-11,-6,-18,-31,2,64,-29,61,26,-27,60,-56,64,-53,-98,-99,-127,86,16,72,2,-83,-66, /* [96][0][][] */ 23,-13,22,-2,84,25,-67,19,43,52,-83,55,-31,-17,97,-35,87,127,-7,-15,-19,-20,-117,31, /* [97][0][][] */ -59,-32,127,-42,36,69,103,-37,49,-56,-48,-23,50,16,-85,-84,32,-38,10,-27,-106,30,92,-41, /* [98][0][][] */ 35,-5,-7,16,-64,-65,39,68,11,-74,-127,-20,1,14,7,47,36,-91,63,-9,-96,-35,-40,5, /* [99][0][][] */ -51,127,24,95,9,-77,-37,-34,40,-110,112,-53,4,-35,66,78,85,-35,118,47,67,-71,76,32, /* [100][0][][] */ 71,-48,-79,-38,4,-19,-23,-90,-76,-119,-53,-103,-65,-127,5,-6,-13,72,-26,-6,-47,76,-127,18, /* [101][0][][] */ 65,26,22,28,61,-77,11,52,-96,38,45,-64,-68,-3,11,41,-127,53,109,12,29,55,39,8, /* [102][0][][] */ -63,-38,33,42,-14,-87,77,90,32,-17,1,89,-6,-81,-66,-62,3,-4,57,20,-1,-79,82,127, /* [103][0][][] */ 43,21,-17,-2,78,127,-111,-16,29,-67,40,-13,-12,-71,-35,3,98,-41,8,-49,-20,-97,51,99, /* [104][0][][] */ -21,-30,33,36,-22,-65,-22,-42,-14,21,-18,-32,26,-127,-49,0,20,-86,-61,13,13,-44,-95,-38, /* [105][0][][] */ 71,-14,-127,-32,-41,74,16,57,-7,-41,55,-17,30,-60,27,-67,-48,-41,-21,-82,48,87,96,-47, /* [106][0][][] */ -31,87,16,-18,-20,-22,42,-9,-95,-56,52,14,-10,96,-24,12,20,-9,-39,127,-5,-10,-9,21, /* [107][0][][] */ 54,-43,-84,12,-21,24,89,66,-11,-95,21,8,64,-101,49,-42,34,8,-77,87,9,127,64,-89, /* [108][0][][] */ -68,-45,-14,-8,27,-12,-1,51,-91,-58,-31,-31,74,81,-3,-127,49,47,37,94,-33,44,12,-95, /* [109][0][][] */ 83,-30,-46,-8,-7,79,-10,10,-41,52,74,-29,-116,-55,4,11,58,127,-27,8,-15,53,-22,-20, /* [110][0][][] */ 33,68,-20,-59,36,91,-17,-127,-20,-13,51,90,-12,-36,102,-47,-22,-10,44,14,-113,-32,23,20, /* [111][0][][] */ 127,13,113,7,-21,-39,-114,1,18,-26,-6,-67,-121,-25,105,18,13,83,-92,-80,53,-108,-10,-28, /* [112][0][][] */ -124,60,-17,94,-44,67,-39,57,17,0,-70,58,127,105,-96,-71,-51,-65,-83,91,1,-23,31,-47, /* [113][0][][] */ 37,-44,24,-62,17,-13,-63,35,40,47,69,-71,-127,-25,90,58,-37,3,-56,-23,-36,-62,1,108, /* [114][0][][] */ 99,-70,-46,22,-68,-83,73,31,-65,-71,-53,6,-6,-44,-21,-44,25,-26,-127,84,68,127,77,-88, /* [115][0][][] */ -15,-3,-127,64,-24,-27,24,-15,83,35,-5,-106,32,-37,67,1,-34,-26,28,61,-37,16,20,22, /* [116][0][][] */ -81,37,0,-122,16,73,30,61,2,-31,52,-12,-28,66,-54,38,39,-93,-127,38,-43,11,-86,-57, /* [117][0][][] */ 94,-18,36,1,-42,41,63,-62,28,29,42,-76,-6,23,-44,-102,-66,87,87,-16,-15,-28,58,-127, /* [118][0][][] */ -39,-63,-49,-16,-13,13,-37,8,-47,42,-18,-17,-61,-127,32,4,-33,-17,45,9,-28,94,-46,-39, /* [119][0][][] */ -15,105,-66,-31,-7,-106,32,-29,-119,-50,9,-110,127,-72,70,62,-80,103,12,40,-12,-95,49,-6, /* [120][0][][] */ -21,-19,-29,-19,-27,-48,20,38,70,-127,95,44,104,5,-11,-68,-77,-4,98,-47,69,114,-40,-16, /* [121][0][][] */ 12,-38,33,-6,9,-49,-127,35,90,33,15,41,-41,23,92,-40,111,-49,88,-9,-18,-16,44,35, /* [122][0][][] */ 60,17,44,63,59,78,11,-9,47,87,127,-35,58,11,-30,-22,-62,-3,55,-24,21,-2,-58,-6, /* [123][0][][] */ 127,121,-101,86,-78,104,24,-57,78,-35,-3,-63,-29,-74,40,-44,-110,77,-55,-22,-27,51,12,11, /* [124][0][][] */ 28,-53,42,-66,49,49,-14,9,-29,-12,102,-33,-46,-87,-60,-36,-13,53,-28,-27,15,9,-2,127, /* [125][0][][] */ 38,-91,79,-74,86,81,105,3,-21,88,-13,-32,-10,-127,16,-65,-9,100,-47,-37,-10,-6,103,-54, /* [126][0][][] */ -53,-88,40,123,-55,51,-127,51,-120,107,-30,-14,-28,56,-85,3,-23,-61,64,31,45,-36,-50,-29, /* [127][0][][] */ -40,-34,-127,27,94,53,22,31,71,16,13,48,123,41,16,-61,13,17,-34,85,63,-29,-80,35, /* [128][0][][] */ 5,112,-31,61,-30,-84,10,65,43,2,33,-29,83,-107,77,22,127,-26,-70,41,31,19,126,-15, /* [129][0][][] */ 16,-41,-21,-15,76,76,-43,-20,-29,127,-67,31,11,-103,113,49,-48,1,79,-36,0,-28,-117,-9, /* [130][0][][] */ -127,1,-55,18,18,-91,41,60,68,37,-54,106,6,-48,-50,-38,-1,32,31,94,-74,-37,2,-6, /* [131][0][][] */ 56,-18,0,-9,27,49,94,-34,-116,5,-11,-40,127,-54,14,-6,28,103,17,26,7,42,99,45, /* [132][0][][] */ 60,-76,73,100,-31,-127,-62,-8,56,-51,-1,-92,-5,88,36,8,-19,-53,16,6,-65,-9,1,3, /* [133][0][][] */ 22,-25,-127,122,101,20,-124,1,85,107,-5,-122,-68,15,30,-55,9,84,76,60,-85,80,-76,3, /* [134][0][][] */ -20,57,59,56,-93,-43,-60,-118,-28,-4,-113,15,26,25,127,-113,-59,-48,-53,-1,17,21,-29,9, /* [135][0][][] */ 5,119,-36,-33,59,18,127,33,38,-33,35,-123,-53,-17,-52,-34,-91,72,-11,3,9,34,115,32, /* [136][0][][] */ -36,-121,66,10,34,36,15,-67,-18,52,-127,-51,-53,32,73,-57,-38,55,-70,38,1,-3,-19,58, /* [137][0][][] */ 124,-29,66,9,-49,-29,-1,-12,-21,65,8,-91,-52,38,-7,-26,33,127,-56,-62,38,-20,19,2, /* [138][0][][] */ 56,-110,19,6,-67,-26,-24,9,117,-62,104,100,19,57,84,-30,24,7,-57,-45,-17,-127,72,-33, /* [139][0][][] */ -10,40,-127,-31,-12,-38,-13,8,47,7,23,47,37,20,-3,43,91,56,3,21,-11,6,-63,-10, /* [140][0][][] */ 66,-7,51,65,23,-28,-17,52,-68,-54,38,69,-86,-9,-5,7,-36,-12,127,38,93,36,-7,43, /* [141][0][][] */ -91,31,-14,87,-4,-23,59,79,-32,-71,-37,-17,-94,21,-59,-127,-20,-119,54,-99,29,77,70,97, /* [142][0][][] */ -13,109,57,-13,47,-66,-19,-10,-103,-64,-70,-61,65,-70,4,-64,-127,23,-53,46,-19,-77,-40,-8, /* [143][0][][] */ 28,-59,34,65,49,32,-37,30,127,-101,-45,13,-63,-4,59,75,-37,109,-40,-65,23,-38,114,-20, }; const TfArray<144, float> quant60_scale = { 144, { 0.0024258550256490707, 0.0017907357541844249, 0.0017685036873444915, 0.0019970245193690062, 0.0019379626028239727, 0.0016947082476690412, 0.0012867021141573787, 0.0020781191997230053, 0.0021462356671690941, 0.0026905059348791838, 0.0021346795838326216, 0.0021994945127516985, 0.0024863965809345245, 0.0013985619880259037, 0.0028055380098521709, 0.0018963327165693045, 0.0021871975623071194, 0.0024693508166819811, 0.0016838714946061373, 0.0019333831733092666, 0.0020024836994707584, 0.0024791692849248648, 0.0017365287058055401, 0.0023422297090291977, 0.0020222433377057314, 0.00169181521050632, 0.0024409927427768707, 0.0018242180813103914, 0.0017614824464544654, 0.0017457697540521622, 0.0015994415152817965, 0.0015865344321355224, 0.0019969253335148096, 0.001728821313008666, 0.001852157642133534, 0.0013758420245721936, 0.002047862159088254, 0.0014202659949660301, 0.0020516621880233288, 0.0026467526331543922, 0.001540343277156353, 0.0024092611856758595, 0.001610010745935142, 0.0017445670673623681, 0.0011525937588885427, 0.0018253279849886894, 0.0021491274237632751, 0.0017875281628221273, 0.0018386481096968055, 0.0015575526049360633, 0.0020648760255426168, 0.0018150421092286706, 0.0014500189572572708, 0.0015199290355667472, 0.0017443612450733781, 0.0012731323949992657, 0.0024608676321804523, 0.0024735629558563232, 0.0024470195639878511, 0.0015326167922466993, 0.0012758120428770781, 0.0020979344844818115, 0.0015971185639500618, 0.0021218778565526009, 0.002487953519448638, 0.0015596371376886964, 0.0020756428129971027, 0.0022895012516528368, 0.0019995938055217266, 0.0018358166562393308, 0.0018855739617720246, 0.0013609626330435276, 0.0023428159765899181, 0.0024153562262654305, 0.001985444687306881, 0.0017316624289378524, 0.0027895665261894464, 0.0017547558527439833, 0.0021597007289528847, 0.0018218312179669738, 0.0029584106523543596, 0.0016568347346037626, 0.0014114071382209659, 0.0018346572760492563, 0.0032818075269460678, 0.0027457801625132561, 0.0021774035412818193, 0.0017797620967030525, 0.0018445705063641071, 0.0016834196867421269, 0.0019617059733718634, 0.0013100812211632729, 0.002286118920892477, 0.0033992007374763489, 0.0025091357529163361, 0.0018449564231559634, 0.0014026357093825936, 0.0019871983677148819, 0.0019475414883345366, 0.0016952382866293192, 0.001747323083691299, 0.0015505290357396007, 0.0020183662418276072, 0.0021554906852543354, 0.0031379386782646179, 0.0017708439845591784, 0.0025183071848005056, 0.0015927982749417424, 0.0024255453608930111, 0.0017356140306219459, 0.0018864283338189125, 0.0020337873138487339, 0.0016725409077480435, 0.0020415210165083408, 0.001636441913433373, 0.0029050661250948906, 0.0023884875699877739, 0.0015402670251205564, 0.0036716132890433073, 0.0024377647787332535, 0.0018732310272753239, 0.0022347383201122284, 0.0021393627393990755, 0.0013671775814145803, 0.0020666574127972126, 0.0018226566025987267, 0.0017451955936849117, 0.0020090681500732899, 0.0019855545833706856, 0.00154556252527982, 0.0018813490169122815, 0.0023365116212517023, 0.00206760223954916, 0.0014308866811916232, 0.0020279076416045427, 0.0019865911453962326, 0.0021507861092686653, 0.0023418853525072336, 0.0014736833982169628, 0.0032014516182243824, 0.0019546702969819307, 0.0019325579050928354, 0.001965782605111599, 0.0017519393004477024, } }; const TfLiteAffineQuantization quant60 = { (TfLiteFloatArray*)&quant60_scale, (TfLiteIntArray*)&g0::quant45_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data61[24] = { -9244, 3042, 4066, -3112, -1365, -1253, -9484, -8821, 9114, -6064, -9935, 7530, 4571, -6097, 17023, 3834, 15106, -2495, 7325, 11429, -6752, -747, 939, 5372, }; const TfArray<24, float> quant61_scale = { 24, { 4.2610208765836433e-05, 3.5218781704315916e-05, 4.9547918024472892e-05, 5.0469723646529019e-05, 5.4608681239187717e-05, 4.7127705329330638e-05, 4.0703893319005147e-05, 4.4571555918082595e-05, 4.404867286211811e-05, 4.5815857447450981e-05, 4.4222619180800393e-05, 6.5928878029808402e-05, 4.7811903641559184e-05, 5.863905607839115e-05, 5.0166014261776581e-05, 5.2435549150686711e-05, 4.1862051148200408e-05, 3.6086570617044345e-05, 5.4768584959674627e-05, 4.9227670388063416e-05, 5.2720653911819682e-05, 5.9080033679492772e-05, 5.3929943533148617e-05, 3.3213327697012573e-05, } }; const TfLiteAffineQuantization quant61 = { (TfLiteFloatArray*)&quant61_scale, (TfLiteIntArray*)&g0::quant49_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data62[24*1*1*144] = { /* [0][0][][] */ 5,-9,48,16,86,-31,14,127,-6,14,-97,-40,-49,10,14,-24,-7,46,55,-43,45,14,27,18,-8,-12,-17,-14,-22,-65,17,-34,-77,-15,-47,3,-3,44,25,-28,-11,19,-29,17,5,-28,32,2,-57,26,-38,44,-64,-2,-46,-86,4,16,1,27,-69,-61,17,-78,10,23,-19,-87,7,-67,-101,-34,57,4,25,7,15,78,8,10,10,-25,-26,-18,99,-1,-93,5,41,24,90,114,25,87,-16,64,-34,28,97,-37,-43,20,19,-3,-4,-70,16,-70,82,-46,39,31,74,10,53,-12,-48,10,-55,14,67,-2,-27,-21,54,37,20,66,20,-35,-46,50,63,39,-40,14,69,3,27,23,64,54,-33,18, /* [1][0][][] */ -18,27,-5,-95,1,0,26,-14,-20,-53,-93,-100,-98,-74,14,-29,8,36,-42,68,-58,-72,48,-61,-4,0,-57,113,15,45,-14,-127,53,59,-51,-18,33,29,6,-76,45,-54,-86,-24,-64,24,-82,-13,43,-35,32,-64,12,44,77,18,-54,-46,95,-4,30,-111,-19,3,13,43,-20,59,-26,-63,49,-91,-4,-11,-40,70,-9,-41,-23,96,59,28,14,36,36,12,-64,45,-7,30,50,-9,-46,56,-32,66,-7,-62,7,-12,13,73,-10,-18,23,0,12,53,37,-1,60,9,26,-60,-115,30,14,-41,20,-5,-79,83,22,-86,38,-24,36,-25,2,-32,-9,58,74,-34,8,17,21,-18,20,80,7,26,52,29, /* [2][0][][] */ -4,-35,-64,-6,-35,-60,20,-9,35,34,5,13,-1,25,5,-89,-16,-64,20,24,-32,-2,-38,-10,-48,31,10,-59,25,20,-15,-12,22,25,76,4,-9,-1,-11,-60,22,-12,-45,40,27,-23,-16,27,11,1,-34,4,-41,-51,20,-28,-45,57,95,-30,49,44,-14,99,9,-62,22,5,14,-32,3,-4,-41,0,-33,37,-37,-14,-39,27,-127,50,-5,31,-100,37,26,23,4,0,34,19,-72,17,38,-21,-13,-37,-2,26,-1,48,-8,-17,32,-16,-63,-28,1,-25,85,-62,2,38,7,-12,-73,97,18,-30,-6,-2,-5,-52,-9,10,-30,64,-6,-4,-68,-62,58,22,20,-24,6,67,30,23,-36,57,38,41, /* [3][0][][] */ 57,49,75,31,33,8,-30,1,-20,23,-2,-49,-58,6,52,-41,29,-36,27,18,-8,73,64,-51,-16,-1,5,59,-5,-16,-20,13,-11,40,-39,57,21,-3,3,6,17,-12,21,14,-5,59,-45,-23,25,33,-24,18,-47,1,35,73,45,20,-93,-19,-2,-25,62,-7,21,3,37,-37,48,-9,37,56,55,84,-35,4,-41,10,-22,-51,-21,21,-41,-17,13,-29,-52,-1,21,-5,22,15,-62,-15,-63,-22,2,32,-2,-25,-14,63,-28,-8,40,16,-19,-50,-12,-12,-51,-74,-7,18,-74,27,9,-42,60,-18,22,24,-84,-1,-4,5,-29,-12,54,43,-11,8,-14,-51,63,-78,16,45,-14,20,-127,38,19,18, /* [4][0][][] */ -24,-5,-13,18,21,-24,-1,-45,-38,38,-21,56,26,2,3,-17,-5,26,44,13,2,37,20,28,6,-31,25,-3,24,15,-22,-1,26,-75,22,-31,26,72,3,0,11,-57,-20,60,41,4,25,12,4,47,-14,-5,36,-63,11,-17,-27,-19,-4,33,-51,29,-66,-6,-55,28,29,15,-43,27,-30,0,43,-18,13,11,-1,-12,-30,-52,10,58,32,-5,17,28,16,75,2,53,-7,56,-70,41,-2,-34,44,2,36,16,-4,15,16,40,-67,-78,-14,23,9,2,-13,56,-77,-30,38,45,38,-37,6,41,-7,-21,0,15,15,-23,-20,16,-18,31,11,-28,-4,29,-70,-34,-127,-17,-40,12,34,-20,-46,56, /* [5][0][][] */ -103,-59,-40,-43,-25,-16,9,21,6,54,12,-68,38,38,13,-8,43,42,-31,10,-24,45,-28,21,95,12,10,-81,-15,-35,-60,-47,40,-28,65,-16,36,18,-8,-24,-11,36,30,-17,6,30,-19,0,-23,13,-40,17,74,24,25,-17,22,-36,34,-5,4,23,-36,-37,-9,12,46,38,-67,-17,-28,47,48,-67,-18,35,-81,-33,-34,-85,22,68,23,-11,66,-14,-59,59,2,-7,-27,26,-60,41,39,18,15,29,-9,-59,13,6,36,47,36,37,28,80,-11,65,-8,-103,-8,6,77,-12,-17,-43,47,-50,43,14,12,-49,88,-26,-127,-81,-72,54,10,-3,-9,15,-26,-51,20,-22,10,-1,61,-6,2,53, /* [6][0][][] */ 42,43,22,49,-37,10,-50,-6,-127,-14,63,-102,-28,46,49,42,11,-69,7,20,33,75,77,-72,45,92,37,-111,-1,75,-53,-95,-77,48,5,9,35,6,-85,-78,70,113,-69,-64,3,53,-48,-11,12,-83,42,-45,28,63,-28,-39,95,26,48,78,33,-20,65,-32,111,5,31,-77,4,42,16,8,4,51,-20,120,-16,-13,-53,6,53,-19,-56,50,-8,-58,-76,-37,-4,53,85,49,87,-3,-49,63,5,3,67,25,22,31,-70,-11,-3,-4,-30,19,-72,-29,31,-5,53,-10,-16,-44,14,16,69,12,-57,11,-3,45,9,37,-23,92,-63,22,-13,-75,30,-95,33,-9,41,17,18,-18,-33,-24,3,7, /* [7][0][][] */ -8,13,-14,48,-43,32,28,-28,-29,-8,-36,71,-7,-34,5,11,30,45,57,17,-8,-22,14,7,29,47,16,11,44,-35,-32,18,38,-7,-48,-4,-22,-9,-19,4,32,1,7,29,16,12,48,19,-23,-3,23,21,-2,72,-73,66,3,-39,76,60,-54,105,47,38,-14,-11,65,-11,23,-55,71,0,-7,-16,18,46,23,2,-13,-62,-7,-48,-44,-49,7,-25,23,0,-27,-55,15,45,54,1,-5,79,19,-19,5,-71,-68,5,-61,-30,7,49,-17,-38,-50,-75,48,29,13,42,-17,-72,-24,52,16,-28,-71,-7,4,88,-25,35,7,13,-5,7,58,28,20,22,-113,3,127,7,-34,-60,-4,-26,46,-46, /* [8][0][][] */ -17,-46,-53,-30,18,13,-66,28,-10,62,-63,63,-67,17,-5,26,-18,24,-21,27,23,20,-18,39,-22,-65,-21,3,-22,71,-67,127,16,-47,35,14,3,-66,37,97,7,-30,47,33,19,28,-12,-62,-24,49,-15,31,-29,-58,12,-14,-23,1,59,-28,-44,-20,-45,25,0,-10,3,10,30,-51,-17,4,32,-49,28,-6,-13,34,42,23,93,-53,25,-64,-3,52,0,-16,-42,15,-34,-1,53,-2,-6,-63,-30,-55,-18,8,4,-78,20,-85,-25,25,-1,-41,8,-24,-20,33,-45,62,6,5,-70,-40,42,-15,21,-67,26,29,-49,-49,33,34,-17,-54,9,-38,31,-13,-59,-15,18,-24,-18,24,-32,1,-30,-47, /* [9][0][][] */ -34,-23,82,-18,23,17,-38,-53,40,5,-21,18,-48,127,64,-1,-20,40,66,2,17,49,-62,0,47,-13,-23,-85,-38,25,28,105,62,12,6,-17,-26,61,26,-23,2,-13,46,18,-9,-50,50,24,-35,-58,36,-16,17,16,4,-34,42,15,-12,-2,-20,-13,-37,-101,-18,13,-29,-8,-40,-15,-33,10,-11,-12,-22,58,19,1,-40,-55,11,11,12,-67,53,0,30,50,1,-62,-41,57,56,5,35,-23,31,-21,-34,2,-30,-61,10,-74,67,-24,76,-25,-22,-10,-14,-5,-15,41,7,-101,-23,23,84,29,31,-57,-3,43,36,-4,67,-26,-2,-70,73,-1,5,7,-9,-28,-10,-28,76,-15,60,-28,-28,-5, /* [10][0][][] */ 39,-35,-6,12,33,-36,-38,-21,10,-19,-4,29,34,5,27,12,-13,93,24,34,-19,-23,-19,10,-34,48,41,-18,26,-28,-30,-7,29,-59,81,-18,39,29,41,24,-41,-25,127,-7,41,7,62,13,-1,-9,-76,78,-19,39,-2,26,-8,-70,16,45,-56,16,-58,25,-48,6,-41,25,90,-38,19,17,30,28,105,-52,9,-33,12,-64,-53,75,15,-48,-61,96,46,3,36,52,-6,107,-36,1,42,51,10,-21,-14,-29,-31,-58,-33,29,-30,-16,32,33,63,27,-6,4,9,-35,31,19,-26,99,-104,-57,102,-53,-58,6,0,-11,-23,41,-1,-9,41,36,-40,104,27,-50,8,5,-7,58,-6,-73,-27,9, /* [11][0][][] */ -4,25,-28,-6,-8,13,-10,-33,12,-6,29,92,-35,29,12,1,-13,29,-29,-17,-24,-37,5,-19,-4,59,10,127,-1,-50,-24,61,17,14,-20,53,39,43,30,41,-4,-13,33,17,32,27,-58,-2,-21,-65,77,-1,23,-64,-6,-3,-29,-16,-33,-3,0,18,69,-1,-75,-3,-7,-2,2,-40,-8,21,-38,-44,-32,29,24,28,-31,42,17,-54,3,-14,69,-16,-5,36,-34,-82,-10,-3,-26,-27,-11,9,-17,-5,-12,-39,9,-40,46,-63,-9,36,-4,-97,-67,25,-37,74,-17,127,6,10,44,-58,-1,-41,-34,-47,29,-22,-25,-96,-26,-6,-30,28,25,-28,4,-3,37,10,-26,-20,-17,20,-25,11,-10,58, /* [12][0][][] */ -15,20,45,-7,-42,-23,-71,25,22,50,-21,-127,2,8,-108,-19,13,-23,27,-22,46,-15,-77,-50,19,-85,-63,28,26,10,-25,-50,46,-27,-53,-1,3,18,-8,44,41,-50,30,13,-79,-8,19,-1,-20,10,15,-47,28,-33,9,28,-28,-5,25,15,52,-46,54,8,6,-20,-24,11,2,5,23,-66,-12,-27,-29,29,-61,15,-79,0,32,-52,-63,-43,-9,36,-47,51,-30,-3,-19,-47,25,31,-27,13,-3,-86,-15,17,59,-52,-26,76,6,97,-24,-20,-12,-4,112,29,34,21,-23,57,65,-48,-111,-45,50,10,3,53,52,105,84,-18,46,-17,40,-8,72,-42,-49,-5,46,74,76,-17,-34,-14,49,-8, /* [13][0][][] */ 59,34,-1,-8,0,-33,-8,33,38,12,-30,45,-36,-43,-73,-3,55,-4,-29,-49,39,0,-14,14,17,-84,-15,82,-25,105,54,99,-33,32,-20,-52,9,-63,-16,-33,20,-8,-5,-57,33,12,-52,11,-66,97,-13,18,-9,-65,-26,-34,4,40,-70,-11,46,5,-21,-3,4,-11,22,-30,-9,73,0,2,32,3,-26,-11,26,28,14,69,-18,34,12,21,43,-9,73,13,-28,-33,-15,-69,-16,45,17,18,-3,-3,38,-5,-2,26,60,-1,27,41,49,-45,5,-3,-61,-19,13,64,-68,22,7,127,-3,10,-47,26,-20,29,13,-43,-41,-2,30,-70,-35,-39,-38,-17,-22,-15,35,-12,29,-7,-9,-2,-37,-35, /* [14][0][][] */ -1,10,4,-2,50,18,-51,-112,62,-5,-74,-18,76,80,-86,-11,-30,-2,68,-10,51,49,-72,45,-78,5,47,-38,11,24,-7,21,-16,35,-75,4,7,-20,10,-1,-26,-67,-21,22,-31,-21,-16,5,-32,33,-54,-89,-57,-12,35,-71,-40,15,39,-57,19,27,-26,-102,29,31,-63,61,26,51,-64,11,45,-11,-20,-127,-63,-15,-41,-18,-12,5,18,-20,101,6,-6,-50,-36,19,-41,-32,-37,16,13,-10,-7,-16,-49,-69,-19,36,-4,-7,3,19,0,-14,31,-45,-17,16,-20,-76,-20,38,-51,42,-41,-51,55,-66,-21,-17,-29,-31,-23,-10,55,14,-28,-25,-49,-18,-16,29,-67,9,16,86,52,-70,29,-65, /* [15][0][][] */ -110,33,57,-67,8,17,18,-34,26,27,2,78,28,6,0,16,-62,63,15,-54,-6,-37,-39,-1,62,-36,53,33,-14,-35,25,-1,-44,-11,46,38,-35,-2,31,-9,2,50,14,11,46,16,-8,-45,-29,82,49,-17,-13,-127,-8,-2,-39,-13,22,9,11,54,7,-60,-36,-66,41,-36,-23,-65,-40,-64,11,36,2,9,6,29,6,47,-35,-43,29,91,-11,14,51,6,9,63,-12,0,6,12,-1,-11,-74,16,-9,-26,-74,54,-37,-32,-18,20,91,11,-24,31,40,47,-21,53,62,-39,16,29,-39,-18,-29,-59,5,19,-36,-6,2,-9,-77,6,-38,7,-13,12,42,55,-10,-55,1,-29,49,-46,10,-87, /* [16][0][][] */ -32,-4,-31,-16,29,52,5,-22,-76,9,99,-44,26,-12,-1,94,-96,-37,-15,-123,85,-79,28,-18,-18,-4,-8,88,-28,-21,-32,20,70,2,-17,76,-17,-58,6,6,34,17,-58,-116,44,-53,-2,19,3,-13,-13,13,-3,-7,-5,-9,-36,-75,29,7,15,-32,20,-59,42,-35,-2,85,-15,22,-48,33,-31,-73,-22,-7,29,-5,-14,68,45,-15,3,-26,-65,14,-5,28,-18,-40,30,-96,-47,-63,15,-28,-10,46,8,24,-16,-89,-54,-33,-127,62,16,5,-27,37,12,78,-18,13,-26,-14,-40,51,16,55,-53,-58,-33,-10,-67,-59,-3,-51,-47,1,88,13,8,-58,49,36,-22,-47,-29,37,105,-57,-90,40, /* [17][0][][] */ 9,29,83,53,59,41,28,-21,60,-65,-41,-37,86,-23,-34,-95,39,-25,-69,-3,-51,-58,-28,-15,-44,-46,9,31,3,-76,-11,-33,19,87,35,-24,-87,2,-2,-4,-27,-68,-21,36,-16,8,55,-20,20,-2,37,28,48,4,7,30,-16,-52,-4,-89,11,110,-48,61,2,-38,-20,-28,-10,-73,-67,55,-8,-114,-31,49,-35,49,11,-90,-113,2,-13,14,-43,25,47,104,-50,17,-53,6,58,4,32,-43,67,25,-29,-10,-127,57,-5,56,-60,-10,-50,32,13,30,-89,101,-98,-32,125,-41,38,8,61,30,39,-6,17,103,109,-31,-21,-44,31,-115,33,102,21,-80,21,84,-26,55,116,-93,79,-51,79,-67, /* [18][0][][] */ -2,72,15,17,28,-12,-46,9,-37,48,0,13,30,-13,28,9,1,16,-47,54,0,19,7,10,-7,-3,15,-13,-20,21,-52,29,-23,-10,-53,58,-45,18,-13,-37,-29,-5,35,3,8,-23,72,15,20,-60,-22,16,-31,-8,-24,-15,31,-44,-50,-79,40,-33,25,27,18,37,-21,15,-28,-28,-5,-40,68,6,-31,40,-25,39,10,11,45,-1,-15,-84,19,30,0,-42,26,24,45,-48,-15,-61,6,4,-34,13,9,-13,33,18,-25,18,13,-44,26,-85,47,-70,28,-7,-41,48,-15,-78,5,-13,-17,3,35,-96,32,-34,0,-3,-127,26,50,13,-10,-24,4,87,20,-45,39,24,-79,48,-67,8,-97,4, /* [19][0][][] */ -36,73,38,35,36,-80,56,-81,20,-57,-40,-62,21,27,-38,17,-44,-42,-21,-26,0,25,8,-7,44,9,13,3,-40,-41,-78,-71,-49,19,32,29,39,-2,-47,-35,30,-31,-37,45,-36,-38,-8,60,47,42,39,1,45,-14,17,71,20,52,-39,-43,28,72,70,-42,5,20,50,0,-13,48,-11,74,34,-14,21,-28,5,74,3,28,25,-47,-79,-29,-21,-49,-89,11,66,6,-54,-24,23,-1,-64,-6,8,-17,-58,-41,48,-16,-11,-10,40,-14,-51,10,-4,53,16,-70,-40,-57,44,-6,-58,-36,1,28,8,-79,-24,-31,-6,-1,59,-35,-5,-29,35,0,-39,-68,1,9,-40,-10,-55,-14,-47,-3,-127,-18, /* [20][0][][] */ 20,9,17,-5,-74,23,48,-24,15,-20,26,-15,-27,2,-65,34,40,-14,41,4,-2,-51,21,18,10,75,39,34,32,16,-66,-42,8,15,-37,-8,-10,-18,-21,17,44,57,-20,19,-24,127,14,-56,73,-72,-5,23,58,-34,-22,-20,28,32,15,56,38,-94,-50,-14,-14,-19,23,49,6,21,2,22,-19,5,58,-49,34,-26,4,-50,56,37,1,-27,-71,-22,-63,-22,3,22,-14,20,0,-6,-22,14,9,52,-62,20,10,56,-32,-31,-22,79,-36,-34,14,15,99,-5,29,-18,47,18,-4,17,43,26,-44,0,-60,-14,-64,-3,-84,48,13,7,-8,23,-32,17,-28,-19,-14,-63,44,63,51,0,67,-17, /* [21][0][][] */ -15,42,-24,1,20,6,-72,15,5,16,23,-54,-50,-78,-3,50,13,-3,-40,16,-48,67,-27,12,-74,-6,72,9,-42,35,-24,-80,19,-26,4,50,52,70,-47,56,4,-66,-57,-57,14,-9,1,31,-13,-43,11,64,18,0,-27,-8,20,-49,69,-33,22,28,35,31,23,-42,38,-93,-26,-55,11,54,10,24,-23,-19,28,-65,-12,71,87,-53,-10,-29,9,-32,-34,-38,52,44,-27,18,-54,33,21,-15,5,3,10,7,14,78,29,-1,24,-30,-61,-5,57,15,56,23,-33,-90,43,-62,-1,15,4,-50,-22,127,3,6,-5,62,15,-12,14,21,-20,55,-30,-17,7,-10,86,22,-15,-27,-30,-9,-53,-1, /* [22][0][][] */ 7,0,7,6,34,-35,4,-47,28,-18,82,-74,3,-4,12,-36,-23,20,62,36,4,-54,22,-15,36,9,-23,78,-31,22,15,44,57,-30,-35,-27,-85,19,64,29,43,9,6,18,20,-59,55,-39,-48,-44,60,-3,-21,-13,-38,1,42,64,100,-13,-82,-33,44,-26,27,42,45,15,22,21,7,-26,32,-21,96,-13,-17,42,13,5,-71,-46,-73,-35,-47,52,61,-20,-12,-11,31,-17,1,-72,17,-127,-67,-35,65,-67,9,5,-9,-10,-9,-16,-19,58,-47,-45,-40,14,49,78,-53,-64,-9,70,23,-38,35,61,8,-7,-13,6,32,41,-38,-34,-94,4,-18,-94,11,-7,8,13,22,19,-34,-1,41,-1, /* [23][0][][] */ 3,-25,6,53,-51,2,-11,69,6,-34,-37,-35,-4,27,33,-7,-49,46,84,-50,17,-7,14,-44,-49,-23,-36,127,10,-71,-8,43,95,-4,-16,20,-7,20,29,10,94,13,24,-4,55,22,-40,-58,68,-23,73,25,-22,-30,-59,97,-29,79,-15,-13,-44,-42,30,-50,-26,87,73,5,53,16,55,-8,-11,-1,-6,-29,-42,-19,-52,-42,2,-33,4,-15,35,-41,-62,-76,-11,-12,-25,-74,6,27,-40,91,-59,-15,59,70,-68,-18,-49,-16,20,67,47,26,-15,-63,-14,-19,42,7,-15,18,-65,53,-52,-10,41,-55,16,4,-60,32,-13,48,6,107,-115,10,25,-5,-56,-13,-6,-45,1,-29,-81,-47,-37,-41, }; const TfArray<24, float> quant62_scale = { 24, { 0.0018109338125213981, 0.001496798126026988, 0.0021057864651083946, 0.0021449632477015257, 0.0023208688944578171, 0.0020029274746775627, 0.0017299153842031956, 0.0018942911410704255, 0.0018720686202868819, 0.0019471739651635289, 0.0018794612260535359, 0.0028019773308187723, 0.0020320059265941381, 0.0024921598378568888, 0.0021320555824786425, 0.0022285107988864183, 0.0017791371792554855, 0.0015336791984736919, 0.0023276647552847862, 0.0020921758841723204, 0.002240627771243453, 0.0025109013076871634, 0.0022920225746929646, 0.0014115663943812251, } }; const TfLiteAffineQuantization quant62 = { (TfLiteFloatArray*)&quant62_scale, (TfLiteIntArray*)&g0::quant49_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data63[144] = { -2803, 2546, -3470, -3010, 2197, -2283, -3124, -1534, 8196, 20, -216, -1988, 2875, -3924, -3019, 1395, -1064, -2132, -967, -2011, -284, -1722, 1788, 323, -4811, -1347, -3206, -1747, 441, 7473, -908, 9384, -2650, -882, 385, -2638, 2456, -4905, 286, 4564, 1184, -2205, -268, -1968, 966, -2597, -1252, -1773, -1554, 4352, -3640, 181, -4422, -1294, -4511, 134, -2802, 1128, 2894, -608, 866, 2128, -1782, -1864, 2499, -3958, -1118, -1842, -1004, 2419, -1596, -3948, -6723, -5517, -1430, -7807, -1660, 4221, 323, 1679, -2983, 3009, -3101, -1152, -3642, 4407, -74, -4682, 954, -1286, 357, -2814, -4114, -1946, 6561, -1030, 420, -330, -300, -1202, -1496, -1329, -3482, -1190, -3399, -657, -3743, 247, -5195, -666, -1073, -2301, -359, 1394, -4535, -1699, -2478, -92, 1729, 1519, -1606, -1116, -3200, -1818, 2907, 2894, -1486, -3073, -3112, -122, -1614, -1372, 707, -1414, -978, 7849, 1345, -2320, -1968, -3017, -1238, 913, -5052, 471, }; const TfArray<144, float> quant63_scale = { 144, { 0.00014566272147931159, 0.00018251556321047246, 0.00026977894594892859, 0.00018811895279213786, 0.00016440308536402881, 0.00016698251420166343, 0.00023197013069875538, 0.00034479954047128558, 0.0002093985240207985, 0.00032064531114883721, 0.0002253109123557806, 0.0002023020206252113, 0.00014946598093956709, 0.00018453126540407538, 0.00016546629194635898, 0.00015385747246909887, 0.0003368043398950249, 0.00021729878790210932, 0.00011419121437938884, 0.00015848617476876825, 0.00023804474039934576, 0.00016165536362677813, 0.00029910088051110506, 0.00028242825646884739, 0.00026543057174421847, 0.00026514541241340339, 0.00018229594570584595, 0.00014347481192089617, 0.00019971185247413814, 0.00018577146693132818, 0.0002149532811017707, 0.00014892737090121955, 0.00020985535229556262, 0.00024004362057894468, 0.00015634426381438971, 0.00018432340584695339, 0.00016649322060402483, 0.00017478525114711374, 0.00026935024652630091, 0.00015152043488342315, 0.00023995117226149887, 0.00018126069335266948, 0.00035549022140912712, 0.00015594507567584515, 0.00020124546426814049, 0.00018975272541865706, 0.00023194850655272603, 0.00021189681137911975, 0.00019747976330108941, 0.00016064611554611474, 0.00020285180653445423, 0.00018136849394068122, 0.0001848881074693054, 0.00022612957400269806, 0.00016132557357195765, 0.0002366261905990541, 0.00021396084048319608, 0.000160709343617782, 0.00024956141714937985, 0.00022304803133010864, 0.00022019371681381017, 0.000160333322128281, 0.00016463139036204666, 0.00015747823636047542, 0.00018922564049717039, 0.00024439816479571164, 0.00015845513553358614, 0.00026073807384818792, 0.00023506217985413969, 0.00025168171850964427, 0.00019870510732289404, 0.00011567762703634799, 0.00013106633559800684, 0.00022730315686203539, 0.00021373982599470764, 0.00011162689042976126, 0.00014933370403014123, 0.00012086548667866737, 0.00037967655225656927, 0.00017254451813641936, 0.00026172993239015341, 0.0001515625772299245, 0.00022650716709904373, 0.0001928651035996154, 0.00020486777066253126, 0.00022947666002437472, 0.00023784076620358974, 0.0001950294099515304, 0.00017976360686589032, 0.00025957019533962011, 0.00016986072296276689, 0.00018407714378554374, 0.00014508997264783829, 0.00034280965337529778, 0.00021225684031378478, 0.00020996663079131395, 0.00020219699945300817, 0.00019161414820700884, 0.0002093243965646252, 0.00022639827511738986, 0.00025211402680724859, 0.00016665027942508459, 0.00016070865967776626, 0.00024235257296822965, 0.0002291746495757252, 0.00016035824955906719, 0.00018189044203609228, 0.00015586658264510334, 0.00020366981334518641, 0.00019680894911289215, 0.00026558135868981481, 0.00015330743917729706, 0.0001924559473991394, 0.00036372427712194622, 0.00021827808814123273, 0.00021158266463316977, 0.00030620014877058566, 0.00015107663057278842, 0.00015032487863209099, 0.00024929165374487638, 0.00017030135495588183, 0.00031372584635391831, 0.00014269312669057399, 0.00031511412817053497, 0.00020415658946149051, 0.00022645665740128607, 0.00026596651878207922, 0.00023142233840189874, 0.00019046406669076532, 0.00023445313854608685, 0.00031613139435648918, 0.00019785315089393407, 0.00026574658113531768, 0.0001900011848192662, 0.00022557035845238715, 0.00015876081306487322, 0.00018829171312972903, 0.0002436315844533965, 0.00040820904541760683, 0.00026723917108029127, 0.00033250448177568614, 0.00017042318359017372, 0.00017825994291342795, 0.00022855502902530134, } }; const TfLiteAffineQuantization quant63 = { (TfLiteFloatArray*)&quant63_scale, (TfLiteIntArray*)&g0::quant45_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data64[1*3*3*144] = { /* [0][0][][] */ 12,5,30,14,13,-14,85,44,-78,-64,33,88,26,92,123,-35,102,87,100,-84,-81,77,30,-17,104,6,-44,-30,121,-51,8,-1,-61,-36,-33,-28,-14,98,0,-127,62,-62,-13,-46,88,89,22,-5,-26,-47,65,24,20,5,31,13,-16,11,35,-20,58,34,-16,34,-31,32,-53,-29,-50,-60,-19,94,112,40,96,17,49,-127,-51,-53,17,-18,27,53,2,-94,-93,69,-62,-49,52,127,38,8,-127,-5,-10,74,28,-22,-6,-28,24,-127,-44,-66,2,-60,127,-44,-6,11,-65,31,59,-30,3,-86,106,27,-127,8,-37,-13,-16,2,0,0,33,-4,-22,11,-91,126,7,-29,4,-35,-14,127,127,-1,41,54, 99,-127,-7,37,127,35,85,18,-127,55,127,77,26,16,-89,-70,-15,-14,-9,-127,-11,-35,-19,-21,31,-13,15,-13,12,-37,50,-2,-76,28,76,127,-50,-26,-37,-109,127,-29,-56,5,-114,-3,-15,-36,-32,44,127,-33,2,3,56,-18,-24,-13,-47,5,-5,119,-56,49,-25,8,-27,-5,13,-43,-30,-58,77,19,38,126,125,-64,2,-47,-9,59,-12,76,-20,-80,127,127,113,55,83,41,119,127,-119,6,-28,127,45,51,22,-30,78,-58,19,-36,-9,45,44,47,-127,61,-7,11,26,4,-1,127,127,-30,-77,-6,63,59,127,-17,-15,13,35,-102,56,8,-16,-23,127,-91,51,127,2,-74,66,127,25,127, -37,-47,-4,-6,2,13,-53,-3,-22,0,8,96,127,-4,9,12,28,83,83,10,-14,-44,-71,-53,-37,-16,36,-49,112,-48,21,10,-3,16,34,11,-77,54,-23,-76,50,-48,-58,1,46,66,-4,127,41,-48,2,127,-31,-12,-1,-46,-69,28,2,43,-22,5,-31,-22,-35,-3,31,-18,-80,60,-5,-47,29,14,-16,-7,20,3,-34,18,22,8,-124,6,-18,7,4,-55,-19,18,23,2,55,9,-98,-14,127,56,-48,15,5,-23,48,-16,11,-23,43,14,29,-32,-21,127,-25,11,-14,29,3,21,89,84,22,-5,-39,-22,-18,7,16,0,6,3,-73,12,-4,86,1,48,-62,-45,0,-27,58,-24,34,-70, /* [0][1][][] */ 127,-8,127,-45,-13,72,11,11,-44,127,-62,-54,-81,122,24,-127,-13,-38,-30,112,-7,98,-127,17,77,16,-43,-48,66,-17,127,-89,71,127,-49,50,-116,26,4,-37,-49,-22,127,118,16,127,127,-95,34,-64,-44,107,78,127,127,-67,127,-110,87,-61,127,-95,5,109,-49,127,80,25,101,-23,-56,84,109,53,64,23,-92,-8,59,29,127,-124,-30,127,127,33,-12,26,-48,-72,-7,38,43,45,33,127,116,-43,-36,-12,-127,-3,-32,52,83,-7,-11,-99,26,-90,10,54,-9,-7,127,-127,4,-70,-40,127,118,127,-76,127,-27,-21,-34,69,47,-70,127,127,-9,-64,4,-118,73,29,127,74,20,-23,127,-37, 105,-80,3,127,-96,127,67,-17,-50,-108,-72,-53,-68,127,61,11,127,127,85,30,127,-79,-56,-58,127,57,50,-127,-63,-101,-66,-127,127,-52,-10,47,3,23,-102,-48,-95,127,-71,-70,-42,11,25,-15,21,-50,45,-61,44,-62,108,-17,84,-82,-127,-31,-73,-127,-45,127,-41,94,-39,42,121,127,-23,-53,127,52,-127,127,118,-95,-52,-102,23,75,93,-112,20,-127,-53,7,-127,127,-94,-2,127,-1,-25,15,10,-36,87,127,76,2,127,89,16,-82,53,127,18,127,62,106,35,-62,6,-41,127,92,-89,-56,-16,-19,127,17,-114,-127,127,127,127,46,9,-41,-46,124,-55,-124,34,-59,15,75,47,-88,50,-52, 8,-23,80,52,-18,-112,-48,-11,-88,14,-43,-127,45,-16,76,17,-13,-66,127,-53,-19,127,9,127,4,43,118,-14,127,0,-35,-115,10,-51,80,67,-122,85,127,38,-10,-18,111,-70,127,45,-9,23,15,59,-40,-67,32,7,26,1,121,127,-91,13,-8,48,-36,-114,-53,-71,127,-1,-127,-65,32,9,-59,15,51,-88,33,-31,38,-37,-21,78,100,-104,-55,-19,-11,69,-75,-18,-49,-3,-53,22,-35,71,24,103,-95,-49,53,0,36,21,21,51,5,10,26,25,-14,94,-19,-127,28,124,-12,-13,-61,-77,60,7,15,-13,16,-72,20,-5,-27,127,18,-15,127,-58,8,127,-127,76,-10,7,-17,101,-48,-32, /* [0][2][][] */ 47,-20,10,-7,-68,-12,127,127,45,-14,21,-91,-33,-13,-72,7,-31,5,-126,80,-26,-45,107,27,23,127,127,55,-58,-22,31,-61,23,13,-127,-42,127,-60,27,-41,14,124,-36,127,-93,12,53,21,127,-127,70,-11,28,2,-69,-45,-44,-113,58,15,-19,-23,75,47,-127,44,-57,127,-46,-69,21,103,-12,60,9,80,41,10,-31,76,50,-127,-46,-29,47,17,-24,-30,-90,-13,127,-57,34,-50,-76,28,-78,-37,94,11,-78,127,-26,56,127,127,41,1,55,30,35,-66,127,-45,7,17,6,-27,-46,-51,66,9,-114,10,-40,31,-4,-37,-15,97,8,49,-38,-127,-50,-117,41,59,23,-30,-36,-33,29,-38, -69,101,-15,-54,-45,53,47,39,-29,2,-18,-39,-78,-51,127,110,3,-9,39,123,7,6,-5,-36,6,-13,-9,119,-9,-127,39,-123,62,-6,37,-46,52,127,-70,-75,-7,10,5,33,16,-61,9,-43,-10,105,15,-15,127,9,-14,127,55,-14,32,127,-83,-77,127,-21,113,-9,40,-25,11,-39,127,127,-38,127,-3,92,-127,123,127,-114,-9,-8,127,-15,-19,34,-32,3,78,-123,-86,61,-43,-19,-25,114,-26,23,127,3,30,89,-11,32,34,119,127,22,58,14,81,-121,-11,-10,22,56,-45,-36,-19,15,115,41,100,-20,-58,61,24,-15,-21,19,-31,72,-57,-25,-33,-110,15,76,12,-10,-70,-104,89,-53, -19,-2,31,4,-14,18,-9,7,-3,-7,3,-35,-29,-16,-44,9,-14,-13,101,22,-2,57,50,40,-16,32,21,74,-82,63,-52,0,-11,59,14,22,58,74,85,-48,-50,38,-82,39,-83,-78,-8,0,-17,-67,-5,80,28,-48,64,-12,-25,1,14,-45,-5,-6,48,-17,29,-29,19,36,18,-26,41,-6,16,34,-1,-10,46,-30,-33,127,-1,-82,8,10,12,18,-56,19,33,-23,4,2,-11,25,-60,-15,-51,61,-56,-37,31,18,12,5,8,11,65,-14,14,12,23,-98,59,-72,-6,-35,38,0,-26,-33,41,9,-13,-16,-7,-77,-10,-3,-16,70,-25,-2,71,-16,-6,-20,-59,-24,-1,6,-22,-25,-11,0, }; const TfArray<144, float> quant64_scale = { 144, { 0.0061906655319035053, 0.0077569112181663513, 0.011465605348348618, 0.0079950550571084023, 0.0069871312007308006, 0.0070967567153275013, 0.009858730249106884, 0.014653979800641537, 0.0088994372636079788, 0.013627425767481327, 0.0095757134258747101, 0.008597835898399353, 0.0063523040153086185, 0.0078425789251923561, 0.0070323171094059944, 0.0065389424562454224, 0.014314183965325356, 0.0092351986095309258, 0.0048531265929341316, 0.0067356624640524387, 0.010116901248693466, 0.0068703526630997658, 0.012711787596344948, 0.012003201059997082, 0.01128079928457737, 0.011268679983913898, 0.007747577503323555, 0.0060976794920861721, 0.0084877535700798035, 0.0078952871263027191, 0.009135514497756958, 0.0063294130377471447, 0.0089188525453209877, 0.010201853699982166, 0.0066446308046579361, 0.0078337443992495537, 0.0070759616792201996, 0.007428373210132122, 0.01144738495349884, 0.0064396183006465435, 0.010197924450039864, 0.0077035790309309959, 0.015108333900570869, 0.0066276653669774532, 0.0085529321804642677, 0.0080644907429814339, 0.0098578110337257385, 0.0090056145563721657, 0.0083928899839520454, 0.0068274596706032753, 0.0086212018504738808, 0.0077081611379981041, 0.0078577445819973946, 0.0096105067059397697, 0.0068563367240130901, 0.010056613013148308, 0.0090933358296751976, 0.0068301470018923283, 0.010606360621750355, 0.0094795413315296173, 0.0093582328408956528, 0.006814165972173214, 0.006996834184974432, 0.0066928248852491379, 0.0080420896410942078, 0.010386922396719456, 0.0067343432456254959, 0.01108136773109436, 0.0099901426583528519, 0.010696472600102425, 0.0084449667483568192, 0.0049162991344928741, 0.005570319015532732, 0.0096603836864233017, 0.0090839425101876259, 0.004744142759591341, 0.0063466820865869522, 0.0051367832347750664, 0.016136253252625465, 0.0073331417515873909, 0.011123522184789181, 0.0064414092339575291, 0.0096265543252229691, 0.0081967664882540703, 0.0087068798020482063, 0.0097527578473091125, 0.010108232498168945, 0.0082887494936585426, 0.0076399529352784157, 0.011031732894480228, 0.0072190803475677967, 0.0078232781961560249, 0.0061663240194320679, 0.014569410122931004, 0.0090209152549505234, 0.0089235818013548851, 0.008593372069299221, 0.0081436010077595711, 0.0088962865993380547, 0.0096219265833497047, 0.010714845731854439, 0.007082636933773756, 0.0068301176652312279, 0.010299984365701675, 0.009739922359585762, 0.0068152253516018391, 0.0077303438447415829, 0.0066243298351764679, 0.008655967190861702, 0.0083643803372979164, 0.011287207715213299, 0.0065155657939612865, 0.0081793777644634247, 0.015458281151950359, 0.0092768184840679169, 0.0089922631159424782, 0.013013506308197975, 0.0064207566902041435, 0.0063888072036206722, 0.010594895109534264, 0.0072378073818981647, 0.013333347626030445, 0.0060644578188657761, 0.01339234970510006, 0.0086766546592116356, 0.0096244076266884804, 0.01130357664078474, 0.0098354490473866463, 0.0080947224050760269, 0.0099642584100365639, 0.013435584492981434, 0.0084087587893009186, 0.0112942298874259, 0.0080750500783324242, 0.0095867402851581573, 0.0067473347298800945, 0.0080023976042866707, 0.010354341939091682, 0.017348883673548698, 0.011357665061950684, 0.014131439849734306, 0.0072429850697517395, 0.0075760474428534508, 0.0097135882824659348, } }; const TfLiteAffineQuantization quant64 = { (TfLiteFloatArray*)&quant64_scale, (TfLiteIntArray*)&g0::quant45_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data65[144] = { 1838, 1831, 613, 595, 920, 606, -1460, 1757, 2071, 1872, 331, -375, 344, -800, 1518, 1628, -538, 1627, 1287, 35, 1364, 1556, -345, 2498, -70, -1074, 2112, -174, -1695, 4580, 1789, 1357, -702, 1284, 248, 2410, 2555, 537, 2995, 449, 1729, 1329, -1714, 2810, 867, 2406, 160, 99, -13, 832, 2280, 1468, -16, 952, 498, -935, 1368, -42, 3468, 1899, -819, 1771, 2983, 2979, 318, 326, 414, 1096, 618, 2299, -109, 728, 70, 1905, 1801, 2770, -138, 145, -568, 927, 2931, 1636, -488, 4111, -39, 3006, -290, 2049, -515, 895, 989, 544, -28, -681, 1728, -639, 3054, 397, -2143, 625, 7153, 1061, 1546, -93, 759, 1122, -503, 37, 758, -510, 4814, 112, 449, -659, -65, 2640, 1018, -577, 4220, 84, 2877, -140, 34, -520, 3086, 4592, 635, 696, 701, -1540, -448, 592, -1072, 5718, 1136, 1508, 3728, 1758, -608, 3016, -2573, 1649, 2306, 490, }; const TfArray<144, float> quant65_scale = { 144, { 0.00018982206529472023, 0.000152155029354617, 0.00013575510820373893, 0.00026970336330123246, 0.00026464523398317397, 0.00018037247355096042, 0.00014244344492908567, 0.00012318043445702642, 0.00019031178089790046, 0.00014222141180653125, 0.00013479727203957736, 0.0001510789297753945, 0.00017856710474006832, 0.0001592998014530167, 0.00017821934306994081, 0.00022258044918999076, 0.00019652297487482429, 0.00013362236495595425, 0.00016867041995283216, 0.00012915642582811415, 0.00014141060819383711, 0.00015204946976155043, 0.00015738730144221336, 0.00015484527102671564, 0.00016426747606601566, 0.00011171317601110786, 0.00017139771080110222, 0.00017172971274703741, 0.00011869109584949911, 9.3662332801613957e-05, 0.00018627941608428955, 0.00018798076780512929, 0.00016612987383268774, 0.00015616657037753612, 0.00022629932209383696, 0.00017044463311322033, 0.00016246949962805957, 0.00027993906405754387, 0.00011067935702158138, 0.00015668054402340204, 0.0001523116952739656, 0.00013567459245678037, 0.00016619170492049307, 0.00016918682376854122, 0.00013290971401147544, 0.00014150183415040374, 0.00019069842528551817, 0.00012182402861071751, 0.00021757579816039652, 0.00017622862651478499, 0.00016526209947187454, 0.00015639512275811285, 0.00022457029263023287, 0.00019069563131779432, 0.00023387587862089276, 0.00019706689636223018, 0.00013450627739075571, 0.00032630219357088208, 0.00010243654105579481, 0.00016132465680129826, 0.00016463735664729029, 0.00015348540910053998, 0.00014443069812841713, 0.00013174611376598477, 0.00020148936891928315, 0.00018882210133597255, 0.0001892431901069358, 0.00019738437549676746, 0.00014143166481517255, 0.00012806760787498206, 0.00022986609837971628, 0.00016483134822919965, 0.0001996393984882161, 0.00015168274694588035, 0.00014172223745845258, 0.00013280619168654084, 0.00015849154442548752, 0.00021901838772464544, 0.00011491619807202369, 0.00014074506179895252, 0.00012716330820694566, 0.00017432337335776538, 0.00013318103447090834, 0.00012173961295047775, 0.00031982615473680198, 0.00012294699263293296, 0.00020963986753486097, 0.0001339576265309006, 0.00011510476906551048, 0.00014389319403562695, 0.00017227006901521236, 0.00015111711400095373, 0.0002131218061549589, 0.00020384223898872733, 0.00010965855472022668, 0.00015409395564347506, 0.00013225128350313753, 0.00016628035518806428, 0.00013331587251741439, 0.00026255755801685154, 9.135826985584572e-05, 0.00019989602151326835, 0.00022485131921712309, 0.00016117397171910852, 0.0002295403101015836, 0.00026843836531043053, 0.00019598483049776405, 0.00014128559269011021, 0.00022677655215375125, 0.00015257403720170259, 0.00011118548718513921, 0.00018067078781314194, 0.00016647081065457314, 0.00020072674669791013, 0.00021229272533673793, 0.00012650313146878034, 0.00012939539737999439, 0.00018781734979711473, 0.00010566038690740243, 0.00014277291484177113, 0.00014746998203918338, 0.00016938368207775056, 0.00025352920056320727, 0.00019682898710016161, 0.0001507721608504653, 8.9015207777265459e-05, 0.00020132403005845845, 0.00018487968191038817, 0.00025835077394731343, 0.00011971974890911952, 0.00017996694077737629, 0.0001909977727336809, 0.00020542627316899598, 8.2146136264782399e-05, 0.00022088378318585455, 0.00015514457481913269, 0.00010305500472895801, 0.00010913317964877933, 0.00015051013906486332, 0.00012353308557067066, 0.0001321032177656889, 0.00013133902393747121, 0.00015511515084654093, 0.00016771408263593912, } }; const TfLiteAffineQuantization quant65 = { (TfLiteFloatArray*)&quant65_scale, (TfLiteIntArray*)&g0::quant45_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data66[144*1*1*24] = { /* [0][0][][] */ -16,-66,-57,15,-18,-22,-20,11,19,46,-60,-49,55,26,127,-73,-14,15,34,88,-7,69,-24,43, /* [1][0][][] */ -17,127,73,-61,-89,-51,63,-52,61,6,0,-55,8,26,-45,37,-39,19,16,76,-59,57,49,36, /* [2][0][][] */ 63,-57,45,110,80,41,55,-13,5,-127,2,-16,-31,-47,-126,-22,65,35,-24,101,-20,21,41,112, /* [3][0][][] */ -13,5,-26,-27,44,62,-56,-59,28,-11,10,-71,-81,-14,127,87,-83,-7,14,120,-87,-3,-3,-12, /* [4][0][][] */ 16,-47,-21,-23,25,-15,75,6,-67,-20,-8,-93,-74,11,-12,-2,-21,-85,11,127,-46,89,-34,-42, /* [5][0][][] */ 48,-47,-12,-1,6,43,32,-95,-101,24,-61,78,-42,-38,-22,-94,-8,-97,-40,39,10,23,21,127, /* [6][0][][] */ 22,48,127,45,-50,42,22,104,16,-38,-40,12,27,-8,-7,-36,-79,3,-58,69,-34,-80,37,-47, /* [7][0][][] */ 20,22,55,-118,56,-12,22,45,6,31,10,-51,18,-8,30,76,16,92,98,-29,127,10,-16,-112, /* [8][0][][] */ 3,39,-40,24,-10,36,-73,61,58,68,25,127,26,37,64,59,-22,10,-14,-54,-89,22,-18,42, /* [9][0][][] */ 14,67,127,-72,111,11,-54,-72,108,-81,73,-63,-18,52,95,41,-39,-64,-2,-44,-85,-23,-54,-90, /* [10][0][][] */ -19,122,-23,95,-21,16,-15,-27,-2,-78,-127,-52,74,-123,-92,-8,64,9,83,82,-82,-84,46,-55, /* [11][0][][] */ -7,29,-25,-13,79,-70,92,30,112,-127,-45,2,25,13,0,-76,23,14,-125,13,-102,70,40,-90, /* [12][0][][] */ 29,89,-49,-14,-95,-20,-57,-22,54,37,-105,-14,85,34,-28,21,-127,20,-29,8,52,22,-69,-43, /* [13][0][][] */ 10,120,17,59,-60,56,127,-46,-38,-15,-92,45,-25,-106,-33,-4,74,5,20,13,-29,52,-75,41, /* [14][0][][] */ -53,-11,-44,27,50,-30,37,-57,-5,2,-16,0,15,-127,-19,-50,29,-53,-14,25,-37,-92,-55,-45, /* [15][0][][] */ -5,43,25,32,14,36,62,17,21,26,102,-127,22,1,9,-29,42,-84,14,-1,-17,71,11,22, /* [16][0][][] */ -33,-28,9,-12,40,38,73,31,1,-35,127,-7,-31,-21,-35,41,40,-57,1,35,45,-12,-7,-19, /* [17][0][][] */ 57,-14,1,-41,123,45,14,-9,55,-96,17,-108,127,-96,32,-43,17,-16,-102,-44,108,104,88,-27, /* [18][0][][] */ -27,-1,38,7,7,66,89,55,-22,18,-127,-50,63,-20,18,-8,5,5,22,87,75,-26,-1,-77, /* [19][0][][] */ -108,-61,13,0,-69,-87,10,75,-75,-55,36,-91,20,80,-127,98,-105,94,111,28,-41,67,96,29, /* [20][0][][] */ 70,-92,-60,-26,-93,-56,119,-83,61,-54,-127,-44,68,96,-47,-95,-5,-21,72,25,12,15,45,18, /* [21][0][][] */ -77,-4,1,61,-52,1,45,84,54,-66,-118,-127,-10,-21,-98,14,41,51,38,82,-42,-36,32,-101, /* [22][0][][] */ -49,14,-42,66,-27,16,107,76,45,9,13,36,63,-52,-82,25,35,-2,29,104,-127,91,-11,32, /* [23][0][][] */ 34,-127,-43,-66,40,-1,-96,-37,46,-25,54,-20,14,-81,47,-41,18,124,11,-63,-49,-69,-30,-76, /* [24][0][][] */ 85,27,15,-46,93,51,7,-38,16,-64,118,127,-31,-66,-81,-5,77,21,-32,38,-13,7,-8,-14, /* [25][0][][] */ -13,127,44,-32,-114,27,42,72,73,-100,-29,26,17,-113,37,-65,-9,37,-49,77,-38,-6,95,18, /* [26][0][][] */ 74,-2,127,-11,93,-24,-32,96,74,73,-34,-17,-73,-34,12,17,26,-85,-14,13,8,31,-41,-23, /* [27][0][][] */ -33,60,-19,46,-86,-84,-50,1,25,-17,-109,23,63,86,-120,4,-105,-49,-23,60,-20,-59,127,-21, /* [28][0][][] */ 116,-53,36,111,-7,-61,55,-79,-23,50,-101,127,-71,78,-65,29,-30,-74,17,37,15,114,-22,-79, /* [29][0][][] */ -49,-67,-56,-72,-13,127,-70,35,127,52,-71,-60,52,-58,-62,-81,-37,-57,-59,12,107,5,-45,-112, /* [30][0][][] */ 26,-50,46,-127,8,-6,-70,18,23,-34,-24,-65,-43,-99,81,-50,29,49,-12,7,17,-9,-35,-28, /* [31][0][][] */ -60,37,-90,-31,89,26,-12,-75,127,-39,24,-106,67,-4,37,-80,77,-17,23,-5,-78,-28,-77,-15, /* [32][0][][] */ -126,66,29,36,3,113,10,-58,15,-55,41,-127,54,-35,40,-35,63,-16,-82,-26,30,-89,-125,24, /* [33][0][][] */ -3,4,-60,58,20,16,9,-75,-92,109,-31,1,-18,-1,-81,-92,32,-61,18,-81,67,127,67,20, /* [34][0][][] */ -51,91,-52,13,-38,-5,-2,33,-33,-11,-64,44,62,-23,-11,-87,-10,-20,-98,-127,36,-26,1,-49, /* [35][0][][] */ -42,20,-41,-1,-19,1,-49,43,30,-70,8,-84,3,10,-78,-47,-26,-34,127,-61,-45,88,6,37, /* [36][0][][] */ 10,20,25,-24,-127,-42,-36,47,-25,-57,-69,-25,63,-53,-4,-13,-59,-45,-53,76,2,102,-51,7, /* [37][0][][] */ -42,12,-40,44,16,-35,-2,31,68,52,-39,-18,52,127,7,19,-12,-9,19,10,-48,-47,4,-3, /* [38][0][][] */ -7,-18,-45,12,117,-45,-103,105,70,19,-45,127,0,34,-1,-44,-12,25,29,-98,9,-107,-23,68, /* [39][0][][] */ 47,-13,11,7,-80,49,-58,-71,11,-49,99,-24,3,-23,14,88,-52,31,81,-56,55,127,20,18, /* [40][0][][] */ 21,-58,-32,127,-7,-37,2,5,-15,1,-26,62,-9,31,58,15,-64,41,72,-20,30,-77,7,58, /* [41][0][][] */ -40,-36,-28,43,-64,-48,-36,73,57,117,-45,-33,-26,87,-17,-5,-47,38,25,-46,15,-52,6,-127, /* [42][0][][] */ 65,-65,8,-22,101,-32,-24,60,28,16,77,68,-42,-127,41,69,-14,-74,-68,-3,21,-29,-15,-7, /* [43][0][][] */ 63,69,98,-10,-19,86,-65,-114,-52,-11,14,-36,59,24,75,7,-8,-25,3,56,55,-127,97,71, /* [44][0][][] */ -124,24,-50,-54,19,85,4,-127,-20,33,-50,-9,35,-17,-37,-67,45,43,0,-28,-3,27,98,-32, /* [45][0][][] */ -76,-24,1,48,3,9,64,-74,127,-5,-71,-10,-76,18,-37,-20,-40,6,-83,-56,-32,-29,-79,96, /* [46][0][][] */ 63,82,-8,-38,127,-81,83,12,-117,-46,-6,54,88,38,12,-26,-87,20,-18,-66,-19,31,-7,-6, /* [47][0][][] */ 4,70,127,-97,-106,-89,-7,75,43,-28,71,10,-39,67,-67,88,-75,-100,3,62,94,9,34,-2, /* [48][0][][] */ -86,122,-52,28,-41,-30,8,49,5,77,-83,-57,-2,-36,-88,-127,36,-14,19,-70,-25,49,-55,119, /* [49][0][][] */ -111,-4,54,-38,-51,-45,24,-18,36,-65,-114,74,-84,-66,-1,20,46,-63,-19,127,-55,7,-89,10, /* [50][0][][] */ -94,43,-55,18,127,47,-10,-81,24,-49,79,-46,27,-15,-47,-47,30,81,33,-14,70,19,3,-76, /* [51][0][][] */ -127,-40,60,-59,-12,37,16,-14,18,-46,22,-40,104,44,-38,-10,41,9,-29,61,-28,6,42,-47, /* [52][0][][] */ -57,2,32,-23,49,100,-38,15,127,18,-14,-88,45,40,-16,48,33,19,-4,33,-42,-48,-13,-56, /* [53][0][][] */ 53,71,31,-6,-31,-18,46,21,-65,44,-13,-46,-6,-9,-56,-118,34,3,-1,15,-127,-68,41,17, /* [54][0][][] */ 59,-6,4,106,53,-29,-49,48,46,92,-8,18,84,-63,-90,-127,-14,18,95,-51,-27,-43,61,-27, /* [55][0][][] */ -96,127,-86,20,-16,-63,11,-40,-9,-12,-75,-17,40,-38,-73,-75,-50,-55,45,-33,26,-49,1,24, /* [56][0][][] */ 48,19,2,3,-9,-65,-29,61,-89,3,65,93,-65,22,32,17,84,41,-127,-73,59,-46,49,54, /* [57][0][][] */ -36,40,-7,-40,-2,-21,62,-78,-127,-33,-27,6,-53,-9,-54,-9,29,39,-26,-10,-27,27,44,-18, /* [58][0][][] */ 112,-21,23,30,45,-13,-45,-109,14,72,-28,19,-73,50,23,26,-56,-6,127,-22,49,24,65,-27, /* [59][0][][] */ -127,27,70,71,38,-3,58,45,12,-5,-51,-20,114,79,-20,-76,15,-36,27,-21,-53,122,66,6, /* [60][0][][] */ 101,-47,-52,37,62,93,16,-80,37,86,-69,-52,-50,-81,127,14,-18,3,2,-21,26,-10,-69,7, /* [61][0][][] */ -86,-5,24,-54,67,-55,-6,-48,-57,-127,-29,-47,-32,-58,107,-3,68,-65,-21,44,-36,-5,-118,3, /* [62][0][][] */ -74,23,-3,76,-27,63,-4,-106,-57,-39,-46,-20,-61,-35,-125,-60,-59,-34,82,-43,-127,114,46,-87, /* [63][0][][] */ 52,-127,-87,-76,-36,95,10,-31,-24,11,45,-102,0,63,49,-2,32,-66,61,49,-14,24,-74,-73, /* [64][0][][] */ 65,11,36,22,-56,-64,57,-18,11,-50,30,-63,53,-127,9,-82,-36,-26,-15,-14,2,-85,-79,-26, /* [65][0][][] */ 14,-34,32,11,-1,-18,-6,60,17,-61,24,-89,-116,-3,-102,109,97,-7,-127,18,7,-93,-45,-61, /* [66][0][][] */ -31,-127,-11,-65,-40,80,-115,-72,30,-94,-3,-80,-14,98,-30,-74,-63,-21,-31,-126,-49,54,104,-26, /* [67][0][][] */ -9,10,-32,40,-41,4,-46,50,-17,-18,-45,70,75,52,-1,20,-37,-79,127,-58,-18,-9,38,21, /* [68][0][][] */ -16,26,30,-64,87,-52,-38,29,66,-61,-19,127,-7,9,63,1,-5,37,-27,-6,-96,-23,-44,-1, /* [69][0][][] */ 57,0,-127,-8,9,-27,-15,-112,-65,32,-31,-27,-34,100,41,84,-59,-11,-18,-18,71,45,-31,12, /* [70][0][][] */ 9,-8,-5,53,-72,-43,40,119,-75,-42,36,-2,127,-40,1,-110,-74,31,18,-9,15,46,122,76, /* [71][0][][] */ 31,72,-65,106,-27,81,46,-127,-44,-84,-70,-33,19,-88,-15,-40,34,53,61,6,-12,10,58,-36, /* [72][0][][] */ 48,52,-69,124,52,52,108,-53,29,-87,-60,49,-15,-67,13,15,-76,-87,104,106,-124,34,27,-127, /* [73][0][][] */ 48,-5,127,-13,97,0,11,88,19,35,79,82,76,-30,-38,-102,-92,66,-36,-52,19,-112,5,11, /* [74][0][][] */ 19,40,-55,-116,58,99,35,51,85,-79,33,-25,108,-8,88,-78,-77,-6,-127,-73,30,97,61,-118, /* [75][0][][] */ 64,70,0,-48,44,119,17,78,30,124,-7,-69,96,127,-84,-45,-64,23,-54,27,114,1,-36,-58, /* [76][0][][] */ -11,-70,34,-3,-58,22,-29,-56,-33,67,30,-16,10,27,120,18,110,-5,127,84,65,26,10,-27, /* [77][0][][] */ -60,21,-42,-11,14,127,64,-69,-107,-58,-10,-19,-9,-13,35,-24,-36,35,-7,-43,-14,52,61,-83, /* [78][0][][] */ -52,53,63,13,-15,-10,40,94,27,39,25,45,-80,-68,59,-24,38,127,19,-24,-76,-70,-15,31, /* [79][0][][] */ -31,-30,-26,25,51,15,-25,-127,-50,-16,-81,-70,18,77,29,-6,-73,-64,36,16,67,46,-29,5, /* [80][0][][] */ -47,-54,-6,6,-81,38,31,18,0,-48,-37,19,-45,-104,-109,93,-38,-29,103,-71,-127,-80,85,-43, /* [81][0][][] */ -20,46,-86,-27,-27,-41,39,18,-127,-47,-88,-41,17,-4,-75,-9,-3,40,-33,-19,107,49,-50,-46, /* [82][0][][] */ 106,-85,-43,-31,105,41,27,8,-12,-54,59,10,-106,-127,47,52,-14,-15,51,-64,-31,-46,-27,37, /* [83][0][][] */ 26,18,-9,76,26,-73,-46,37,-114,-103,127,30,-49,3,-89,-18,21,25,-25,49,6,-8,-18,12, /* [84][0][][] */ -8,-25,-38,9,-11,27,27,119,3,-127,-58,-72,-28,-48,-49,1,20,72,-55,-37,57,17,-2,-56, /* [85][0][][] */ 16,69,14,127,70,63,-15,56,-41,-41,92,71,-8,5,-110,-4,-17,-30,-30,-73,33,-58,-21,83, /* [86][0][][] */ 3,53,4,-63,125,25,21,0,45,34,51,57,-33,-53,-17,-19,54,-127,-8,28,12,61,-58,-74, /* [87][0][][] */ 26,72,-29,-76,91,-44,-20,-16,-44,-39,-57,-56,127,-86,69,18,114,27,-5,94,-85,56,-36,80, /* [88][0][][] */ -44,39,65,-2,-32,72,127,-108,-44,54,-61,10,-28,117,-103,65,-125,72,34,-4,80,-84,81,8, /* [89][0][][] */ -7,24,-6,13,33,-38,-10,-66,19,33,7,-10,-32,74,-9,61,-34,-26,127,13,1,115,-23,114, /* [90][0][][] */ -2,14,63,30,-33,-64,38,20,86,13,-72,-127,16,19,-38,64,45,5,78,-2,-13,91,101,43, /* [91][0][][] */ -61,10,-38,-73,31,99,10,-9,8,-10,-36,-127,81,-84,-117,-109,-3,23,-82,64,50,-31,-95,-4, /* [92][0][][] */ 16,24,16,-103,31,68,-49,-104,-13,-127,82,51,34,-23,77,2,-50,-69,20,-1,41,-46,-40,27, /* [93][0][][] */ 62,34,10,-4,60,0,127,-13,5,11,-10,-47,-92,2,63,3,-30,34,-12,3,-76,27,-66,2, /* [94][0][][] */ -88,-32,-101,64,-43,-72,19,-23,-50,-127,123,73,-48,31,20,16,2,-5,40,-109,-104,-67,-11,38, /* [95][0][][] */ 13,-6,18,-30,-46,-66,30,-79,-127,62,15,-64,-56,85,80,-17,13,60,-15,40,2,119,37,-78, /* [96][0][][] */ 48,37,58,-43,-92,89,-91,-43,-54,127,5,6,-73,-77,58,-76,23,-12,99,-16,-37,78,3,-75, /* [97][0][][] */ -24,105,-23,19,-35,-28,-64,91,-40,-46,127,19,16,49,-29,67,35,28,44,34,10,-32,-11,23, /* [98][0][][] */ 55,-94,-36,107,97,55,-65,-44,64,-65,-60,-86,1,47,66,31,-62,82,20,4,-100,39,18,-127, /* [99][0][][] */ -75,53,-30,43,-95,11,-56,-5,69,-47,-40,103,39,40,10,127,-29,-7,-78,20,7,-22,-24,-9, /* [100][0][][] */ 83,-52,-65,-70,117,30,16,48,21,46,56,23,-34,56,-104,127,45,91,-64,2,-23,-43,-4,-84, /* [101][0][][] */ -5,5,70,-22,-84,-4,-80,-65,-18,-2,-35,-78,-67,-127,124,-51,64,19,-68,97,-63,69,12,-12, /* [102][0][][] */ 127,39,9,57,8,-45,19,-74,40,40,-13,-68,-33,-18,-14,-27,-77,-24,-18,25,29,8,81,-2, /* [103][0][][] */ -3,-75,-47,69,-84,-25,4,77,118,-5,-65,-29,-2,118,-92,53,68,51,17,2,-126,-29,-26,127, /* [104][0][][] */ -17,-37,15,67,-7,15,-17,58,102,-27,107,-127,-9,-78,-4,19,40,0,-27,17,3,46,38,22, /* [105][0][][] */ -34,34,8,-2,-127,-12,-35,41,0,-28,-42,54,18,-13,-35,-56,30,-35,1,-5,31,73,42,59, /* [106][0][][] */ -31,86,-15,100,-127,-33,16,36,2,39,-89,-9,-115,74,-62,-81,120,8,2,15,63,81,89,4, /* [107][0][][] */ -82,90,-98,-53,46,46,126,-73,-42,-100,3,34,20,-127,-97,-8,78,20,3,31,-43,-7,77,6, /* [108][0][][] */ -6,27,57,82,-3,-13,78,-58,-21,-89,6,-70,-52,-127,32,-8,-12,0,54,6,-30,27,-13,-24, /* [109][0][][] */ 54,74,-56,60,64,-25,47,-107,-87,-32,-18,-12,-1,-100,16,-66,-74,-127,-69,4,-34,38,-111,-2, /* [110][0][][] */ 59,20,103,-58,-53,39,-70,14,7,19,65,-127,67,-35,-29,13,-38,76,20,-69,87,48,-21,-49, /* [111][0][][] */ 16,-25,23,49,77,-17,0,-7,32,-85,63,-83,-16,-127,77,-46,6,-33,-55,-9,-89,-32,-16,-27, /* [112][0][][] */ -35,14,-11,-67,-32,109,-45,-57,61,14,-111,14,48,-37,127,31,-80,97,-81,70,-42,45,42,-57, /* [113][0][][] */ 19,38,-31,17,1,-19,0,-36,94,-52,-3,-25,1,-127,35,-84,27,23,15,18,-59,8,-25,-19, /* [114][0][][] */ -58,87,-37,-19,-18,-39,9,-45,42,24,14,28,35,-127,-90,23,37,41,-80,29,-79,20,68,37, /* [115][0][][] */ -55,7,6,18,-40,62,56,20,-67,34,-6,-127,15,43,-52,-15,-2,-52,50,23,18,31,2,-50, /* [116][0][][] */ -13,-99,-81,68,63,-17,-33,-51,45,-35,-44,-96,-87,42,-8,32,52,90,96,-109,-21,127,-80,-46, /* [117][0][][] */ 11,-48,31,59,29,-12,115,33,25,46,2,-100,36,-70,-59,2,-30,-127,-75,-8,-93,57,55,-37, /* [118][0][][] */ -22,70,-103,30,51,-75,35,38,-25,-21,-93,-5,114,81,-38,-8,62,-127,103,31,100,92,-6,-39, /* [119][0][][] */ 10,-124,7,127,-20,70,-44,-15,20,-41,-20,65,-41,-3,13,-44,21,-8,-53,-8,-118,30,38,32, /* [120][0][][] */ 28,-5,-13,-11,55,-31,2,18,127,4,49,77,-9,-31,-33,43,26,21,-74,-9,-30,-43,-32,-38, /* [121][0][][] */ -21,1,-81,-67,15,-30,-120,79,1,97,-2,8,-6,127,-29,-21,-28,37,0,-2,20,73,-48,23, /* [122][0][][] */ 0,31,-24,22,-1,-48,31,-32,17,-17,33,-127,-86,18,-59,39,62,49,-28,-49,-24,59,110,-39, /* [123][0][][] */ 55,33,52,-37,70,-34,-25,-54,-70,-21,59,43,-25,-10,36,-62,-52,1,-39,57,6,113,-127,-45, /* [124][0][][] */ 6,4,-78,-16,-98,-59,13,9,20,-29,-100,-127,-4,15,27,-19,-10,25,-18,41,-59,56,-46,-5, /* [125][0][][] */ 67,-19,17,-105,43,84,66,8,18,83,38,-74,41,-127,-72,7,-26,-12,23,112,100,67,-111,-3, /* [126][0][][] */ -20,-41,-3,-15,7,-47,67,-39,-30,-33,57,18,91,-11,-78,-55,25,-19,-15,21,-123,-127,40,31, /* [127][0][][] */ -61,38,-54,-103,8,-89,81,-51,82,-63,-114,0,69,-51,35,74,-61,-44,64,127,-106,-23,-95,-4, /* [128][0][][] */ -105,18,-2,17,42,16,-4,6,28,35,-4,-127,29,-13,18,-59,-48,-49,42,-29,-52,-20,-87,-51, /* [129][0][][] */ -127,1,-13,33,-69,4,67,3,-66,-45,-79,-51,74,-122,5,-104,96,44,11,40,-61,-64,81,-17, /* [130][0][][] */ -127,-11,36,22,35,1,28,30,-32,10,-53,-49,-1,-59,35,-26,10,-19,-77,6,-58,-26,-16,68, /* [131][0][][] */ 54,-35,-56,-69,-27,32,80,34,-44,17,-20,49,19,-127,13,9,-28,-14,-15,48,4,-2,26,70, /* [132][0][][] */ 28,-16,-49,68,-115,50,32,10,-52,-42,-16,37,-102,56,-3,20,-26,-9,86,127,-2,42,-42,-48, /* [133][0][][] */ 97,53,3,-78,-59,-48,-20,-85,-99,98,-11,-41,102,22,-20,-15,-2,-108,-17,50,31,5,121,-127, /* [134][0][][] */ 11,-16,-25,61,-9,-27,3,-58,2,11,-18,-3,92,-127,69,-11,-7,-96,110,24,53,-6,-3,-20, /* [135][0][][] */ -22,4,52,127,17,48,103,-19,35,64,11,-25,34,86,-98,-43,-38,-27,25,13,-40,-67,26,4, /* [136][0][][] */ 21,-117,45,-53,105,-50,-127,-108,50,82,30,67,42,36,-32,32,-43,10,-67,-23,59,16,-108,69, /* [137][0][][] */ 72,-41,127,95,80,-17,-61,16,-73,55,36,55,-52,45,84,-19,-109,-61,42,-123,29,28,42,12, /* [138][0][][] */ 7,115,51,-29,-84,62,-11,41,80,-59,-1,17,49,-66,-42,-12,33,68,-47,-66,-72,-42,-38,127, /* [139][0][][] */ 42,11,127,21,-19,-12,-6,112,82,-70,0,23,-38,25,-54,-30,-35,-36,12,-41,-25,4,-122,45, /* [140][0][][] */ 1,61,83,-19,35,13,-7,25,33,-66,55,-88,-11,-127,52,-9,42,-85,-4,-100,-69,-26,-7,68, /* [141][0][][] */ 127,19,-19,-54,-46,92,62,35,-50,55,-29,-24,-45,6,-108,-109,12,78,-92,96,55,46,31,39, /* [142][0][][] */ 35,-23,-95,-13,-59,-17,-25,72,16,66,-13,-64,32,-68,43,-25,-52,127,-38,-73,121,108,82,-36, /* [143][0][][] */ 0,-8,40,63,-14,74,108,57,24,7,-31,-36,78,-38,-127,-28,-5,-1,-18,77,3,1,-4,-23, }; const TfArray<144, float> quant66_scale = { 144, { 0.0031208684667944908, 0.0025015838909894228, 0.0022319525014609098, 0.0044341986067593098, 0.0043510375544428825, 0.0029655075632035732, 0.0023419156204909086, 0.0020252121612429619, 0.0031289199832826853, 0.0023382653016597033, 0.0022162047680467367, 0.0024838917888700962, 0.0029358253814280033, 0.0026190513744950294, 0.0029301079921424389, 0.0036594497505575418, 0.0032310383394360542, 0.0021968879736959934, 0.0027731137815862894, 0.0021234634332358837, 0.0023249348159879446, 0.0024998483713716269, 0.002587607828900218, 0.0025458142627030611, 0.0027007248718291521, 0.0018366785952821374, 0.0028179532382637262, 0.0028234117198735476, 0.0019514027517288923, 0.0015399043913930655, 0.0030626237858086824, 0.003090595593675971, 0.0027313446626067162, 0.0025675378274172544, 0.003720591776072979, 0.0028022837359458208, 0.0026711644604802132, 0.0046024839393794537, 0.0018196816090494394, 0.002575988182798028, 0.0025041596964001656, 0.0022306288592517376, 0.002732361201196909, 0.0027816041838377714, 0.0021851714700460434, 0.0023264347109943628, 0.0031352767255157232, 0.0020029114093631506, 0.0035771680995821953, 0.0028973785229027271, 0.002717077499255538, 0.0025712954811751842, 0.0036921647842973471, 0.0031352308578789234, 0.0038451582659035921, 0.0032399808987975121, 0.002211420563980937, 0.0053647411987185478, 0.0016841612523421645, 0.002652341965585947, 0.0027068061754107475, 0.0025234567001461983, 0.0023745880462229252, 0.0021660404745489359, 0.003312690882012248, 0.0031044280622154474, 0.0031113512814044952, 0.0032452004961669445, 0.0023252810351550579, 0.0021055622491985559, 0.0037792332004755735, 0.0027099957223981619, 0.0032822755165398121, 0.0024938192218542099, 0.002330058254301548, 0.00218346924521029, 0.0026057627983391285, 0.003600885858759284, 0.0018893396481871605, 0.0023139924742281437, 0.0020906946156173944, 0.0028660541865974665, 0.0021896320395171642, 0.0020015235058963299, 0.0052582686766982079, 0.0020213739480823278, 0.0034466932993382215, 0.0022024000063538551, 0.0018924399046227336, 0.0023657509591430426, 0.0028322958387434483, 0.002484519500285387, 0.0035039400681853294, 0.0033513745293021202, 0.0018028985941782594, 0.0025334618985652924, 0.0021743460092693567, 0.0027338187210261822, 0.0021918490529060364, 0.0043167141266167164, 0.0015020231949165463, 0.0032864946406334639, 0.0036967853084206581, 0.0026498646475374699, 0.0037738769315183163, 0.0044134007766842842, 0.0032221907749772072, 0.0023228793870657682, 0.0037284379359334707, 0.0025084728840738535, 0.0018280028598383069, 0.002970412140712142, 0.0027369500603526831, 0.0033001527190208435, 0.0034903089981526136, 0.0020798405166715384, 0.0021273924503475428, 0.003087908960878849, 0.0017371645662933588, 0.0023473324254155159, 0.0024245569948107004, 0.0027848405297845602, 0.0041682790033519268, 0.0032360695768147707, 0.0024788482114672661, 0.0014635008992627263, 0.0033099725842475891, 0.0030396105721592903, 0.0042475503869354725, 0.0019683148711919785, 0.002958840224891901, 0.0031401982996612787, 0.0033774175681173801, 0.001350566279143095, 0.003631554776802659, 0.0025507351383566856, 0.0016943294322118163, 0.0017942609265446663, 0.0024745403788983822, 0.0020310101099312305, 0.0021719117648899555, 0.0021593475248664618, 0.0025502513162791729, 0.0027573907282203436, } }; const TfLiteAffineQuantization quant66 = { (TfLiteFloatArray*)&quant66_scale, (TfLiteIntArray*)&g0::quant45_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data67[24] = { 14761, 6020, 2403, 8846, 13496, -13926, 13131, 3260, 378, -5949, -3361, 13956, 1951, -6858, 16899, 11075, -6936, 27566, -9832, 9563, -6851, -6252, -16161, -4046, }; const TfArray<24, float> quant67_scale = { 24, { 6.1879618442617357e-05, 6.1852551880292594e-05, 6.3244573539122939e-05, 7.5920557719655335e-05, 5.8805093431146815e-05, 8.2031954661943018e-05, 7.5437099440023303e-05, 6.2031613197177649e-05, 6.2959043134469539e-05, 7.0029251219239086e-05, 6.7103457695338875e-05, 5.7557997934054583e-05, 6.4867599576245993e-05, 5.7196361012756824e-05, 5.0978211220353842e-05, 6.0217582358745858e-05, 8.4381259512156248e-05, 4.530336445895955e-05, 5.2530915127135813e-05, 8.0835787230171263e-05, 4.9241742090089247e-05, 6.2394174165092409e-05, 5.1921990234404802e-05, 5.4419386287918314e-05, } }; const TfLiteAffineQuantization quant67 = { (TfLiteFloatArray*)&quant67_scale, (TfLiteIntArray*)&g0::quant49_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data68[24*1*1*96] = { /* [0][0][][] */ -17,-11,-76,51,81,19,-45,45,-11,58,-78,-12,69,-19,23,19,-20,25,10,-99,-69,-4,-39,-40,-54,-32,11,29,40,-42,-7,-73,-48,22,21,-15,-89,-20,12,21,-23,-24,-73,-38,-9,-55,-55,-34,-12,15,22,81,-11,-17,-6,-31,59,-85,-24,-36,-35,-6,41,44,49,27,47,-13,52,-9,-101,12,-24,71,96,-67,22,70,-32,-25,113,-59,64,-56,-33,-18,28,-46,-127,2,-3,-53,49,0,65,-68, /* [1][0][][] */ -62,-7,-42,-45,50,-3,75,17,-7,-3,-34,-62,-32,4,73,65,-6,53,13,85,-35,-71,-46,-125,-17,14,-33,-70,-18,46,-19,-22,37,-80,45,4,-86,65,26,-29,-15,-13,27,-114,-20,-127,-48,-59,-17,17,-104,-20,-87,52,-3,20,33,-44,96,67,29,-32,40,-49,102,41,16,-79,-51,15,-6,60,79,58,-28,29,56,56,5,22,-48,5,32,-30,73,36,-2,-11,35,-27,-28,96,-1,-57,-52,93, /* [2][0][][] */ -33,-15,81,-61,-52,-8,2,-70,-12,-47,-70,-34,19,71,-79,-31,-3,-19,6,26,0,82,-1,-121,45,12,1,-47,13,1,-28,8,-5,5,25,-69,9,106,41,-2,-4,52,104,-19,51,46,39,-122,-41,30,67,-35,1,37,-7,24,6,3,-33,1,-61,68,42,-36,40,25,1,66,24,33,48,-56,-29,-45,0,-36,-20,23,9,-127,-10,22,-60,-39,75,2,1,3,-81,-31,-2,67,-66,19,55,47, /* [3][0][][] */ -120,-6,-13,65,7,-62,32,7,-4,-43,-18,-24,0,-34,-30,-6,-16,-74,-19,-15,0,4,127,23,-5,7,-79,-76,2,-30,-66,13,35,-12,39,9,22,25,-35,-82,37,57,-55,-5,35,-42,-5,0,-9,16,-13,-65,65,35,6,-19,39,1,34,-51,-50,15,38,-42,-66,-48,22,6,41,-24,-30,-61,31,13,76,24,67,-19,36,-30,126,16,78,-53,68,-12,1,15,-20,-20,21,-27,12,-15,-75,-26, /* [4][0][][] */ -61,-19,-20,-26,-14,44,-78,34,33,-40,-6,-43,-13,116,65,54,-12,63,-45,0,32,14,38,23,-66,6,-49,-21,-7,-43,-31,42,-37,-13,55,91,-28,98,-26,30,-7,-37,-31,-40,-2,-87,3,28,2,-41,-67,32,44,102,51,-121,-63,30,63,-41,74,43,-50,-43,-127,31,29,-4,-16,-2,-15,50,18,-5,-63,-21,87,-38,-77,19,11,-40,2,-93,-21,28,-11,1,-61,-36,82,101,-54,-27,-37,5, /* [5][0][][] */ 8,-12,41,93,81,17,-7,2,13,-14,6,-16,10,27,-21,23,-42,23,-20,21,5,-2,33,-58,2,32,23,-31,35,-27,15,-18,-10,26,-40,63,12,5,-27,-21,53,-25,-51,-19,6,19,-17,-20,14,-17,-20,9,-4,-71,-31,127,-83,-11,126,2,-15,-2,-39,-18,63,-9,28,-3,49,9,-67,-7,24,-16,26,28,-2,-48,-53,2,49,19,0,32,43,-18,-19,19,-14,-40,8,-24,24,-26,-37,-28, /* [6][0][][] */ 93,17,24,-40,-4,16,43,9,41,6,-3,-22,58,25,7,2,16,-104,-101,-56,-40,-44,3,-29,-13,15,0,52,-31,-15,59,4,15,-37,-24,45,36,-43,-66,-49,-23,-38,-74,-29,22,-8,21,-21,14,-4,-11,-9,6,-23,26,-127,-10,57,-38,-48,-45,-25,41,2,85,-44,6,17,8,68,3,6,12,-58,-37,81,-12,56,-4,-25,13,-26,16,-58,-104,23,36,42,47,8,-52,42,30,30,16,19, /* [7][0][][] */ -106,56,33,-4,-14,-32,37,-40,-7,-31,17,-9,-30,-55,-107,5,-8,-3,91,-8,51,56,-76,-28,-27,-36,13,-1,39,29,70,36,-52,-7,-84,-1,62,15,-8,-35,-30,82,-35,47,-81,-55,-75,42,42,-81,42,46,-7,2,51,7,-66,39,-42,-35,-18,44,-12,50,29,-46,35,-7,-16,16,-9,-9,-2,10,-7,48,-11,6,-5,53,-56,15,51,63,66,6,65,35,-127,-40,9,-12,-54,-20,-25,86, /* [8][0][][] */ 91,-30,-26,-45,9,14,-17,-46,-2,51,-4,18,-28,-52,-16,-38,63,-111,26,-2,-27,1,52,-58,45,71,-82,12,-3,-27,-14,41,43,-18,-43,3,22,71,-55,-34,44,-22,27,9,-34,-5,26,52,-9,-31,-16,-65,-53,20,10,3,-87,99,-49,44,72,-37,-34,-12,-39,127,-9,4,4,13,-79,56,-70,-105,-6,-12,-46,-3,-24,-68,81,-29,-24,-40,84,-13,31,-9,-61,70,15,-32,7,44,32,65, /* [9][0][][] */ -43,-43,-24,7,7,-75,38,60,-33,-35,-15,85,-21,100,-64,-12,-23,-71,-15,-31,21,24,-45,83,-1,25,-30,35,6,80,12,22,27,-90,80,35,115,-32,-18,24,-4,-32,59,54,27,-25,-62,-80,2,-1,-15,-3,39,-12,-16,9,-36,56,16,27,-31,-12,-20,13,92,10,-116,11,-10,54,127,-37,12,-90,25,18,-16,50,24,24,18,1,8,-1,15,-28,-5,26,11,-13,-4,-14,-10,-32,-79,-16, /* [10][0][][] */ 76,-46,-12,-127,37,-12,5,10,-21,14,43,40,46,37,53,28,40,-58,64,71,23,-9,-64,-78,-12,36,-17,-15,-93,-8,-66,-39,13,-1,-47,33,-51,-11,-54,24,-9,-2,-86,16,-6,50,-71,63,-2,28,15,-42,17,48,24,43,41,-25,20,-39,20,26,70,-62,40,35,-106,48,-36,-16,-29,-8,-9,61,-11,-23,70,-26,-15,27,-36,64,22,30,-42,-11,5,31,-3,-39,-26,-16,-15,-29,-115,55, /* [11][0][][] */ 54,-58,60,58,-5,72,-46,47,17,-42,15,92,-61,-11,65,35,31,12,19,-4,-10,59,-21,-43,70,-11,-34,4,-15,18,27,42,-60,-80,-58,-27,-127,34,48,-60,-14,-93,58,61,3,70,113,47,22,34,-16,-7,-51,-28,-39,-124,23,-93,-10,55,33,46,-64,-49,-39,-34,-69,11,46,-68,-79,-72,31,13,3,107,29,8,13,20,29,-97,-44,-50,-21,40,-16,37,5,-15,-115,-27,-63,-84,-26,-20, /* [12][0][][] */ -60,-31,56,16,-80,-20,52,29,-38,115,44,14,48,38,36,53,-9,-61,86,-69,13,-68,-58,-4,89,0,83,50,77,16,0,-42,-2,8,-33,55,-53,-77,-77,-7,-19,-55,106,-105,54,-15,96,-77,2,68,-81,-23,6,-6,19,-23,-16,26,87,-94,-61,-51,20,13,-18,-1,-24,15,38,-60,86,-72,-127,79,34,-18,47,-2,-63,23,-11,15,73,-47,-33,-16,-1,61,-13,-50,8,-27,-17,3,-2,60, /* [13][0][][] */ -31,-40,-81,2,65,39,-7,27,43,-2,-19,127,-26,111,-48,-1,29,3,-11,28,-3,-52,-14,15,-21,1,40,4,-18,15,-5,22,28,80,36,30,-26,2,5,-36,-11,41,-43,17,-2,15,54,-20,3,41,70,0,10,-6,2,-27,-28,77,-28,12,-72,-51,30,-18,10,4,5,-12,-8,-11,-75,18,-62,49,55,11,-44,34,-65,53,-29,-60,-8,-18,21,38,19,15,-91,-27,-24,41,-23,61,43,-66, /* [14][0][][] */ -43,-77,86,7,127,-66,-7,23,-78,32,81,-40,-7,-72,-24,-24,-7,28,26,0,12,-65,-72,-3,-10,-70,-81,29,41,2,35,43,15,-64,-77,-76,69,77,123,-1,-10,108,-101,-22,55,-59,89,-18,-17,-56,35,31,-59,-40,42,-103,-55,10,-16,-83,114,69,-10,22,90,-94,-43,7,37,6,-23,-90,-48,-53,-11,21,36,64,-23,4,21,-16,-9,-29,-28,33,-55,26,46,17,2,-20,-46,-30,107,25, /* [15][0][][] */ -7,18,60,-59,-47,-20,-12,-29,4,-19,1,60,48,-30,-50,31,-75,81,-121,-76,7,14,-41,18,38,-72,31,39,27,-98,-41,-77,7,-34,65,49,52,-47,-26,-60,-37,-16,76,65,16,43,-20,-33,15,-56,100,-89,-102,60,-2,-53,-90,-32,35,5,-19,-32,-5,61,4,-41,-18,35,-36,35,-67,-24,8,36,13,-74,-47,79,32,-127,125,-13,87,27,-44,43,-18,33,68,6,-17,49,41,-23,-69,52, /* [16][0][][] */ -37,27,77,2,-87,-77,-21,26,53,11,-48,5,-2,44,46,8,4,49,25,-40,-18,-31,89,51,-28,-28,-71,-13,-14,-22,24,11,1,35,8,-1,-41,33,0,-32,-7,-2,-20,-13,-9,78,-40,-41,14,-39,18,6,28,-10,-41,20,28,-4,-26,-15,71,-55,6,-19,127,11,19,77,-16,-1,15,-83,0,57,2,60,30,39,-52,-65,44,7,-17,-42,56,34,1,42,20,54,-39,-43,-23,45,-16,-4, /* [17][0][][] */ 65,64,-38,-13,75,-68,-20,-13,108,-16,10,-27,-64,-109,2,-4,-25,-79,-110,-80,-127,-59,-83,48,25,-16,6,-35,8,100,0,39,110,-65,-83,26,-53,-83,-67,30,54,-109,77,16,-3,-126,24,-66,-55,-104,55,-106,54,71,38,-29,82,-81,-40,-17,-124,-125,-42,-87,61,31,107,-21,-78,-87,22,23,-112,-48,58,-11,-1,-110,-21,76,-26,64,-70,-91,-31,-58,-17,-25,67,58,-30,-69,18,-92,-80,34, /* [18][0][][] */ 57,-11,-23,-35,62,-35,63,18,-11,19,-44,-52,32,43,-36,-60,19,-7,-127,-20,81,27,-112,10,33,-15,-67,-18,22,35,26,37,-29,33,-34,38,53,-18,57,-4,58,73,-85,44,-32,50,30,-77,-63,-69,71,-30,-57,80,5,-25,24,61,56,8,23,42,-41,0,-23,121,86,73,57,-52,-23,58,-58,13,-56,65,-16,2,62,-18,-12,51,9,27,-17,-21,33,118,16,-73,-66,-56,-11,-46,103,11, /* [19][0][][] */ -32,-11,15,-54,87,-60,-66,-21,41,-21,-78,-45,-38,-14,29,10,-11,-41,127,-61,-20,8,12,9,-48,7,4,37,-27,-20,34,11,5,-19,-26,21,-63,-27,-14,44,96,-26,-44,14,6,38,-63,-71,14,1,-77,22,32,12,18,-20,-42,9,-69,5,-19,-22,12,26,-67,-12,-22,53,58,60,-14,48,17,13,27,-40,-2,42,10,1,-42,19,31,-10,44,-72,-8,-47,53,-6,15,-45,-31,-36,-10,36, /* [20][0][][] */ -7,14,32,-37,-13,20,-28,11,10,-27,101,-48,-41,115,33,23,18,-19,-17,24,-20,45,-83,13,58,18,-62,18,-64,42,-31,67,-1,32,-30,24,-64,-36,-20,-33,79,-5,82,6,27,98,5,-41,73,-66,-40,-107,-39,10,-10,-26,-10,3,-57,2,-20,-6,64,19,35,63,81,37,-127,-61,2,44,43,1,2,-2,56,60,-46,2,55,-36,4,-8,44,32,21,-66,-64,-15,99,-44,49,13,1,-2, /* [21][0][][] */ -72,-26,-45,8,-12,5,-41,-10,53,-17,34,-35,64,-17,-16,-8,-47,68,123,44,-20,-7,26,57,72,-27,14,-15,-13,-35,-18,3,-32,-36,95,6,-26,-14,6,-75,1,29,27,14,27,-78,107,-61,9,26,-36,-88,-20,127,97,27,60,-12,-106,27,9,-48,-62,-18,20,24,-82,10,39,-16,-58,-4,42,26,-32,51,7,-26,-44,5,56,62,-58,32,-6,-45,-17,77,40,43,20,43,-28,8,-1,11, /* [22][0][][] */ -6,-73,-6,-96,60,5,2,-4,15,-14,62,85,33,-52,48,-32,-30,-21,79,-13,3,49,88,87,-13,9,53,10,-15,48,40,-5,3,8,61,16,32,-28,-19,-7,68,-6,-107,-17,-39,-95,67,4,83,-47,-10,75,-9,27,-114,56,3,27,42,-23,-33,-12,-3,-30,-4,45,78,-75,32,68,-113,59,-11,4,-3,8,-47,127,45,-25,-9,-41,-3,31,26,13,-53,-52,27,29,56,-30,-120,20,-8,59, /* [23][0][][] */ -77,-54,-68,-25,-28,54,-72,15,26,31,-67,9,-13,-86,-22,-22,-57,61,-108,-76,18,63,-73,-116,-7,-56,-3,14,23,52,22,40,26,-17,70,18,79,-20,-10,15,21,14,1,-22,51,-26,-114,38,115,31,47,-124,125,-81,-62,83,16,-94,-56,38,-49,-18,-23,9,13,102,25,-46,-2,-9,80,112,89,22,-31,16,7,-35,-94,-26,-105,13,-46,51,-10,2,-1,-2,-27,36,127,7,123,114,21,17, }; const TfArray<4, int> tensor_dimension68 = { 4, { 24,1,1,96 } }; const TfArray<24, float> quant68_scale = { 24, { 0.0026298835873603821, 0.002628733403980732, 0.0026878942735493183, 0.0032266236376017332, 0.0024992164690047503, 0.0034863580949604511, 0.0032060767989605665, 0.0026363434735685587, 0.0026757591404020786, 0.0029762431513518095, 0.0028518969193100929, 0.0024462149012833834, 0.0027568729128688574, 0.0024308452848345041, 0.0021665738895535469, 0.0025592471938580275, 0.003586203558370471, 0.0019253930076956749, 0.0022325639147311449, 0.0034355209209024906, 0.0020927740260958672, 0.0026517522055655718, 0.0022066845558583736, 0.0023128238972276449, } }; const TfLiteAffineQuantization quant68 = { (TfLiteFloatArray*)&quant68_scale, (TfLiteIntArray*)&g0::quant49_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data69[96] = { 544, -667, -87, 867, 786, 8251, -803, -2347, 4173, -912, 68, 13071, 19, -825, -2210, -1005, 1839, -120, 76, -2685, -152, -1423, -2646, 192, 3325, 1511, -352, -1614, -416, -546, -1885, 9369, 793, 2711, 888, 1986, -5196, -973, -187, 9, 8199, -2916, 635, 8476, 161, -382, -668, -1708, -400, -3323, 8839, 1250, 11696, -1692, 202, 13751, -729, 12, -273, -2018, -667, -468, 459, -528, 305, 2090, -260, 1238, 1791, 705, 327, 225, 284, -1, 43, -1173, -3114, -841, -103, 185, 9, 12032, -1429, 7162, 158, -427, 1555, 5129, -958, -713, -299, 21, 7, -433, -1317, -29, }; const TfArray<1, int> tensor_dimension69 = { 1, { 96 } }; const TfArray<96, float> quant69_scale = { 96, { 0.00016361965390387923, 0.00027125407359562814, 0.00025815903791226447, 0.00014330579142551869, 0.00011292902490822598, 0.00011675498535623774, 0.00016473376308567822, 0.00015636484022252262, 0.00013055278395768255, 0.00023057541693560779, 0.00031858545844443142, 8.5200350440572947e-05, 0.00017843912064563483, 0.00017337070312350988, 0.00022804518812336028, 0.00013967188715469092, 0.00022111035650596023, 0.00019273612997494638, 0.00020814374147448689, 0.00027065607719123363, 0.0001385210343869403, 0.00039455282967537642, 0.0001421244814991951, 0.00014470265887212008, 0.00015923858154565096, 0.00028984734672121704, 0.00017593729717191309, 0.0002324837987544015, 0.00024043789017014205, 0.00015204734518192708, 0.00014543523138854653, 0.000158674520207569, 0.00017016573110595345, 0.0001624784927116707, 0.00016717688413336873, 0.00024243928783107549, 0.0001818769087549299, 0.00016699808475095779, 0.00028826817288063467, 0.00027113358373753726, 0.00016379337466787547, 0.00022424505732487887, 0.00029634940437972546, 0.00014835431647952646, 0.00033726569381542504, 9.4433009508065879e-05, 0.00021234209998510778, 0.000182899966603145, 0.0001574259513290599, 0.00011593072849791497, 0.00013771135127171874, 0.00018866178288590163, 0.00012508804502431303, 0.00015847924805711955, 0.00023403260274790227, 0.00012969848467037082, 0.00026361420168541372, 0.00022434498532675207, 0.00017746820230968297, 0.00016761482402216643, 0.00022931539569981396, 0.00025892973644658923, 0.00018138055747840554, 0.00030952805536799133, 0.00014056736836209893, 0.00017071515321731567, 0.00015964226622600108, 0.0001556811184855178, 0.00014776758325751871, 0.00015075773990247399, 0.0001637070527067408, 0.00020946830045431852, 0.00015833282668609172, 0.00035813741851598024, 0.00024221699277404696, 0.00012757947843056172, 0.00015279393119271845, 0.00020301614131312817, 0.00021126051433384418, 0.00019015470752492547, 0.00018486595945432782, 0.00012553588021546602, 0.00014663991169072688, 0.00017215411935467273, 0.0002438521187286824, 0.00026534716016612947, 0.00016900044283829629, 0.00014732719864696264, 0.00021964426559861749, 0.00019040695042349398, 0.0001709022035356611, 0.00023119873367249966, 0.00019022201013285667, 0.00025679825921542943, 0.00023361727653536946, 0.00022890024411026388, } }; const TfArray<96, int> quant69_zero = { 96, { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } }; const TfLiteAffineQuantization quant69 = { (TfLiteFloatArray*)&quant69_scale, (TfLiteIntArray*)&quant69_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data70[1*3*3*96] = { /* [0][0][][] */ 4,-44,-51,-36,98,-54,30,127,-127,-42,127,-82,16,-26,-27,127,-33,59,35,10,82,66,-89,75,91,-11,10,-28,-3,-26,127,-32,-47,54,64,-28,4,-25,-48,127,-72,5,74,-21,47,78,-30,19,107,0,-74,-30,-4,32,-28,20,12,38,-24,-39,55,102,-20,-5,6,-7,-3,90,-42,-65,-127,16,-45,-46,47,-127,82,-12,-24,56,71,-81,-127,-41,23,38,-29,92,2,-24,15,127,57,-49,73,-10, 17,-5,80,58,-11,-127,-66,21,-123,-61,-7,-127,11,-15,-26,26,-48,13,74,21,127,127,56,2,-47,24,1,50,-19,-23,-26,-127,-29,-28,-18,-8,44,114,-33,-26,-36,33,0,-108,1,102,10,78,83,10,-127,-14,-50,-13,43,-75,12,-33,-14,127,122,127,39,1,113,59,16,-83,-28,87,-11,31,-11,-11,-3,45,-49,43,-27,-20,-6,-84,115,-8,25,53,-68,-49,127,-69,102,0,57,-18,127,72, -15,90,28,9,-15,14,31,19,100,27,17,-62,-5,4,-10,-12,-37,-8,28,4,4,34,-20,-13,36,-44,24,7,-3,48,109,-79,36,-62,-1,18,12,-18,-27,32,-37,18,6,-39,83,8,3,-8,73,-3,-106,60,5,-23,127,-53,35,-6,46,-16,52,40,1,5,4,-27,61,-26,42,37,31,-5,124,-1,-4,118,-123,4,10,-6,12,-81,74,-1,-6,-30,-23,-62,14,-2,2,31,69,-6,-6,1, /* [0][1][][] */ 70,-16,-56,-43,127,-19,-49,117,-121,-28,75,-60,127,90,68,114,-42,-50,53,-11,81,92,-101,127,127,-24,22,5,-2,89,79,-83,-27,127,127,-127,17,-84,127,101,-127,-16,127,-38,11,35,100,-28,65,-84,-98,-64,-91,70,61,-69,-42,114,81,-83,-80,-66,-51,-27,14,3,-50,127,-67,-57,-103,33,-127,-10,127,-58,89,-34,-22,127,127,-67,-115,-57,61,78,-60,104,9,-51,34,98,127,-42,9,-67, 127,3,127,127,-5,-38,78,-6,-102,127,-13,-56,124,68,127,-81,-54,-25,127,-24,48,-27,127,13,-76,-88,127,-93,0,-31,72,-100,-50,-92,-38,-108,-16,127,50,-8,-94,-61,-5,-57,-45,127,6,127,7,83,49,-51,-127,72,84,-127,-30,127,127,94,-127,-78,3,20,127,127,-8,-54,-44,-102,-22,127,53,-21,-11,-12,127,127,69,-22,-8,-90,83,-100,127,127,59,-127,98,74,127,-5,85,-42,-39,127, 5,127,23,9,-10,-69,-9,23,-3,-23,77,3,-13,1,62,-12,-32,3,31,19,-101,0,-19,-17,46,-26,64,-26,-4,70,-48,-59,127,-46,12,-12,-13,60,-3,80,-7,0,0,-7,127,11,-17,1,34,127,19,127,11,-27,124,-69,-7,27,13,36,-44,-32,-83,33,-16,-21,127,-56,127,85,103,-7,-14,-5,-12,122,86,-11,-8,-10,25,-127,-37,-6,3,11,-73,-47,21,23,-6,-2,103,-15,11,14, /* [0][2][][] */ 39,-4,0,-25,70,-53,-41,48,59,-70,-8,-111,114,19,-27,-2,-3,127,22,29,-115,55,-77,79,85,15,-53,78,59,127,-76,0,-59,118,111,103,115,-8,-18,-18,-81,85,79,-42,-27,-38,127,-31,3,62,-81,-37,-65,56,71,-83,127,-40,12,-43,0,-35,-64,127,8,-2,-43,70,-74,-127,-110,7,-117,86,95,0,14,20,-3,100,78,61,-50,-37,3,72,-127,3,37,16,-8,11,54,-17,-7,4, 80,11,49,78,0,-86,127,39,84,57,-4,-122,102,127,-10,102,127,91,41,127,-68,49,45,-30,-48,127,69,127,127,-43,79,-84,-9,-1,-58,98,127,0,-2,-8,-14,127,2,-127,-30,40,20,44,-127,31,-71,-34,-92,127,38,-119,25,-20,-10,-118,-37,-43,-75,-63,45,48,28,-18,-32,-13,-9,76,60,127,-26,-39,24,30,127,22,10,23,-81,-127,60,39,82,-89,11,127,15,-3,3,127,-1,72, 14,76,18,-3,-5,-16,-22,16,-30,13,37,-51,2,-2,1,76,-2,-4,-4,1,-40,14,-10,-32,34,0,72,4,-41,32,-24,-9,73,94,5,21,57,26,24,41,32,24,-8,-29,49,-3,71,10,-66,119,-38,67,3,-15,17,-35,14,14,-4,79,-28,21,127,7,0,7,81,-35,86,43,71,-12,-22,29,24,-43,-54,52,5,20,4,-68,-14,-51,8,-21,91,-48,1,11,12,-6,40,13,-8,8, }; const TfArray<4, int> tensor_dimension70 = { 4, { 1,3,3,96 } }; const TfArray<96, float> quant70_scale = { 96, { 0.0069538350217044353, 0.011528297327458858, 0.01097175944596529, 0.0060904957354068756, 0.0047994833439588547, 0.0049620866775512695, 0.0070011848583817482, 0.0066455053165555, 0.0055484934709966183, 0.0097994552925229073, 0.013539881445467472, 0.003621014766395092, 0.0075836624018847942, 0.0073682544752955437, 0.009691920131444931, 0.0059360549785196781, 0.0093971900641918182, 0.0081912856549024582, 0.0088461088016629219, 0.011502883397042751, 0.0058871437795460224, 0.016768494620919228, 0.0060402904637157917, 0.0061498628929257393, 0.0067676398903131485, 0.012318511493504047, 0.007477334700524807, 0.0098805613815784454, 0.010218610055744648, 0.0064620119519531727, 0.006180997472256422, 0.0067436671815812588, 0.0072320434264838696, 0.006905335932970047, 0.0071050175465643406, 0.010303669609129429, 0.0077297687530517578, 0.0070974184200167656, 0.012251396663486958, 0.011523176915943623, 0.0069612185470759869, 0.0095304148271679878, 0.012594849802553654, 0.0063050584867596626, 0.014333791099488735, 0.0040134028531610966, 0.0090245390310883522, 0.007773248478770256, 0.0066906027495861053, 0.0049270559102296829, 0.0058527323417365551, 0.0080181257799267769, 0.0053162421099841595, 0.0067353677004575729, 0.0099463853985071182, 0.0055121853947639465, 0.011203603819012642, 0.0095346616581082344, 0.0075423982925713062, 0.0071236300282180309, 0.0097459042444825172, 0.011004514060914516, 0.0077086738310754299, 0.013154942542314529, 0.0059741130098700523, 0.0072553940117359161, 0.0067847962491214275, 0.0066164471209049225, 0.0062801223248243332, 0.0064072040840983391, 0.0069575496017932892, 0.0089024025946855545, 0.0067291450686752796, 0.015220840461552143, 0.010294222272932529, 0.0054221278987824917, 0.0064937416464090347, 0.0086281858384609222, 0.008978571742773056, 0.0080815749242901802, 0.0078568030148744583, 0.0053352750837802887, 0.0062321959994733334, 0.0073165497742593288, 0.010363714769482613, 0.011277253739535809, 0.0071825184859335423, 0.0062614060007035732, 0.0093348808586597443, 0.008092295378446579, 0.0072633433155715466, 0.0098259458318352699, 0.0080844350159168243, 0.010913926176726818, 0.0099287340417504311, 0.009728260338306427, } }; const TfLiteAffineQuantization quant70 = { (TfLiteFloatArray*)&quant70_scale, (TfLiteIntArray*)&g0::quant69_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data71[96] = { -247, -835, -1786, 147, -310, 1765, 717, 1784, 2564, -371, -1334, 362, -1634, 4357, 2264, 198, -172, 1414, -1493, 1825, 1750, -3788, 966, 205, 102, 146, -1025, 868, 176, 604, 583, 2569, -163, 707, 1142, 8100, 2402, -761, 2103, -2587, 824, 1238, -1163, 2552, -1939, 732, 97, -233, 3100, 478, 2592, -417, 2141, -24, -3171, -1594, 1169, -559, 424, 288, -967, -2225, 70, 2165, 854, 608, -20, -235, 335, 188, -587, -669, 735, -2379, -621, 1603, 2034, 951, 152, -561, -65, 5861, 2920, 493, -1463, -1269, 993, 2430, -1479, 1508, -506, -545, -1389, 547, 1547, -2283, }; const TfArray<96, float> quant71_scale = { 96, { 0.00018649722915142775, 0.00021470697538461536, 0.0001610994222573936, 0.00017959035176318139, 0.00049027672503143549, 0.00013799623411614448, 0.0001332968968199566, 0.0001693547674221918, 0.00014243641635403037, 0.00014698955055791885, 0.00015012058429419994, 0.00019489075930323452, 0.00018534206901676953, 0.00010576489876257256, 0.00011940702825086191, 0.00021472352091223001, 0.0001724215253489092, 0.0001873430737759918, 0.00013525094254873693, 0.0001530094159534201, 0.0001623503485461697, 0.00011385000107111409, 0.00022275386436376721, 0.00021044902678113431, 0.00021484529133886099, 0.0001874270528787747, 0.00017578591359779239, 0.00011550850467756391, 0.00022887825616635382, 0.00021607178496196866, 0.00014334553270600736, 0.00014306818775366992, 0.00015933960094116628, 0.00020779010083060712, 0.00020621022849809378, 7.6378259109333158e-05, 0.00017441579257138073, 0.00012266387057024986, 0.00011864746193168685, 0.00014463186380453408, 0.0001682950824033469, 0.00017239242151845247, 0.00016079453052952886, 0.00013774081890005618, 0.00013883599604014307, 0.00034930778201669455, 0.00013765004405286163, 0.00021911793737672269, 0.00012063528265571222, 0.00017924835265148431, 0.0001164429631899111, 0.00017357245087623596, 0.00017922105325851589, 0.00014520574768539518, 0.00010793969704536721, 9.3337905127555132e-05, 0.00012230261927470565, 0.00012899519060738385, 0.00019576575141400099, 0.00018836441449820995, 0.00017787032993510365, 0.00013058318290859461, 0.00018379687389824539, 0.00016791628149803728, 0.00020950987527612597, 0.00017747427045833319, 0.00016871502157300711, 0.00032361585181206465, 0.00021819154790136963, 0.00015877715486567467, 0.0002137499104719609, 0.00022526370594277978, 0.00015134000568650663, 0.00010126802226295695, 0.00022946858371142298, 0.00021153785928618163, 0.00012381515989545733, 0.00014292958076111972, 0.00019407164654694498, 0.00018088452634401619, 0.00017562619177624583, 9.5961950137279928e-05, 0.00015201675705611706, 0.0001385758223477751, 0.00013132582535035908, 0.00014029743033461273, 0.00017131688946392387, 0.00014021473180036992, 0.00015642450307495892, 0.0001775155687937513, 0.00017280332394875586, 0.00017868146824184805, 0.00011096317757619545, 0.00016459333710372448, 0.00013745549949817359, 0.00018310127779841423, } }; const TfLiteAffineQuantization quant71 = { (TfLiteFloatArray*)&quant71_scale, (TfLiteIntArray*)&g0::quant69_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data72[96*1*1*16] = { /* [0][0][][] */ -86,-11,-10,61,-16,-12,95,-41,-44,-72,-127,-6,52,-45,-9,-22, /* [1][0][][] */ 13,30,104,-14,-39,-7,-39,32,64,-39,5,33,59,-77,-127,32, /* [2][0][][] */ -59,-39,-25,114,-114,-30,10,44,14,2,-80,4,-72,76,-104,127, /* [3][0][][] */ -43,-75,-44,65,-37,-90,76,100,42,75,41,-2,-127,-79,-19,-125, /* [4][0][][] */ 84,51,53,-51,29,-13,43,21,-49,-6,11,65,23,-127,11,-4, /* [5][0][][] */ -43,65,-121,40,-126,27,-75,81,24,-27,90,127,78,-35,-53,47, /* [6][0][][] */ -102,-120,21,127,-105,85,97,-53,28,65,-95,102,-19,4,-121,0, /* [7][0][][] */ -92,-18,8,-13,-6,81,-39,-32,-33,-75,-94,-87,17,-127,122,0, /* [8][0][][] */ 26,-13,90,-14,-68,-17,-127,56,34,5,12,-47,46,55,-1,11, /* [9][0][][] */ 113,-57,7,38,-30,-39,-78,27,127,82,-65,74,51,107,5,-7, /* [10][0][][] */ 59,83,-51,75,-4,-113,19,-127,-60,-34,-85,-26,70,-26,8,35, /* [11][0][][] */ 80,-9,-18,60,29,-127,8,23,13,68,3,100,30,-92,-4,30, /* [12][0][][] */ 33,-53,-1,12,-78,95,-53,14,14,-15,-45,113,15,-127,-3,-21, /* [13][0][][] */ -90,67,-103,-28,-16,90,-35,80,42,-65,83,22,127,-25,-44,-70, /* [14][0][][] */ 97,15,-88,92,-36,-40,-7,-120,99,73,-127,115,-56,17,16,-73, /* [15][0][][] */ 77,29,38,85,79,-64,-16,127,8,0,-6,50,22,23,53,53, /* [16][0][][] */ -79,24,-81,127,22,-15,111,8,-7,17,-42,-125,22,99,-21,-2, /* [17][0][][] */ 17,53,-55,-4,-17,14,7,41,-29,4,127,36,16,30,-34,-40, /* [18][0][][] */ 64,26,-109,77,-24,100,44,127,-42,-101,-12,59,8,-35,-76,-31, /* [19][0][][] */ -55,61,-45,64,-22,96,113,-62,-127,-46,-51,-1,24,-5,-15,-13, /* [20][0][][] */ 22,115,-38,-20,-39,27,-34,-50,-66,26,-10,-108,-75,-42,127,20, /* [21][0][][] */ 126,17,58,68,-68,-9,-48,-9,50,127,-106,10,50,54,-12,11, /* [22][0][][] */ 59,-61,-4,-107,-46,21,52,40,68,127,-41,51,62,-45,25,47, /* [23][0][][] */ -11,74,-111,-6,-76,29,15,-11,46,42,127,-27,95,-2,15,43, /* [24][0][][] */ 25,7,-73,-33,11,23,87,-84,-66,56,-118,-46,-19,-79,-127,104, /* [25][0][][] */ 72,-26,72,22,-1,-30,59,19,0,22,-127,-30,-15,-21,30,2, /* [26][0][][] */ -20,-22,46,40,42,116,87,73,-127,-44,-1,-53,40,-60,-88,-47, /* [27][0][][] */ 107,-75,-19,84,-37,-127,-14,113,-14,45,34,88,-106,-93,-46,-39, /* [28][0][][] */ -66,-45,34,50,4,-70,-8,127,-34,14,30,59,-73,-48,-59,13, /* [29][0][][] */ -29,-17,-91,-4,-90,-56,-33,64,-127,89,-6,-2,-26,-14,36,-67, /* [30][0][][] */ 127,-49,-50,31,2,-80,28,-37,3,118,-89,47,9,-103,-30,-109, /* [31][0][][] */ -35,-104,64,13,47,119,23,40,-123,-106,1,7,27,3,-127,24, /* [32][0][][] */ -100,124,88,-29,-127,-86,-7,45,18,30,-89,-50,74,-83,37,37, /* [33][0][][] */ 19,16,-70,0,-28,127,35,58,-9,31,-12,69,56,-14,-14,2, /* [34][0][][] */ -127,5,8,90,-14,86,68,80,77,4,38,48,-66,-24,-18,-7, /* [35][0][][] */ 116,15,9,124,119,-42,-105,2,88,14,-41,45,45,65,127,-50, /* [36][0][][] */ -62,-47,18,-9,-50,16,66,14,-100,-41,-32,34,-64,-127,-32,-69, /* [37][0][][] */ 125,30,13,121,-15,-67,-66,8,127,52,-70,94,5,3,67,-19, /* [38][0][][] */ 119,41,73,120,127,-38,-21,60,87,-37,-54,24,65,100,101,-23, /* [39][0][][] */ 65,-100,-88,50,4,20,-27,25,-61,127,23,-5,83,-26,95,-41, /* [40][0][][] */ 127,-126,30,15,-24,-82,0,104,63,0,35,-92,-41,-40,-52,38, /* [41][0][][] */ -67,33,-11,24,13,36,46,44,-48,-2,7,9,30,-46,-127,2, /* [42][0][][] */ -127,45,-52,96,-54,14,-97,12,-65,-76,-25,76,-14,70,23,48, /* [43][0][][] */ 127,70,-5,71,-6,-34,-110,-21,71,-23,-54,-3,-26,-18,27,-57, /* [44][0][][] */ -127,38,-9,32,-26,-10,61,-2,-25,21,-83,3,60,83,72,-63, /* [45][0][][] */ -127,7,-45,23,6,-40,-47,69,-20,-31,-49,65,36,-1,5,-10, /* [46][0][][] */ -72,127,-46,5,-89,-1,104,-46,2,-14,-91,-31,68,39,-40,76, /* [47][0][][] */ 85,-81,127,-11,24,-35,31,72,-31,81,-78,-64,29,70,-13,18, /* [48][0][][] */ -94,76,-8,-66,-15,-48,-69,-6,35,66,-127,6,-56,-40,10,62, /* [49][0][][] */ 104,-61,-98,-49,-91,95,127,-62,-88,31,-39,23,26,-107,-29,-124, /* [50][0][][] */ 32,21,-120,-33,-118,57,61,61,-78,-9,-83,60,6,-127,-79,-27, /* [51][0][][] */ 4,-11,-56,28,48,52,-20,37,-71,36,77,127,52,-57,-1,-79, /* [52][0][][] */ -16,127,-8,62,49,73,-18,-109,-69,-50,-11,33,-66,-57,4,17, /* [53][0][][] */ 29,109,-84,46,-56,-23,88,0,-54,40,106,77,58,-127,98,80, /* [54][0][][] */ 108,-44,-79,43,-87,-1,-7,61,127,-40,-96,97,-17,-110,-54,94, /* [55][0][][] */ 48,106,-72,-6,-125,-120,101,33,94,115,-115,-122,-53,-127,-7,8, /* [56][0][][] */ -109,105,-74,-39,-127,11,38,67,15,117,100,-38,107,-23,53,41, /* [57][0][][] */ -33,79,-127,72,2,23,103,37,-12,65,-18,64,83,22,-44,71, /* [58][0][][] */ -127,-22,11,63,73,-29,-18,125,-46,-21,42,125,4,-81,-90,-11, /* [59][0][][] */ -49,14,-1,-60,-127,44,73,86,75,76,-11,-36,-21,-19,-12,22, /* [60][0][][] */ 38,-22,-127,59,-4,6,45,-39,26,-46,-68,88,-42,28,-63,-8, /* [61][0][][] */ 87,-34,3,69,60,-127,-62,-68,115,91,-84,45,60,13,-24,5, /* [62][0][][] */ -6,14,-14,-40,-38,-27,-8,127,-54,68,124,-21,53,-45,13,-48, /* [63][0][][] */ 19,103,78,-6,41,-63,-94,81,-59,-55,78,127,69,-38,48,65, /* [64][0][][] */ -93,-10,68,91,-62,49,-11,-21,79,-18,34,79,-23,21,-47,-127, /* [65][0][][] */ 53,84,32,16,2,-75,20,-46,-127,-28,-1,85,2,63,57,-124, /* [66][0][][] */ -116,85,49,79,-5,-78,-6,79,-62,80,96,91,-127,-95,-36,-52, /* [67][0][][] */ -7,-22,4,-12,76,63,49,-20,-31,18,-16,5,-28,-127,-5,-47, /* [68][0][][] */ -70,-84,-65,38,-63,37,72,68,-66,59,48,-7,23,59,127,-27, /* [69][0][][] */ 58,43,-85,112,40,-17,-2,71,12,55,26,127,25,-50,79,-15, /* [70][0][][] */ 127,-74,74,-63,-45,-45,48,-5,-32,54,127,19,81,-36,88,-39, /* [71][0][][] */ -10,5,-28,9,41,16,127,-76,-53,25,42,21,-33,-14,-22,-42, /* [72][0][][] */ 17,-19,-11,-14,-53,-37,123,-43,-81,-8,62,104,127,-44,34,-57, /* [73][0][][] */ 47,85,-127,38,-55,103,54,99,-8,38,5,111,-35,-1,-34,54, /* [74][0][][] */ 37,72,29,-25,-127,54,25,-6,-37,-19,-7,54,20,28,14,-61, /* [75][0][][] */ 17,-54,-17,-56,-60,-23,-24,-15,-91,51,127,-5,50,12,79,-60, /* [76][0][][] */ 127,58,-13,35,10,-106,-95,-27,121,25,-38,66,-9,63,98,-8, /* [77][0][][] */ -72,79,-127,59,23,105,28,-25,-22,-31,83,46,106,-62,-6,5, /* [78][0][][] */ -127,10,16,64,59,2,10,23,-83,5,-51,-13,74,-67,-32,28, /* [79][0][][] */ 127,95,-98,-29,-27,-15,13,65,-97,-7,19,-44,5,-39,-3,-22, /* [80][0][][] */ -53,45,34,49,-28,11,99,-105,-47,-46,-3,127,65,34,-16,-25, /* [81][0][][] */ -43,37,-70,-40,19,3,85,-99,123,-2,127,19,13,78,47,-92, /* [82][0][][] */ 14,-3,83,-71,7,39,40,-13,-122,117,44,-100,-7,-127,102,39, /* [83][0][][] */ 25,6,66,26,31,-43,-25,127,66,-45,-94,-62,-43,-4,127,19, /* [84][0][][] */ 78,95,-43,-34,-47,109,32,127,1,36,58,45,-23,38,-73,44, /* [85][0][][] */ -67,-45,-6,-63,-24,-15,47,69,17,10,-48,-127,-121,-49,96,58, /* [86][0][][] */ -43,127,-21,56,90,-47,18,68,21,15,80,45,-64,30,76,82, /* [87][0][][] */ 13,88,-37,11,52,-38,127,-39,-24,-22,117,-25,-50,-19,86,-83, /* [88][0][][] */ -115,-16,-65,35,29,10,22,38,-73,69,-34,80,127,-81,-89,67, /* [89][0][][] */ 127,-29,82,-5,81,-90,65,81,23,0,-89,18,26,-69,39,-60, /* [90][0][][] */ 109,-59,-80,-14,-42,-55,118,19,-24,36,30,15,127,-29,-77,-63, /* [91][0][][] */ -11,-72,-23,127,114,-29,19,74,61,-28,-28,-60,-19,-104,-12,-6, /* [92][0][][] */ -19,-127,123,59,-64,-23,125,-13,-120,-97,-61,79,4,-119,32,-9, /* [93][0][][] */ 63,-54,-51,-4,46,28,98,22,-57,70,19,-33,48,-33,-79,-127, /* [94][0][][] */ -21,30,2,56,-18,-58,99,-127,-28,-19,-73,124,-18,17,15,-116, /* [95][0][][] */ 45,35,5,89,-36,59,44,-16,-55,17,17,56,-16,27,62,127, }; const TfArray<4, int> tensor_dimension72 = { 4, { 96,1,1,16 } }; const TfArray<96, float> quant72_scale = { 96, { 0.0017033881740644574, 0.0019610442686825991, 0.0014714151620864868, 0.0016403036424890161, 0.0044779838062822819, 0.0012604002840816975, 0.0012174784205853939, 0.0015468159690499306, 0.0013009549584239721, 0.0013425414217635989, 0.0013711389619857073, 0.0017800511559471488, 0.0016928373370319605, 0.00096601259429007769, 0.0010906141251325607, 0.0019611953757703304, 0.0015748265432193875, 0.0017111137276515365, 0.0012353258207440376, 0.0013975243782624602, 0.0014828406274318695, 0.0010398585582152009, 0.0020345412194728851, 0.0019221538677811623, 0.001962307607755065, 0.0017118807882070541, 0.0016055554151535034, 0.0010550066363066435, 0.0020904787816107273, 0.0019735097885131836, 0.0013092585140839219, 0.0013067253166809678, 0.0014553416986018419, 0.0018978683510795236, 0.0018834385555237532, 0.00069760729093104601, 0.0015930413501337171, 0.0011203608009964228, 0.0010836765868589282, 0.001321007264778018, 0.001537137315608561, 0.0015745606506243348, 0.0014686303911730647, 0.0012580674374476075, 0.0012680703075602651, 0.0031904319766908884, 0.0012572382111102343, 0.0020013321191072464, 0.0011018324876204133, 0.0016371798701584339, 0.0010635416256263852, 0.0015853386139497161, 0.0016369306249544024, 0.0013262489810585976, 0.00098587630782276392, 0.0008525096345692873, 0.001117061241529882, 0.0011781884822994471, 0.001788042951375246, 0.0017204422038048506, 0.0016245936276391149, 0.001192692550830543, 0.0016787241911515594, 0.0015336774522438645, 0.0019135760376229882, 0.0016209761379286647, 0.0015409728512167931, 0.0029557726811617613, 0.0019928708206862211, 0.0014502045232802629, 0.0019523028749972582, 0.0020574650261551142, 0.0013822766486555338, 0.00092493998818099499, 0.0020958706736564636, 0.0019320988794788718, 0.0011308761313557625, 0.0013054593000560999, 0.0017725697252899408, 0.0016521241050213575, 0.0016040966147556901, 0.00087647658074274659, 0.0013884578365832567, 0.0012656939215958118, 0.0011994754895567894, 0.0012814183719456196, 0.0015647371765226126, 0.0012806630693376064, 0.0014287163503468037, 0.0016213534399867058, 0.0015783137641847134, 0.0016320021823048592, 0.0010134915355592966, 0.001503327046521008, 0.0012554613640531898, 0.0016723709413781762, } }; const TfLiteAffineQuantization quant72 = { (TfLiteFloatArray*)&quant72_scale, (TfLiteIntArray*)&g0::quant69_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data73[16] = { -5583, 12018, 1257, 1109, 1667, 11594, 4794, -4667, -2902, -4326, 3954, 9667, 6625, -8976, -13222, 7140, }; const TfArray<1, int> tensor_dimension73 = { 1, { 16 } }; const TfArray<16, float> quant73_scale = { 16, { 6.9858026108704507e-05, 8.6314066720660776e-05, 8.5726467659696937e-05, 0.00013108066923450679, 0.00010503634985070676, 7.0109956141095608e-05, 0.00011510814510984346, 8.3263141277711838e-05, 8.0647681897971779e-05, 0.00013089878484606743, 9.9533346656244248e-05, 9.5376024546567351e-05, 9.0893991000484675e-05, 0.00010494390880921856, 8.3561957580968738e-05, 7.3594303103163838e-05, } }; const TfArray<16, int> quant73_zero = { 16, { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } }; const TfLiteAffineQuantization quant73 = { (TfLiteFloatArray*)&quant73_scale, (TfLiteIntArray*)&quant73_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data74[16*1*1*96] = { /* [0][0][][] */ -42,-35,-53,-7,-59,57,-2,-6,65,1,-19,11,15,62,-11,-50,90,-24,37,27,21,-4,27,-25,-8,-70,-13,-4,-69,-5,-12,-46,16,-73,33,9,-78,5,-20,104,43,-7,12,-60,23,-42,39,-36,54,-85,-35,99,34,86,-57,49,68,-20,-70,-50,-41,-3,-26,116,25,-38,29,-4,6,51,74,22,-25,127,-25,67,24,-17,-61,107,7,33,66,-66,-2,7,32,-69,-11,-5,-27,-26,41,-54,63,16, /* [1][0][][] */ -54,26,4,-71,1,61,-59,-45,-16,-35,-1,45,-100,-79,90,-52,-111,0,-5,-62,7,12,11,-33,-45,-49,31,-71,60,27,116,-26,78,11,17,39,-89,-4,41,47,-127,6,-44,-86,6,117,18,-11,-7,23,-9,93,1,20,-43,26,-16,-34,-8,-44,-8,-8,33,-28,-20,-71,15,8,42,73,22,-84,-50,35,34,57,23,101,-38,-53,-6,-56,-5,27,77,-4,48,-61,-118,-70,-28,-20,-4,16,37,-53, /* [2][0][][] */ 84,-29,-12,-49,67,83,32,-7,6,-85,4,-21,-47,-14,-15,-44,44,47,-65,18,25,44,127,-34,11,-7,-37,54,-37,55,18,6,3,-75,-67,-43,-14,-10,-101,4,-24,41,40,-3,24,-19,-2,63,-6,-33,20,27,-4,32,19,19,22,-27,14,24,84,37,1,-24,-42,56,-5,38,20,78,40,-54,28,-35,-82,-74,-16,-40,25,-23,-37,-1,-36,21,-38,49,-44,-48,-29,60,68,4,72,-29,15,-22, /* [3][0][][] */ 39,-8,29,14,17,30,-18,-19,14,-19,21,47,-5,30,27,15,-30,29,3,8,16,7,-24,-11,-48,-43,-91,-127,-53,17,13,-19,1,5,57,-53,-1,-19,-6,41,-56,-31,-26,11,-67,15,-75,32,13,20,24,-3,-61,-7,-8,18,-40,-6,46,53,-24,68,47,-40,-27,-57,-26,21,-44,-13,-23,-34,6,44,-35,38,32,-54,29,51,-40,68,10,-60,55,26,-22,71,-4,1,-11,-34,16,4,81,5, /* [4][0][][] */ 46,-38,-25,-4,3,127,-22,30,-49,5,-86,7,9,5,80,-53,39,-46,35,83,36,-14,-28,66,-22,-4,-35,60,-14,-103,24,88,60,-20,5,-15,-2,-83,-46,20,72,1,18,-3,18,10,-48,-39,7,-58,5,42,99,-19,38,-13,-69,-16,-16,16,21,-10,42,50,-19,-27,-8,-16,-40,67,32,-16,-58,10,-44,-97,11,-36,-38,-28,34,-99,-70,49,30,49,-32,-4,26,-116,18,23,68,74,-52,6, /* [5][0][][] */ -42,-127,49,-52,69,-15,13,4,81,49,-72,-65,-81,22,50,6,77,-5,9,-22,74,-41,71,-10,-32,-95,98,52,-51,68,48,11,-95,21,-26,46,-28,42,115,29,31,-36,-23,-16,-69,36,24,-93,81,-60,15,8,-4,-48,-29,-39,-30,-42,8,-71,-26,26,8,-55,-47,54,-68,-2,42,-18,-69,10,2,-92,-29,7,-63,-6,-1,-5,-23,18,53,-45,23,-18,-4,4,-55,-75,-28,-62,12,25,-10,-48, /* [6][0][][] */ -46,40,12,0,-18,-4,36,-80,87,60,-76,77,-5,-16,7,-51,-45,20,-6,-21,36,-29,-32,24,-38,37,2,-127,9,-11,22,-52,-10,65,36,30,-7,-44,16,14,-19,-47,-14,3,17,43,-21,7,-21,-9,11,-16,-26,-54,-8,-21,-42,52,-32,25,60,11,23,-66,-9,-20,-31,20,-28,-1,26,-31,15,-17,-43,14,34,-50,-11,5,43,0,34,-67,53,-59,-24,5,-7,-26,-36,19,32,57,55,-4, /* [7][0][][] */ 5,-92,21,28,-15,66,3,-39,39,54,60,-30,-18,69,-101,-15,-56,84,50,54,33,23,46,-96,-43,26,97,-83,0,2,-19,-13,13,56,12,32,52,-10,66,-40,37,-51,-80,-46,6,45,0,32,-11,-30,78,-7,-29,27,48,15,-91,-32,-6,-79,-24,65,17,-69,-23,69,-21,-32,-44,11,41,9,28,19,-8,66,-52,75,-95,127,92,-12,107,-44,-57,-52,7,3,-29,67,-19,8,17,29,54,21, /* [8][0][][] */ 62,26,17,-39,-52,30,34,3,71,-4,-40,-110,-6,33,-76,-56,127,-19,-4,-9,6,-99,-31,32,28,30,69,110,-22,-33,5,28,49,25,9,-29,3,-6,-78,86,-47,53,-13,82,74,-8,42,-41,84,-39,-74,-32,30,9,61,13,17,59,49,21,-2,-45,-42,83,-63,79,-41,-79,-34,25,1,-31,-14,37,39,-22,41,20,11,-19,-53,-5,22,-55,-38,33,31,35,14,-93,-5,-23,-68,-44,-11,-54, /* [9][0][][] */ 29,-20,-23,33,42,24,-31,-7,-72,2,64,-62,-1,39,-25,-12,-29,-2,11,9,5,11,67,-32,-71,-9,31,8,68,73,-13,-18,52,55,-11,-2,25,-18,-40,10,32,25,-36,-24,-36,13,-68,-10,73,11,20,27,5,2,-40,20,8,23,19,-31,15,55,77,-39,39,4,-26,-90,-10,-6,-54,-44,-59,127,-4,-44,-82,45,-13,10,-13,48,-20,27,5,91,71,-45,4,41,35,-14,41,6,-4,3, /* [10][0][][] */ 14,10,-13,59,49,-35,-9,-22,-42,-47,-92,-3,7,2,-81,-3,7,50,7,-25,2,-22,-30,97,30,25,-14,-23,-55,6,-31,-87,38,66,-10,63,30,95,-7,-41,45,-8,42,-3,50,-48,6,31,-75,-76,26,-57,-2,-27,-40,4,-79,-20,-50,-13,28,-41,-21,-24,-25,-19,44,-9,-88,17,-1,-79,-38,-45,-16,20,-20,127,54,9,14,23,-47,27,-59,-34,73,7,41,17,-49,-26,-9,33,46,85, /* [11][0][][] */ -51,-12,9,-43,-114,-15,65,-56,-81,84,-2,27,0,24,-85,-15,-47,-13,112,-34,8,44,-64,-10,15,13,5,-119,35,51,-41,-14,-19,40,-10,4,30,5,64,2,-15,-33,-21,-29,29,-109,-50,10,50,-14,-82,33,5,-64,-7,-7,34,-51,-23,35,52,-5,-1,-43,-58,-38,9,48,5,25,90,37,41,41,10,4,-127,-54,2,45,-28,3,101,-104,-76,-10,48,-37,95,9,30,51,-49,22,2,46, /* [12][0][][] */ 12,-52,-127,-10,-14,48,9,31,76,-28,68,-6,46,8,-12,3,-20,10,-14,16,23,-19,52,-30,-16,7,-59,-62,-23,-5,-6,-8,-33,8,-40,88,-69,2,50,47,43,1,-47,-55,29,71,36,-13,68,-6,27,4,-65,-17,56,-17,-33,-80,64,45,-25,27,11,17,24,20,-6,-14,41,6,12,-71,-7,80,-53,-45,-87,70,-55,63,-10,-13,-16,-51,-31,-5,-3,-65,-25,83,-16,11,-36,-8,20,108, /* [13][0][][] */ -27,51,-64,6,48,74,-42,16,-70,12,-7,-19,15,-58,38,41,83,13,24,2,26,-27,93,17,30,-31,69,70,13,-50,-26,-44,-66,-4,22,-31,-21,-17,-127,-21,24,-8,36,-47,-66,1,-43,50,18,88,-28,32,-20,10,101,40,-29,28,20,-48,72,2,8,29,-37,73,50,52,13,-2,-1,-96,-45,33,18,23,-19,38,30,-40,22,-14,53,23,5,25,-5,7,26,41,23,47,-51,35,-52,-29, /* [14][0][][] */ 74,74,12,44,75,32,-25,24,-46,-86,-16,-39,34,-5,103,21,-2,20,-36,30,-65,-69,58,-16,97,83,-4,-26,-41,40,-13,11,-9,-34,34,-5,-4,-24,-96,-70,127,55,76,-15,-52,4,25,56,-7,-106,-41,-48,-31,-11,-1,69,-56,35,-35,-24,-7,7,40,-32,22,12,48,24,20,-65,-21,-62,-43,14,114,-12,11,-82,65,-12,63,77,-16,28,40,26,20,100,41,-59,-30,73,-23,64,26,9, /* [15][0][][] */ 91,-60,-20,-55,48,45,19,55,11,-45,66,-66,-2,62,15,-22,30,59,2,26,28,-52,62,-42,61,7,72,29,-41,67,-6,-40,-27,1,26,38,40,67,-36,-22,-98,-57,10,-53,56,-57,-47,-8,-66,33,-30,4,-1,-98,-53,51,23,-2,58,49,-31,14,-10,23,-106,119,44,-14,-7,27,59,-26,5,-46,34,-21,-112,3,102,-80,-127,-33,-54,-33,-32,0,25,42,-18,-18,27,-2,-68,9,-1,17, }; const TfArray<4, int> tensor_dimension74 = { 4, { 16,1,1,96 } }; const TfArray<16, float> quant74_scale = { 16, { 0.0029689660295844078, 0.0036683478392660618, 0.0036433746572583914, 0.0055709285661578178, 0.004464044701308012, 0.0029796732123941183, 0.0048920959234237671, 0.0035386832896620035, 0.0034275264479219913, 0.0055631981231272221, 0.0042301672510802746, 0.0040534809231758118, 0.0038629944901913404, 0.0044601159170269966, 0.0035513832699507475, 0.0031277576927095652, } }; const TfLiteAffineQuantization quant74 = { (TfLiteFloatArray*)&quant74_scale, (TfLiteIntArray*)&g0::quant73_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data75[96] = { -1072, -2091, -1261, -3918, 10708, -216, 494, 7802, -3367, 2821, -4263, 1304, -1282, -560, 661, -6598, 9674, -2870, -905, -38, 91, -3229, 150, -3089, -606, -3300, -489, -400, 2757, 1972, -442, -1778, -939, -2321, 216, -2072, -1665, -2190, -4446, 10713, -7215, -3445, 6963, -1932, -5490, -2592, -2028, -4117, -276, 5023, 2327, -873, -3503, -200, -1653, -546, -1923, 1624, -1606, -3036, -4652, -1244, 790, 215, 4569, 11446, -2914, -2158, -2170, 2092, -4249, -5627, -671, -4520, -4282, 11557, -5699, -1936, -2932, -1231, -1439, -736, -1825, -9151, -4352, 2546, -2529, -384, -223, -4582, -2496, -1321, -910, -4719, 284, -4182, }; const TfArray<96, float> quant75_scale = { 96, { 0.00039474619552493095, 0.00021654792362824082, 0.00031647307332605124, 0.00017102004494518042, 0.00013702685828320682, 0.00020032591419294477, 0.00022478542814496905, 0.00021338673832360655, 0.00020925063290633261, 0.00023672175302635878, 0.00022775513934902847, 0.00034400960430502892, 0.00026762712514027953, 0.00022868139785714447, 0.00016410181706305593, 0.00014336711319629103, 0.00015209674893412739, 0.00015905901091173291, 0.00031735419179312885, 0.00027371218311600387, 0.00031643162947148085, 0.00012347866140771657, 0.00018954994447994977, 0.00013140516239218414, 0.00016184286505449563, 0.00025580512010492384, 0.0005658359732478857, 0.00021176702284719795, 0.00019825519120786339, 0.0001346768403891474, 0.00021334816119633615, 0.00020259898155927658, 0.00020424007379915565, 0.00019772631640080363, 0.00024042495351750404, 0.0001914625900099054, 0.00026654050452634692, 0.00034305566805414855, 0.00021171118714846671, 0.00012389471521601081, 0.00012835719098802656, 0.00024061466683633626, 0.00017696572467684746, 0.00024896571994759142, 0.00037700220127590001, 0.00025198541698046029, 0.00017959924298338592, 0.00020131879136897624, 0.00025298187392763793, 0.00033760923543013632, 0.00025563206872902811, 0.0002484858559910208, 0.00020445024711079895, 0.00026833987794816494, 0.00031946061062626541, 0.00018720253137871623, 0.00017667170322965831, 0.00021778921654913574, 0.00024092396779451519, 0.0002153903478756547, 0.00017740944167599082, 0.00018651175196282566, 0.00026498717488721013, 0.00026980729307979345, 0.00013536117330659181, 0.00014675052079837769, 0.00016800880257505924, 0.00027647809474729002, 0.0002284090151078999, 0.00028984330128878355, 0.00032941205427050591, 0.00021780203678645194, 0.00025234060012735426, 0.00023768794198986143, 0.00022577810159418732, 0.00010924682283075526, 0.00037894502747803926, 0.00027776244678534567, 0.00031894523999653757, 0.00029331888072192669, 0.00028608576394617558, 0.00020093066268600523, 0.00051372533198446035, 0.00022461125627160072, 0.00024225340166594833, 0.00026771894772537053, 0.0002965620078612119, 0.00025739861303009093, 0.00029322100454010069, 0.00027573609258979559, 0.00023209722712635994, 0.00023604773741681129, 0.00021478380949702114, 0.00017980219854507595, 0.0002208052173955366, 0.0002227340592071414, } }; const TfLiteAffineQuantization quant75 = { (TfLiteFloatArray*)&quant75_scale, (TfLiteIntArray*)&g0::quant69_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data76[1*3*3*96] = { /* [0][0][][] */ 90,28,127,24,-75,99,31,37,27,-38,80,-5,4,17,-11,4,-37,93,4,-35,40,8,49,4,-74,25,-22,-66,-65,-120,16,-86,10,11,42,21,42,14,-1,-51,5,-2,7,69,0,89,-20,39,-43,25,127,-55,-13,56,-7,18,-18,-7,-20,-11,-27,-42,-10,35,-30,-117,19,1,-8,-20,12,38,-19,53,9,21,49,9,-13,5,-2,6,-4,2,-5,64,-20,30,9,16,-8,23,-19,29,-44,38, -22,-19,-13,36,-78,-2,15,-6,4,-34,27,17,-15,127,-18,127,-127,9,28,-12,-3,-53,127,-48,57,36,-21,-72,-48,-44,-127,39,-3,-67,23,81,-32,19,40,-127,114,-5,-65,127,127,127,-16,-46,113,-81,-9,127,73,-15,15,-69,83,-7,-39,-14,42,123,-54,71,-82,-127,50,-108,22,-32,102,46,67,127,56,-40,-37,-4,10,25,35,127,-51,61,-50,44,-66,13,-35,35,37,51,52,70,18,35, 45,-9,-3,48,-56,36,7,-22,-8,47,32,-7,-24,-23,4,83,-41,52,1,-27,-32,-37,24,32,91,44,-8,-34,-127,63,-29,-13,38,41,-44,9,-3,-3,8,-31,-26,-17,-12,23,-37,2,21,6,27,46,75,7,6,3,-9,27,-21,-24,2,-39,45,-60,2,42,33,-38,25,127,14,-38,-127,127,2,44,-5,-31,21,6,15,-6,-7,56,20,12,89,12,-13,11,-82,-27,5,6,2,48,8,-24, /* [0][1][][] */ 127,127,-13,30,-44,14,121,-98,-32,-96,124,1,-44,-37,-110,50,-64,127,-26,127,-71,13,-92,10,-88,73,59,86,84,-127,100,113,75,87,-51,127,44,127,11,-68,41,70,-127,8,12,-7,115,82,49,-28,-106,-8,1,1,-47,-127,-127,-63,6,90,127,-14,-45,38,-31,-92,95,41,81,-62,54,64,-3,21,47,-116,-8,-56,1,10,4,-40,18,75,32,-68,39,-19,-48,127,-24,-20,-41,58,105,127, 53,43,27,66,-20,-127,3,-127,52,-105,-106,105,99,78,-127,55,55,34,-72,39,7,127,-54,104,22,81,-92,-127,-31,61,64,66,47,127,-100,-65,-28,-29,127,-99,127,127,-88,-65,86,-56,-127,29,-127,-127,-68,46,127,-33,10,-12,70,-15,-52,-76,46,-103,-2,-127,107,-78,-36,80,127,-58,-15,40,127,-81,127,-73,127,-53,127,95,127,0,43,127,127,-127,127,127,23,83,127,-83,-62,-15,-48,-15, -27,14,-28,127,44,-62,87,-54,127,127,-82,-11,-22,36,86,61,-15,-50,-16,-34,31,92,-39,-78,127,127,34,4,98,111,-56,-8,127,8,30,60,33,11,-14,-99,8,17,-5,3,-82,12,48,-6,-39,-6,-16,25,-56,6,127,-19,7,32,44,88,52,70,57,30,-111,22,40,-32,-66,127,66,-76,-2,-2,-12,25,14,-24,-89,-127,13,-41,20,47,-111,-71,75,62,127,-35,56,127,43,46,3,47, /* [0][2][][] */ 2,-12,-9,-26,-38,0,26,-15,48,-20,127,-42,29,-14,-43,-33,-19,88,41,4,127,12,-66,93,-29,-44,42,82,44,-94,10,-26,-68,-24,23,3,23,-55,15,98,-38,-1,11,19,46,-1,1,101,-27,12,60,3,19,15,6,56,-17,-93,22,127,63,-34,22,20,48,-55,-71,0,53,-42,10,-22,18,37,44,-92,35,127,44,15,2,-3,34,39,-6,-93,-6,19,44,25,-24,59,-69,-35,127,-28, -14,18,46,10,-63,10,-88,-38,40,32,-18,-127,127,-8,5,2,-67,13,127,10,-90,62,5,127,-28,8,127,8,-44,-56,-60,127,-7,1,127,-121,127,9,57,-79,50,17,-35,2,-9,39,107,127,-22,-59,-61,7,84,127,11,95,103,-56,127,30,49,8,127,-86,127,71,127,21,-61,6,27,42,-61,26,-12,-127,14,39,6,36,1,39,127,-3,38,-43,-50,-13,-41,-6,-19,-17,127,127,-60,17, -1,9,-20,-14,-127,-4,-127,-57,-55,0,6,2,-43,-32,-30,39,-44,-55,-6,26,-29,-27,-48,53,16,-31,3,54,14,-34,114,-60,-88,10,-37,20,-43,-13,-2,-32,-32,-26,29,12,-14,-22,75,58,-14,13,-81,-17,6,-17,-26,62,16,127,15,2,3,127,-34,0,62,-60,36,12,-47,26,-5,25,-47,13,10,-33,-7,41,-1,11,8,54,18,7,73,-10,-13,7,75,11,20,44,9,15,31,-24, }; const TfArray<96, float> quant76_scale = { 96, { 0.016776712611317635, 0.0092032868415117264, 0.013450105674564838, 0.0072683515027165413, 0.005823641549795866, 0.0085138510912656784, 0.0095533803105354309, 0.0090689361095428467, 0.008893151767551899, 0.010060674510896206, 0.0096795931458473206, 0.014620408415794373, 0.011374153196811676, 0.0097189592197537422, 0.0069743269123136997, 0.006093102041631937, 0.0064641116186976433, 0.0067600077018141747, 0.013487552292644978, 0.011632767505943775, 0.013448344543576241, 0.0052478429861366749, 0.0080558722838759422, 0.0055847195908427238, 0.0068783215247094631, 0.01087171770632267, 0.024048028513789177, 0.0090000983327627182, 0.0084258457645773888, 0.0057237655855715275, 0.0090672969818115234, 0.0086104562506079674, 0.0086802029982209206, 0.0084033682942390442, 0.010218060575425625, 0.0081371599808335304, 0.011327971704304218, 0.014579866081476212, 0.008997725322842598, 0.0052655250765383244, 0.005455180536955595, 0.010226123034954071, 0.0075210430659353733, 0.010581042617559433, 0.016022592782974243, 0.010709379799664021, 0.0076329675503075123, 0.0085560483857989311, 0.01075172983109951, 0.014348392374813557, 0.010864363051950932, 0.010560648515820503, 0.0086891353130340576, 0.011404444463551044, 0.01357707567512989, 0.0079561071470379829, 0.0075085470452904701, 0.0092560416087508202, 0.010239268653094769, 0.0091540897265076637, 0.0075399009510874748, 0.0079267490655183792, 0.0112619549036026, 0.011466809548437595, 0.0057528498582541943, 0.0062368973158299923, 0.0071403742767870426, 0.011750319041311741, 0.0097073828801512718, 0.012318340130150318, 0.014000012539327145, 0.0092565864324569702, 0.010724475607275963, 0.010101737454533577, 0.0095955692231655121, 0.0046429899521172047, 0.016105163842439651, 0.011804903857409954, 0.013555171899497509, 0.012466051615774632, 0.012158645316958427, 0.0085395528003573418, 0.021833326667547226, 0.0095459781587123871, 0.010295769199728966, 0.01137805450707674, 0.012603885494172573, 0.010939440689980984, 0.012461892329156399, 0.011718783527612686, 0.0098641319200396538, 0.010032028891146183, 0.0091283116489648819, 0.0076415929943323135, 0.0093842213973402977, 0.0094661973416805267, } }; const TfLiteAffineQuantization quant76 = { (TfLiteFloatArray*)&quant76_scale, (TfLiteIntArray*)&g0::quant69_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data77[96] = { -1831, 2019, 1551, 327, 744, 104, 1799, 1740, 740, 3551, -1536, 4499, -912, -904, 964, 417, 568, 1152, 4789, 1280, 99, 983, -335, 1015, 741, -527, -3226, -313, 1290, 680, 1164, 1163, 1412, 717, 1546, 1312, 179, 1072, -604, 818, 1954, 1388, 848, 756, 6584, 2857, 618, 489, 2883, 4837, -1504, -187, 751, 133, 2949, 3067, 883, 2922, 650, 2713, 1214, 587, 463, 1451, 682, 5185, 1075, 783, 3854, 409, 3301, 3010, 137, 2331, 2355, 94, 4758, -272, 3484, 2774, -187, -101, -1962, 2311, 2088, -1188, 5243, 730, 6160, 152, 890, 419, -188, 336, 715, 427, }; const TfArray<96, float> quant77_scale = { 96, { 0.0001994198391912505, 0.00026226515183225274, 0.00020351931743789464, 0.000381075544282794, 0.00021999758610036224, 0.00032321689650416374, 0.00012826531019527465, 0.00019310449715703726, 0.00022511501447297633, 0.00011608794739004225, 0.0002220675814896822, 0.00012353343481663615, 0.00020235970441717654, 0.00016013420827221125, 0.00024233468866441399, 0.00040284625720232725, 0.0002263102651340887, 0.00021179232862778008, 0.00012531358515843749, 0.00021824677241966128, 0.00020527385640889406, 0.00037951205740682781, 0.00030461707501672208, 0.00022644140699412674, 0.00015825020091142505, 0.00023011503799352795, 0.00018089426157530397, 0.00030280943610705435, 0.00015849884948693216, 0.00030822941334918141, 0.00022249811445362866, 0.0001507747801952064, 0.00020334217697381973, 0.00029125879518687725, 0.00022465705114882439, 0.00025303271831944585, 0.0002006596332648769, 0.00018387260206509382, 0.00027269491693004966, 0.00017753538850229234, 0.00025956888566724956, 0.00024979643058031797, 0.00024850803310982883, 0.00027431591297499835, 0.00013486156240105629, 0.00018924185133073479, 0.00019745029567275196, 0.00019718235125765204, 0.00017095929069910198, 0.00010503669909667224, 0.00013118065544404089, 0.00027922072331421077, 0.00023056412464939058, 0.00025794538669288158, 0.00016017736925277859, 0.00018629043188411742, 0.00026422174414619803, 0.00016936758765950799, 0.00020677971770055592, 0.00017517959349788725, 0.00026413099840283394, 0.00025770484353415668, 0.00025090601411648095, 0.00018496920529287308, 0.00028501157066784799, 0.00010913085134234279, 0.00020506577857304364, 0.00020382812363095582, 0.0001557431387482211, 0.00031361443689092994, 0.00017607820336706936, 0.00017893646145239472, 0.0002658350276760757, 0.00018792747869156301, 0.00017770843987818807, 0.00019488195539452136, 0.00015149175305850804, 0.00035243306774646044, 0.00017173898231703788, 0.00015211707795970142, 0.00027480756398290396, 0.00027767944266088307, 0.00016784464241936803, 0.00021261577785480767, 0.00021719635697081685, 0.00019021530169993639, 0.00013093573215883225, 0.00021547966753132641, 9.5935647550504655e-05, 0.0002130561915691942, 0.00018533540423959494, 0.00031251745531335473, 0.0002390489389654249, 0.00026024860562756658, 0.00024062662851065397, 0.0002307160320924595, } }; const TfLiteAffineQuantization quant77 = { (TfLiteFloatArray*)&quant77_scale, (TfLiteIntArray*)&g0::quant69_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data78[96*1*1*16] = { /* [0][0][][] */ 87,-11,127,-31,20,-39,-106,8,-23,-48,-81,-11,-60,90,28,-94, /* [1][0][][] */ -6,30,-20,-41,-8,-30,101,41,-6,-81,-75,-2,127,13,-25,-67, /* [2][0][][] */ 7,-32,-29,10,-28,-67,-58,-127,29,46,20,45,-26,82,-78,-106, /* [3][0][][] */ 16,-29,63,-31,-43,-6,0,75,-8,-78,-93,25,103,127,-52,-92, /* [4][0][][] */ -30,-48,-52,117,-102,-127,-20,-79,45,63,114,53,-63,123,24,-91, /* [5][0][][] */ 83,-63,-6,127,-28,-60,15,-38,-29,41,-48,26,-48,-12,-5,-10, /* [6][0][][] */ -127,55,-13,56,63,-27,112,3,-79,-82,-8,-32,-94,20,26,-5, /* [7][0][][] */ 99,82,127,16,39,-5,-21,-55,-31,43,58,1,124,-3,93,-7, /* [8][0][][] */ -71,39,-18,43,7,8,65,4,67,-24,127,-94,12,-35,22,-59, /* [9][0][][] */ -44,0,-67,121,59,1,4,73,-108,12,-49,48,-54,127,-2,30, /* [10][0][][] */ -35,-40,113,127,-99,-3,98,69,-55,67,-1,-73,-23,-63,-7,-49, /* [11][0][][] */ 0,73,78,-61,27,75,-13,-24,-127,-13,24,-62,-51,22,-77,9, /* [12][0][][] */ -80,-75,-77,-32,45,-26,76,70,34,61,44,-121,50,127,-63,-70, /* [13][0][][] */ -118,3,-53,33,60,93,127,72,54,-1,-116,-21,-32,40,49,-120, /* [14][0][][] */ 25,29,-127,8,-20,36,5,19,58,93,33,88,35,38,14,-23, /* [15][0][][] */ -23,-4,54,41,-35,-97,-20,127,-35,-48,12,63,-36,23,2,-70, /* [16][0][][] */ -17,127,51,-2,-17,49,52,61,-32,120,6,-11,-64,27,-35,-33, /* [17][0][][] */ 20,76,-83,12,-29,9,58,-127,-104,-65,-116,-9,-89,57,2,-81, /* [18][0][][] */ 18,20,62,82,98,-127,80,-14,114,-6,-51,1,16,-31,100,-65, /* [19][0][][] */ 44,64,16,43,36,-127,42,53,60,-28,-42,66,78,-19,69,-21, /* [20][0][][] */ -97,62,-26,-45,-9,12,26,98,-8,29,89,76,127,-88,35,45, /* [21][0][][] */ -66,-17,40,-33,66,-10,-6,74,-106,-36,127,-54,-60,103,-22,11, /* [22][0][][] */ 40,-81,-104,127,-68,-120,-9,-35,-31,58,-33,26,68,-42,-77,126, /* [23][0][][] */ -7,105,30,-70,116,101,-51,-61,-22,83,-27,16,41,24,-127,-16, /* [24][0][][] */ -89,66,-97,-51,-92,-115,-2,-67,39,-56,74,-127,125,-29,25,-53, /* [25][0][][] */ -104,-99,127,12,-25,-9,51,-81,1,56,45,-90,-9,47,89,-51, /* [26][0][][] */ 7,65,-34,-45,-21,89,-19,0,1,110,-5,-84,-61,127,-50,-40, /* [27][0][][] */ 5,93,56,-85,-5,44,-22,-40,36,64,-40,-127,-118,13,1,5, /* [28][0][][] */ 53,37,-84,-33,-15,-56,-21,-49,31,-127,45,49,-19,13,-123,-56, /* [29][0][][] */ 14,-44,-16,-21,60,-80,-8,-61,90,-46,37,-66,65,127,-87,39, /* [30][0][][] */ -41,76,-24,-6,-73,11,16,39,20,90,127,-15,-23,45,24,8, /* [31][0][][] */ -13,34,-121,-18,-111,26,74,-13,6,-82,127,40,111,-86,44,-28, /* [32][0][][] */ -77,8,-49,-41,-58,54,75,-7,-26,127,105,-5,-79,31,-20,37, /* [33][0][][] */ 37,89,-7,-3,80,69,-3,127,13,21,-27,-17,25,50,17,8, /* [34][0][][] */ -37,-59,-81,47,-67,37,68,-80,-59,51,12,-99,-127,42,-54,-94, /* [35][0][][] */ -34,-11,5,-96,57,67,-22,36,3,-10,-27,-58,-127,36,22,-21, /* [36][0][][] */ -99,-3,-16,-92,-4,54,-96,60,-74,127,72,-22,-110,18,-5,-37, /* [37][0][][] */ 68,-127,-16,-11,-59,-62,45,54,-28,59,101,9,-85,35,-86,-56, /* [38][0][][] */ -2,-79,18,-73,57,-10,63,32,-28,52,-88,89,-23,127,-4,45, /* [39][0][][] */ 84,127,-93,-73,39,-61,8,-46,-30,-21,-93,-42,-54,-102,-89,120, /* [40][0][][] */ -77,58,1,20,-54,-22,-118,-40,-14,-127,-74,44,-3,113,9,15, /* [41][0][][] */ 37,63,-8,53,16,-127,-11,88,-60,46,24,49,-12,-38,-43,66, /* [42][0][][] */ 74,91,1,90,-34,32,62,49,12,-4,27,-127,49,45,26,53, /* [43][0][][] */ -51,-127,-19,52,21,-39,-20,-53,89,-42,75,-58,-63,74,28,9, /* [44][0][][] */ 35,-3,53,-99,5,-40,64,-64,127,-13,48,12,30,103,7,84, /* [45][0][][] */ -5,66,-34,18,69,-61,-24,92,-56,36,-25,127,-41,-15,-100,-73, /* [46][0][][] */ 51,115,-17,-118,127,95,49,118,-48,57,-25,32,-14,-81,-33,28, /* [47][0][][] */ 127,-37,-36,-53,-72,-36,54,31,12,48,-5,-35,5,-79,-111,2, /* [48][0][][] */ -29,-26,46,-2,-2,127,127,15,-37,-99,-3,53,21,-21,-38,3, /* [49][0][][] */ 45,-54,34,-40,-44,9,75,91,108,28,1,52,127,-77,-99,-20, /* [50][0][][] */ 126,33,81,72,83,-35,-43,-2,-48,51,-109,-4,4,86,127,18, /* [51][0][][] */ -5,14,2,8,33,43,116,127,-51,-64,65,32,-44,-22,59,-67, /* [52][0][][] */ -127,0,-22,3,-90,-59,-51,-40,18,-63,-12,-71,-108,-42,58,108, /* [53][0][][] */ 4,96,90,-54,83,-30,18,127,-13,40,51,-20,76,4,20,-43, /* [54][0][][] */ 82,6,-18,-33,-39,41,35,28,-65,-34,55,57,-84,-11,-56,-127, /* [55][0][][] */ 10,78,33,9,21,-97,-26,-4,54,112,-18,81,-37,53,-127,84, /* [56][0][][] */ 26,-40,-13,30,4,-127,56,-32,19,-19,14,99,-74,25,21,42, /* [57][0][][] */ -75,-60,88,41,-12,56,-6,-89,-45,13,-50,87,4,-47,-16,-127, /* [58][0][][] */ 89,-29,48,-10,16,-74,54,-2,15,74,107,127,54,-60,80,37, /* [59][0][][] */ -84,127,54,-63,14,-16,60,43,-4,31,15,0,84,-80,-3,21, /* [60][0][][] */ -3,22,38,102,127,-11,-15,29,-34,72,69,-23,9,-8,0,-23, /* [61][0][][] */ 10,-13,-5,87,84,1,127,19,12,14,6,1,59,41,-19,-24, /* [62][0][][] */ -38,-83,112,15,-90,-16,15,52,-29,-48,-88,127,-34,-40,93,-82, /* [63][0][][] */ 127,-56,-45,82,-29,-113,-26,-31,61,-76,-20,-15,38,-22,-7,6, /* [64][0][][] */ 16,2,-32,76,-23,-97,-23,-32,53,-67,68,40,-26,-8,-35,127, /* [65][0][][] */ -82,71,14,4,8,-114,127,-14,-23,-28,41,-27,72,107,-7,-115, /* [66][0][][] */ -32,127,47,7,11,54,-8,87,51,-23,-15,-122,53,82,-112,82, /* [67][0][][] */ 73,-50,-127,66,20,-75,-27,-32,103,23,-69,-4,34,-59,-39,109, /* [68][0][][] */ -40,34,5,-14,-65,7,-7,97,-96,62,-20,-4,59,-127,49,-116, /* [69][0][][] */ 0,-41,46,16,-11,-71,2,58,12,-6,74,-10,-127,-42,-15,2, /* [70][0][][] */ 65,-19,15,50,-106,-102,-38,33,-65,-31,-72,127,28,21,28,-47, /* [71][0][][] */ -59,45,5,54,54,-90,45,37,61,93,127,-21,95,30,34,-22, /* [72][0][][] */ -67,-17,27,5,66,85,-34,30,50,96,-30,-127,14,18,23,3, /* [73][0][][] */ 61,-56,-74,28,-15,-3,64,-31,48,-67,-13,127,-30,13,27,1, /* [74][0][][] */ -28,-36,80,-41,127,-41,70,-89,-64,-18,-56,-56,114,-56,-99,-59, /* [75][0][][] */ -61,-82,42,-37,54,93,127,-98,-3,23,-11,60,-27,75,-28,-71, /* [76][0][][] */ -20,-62,-28,-48,-47,-13,-127,-26,6,45,-2,119,97,-24,19,58, /* [77][0][][] */ -18,-5,-33,-36,-15,77,-31,-20,-64,45,41,-127,-96,101,-18,-61, /* [78][0][][] */ 19,21,7,-74,19,15,-49,64,29,32,127,-46,27,121,-62,11, /* [79][0][][] */ -50,33,-104,-26,33,-106,-98,-9,-127,-48,-73,1,-11,-93,-12,-21, /* [80][0][][] */ 66,-27,56,12,8,16,74,87,7,52,-13,-18,80,-8,-32,-127, /* [81][0][][] */ -127,0,-1,27,-6,-9,94,66,17,13,11,28,71,25,55,20, /* [82][0][][] */ -73,-83,-12,-35,-56,-123,-1,-58,-87,38,-18,-13,92,-51,127,89, /* [83][0][][] */ -99,-58,-93,-127,83,-120,16,18,14,-85,5,101,-8,-10,111,-28, /* [84][0][][] */ -44,47,22,-16,5,50,26,27,-91,37,32,-127,-45,69,-65,1, /* [85][0][][] */ 11,-13,-74,103,-48,-22,92,-2,-38,-30,47,-55,-127,78,95,-107, /* [86][0][][] */ 17,-21,-5,33,-72,51,-56,-127,-57,83,-127,25,-60,-63,-26,-26, /* [87][0][][] */ 50,53,20,-41,127,-126,-17,-25,-4,26,-11,-62,-88,-18,-15,-111, /* [88][0][][] */ -37,127,-64,-85,-66,-55,-5,-10,33,67,-94,66,-19,-104,26,118, /* [89][0][][] */ -72,26,72,108,-127,18,-52,37,0,-15,-69,17,-28,77,16,82, /* [90][0][][] */ 71,-80,-98,-87,-8,86,-62,98,66,30,41,109,-127,-79,84,-47, /* [91][0][][] */ 127,21,64,55,-39,-8,-36,-45,-40,8,-15,-3,83,81,-39,55, /* [92][0][][] */ -52,2,2,62,-54,10,127,60,17,-1,-55,88,-46,-30,70,49, /* [93][0][][] */ 65,-4,32,54,-26,-123,-5,-13,18,116,116,59,-29,-127,-38,2, /* [94][0][][] */ -22,-59,-49,-83,76,-127,95,54,11,61,36,85,-28,36,-76,-64, /* [95][0][][] */ -43,-89,52,-32,-127,-58,118,41,6,22,-48,58,-19,-31,-77,-76, }; const TfArray<96, float> quant78_scale = { 96, { 0.0022228972520679235, 0.002923422958701849, 0.0022685935255140066, 0.0042477808892726898, 0.002452273853123188, 0.0036028411705046892, 0.0014297504676505923, 0.0021525013726204634, 0.0025093168951570988, 0.0012940115993842483, 0.0024753476027399302, 0.0013770051300525665, 0.0022556674666702747, 0.0017849873984232545, 0.0027012615464627743, 0.0044904551468789577, 0.0025226401630789042, 0.0023608112242072821, 0.0013968481216579676, 0.002432757755741477, 0.002288151066750288, 0.0042303530499339104, 0.0033955122344195843, 0.0025241018738597631, 0.0017639866564422846, 0.0025650511961430311, 0.0020163960289210081, 0.0033753628376871347, 0.0017667583888396621, 0.0034357781987637281, 0.0024801467079669237, 0.0016806595958769321, 0.0022666188888251781, 0.0032466098200529814, 0.0025042120832949877, 0.0028205104172229767, 0.0022367171477526426, 0.0020495951175689697, 0.0030396815855056047, 0.0019789552316069603, 0.0028933680150657892, 0.0027844363357871771, 0.0027700746431946754, 0.0030577504076063633, 0.0015032778028398752, 0.0021094451658427715, 0.0022009431850165129, 0.002197956433519721, 0.0019056526944041252, 0.0011708253296092153, 0.0014622473390772939, 0.0031124234665185213, 0.0025700570549815893, 0.0028752712532877922, 0.0017854685429483652, 0.0020765461958944798, 0.0029452326707541943, 0.0018879103008657694, 0.0023049365263432264, 0.0019526956602931023, 0.0029442210216075182, 0.0028725899755954742, 0.0027968045324087143, 0.0020618187263607979, 0.0031769729685038328, 0.0012164621148258448, 0.0022858316078782082, 0.0022720356937497854, 0.0017360409256070852, 0.0034958040341734886, 0.0019627122674137354, 0.0019945728126913309, 0.0029632155783474445, 0.0020947940647602081, 0.0019808842334896326, 0.0021723143290728331, 0.0016886515077203512, 0.0039285086095333099, 0.0019143437966704369, 0.0016956218751147389, 0.0030632307752966881, 0.0030952431261539459, 0.0018709342693910003, 0.0023699901066720486, 0.0024210489355027676, 0.0021202960051596165, 0.0014595171669498086, 0.002401913283392787, 0.0010693775257095695, 0.0023748993407934904, 0.0020659007132053375, 0.0034835762344300747, 0.0026646358892321587, 0.0029009447898715734, 0.0026822220534086227, 0.0025717504322528839, } }; const TfLiteAffineQuantization quant78 = { (TfLiteFloatArray*)&quant78_scale, (TfLiteIntArray*)&g0::quant69_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data79[16] = { -4632, -23454, -7289, -6891, 5422, 11205, 4636, 7069, -23619, -1383, -5751, 7849, -8281, 3189, 16664, 1876, }; const TfArray<16, float> quant79_scale = { 16, { 5.5099651945056394e-05, 5.9226058510830626e-05, 7.1172587922774255e-05, 6.7976114223711193e-05, 6.0967558965785429e-05, 7.0801776018925011e-05, 7.8588520409539342e-05, 6.6165164753329009e-05, 6.1898696003481746e-05, 7.6247342803981155e-05, 6.9909925514366478e-05, 7.2300397732760757e-05, 6.5797692514024675e-05, 5.7719924370758235e-05, 6.1313352489378303e-05, 5.0102855311706662e-05, } }; const TfLiteAffineQuantization quant79 = { (TfLiteFloatArray*)&quant79_scale, (TfLiteIntArray*)&g0::quant73_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data80[16*1*1*96] = { /* [0][0][][] */ -11,12,-29,-106,-127,3,13,20,105,-39,-14,46,89,-12,43,-39,58,27,31,35,35,-45,-24,-32,-62,-38,63,-2,28,47,-3,77,-74,-22,0,46,6,-75,-46,-14,-44,-59,12,-30,-45,103,25,-11,40,7,-18,54,-64,-13,-65,-20,37,-25,17,30,29,94,51,31,29,-4,-62,-7,83,43,-65,8,-25,121,34,-2,-51,60,-85,-15,72,5,-46,80,56,6,26,33,17,27,24,3,18,-22,-59,-26, /* [1][0][][] */ 43,-23,5,-54,-11,15,64,-13,7,-58,27,3,32,-22,23,50,127,111,-57,26,-38,1,45,83,30,117,-61,49,-50,65,17,64,31,19,62,52,84,18,-21,39,23,17,-3,10,9,-41,52,3,-86,38,-9,-35,-42,37,54,1,14,-53,-77,45,-21,6,36,100,-67,71,46,38,-117,90,107,5,111,4,9,114,-56,-19,126,-29,-5,24,77,3,6,74,17,69,-18,15,-21,-68,-69,-5,-4,-76, /* [2][0][][] */ -38,-31,-2,22,-32,15,-4,-69,-26,-82,46,127,57,30,70,0,-10,-71,5,-49,30,-21,25,-10,57,38,14,-43,-3,0,75,8,-19,-56,-39,31,-71,-33,-37,26,31,9,-32,-25,77,-6,-18,42,-34,61,-14,-23,47,10,21,90,-12,59,-7,8,56,-15,64,2,-60,21,-2,79,-23,-29,2,59,61,23,72,1,14,37,-60,13,-74,-34,-45,23,63,-9,-37,33,52,-20,30,-25,-22,24,-51,38, /* [3][0][][] */ -28,63,-39,-51,94,59,-41,-97,27,22,-62,26,92,76,59,64,22,-10,7,-35,-7,-17,7,-21,-20,-103,-19,-70,90,-82,-5,-14,29,16,-2,46,57,23,68,5,-4,10,37,30,25,40,-55,72,-34,-74,-11,-107,8,9,95,48,50,39,-82,14,11,56,17,58,-11,23,-26,42,46,36,15,89,-28,29,-18,-33,58,-36,-64,-34,127,88,17,-98,39,19,51,-8,-29,23,28,-45,54,-49,-70,-70, /* [4][0][][] */ -17,-14,26,-48,45,43,69,8,-78,69,37,43,-22,48,28,-33,-6,-55,5,-21,-53,8,51,-46,32,28,-19,-50,-14,37,-65,-20,7,-1,-17,-7,-16,60,8,-22,27,-27,106,38,82,-27,36,-8,-1,-49,-54,7,48,47,8,-12,21,30,-19,51,104,57,-41,10,46,65,11,-13,-18,-52,-45,1,-5,-89,-22,40,-49,4,-3,39,60,98,-52,9,-127,-43,22,-9,-112,-58,-13,41,-59,-31,-44,40, /* [5][0][][] */ -68,24,122,-47,70,65,27,53,24,2,91,33,-3,21,12,17,49,-7,-52,123,-57,-36,-63,-1,41,-24,-28,16,-28,78,13,13,-13,-72,-35,-20,-127,23,8,1,-26,24,10,2,-9,-56,-122,-46,11,-21,13,7,-14,7,5,47,-81,44,22,24,-9,-89,-11,-20,-61,27,-52,-64,-23,6,45,41,-15,-27,43,79,-39,12,-82,25,-39,-37,-32,1,-36,-13,-27,-28,-8,-51,-59,16,34,-9,-40,23, /* [6][0][][] */ -43,58,-36,-2,57,-19,-39,-72,-36,22,-66,90,-46,5,7,7,0,-51,-11,59,-37,-11,-16,33,-43,-13,-15,-28,51,-6,-9,-21,80,23,11,-6,-22,82,49,4,38,-4,-2,12,22,-64,2,-79,-52,18,28,7,13,50,-11,55,46,127,-64,-24,-111,-34,-10,68,62,-12,-31,-37,-26,23,5,-17,19,11,-1,-18,6,-38,-26,-8,-25,28,38,38,53,49,28,-17,-20,-20,-69,10,40,-9,-46,-53, /* [7][0][][] */ 7,24,8,56,-7,36,13,-33,-7,27,47,58,2,-35,-98,-1,98,-7,-45,67,-85,24,-49,-9,-127,12,4,84,-29,-26,83,-62,48,33,98,-90,-75,16,0,3,-4,42,-15,14,-40,-1,38,-18,-67,17,6,-5,-29,-8,71,-59,-50,38,-82,18,6,-37,-41,-6,-46,-18,111,-66,-16,46,-60,2,58,3,-33,-84,56,-11,-60,2,-8,-66,-24,-41,54,16,67,36,-23,-50,-57,84,-41,-47,93,-22, /* [8][0][][] */ 32,-59,63,22,50,-31,-51,7,80,-18,-18,41,75,73,76,18,62,-103,-24,8,-6,-16,-43,2,33,3,10,-42,-34,-84,45,-55,22,100,60,-80,-20,26,-5,45,-5,84,3,-44,20,61,44,62,16,-33,-104,1,-53,-32,-40,41,51,2,41,37,62,15,44,31,-17,11,42,-13,-9,101,12,33,-10,-57,32,59,46,26,127,43,103,-7,32,53,-13,34,-38,-48,120,-4,13,9,-36,49,-35,0, /* [9][0][][] */ -6,-38,-10,53,-39,47,12,7,71,-5,78,20,9,42,-29,-25,53,-64,-3,6,19,33,33,-29,13,-17,-22,23,-17,28,-9,20,37,61,29,83,72,-64,9,-22,-16,-41,52,21,-7,-11,-25,-127,-17,-15,51,34,-44,-32,-54,51,-1,17,16,-11,58,20,-4,-9,6,20,-1,-84,-83,58,-37,-9,60,-55,-36,53,-33,5,-13,-65,-18,17,-54,36,12,23,61,-36,71,40,-15,43,-69,-42,3,48, /* [10][0][][] */ 8,-20,-10,9,70,5,-78,-13,-40,-53,-12,58,-54,56,46,97,-77,82,-127,-7,27,20,-71,-53,-48,-13,81,79,-62,-5,-45,116,16,43,55,31,-51,-9,37,-31,86,-16,-49,29,80,12,-26,3,-88,-59,14,10,-64,-6,-63,-25,-7,45,9,27,13,-95,61,-64,21,-64,61,71,28,-53,-63,71,5,73,-12,-19,5,9,47,-22,-10,-72,-13,56,-68,-39,75,-10,-46,8,36,-111,29,63,30,-77, /* [11][0][][] */ 26,-3,-24,-4,-2,-27,-29,46,11,-28,-81,-7,43,-47,-42,-27,-72,-31,80,-6,0,18,-1,101,-44,-127,42,-38,-52,-71,-16,46,-1,27,15,12,97,-26,13,-27,19,-20,-24,58,-33,13,-82,-35,3,39,-64,17,-2,-28,1,24,48,56,-11,5,-36,-8,27,2,-31,-11,10,24,-32,74,-9,-30,10,-75,-16,-13,-2,-15,11,22,22,-72,26,28,-16,57,-47,16,-12,30,35,6,50,-13,-54,33, /* [12][0][][] */ 95,-33,44,71,24,12,-51,28,24,-29,-42,27,-7,-20,0,-13,-78,65,-14,-47,55,48,-1,-47,-2,-20,34,-21,7,-26,-67,-37,31,1,39,29,24,5,47,30,27,-26,-55,-5,-38,-13,8,67,39,3,-4,53,-70,-34,-68,-33,0,9,18,-30,82,-2,23,-78,-56,-13,24,-5,-5,22,10,19,-28,43,20,23,-12,-23,109,-127,-16,-22,-24,41,-9,10,16,23,-54,28,44,-30,35,84,46,17, /* [13][0][][] */ -53,45,-42,-26,33,-28,16,-73,-27,6,-45,38,-10,-55,20,22,16,-17,64,-18,-4,46,5,24,6,-20,27,45,-14,-50,79,-15,-1,-55,-39,36,-22,29,43,7,24,-39,13,-96,9,-41,-47,75,-53,20,27,-2,11,53,25,-19,-16,78,-58,39,26,-73,-10,-14,-127,29,-3,-12,-45,-12,67,57,83,-8,-58,47,80,-84,-83,-15,40,42,91,-64,65,-13,-1,53,-49,-84,-21,55,52,45,15,-42, /* [14][0][][] */ -58,15,6,-16,9,-4,38,30,-55,-41,18,-81,14,-77,-123,-4,52,17,-1,12,42,55,11,13,-85,-35,22,-31,-26,-45,-101,1,-34,-19,-42,17,-97,-5,-69,-44,-38,39,29,-34,8,-15,-105,18,46,-54,-67,23,35,29,21,-25,38,9,45,61,31,-50,-39,22,-4,113,-7,-127,9,82,63,-38,37,22,-1,-52,8,-37,9,-31,1,12,-15,-47,4,6,21,10,-47,-45,-27,19,31,-61,-61,-22, /* [15][0][][] */ -53,3,22,-19,72,46,-28,81,-44,0,29,15,65,50,-49,-75,-28,-81,15,57,-10,-4,55,-21,53,16,43,-46,35,17,-4,39,-24,3,47,44,-17,-21,4,72,-75,49,-59,-33,-75,9,77,15,-5,-42,-53,-58,-56,16,-21,33,33,-12,87,-71,79,11,33,127,-127,-18,15,91,54,-52,46,-19,-14,-10,37,-45,9,-53,-10,-48,-31,-60,-32,42,12,-35,39,43,-99,-55,82,54,6,-56,-10,20, }; const TfArray<16, float> quant80_scale = { 16, { 0.0023417351767420769, 0.0025171074084937572, 0.0030248349066823721, 0.0028889847453683615, 0.0025911212433129549, 0.0030090752989053726, 0.0033400119282305241, 0.0028120193164795637, 0.0026306945364922285, 0.0032405119854956865, 0.0029711718671023846, 0.0030727668199688196, 0.0027964017353951931, 0.0024530966766178608, 0.0026058175135403872, 0.002129371277987957, } }; const TfLiteAffineQuantization quant80 = { (TfLiteFloatArray*)&quant80_scale, (TfLiteIntArray*)&g0::quant73_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data81[96] = { -8516, 1080, 190, -446, -1139, -2142, 11410, 10711, -676, -3164, 15480, -1697, -595, 2283, -92, -1588, -5605, 2100, 3796, 1345, -3803, -4031, -3881, 3007, -2544, -6413, 11007, 2262, -606, -2853, 2137, 1669, -1238, 2620, 2182, 1727, 426, -5075, -9631, -2557, -1101, -4464, -2170, -127, -2120, 1141, -370, -2023, -4497, -194, 7509, 9546, -675, -1657, -4191, 70, 4577, 4930, -3367, 106, 644, 513, -491, -364, -3811, 3914, 256, -2658, 10309, 815, -3556, -704, -1361, 4294, -2632, -2367, 2724, -4698, -1548, -1206, -2057, -1040, 2503, -139, 7699, -1851, -2711, 544, 994, -4580, 460, -656, -2065, 356, -1936, 7841, }; const TfArray<96, float> quant81_scale = { 96, { 0.0002051636838587001, 0.00024475873215124011, 0.00038265876355580986, 0.00024182551715057343, 0.00023038199287839234, 0.00029746763175353408, 0.00016694136138539761, 0.00011723760690074414, 0.0003070984676014632, 0.00025411578826606274, 0.00011927441664738581, 0.00030359291122294962, 0.00031183977262116969, 0.00036432343767955899, 0.00022829530644230545, 0.00040839114808477461, 0.00024770849267952144, 0.00030362993129529059, 0.00030621766927652061, 0.00025459891185164452, 0.00023819487250875682, 0.00018413603538647294, 0.00026790297124534845, 0.00031097521423362195, 0.00018587695376481861, 0.0003350765909999609, 0.00014505491708405316, 0.00023574143415316939, 0.00027353860787115991, 0.00014595677203033119, 0.00025034995633177459, 0.00022703291324432939, 0.00018886635371018201, 0.00025779538555070758, 0.0001868082326836884, 0.00026034101028926671, 0.00016076990868896246, 0.00018703666864894331, 0.00013256786041893065, 0.00022346084006130695, 0.00026472579338587821, 0.00015121784235816449, 0.00032828081748448312, 0.00023319353931583464, 9.5687973953317851e-05, 0.0002451050968375057, 0.00041277540731243789, 0.00024660030612722039, 8.6644751718267798e-05, 0.00027181641780771315, 0.00017264013877138495, 0.00015871896175667644, 0.00042595798731781542, 0.00029146348242647946, 0.00015585678920615464, 0.00030883430736139417, 0.00019645970314741135, 0.00029807147802785039, 0.00024611651315353811, 0.00034900481114163995, 0.00034966215025633574, 0.000204305091756396, 0.00021183383069001138, 0.00021272982121445239, 0.00015544269990641624, 0.00027345205307938159, 0.00022638999507762492, 0.00034879031591117382, 0.00012971145042683929, 0.00032017988269217312, 0.00019999938376713544, 0.00012271763989701867, 0.0002323233347851783, 0.00039400008972734213, 0.00018767850997392088, 0.00019129477732349187, 0.00023146918101701885, 0.00020365563977975398, 0.0003527650551404804, 0.00013907920219935477, 0.00020922365365549922, 0.0002403320831945166, 0.00020345498342067003, 0.00029278651345521212, 0.00017925318388734013, 0.00023375340970233083, 0.00025112711591646075, 0.00020774904987774789, 0.00024175005091819912, 0.00016599784430582076, 0.0002032325865002349, 0.00017553554789628834, 0.00024146030773408711, 0.00033622531918808818, 0.00022797193378210068, 0.00019104062812402844, } }; const TfLiteAffineQuantization quant81 = { (TfLiteFloatArray*)&quant81_scale, (TfLiteIntArray*)&g0::quant69_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data82[1*3*3*96] = { /* [0][0][][] */ -16,1,-2,-40,63,37,11,-3,-16,-29,-89,-35,-127,-5,19,5,9,-23,-79,-41,-3,-20,-21,-65,25,-21,17,48,-30,-63,3,0,18,4,-44,-5,41,67,91,-36,59,-54,21,31,19,20,63,-17,-2,48,-6,-97,-7,29,7,-53,27,-28,5,-21,16,-9,-39,-6,39,-17,127,-28,-48,19,36,-34,91,52,16,62,-36,28,-16,82,68,-17,-39,53,-103,31,-61,-8,-127,38,19,-19,100,16,45,19, -17,-27,-19,30,-7,-54,40,-127,-61,-15,-127,127,89,-35,-63,15,127,-15,30,-23,-105,22,20,-41,-27,-4,-127,-125,-127,-96,-49,-25,22,-36,-127,127,60,7,28,-39,24,113,62,-20,95,72,-31,18,-25,-21,66,-109,-30,127,-9,52,-84,-43,1,127,36,24,-44,-12,6,111,65,34,-116,18,55,-33,127,-32,127,118,29,46,-27,-18,127,24,-66,-31,127,66,23,18,103,-70,127,-57,9,-58,-127,-14, 53,58,-2,-14,-11,21,-65,-9,-39,57,18,15,-18,-20,-4,24,24,-8,8,18,16,15,8,36,-4,19,-26,1,-56,-26,77,-29,29,52,-7,-58,29,77,65,51,19,-5,-43,-15,75,32,2,-29,-34,7,9,-15,8,8,4,2,7,-1,-9,17,17,-6,39,-38,-14,-127,7,-91,-24,-5,15,-15,61,-26,99,-34,1,43,11,-18,7,12,11,127,31,5,-23,18,72,-69,75,-7,114,-4,36,0, /* [0][1][][] */ 109,-66,-126,64,127,-123,-98,-102,-82,127,-102,-102,-3,51,43,127,28,127,-127,-127,-9,64,61,32,-19,-12,-99,127,18,-34,-127,-9,-76,-38,58,-37,-106,35,13,9,12,126,-81,-10,2,21,127,127,31,127,-64,25,-13,7,11,-127,-69,-10,5,6,-3,127,-61,-18,58,-72,-24,127,-107,-66,29,-47,22,68,30,127,-34,3,127,1,26,118,-51,-3,-110,5,1,11,32,56,66,-121,-126,127,36,-111, 127,-117,127,127,65,127,-107,-64,127,38,-98,75,35,-70,127,-89,114,8,-57,102,127,72,127,127,53,103,-107,-101,101,103,77,-127,70,127,12,55,-127,127,127,127,127,-41,-28,14,65,-127,-75,90,93,-33,-127,-95,127,-18,37,106,127,-127,99,-50,-127,32,71,-109,86,11,58,-71,-89,113,127,119,-78,-127,69,-64,-26,127,68,71,-108,-25,-127,-71,22,-54,127,-99,-68,127,-2,81,127,2,-6,-71, 66,127,-54,24,-70,20,-127,-33,6,-94,-51,18,-3,-6,12,-12,17,-5,76,-24,-40,31,29,-118,-26,31,-33,44,40,13,10,-14,127,-72,29,8,-86,-30,70,108,-11,19,127,127,127,26,14,-110,83,-24,-56,-15,-92,-18,-2,9,-26,-7,-3,-5,-22,-17,91,-7,127,-91,-41,93,-19,22,-4,4,-48,-13,48,-6,-57,40,43,127,62,-127,105,-15,34,-44,-29,127,82,85,-95,86,-107,-13,43,-30, /* [0][2][][] */ -9,9,34,-15,-13,-11,-82,-17,26,-19,-69,-6,-41,-127,-24,15,38,-19,12,-18,33,-28,-38,-57,127,-8,-107,26,22,127,-68,23,23,-45,-70,-58,31,33,15,20,-13,-78,70,24,10,12,-18,47,84,-48,-20,-83,-5,-15,25,41,-84,-97,17,-24,-9,3,-20,-4,-25,7,-29,30,36,-16,9,127,-29,9,4,28,55,-30,-18,55,-36,107,49,14,-86,-24,6,-14,-103,50,-57,-127,-67,-22,-4,-127, 54,-5,-13,-47,-24,12,6,-50,38,-7,-107,-53,1,120,42,-3,-29,1,-35,30,124,127,20,-79,34,127,-116,-28,44,91,6,110,41,-49,-52,-80,-100,-98,-63,-10,-48,127,44,-17,87,-34,38,24,127,1,-44,-127,36,-10,127,-36,-92,110,127,8,-13,45,-57,127,42,-10,-30,1,-127,-127,23,122,-33,-43,6,-27,127,-21,-51,44,-67,-34,69,-44,-99,127,73,-23,42,16,-67,61,72,-34,77,-30, -32,12,16,-1,-28,31,11,-34,14,62,-13,-28,-17,3,-7,22,-1,13,-24,6,31,-28,-14,-22,31,-6,-37,-20,21,48,15,17,-2,-42,-4,37,11,17,90,-22,-2,23,-90,57,7,-2,-25,3,33,-2,-23,-28,-24,-24,41,-7,-46,41,5,-3,-11,-21,127,7,-18,23,10,-29,35,-33,4,-8,-28,-10,3,15,-69,21,-24,4,-15,-39,-19,-14,53,30,-35,8,18,50,-2,-10,-4,-8,39,0, }; const TfArray<96, float> quant82_scale = { 96, { 0.0087194563820958138, 0.010402245447039604, 0.016262996941804886, 0.010277584195137024, 0.0097912345081567764, 0.012642374262213707, 0.0070950076915323734, 0.0049825981259346008, 0.013051684945821762, 0.010799921117722988, 0.0050691626965999603, 0.0129026984795928, 0.01325319055467844, 0.01548374630510807, 0.0097025502473115921, 0.017356622964143753, 0.010527610778808594, 0.012904271483421326, 0.013014250434935093, 0.010820453986525536, 0.010123281739652157, 0.0078257815912365913, 0.011385875754058361, 0.013216446153819561, 0.007899770513176918, 0.014240754768252373, 0.0061648339033126831, 0.010019010864198208, 0.011625390499830246, 0.0062031629495322704, 0.010639872401952744, 0.0096488986164331436, 0.0080268196761608124, 0.010956303216516972, 0.0079393498599529266, 0.011064493097364902, 0.0068327207118272781, 0.0079490579664707184, 0.0056341337040066719, 0.0094970855861902237, 0.011250846087932587, 0.0064267581328749657, 0.01395193487405777, 0.0099107250571250916, 0.0040667387656867504, 0.010416965931653976, 0.017542954534292221, 0.010480512864887714, 0.0036824019625782967, 0.011552196927368641, 0.0073372060433030128, 0.0067455554381012917, 0.018103213980793953, 0.012387197464704514, 0.0066239135339856148, 0.013125457800924778, 0.0083495369181036949, 0.012668037787079811, 0.010459951125085354, 0.014832704328000546, 0.014860641211271286, 0.0086829662322998047, 0.0090029379352927208, 0.0090410169214010239, 0.0066063143312931061, 0.011621711775660515, 0.0096215745434165001, 0.014823588542640209, 0.0055127362720668316, 0.013607644475996494, 0.0084999734535813332, 0.0052154995501041412, 0.0098737413063645363, 0.016745002940297127, 0.0079763364046812057, 0.0081300279125571251, 0.0098374402150511742, 0.0086553646251559258, 0.014992514625191689, 0.0059108659625053406, 0.0088920053094625473, 0.010214113630354404, 0.0086468365043401718, 0.012443426065146923, 0.0076182601042091846, 0.0099345194175839424, 0.010672902688384056, 0.0088293347507715225, 0.010274376720190048, 0.0070549082010984421, 0.0086373845115303993, 0.0074602607637643814, 0.010262062773108482, 0.014289575628936291, 0.0096888067200779915, 0.0081192264333367348, } }; const TfLiteAffineQuantization quant82 = { (TfLiteFloatArray*)&quant82_scale, (TfLiteIntArray*)&g0::quant69_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data83[96] = { 3388, 2875, 5684, 50, 5304, 2470, 5442, 56, 5875, 3894, 2607, 8816, 1065, 2241, -119, 3529, -536, 2584, 5593, 2349, 96, 498, 1362, 2830, 1711, 4745, 1336, 6416, 2960, -165, 4241, 1340, 1895, 4585, 1681, 2415, 717, 1498, 4478, 1495, 979, 1109, 4656, -295, 692, 1552, 5641, 6471, 326, 403, 2805, 2183, 6249, 520, 793, 5139, 2791, 9286, 2661, -96, -268, 366, 3618, 4129, 3858, 6747, 2034, 10040, 403, 7176, -70, 712, 1532, 9449, 877, 3518, 1894, 1376, 12036, 844, 1839, 4911, 2837, 4217, 11386, 1435, 4890, 1875, 9811, 2068, 5945, 1535, 8444, 2140, 1082, 2782, }; const TfArray<96, float> quant83_scale = { 96, { 0.00016593722102697939, 0.00014613971870858222, 9.1272173449397087e-05, 0.00020645537006203085, 0.00014772448048461229, 0.00012718733341898769, 9.4550479843746871e-05, 0.00053814024431630969, 0.00012309462181292474, 0.0001389459939673543, 0.00018123441259376705, 8.9454406406730413e-05, 0.00021659662888851017, 0.00022885615180712193, 0.0002222308685304597, 0.00018799721146933734, 0.00020772431162185967, 0.00021310726879164577, 0.00011057836672989652, 0.00019879150204360485, 0.00034972472349181771, 0.00028258716338314116, 0.00017250175005756319, 0.00015086588973645121, 0.00018571339023765177, 0.00011318442557239905, 0.00021372271294239908, 0.00010573863983154297, 0.00014950511103961617, 0.00023935688659548759, 0.00014786147221457213, 0.00022433651611208916, 0.00017562754510436207, 0.00010035464947577566, 0.00018604443175718188, 0.00017746338562574238, 0.0002694068243727088, 0.00020971040066797286, 0.00014111562632024288, 0.00017431065498385578, 0.00027887188480235636, 0.00020642411254812032, 0.0001612851774552837, 0.00031012290855869651, 0.00014188497152645141, 0.00022431083198171109, 0.00013932953879702836, 0.00010123338142875582, 0.00070308096474036574, 0.0003879643336404115, 0.00014695027493871748, 0.00016436818987131119, 0.00010893488797591999, 0.00027649154071696103, 0.00020739254250656813, 0.00013164116535335779, 0.00015043054008856416, 7.9412799095734954e-05, 0.00017038200167007744, 0.00027955195400863886, 0.00024299576762132347, 0.00019258215615991503, 0.0001692107180133462, 0.00012928225623909384, 0.00012070987577317283, 9.6357274742331356e-05, 0.00027453090297058225, 9.7311887657269835e-05, 0.00024345546262338758, 0.00010741659207269549, 0.00033416261430829763, 0.00024338181538041681, 0.00017359464254695922, 8.4343424532562494e-05, 0.00016882449563127011, 0.00015925502520985901, 0.00015259659267030656, 0.00025743071455508471, 7.470211130566895e-05, 0.00023616981343366206, 0.00013673046487383544, 0.00014378056221175939, 0.00017952147754840553, 0.00014568718324881047, 6.716837378917262e-05, 0.00026094491477124393, 0.00012913829414173961, 0.00029443169478327036, 8.034458733163774e-05, 0.00026144369621761143, 9.4675036962144077e-05, 0.00022371424711309373, 7.2992152126971632e-05, 0.0001795699936337769, 0.00028501974884420633, 0.00016619071539025754, } }; const TfLiteAffineQuantization quant83 = { (TfLiteFloatArray*)&quant83_scale, (TfLiteIntArray*)&g0::quant69_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data84[96*1*1*16] = { /* [0][0][][] */ -3,-41,89,-53,11,5,41,103,-39,88,-56,45,40,-44,40,127, /* [1][0][][] */ -71,-127,1,-45,18,-27,-102,-74,-25,34,25,26,1,-101,127,23, /* [2][0][][] */ -12,20,-62,-35,-57,36,75,74,-3,45,18,79,127,87,-10,36, /* [3][0][][] */ -119,37,-55,103,72,-30,29,50,-11,106,-13,-124,33,127,-57,-106, /* [4][0][][] */ 58,66,80,125,-63,-50,2,8,-23,-5,75,-47,26,-30,-32,-127, /* [5][0][][] */ 23,-23,75,37,-27,-4,36,59,-42,101,127,8,28,56,66,61, /* [6][0][][] */ 70,-102,-103,-40,42,19,-99,5,20,-4,-52,-127,99,-80,11,91, /* [7][0][][] */ -9,4,18,127,-3,-40,20,33,-53,-34,63,-90,18,30,-56,-60, /* [8][0][][] */ -10,-12,-124,-52,-26,-9,41,-60,68,-97,106,5,25,74,67,-127, /* [9][0][][] */ -42,14,-7,-28,5,127,52,36,31,-61,108,-73,-88,-123,-94,-20, /* [10][0][][] */ 8,98,42,25,66,8,54,-51,127,-47,13,68,-49,-31,52,-28, /* [11][0][][] */ -65,15,-26,-21,-112,-34,127,-72,-15,-81,127,-95,-5,18,-92,3, /* [12][0][][] */ 27,-73,6,-6,127,-8,21,51,53,-107,16,18,-50,27,33,-28, /* [13][0][][] */ -2,-3,-3,-50,-92,-90,34,-76,18,-45,25,58,-12,-8,-127,35, /* [14][0][][] */ 77,127,-57,-34,74,56,51,-42,-33,-45,-71,-49,63,-32,-48,28, /* [15][0][][] */ -7,-1,32,-6,0,19,48,2,27,127,-68,48,-38,-25,38,10, /* [16][0][][] */ -24,-110,103,-25,11,70,-17,17,-9,104,-24,-46,88,-16,127,83, /* [17][0][][] */ 8,38,-18,60,-100,80,-25,25,27,-127,-28,-44,42,34,-8,32, /* [18][0][][] */ 0,-15,-65,-122,13,1,-59,1,-127,43,-81,18,-21,-18,-67,37, /* [19][0][][] */ -21,19,61,-116,33,97,56,53,35,-127,37,17,-64,-48,-29,94, /* [20][0][][] */ -15,27,47,15,-9,27,-49,-100,41,127,35,3,-20,65,50,-7, /* [21][0][][] */ 2,-7,17,-12,-53,-107,127,-28,53,-10,-48,-70,-44,49,-41,-29, /* [22][0][][] */ -4,-121,-20,-3,-48,-75,-78,47,86,50,41,6,39,-83,127,-41, /* [23][0][][] */ -18,-44,-57,10,66,7,21,-7,-6,-14,8,127,29,9,44,17, /* [24][0][][] */ 7,-4,-98,-127,21,58,-42,-25,-58,-65,-69,-10,-62,45,-69,30, /* [25][0][][] */ 0,-68,9,37,-63,-78,-1,52,-40,33,8,6,106,27,65,127, /* [26][0][][] */ -16,5,117,-34,21,-1,-28,-40,-19,50,40,-1,-3,71,-127,10, /* [27][0][][] */ -43,124,-81,-43,22,-22,-30,50,11,-2,103,-113,24,127,21,-23, /* [28][0][][] */ -58,15,10,96,33,6,42,-1,-63,-50,-49,-29,127,78,-2,38, /* [29][0][][] */ -70,20,-40,-127,-94,-99,-28,-10,-35,5,57,-16,49,61,23,13, /* [30][0][][] */ -101,-16,-111,-119,3,16,-17,-33,-77,-27,57,-82,-28,-57,127,41, /* [31][0][][] */ 42,49,39,33,-8,21,0,22,-127,16,42,5,32,11,2,25, /* [32][0][][] */ 60,31,-13,51,12,-82,-127,-4,-1,60,-38,9,8,56,113,-79, /* [33][0][][] */ 6,97,-111,-38,33,11,28,103,-127,21,10,-64,-10,69,-91,-7, /* [34][0][][] */ -47,98,6,-127,-13,9,38,85,39,52,-40,13,23,51,-90,20, /* [35][0][][] */ -35,-17,-49,-54,6,-55,67,17,-127,-66,46,-50,8,31,38,-29, /* [36][0][][] */ -41,41,44,-23,-7,17,22,4,79,-127,54,-10,-22,70,-31,-43, /* [37][0][][] */ 71,-58,-118,127,-56,-59,25,-83,46,106,-33,29,-23,-42,-14,6, /* [38][0][][] */ 93,59,110,117,-86,7,2,68,6,-86,46,-71,-56,127,8,-73, /* [39][0][][] */ 28,-97,-86,119,20,-78,31,37,-34,-125,-73,-127,-83,-60,46,21, /* [40][0][][] */ -4,-38,-93,-90,-10,-57,-77,-44,-127,0,-83,-32,5,29,-4,46, /* [41][0][][] */ -32,4,-78,-127,-104,-40,79,-20,-74,83,87,-46,-37,20,18,-10, /* [42][0][][] */ -37,22,9,-33,62,54,-7,127,40,22,-17,-31,13,8,34,62, /* [43][0][][] */ -39,-57,85,41,-16,35,127,56,43,35,43,-1,-41,76,20,-56, /* [44][0][][] */ -14,101,-10,-8,-126,19,110,31,-91,-127,76,88,-31,-19,45,-38, /* [45][0][][] */ 78,-34,-31,127,20,-7,33,36,69,-30,-11,61,6,-33,-3,-18, /* [46][0][][] */ -38,-53,35,-18,-47,127,-28,-7,-27,63,52,17,38,-94,-30,-62, /* [47][0][][] */ 37,-22,-89,-69,-24,119,-107,-43,10,16,-82,12,86,-55,-121,-127, /* [48][0][][] */ -59,127,-38,-66,-19,-10,2,-27,52,54,-18,-3,17,-48,-66,-66, /* [49][0][][] */ -27,-18,48,108,-46,-13,-11,1,90,17,13,12,80,119,-127,23, /* [50][0][][] */ -32,55,-61,-127,-81,9,-46,-8,-15,58,36,-51,6,83,25,47, /* [51][0][][] */ 80,-56,17,-96,6,19,-2,-13,53,23,-62,-45,50,29,-127,-44, /* [52][0][][] */ -31,6,91,17,70,-26,127,-4,94,-122,23,38,-1,-23,-64,-55, /* [53][0][][] */ 50,6,27,84,-10,-85,-4,-35,-106,-5,6,1,-76,4,-127,-34, /* [54][0][][] */ -35,112,-41,122,-105,-44,35,37,-127,-112,-25,-114,-1,50,55,-14, /* [55][0][][] */ -117,-113,8,51,-52,127,17,-30,44,34,91,-52,-31,-17,-105,-21, /* [56][0][][] */ -25,80,14,6,-45,-69,96,125,35,-3,29,37,78,-35,-64,127, /* [57][0][][] */ -5,-8,-20,91,-44,-37,127,-27,84,-18,54,87,-65,2,85,-68, /* [58][0][][] */ 28,87,88,-4,93,-44,78,16,-62,13,-97,69,-48,63,-127,-92, /* [59][0][][] */ -75,0,-100,-5,127,-12,-21,-98,0,42,-56,2,-36,45,24,-58, /* [60][0][][] */ 88,4,-98,127,29,-38,-35,-52,48,20,53,-6,40,52,17,-14, /* [61][0][][] */ -8,-24,20,27,5,-73,1,-74,-88,-127,105,44,-88,85,48,11, /* [62][0][][] */ -36,28,-23,-79,-127,-98,9,-50,-38,-65,45,-13,-75,-87,-88,-6, /* [63][0][][] */ -77,104,-52,117,-15,117,86,65,63,50,-82,-77,-87,90,-116,127, /* [64][0][][] */ 47,82,22,-31,-57,66,73,127,-20,120,60,-21,103,-7,-65,-24, /* [65][0][][] */ -3,-4,-53,40,55,-12,12,85,-36,71,44,27,-72,127,-13,-26, /* [66][0][][] */ -18,-19,44,10,13,34,61,89,42,26,-22,42,-39,39,-127,57, /* [67][0][][] */ -127,-62,-82,-38,19,-31,45,108,19,-29,52,5,-88,-82,-12,19, /* [68][0][][] */ -69,84,23,-53,-41,7,11,61,-44,127,-24,-62,-31,-7,-39,16, /* [69][0][][] */ 1,37,-127,-84,-49,0,-86,47,4,-10,55,17,49,28,18,43, /* [70][0][][] */ -3,127,39,35,-39,-14,-14,-1,-72,-76,-38,-21,33,-6,93,-37, /* [71][0][][] */ 33,4,84,20,13,-30,-60,-17,-58,-44,76,91,-27,109,127,-112, /* [72][0][][] */ 25,-39,61,23,-108,75,-99,-66,-53,121,-23,23,56,-127,95,24, /* [73][0][][] */ 62,81,79,57,-95,115,-48,-59,-93,-127,47,-16,-77,21,-72,-38, /* [74][0][][] */ -55,87,-117,91,24,-11,-34,27,120,-2,127,-56,-10,-127,-59,43, /* [75][0][][] */ -127,-97,-10,-97,59,-60,-2,15,-39,-14,50,20,-114,115,-54,108, /* [76][0][][] */ 81,-8,-38,45,111,-44,13,20,-11,-68,-33,48,-1,-29,127,-68, /* [77][0][][] */ 1,74,40,-13,66,-54,6,-81,23,-66,-2,1,127,126,12,-74, /* [78][0][][] */ -113,47,-127,5,45,126,63,-57,-18,18,-25,13,-78,43,-26,24, /* [79][0][][] */ -83,91,89,107,-23,79,39,79,34,127,35,-12,-89,33,11,-57, /* [80][0][][] */ -60,-2,-28,35,106,53,13,-64,93,-116,55,76,-36,127,24,-57, /* [81][0][][] */ -127,-84,-109,-53,-16,28,-13,19,-17,-18,51,-17,-31,-64,70,-25, /* [82][0][][] */ 70,118,-95,37,70,-94,-31,-4,-2,-75,70,47,-48,-110,34,-127, /* [83][0][][] */ -25,-9,-72,-27,71,6,28,-22,-5,-84,127,30,63,-78,-46,3, /* [84][0][][] */ 117,-44,-127,-50,-109,-115,-15,-94,25,-108,14,-39,15,60,-47,-76, /* [85][0][][] */ -21,-112,2,86,21,103,-17,23,-99,89,-30,-127,-29,-12,44,-33, /* [86][0][][] */ 8,-65,127,30,-54,49,-74,-49,-30,17,-72,-47,43,-13,-1,76, /* [87][0][][] */ -46,1,-12,-57,38,-47,65,-3,18,-42,70,4,-72,127,24,84, /* [88][0][][] */ -101,-40,-62,-89,93,66,-80,37,-37,-127,64,124,94,-41,69,-36, /* [89][0][][] */ 127,31,22,44,7,119,-39,-77,44,79,-32,103,-28,6,1,23, /* [90][0][][] */ -2,27,-92,9,71,-11,17,-54,99,-127,100,108,25,12,-76,32, /* [91][0][][] */ -21,-127,-89,0,94,26,70,18,-107,-34,-86,33,-18,-8,0,104, /* [92][0][][] */ 24,28,1,104,55,98,60,-52,127,27,77,92,17,64,60,-68, /* [93][0][][] */ 76,-60,-13,-30,44,-51,57,52,-97,45,13,-54,6,-68,127,-123, /* [94][0][][] */ -40,14,-41,-73,-69,-127,-8,-3,29,-6,34,36,86,31,-74,63, /* [95][0][][] */ -25,-77,107,12,16,-42,58,-53,1,62,-4,127,59,43,-61,24, }; const TfArray<96, float> quant84_scale = { 96, { 0.0026983488351106644, 0.002376416465267539, 0.0014842008240520954, 0.0033572250977158546, 0.0024021866265684366, 0.0020682266913354397, 0.0015375103102996945, 0.0087508400902152061, 0.0020016741473227739, 0.0022594374604523182, 0.0029471004381775856, 0.0014546416932716966, 0.0035221348516643047, 0.0037214902695268393, 0.003613754641264677, 0.0030570721719413996, 0.0033778597135096788, 0.0034653933253139257, 0.0017981439596042037, 0.0032326008658856153, 0.0056869657710194588, 0.004595224279910326, 0.0028050963301211596, 0.0024532699026167393, 0.0030199342872947454, 0.00184052181430161, 0.0034754013177007437, 0.0017194438260048628, 0.0024311419110745192, 0.0038922454696148634, 0.0024044143501669168, 0.0036479951813817024, 0.0028559258207678795, 0.001631893333978951, 0.0030253175646066666, 0.0028857789002358913, 0.0043808952905237675, 0.0034101561177521944, 0.0022947182878851891, 0.0028345114551484585, 0.0045348093844950199, 0.0033567168284207582, 0.0026227007620036602, 0.0050429902039468288, 0.0023072289768606424, 0.0036475774832069874, 0.0022656742949038744, 0.0016461827326565981, 0.011432984843850136, 0.0063087902963161469, 0.0023895970080047846, 0.0026728343218564987, 0.0017714189598336816, 0.0044961017556488514, 0.003372464794665575, 0.0021406516898423433, 0.0024461906868964434, 0.0012913524406030774, 0.0027706266846507788, 0.0045458679087460041, 0.0039514182135462761, 0.0031316292006522417, 0.002751579973846674, 0.0021022928413003683, 0.0019628950394690037, 0.0015668909763917327, 0.0044642193242907524, 0.0015824142610654235, 0.0039588934741914272, 0.0017467294819653034, 0.0054339063353836536, 0.0039576957933604717, 0.0028228682931512594, 0.0013715306995436549, 0.0027452996000647545, 0.0025896879378706217, 0.0024814133066684008, 0.0041861487552523613, 0.001214750693179667, 0.0038404194638133049, 0.002223410177975893, 0.0023380536586046219, 0.0029192459769546986, 0.0023690576199442148, 0.0010922426590695977, 0.0042432937771081924, 0.0020999517291784286, 0.0047878315672278404, 0.0013065044768154621, 0.0042514046654105186, 0.0015395357040688396, 0.0036378763616085052, 0.00118694466073066, 0.0029200350400060415, 0.0046347812749445438, 0.0027024711016565561, } }; const TfLiteAffineQuantization quant84 = { (TfLiteFloatArray*)&quant84_scale, (TfLiteIntArray*)&g0::quant69_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data85[16] = { 6340, -2828, -203, 700, -2965, -10843, -379, -2823, 7720, 9264, -4980, -18705, -8333, -2604, 3805, 2855, }; const TfArray<16, float> quant85_scale = { 16, { 9.5922339824028313e-05, 0.00011982081923633814, 0.00011204429756617174, 7.1576054324395955e-05, 7.3086048359982669e-05, 7.6379903475753963e-05, 8.5200488683767617e-05, 7.9934870882425457e-05, 8.5418963863048702e-05, 8.2281658251304179e-05, 9.9278739071451128e-05, 7.8121935075614601e-05, 0.00010643105633789673, 7.9773009929340333e-05, 0.00010554424807196483, 7.9589022789150476e-05, } }; const TfLiteAffineQuantization quant85 = { (TfLiteFloatArray*)&quant85_scale, (TfLiteIntArray*)&g0::quant73_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data86[16*1*1*48] = { /* [0][0][][] */ -52,51,-8,-1,-23,32,32,35,50,-18,-21,-25,76,12,-20,44,-13,-21,27,-34,35,-127,-124,11,107,60,78,-54,-10,-76,-50,40,-64,29,4,29,-79,43,-23,-4,-30,-59,0,-32,-1,24,21,36, /* [1][0][][] */ 54,-14,62,34,24,-4,-64,127,55,46,-27,3,-46,-4,-10,-53,-40,40,8,41,9,18,-25,-22,11,-22,-50,-14,24,-24,56,-18,6,-32,16,33,16,24,-40,43,-1,62,-37,-66,-31,-53,-48,18, /* [2][0][][] */ -16,1,-26,46,-49,27,22,-67,-7,-32,6,1,-14,23,-4,30,-17,38,-19,55,66,-39,-84,-127,25,-59,-25,56,-44,12,-6,13,36,-44,6,0,89,13,17,23,92,-61,-15,-28,58,47,37,8, /* [3][0][][] */ 94,16,7,-24,21,-10,61,-76,22,-5,-54,-5,-19,-8,-87,-45,103,31,-21,85,-107,-30,13,45,-79,61,26,-12,27,9,24,29,5,-127,58,-8,105,-21,-52,39,-29,96,-46,89,51,2,-26,-36, /* [4][0][][] */ -125,31,-47,54,16,66,19,-19,87,-24,-64,-73,-81,58,80,38,67,127,26,77,113,-62,-51,58,-3,-50,-113,57,-96,79,15,69,7,32,-31,-72,25,-84,-72,-18,-29,64,87,36,42,-3,-32,74, /* [5][0][][] */ 58,-82,-27,1,-24,-8,-10,28,-15,89,48,9,39,-9,29,-15,-33,48,-4,-9,34,17,127,56,97,-26,15,-59,-27,-28,-30,0,-18,21,1,7,32,39,-23,3,17,-12,-83,-8,-27,13,-52,-30, /* [6][0][][] */ -76,34,41,-37,-30,25,-82,27,-6,71,26,-23,80,-36,-49,60,46,43,-38,4,-92,16,-54,35,-11,12,76,-6,14,-7,55,-85,51,3,-89,-20,-63,77,-89,-6,125,101,-69,127,-1,-45,-66,43, /* [7][0][][] */ -9,50,25,-13,45,71,-50,12,-59,33,16,28,75,-51,-15,-37,-27,-67,-2,-5,4,118,-21,-30,-21,10,-39,-46,77,-2,-51,46,-7,-4,-4,60,-17,86,5,-29,-65,37,54,-9,-20,127,-18,-32, /* [8][0][][] */ -8,3,22,-22,40,-10,20,19,82,-31,49,-5,-14,43,34,43,-9,57,-13,-64,-75,-88,13,12,-85,-11,-3,26,-23,53,-82,-30,25,18,-50,65,4,70,-21,-21,-114,-10,5,1,-5,12,29,-127, /* [9][0][][] */ -127,19,-73,60,36,15,-25,-1,-60,95,2,-32,-19,-10,66,1,-75,5,-62,11,-55,63,43,78,-16,55,25,-20,17,-22,-25,5,50,-114,-52,2,13,1,-10,-33,-8,-111,-5,-40,-55,-63,19,19, /* [10][0][][] */ -62,32,28,-30,32,-9,-37,49,-8,-2,6,47,14,74,-75,38,40,71,16,13,21,78,43,46,25,-22,-54,-39,-13,-24,-3,15,8,-88,47,28,-88,20,-6,-31,-90,32,24,10,-35,127,-7,59, /* [11][0][][] */ -93,51,33,-3,-11,-28,-29,28,42,-17,-31,52,38,-13,17,-9,106,-15,0,27,1,-21,116,25,-44,77,-30,-21,112,-1,-7,33,9,31,70,20,83,85,-78,-6,127,-84,38,26,-1,-32,5,52, /* [12][0][][] */ -63,44,-43,38,-47,42,-16,45,-20,-46,-1,-72,13,37,-11,51,7,-16,-48,10,-67,-12,55,-27,127,6,-35,47,5,-27,-47,-4,6,-27,-64,-48,83,37,37,-15,-6,108,5,30,10,-49,34,8, /* [13][0][][] */ -31,-14,-18,-40,11,30,-77,95,33,18,36,14,-10,24,-85,12,56,-56,-32,-9,-34,119,-107,71,39,10,-35,-112,78,-35,54,10,-13,75,41,87,127,-87,0,0,86,-5,-32,111,-60,-26,-51,-70, /* [14][0][][] */ 23,-17,-74,22,10,-26,61,11,44,-53,34,-35,21,-38,1,2,-1,11,-82,9,-127,-113,22,-25,-21,27,-60,-44,44,28,25,-30,-30,3,-35,51,10,23,-30,-8,12,33,-35,-39,-13,-74,73,80, /* [15][0][][] */ -1,25,-69,18,32,-21,16,44,-107,-9,-11,-75,49,-14,-19,-22,37,57,-27,14,-74,89,-16,65,-108,11,-24,36,-80,10,1,6,-44,48,11,-25,127,35,40,44,-94,22,-54,-37,-38,-42,80,60, }; const TfArray<4, int> tensor_dimension86 = { 4, { 16,1,1,48 } }; const TfArray<16, float> quant86_scale = { 16, { 0.004076699260622263, 0.00509238475933671, 0.0047618825919926167, 0.0030419821850955486, 0.0031061570625752211, 0.0032461457885801792, 0.0036210205871611834, 0.0033972319215536118, 0.0036303058732300997, 0.0034969705156981945, 0.0042193462140858173, 0.0033201822079718113, 0.0045233196578919888, 0.0033903529401868582, 0.0044856304302811623, 0.003382533323019743, } }; const TfLiteAffineQuantization quant86 = { (TfLiteFloatArray*)&quant86_scale, (TfLiteIntArray*)&g0::quant73_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data87[48] = { 2465, -2568, 10058, -10110, -3534, -5848, 7794, 3644, 63, 215, 3190, -408, 2962, 7, 20499, 574, 25, -690, 1506, -2051, 6411, -71, 140, 444, -2033, -1786, 2126, 18024, 375, -440, -1197, 49, -853, -474, -200, 10905, -1209, 631, 12677, -456, 135, 137, 16948, 17049, 7185, -121, 8109, 454, }; const TfArray<1, int> tensor_dimension87 = { 1, { 48 } }; const TfArray<48, float> quant87_scale = { 48, { 0.00013402465265244246, 0.00018022151198238134, 0.00015176919987425208, 0.00013352703535929322, 0.00014622849994339049, 0.00021920028666500002, 9.3165785074234009e-05, 0.00016040113405324519, 0.00017259552259929478, 0.00011552744399523363, 8.3038336015306413e-05, 0.0001852962450357154, 0.00046650267904624343, 0.00019067396351601928, 0.00015465937030967325, 0.00015987397637218237, 0.0001691556244622916, 0.00027740231598727405, 8.8462824351154268e-05, 0.00016161173698492348, 0.00041815495933406055, 8.3728387835435569e-05, 0.00012026975309709087, 0.00010957694030366838, 0.00017444523109588772, 0.00023374722513835877, 0.00012213985610287637, 0.00030687477556057274, 0.00016462102939840406, 0.00011677482689265162, 0.0001342728064628318, 0.00025859035667963326, 0.00013593182666227221, 0.00010862744238693267, 0.00019701018754858524, 0.00014819235366303474, 0.00020582707657013088, 0.0001151268879766576, 8.7636886746622622e-05, 0.00018089434888679534, 0.00015399639960378408, 7.1101974754128605e-05, 9.2562659119721502e-05, 6.8490939156617969e-05, 0.00013357368879951537, 9.1160000010859221e-05, 9.9208002211526036e-05, 0.00020832891459576786, } }; const TfArray<48, int> quant87_zero = { 48, { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } }; const TfLiteAffineQuantization quant87 = { (TfLiteFloatArray*)&quant87_scale, (TfLiteIntArray*)&quant87_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data88[1*3*3*48] = { /* [0][0][][] */ 9,-19,-20,127,-58,78,-68,-16,106,127,56,-33,37,65,-51,87,30,76,-44,44,77,10,32,127,100,127,57,-98,76,63,87,23,22,8,-1,-61,33,-23,-99,7,115,103,22,-77,-115,0,-127,72, 96,-127,-125,124,20,6,-22,-19,62,47,-46,-92,14,-18,-71,-91,76,-73,-79,27,-62,37,78,57,9,73,124,-127,7,118,-10,-33,95,29,96,-18,9,4,-46,13,25,68,-28,-81,-38,-7,-84,-78, -40,0,-41,43,26,69,-6,-1,-2,1,75,-6,39,1,-50,42,-12,3,55,-31,43,2,29,3,9,24,127,-25,-13,-36,-18,44,40,23,39,0,-27,-16,-14,59,-11,8,-18,-40,-8,43,-81,34, /* [0][1][][] */ -10,59,-34,51,93,18,-93,77,127,111,-51,-27,-127,127,-81,106,44,127,-120,66,43,104,29,116,127,-29,-11,-103,127,-98,127,0,63,58,12,-127,24,20,-127,-48,127,116,5,-102,-127,70,-80,127, 127,12,-127,86,56,127,-22,35,55,20,-32,21,-103,-80,-127,-127,127,-48,-75,56,-26,85,127,31,13,-51,17,-112,-15,127,-45,41,127,127,127,-36,98,127,-63,0,10,127,-101,-127,-6,102,-67,-117, -3,25,-24,44,3,5,-11,-9,3,3,115,33,-66,-56,-98,11,28,-38,127,-127,0,7,53,-16,17,-10,95,7,-18,71,-33,127,60,52,-2,2,-78,10,-11,127,-24,85,-84,-73,13,55,-88,56, /* [0][2][][] */ -18,65,-1,-14,127,-58,-127,127,31,-122,-127,16,53,114,-83,58,12,41,-39,62,-55,127,-3,37,48,8,29,-18,70,-89,65,-23,16,54,-14,-77,-22,45,-122,-32,32,53,40,-21,-90,77,51,77, 46,114,-45,108,-13,44,-107,67,19,-64,-89,127,51,-78,-111,-73,72,15,-11,41,-127,71,58,-29,3,8,-29,8,-15,13,-54,50,54,113,51,-21,127,116,-36,-37,-30,66,-127,-83,8,127,12,-24, 9,17,22,-40,-66,-91,-45,7,6,6,68,51,17,-80,-72,-8,12,-12,47,-92,-17,0,35,-23,15,-4,31,-3,-2,60,-15,113,13,29,-28,23,-38,11,19,92,-3,48,-115,-48,11,27,9,36, }; const TfArray<4, int> tensor_dimension88 = { 4, { 1,3,3,48 } }; const TfArray<48, float> quant88_scale = { 48, { 0.0056960475631058216, 0.0076594138517975807, 0.0064501911401748657, 0.0056748990900814533, 0.0062147108837962151, 0.0093160122632980347, 0.0039595458656549454, 0.0068170479498803616, 0.0073353094048798084, 0.004909916315227747, 0.0035291293170303106, 0.0078750904649496078, 0.019826363772153854, 0.0081036435440182686, 0.0065730228088796139, 0.0067946435883641243, 0.0071891136467456818, 0.011789598502218723, 0.0037596700713038445, 0.0068684988655149937, 0.017771584913134575, 0.0035584564320743084, 0.00511146429926157, 0.0046570198610424995, 0.007413922343403101, 0.0099342567846179008, 0.0051909438334405422, 0.013042178004980087, 0.0069963936693966389, 0.0049629299901425838, 0.0057065938599407673, 0.010990089736878872, 0.0057771024294197559, 0.0046166661195456982, 0.0083729326725006104, 0.0062981746159493923, 0.0087476503103971481, 0.0048928926698863506, 0.0037245675921440125, 0.0076880096457898617, 0.0065448470413684845, 0.0030218339525163174, 0.0039339130744338036, 0.0029108650051057339, 0.0056768818758428097, 0.0038743000477552414, 0.0042163399048149586, 0.0088539784774184227, } }; const TfLiteAffineQuantization quant88 = { (TfLiteFloatArray*)&quant88_scale, (TfLiteIntArray*)&g0::quant87_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data89[48] = { 1336, 2997, 2654, 2643, 213, 4899, -511, -1158, -1402, 781, 2027, 3852, 18915, -542, 4298, 1218, -1314, 5699, 1831, 2025, 79806, 247, 2350, 989, 3324, 2154, -28, 16657, 1092, 1324, 728, -685, -275, 883, -500, 1745, 5910, 2105, -182, 1247, 3724, -74, -138, 429, 2401, 1046, -374, 2126, }; const TfArray<48, float> quant89_scale = { 48, { 0.0002234309067716822, 0.00013778104039374739, 0.00017031129391398281, 0.00016779215366113931, 0.00026658378192223608, 0.00013916401076130569, 0.0001904968376038596, 0.00019336595141794533, 0.00018245218961965293, 0.00017244918853975832, 0.00028042361373081803, 0.00011084332800237462, 4.5985940232640132e-05, 0.00022509557311423123, 0.00014927366282790899, 0.00019864136993419379, 0.0001421220222255215, 0.0001135418497142382, 0.00025580482906661928, 0.00024007821048144251, 1.4231207387638278e-05, 0.00023769326799083501, 0.00021302247478161007, 0.0002090089546982199, 0.00021293571626301855, 0.0001376956352032721, 0.00036975750117562711, 5.179817890166305e-05, 0.00024225004017353058, 0.00021772699255961925, 0.00024463282898068428, 0.00026634329697117209, 0.00019049816182814538, 0.00027079050778411329, 0.00030409841565415263, 0.00025856966385617852, 0.0001348543883068487, 0.00019671842164825648, 0.00035369058605283499, 0.0003341078117955476, 0.00014655900304205716, 0.00045092281652614474, 0.00026679513393901289, 0.0002975135575979948, 0.00018922692106571048, 0.00025958847254514694, 0.00022742847795598209, 0.00022228338639251888, } }; const TfLiteAffineQuantization quant89 = { (TfLiteFloatArray*)&quant89_scale, (TfLiteIntArray*)&g0::quant87_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data90[48*1*1*8] = { /* [0][0][][] */ 126,7,10,-112,94,-65,-7,127, /* [1][0][][] */ -19,-28,-120,127,-24,-56,47,-127, /* [2][0][][] */ -17,16,10,78,127,-24,-12,19, /* [3][0][][] */ -41,-127,-7,101,14,13,65,-102, /* [4][0][][] */ -26,59,-44,29,-31,-110,-15,-127, /* [5][0][][] */ -82,-43,-58,35,-26,-127,6,-36, /* [6][0][][] */ 40,72,-122,36,127,-124,67,-14, /* [7][0][][] */ 86,11,-60,-28,127,-82,-17,27, /* [8][0][][] */ -32,-127,18,-68,-42,110,-26,-9, /* [9][0][][] */ 85,127,-31,50,58,-125,17,-47, /* [10][0][][] */ -7,-51,88,-18,18,-104,109,127, /* [11][0][][] */ -42,-127,122,-68,-75,-84,96,61, /* [12][0][][] */ -127,25,96,52,79,-119,6,36, /* [13][0][][] */ 126,-94,0,-16,123,-127,-8,89, /* [14][0][][] */ 127,-116,8,38,90,85,24,-85, /* [15][0][][] */ 127,-71,60,-24,-31,84,48,-90, /* [16][0][][] */ 87,-26,71,-47,-27,102,64,-127, /* [17][0][][] */ 37,-10,127,-19,-86,21,-91,15, /* [18][0][][] */ 103,29,-112,-107,-127,64,90,1, /* [19][0][][] */ 127,-77,-47,36,-68,-88,61,47, /* [20][0][][] */ 107,-38,127,22,-61,-78,102,-3, /* [21][0][][] */ 52,127,-18,103,56,-49,-1,16, /* [22][0][][] */ 8,74,61,15,2,33,114,127, /* [23][0][][] */ 126,127,73,-101,-61,-83,-64,-23, /* [24][0][][] */ 72,57,-5,-94,71,-11,22,127, /* [25][0][][] */ 90,24,-47,-66,-127,126,35,-79, /* [26][0][][] */ 127,-54,-29,-17,-5,-39,-4,44, /* [27][0][][] */ -75,86,-84,-95,-45,60,127,-102, /* [28][0][][] */ 88,49,-127,-32,7,16,126,28, /* [29][0][][] */ 86,-22,93,74,-67,51,-14,127, /* [30][0][][] */ 42,121,-8,127,-39,-54,-95,-22, /* [31][0][][] */ 32,63,-64,-19,39,127,-48,2, /* [32][0][][] */ 78,-80,-92,50,-121,122,-43,127, /* [33][0][][] */ 42,127,35,-103,-19,-14,-111,-7, /* [34][0][][] */ 47,18,-62,-55,55,127,21,45, /* [35][0][][] */ 49,-37,63,127,-17,-20,7,28, /* [36][0][][] */ 14,122,84,32,27,-23,-3,127, /* [37][0][][] */ 29,127,-43,-107,-27,-46,109,-37, /* [38][0][][] */ -45,-127,15,-63,-46,3,17,-33, /* [39][0][][] */ -127,15,21,8,4,-27,49,29, /* [40][0][][] */ 110,86,14,90,-55,127,85,109, /* [41][0][][] */ 127,-70,-17,-2,-22,-50,0,24, /* [42][0][][] */ 95,-99,-127,-22,43,-79,-2,50, /* [43][0][][] */ -41,-1,-126,-83,2,-64,-6,127, /* [44][0][][] */ 29,18,4,-39,122,-26,61,-127, /* [45][0][][] */ 109,58,-62,-24,8,127,36,7, /* [46][0][][] */ 11,31,-26,127,111,-93,14,-18, /* [47][0][][] */ 42,127,54,39,-14,-19,-43,2, }; const TfArray<4, int> tensor_dimension90 = { 4, { 48,1,1,8 } }; const TfArray<48, float> quant90_scale = { 48, { 0.0018979486776515841, 0.0011703901691362262, 0.0014467205619439483, 0.0014253216795623302, 0.0022645136341452599, 0.0011821379885077477, 0.0016181881073862314, 0.0016425600042566657, 0.0015498523134738207, 0.0014648811193183064, 0.0023820770438760519, 0.00094156601699069142, 0.00039063062286004424, 0.0019120892975479364, 0.0012680151266977191, 0.0016873723361641169, 0.0012072649551555514, 0.00096448877593502402, 0.0021729511208832264, 0.0020393603481352329, 0.00012088794028386474, 0.0020191012881696224, 0.0018095335690304637, 0.001775440527126193, 0.0018087966600432992, 0.0011696647852659225, 0.0031409296207129955, 0.00044000308844260871, 0.0020578091498464346, 0.0018494963878765702, 0.0020780498161911964, 0.0022624707780778408, 0.0016181992832571268, 0.0023002480156719685, 0.0025831842795014381, 0.0021964372135698795, 0.0011455295607447624, 0.0016710377531126142, 0.0030044482555240393, 0.0028381010051816702, 0.0012449552305042744, 0.0038303937762975693, 0.0022663089912384748, 0.0025272488128393888, 0.0016074007144197822, 0.0022050915285944939, 0.0019319063285365701, 0.0018882009899243712, } }; const TfLiteAffineQuantization quant90 = { (TfLiteFloatArray*)&quant90_scale, (TfLiteIntArray*)&g0::quant87_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data91[8] = { -1951, -1196, -5640, -5477, -161, 1438, -3340, 6622, }; const TfArray<1, int> tensor_dimension91 = { 1, { 8 } }; const TfArray<8, float> quant91_scale = { 8, { 0.00011786202958319336, 0.00011164996249135584, 9.8049684311263263e-05, 0.00016413234698120505, 0.00017020327504724264, 0.0001617885718587786, 0.00012948222865816206, 9.931034583132714e-05, } }; const TfArray<8, int> quant91_zero = { 8, { 0,0,0,0,0,0,0,0 } }; const TfLiteAffineQuantization quant91 = { (TfLiteFloatArray*)&quant91_scale, (TfLiteIntArray*)&quant91_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data92[8*1*1*48] = { /* [0][0][][] */ 69,-9,76,14,-46,57,83,-85,-21,89,17,-56,16,45,12,-43,-66,124,-13,44,-101,-74,-37,81,-88,62,9,19,5,-68,127,-2,7,25,69,43,6,-25,50,-72,50,-81,-68,24,90,-27,78,50, /* [1][0][][] */ -1,39,-69,92,-24,43,-66,34,59,-84,56,18,21,-31,6,34,-117,23,1,39,-6,-54,38,-6,-13,73,-16,127,-56,-15,79,3,-39,69,-23,71,-49,58,-30,-18,5,-23,59,72,-29,-23,14,41, /* [2][0][][] */ 60,-6,29,-117,47,-62,112,-20,2,62,-59,-34,-12,108,-102,49,5,-42,112,-34,-23,24,-48,19,68,52,-13,-44,67,106,-43,127,-44,-122,96,-31,54,-29,-66,65,17,-6,-19,11,20,53,-16,-77, /* [3][0][][] */ 22,19,33,1,75,25,-19,-21,69,-13,9,-1,-127,4,-14,5,-14,32,21,52,-2,-15,44,-5,-10,-14,-27,-12,-2,-45,-34,23,-1,35,-5,-44,-42,-33,20,8,-32,58,29,-36,-33,53,-37,37, /* [4][0][][] */ -9,21,-21,38,68,53,-59,46,-40,41,-19,-16,68,53,42,-51,-44,-127,-18,81,-2,-17,17,38,-25,17,21,-6,19,11,-121,-30,-29,3,33,-29,71,-9,36,-11,-5,33,59,-35,-38,-41,-61,12, /* [5][0][][] */ -62,-24,-1,-25,-15,90,-34,-11,-7,8,-79,51,-38,25,57,-51,24,7,-23,-22,-75,55,-44,50,-49,-28,127,-61,51,9,-4,-8,90,-40,-9,-92,-23,0,22,19,26,-26,5,-43,8,-16,-15,54, /* [6][0][][] */ -11,9,12,-127,-41,30,77,-51,-48,22,104,36,-2,18,-22,21,-21,15,-17,-47,86,48,47,40,71,-79,-9,124,-38,12,52,31,-4,2,-19,120,-58,-15,-26,-12,2,19,-21,100,-51,-5,9,-26, /* [7][0][][] */ 5,8,0,-13,-51,-66,-24,25,52,-76,-104,-15,-44,-31,1,29,13,63,-44,17,-16,-29,-92,-36,19,81,14,-105,38,-20,-102,38,-83,70,-57,-127,29,-66,81,-36,-27,-24,9,-99,99,25,-36,-19, }; const TfArray<4, int> tensor_dimension92 = { 4, { 8,1,1,48 } }; const TfArray<8, float> quant92_scale = { 8, { 0.0050091361626982689, 0.0047451234422624111, 0.0041671115905046463, 0.0069756247103214264, 0.0072336387820541859, 0.0068760141730308533, 0.0055029946379363537, 0.0042206896468997002, } }; const TfLiteAffineQuantization quant92 = { (TfLiteFloatArray*)&quant92_scale, (TfLiteIntArray*)&g0::quant91_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data93[48] = { -1089, -234, -959, 4480, 5243, 295, -1259, -1293, -491, -2053, 2779, 8368, 54, -1390, -950, 9750, -4669, 2454, -902, 250, -5430, 5159, 700, -2709, -7584, 2774, -278, -10, -5696, -389, -1145, -406, -2813, 7290, -75, -421, -676, 476, 2657, 6049, -130, 6743, -4597, 56, 12758, 3803, -1816, -6264, }; const TfArray<48, float> quant93_scale = { 48, { 0.00025897895102389157, 0.0010678820544853806, 0.00031358256819657981, 0.00066140008857473731, 0.00015078681462910026, 0.00030423878342844546, 0.00022216353681869805, 0.00023306772345677018, 0.00033608954981900752, 0.00047050797729752958, 0.00018712821474764496, 0.00016121155931614339, 0.00039371396997012198, 0.00031933400896377861, 0.000206861732294783, 0.00016321551811415702, 0.00048476998927071691, 0.0001544442493468523, 0.00016767735360190272, 0.00031658849911764264, 0.00014893186744302511, 0.00019756470283027738, 0.0003407886833883822, 0.00033102621091529727, 0.00014609105710405856, 0.00037913379492238164, 0.00037142375367693603, 0.00016424070054199547, 0.00016372320533264428, 0.00028178151114843786, 0.00023251918901223689, 0.00029989474569447339, 0.00059398222947493196, 0.00016809119551908225, 0.00025595561601221561, 0.00026786979287862778, 0.00018479094433132559, 0.00014265031495597214, 0.00033014803193509579, 0.00019862741464748979, 0.00036939623532816768, 0.0002370113943470642, 0.00022556961630471051, 0.0004094733449164778, 0.00020879202929791063, 0.00024967247736640275, 0.0003001420118380338, 0.0002431945176795125, } }; const TfLiteAffineQuantization quant93 = { (TfLiteFloatArray*)&quant93_scale, (TfLiteIntArray*)&g0::quant87_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data94[1*3*3*48] = { /* [0][0][][] */ 3,34,22,-127,-10,-36,127,49,-31,-34,-8,-45,-5,-31,-54,16,2,-39,51,49,31,11,-6,-4,-127,16,15,19,-19,52,-38,-53,19,-10,59,-13,-11,127,15,-8,-8,53,127,36,-61,45,-15,127, -18,127,-60,79,127,52,-33,127,-70,46,9,11,-21,-97,-23,-92,127,-30,1,127,127,-74,-49,27,79,3,127,-52,-127,127,-26,127,-53,127,-108,-71,-84,-48,11,-127,-127,-45,-61,30,-19,-85,2,102, 23,50,-7,58,-4,-4,5,-38,3,5,18,20,-16,127,12,-64,-21,-12,48,12,-42,-3,-12,-9,-53,-14,31,-10,-32,2,2,-71,-6,-51,47,1,17,-24,-4,15,41,64,9,7,-59,108,20,-15, /* [0][1][][] */ -52,18,127,46,-100,127,90,113,-26,127,-127,-90,127,46,-125,-127,15,-84,127,-19,80,-70,62,-43,115,-49,56,-127,4,-35,127,89,-112,-58,17,127,33,-93,106,4,5,14,43,-127,-84,-38,-104,-30, -39,17,-67,-29,-86,-59,-21,-32,-41,-83,-102,-127,-125,54,127,-31,11,-127,89,74,92,-21,-127,127,52,-127,-91,-105,112,-18,68,64,102,-77,75,83,127,-108,-127,-108,20,-127,43,-84,-127,-127,-104,-9, 127,-4,-19,-40,-16,-22,-39,-29,3,-30,-62,2,-15,-45,48,-71,11,-22,-13,-23,81,-80,45,-23,84,67,-13,-57,65,-4,47,41,0,-70,-43,67,-28,-30,-50,8,14,-35,40,-68,16,26,-32,1, /* [0][2][][] */ 35,-37,16,-20,-81,28,-21,-16,39,35,35,-17,7,-57,99,-85,-5,91,97,-42,23,72,33,1,10,-27,-61,110,23,-29,-93,-109,-6,-10,-127,-127,-61,-46,-20,13,0,-38,51,80,-57,13,123,-63, -81,-70,7,-70,-84,-26,113,-12,127,-20,47,-120,9,67,-7,-51,13,115,-70,-119,66,-127,58,13,115,59,-56,118,89,31,-68,-47,127,-112,115,-6,87,108,13,36,114,-93,7,57,-109,-70,127,38, 64,-24,7,-27,8,-18,-50,-14,31,9,10,-43,5,1,56,49,14,58,-41,-32,-8,37,5,12,17,-88,-16,14,14,8,-44,13,-19,-34,0,-57,20,38,27,5,-63,14,-16,33,4,13,22,63, }; const TfArray<48, float> quant94_scale = { 48, { 0.011006604880094528, 0.045384988188743591, 0.013327258639037609, 0.028109502047300339, 0.0064084394834935665, 0.012930148281157017, 0.0094419503584504128, 0.0099053783342242241, 0.014283806085586548, 0.019996589049696922, 0.0079529490321874619, 0.0068514910526573658, 0.016732843592762947, 0.013571695424616337, 0.0087916236370801926, 0.0069366595707833767, 0.020602723583579063, 0.006563880480825901, 0.0071262875571846962, 0.013455010950565338, 0.0063296039588749409, 0.008396499790251255, 0.014483518898487091, 0.014068613760173321, 0.0062088696286082268, 0.016113186255097389, 0.015785509720444679, 0.0069802296347916126, 0.0069582359865307808, 0.011975714005529881, 0.0098820654675364494, 0.012745526619255543, 0.025244243443012238, 0.0071438755840063095, 0.010878114029765129, 0.011384465731680393, 0.0078536150977015495, 0.0060626380145549774, 0.014031291007995605, 0.0084416652098298073, 0.015699340030550957, 0.010072983801364899, 0.0095867086201906204, 0.017402617260813713, 0.0088736610487103462, 0.010611080564558506, 0.012756035663187504, 0.010335766710340977, } }; const TfLiteAffineQuantization quant94 = { (TfLiteFloatArray*)&quant94_scale, (TfLiteIntArray*)&g0::quant87_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data95[48] = { -149, -2569, 1518, 15846, -228, 1675, 1633, -114, 3053, 5056, 627, 2003, 3835, 1145, 1233, 1700, 11407, 1893, 192, 3490, 287, 1286, 312, 461, 1919, 4264, 3125, -366, 165, 921, -315, 3643, 20251, 3375, 958, 3510, -157, 594, 1902, 677, 1455, 3419, 756, 2834, 4722, 4460, 1034, 3306, }; const TfArray<48, float> quant95_scale = { 48, { 0.00026480888482183218, 0.00029182195430621505, 0.00030125796911306679, 5.7686575019033626e-05, 0.00037514427094720304, 0.00021300162188708782, 0.00019835232524201274, 0.00027121353195980191, 0.00021520994778256863, 0.00015799737593624741, 0.00038046098779886961, 0.00024505902547389269, 0.00013412632688414305, 0.00027219671756029129, 0.00025212604668922722, 0.00024776163627393544, 6.8787558120675385e-05, 0.00024613554705865681, 0.00024793486227281392, 0.00019388897635508329, 0.00058362289564684033, 0.00022643794363830239, 0.00021688773995265365, 0.00048867083387449384, 0.00028187112184241414, 0.00011944668221985921, 0.00016301675350405276, 0.00050897372420877218, 0.0004991245805285871, 0.00026115812943316996, 0.00028777535771951079, 0.00013692022184841335, 4.8388406867161393e-05, 0.00014137798279989511, 0.0003316724905744195, 0.00015478236309718341, 0.00032616383396089077, 0.00043462187750265002, 0.00022409469238482416, 0.00019227000302635133, 0.00025501925847493112, 0.00013231967750471085, 0.00038891032454557717, 0.0001766602072166279, 0.00011274463031440973, 0.00013006635708734393, 0.00031574998865835369, 0.00018830804037861526, } }; const TfLiteAffineQuantization quant95 = { (TfLiteFloatArray*)&quant95_scale, (TfLiteIntArray*)&g0::quant87_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data96[48*1*1*8] = { /* [0][0][][] */ 62,8,-29,48,-4,-47,127,-62, /* [1][0][][] */ -127,25,-69,-65,-28,22,83,42, /* [2][0][][] */ 72,-22,33,40,81,-28,-127,125, /* [3][0][][] */ 6,-43,-54,-9,-3,-127,-50,6, /* [4][0][][] */ 42,-41,-92,-57,50,4,-127,55, /* [5][0][][] */ 101,127,-36,36,41,112,-122,-124, /* [6][0][][] */ 45,-25,37,-47,-64,50,-127,22, /* [7][0][][] */ 6,127,-2,-77,-45,-71,66,-102, /* [8][0][][] */ 56,103,-68,35,-127,3,29,84, /* [9][0][][] */ 50,-127,-97,-42,-63,103,26,-55, /* [10][0][][] */ 63,49,-29,-31,-41,-49,94,-127, /* [11][0][][] */ 64,20,127,59,-104,-108,-59,-66, /* [12][0][][] */ 90,117,-113,-127,42,-51,-102,10, /* [13][0][][] */ -26,-47,-11,-127,-25,52,13,47, /* [14][0][][] */ 72,70,-21,77,88,127,-90,-109, /* [15][0][][] */ -119,127,100,-38,-82,-103,-36,-1, /* [16][0][][] */ 97,-123,115,3,-115,127,-12,62, /* [17][0][][] */ 60,-2,-50,-127,-81,81,65,-84, /* [18][0][][] */ -104,126,114,26,-62,-61,-56,127, /* [19][0][][] */ -127,-4,-24,-37,-3,-2,-23,0, /* [20][0][][] */ -22,-13,-120,-17,52,16,-69,127, /* [21][0][][] */ -24,84,-81,-67,127,-45,41,-23, /* [22][0][][] */ 58,82,-127,53,30,-50,61,-41, /* [23][0][][] */ -2,-29,41,-4,127,57,-46,43, /* [24][0][][] */ -65,-4,-50,-127,26,33,-7,124, /* [25][0][][] */ 41,-14,58,38,-84,30,-93,127, /* [26][0][][] */ 127,26,3,55,-16,125,40,3, /* [27][0][][] */ -25,16,7,43,127,-7,-96,48, /* [28][0][][] */ -107,35,-127,-85,14,-33,-31,84, /* [29][0][][] */ 4,105,14,-61,-127,-2,-55,49, /* [30][0][][] */ 127,70,-44,2,-86,26,-10,27, /* [31][0][][] */ 77,-78,-29,75,103,44,127,-41, /* [32][0][][] */ 49,-89,-104,-127,57,75,-125,92, /* [33][0][][] */ 21,92,-73,57,115,-38,127,-103, /* [34][0][][] */ 100,-15,-116,20,-73,-11,-127,25, /* [35][0][][] */ 31,56,97,3,127,-74,-56,-37, /* [36][0][][] */ 26,-21,127,-54,110,-88,-79,-18, /* [37][0][][] */ 19,127,-30,12,-21,21,-52,-17, /* [38][0][][] */ -28,-22,-91,8,80,-15,-127,45, /* [39][0][][] */ 30,-62,-116,78,-52,-82,127,-62, /* [40][0][][] */ -64,-21,18,-17,-127,-36,6,-36, /* [41][0][][] */ -37,-111,24,-30,-127,83,-60,16, /* [42][0][][] */ -57,-30,-29,-86,55,127,13,17, /* [43][0][][] */ -34,7,74,113,20,-24,-87,127, /* [44][0][][] */ 36,127,-34,102,6,-112,-36,-33, /* [45][0][][] */ 48,76,18,41,127,42,54,-31, /* [46][0][][] */ -127,-51,-20,2,43,-31,12,10, /* [47][0][][] */ -10,-49,-20,4,-26,-74,127,-63, }; const TfArray<48, float> quant96_scale = { 48, { 0.0039029377512633801, 0.004301074892282486, 0.0044401497580111027, 0.00085022486746311188, 0.0055291373282670975, 0.0031393661629408598, 0.0029234546236693859, 0.0039973338134586811, 0.0031719140242785215, 0.002328675240278244, 0.0056074988096952438, 0.0036118505522608757, 0.0019768471829593182, 0.0040118247270584106, 0.0037160092033445835, 0.0036516832187771797, 0.0010138389188796282, 0.0036277167964726686, 0.0036542364396154881, 0.0028576706536114216, 0.0086018405854701996, 0.003337400034070015, 0.0031966425012797117, 0.0072023710235953331, 0.0041544125415384769, 0.0017604883760213852, 0.0024026543833315372, 0.0075016091577708721, 0.0073564453050494194, 0.0038491301238536835, 0.004241433460265398, 0.0020180256105959415, 0.00071318203117698431, 0.0020837271586060524, 0.0048884199932217598, 0.0022812902461737394, 0.0048072296194732189, 0.0064057596027851105, 0.0033028635662049055, 0.0028338090050965548, 0.0037586512044072151, 0.0019502195063978434, 0.0057320310734212399, 0.0026037411298602819, 0.0016617088112980127, 0.0019170084269717336, 0.004653743002563715, 0.0027754148468375206, } }; const TfLiteAffineQuantization quant96 = { (TfLiteFloatArray*)&quant96_scale, (TfLiteIntArray*)&g0::quant87_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data97[8] = { 1627, 3096, 4309, -4783, 1167, 3033, -10305, -5124, }; const TfArray<8, float> quant97_scale = { 8, { 9.863806189969182e-05, 0.00014275932335294783, 6.6004402469843626e-05, 0.00013131881132721901, 8.4558741946239024e-05, 8.0644349509384483e-05, 6.8479443143587559e-05, 9.2533373390324414e-05, } }; const TfLiteAffineQuantization quant97 = { (TfLiteFloatArray*)&quant97_scale, (TfLiteIntArray*)&g0::quant91_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data98[8*1*1*48] = { /* [0][0][][] */ -12,60,32,-51,-15,4,2,18,-39,23,29,34,-1,-43,100,-8,-83,44,-47,4,-75,27,-16,127,46,-7,11,44,-117,67,-66,-48,35,19,-2,30,-61,96,-20,-2,-52,71,-20,-69,34,-71,-107,5, /* [1][0][][] */ -26,39,-20,22,-19,22,12,16,-54,34,-15,-16,45,-19,37,-97,-42,-81,40,10,-20,-10,-51,15,58,-27,-8,127,0,39,-11,-10,-14,29,-52,7,-23,91,-37,28,15,-13,41,37,-22,36,-2,28, /* [2][0][][] */ -65,61,-12,-10,14,-38,-51,45,-88,-62,-15,94,48,-19,-37,-101,-103,-111,-9,-113,80,14,95,-93,48,-29,0,70,-7,96,-32,-23,52,-65,69,-5,-89,127,-6,-2,-91,-50,8,-31,15,-22,19,59, /* [3][0][][] */ -26,-87,-12,7,61,-58,-66,-23,14,-79,127,-13,23,57,-64,-6,-28,11,30,25,-76,-10,25,-25,105,13,-13,-3,9,-34,30,18,-57,-79,-78,-5,-30,34,26,40,29,42,5,-6,-17,-45,12,19, /* [4][0][][] */ 26,-12,49,-39,28,-11,50,29,-3,19,34,33,-35,4,49,72,-48,20,-11,65,-1,-18,-88,79,11,6,33,44,-28,25,1,-41,55,3,-74,-48,-27,22,-36,-12,-23,-127,-26,-22,14,7,-72,-8, /* [5][0][][] */ -42,73,-41,5,-101,4,-11,98,36,23,-20,-54,41,32,19,-6,-39,-58,127,-20,-12,-64,35,69,11,-38,-83,17,-46,-17,-45,-42,-96,7,71,-86,-69,67,-28,14,9,91,-13,19,-113,-34,-36,43, /* [6][0][][] */ 89,-31,-34,-26,33,-18,-26,67,-69,-36,108,19,-20,18,-92,38,41,-6,15,-34,127,-27,-4,110,18,1,36,-12,39,-49,34,13,35,3,-65,-53,-5,-18,42,-5,-29,-1,-21,-10,-22,29,69,13, /* [7][0][][] */ -26,1,16,-70,-25,-4,-21,1,-68,-7,-6,11,-57,-6,26,-1,-61,2,27,2,34,24,-5,62,51,24,-65,62,5,-7,-9,8,-13,-8,55,24,-45,127,-44,-7,-39,84,-44,3,18,60,5,-18, }; const TfArray<8, float> quant98_scale = { 8, { 0.0041921176016330719, 0.0060672713443636894, 0.0028051869012415409, 0.0055810492485761642, 0.0035937465727329254, 0.0034273848868906498, 0.0029103762935847044, 0.00393266836181283, } }; const TfLiteAffineQuantization quant98 = { (TfLiteFloatArray*)&quant98_scale, (TfLiteIntArray*)&g0::quant91_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data99[48] = { 122, 13, 4490, 906, 17454, -680, -594, -817, -48, -1177, -875, -205, 871, 16177, 61, 8238, -331, 21766, 14431, -1897, 860, 274, 13537, -5912, 11677, 12175, -57, 269, 24668, 3535, 14226, 2849, -9, -1891, -1414, -2750, -11455, 1812, 9349, -1663, 6467, 46, -47, -2209, -1343, 6511, -4655, 407, }; const TfArray<48, float> quant99_scale = { 48, { 0.0002199132286477834, 0.00025287925382144749, 0.00013388143270276487, 0.00020942538685631007, 6.8701701820828021e-05, 0.00021558409207500517, 0.00024527555797249079, 0.00027137357392348349, 0.00010323812603019178, 0.0001663541333982721, 9.9677672551479191e-05, 0.00016025718650780618, 0.00028011403628624976, 0.00010054095037048683, 0.00017187600315082818, 0.00028993363957852125, 0.0019524750532582402, 8.2611724792513996e-05, 0.00010035451123258099, 0.00016394905105698854, 0.00017098327225539833, 0.00035220364225097001, 8.3326624007895589e-05, 0.00017361767822876573, 0.00015062924649100751, 0.0001306145713897422, 0.00010134414333151653, 0.00015843400615267456, 9.2474205303005874e-05, 5.5216954933712259e-05, 8.6580577772110701e-05, 9.9851422419305891e-05, 0.00020944105926901102, 0.00015287622227333486, 4.6559529437217861e-05, 0.00014043593546375632, 0.00016381281602662057, 0.0002457983500789851, 7.7052776759956032e-05, 0.0001545146806165576, 0.00013577517529483885, 7.6320997322909534e-05, 0.00021122426551301032, 0.00020080366812180728, 0.00022769704810343683, 9.5879047876223922e-05, 8.5636092990171164e-05, 0.00026280625024810433, } }; const TfLiteAffineQuantization quant99 = { (TfLiteFloatArray*)&quant99_scale, (TfLiteIntArray*)&g0::quant87_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data100[1*3*3*48] = { /* [0][0][][] */ 37,86,16,-46,-118,26,-93,-108,-1,-55,8,76,-57,-63,-68,16,72,-54,-46,34,73,-5,-91,40,5,-71,60,-13,-60,93,-42,-77,25,40,49,-17,43,-22,-44,-38,-85,32,-23,74,71,-33,67,49, 27,127,55,50,-80,43,-104,27,127,-67,58,86,127,-68,-127,14,93,-71,-99,59,6,24,-99,68,-45,-84,-127,67,-27,50,-89,7,52,19,120,37,52,-31,-90,-42,-127,90,-123,76,83,-21,94,-40, -8,38,61,81,-40,40,-72,55,78,-19,17,-8,-76,-38,-87,-62,22,5,-66,3,-42,-79,-65,-9,-21,-37,-44,37,-27,-25,-127,57,-63,-6,41,74,-5,-13,-89,-38,-47,94,81,27,-48,-127,83,-24, /* [0][1][][] */ 107,65,-127,-12,-121,-69,127,-112,-31,79,44,97,22,-106,100,11,114,-108,-89,70,127,-43,-115,127,-57,-52,119,22,-127,127,-117,-127,-62,-88,48,-25,70,54,19,-50,-73,20,-127,125,58,-55,76,91, 127,61,-50,96,-77,-127,97,127,53,127,127,127,102,-127,102,-7,127,-127,-127,127,8,127,-86,44,-127,-127,9,127,-99,113,-120,-10,102,-127,127,-17,113,118,-127,13,39,104,35,127,127,-9,127,-127, -41,7,67,127,-127,-91,37,9,60,84,88,-9,-118,-80,44,-122,46,-6,-54,22,-22,-51,-98,-32,-51,-83,-4,50,-107,-12,-121,66,56,-52,57,127,54,34,-95,127,29,127,84,38,97,-94,115,41, /* [0][2][][] */ 79,-20,-26,12,-68,25,-18,-36,19,-12,42,-11,70,-57,56,25,71,-35,-91,41,55,-74,-115,92,-31,-5,61,14,-92,28,-79,-110,-127,90,35,-12,43,90,82,27,-64,5,19,78,-42,-37,39,26, 113,-73,-52,40,-63,64,-3,77,-2,-65,99,108,-57,-85,80,-17,86,-50,-87,20,-6,55,-127,-9,-53,-104,111,54,-92,73,-113,16,-32,81,52,-90,127,127,-15,67,46,-22,100,95,69,20,95,-87, 3,-36,-44,68,-104,50,20,-25,47,-69,79,25,-50,-51,61,-127,28,-17,-13,-6,14,28,-116,4,-1,-71,74,17,-109,16,-14,67,52,36,24,41,56,72,-12,123,6,4,-4,-4,121,-72,94,52, }; const TfArray<48, float> quant100_scale = { 48, { 0.0093463119119405746, 0.010747368447482586, 0.0056899609044194221, 0.0089005790650844574, 0.0029198222327977419, 0.0091623235493898392, 0.010424211621284485, 0.011533376760780811, 0.0043876203708350658, 0.0070700505748391151, 0.0042363009415566921, 0.0068109305575489998, 0.011904846876859665, 0.0042729903943836689, 0.0073047298938035965, 0.012322179041802883, 0.082980185747146606, 0.0035109980963170528, 0.0042650667019188404, 0.0069678346626460552, 0.0072667892090976238, 0.014968655072152615, 0.0035413813311606646, 0.0073787509463727474, 0.0064017428085207939, 0.0055511193349957466, 0.00430712616071105, 0.0067334449850022793, 0.0039301537908613682, 0.0023467205464839935, 0.0036796743515878916, 0.0042436853982508183, 0.0089012449607253075, 0.0064972392283380032, 0.0019787799101322889, 0.0059685269370675087, 0.0069620446301996708, 0.010446430183947086, 0.0032747429795563221, 0.0065668737515807152, 0.0057704448699951172, 0.0032436423934996128, 0.008977031335234642, 0.0085341557860374451, 0.0096771242097020149, 0.0040748594328761101, 0.0036395338829606771, 0.011169265024363995, } }; const TfLiteAffineQuantization quant100 = { (TfLiteFloatArray*)&quant100_scale, (TfLiteIntArray*)&g0::quant87_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data101[48] = { -2071, -1836, 764, -535, 413, -757, 4564, 2419, 520, 2812, -75, -391, 7869, 909, -1154, 9490, -2355, 294, 646, -389, 2538, 5508, -582, 5426, 2025, 570, 407, -821, 1543, -58, 847, 1062, -271, 218, 850, 1699, 2341, -3043, -25, 2207, 307, 174, 84, -675, -939, 928, -1669, 3643, }; const TfArray<48, float> quant101_scale = { 48, { 0.0001562550023663789, 0.00016924987721722573, 0.00049081671750172973, 0.00025843217736110091, 0.00033960150904022157, 0.00037592582521028817, 0.00014513566566165537, 0.00018535432172939181, 0.00045033058268018067, 0.00038541955291293561, 0.0003481801541056484, 0.00041055318433791399, 8.7834814621601254e-05, 0.00038646339089609683, 0.0001498329802416265, 7.8682649473194033e-05, 0.00028037777519784868, 0.00030600515310652554, 0.00029232940869405866, 0.00026897367206402123, 0.00024613318964838982, 0.00012782533303834498, 0.00026973112835548818, 0.00013974712055642158, 0.00016634803614579141, 0.00046960453619249165, 0.0003763205895666033, 0.00038047568523325026, 0.00030969190993346274, 0.00041933957254514098, 0.00051820330554619431, 0.00037146551767364144, 0.00022991759760770947, 0.00030687529942952096, 0.00064331013709306717, 0.00026911814347840846, 0.00020264745398890227, 9.9075048638042063e-05, 0.00043700495734810829, 0.00020139792468398809, 0.00030007187160663307, 0.00027472406509332359, 0.00022638686641585082, 0.00046686027781106532, 0.00028307997854426503, 0.00049714208580553532, 0.00042716623283922672, 0.00012953662371728569, } }; const TfLiteAffineQuantization quant101 = { (TfLiteFloatArray*)&quant101_scale, (TfLiteIntArray*)&g0::quant87_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data102[48*1*1*8] = { /* [0][0][][] */ -45,-116,-43,-61,33,12,-127,-126, /* [1][0][][] */ 61,9,68,-41,11,2,-56,127, /* [2][0][][] */ 29,-56,-127,-21,-12,16,-33,-70, /* [3][0][][] */ 35,29,0,-48,-45,-127,54,-101, /* [4][0][][] */ -63,127,26,33,13,-50,-62,75, /* [5][0][][] */ 67,68,-119,21,36,-58,-127,-53, /* [6][0][][] */ 46,-102,-3,-37,-57,-54,127,17, /* [7][0][][] */ -1,24,-19,127,25,48,-60,123, /* [8][0][][] */ 34,41,-12,-37,-88,-11,-62,127, /* [9][0][][] */ 2,23,-77,127,11,11,-97,-43, /* [10][0][][] */ -62,-78,41,70,-19,82,23,-127, /* [11][0][][] */ -33,39,-127,12,68,-11,-62,35, /* [12][0][][] */ 47,-127,-48,-65,-86,-83,80,26, /* [13][0][][] */ 59,-1,15,13,-75,-40,-127,29, /* [14][0][][] */ -4,12,77,11,-15,40,-71,127, /* [15][0][][] */ 113,-102,126,-46,127,76,71,12, /* [16][0][][] */ -52,-93,-66,-54,114,-44,-58,127, /* [17][0][][] */ -13,127,-15,-78,24,113,-55,-60, /* [18][0][][] */ 104,18,-69,-127,62,30,81,22, /* [19][0][][] */ -13,-127,-63,17,-41,-2,8,-94, /* [20][0][][] */ 3,30,6,127,71,14,21,11, /* [21][0][][] */ 96,54,70,121,-127,86,38,90, /* [22][0][][] */ 7,-97,-54,-20,-49,41,-15,-127, /* [23][0][][] */ 43,-25,-80,127,42,37,-70,-72, /* [24][0][][] */ -127,-14,50,-103,-25,15,54,-56, /* [25][0][][] */ 44,-67,-81,-25,23,-43,20,127, /* [26][0][][] */ 18,-49,-99,40,31,-6,-68,-127, /* [27][0][][] */ 8,-43,33,9,67,-49,45,-127, /* [28][0][][] */ -127,38,18,109,70,-57,68,-34, /* [29][0][][] */ 114,48,-10,127,-63,-15,114,24, /* [30][0][][] */ 13,91,-127,-4,-43,-15,-42,23, /* [31][0][][] */ 107,-8,88,-113,-80,127,8,-44, /* [32][0][][] */ 23,-39,-118,-10,3,13,-103,-127, /* [33][0][][] */ 19,-88,-39,127,-51,-10,73,-7, /* [34][0][][] */ -8,78,16,36,22,-23,15,127, /* [35][0][][] */ 127,54,-75,10,-118,104,7,43, /* [36][0][][] */ -66,-25,-86,39,19,-127,-9,91, /* [37][0][][] */ 113,-47,19,127,43,46,-45,49, /* [38][0][][] */ -25,8,-37,0,-112,22,-100,-127, /* [39][0][][] */ 127,-24,38,64,22,97,-67,103, /* [40][0][][] */ 6,11,63,-16,-66,-39,-40,127, /* [41][0][][] */ 127,-40,35,73,40,55,-43,95, /* [42][0][][] */ 34,3,-56,43,-10,-69,40,-127, /* [43][0][][] */ -26,52,-61,28,14,-127,27,44, /* [44][0][][] */ -11,-27,-48,-38,80,-5,127,11, /* [45][0][][] */ 104,12,61,-79,-28,127,14,-54, /* [46][0][][] */ -61,118,63,30,41,93,106,-127, /* [47][0][][] */ -60,-127,-97,1,-91,-59,53,115, }; const TfArray<48, float> quant102_scale = { 48, { 0.0017970470944419503, 0.0019464977085590363, 0.0056447521783411503, 0.0029721595346927643, 0.0039056662935763597, 0.0043234224431216717, 0.001669166493229568, 0.0021317105274647474, 0.0051791318692266941, 0.0044326074421405792, 0.0040043271146714687, 0.0047216624952852726, 0.0010101647349074483, 0.0044446121901273727, 0.0017231891397386789, 0.00090490817092359066, 0.0032245498150587082, 0.0035192833747714758, 0.0033620023168623447, 0.0030933942180126905, 0.0028307121247053146, 0.0014700850006192923, 0.0031021058093756437, 0.001607194310054183, 0.0019131243461742997, 0.0054007964208722115, 0.0043279626406729221, 0.0043757492676377296, 0.0035616839304566383, 0.0048227123916149139, 0.0059597175568342209, 0.0042721256613731384, 0.0026442208327353001, 0.0035292909014970064, 0.0073985382914543152, 0.0030950559303164482, 0.0023305942304432392, 0.0011394356843084097, 0.0050258771516382694, 0.0023162236902862787, 0.0034510463010519743, 0.0031595281325280666, 0.0026036149356514215, 0.0053692352958023548, 0.0032556271180510521, 0.0057174982503056526, 0.0049127247184514999, 0.001489766058512032, } }; const TfLiteAffineQuantization quant102 = { (TfLiteFloatArray*)&quant102_scale, (TfLiteIntArray*)&g0::quant87_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data103[8] = { -12450, -7639, -9787, -5027, -765, -11214, 7427, -4631, }; const TfArray<8, float> quant103_scale = { 8, { 0.00015650608111172915, 0.00015343213453888893, 0.0001692258520051837, 0.00017720478354021907, 0.00017288513481616974, 0.00011586917389649898, 0.00013206747826188803, 0.00018218101467937231, } }; const TfLiteAffineQuantization quant103 = { (TfLiteFloatArray*)&quant103_scale, (TfLiteIntArray*)&g0::quant91_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data104[8*1*1*16] = { /* [0][0][][] */ 38,65,61,38,127,101,-35,94,87,56,35,67,-22,40,0,-42, /* [1][0][][] */ 127,26,-4,46,-17,40,94,41,11,87,72,23,49,-31,85,-45, /* [2][0][][] */ 59,110,65,-97,107,127,-7,-57,-53,-79,0,-45,25,-66,-9,-5, /* [3][0][][] */ 63,2,-24,-11,9,127,92,0,38,36,-17,1,-28,68,-84,73, /* [4][0][][] */ -36,-61,-12,74,-30,48,-28,25,-44,-73,35,36,61,-127,-72,33, /* [5][0][][] */ -14,55,78,117,67,42,64,-121,-20,58,127,-69,15,-80,-22,40, /* [6][0][][] */ -25,-53,-127,121,-114,-86,-14,-45,127,60,93,-111,6,122,89,-125, /* [7][0][][] */ -6,-24,10,6,17,124,15,-52,4,-81,-22,-53,-30,10,102,-127, }; const TfArray<4, int> tensor_dimension104 = { 4, { 8,1,1,16 } }; const TfArray<8, float> quant104_scale = { 8, { 0.0066515081562101841, 0.0065208654850721359, 0.0071920985355973244, 0.0075312028639018536, 0.0073476182296872139, 0.004924439825117588, 0.0056128674186766148, 0.0077426927164196968, } }; const TfLiteAffineQuantization quant104 = { (TfLiteFloatArray*)&quant104_scale, (TfLiteIntArray*)&g0::quant91_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data105[16] = { -174, 19, 5129, -1198, -14, 309, -233, -1573, -25, 2, -228, -1727, 2164, -126, 1152, -961, }; const TfArray<16, float> quant105_scale = { 16, { 0.00098316220100969076, 0.00030447368044406176, 0.00022544183593709022, 0.00055073475232347846, 0.00053038133773952723, 0.00062771444208920002, 0.00075226015178486705, 0.00051061087287962437, 0.00066329125547781587, 0.0014826342230662704, 0.00034155684988945723, 0.00050288275815546513, 0.00013159349327906966, 0.00061939610168337822, 0.00073762721149250865, 0.00050931493751704693, } }; const TfLiteAffineQuantization quant105 = { (TfLiteFloatArray*)&quant105_scale, (TfLiteIntArray*)&g0::quant73_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data106[1*3*3*16] = { /* [0][0][][] */ -5,18,32,8,15,43,-10,11,-3,65,1,-15,34,4,70,-57, -127,49,110,46,127,127,127,-21,32,101,3,8,-86,2,7,1, -114,-5,62,-23,1,-14,5,5,-58,-8,-13,-3,-13,-33,19,-15, /* [0][1][][] */ -1,67,43,-53,1,-1,16,-3,-6,0,-37,-55,-35,-9,7,-25, 23,127,127,127,-10,-52,-23,-50,-31,-21,127,-6,100,-21,29,-15, 66,-10,97,14,11,4,-1,-5,127,85,-73,-4,59,-45,33,-23, /* [0][2][][] */ 4,19,-16,-19,3,-19,-9,-9,3,-65,-26,127,-1,-2,-127,127, 114,-40,-2,-60,-38,-34,-77,127,-8,-127,16,-5,127,-9,-68,44, 59,18,-98,7,5,-16,-23,-20,-16,-30,16,-9,13,127,-1,-2, }; const TfArray<4, int> tensor_dimension106 = { 4, { 1,3,3,16 } }; const TfArray<16, float> quant106_scale = { 16, { 0.041784394532442093, 0.01294013112783432, 0.0095812780782580376, 0.023406226187944412, 0.022541206330060959, 0.026677863672375679, 0.031971056014299393, 0.021700961515307426, 0.028189877048134804, 0.063011951744556427, 0.014516166411340237, 0.021372517570853233, 0.0055927233770489693, 0.026324333623051643, 0.031349156051874161, 0.021645884960889816, } }; const TfLiteAffineQuantization quant106 = { (TfLiteFloatArray*)&quant106_scale, (TfLiteIntArray*)&g0::quant73_zero, 3 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int32_t tensor_data107[16] = { 6652, -89, -250, 10516, -106, 24136, -5406, 274, -3435, 3532, 23, -46, 3455, 2380, 43619, -785, }; const TfArray<16, float> quant107_scale = { 16, { 3.0456485546892509e-05, 9.1081055870745331e-05, 6.6845546825788915e-05, 4.2760093492688611e-05, 6.9292662374209613e-05, 1.6635261999908835e-05, 3.2851763535290956e-05, 0.00015983624325599521, 0.00015578979218844324, 2.4505372493877076e-05, 0.00013231270713731647, 0.00013583122927229851, 0.00014992343494668603, 7.6740099757444113e-05, 1.1201449524378404e-05, 2.1541434762184508e-05, } }; const TfLiteAffineQuantization quant107 = { (TfLiteFloatArray*)&quant107_scale, (TfLiteIntArray*)&g0::quant73_zero, 0 }; const MODEL_SECTION(EI_MODEL_SECTION) ALIGN(16) int8_t tensor_data108[16*3*3*1] = { /* [0][0][][] */ -51, -81, -1, /* [0][1][][] */ -86, -127, -24, /* [0][2][][] */ -13, -34, -10, /* [1][0][][] */ -44, -79, 127, /* [1][1][][] */ -59, -36, 105, /* [1][2][][] */ -40, 9, 5, /* [2][0][][] */ 127, -118, -14, /* [2][1][][] */ 97, -75, -7, /* [2][2][][] */ 7, -12, -5, /* [3][0][][] */ 50, -84, -29, /* [3][1][][] */ 115, -10, -111, /* [3][2][][] */ 67, 127, -59, /* [4][0][][] */ -5, 18, -17, /* [4][1][][] */ -48, 127, -79, /* [4][2][][] */ -45, 125, -76, /* [5][0][][] */ 4, 35, 6, /* [5][1][][] */ 28, 37, 127, /* [5][2][][] */ 36, 67, 99, /* [6][0][][] */ 29, 67, 28, /* [6][1][][] */ 55, 127, 19, /* [6][2][][] */ 30, 19, -3, /* [7][0][][] */ -19, -8, -18, /* [7][1][][] */ -21, 127, 1, /* [7][2][][] */ -5, -7, -21, /* [8][0][][] */ -9, -8, -10, /* [8][1][][] */ 1, -9, -8, /* [8][2][][] */ 127, -39, -11, /* [9][0][][] */ -9, -64, -71, /* [9][1][][] */ -17, -127, -94, /* [9][2][][] */ 12, -53, -59, /* [10][0][][] */ -19, 54, -25, /* [10][1][][] */ -44, 127, -12, /* [10][2][][] */ -40, 22, 0, /* [11][0][][] */ 7, -13, -12, /* [11][1][][] */ -5, -26, 127, /* [11][2][][] */ -3, -10, -17, /* [12][0][][] */ 63, 3, -67, /* [12][1][][] */ 127, -17, -109, /* [12][2][][] */ 44, -24, -43, /* [13][0][][] */ 27, 127, 0, /* [13][1][][] */ 14, 17, -29, /* [13][2][][] */ 1, -27, -25, /* [14][0][][] */ -16, 59, 94, /* [14][1][][] */ 5, 127, 124, /* [14][2][][] */ 17, 58, 80, /* [15][0][][] */ -16, 72, 75, /* [15][1][][] */ -12, 127, 108, /* [15][2][][] */ 2, 57, 83, }; const TfArray<4, int> tensor_dimension108 = { 4, { 16,3,3,1 } }; const TfArray<16, float> quant108_scale = { 16, { 0.0085330447182059288, 0.025518331676721573, 0.018728228285908699, 0.011980166658759117, 0.019413841888308525, 0.004660729318857193, 0.0092041334137320518, 0.044781588017940521, 0.043647885322570801, 0.0068657109513878822, 0.037070274353027344, 0.038056064397096634, 0.0420042984187603, 0.021500403061509132, 0.0031383289024233818, 0.0060352999716997147, } }; const TfLiteAffineQuantization quant108 = { (TfLiteFloatArray*)&quant108_scale, (TfLiteIntArray*)&g0::quant73_zero, 0 }; const TfArray<4, int> tensor_dimension109 = { 4, { 1,99,40,1 } }; const TfArray<4, int> tensor_dimension110 = { 4, { 1,50,20,16 } }; const TfArray<1, float> quant110_scale = { 1, { 0.023529412224888802, } }; const TfLiteAffineQuantization quant110 = { (TfLiteFloatArray*)&quant110_scale, (TfLiteIntArray*)&g0::quant0_zero, 0 }; const TfArray<4, int> tensor_dimension112 = { 4, { 1,50,20,8 } }; const TfArray<1, float> quant112_scale = { 1, { 0.086950980126857758, } }; const TfArray<1, int> quant112_zero = { 1, { -3 } }; const TfLiteAffineQuantization quant112 = { (TfLiteFloatArray*)&quant112_scale, (TfLiteIntArray*)&quant112_zero, 0 }; const TfArray<4, int> tensor_dimension113 = { 4, { 1,50,20,48 } }; const TfArray<4, int> tensor_dimension114 = { 4, { 1,25,10,48 } }; const TfArray<4, int> tensor_dimension115 = { 4, { 1,25,10,8 } }; const TfArray<1, float> quant115_scale = { 1, { 0.067848607897758484, } }; const TfLiteAffineQuantization quant115 = { (TfLiteFloatArray*)&quant115_scale, (TfLiteIntArray*)&g0::quant3_zero, 0 }; const TfArray<1, float> quant118_scale = { 1, { 0.11772231012582779, } }; const TfArray<1, int> quant118_zero = { 1, { -8 } }; const TfLiteAffineQuantization quant118 = { (TfLiteFloatArray*)&quant118_scale, (TfLiteIntArray*)&quant118_zero, 0 }; const TfArray<4, int> tensor_dimension121 = { 4, { 1,13,5,48 } }; const TfArray<4, int> tensor_dimension122 = { 4, { 1,13,5,16 } }; const TfArray<1, float> quant122_scale = { 1, { 0.061495836824178696, } }; const TfArray<1, int> quant122_zero = { 1, { -4 } }; const TfLiteAffineQuantization quant122 = { (TfLiteFloatArray*)&quant122_scale, (TfLiteIntArray*)&quant122_zero, 0 }; const TfArray<4, int> tensor_dimension123 = { 4, { 1,13,5,96 } }; const TfArray<1, float> quant125_scale = { 1, { 0.089711673557758331, } }; const TfArray<1, int> quant125_zero = { 1, { 5 } }; const TfLiteAffineQuantization quant125 = { (TfLiteFloatArray*)&quant125_scale, (TfLiteIntArray*)&quant125_zero, 0 }; const TfArray<1, float> quant129_scale = { 1, { 0.10948604345321655, } }; const TfArray<1, int> quant129_zero = { 1, { -13 } }; const TfLiteAffineQuantization quant129 = { (TfLiteFloatArray*)&quant129_scale, (TfLiteIntArray*)&quant129_zero, 0 }; const TfArray<4, int> tensor_dimension132 = { 4, { 1,7,3,96 } }; const TfArray<4, int> tensor_dimension133 = { 4, { 1,7,3,24 } }; const TfArray<1, float> quant133_scale = { 1, { 0.060823474079370499, } }; const TfArray<1, int> quant133_zero = { 1, { 3 } }; const TfLiteAffineQuantization quant133 = { (TfLiteFloatArray*)&quant133_scale, (TfLiteIntArray*)&quant133_zero, 0 }; const TfArray<4, int> tensor_dimension134 = { 4, { 1,7,3,144 } }; const TfArray<1, float> quant136_scale = { 1, { 0.089189283549785614, } }; const TfArray<1, int> quant136_zero = { 1, { 2 } }; const TfLiteAffineQuantization quant136 = { (TfLiteFloatArray*)&quant136_scale, (TfLiteIntArray*)&quant136_zero, 0 }; const TfArray<1, float> quant140_scale = { 1, { 0.098416514694690704, } }; const TfArray<1, int> quant140_zero = { 1, { -2 } }; const TfLiteAffineQuantization quant140 = { (TfLiteFloatArray*)&quant140_scale, (TfLiteIntArray*)&quant140_zero, 0 }; const TfArray<1, float> quant144_scale = { 1, { 0.11272268742322922, } }; const TfLiteAffineQuantization quant144 = { (TfLiteFloatArray*)&quant144_scale, (TfLiteIntArray*)&g0::quant3_zero, 0 }; const TfArray<4, int> tensor_dimension148 = { 4, { 1,7,3,32 } }; const TfArray<1, float> quant148_scale = { 1, { 0.058730293065309525, } }; const TfLiteAffineQuantization quant148 = { (TfLiteFloatArray*)&quant148_scale, (TfLiteIntArray*)&g0::quant133_zero, 0 }; const TfArray<4, int> tensor_dimension149 = { 4, { 1,7,3,192 } }; const TfArray<1, float> quant151_scale = { 1, { 0.082602590322494507, } }; const TfArray<1, int> quant151_zero = { 1, { 11 } }; const TfLiteAffineQuantization quant151 = { (TfLiteFloatArray*)&quant151_scale, (TfLiteIntArray*)&quant151_zero, 0 }; const TfArray<1, float> quant155_scale = { 1, { 0.11371167004108429, } }; const TfArray<1, int> quant155_zero = { 1, { -12 } }; const TfLiteAffineQuantization quant155 = { (TfLiteFloatArray*)&quant155_scale, (TfLiteIntArray*)&quant155_zero, 0 }; const TfArray<4, int> tensor_dimension158 = { 4, { 1,4,2,192 } }; const TfArray<4, int> tensor_dimension159 = { 4, { 1,4,2,56 } }; const TfArray<1, float> quant159_scale = { 1, { 0.052879557013511658, } }; const TfLiteAffineQuantization quant159 = { (TfLiteFloatArray*)&quant159_scale, (TfLiteIntArray*)&g0::quant122_zero, 0 }; const TfArray<4, int> tensor_dimension160 = { 4, { 1,4,2,336 } }; const TfArray<1, float> quant162_scale = { 1, { 0.07478555291891098, } }; const TfArray<1, int> quant162_zero = { 1, { -18 } }; const TfLiteAffineQuantization quant162 = { (TfLiteFloatArray*)&quant162_scale, (TfLiteIntArray*)&quant162_zero, 0 }; const TfArray<1, float> quant166_scale = { 1, { 0.10657992213964462, } }; const TfLiteAffineQuantization quant166 = { (TfLiteFloatArray*)&quant166_scale, (TfLiteIntArray*)&g0::quant122_zero, 0 }; const TfArray<4, int> tensor_dimension170 = { 4, { 1,4,2,112 } }; const TfArray<1, float> quant170_scale = { 1, { 0.1074361577630043, } }; const TfLiteAffineQuantization quant170 = { (TfLiteFloatArray*)&quant170_scale, (TfLiteIntArray*)&g0::quant112_zero, 0 }; const TfArray<4, int> tensor_dimension171 = { 4, { 1,4,2,1280 } }; const TfArray<1, float> quant171_scale = { 1, { 0.0026329047977924347, } }; const TfLiteAffineQuantization quant171 = { (TfLiteFloatArray*)&quant171_scale, (TfLiteIntArray*)&g0::quant0_zero, 0 }; const TfArray<2, int> tensor_dimension172 = { 2, { 1,1280 } }; const TfArray<1, float> quant172_scale = { 1, { 0.00084327289368957281, } }; const TfLiteAffineQuantization quant172 = { (TfLiteFloatArray*)&quant172_scale, (TfLiteIntArray*)&g0::quant0_zero, 0 }; const TfArray<2, int> tensor_dimension173 = { 2, { 1,3 } }; const TfArray<1, float> quant173_scale = { 1, { 0.081172533333301544, } }; const TfArray<1, int> quant173_zero = { 1, { 23 } }; const TfLiteAffineQuantization quant173 = { (TfLiteFloatArray*)&quant173_scale, (TfLiteIntArray*)&quant173_zero, 0 }; const TfArray<1, float> quant174_scale = { 1, { 0.00390625, } }; const TfLiteAffineQuantization quant174 = { (TfLiteFloatArray*)&quant174_scale, (TfLiteIntArray*)&g0::quant0_zero, 0 }; const TfLiteReshapeParams opdata0 = { { 0, 0, 0, 0, 0, 0, 0, 0, }, 0 }; const TfArray<2, int> inputs0 = { 2, { 0,1 } }; const TfArray<1, int> outputs0 = { 1, { 109 } }; const TfLiteConvParams opdata1 = { kTfLitePaddingSame, 2,2, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs1 = { 3, { 109,108,107 } }; const TfArray<1, int> outputs1 = { 1, { 110 } }; const TfLiteDepthwiseConvParams opdata2 = { kTfLitePaddingSame, 1,1, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs2 = { 3, { 110,106,105 } }; const TfArray<1, int> outputs2 = { 1, { 111 } }; const TfLiteConvParams opdata3 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs3 = { 3, { 111,104,103 } }; const TfArray<1, int> outputs3 = { 1, { 112 } }; const TfLiteConvParams opdata4 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs4 = { 3, { 112,102,101 } }; const TfArray<1, int> outputs4 = { 1, { 113 } }; const TfLiteDepthwiseConvParams opdata5 = { kTfLitePaddingSame, 2,2, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs5 = { 3, { 113,100,99 } }; const TfArray<1, int> outputs5 = { 1, { 114 } }; const TfLiteConvParams opdata6 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs6 = { 3, { 114,98,97 } }; const TfArray<1, int> outputs6 = { 1, { 115 } }; const TfLiteConvParams opdata7 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs7 = { 3, { 115,96,95 } }; const TfArray<1, int> outputs7 = { 1, { 116 } }; const TfLiteDepthwiseConvParams opdata8 = { kTfLitePaddingSame, 1,1, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs8 = { 3, { 116,94,93 } }; const TfArray<1, int> outputs8 = { 1, { 117 } }; const TfLiteConvParams opdata9 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs9 = { 3, { 117,92,91 } }; const TfArray<1, int> outputs9 = { 1, { 118 } }; const TfLiteAddParams opdata10 = { kTfLiteActNone }; const TfArray<2, int> inputs10 = { 2, { 115,118 } }; const TfArray<1, int> outputs10 = { 1, { 119 } }; const TfLiteConvParams opdata11 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs11 = { 3, { 119,90,89 } }; const TfArray<1, int> outputs11 = { 1, { 120 } }; const TfLiteDepthwiseConvParams opdata12 = { kTfLitePaddingSame, 2,2, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs12 = { 3, { 120,88,87 } }; const TfArray<1, int> outputs12 = { 1, { 121 } }; const TfLiteConvParams opdata13 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs13 = { 3, { 121,86,85 } }; const TfArray<1, int> outputs13 = { 1, { 122 } }; const TfLiteConvParams opdata14 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs14 = { 3, { 122,84,83 } }; const TfArray<1, int> outputs14 = { 1, { 123 } }; const TfLiteDepthwiseConvParams opdata15 = { kTfLitePaddingSame, 1,1, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs15 = { 3, { 123,82,81 } }; const TfArray<1, int> outputs15 = { 1, { 124 } }; const TfLiteConvParams opdata16 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs16 = { 3, { 124,80,79 } }; const TfArray<1, int> outputs16 = { 1, { 125 } }; const TfLiteAddParams opdata17 = { kTfLiteActNone }; const TfArray<2, int> inputs17 = { 2, { 122,125 } }; const TfArray<1, int> outputs17 = { 1, { 126 } }; const TfLiteConvParams opdata18 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs18 = { 3, { 126,78,77 } }; const TfArray<1, int> outputs18 = { 1, { 127 } }; const TfLiteDepthwiseConvParams opdata19 = { kTfLitePaddingSame, 1,1, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs19 = { 3, { 127,76,75 } }; const TfArray<1, int> outputs19 = { 1, { 128 } }; const TfLiteConvParams opdata20 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs20 = { 3, { 128,74,73 } }; const TfArray<1, int> outputs20 = { 1, { 129 } }; const TfLiteAddParams opdata21 = { kTfLiteActNone }; const TfArray<2, int> inputs21 = { 2, { 126,129 } }; const TfArray<1, int> outputs21 = { 1, { 130 } }; const TfLiteConvParams opdata22 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs22 = { 3, { 130,72,71 } }; const TfArray<1, int> outputs22 = { 1, { 131 } }; const TfLiteDepthwiseConvParams opdata23 = { kTfLitePaddingSame, 2,2, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs23 = { 3, { 131,70,69 } }; const TfArray<1, int> outputs23 = { 1, { 132 } }; const TfLiteConvParams opdata24 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs24 = { 3, { 132,68,67 } }; const TfArray<1, int> outputs24 = { 1, { 133 } }; const TfLiteConvParams opdata25 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs25 = { 3, { 133,66,65 } }; const TfArray<1, int> outputs25 = { 1, { 134 } }; const TfLiteDepthwiseConvParams opdata26 = { kTfLitePaddingSame, 1,1, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs26 = { 3, { 134,64,63 } }; const TfArray<1, int> outputs26 = { 1, { 135 } }; const TfLiteConvParams opdata27 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs27 = { 3, { 135,62,61 } }; const TfArray<1, int> outputs27 = { 1, { 136 } }; const TfLiteAddParams opdata28 = { kTfLiteActNone }; const TfArray<2, int> inputs28 = { 2, { 133,136 } }; const TfArray<1, int> outputs28 = { 1, { 137 } }; const TfLiteConvParams opdata29 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs29 = { 3, { 137,60,59 } }; const TfArray<1, int> outputs29 = { 1, { 138 } }; const TfLiteDepthwiseConvParams opdata30 = { kTfLitePaddingSame, 1,1, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs30 = { 3, { 138,58,57 } }; const TfArray<1, int> outputs30 = { 1, { 139 } }; const TfLiteConvParams opdata31 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs31 = { 3, { 139,56,55 } }; const TfArray<1, int> outputs31 = { 1, { 140 } }; const TfLiteAddParams opdata32 = { kTfLiteActNone }; const TfArray<2, int> inputs32 = { 2, { 137,140 } }; const TfArray<1, int> outputs32 = { 1, { 141 } }; const TfLiteConvParams opdata33 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs33 = { 3, { 141,54,53 } }; const TfArray<1, int> outputs33 = { 1, { 142 } }; const TfLiteDepthwiseConvParams opdata34 = { kTfLitePaddingSame, 1,1, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs34 = { 3, { 142,52,51 } }; const TfArray<1, int> outputs34 = { 1, { 143 } }; const TfLiteConvParams opdata35 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs35 = { 3, { 143,50,49 } }; const TfArray<1, int> outputs35 = { 1, { 144 } }; const TfLiteAddParams opdata36 = { kTfLiteActNone }; const TfArray<2, int> inputs36 = { 2, { 141,144 } }; const TfArray<1, int> outputs36 = { 1, { 145 } }; const TfLiteConvParams opdata37 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs37 = { 3, { 145,48,47 } }; const TfArray<1, int> outputs37 = { 1, { 146 } }; const TfLiteDepthwiseConvParams opdata38 = { kTfLitePaddingSame, 1,1, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs38 = { 3, { 146,46,45 } }; const TfArray<1, int> outputs38 = { 1, { 147 } }; const TfLiteConvParams opdata39 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs39 = { 3, { 147,44,43 } }; const TfArray<1, int> outputs39 = { 1, { 148 } }; const TfLiteConvParams opdata40 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs40 = { 3, { 148,42,41 } }; const TfArray<1, int> outputs40 = { 1, { 149 } }; const TfLiteDepthwiseConvParams opdata41 = { kTfLitePaddingSame, 1,1, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs41 = { 3, { 149,40,39 } }; const TfArray<1, int> outputs41 = { 1, { 150 } }; const TfLiteConvParams opdata42 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs42 = { 3, { 150,38,37 } }; const TfArray<1, int> outputs42 = { 1, { 151 } }; const TfLiteAddParams opdata43 = { kTfLiteActNone }; const TfArray<2, int> inputs43 = { 2, { 148,151 } }; const TfArray<1, int> outputs43 = { 1, { 152 } }; const TfLiteConvParams opdata44 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs44 = { 3, { 152,36,35 } }; const TfArray<1, int> outputs44 = { 1, { 153 } }; const TfLiteDepthwiseConvParams opdata45 = { kTfLitePaddingSame, 1,1, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs45 = { 3, { 153,34,33 } }; const TfArray<1, int> outputs45 = { 1, { 154 } }; const TfLiteConvParams opdata46 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs46 = { 3, { 154,32,31 } }; const TfArray<1, int> outputs46 = { 1, { 155 } }; const TfLiteAddParams opdata47 = { kTfLiteActNone }; const TfArray<2, int> inputs47 = { 2, { 152,155 } }; const TfArray<1, int> outputs47 = { 1, { 156 } }; const TfLiteConvParams opdata48 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs48 = { 3, { 156,30,29 } }; const TfArray<1, int> outputs48 = { 1, { 157 } }; const TfLiteDepthwiseConvParams opdata49 = { kTfLitePaddingSame, 2,2, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs49 = { 3, { 157,28,27 } }; const TfArray<1, int> outputs49 = { 1, { 158 } }; const TfLiteConvParams opdata50 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs50 = { 3, { 158,26,25 } }; const TfArray<1, int> outputs50 = { 1, { 159 } }; const TfLiteConvParams opdata51 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs51 = { 3, { 159,24,23 } }; const TfArray<1, int> outputs51 = { 1, { 160 } }; const TfLiteDepthwiseConvParams opdata52 = { kTfLitePaddingSame, 1,1, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs52 = { 3, { 160,22,21 } }; const TfArray<1, int> outputs52 = { 1, { 161 } }; const TfLiteConvParams opdata53 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs53 = { 3, { 161,20,19 } }; const TfArray<1, int> outputs53 = { 1, { 162 } }; const TfLiteAddParams opdata54 = { kTfLiteActNone }; const TfArray<2, int> inputs54 = { 2, { 159,162 } }; const TfArray<1, int> outputs54 = { 1, { 163 } }; const TfLiteConvParams opdata55 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs55 = { 3, { 163,18,17 } }; const TfArray<1, int> outputs55 = { 1, { 164 } }; const TfLiteDepthwiseConvParams opdata56 = { kTfLitePaddingSame, 1,1, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs56 = { 3, { 164,16,15 } }; const TfArray<1, int> outputs56 = { 1, { 165 } }; const TfLiteConvParams opdata57 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs57 = { 3, { 165,14,13 } }; const TfArray<1, int> outputs57 = { 1, { 166 } }; const TfLiteAddParams opdata58 = { kTfLiteActNone }; const TfArray<2, int> inputs58 = { 2, { 163,166 } }; const TfArray<1, int> outputs58 = { 1, { 167 } }; const TfLiteConvParams opdata59 = { kTfLitePaddingSame, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs59 = { 3, { 167,12,11 } }; const TfArray<1, int> outputs59 = { 1, { 168 } }; const TfLiteDepthwiseConvParams opdata60 = { kTfLitePaddingSame, 1,1, 1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs60 = { 3, { 168,10,9 } }; const TfArray<1, int> outputs60 = { 1, { 169 } }; const TfLiteConvParams opdata61 = { kTfLitePaddingSame, 1,1, kTfLiteActNone, 1,1 }; const TfArray<3, int> inputs61 = { 3, { 169,8,7 } }; const TfArray<1, int> outputs61 = { 1, { 170 } }; const TfLiteConvParams opdata62 = { kTfLitePaddingValid, 1,1, kTfLiteActRelu6, 1,1 }; const TfArray<3, int> inputs62 = { 3, { 170,6,5 } }; const TfArray<1, int> outputs62 = { 1, { 171 } }; const ALIGN(1) uint8_t opdata63[1] = { 0, }; /* op type 40=MEAN */ const TfArray<2, int> inputs63 = { 2, { 171,2 } }; const TfArray<1, int> outputs63 = { 1, { 172 } }; const TfLiteFullyConnectedParams opdata64 = { kTfLiteActNone, kTfLiteFullyConnectedWeightsFormatDefault, false, false }; const TfArray<3, int> inputs64 = { 3, { 172,4,3 } }; const TfArray<1, int> outputs64 = { 1, { 173 } }; const TfLiteSoftmaxParams opdata65 = { 1 }; const TfArray<1, int> inputs65 = { 1, { 173 } }; const TfArray<1, int> outputs65 = { 1, { 174 } }; }; TensorInfo_t tensorData[] = { { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 3968), (TfLiteIntArray*)&g0::tensor_dimension0, 3960, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant0))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data1, (TfLiteIntArray*)&g0::tensor_dimension1, 16, {kTfLiteNoQuantization, nullptr}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data2, (TfLiteIntArray*)&g0::tensor_dimension2, 8, {kTfLiteNoQuantization, nullptr}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data3, (TfLiteIntArray*)&g0::tensor_dimension3, 12, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant3))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data4, (TfLiteIntArray*)&g0::tensor_dimension4, 3840, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant4))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data5, (TfLiteIntArray*)&g0::tensor_dimension5, 5120, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant5))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data6, (TfLiteIntArray*)&g0::tensor_dimension6, 143360, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant6))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data7, (TfLiteIntArray*)&g0::tensor_dimension7, 448, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant7))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data8, (TfLiteIntArray*)&g0::tensor_dimension8, 37632, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant8))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data9, (TfLiteIntArray*)&g0::tensor_dimension9, 1344, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant9))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data10, (TfLiteIntArray*)&g0::tensor_dimension10, 3024, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant10))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data11, (TfLiteIntArray*)&g0::tensor_dimension9, 1344, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant11))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data12, (TfLiteIntArray*)&g0::tensor_dimension12, 18816, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant12))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data13, (TfLiteIntArray*)&g0::tensor_dimension13, 224, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant13))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data14, (TfLiteIntArray*)&g0::tensor_dimension14, 18816, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant14))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data15, (TfLiteIntArray*)&g0::tensor_dimension9, 1344, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant15))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data16, (TfLiteIntArray*)&g0::tensor_dimension10, 3024, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant16))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data17, (TfLiteIntArray*)&g0::tensor_dimension9, 1344, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant17))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data18, (TfLiteIntArray*)&g0::tensor_dimension12, 18816, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant18))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data19, (TfLiteIntArray*)&g0::tensor_dimension13, 224, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant19))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data20, (TfLiteIntArray*)&g0::tensor_dimension14, 18816, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant20))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data21, (TfLiteIntArray*)&g0::tensor_dimension9, 1344, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant21))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data22, (TfLiteIntArray*)&g0::tensor_dimension10, 3024, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant22))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data23, (TfLiteIntArray*)&g0::tensor_dimension9, 1344, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant23))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data24, (TfLiteIntArray*)&g0::tensor_dimension12, 18816, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant24))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data25, (TfLiteIntArray*)&g0::tensor_dimension13, 224, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant25))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data26, (TfLiteIntArray*)&g0::tensor_dimension26, 10752, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant26))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data27, (TfLiteIntArray*)&g0::tensor_dimension27, 768, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant27))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data28, (TfLiteIntArray*)&g0::tensor_dimension28, 1728, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant28))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data29, (TfLiteIntArray*)&g0::tensor_dimension27, 768, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant29))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data30, (TfLiteIntArray*)&g0::tensor_dimension30, 6144, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant30))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data31, (TfLiteIntArray*)&g0::tensor_dimension31, 128, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant31))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data32, (TfLiteIntArray*)&g0::tensor_dimension32, 6144, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant32))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data33, (TfLiteIntArray*)&g0::tensor_dimension27, 768, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant33))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data34, (TfLiteIntArray*)&g0::tensor_dimension28, 1728, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant34))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data35, (TfLiteIntArray*)&g0::tensor_dimension27, 768, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant35))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data36, (TfLiteIntArray*)&g0::tensor_dimension30, 6144, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant36))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data37, (TfLiteIntArray*)&g0::tensor_dimension31, 128, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant37))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data38, (TfLiteIntArray*)&g0::tensor_dimension32, 6144, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant38))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data39, (TfLiteIntArray*)&g0::tensor_dimension27, 768, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant39))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data40, (TfLiteIntArray*)&g0::tensor_dimension28, 1728, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant40))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data41, (TfLiteIntArray*)&g0::tensor_dimension27, 768, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant41))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data42, (TfLiteIntArray*)&g0::tensor_dimension30, 6144, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant42))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data43, (TfLiteIntArray*)&g0::tensor_dimension31, 128, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant43))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data44, (TfLiteIntArray*)&g0::tensor_dimension44, 4608, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant44))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data45, (TfLiteIntArray*)&g0::tensor_dimension45, 576, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant45))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data46, (TfLiteIntArray*)&g0::tensor_dimension46, 1296, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant46))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data47, (TfLiteIntArray*)&g0::tensor_dimension45, 576, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant47))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data48, (TfLiteIntArray*)&g0::tensor_dimension48, 3456, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant48))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data49, (TfLiteIntArray*)&g0::tensor_dimension49, 96, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant49))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data50, (TfLiteIntArray*)&g0::tensor_dimension50, 3456, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant50))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data51, (TfLiteIntArray*)&g0::tensor_dimension45, 576, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant51))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data52, (TfLiteIntArray*)&g0::tensor_dimension46, 1296, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant52))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data53, (TfLiteIntArray*)&g0::tensor_dimension45, 576, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant53))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data54, (TfLiteIntArray*)&g0::tensor_dimension48, 3456, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant54))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data55, (TfLiteIntArray*)&g0::tensor_dimension49, 96, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant55))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data56, (TfLiteIntArray*)&g0::tensor_dimension50, 3456, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant56))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data57, (TfLiteIntArray*)&g0::tensor_dimension45, 576, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant57))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data58, (TfLiteIntArray*)&g0::tensor_dimension46, 1296, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant58))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data59, (TfLiteIntArray*)&g0::tensor_dimension45, 576, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant59))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data60, (TfLiteIntArray*)&g0::tensor_dimension48, 3456, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant60))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data61, (TfLiteIntArray*)&g0::tensor_dimension49, 96, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant61))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data62, (TfLiteIntArray*)&g0::tensor_dimension50, 3456, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant62))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data63, (TfLiteIntArray*)&g0::tensor_dimension45, 576, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant63))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data64, (TfLiteIntArray*)&g0::tensor_dimension46, 1296, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant64))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data65, (TfLiteIntArray*)&g0::tensor_dimension45, 576, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant65))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data66, (TfLiteIntArray*)&g0::tensor_dimension48, 3456, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant66))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data67, (TfLiteIntArray*)&g0::tensor_dimension49, 96, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant67))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data68, (TfLiteIntArray*)&g0::tensor_dimension68, 2304, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant68))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data69, (TfLiteIntArray*)&g0::tensor_dimension69, 384, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant69))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data70, (TfLiteIntArray*)&g0::tensor_dimension70, 864, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant70))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data71, (TfLiteIntArray*)&g0::tensor_dimension69, 384, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant71))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data72, (TfLiteIntArray*)&g0::tensor_dimension72, 1536, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant72))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data73, (TfLiteIntArray*)&g0::tensor_dimension73, 64, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant73))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data74, (TfLiteIntArray*)&g0::tensor_dimension74, 1536, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant74))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data75, (TfLiteIntArray*)&g0::tensor_dimension69, 384, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant75))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data76, (TfLiteIntArray*)&g0::tensor_dimension70, 864, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant76))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data77, (TfLiteIntArray*)&g0::tensor_dimension69, 384, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant77))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data78, (TfLiteIntArray*)&g0::tensor_dimension72, 1536, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant78))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data79, (TfLiteIntArray*)&g0::tensor_dimension73, 64, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant79))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data80, (TfLiteIntArray*)&g0::tensor_dimension74, 1536, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant80))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data81, (TfLiteIntArray*)&g0::tensor_dimension69, 384, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant81))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data82, (TfLiteIntArray*)&g0::tensor_dimension70, 864, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant82))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data83, (TfLiteIntArray*)&g0::tensor_dimension69, 384, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant83))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data84, (TfLiteIntArray*)&g0::tensor_dimension72, 1536, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant84))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data85, (TfLiteIntArray*)&g0::tensor_dimension73, 64, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant85))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data86, (TfLiteIntArray*)&g0::tensor_dimension86, 768, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant86))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data87, (TfLiteIntArray*)&g0::tensor_dimension87, 192, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant87))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data88, (TfLiteIntArray*)&g0::tensor_dimension88, 432, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant88))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data89, (TfLiteIntArray*)&g0::tensor_dimension87, 192, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant89))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data90, (TfLiteIntArray*)&g0::tensor_dimension90, 384, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant90))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data91, (TfLiteIntArray*)&g0::tensor_dimension91, 32, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant91))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data92, (TfLiteIntArray*)&g0::tensor_dimension92, 384, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant92))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data93, (TfLiteIntArray*)&g0::tensor_dimension87, 192, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant93))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data94, (TfLiteIntArray*)&g0::tensor_dimension88, 432, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant94))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data95, (TfLiteIntArray*)&g0::tensor_dimension87, 192, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant95))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data96, (TfLiteIntArray*)&g0::tensor_dimension90, 384, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant96))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data97, (TfLiteIntArray*)&g0::tensor_dimension91, 32, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant97))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data98, (TfLiteIntArray*)&g0::tensor_dimension92, 384, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant98))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data99, (TfLiteIntArray*)&g0::tensor_dimension87, 192, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant99))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data100, (TfLiteIntArray*)&g0::tensor_dimension88, 432, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant100))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data101, (TfLiteIntArray*)&g0::tensor_dimension87, 192, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant101))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data102, (TfLiteIntArray*)&g0::tensor_dimension90, 384, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant102))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data103, (TfLiteIntArray*)&g0::tensor_dimension91, 32, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant103))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data104, (TfLiteIntArray*)&g0::tensor_dimension104, 128, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant104))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data105, (TfLiteIntArray*)&g0::tensor_dimension73, 64, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant105))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data106, (TfLiteIntArray*)&g0::tensor_dimension106, 144, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant106))}, }, { kTfLiteMmapRo, kTfLiteInt32, (int32_t*)g0::tensor_data107, (TfLiteIntArray*)&g0::tensor_dimension73, 64, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant107))}, }, { kTfLiteMmapRo, kTfLiteInt8, (int32_t*)g0::tensor_data108, (TfLiteIntArray*)&g0::tensor_dimension108, 144, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant108))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension109, 3960, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant0))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 16000), (TfLiteIntArray*)&g0::tensor_dimension110, 16000, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension110, 16000, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 48000), (TfLiteIntArray*)&g0::tensor_dimension112, 8000, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant112))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension113, 48000, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 48000), (TfLiteIntArray*)&g0::tensor_dimension114, 12000, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 24000), (TfLiteIntArray*)&g0::tensor_dimension115, 2000, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant115))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 12000), (TfLiteIntArray*)&g0::tensor_dimension114, 12000, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension114, 12000, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 14000), (TfLiteIntArray*)&g0::tensor_dimension115, 2000, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant118))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 12000), (TfLiteIntArray*)&g0::tensor_dimension115, 2000, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant118))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension114, 12000, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 12000), (TfLiteIntArray*)&g0::tensor_dimension121, 3120, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 15248), (TfLiteIntArray*)&g0::tensor_dimension122, 1040, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant122))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 6240), (TfLiteIntArray*)&g0::tensor_dimension123, 6240, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension123, 6240, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 6240), (TfLiteIntArray*)&g0::tensor_dimension122, 1040, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant125))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 14208), (TfLiteIntArray*)&g0::tensor_dimension122, 1040, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant125))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 6240), (TfLiteIntArray*)&g0::tensor_dimension123, 6240, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension123, 6240, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 7280), (TfLiteIntArray*)&g0::tensor_dimension122, 1040, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant129))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 6240), (TfLiteIntArray*)&g0::tensor_dimension122, 1040, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant129))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension123, 6240, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 6240), (TfLiteIntArray*)&g0::tensor_dimension132, 2016, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 8640), (TfLiteIntArray*)&g0::tensor_dimension133, 504, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant133))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 3024), (TfLiteIntArray*)&g0::tensor_dimension134, 3024, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension134, 3024, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 3024), (TfLiteIntArray*)&g0::tensor_dimension133, 504, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant136))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 9152), (TfLiteIntArray*)&g0::tensor_dimension133, 504, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant136))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 3024), (TfLiteIntArray*)&g0::tensor_dimension134, 3024, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension134, 3024, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 3024), (TfLiteIntArray*)&g0::tensor_dimension133, 504, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant140))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 8640), (TfLiteIntArray*)&g0::tensor_dimension133, 504, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant140))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 3024), (TfLiteIntArray*)&g0::tensor_dimension134, 3024, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension134, 3024, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 3024), (TfLiteIntArray*)&g0::tensor_dimension133, 504, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant144))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension133, 504, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant144))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 3024), (TfLiteIntArray*)&g0::tensor_dimension134, 3024, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension134, 3024, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 12192), (TfLiteIntArray*)&g0::tensor_dimension148, 672, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant148))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 4032), (TfLiteIntArray*)&g0::tensor_dimension149, 4032, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension149, 4032, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 4032), (TfLiteIntArray*)&g0::tensor_dimension148, 672, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant151))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 11520), (TfLiteIntArray*)&g0::tensor_dimension148, 672, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant151))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 4032), (TfLiteIntArray*)&g0::tensor_dimension149, 4032, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension149, 4032, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 4704), (TfLiteIntArray*)&g0::tensor_dimension148, 672, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant155))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 4032), (TfLiteIntArray*)&g0::tensor_dimension148, 672, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant155))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension149, 4032, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 7488), (TfLiteIntArray*)&g0::tensor_dimension158, 1536, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 11872), (TfLiteIntArray*)&g0::tensor_dimension159, 448, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant159))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 8736), (TfLiteIntArray*)&g0::tensor_dimension160, 2688, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 6048), (TfLiteIntArray*)&g0::tensor_dimension160, 2688, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension159, 448, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant162))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 11424), (TfLiteIntArray*)&g0::tensor_dimension159, 448, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant162))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 8736), (TfLiteIntArray*)&g0::tensor_dimension160, 2688, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 6048), (TfLiteIntArray*)&g0::tensor_dimension160, 2688, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 448), (TfLiteIntArray*)&g0::tensor_dimension159, 448, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant166))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension159, 448, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant166))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 8736), (TfLiteIntArray*)&g0::tensor_dimension160, 2688, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 6048), (TfLiteIntArray*)&g0::tensor_dimension160, 2688, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant110))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 10240), (TfLiteIntArray*)&g0::tensor_dimension170, 896, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant170))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension171, 10240, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant171))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 15360), (TfLiteIntArray*)&g0::tensor_dimension172, 1280, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant172))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 16), (TfLiteIntArray*)&g0::tensor_dimension173, 3, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant173))}, }, { kTfLiteArenaRw, kTfLiteInt8, (int32_t*)(tensor_arena + 0), (TfLiteIntArray*)&g0::tensor_dimension173, 3, {kTfLiteAffineQuantization, const_cast(static_cast(&g0::quant174))}, }, }; #ifndef TF_LITE_STATIC_MEMORY TfLiteNode tflNodes[66] = { { (TfLiteIntArray*)&g0::inputs0, (TfLiteIntArray*)&g0::outputs0, (TfLiteIntArray*)&g0::inputs0, nullptr, nullptr, const_cast(static_cast(&g0::opdata0)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs1, (TfLiteIntArray*)&g0::outputs1, (TfLiteIntArray*)&g0::inputs1, nullptr, nullptr, const_cast(static_cast(&g0::opdata1)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs2, (TfLiteIntArray*)&g0::outputs2, (TfLiteIntArray*)&g0::inputs2, nullptr, nullptr, const_cast(static_cast(&g0::opdata2)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs3, (TfLiteIntArray*)&g0::outputs3, (TfLiteIntArray*)&g0::inputs3, nullptr, nullptr, const_cast(static_cast(&g0::opdata3)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs4, (TfLiteIntArray*)&g0::outputs4, (TfLiteIntArray*)&g0::inputs4, nullptr, nullptr, const_cast(static_cast(&g0::opdata4)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs5, (TfLiteIntArray*)&g0::outputs5, (TfLiteIntArray*)&g0::inputs5, nullptr, nullptr, const_cast(static_cast(&g0::opdata5)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs6, (TfLiteIntArray*)&g0::outputs6, (TfLiteIntArray*)&g0::inputs6, nullptr, nullptr, const_cast(static_cast(&g0::opdata6)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs7, (TfLiteIntArray*)&g0::outputs7, (TfLiteIntArray*)&g0::inputs7, nullptr, nullptr, const_cast(static_cast(&g0::opdata7)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs8, (TfLiteIntArray*)&g0::outputs8, (TfLiteIntArray*)&g0::inputs8, nullptr, nullptr, const_cast(static_cast(&g0::opdata8)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs9, (TfLiteIntArray*)&g0::outputs9, (TfLiteIntArray*)&g0::inputs9, nullptr, nullptr, const_cast(static_cast(&g0::opdata9)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs10, (TfLiteIntArray*)&g0::outputs10, (TfLiteIntArray*)&g0::inputs10, nullptr, nullptr, const_cast(static_cast(&g0::opdata10)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs11, (TfLiteIntArray*)&g0::outputs11, (TfLiteIntArray*)&g0::inputs11, nullptr, nullptr, const_cast(static_cast(&g0::opdata11)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs12, (TfLiteIntArray*)&g0::outputs12, (TfLiteIntArray*)&g0::inputs12, nullptr, nullptr, const_cast(static_cast(&g0::opdata12)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs13, (TfLiteIntArray*)&g0::outputs13, (TfLiteIntArray*)&g0::inputs13, nullptr, nullptr, const_cast(static_cast(&g0::opdata13)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs14, (TfLiteIntArray*)&g0::outputs14, (TfLiteIntArray*)&g0::inputs14, nullptr, nullptr, const_cast(static_cast(&g0::opdata14)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs15, (TfLiteIntArray*)&g0::outputs15, (TfLiteIntArray*)&g0::inputs15, nullptr, nullptr, const_cast(static_cast(&g0::opdata15)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs16, (TfLiteIntArray*)&g0::outputs16, (TfLiteIntArray*)&g0::inputs16, nullptr, nullptr, const_cast(static_cast(&g0::opdata16)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs17, (TfLiteIntArray*)&g0::outputs17, (TfLiteIntArray*)&g0::inputs17, nullptr, nullptr, const_cast(static_cast(&g0::opdata17)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs18, (TfLiteIntArray*)&g0::outputs18, (TfLiteIntArray*)&g0::inputs18, nullptr, nullptr, const_cast(static_cast(&g0::opdata18)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs19, (TfLiteIntArray*)&g0::outputs19, (TfLiteIntArray*)&g0::inputs19, nullptr, nullptr, const_cast(static_cast(&g0::opdata19)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs20, (TfLiteIntArray*)&g0::outputs20, (TfLiteIntArray*)&g0::inputs20, nullptr, nullptr, const_cast(static_cast(&g0::opdata20)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs21, (TfLiteIntArray*)&g0::outputs21, (TfLiteIntArray*)&g0::inputs21, nullptr, nullptr, const_cast(static_cast(&g0::opdata21)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs22, (TfLiteIntArray*)&g0::outputs22, (TfLiteIntArray*)&g0::inputs22, nullptr, nullptr, const_cast(static_cast(&g0::opdata22)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs23, (TfLiteIntArray*)&g0::outputs23, (TfLiteIntArray*)&g0::inputs23, nullptr, nullptr, const_cast(static_cast(&g0::opdata23)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs24, (TfLiteIntArray*)&g0::outputs24, (TfLiteIntArray*)&g0::inputs24, nullptr, nullptr, const_cast(static_cast(&g0::opdata24)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs25, (TfLiteIntArray*)&g0::outputs25, (TfLiteIntArray*)&g0::inputs25, nullptr, nullptr, const_cast(static_cast(&g0::opdata25)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs26, (TfLiteIntArray*)&g0::outputs26, (TfLiteIntArray*)&g0::inputs26, nullptr, nullptr, const_cast(static_cast(&g0::opdata26)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs27, (TfLiteIntArray*)&g0::outputs27, (TfLiteIntArray*)&g0::inputs27, nullptr, nullptr, const_cast(static_cast(&g0::opdata27)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs28, (TfLiteIntArray*)&g0::outputs28, (TfLiteIntArray*)&g0::inputs28, nullptr, nullptr, const_cast(static_cast(&g0::opdata28)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs29, (TfLiteIntArray*)&g0::outputs29, (TfLiteIntArray*)&g0::inputs29, nullptr, nullptr, const_cast(static_cast(&g0::opdata29)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs30, (TfLiteIntArray*)&g0::outputs30, (TfLiteIntArray*)&g0::inputs30, nullptr, nullptr, const_cast(static_cast(&g0::opdata30)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs31, (TfLiteIntArray*)&g0::outputs31, (TfLiteIntArray*)&g0::inputs31, nullptr, nullptr, const_cast(static_cast(&g0::opdata31)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs32, (TfLiteIntArray*)&g0::outputs32, (TfLiteIntArray*)&g0::inputs32, nullptr, nullptr, const_cast(static_cast(&g0::opdata32)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs33, (TfLiteIntArray*)&g0::outputs33, (TfLiteIntArray*)&g0::inputs33, nullptr, nullptr, const_cast(static_cast(&g0::opdata33)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs34, (TfLiteIntArray*)&g0::outputs34, (TfLiteIntArray*)&g0::inputs34, nullptr, nullptr, const_cast(static_cast(&g0::opdata34)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs35, (TfLiteIntArray*)&g0::outputs35, (TfLiteIntArray*)&g0::inputs35, nullptr, nullptr, const_cast(static_cast(&g0::opdata35)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs36, (TfLiteIntArray*)&g0::outputs36, (TfLiteIntArray*)&g0::inputs36, nullptr, nullptr, const_cast(static_cast(&g0::opdata36)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs37, (TfLiteIntArray*)&g0::outputs37, (TfLiteIntArray*)&g0::inputs37, nullptr, nullptr, const_cast(static_cast(&g0::opdata37)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs38, (TfLiteIntArray*)&g0::outputs38, (TfLiteIntArray*)&g0::inputs38, nullptr, nullptr, const_cast(static_cast(&g0::opdata38)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs39, (TfLiteIntArray*)&g0::outputs39, (TfLiteIntArray*)&g0::inputs39, nullptr, nullptr, const_cast(static_cast(&g0::opdata39)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs40, (TfLiteIntArray*)&g0::outputs40, (TfLiteIntArray*)&g0::inputs40, nullptr, nullptr, const_cast(static_cast(&g0::opdata40)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs41, (TfLiteIntArray*)&g0::outputs41, (TfLiteIntArray*)&g0::inputs41, nullptr, nullptr, const_cast(static_cast(&g0::opdata41)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs42, (TfLiteIntArray*)&g0::outputs42, (TfLiteIntArray*)&g0::inputs42, nullptr, nullptr, const_cast(static_cast(&g0::opdata42)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs43, (TfLiteIntArray*)&g0::outputs43, (TfLiteIntArray*)&g0::inputs43, nullptr, nullptr, const_cast(static_cast(&g0::opdata43)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs44, (TfLiteIntArray*)&g0::outputs44, (TfLiteIntArray*)&g0::inputs44, nullptr, nullptr, const_cast(static_cast(&g0::opdata44)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs45, (TfLiteIntArray*)&g0::outputs45, (TfLiteIntArray*)&g0::inputs45, nullptr, nullptr, const_cast(static_cast(&g0::opdata45)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs46, (TfLiteIntArray*)&g0::outputs46, (TfLiteIntArray*)&g0::inputs46, nullptr, nullptr, const_cast(static_cast(&g0::opdata46)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs47, (TfLiteIntArray*)&g0::outputs47, (TfLiteIntArray*)&g0::inputs47, nullptr, nullptr, const_cast(static_cast(&g0::opdata47)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs48, (TfLiteIntArray*)&g0::outputs48, (TfLiteIntArray*)&g0::inputs48, nullptr, nullptr, const_cast(static_cast(&g0::opdata48)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs49, (TfLiteIntArray*)&g0::outputs49, (TfLiteIntArray*)&g0::inputs49, nullptr, nullptr, const_cast(static_cast(&g0::opdata49)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs50, (TfLiteIntArray*)&g0::outputs50, (TfLiteIntArray*)&g0::inputs50, nullptr, nullptr, const_cast(static_cast(&g0::opdata50)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs51, (TfLiteIntArray*)&g0::outputs51, (TfLiteIntArray*)&g0::inputs51, nullptr, nullptr, const_cast(static_cast(&g0::opdata51)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs52, (TfLiteIntArray*)&g0::outputs52, (TfLiteIntArray*)&g0::inputs52, nullptr, nullptr, const_cast(static_cast(&g0::opdata52)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs53, (TfLiteIntArray*)&g0::outputs53, (TfLiteIntArray*)&g0::inputs53, nullptr, nullptr, const_cast(static_cast(&g0::opdata53)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs54, (TfLiteIntArray*)&g0::outputs54, (TfLiteIntArray*)&g0::inputs54, nullptr, nullptr, const_cast(static_cast(&g0::opdata54)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs55, (TfLiteIntArray*)&g0::outputs55, (TfLiteIntArray*)&g0::inputs55, nullptr, nullptr, const_cast(static_cast(&g0::opdata55)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs56, (TfLiteIntArray*)&g0::outputs56, (TfLiteIntArray*)&g0::inputs56, nullptr, nullptr, const_cast(static_cast(&g0::opdata56)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs57, (TfLiteIntArray*)&g0::outputs57, (TfLiteIntArray*)&g0::inputs57, nullptr, nullptr, const_cast(static_cast(&g0::opdata57)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs58, (TfLiteIntArray*)&g0::outputs58, (TfLiteIntArray*)&g0::inputs58, nullptr, nullptr, const_cast(static_cast(&g0::opdata58)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs59, (TfLiteIntArray*)&g0::outputs59, (TfLiteIntArray*)&g0::inputs59, nullptr, nullptr, const_cast(static_cast(&g0::opdata59)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs60, (TfLiteIntArray*)&g0::outputs60, (TfLiteIntArray*)&g0::inputs60, nullptr, nullptr, const_cast(static_cast(&g0::opdata60)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs61, (TfLiteIntArray*)&g0::outputs61, (TfLiteIntArray*)&g0::inputs61, nullptr, nullptr, const_cast(static_cast(&g0::opdata61)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs62, (TfLiteIntArray*)&g0::outputs62, (TfLiteIntArray*)&g0::inputs62, nullptr, nullptr, const_cast(static_cast(&g0::opdata62)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs63, (TfLiteIntArray*)&g0::outputs63, (TfLiteIntArray*)&g0::inputs63, nullptr, nullptr, const_cast(static_cast(&g0::opdata63)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs64, (TfLiteIntArray*)&g0::outputs64, (TfLiteIntArray*)&g0::inputs64, nullptr, nullptr, const_cast(static_cast(&g0::opdata64)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs65, (TfLiteIntArray*)&g0::outputs65, (TfLiteIntArray*)&g0::inputs65, nullptr, nullptr, const_cast(static_cast(&g0::opdata65)), nullptr, 0, }, }; #else TfLiteNode tflNodes[66] = { { (TfLiteIntArray*)&g0::inputs0, (TfLiteIntArray*)&g0::outputs0, (TfLiteIntArray*)&g0::inputs0, nullptr, const_cast(static_cast(&g0::opdata0)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs1, (TfLiteIntArray*)&g0::outputs1, (TfLiteIntArray*)&g0::inputs1, nullptr, const_cast(static_cast(&g0::opdata1)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs2, (TfLiteIntArray*)&g0::outputs2, (TfLiteIntArray*)&g0::inputs2, nullptr, const_cast(static_cast(&g0::opdata2)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs3, (TfLiteIntArray*)&g0::outputs3, (TfLiteIntArray*)&g0::inputs3, nullptr, const_cast(static_cast(&g0::opdata3)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs4, (TfLiteIntArray*)&g0::outputs4, (TfLiteIntArray*)&g0::inputs4, nullptr, const_cast(static_cast(&g0::opdata4)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs5, (TfLiteIntArray*)&g0::outputs5, (TfLiteIntArray*)&g0::inputs5, nullptr, const_cast(static_cast(&g0::opdata5)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs6, (TfLiteIntArray*)&g0::outputs6, (TfLiteIntArray*)&g0::inputs6, nullptr, const_cast(static_cast(&g0::opdata6)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs7, (TfLiteIntArray*)&g0::outputs7, (TfLiteIntArray*)&g0::inputs7, nullptr, const_cast(static_cast(&g0::opdata7)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs8, (TfLiteIntArray*)&g0::outputs8, (TfLiteIntArray*)&g0::inputs8, nullptr, const_cast(static_cast(&g0::opdata8)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs9, (TfLiteIntArray*)&g0::outputs9, (TfLiteIntArray*)&g0::inputs9, nullptr, const_cast(static_cast(&g0::opdata9)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs10, (TfLiteIntArray*)&g0::outputs10, (TfLiteIntArray*)&g0::inputs10, nullptr, const_cast(static_cast(&g0::opdata10)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs11, (TfLiteIntArray*)&g0::outputs11, (TfLiteIntArray*)&g0::inputs11, nullptr, const_cast(static_cast(&g0::opdata11)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs12, (TfLiteIntArray*)&g0::outputs12, (TfLiteIntArray*)&g0::inputs12, nullptr, const_cast(static_cast(&g0::opdata12)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs13, (TfLiteIntArray*)&g0::outputs13, (TfLiteIntArray*)&g0::inputs13, nullptr, const_cast(static_cast(&g0::opdata13)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs14, (TfLiteIntArray*)&g0::outputs14, (TfLiteIntArray*)&g0::inputs14, nullptr, const_cast(static_cast(&g0::opdata14)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs15, (TfLiteIntArray*)&g0::outputs15, (TfLiteIntArray*)&g0::inputs15, nullptr, const_cast(static_cast(&g0::opdata15)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs16, (TfLiteIntArray*)&g0::outputs16, (TfLiteIntArray*)&g0::inputs16, nullptr, const_cast(static_cast(&g0::opdata16)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs17, (TfLiteIntArray*)&g0::outputs17, (TfLiteIntArray*)&g0::inputs17, nullptr, const_cast(static_cast(&g0::opdata17)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs18, (TfLiteIntArray*)&g0::outputs18, (TfLiteIntArray*)&g0::inputs18, nullptr, const_cast(static_cast(&g0::opdata18)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs19, (TfLiteIntArray*)&g0::outputs19, (TfLiteIntArray*)&g0::inputs19, nullptr, const_cast(static_cast(&g0::opdata19)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs20, (TfLiteIntArray*)&g0::outputs20, (TfLiteIntArray*)&g0::inputs20, nullptr, const_cast(static_cast(&g0::opdata20)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs21, (TfLiteIntArray*)&g0::outputs21, (TfLiteIntArray*)&g0::inputs21, nullptr, const_cast(static_cast(&g0::opdata21)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs22, (TfLiteIntArray*)&g0::outputs22, (TfLiteIntArray*)&g0::inputs22, nullptr, const_cast(static_cast(&g0::opdata22)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs23, (TfLiteIntArray*)&g0::outputs23, (TfLiteIntArray*)&g0::inputs23, nullptr, const_cast(static_cast(&g0::opdata23)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs24, (TfLiteIntArray*)&g0::outputs24, (TfLiteIntArray*)&g0::inputs24, nullptr, const_cast(static_cast(&g0::opdata24)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs25, (TfLiteIntArray*)&g0::outputs25, (TfLiteIntArray*)&g0::inputs25, nullptr, const_cast(static_cast(&g0::opdata25)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs26, (TfLiteIntArray*)&g0::outputs26, (TfLiteIntArray*)&g0::inputs26, nullptr, const_cast(static_cast(&g0::opdata26)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs27, (TfLiteIntArray*)&g0::outputs27, (TfLiteIntArray*)&g0::inputs27, nullptr, const_cast(static_cast(&g0::opdata27)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs28, (TfLiteIntArray*)&g0::outputs28, (TfLiteIntArray*)&g0::inputs28, nullptr, const_cast(static_cast(&g0::opdata28)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs29, (TfLiteIntArray*)&g0::outputs29, (TfLiteIntArray*)&g0::inputs29, nullptr, const_cast(static_cast(&g0::opdata29)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs30, (TfLiteIntArray*)&g0::outputs30, (TfLiteIntArray*)&g0::inputs30, nullptr, const_cast(static_cast(&g0::opdata30)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs31, (TfLiteIntArray*)&g0::outputs31, (TfLiteIntArray*)&g0::inputs31, nullptr, const_cast(static_cast(&g0::opdata31)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs32, (TfLiteIntArray*)&g0::outputs32, (TfLiteIntArray*)&g0::inputs32, nullptr, const_cast(static_cast(&g0::opdata32)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs33, (TfLiteIntArray*)&g0::outputs33, (TfLiteIntArray*)&g0::inputs33, nullptr, const_cast(static_cast(&g0::opdata33)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs34, (TfLiteIntArray*)&g0::outputs34, (TfLiteIntArray*)&g0::inputs34, nullptr, const_cast(static_cast(&g0::opdata34)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs35, (TfLiteIntArray*)&g0::outputs35, (TfLiteIntArray*)&g0::inputs35, nullptr, const_cast(static_cast(&g0::opdata35)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs36, (TfLiteIntArray*)&g0::outputs36, (TfLiteIntArray*)&g0::inputs36, nullptr, const_cast(static_cast(&g0::opdata36)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs37, (TfLiteIntArray*)&g0::outputs37, (TfLiteIntArray*)&g0::inputs37, nullptr, const_cast(static_cast(&g0::opdata37)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs38, (TfLiteIntArray*)&g0::outputs38, (TfLiteIntArray*)&g0::inputs38, nullptr, const_cast(static_cast(&g0::opdata38)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs39, (TfLiteIntArray*)&g0::outputs39, (TfLiteIntArray*)&g0::inputs39, nullptr, const_cast(static_cast(&g0::opdata39)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs40, (TfLiteIntArray*)&g0::outputs40, (TfLiteIntArray*)&g0::inputs40, nullptr, const_cast(static_cast(&g0::opdata40)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs41, (TfLiteIntArray*)&g0::outputs41, (TfLiteIntArray*)&g0::inputs41, nullptr, const_cast(static_cast(&g0::opdata41)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs42, (TfLiteIntArray*)&g0::outputs42, (TfLiteIntArray*)&g0::inputs42, nullptr, const_cast(static_cast(&g0::opdata42)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs43, (TfLiteIntArray*)&g0::outputs43, (TfLiteIntArray*)&g0::inputs43, nullptr, const_cast(static_cast(&g0::opdata43)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs44, (TfLiteIntArray*)&g0::outputs44, (TfLiteIntArray*)&g0::inputs44, nullptr, const_cast(static_cast(&g0::opdata44)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs45, (TfLiteIntArray*)&g0::outputs45, (TfLiteIntArray*)&g0::inputs45, nullptr, const_cast(static_cast(&g0::opdata45)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs46, (TfLiteIntArray*)&g0::outputs46, (TfLiteIntArray*)&g0::inputs46, nullptr, const_cast(static_cast(&g0::opdata46)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs47, (TfLiteIntArray*)&g0::outputs47, (TfLiteIntArray*)&g0::inputs47, nullptr, const_cast(static_cast(&g0::opdata47)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs48, (TfLiteIntArray*)&g0::outputs48, (TfLiteIntArray*)&g0::inputs48, nullptr, const_cast(static_cast(&g0::opdata48)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs49, (TfLiteIntArray*)&g0::outputs49, (TfLiteIntArray*)&g0::inputs49, nullptr, const_cast(static_cast(&g0::opdata49)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs50, (TfLiteIntArray*)&g0::outputs50, (TfLiteIntArray*)&g0::inputs50, nullptr, const_cast(static_cast(&g0::opdata50)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs51, (TfLiteIntArray*)&g0::outputs51, (TfLiteIntArray*)&g0::inputs51, nullptr, const_cast(static_cast(&g0::opdata51)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs52, (TfLiteIntArray*)&g0::outputs52, (TfLiteIntArray*)&g0::inputs52, nullptr, const_cast(static_cast(&g0::opdata52)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs53, (TfLiteIntArray*)&g0::outputs53, (TfLiteIntArray*)&g0::inputs53, nullptr, const_cast(static_cast(&g0::opdata53)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs54, (TfLiteIntArray*)&g0::outputs54, (TfLiteIntArray*)&g0::inputs54, nullptr, const_cast(static_cast(&g0::opdata54)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs55, (TfLiteIntArray*)&g0::outputs55, (TfLiteIntArray*)&g0::inputs55, nullptr, const_cast(static_cast(&g0::opdata55)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs56, (TfLiteIntArray*)&g0::outputs56, (TfLiteIntArray*)&g0::inputs56, nullptr, const_cast(static_cast(&g0::opdata56)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs57, (TfLiteIntArray*)&g0::outputs57, (TfLiteIntArray*)&g0::inputs57, nullptr, const_cast(static_cast(&g0::opdata57)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs58, (TfLiteIntArray*)&g0::outputs58, (TfLiteIntArray*)&g0::inputs58, nullptr, const_cast(static_cast(&g0::opdata58)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs59, (TfLiteIntArray*)&g0::outputs59, (TfLiteIntArray*)&g0::inputs59, nullptr, const_cast(static_cast(&g0::opdata59)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs60, (TfLiteIntArray*)&g0::outputs60, (TfLiteIntArray*)&g0::inputs60, nullptr, const_cast(static_cast(&g0::opdata60)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs61, (TfLiteIntArray*)&g0::outputs61, (TfLiteIntArray*)&g0::inputs61, nullptr, const_cast(static_cast(&g0::opdata61)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs62, (TfLiteIntArray*)&g0::outputs62, (TfLiteIntArray*)&g0::inputs62, nullptr, const_cast(static_cast(&g0::opdata62)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs63, (TfLiteIntArray*)&g0::outputs63, (TfLiteIntArray*)&g0::inputs63, nullptr, const_cast(static_cast(&g0::opdata63)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs64, (TfLiteIntArray*)&g0::outputs64, (TfLiteIntArray*)&g0::inputs64, nullptr, const_cast(static_cast(&g0::opdata64)), nullptr, 0, }, { (TfLiteIntArray*)&g0::inputs65, (TfLiteIntArray*)&g0::outputs65, (TfLiteIntArray*)&g0::inputs65, nullptr, const_cast(static_cast(&g0::opdata65)), nullptr, 0, }, }; #endif used_operators_e used_ops[] = {OP_RESHAPE, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_ADD, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_ADD, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_ADD, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_ADD, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_ADD, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_ADD, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_ADD, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_ADD, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_ADD, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_ADD, OP_CONV_2D, OP_DEPTHWISE_CONV_2D, OP_CONV_2D, OP_CONV_2D, OP_MEAN, OP_FULLY_CONNECTED, OP_SOFTMAX, }; // Indices into tflTensors and tflNodes for subgraphs const size_t tflTensors_subgraph_index[] = {0, 175, }; const size_t tflNodes_subgraph_index[] = {0, 66, }; // Input/output tensors static const int in_tensor_indices[] = { 0, }; static const int out_tensor_indices[] = { 174, }; size_t current_subgraph_index = 0; static void init_tflite_tensor(size_t i, TfLiteTensor *tensor) { tensor->type = tensorData[i].type; tensor->is_variable = false; #if defined(EI_CLASSIFIER_ALLOCATION_HEAP) tensor->allocation_type = tensorData[i].allocation_type; #else tensor->allocation_type = (tensor_arena <= tensorData[i].data && tensorData[i].data < tensor_arena + kTensorArenaSize) ? kTfLiteArenaRw : kTfLiteMmapRo; #endif tensor->bytes = tensorData[i].bytes; tensor->dims = tensorData[i].dims; #if defined(EI_CLASSIFIER_ALLOCATION_HEAP) if(tensor->allocation_type == kTfLiteArenaRw){ uint8_t* start = (uint8_t*) ((uintptr_t)tensorData[i].data + (uintptr_t) tensor_arena); tensor->data.data = start; } else { tensor->data.data = tensorData[i].data; } #else tensor->data.data = tensorData[i].data; #endif // EI_CLASSIFIER_ALLOCATION_HEAP tensor->quantization = tensorData[i].quantization; if (tensor->quantization.type == kTfLiteAffineQuantization) { TfLiteAffineQuantization const* quant = ((TfLiteAffineQuantization const*)(tensorData[i].quantization.params)); tensor->params.scale = quant->scale->data[0]; tensor->params.zero_point = quant->zero_point->data[0]; } } static void init_tflite_eval_tensor(int i, TfLiteEvalTensor *tensor) { tensor->type = tensorData[i].type; tensor->dims = tensorData[i].dims; #if defined(EI_CLASSIFIER_ALLOCATION_HEAP) auto allocation_type = tensorData[i].allocation_type; if(allocation_type == kTfLiteArenaRw) { uint8_t* start = (uint8_t*) ((uintptr_t)tensorData[i].data + (uintptr_t) tensor_arena); tensor->data.data = start; } else { tensor->data.data = tensorData[i].data; } #else tensor->data.data = tensorData[i].data; #endif // EI_CLASSIFIER_ALLOCATION_HEAP } static void* overflow_buffers[EI_MAX_OVERFLOW_BUFFER_COUNT]; static size_t overflow_buffers_ix = 0; static void * AllocatePersistentBufferImpl(struct TfLiteContext* ctx, size_t bytes) { void *ptr; uint32_t align_bytes = (bytes % 16) ? 16 - (bytes % 16) : 0; if (current_location - (bytes + align_bytes) < tensor_boundary) { if (overflow_buffers_ix > EI_MAX_OVERFLOW_BUFFER_COUNT - 1) { ei_printf("ERR: Failed to allocate persistent buffer of size %d, does not fit in tensor arena and reached EI_MAX_OVERFLOW_BUFFER_COUNT\n", (int)bytes); return NULL; } // OK, this will look super weird, but.... we have CMSIS-NN buffers which // we cannot calculate beforehand easily. ptr = ei_calloc(bytes, 1); if (ptr == NULL) { ei_printf("ERR: Failed to allocate persistent buffer of size %d\n", (int)bytes); return NULL; } overflow_buffers[overflow_buffers_ix++] = ptr; return ptr; } current_location -= bytes; // align to the left aligned boundary of 16 bytes current_location -= 15; // for alignment current_location += 16 - ((uintptr_t)(current_location) & 15); ptr = current_location; memset(ptr, 0, bytes); return ptr; } typedef struct { size_t bytes; void *ptr; } scratch_buffer_t; static scratch_buffer_t scratch_buffers[EI_MAX_SCRATCH_BUFFER_COUNT]; static size_t scratch_buffers_ix = 0; static TfLiteStatus RequestScratchBufferInArenaImpl(struct TfLiteContext* ctx, size_t bytes, int* buffer_idx) { if (scratch_buffers_ix > EI_MAX_SCRATCH_BUFFER_COUNT - 1) { ei_printf("ERR: Failed to allocate scratch buffer of size %d, reached EI_MAX_SCRATCH_BUFFER_COUNT\n", (int)bytes); return kTfLiteError; } scratch_buffer_t b; b.bytes = bytes; b.ptr = AllocatePersistentBufferImpl(ctx, b.bytes); if (!b.ptr) { ei_printf("ERR: Failed to allocate scratch buffer of size %d\n", (int)bytes); return kTfLiteError; } scratch_buffers[scratch_buffers_ix] = b; *buffer_idx = scratch_buffers_ix; scratch_buffers_ix++; return kTfLiteOk; } static void* GetScratchBufferImpl(struct TfLiteContext* ctx, int buffer_idx) { if (buffer_idx > (int)scratch_buffers_ix) { return NULL; } return scratch_buffers[buffer_idx].ptr; } static const uint16_t TENSOR_IX_UNUSED = 0x7FFF; static void ResetTensors() { for (size_t ix = 0; ix < MAX_TFL_TENSOR_COUNT; ix++) { tflTensors[ix].index = TENSOR_IX_UNUSED; } for (size_t ix = 0; ix < MAX_TFL_EVAL_COUNT; ix++) { tflEvalTensors[ix].index = TENSOR_IX_UNUSED; } } static TfLiteTensor* GetTensorImpl(const struct TfLiteContext* context, int tensor_idx) { tensor_idx = tflTensors_subgraph_index[current_subgraph_index] + tensor_idx; for (size_t ix = 0; ix < MAX_TFL_TENSOR_COUNT; ix++) { // already used? OK! if (tflTensors[ix].index == tensor_idx) { return &tflTensors[ix].tensor; } // passed all the ones we've used, so end of the list? if (tflTensors[ix].index == TENSOR_IX_UNUSED) { // init the tensor init_tflite_tensor(tensor_idx, &tflTensors[ix].tensor); tflTensors[ix].index = tensor_idx; return &tflTensors[ix].tensor; } } ei_printf("ERR: GetTensor called beyond MAX_TFL_TENSOR_COUNT (%d)\n", MAX_TFL_TENSOR_COUNT); return nullptr; } static TfLiteEvalTensor* GetEvalTensorImpl(const struct TfLiteContext* context, int tensor_idx) { tensor_idx = tflTensors_subgraph_index[current_subgraph_index] + tensor_idx; for (size_t ix = 0; ix < MAX_TFL_EVAL_COUNT; ix++) { // already used? OK! if (tflEvalTensors[ix].index == tensor_idx) { return &tflEvalTensors[ix].tensor; } // passed all the ones we've used, so end of the list? if (tflEvalTensors[ix].index == TENSOR_IX_UNUSED) { // init the tensor init_tflite_eval_tensor(tensor_idx, &tflEvalTensors[ix].tensor); tflEvalTensors[ix].index = tensor_idx; return &tflEvalTensors[ix].tensor; } } ei_printf("ERR: GetTensor called beyond MAX_TFL_EVAL_COUNT (%d)\n", (int)MAX_TFL_EVAL_COUNT); return nullptr; } class EonMicroContext : public MicroContext { public: EonMicroContext(): MicroContext(nullptr, nullptr, nullptr) { } void* AllocatePersistentBuffer(size_t bytes) { return AllocatePersistentBufferImpl(nullptr, bytes); } TfLiteStatus RequestScratchBufferInArena(size_t bytes, int* buffer_index) { return RequestScratchBufferInArenaImpl(nullptr, bytes, buffer_index); } void* GetScratchBuffer(int buffer_index) { return GetScratchBufferImpl(nullptr, buffer_index); } TfLiteTensor* AllocateTempTfLiteTensor(int tensor_index) { return GetTensorImpl(nullptr, tensor_index); } void DeallocateTempTfLiteTensor(TfLiteTensor* tensor) { return; } bool IsAllTempTfLiteTensorDeallocated() { return true; } TfLiteEvalTensor* GetEvalTensor(int tensor_index) { return GetEvalTensorImpl(nullptr, tensor_index); } }; } // namespace TfLiteStatus tflite_learn_1052106_5_init( void*(*alloc_fnc)(size_t,size_t) ) { #ifdef EI_CLASSIFIER_ALLOCATION_HEAP tensor_arena = (uint8_t*) alloc_fnc(16, kTensorArenaSize); if (!tensor_arena) { ei_printf("ERR: failed to allocate tensor arena\n"); return kTfLiteError; } #else memset(tensor_arena, 0, kTensorArenaSize); #endif tensor_boundary = tensor_arena; current_location = tensor_arena + kTensorArenaSize; EonMicroContext micro_context_; // Set microcontext as the context ptr ctx.impl_ = static_cast(µ_context_); // Setup tflitecontext functions ctx.AllocatePersistentBuffer = &AllocatePersistentBufferImpl; ctx.RequestScratchBufferInArena = &RequestScratchBufferInArenaImpl; ctx.GetScratchBuffer = &GetScratchBufferImpl; ctx.GetTensor = &GetTensorImpl; ctx.GetEvalTensor = &GetEvalTensorImpl; ctx.ReportError = &MicroContextReportOpError; ctx.tensors_size = 175; for (size_t i = 0; i < 175; ++i) { TfLiteTensor tensor; init_tflite_tensor(i, &tensor); if (tensor.allocation_type == kTfLiteArenaRw) { auto data_end_ptr = (uint8_t*)tensor.data.data + tensorData[i].bytes; if (data_end_ptr > tensor_boundary) { tensor_boundary = data_end_ptr; } } } if (tensor_boundary > current_location /* end of arena size */) { ei_printf("ERR: tensor arena is too small, does not fit model - even without scratch buffers\n"); return kTfLiteError; } registrations[OP_RESHAPE] = Register_RESHAPE(); registrations[OP_CONV_2D] = Register_CONV_2D(); registrations[OP_DEPTHWISE_CONV_2D] = Register_DEPTHWISE_CONV_2D(); registrations[OP_ADD] = Register_ADD(); registrations[OP_MEAN] = Register_MEAN(); registrations[OP_FULLY_CONNECTED] = Register_FULLY_CONNECTED(); registrations[OP_SOFTMAX] = Register_SOFTMAX(); for (size_t g = 0; g < 1; ++g) { current_subgraph_index = g; for(size_t i = tflNodes_subgraph_index[g]; i < tflNodes_subgraph_index[g+1]; ++i) { if (registrations[used_ops[i]].init) { tflNodes[i].user_data = registrations[used_ops[i]].init(&ctx, (const char*)tflNodes[i].builtin_data, 0); } } } current_subgraph_index = 0; for(size_t g = 0; g < 1; ++g) { current_subgraph_index = g; for(size_t i = tflNodes_subgraph_index[g]; i < tflNodes_subgraph_index[g+1]; ++i) { if (registrations[used_ops[i]].prepare) { ResetTensors(); TfLiteStatus status = registrations[used_ops[i]].prepare(&ctx, &tflNodes[i]); if (status != kTfLiteOk) { return status; } } } } current_subgraph_index = 0; return kTfLiteOk; } TfLiteStatus tflite_learn_1052106_5_input(int index, TfLiteTensor *tensor) { init_tflite_tensor(in_tensor_indices[index], tensor); return kTfLiteOk; } TfLiteStatus tflite_learn_1052106_5_output(int index, TfLiteTensor *tensor) { init_tflite_tensor(out_tensor_indices[index], tensor); return kTfLiteOk; } TfLiteStatus tflite_learn_1052106_5_invoke() { for (size_t i = 0; i < 66; ++i) { ResetTensors(); TfLiteStatus status = registrations[used_ops[i]].invoke(&ctx, &tflNodes[i]); #if EI_CLASSIFIER_PRINT_STATE ei_printf("layer %lu\n", i); ei_printf(" inputs:\n"); for (size_t ix = 0; ix < tflNodes[i].inputs->size; ix++) { auto d = tensorData[tflNodes[i].inputs->data[ix]]; size_t data_ptr = (size_t)d.data; if (d.allocation_type == kTfLiteArenaRw) { data_ptr = (size_t)tensor_arena + data_ptr; } if (d.type == TfLiteType::kTfLiteInt8) { int8_t* data = (int8_t*)data_ptr; ei_printf(" %lu (%zu bytes, ptr=%p, alloc_type=%d, type=%d): ", ix, d.bytes, data, (int)d.allocation_type, (int)d.type); for (size_t jx = 0; jx < d.bytes; jx++) { ei_printf("%d ", data[jx]); } } else { float* data = (float*)data_ptr; ei_printf(" %lu (%zu bytes, ptr=%p, alloc_type=%d, type=%d): ", ix, d.bytes, data, (int)d.allocation_type, (int)d.type); for (size_t jx = 0; jx < d.bytes / 4; jx++) { ei_printf("%f ", data[jx]); } } ei_printf("\n"); } ei_printf("\n"); ei_printf(" outputs:\n"); for (size_t ix = 0; ix < tflNodes[i].outputs->size; ix++) { auto d = tensorData[tflNodes[i].outputs->data[ix]]; size_t data_ptr = (size_t)d.data; if (d.allocation_type == kTfLiteArenaRw) { data_ptr = (size_t)tensor_arena + data_ptr; } if (d.type == TfLiteType::kTfLiteInt8) { int8_t* data = (int8_t*)data_ptr; ei_printf(" %lu (%zu bytes, ptr=%p, alloc_type=%d, type=%d): ", ix, d.bytes, data, (int)d.allocation_type, (int)d.type); for (size_t jx = 0; jx < d.bytes; jx++) { ei_printf("%d ", data[jx]); } } else { float* data = (float*)data_ptr; ei_printf(" %lu (%zu bytes, ptr=%p, alloc_type=%d, type=%d): ", ix, d.bytes, data, (int)d.allocation_type, (int)d.type); for (size_t jx = 0; jx < d.bytes / 4; jx++) { ei_printf("%f ", data[jx]); } } ei_printf("\n"); } ei_printf("\n"); #endif // EI_CLASSIFIER_PRINT_STATE if (status != kTfLiteOk) { return status; } } return kTfLiteOk; } TfLiteStatus tflite_learn_1052106_5_reset( void (*free_fnc)(void* ptr) ) { #ifdef EI_CLASSIFIER_ALLOCATION_HEAP free_fnc(tensor_arena); #endif // scratch buffers are allocated within the arena, so just reset the counter so memory can be reused scratch_buffers_ix = 0; // overflow buffers are on the heap, so free them first for (size_t ix = 0; ix < overflow_buffers_ix; ix++) { ei_free(overflow_buffers[ix]); } overflow_buffers_ix = 0; return kTfLiteOk; }