file
stringlengths
18
26
data
stringlengths
3
1.04M
the_stack_data/130822.c
#include <stdio.h> int main() { int n, first = 0, second = 1, next, c; printf("Enter the number of terms\n"); scanf("%d",&n); printf("First %d terms of Fibonacci series are :-\n",n); for ( c = 0 ; c < n ; c++ ) { if ( c <= 1 ) next = c; else { next = first + second; first = second; second = next; } printf("%d\n",next); } return 0; }
the_stack_data/154829055.c
#include <stdio.h> #define ROWS 3 #define COLS 4 int sum2d_(int rows, int cols, int ar[rows][cols]); int main() { int i, j; int rs = 3; int cs = 10; int junk[ROWS][COLS] = { { 2, 4, 6, 8 }, { 3, 5, 7, 9 }, { 12, 10, 8, 6 } }; int morejunk[ROWS - 1][COLS + 2] = { { 20, 30, 40, 50, 60, 70 }, { 5, 6, 7, 8, 9, 10} }; int varr[rs][cs]; for (i = 0; i < rs; i++) for (j = 0; j < cs; j++) varr[i][j] = i * j + j; printf("3 * 5\n"); printf("Sum of all elements = %d\n", sum2d(ROWS, COLS, junk)); printf("2 * 6 arry\n"); printf("Sum of all elements = %d\n", sum2d(ROWS - 1, COLS + 2, morejunk)); printf("3 * 10\n"); printf("Sum of all elements = %d\n", sum2d(rs, cs, varr)); return 0; } int sum2d(int rows, int cols, int ar[rows][cols]) { int r, c, tot = 0; for (r = 0; r < rows; r++) for (c = 0; c < cols; c++) tot += ar[r][c]; return tot; }
the_stack_data/3262058.c
/* Copyright (C) 2000 Free Software Foundation, Inc. */ /* { dg-do compile } */ /* { dg-options "-Wlarger-than-32768" } */ /* -Wlarger-than with functions returning void used to segfault. Source: PR 602, testsuite-ized by Neil Booth 21 Jan 2000. */ static void foo (void) {}
the_stack_data/6548.c
/* * Copyright 2003-2007 Niels Provos <[email protected]> * Copyright 2007-2012 Niels Provos and Nick Mathewson * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 4. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * * Mon 03/10/2003 - Modified by Davide Libenzi <[email protected]> * * Added chain event propagation to improve the sensitivity of * the measure respect to the event loop efficency. * * */ #include "event2/event-config.h" #include <sys/types.h> #include <sys/stat.h> #ifdef EVENT__HAVE_SYS_TIME_H #include <sys/time.h> #endif #ifdef _WIN32 #define WIN32_LEAN_AND_MEAN #include <windows.h> #else #include <sys/socket.h> #include <signal.h> #include <sys/resource.h> #endif #include <fcntl.h> #include <stdlib.h> #include <stdio.h> #include <string.h> #ifdef EVENT__HAVE_UNISTD_H #include <unistd.h> #endif #include <errno.h> #ifdef _WIN32 #include <getopt.h> #endif #include <event.h> #include <evutil.h> static int count, writes, fired, failures; static evutil_socket_t *pipes; static int num_pipes, num_active, num_writes; static struct event *events; static void read_cb(evutil_socket_t fd, short which, void *arg) { ev_intptr_t idx = (ev_intptr_t) arg, widx = idx + 1; unsigned char ch; ev_ssize_t n; n = recv(fd, (char*)&ch, sizeof(ch), 0); if (n >= 0) count += n; else failures++; if (writes) { if (widx >= num_pipes) widx -= num_pipes; n = send(pipes[2 * widx + 1], "e", 1, 0); if (n != 1) failures++; writes--; fired++; } } static struct timeval * run_once(void) { evutil_socket_t *cp, space; long i; static struct timeval ts, te; for (cp = pipes, i = 0; i < num_pipes; i++, cp += 2) { if (event_initialized(&events[i])) event_del(&events[i]); event_set(&events[i], cp[0], EV_READ | EV_PERSIST, read_cb, (void *)(ev_intptr_t) i); event_add(&events[i], NULL); } event_loop(EVLOOP_ONCE | EVLOOP_NONBLOCK); fired = 0; space = num_pipes / num_active; space = space * 2; for (i = 0; i < num_active; i++, fired++) (void) send(pipes[i * space + 1], "e", 1, 0); count = 0; writes = num_writes; { int xcount = 0; evutil_gettimeofday(&ts, NULL); do { event_loop(EVLOOP_ONCE | EVLOOP_NONBLOCK); xcount++; } while (count != fired); evutil_gettimeofday(&te, NULL); if (xcount != count) fprintf(stderr, "Xcount: %d, Rcount: %d\n", xcount, count); } evutil_timersub(&te, &ts, &te); return (&te); } int main(int argc, char **argv) { #ifdef HAVE_SETRLIMIT struct rlimit rl; #endif int i, c; struct timeval *tv; evutil_socket_t *cp; #ifdef _WIN32 WSADATA WSAData; WSAStartup(0x101, &WSAData); #endif num_pipes = 100; num_active = 1; num_writes = num_pipes; while ((c = getopt(argc, argv, "n:a:w:")) != -1) { switch (c) { case 'n': num_pipes = atoi(optarg); break; case 'a': num_active = atoi(optarg); break; case 'w': num_writes = atoi(optarg); break; default: fprintf(stderr, "Illegal argument \"%c\"\n", c); exit(1); } } #ifdef HAVE_SETRLIMIT rl.rlim_cur = rl.rlim_max = num_pipes * 2 + 50; if (setrlimit(RLIMIT_NOFILE, &rl) == -1) { perror("setrlimit"); exit(1); } #endif events = calloc(num_pipes, sizeof(struct event)); pipes = calloc(num_pipes * 2, sizeof(evutil_socket_t)); if (events == NULL || pipes == NULL) { perror("malloc"); exit(1); } event_init(); for (cp = pipes, i = 0; i < num_pipes; i++, cp += 2) { #ifdef USE_PIPES if (pipe(cp) == -1) { #else if (evutil_socketpair(AF_UNIX, SOCK_STREAM, 0, cp) == -1) { #endif perror("pipe"); exit(1); } } for (i = 0; i < 25; i++) { tv = run_once(); if (tv == NULL) exit(1); fprintf(stdout, "%ld\n", tv->tv_sec * 1000000L + tv->tv_usec); } exit(0); }
the_stack_data/79309.c
/* * Program to learn about passing functions as parameters to other functions */ #include <stdio.h> #include <string.h> size_t NUM_ADS = 7; const char *ADS[] = { "William: SBM GSOH likes sports, TV, dining", "Matt: SWM NS likes art, movies, theater", "Luis: SLM ND likes books, theater, art", "Mike: DWM DS likes trucks, sports and bieber", "Peter: SAM likes chess, working out and art", "Josh: SJM likes sports, movies and theater", "Jed: DBM likes theater, books and dining" }; int sports_no_bieber (const char *s) { return strstr(s, "sports") && !strstr(s, "bieber"); } int sports_or_workout (const char *s) { return strstr(s, "sports") || strstr(s, "working out"); } int ns_theather (const char *s) { return strstr(s, "NS") && strstr(s, "theater"); } int arts_theater_dining (const char *s) { return strstr(s, "arts") || strstr(s, "theater") || strstr(s, "dining"); } void find (int (*match)(const char *)) { puts("Search results:"); puts("------------------------------------------"); for (size_t i = 0; i < NUM_ADS; i++) { if (match(ADS[i])) { printf("%s\n", ADS[i]); } } puts("------------------------------------------"); } int main (void) { find(sports_no_bieber); find(sports_or_workout); find(ns_theather); find(arts_theater_dining); return 0; }
the_stack_data/78081.c
// Test this without pch. // RUN: %clang_cc1 -Wunused-macros -Dunused=1 -fsyntax-only -verify %s // Test with pch. // RUN: %clang_cc1 -Wunused-macros -emit-pch -o %t %s // RUN: %clang_cc1 -Wunused-macros -Dunused=1 -include-pch %t -fsyntax-only -verify %s // expected-no-diagnostics // -Dunused=1 is intentionally not set for the pch. // There still should be no unused warning for a macro from the command line.
the_stack_data/165764368.c
#include<stdio.h> #include <unistd.h> main() { printf("Before Exec()"); execl("a3.c/wc","wc",(char*)0); printf("After"); }
the_stack_data/168893345.c
static int t = 0;
the_stack_data/95449970.c
/* 2-6.c #include<stdio.h> int main(void) { int array[2][3]={1,2,3,4,5,6}; printf("%x %x %x \n", &array[0][0],&array[0][1],&array[0][2]); printf("%x %x %x \n", &array[1][0],&array[1][1],&array[1][2]); return 0; }*/
the_stack_data/120978.c
#include <stdio.h> #include <stdlib.h> #include <assert.h> typedef unsigned char UChar; typedef unsigned int UInt; static UInt randomUInt ( void ) { static UInt n = 0; /* From "Numerical Recipes in C" 2nd Edition */ n = 1664525UL * n + 1013904223UL; return n >> 17; } void maskmovq_mmx ( UChar* regL, UChar* regR ) { int i; UChar* dst = malloc(8); assert(dst); for (i = 0; i < 8; i++) dst[i] = 17 * (i+1); __asm__ __volatile__( "emms\n\t" "movq (%0), %%mm1\n\t" "movq (%1), %%mm2\n\t" "movq %2, %%rdi\n\t" "maskmovq %%mm1,%%mm2" : /*out*/ : /*in*/ "r"(regL), "r"(regR), "r"(&dst[0]) : /*trash*/ "rdi", "memory", "cc" ); for (i = 0; i < 8; i++) printf("%02x", dst[i]); free(dst); } void maskmovdqu_sse ( UChar* regL, UChar* regR ) { int i; UChar* dst = malloc(16); assert(dst); for (i = 0; i < 16; i++) dst[i] = i; __asm__ __volatile__( "movups (%0), %%xmm1\n\t" "movups (%1), %%xmm12\n\t" "movq %2, %%rdi\n\t" "maskmovdqu %%xmm12,%%xmm1\n\t" "sfence" : /*out*/ : /*in*/ "r"(regL), "r"(regR), "r"(dst) : /*trash*/ "rdi", "memory", "cc" ); for (i = 0; i < 16; i++) printf("%02x", dst[i]); free(dst); } int main ( int argc, char** argv ) { int i, j; /* mmx test */ { UChar* regL = malloc(8); UChar* regR = malloc(8); assert(regL); assert(regR); for (i = 0; i < 10; i++) { for (j = 0; j < 8; j++) { regL[j] = (UChar)randomUInt(); printf("%02x", regL[j]); } printf(" "); for (j = 0; j < 8; j++) { regR[j] = (UChar)randomUInt(); printf("%02x", regR[j]); } printf(" "); maskmovq_mmx( regR, regL ); printf("\n"); } } /* sse test */ { UChar* regL = malloc(16); UChar* regR = malloc(16); assert(regL); assert(regR); for (i = 0; i < 10; i++) { for (j = 0; j < 16; j++) { regL[j] = (UChar)randomUInt(); printf("%02x", regL[j]); } printf(" "); for (j = 0; j < 16; j++) { regR[j] = (UChar)randomUInt(); printf("%02x", regR[j]); } printf(" "); maskmovdqu_sse( regR, regL ); printf("\n"); } } return 0; }
the_stack_data/41503.c
// RUN: %clang_cc1 -triple x86_64-unk-unk -o - -emit-llvm -g %s | FileCheck %s int somefunc(char *x, int y, double z) { // CHECK: metadata ![[NUM:[^,]*]], i32 0, i32 0} ; [ DW_TAG_subroutine_type // CHECK: ![[NUM]] = {{metadata !{metadata ![^,]*, metadata ![^,]*, metadata ![^,]*, metadata ![^,]*}}} return y; }
the_stack_data/187644024.c
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License 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 and limitations * under the License. */ #ifdef CONF_WINC_USE_SPI #include <assert.h> #include <os/os.h> #include <bsp/bsp.h> #include <hal/hal_gpio.h> #include <hal/hal_spi.h> #include "winc1500/bsp/nm_bsp.h" #include "winc1500/common/nm_common.h" #include "winc1500/bus_wrapper/nm_bus_wrapper.h" #include "winc1500_priv.h" #define NM_BUS_MAX_TRX_SZ 256 tstrNmBusCapabilities egstrNmBusCapabilities = { NM_BUS_MAX_TRX_SZ }; int winc1500_spi_inited; sint8 nm_bus_init(void *pvinit) { struct hal_spi_settings cfg = { 0 }; /* * Add code to configure spi. */ if (!winc1500_spi_inited) { printf("initiating...\n"); if (hal_gpio_init_out(WINC1500_SPI_SSN, 1)) { printf("M2M_ERR_BUS_FAIL error on init.\n"); return M2M_ERR_BUS_FAIL; } cfg.data_mode = HAL_SPI_MODE0; cfg.data_order = HAL_SPI_MSB_FIRST; cfg.word_size = HAL_SPI_WORD_SIZE_8BIT; cfg.baudrate = WINC1500_SPI_SPEED; int rc = hal_spi_config(BSP_WINC1500_SPI_PORT, &cfg); if (rc) { printf("error %d on port %d.\n", rc, BSP_WINC1500_SPI_PORT); return M2M_ERR_BUS_FAIL; } winc1500_spi_inited = 1; if (hal_spi_enable(BSP_WINC1500_SPI_PORT)) { printf("M2M_ERR_BUS_FAIL error on enable.\n"); return M2M_ERR_BUS_FAIL; } } nm_bsp_reset(); nm_bsp_sleep(1); return M2M_SUCCESS; } sint8 nm_bus_deinit(void) { /* * Disable SPI. */ return M2M_SUCCESS; } static sint8 nm_spi_rw(uint8 *pu8Mosi, uint8 *pu8Miso, uint16 u16Sz) { int rc = M2M_SUCCESS; uint8_t tx = 0; uint8_t rx; /* chip select */ hal_gpio_write(WINC1500_SPI_SSN, 0); while (u16Sz) { if (pu8Mosi) { tx = *pu8Mosi; pu8Mosi++; } //rx = hal_spi_tx_val(BSP_WINC1500_SPI_PORT, tx); rc = hal_spi_txrx(BSP_WINC1500_SPI_PORT, &tx, &rx, 1); if (rc != 0) { rc = M2M_ERR_BUS_FAIL; break; } if (pu8Miso) { *pu8Miso = rx; pu8Miso++; } u16Sz--; } /* chip deselect */ hal_gpio_write(WINC1500_SPI_SSN, 1); return rc; } sint8 nm_bus_ioctl(uint8 cmd, void *arg) { tstrNmSpiRw *param; if (cmd != NM_BUS_IOCTL_RW) { return -1; } param = (tstrNmSpiRw *)arg; return nm_spi_rw(param->pu8InBuf, param->pu8OutBuf, param->u16Sz); } #endif
the_stack_data/66245.c
#include <stdio.h> #include <stdlib.h> // Does not handle signed integers void custom_itoa (int num, char* out, int out_length) { int pos = out_length - 1; char curr; // Goes backwards over the number // Last position in the string is the null character out[pos--] = '\0'; do { curr = (num % 10) + 48; if (curr < '0' || curr > '9') { continue; } out[pos--] = curr; } while (num = num / 10); } int main() { int x = 123786123; int length = snprintf( NULL, 0, "%d", x ); // Account for null character char* s = malloc( length + 1 ); custom_itoa( x, s, length + 1 ); printf( "String %s", s ); free(s); return 0; }
the_stack_data/647431.c
#include <stdio.h> #include <string.h> /* Copyright 2021 Melwyn Francis Carlo */ #define N_MAX 10 int main() { const int i = 1E6; int numbers[N_MAX] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; long int MAX_PERMUTATION = 1; for (int j = 2; j <= N_MAX; j++) MAX_PERMUTATION *= j; int n = N_MAX; long int n_product = N_MAX; char digits[N_MAX+1]; int index = (int)( (i - 1) * n_product / MAX_PERMUTATION ); digits[0] = numbers[index] + '0'; for (int j = 1; j < N_MAX; j++) { n--; n_product *= n; if (index < (N_MAX - 1)) memmove( &numbers[index], &numbers[index+1], (N_MAX - index - 1) * sizeof(int)); index = (int)( (i - 1) * n_product / MAX_PERMUTATION ) % n; digits[j] = numbers[index] + '0'; } printf("%s\n", digits); return 0; }
the_stack_data/1137363.c
#include<stdio.h> #include<math.h> #include<stdlib.h> #include<string.h> #define CHARLINHA 900 #define ATRIBSIZE 100 typedef struct{ char *palavra; } String; char vetPathFile[2000]; char vetPathFileSlided[2000]; char vetCmd[2000]; void slidingWindowMultipleColumns(String **solarDataSet, int futureWindowSize, int jump, char *filename, float tupleQty, int presentWindowSize, int step, int totalArrayLength, int numColumn) { FILE *fp; int atribSize = 6*(presentWindowSize*(numColumn)); char *strSave = (char*)malloc(((6*(presentWindowSize) + (20* presentWindowSize+2)))*(numColumn-1)*sizeof(char)); if(strSave==NULL) printf("Falha de alocacao!!!"); //char atribName[ATRIBSIZE]; char *atribName = (char*)malloc(atribSize * sizeof(char)); char *atrib = (char*)malloc(6 * sizeof(char)); long int i, j, col, maxi; int futureWindowIndex; //char solarFlare[] = { 'N','N','Y','Y','Y' };//defines which class is solar flare or not. A, B, C, M, X char solarFlare[] = { 'A','B','C','M','X' };//defines which class is solar flare or not. A, B, C, M, X printf("%c, %c\n",solarFlare[0],solarFlare[1]); unsigned int cont = 0; int count; sprintf(atrib, ""); sprintf(strSave, ""); sprintf(atribName, ""); printf("futureWindow = %d\njump = %d\ntupleQty = %f\npresentWindowSize = %d\nstep = %d\ntotalArrayLength = %d\nnumColumn = %d\n", futureWindowSize, jump, tupleQty, presentWindowSize, step, totalArrayLength,numColumn); //Se der problema MUDAR AQUI!!!! //for (i = 0; i < presentWindowSize*(numColumn-1); i++) { strcat(atribName,"t_rec,"); for (i = 0; i < presentWindowSize*(numColumn-2); i++) { sprintf(atrib, "at%d,", i); strcat(atribName, atrib); } strcat(atribName, "class"); fp = fopen(filename, "a+"); strcat(strSave, atribName); printf("%s\n",strSave); //=============================== cont = strlen(strSave); int k; *(strSave + cont) = '\n'; fprintf(fp,"%s",strSave); fclose(fp); free(strSave); for (cont=0,i = 1; i < tupleQty; i++) { //Incluir um la�o-XXX para considerar todas as colunas da matriz com a base de dados contendo as s�ries de dados solares. ============================ //Se der problema MUDAR AQUI TAMB�M!!!! strSave = (char*)malloc(((6*(presentWindowSize) + (20*presentWindowSize+2)))*(numColumn-1)*sizeof(char)); if(strSave==NULL) {printf("\n!!!!!!!!!!!!!!!!Falha na alocacao: numero da tupla = %ld\n",i);} cont = 0; fp = fopen(filename, "a+"); if(fp==NULL) {printf("\n!!!!!!!!!!!!!!!!Falha na abertura do arquivo: numero da tupla = %ld\n",i);} strcpy(atribName, solarDataSet[i*step][0].palavra); k = 0; //printf("%s\n",atribName); while(k < strlen(atribName)){ *(strSave + cont) = atribName[k]; k++; cont++; } *(strSave + cont) = ','; cont++; //Se der problema MUDAR AQUI!!!! for(col = 1; col < numColumn-1; col++){ for (j = 0; j < presentWindowSize; j++) { strcpy(atribName, solarDataSet[i*step + j][col].palavra); k = 0; //printf("%s\n",atribName); while(k < strlen(atribName)){ *(strSave + cont) = atribName[k]; k++; cont++; } *(strSave + cont) = ','; cont++; } } //printf("%s\n",strSave); //At� aqui est� certo!!! //Terminar o la�o-XXX aqui =========================================================================================================================== ///Inclui o label do evento futuro na observa��o atual///////////////////////////////////////// futureWindowIndex = i * step + presentWindowSize + jump; //printf("futureWindow = %d\n",futureWindowIndex); //////////////////////PAREI AQUI/////////////////////////////////// int solarClass; //printf("Teste: %c\n",solarDataSet[futureWindowIndex][numColumn-1].palavra[1]); if(solarDataSet[futureWindowIndex][numColumn-1].palavra[0]=='A') solarClass = 0; else if(solarDataSet[futureWindowIndex][numColumn-1].palavra[0]=='B') solarClass = 1; else if(solarDataSet[futureWindowIndex][numColumn-1].palavra[0]=='C') solarClass = 2; else if(solarDataSet[futureWindowIndex][numColumn-1].palavra[0]=='M') solarClass = 3; else if(solarDataSet[futureWindowIndex][numColumn-1].palavra[0]=='X') solarClass = 4; //maxi = atoi(solarDataSet[futureWindowIndex][numColumn-1].palavra); maxi = solarClass; //printf("%d\n",maxi); //printf("futureWindowIndex + futureWindowSize: %d",futureWindowIndex + futureWindowSize); for (count = futureWindowIndex; (count < futureWindowIndex + futureWindowSize)&&(count < totalArrayLength - 1); count++) { if(solarDataSet[count][numColumn-1].palavra[0]=='A') solarClass = 0; else if(solarDataSet[count][numColumn-1].palavra[0]=='B') solarClass = 1; else if(solarDataSet[count][numColumn-1].palavra[0]=='C') solarClass = 2; else if(solarDataSet[count][numColumn-1].palavra[0]=='M') solarClass = 3; else if(solarDataSet[count][numColumn-1].palavra[0]=='X') solarClass = 4; //maxi = (maxi > atoi(solarDataSet[count][numColumn-1].palavra))?maxi:atoi(solarDataSet[count][numColumn-1].palavra); maxi = (maxi > solarClass?maxi:solarClass); } sprintf(atribName, "%c\n", solarFlare[maxi]); /////////////////////////////////////////////////////////////////////////////////////////////// //printf("cheguei aqui"); for (k = 0; k < 2; k++, cont++) { *(strSave + cont) = atribName[k]; } fprintf(fp, "%s", strSave); free(strSave); fclose(fp); } //*(strSave + cont) = '\0'; } int retFileNumLines(){ int contNumLines, indexWord = 0; char line[1500]; //FILE *in = fopen("C:\\Users\\sergi_000\\Desktop\\testeSS\\06_TestPlan\\All\\all_maxRay2.csv", "r"); FILE *in = fopen(vetPathFile, "r"); while(fgets(line, sizeof line, in) != NULL){ while(line[indexWord]=='\n') indexWord++; indexWord = 0; contNumLines++; } fclose(in); return contNumLines; } int main(){ String **m; long int linhas, colunas, numPalavras = 0, totalLinhas; int flagColunas = 0; // FILE *in; FILE *arquivo; char buff[512]; char str[512]; char line[1500]; char word[100]; int indexWord = 0, indexLine = 0, numColunas = 0, i, j; int presentWindow = 720, jump = 0, futureWindow = 1440; int windowSize = presentWindow + jump + futureWindow; strcpy(vetPathFile,"/home/carlos/Downloads/EntradasJanelaDesl/sergio2017.csv"); strcpy(vetPathFileSlided,"/home/carlos/Downloads/SaidasJanelaDesl/sergio2017slided.csv"); totalLinhas = retFileNumLines();//atoi(str)/CHARLINHA*1.2; m = (String **)malloc(sizeof(String*) * totalLinhas); arquivo = fopen(vetPathFile, "r"); if (arquivo == NULL){ return EXIT_FAILURE; } linhas = 0; while(fgets(line, sizeof line, arquivo) != NULL) { if(flagColunas==0){ if(strlen(line)>0){ while(line[indexLine] != '\n'){ if(line[indexLine] == ',') numColunas++; indexLine++; } numColunas++; } flagColunas = 1; } *(m+linhas) = malloc(sizeof(String)*numColunas); indexWord = 0; indexLine = 0; i = 0; colunas = 0; if(numColunas > 0){ while(line[indexLine] != '\n'){ if(line[indexLine] != ','){ word[indexWord] = line[indexLine];//m[linhas][colunas].palavra[indexWord] = line[indexLine]; indexWord++; } if((line[indexLine] == ',')||(line[indexLine+1] == '\n')){ word[indexWord]='\0'; //m[linhas][colunas].palavra[indexWord]='\0'; indexWord = 0; m[linhas][colunas].palavra = (char*)malloc(sizeof(char)*strlen(word)); strcpy(m[linhas][colunas].palavra,word); colunas++; } indexLine++; } } /////////////////////////////////////////////////////////////////////////////////////////////////// linhas++; //incremento para preencher a pr�xima linha da matriz } totalLinhas = linhas; float tupleQty = ceil((totalLinhas - windowSize + 1) / (float)1); printf("\nt_rec[0] = %s\n",m[0][1].palavra); printf("t_rec[1] = %s\n",m[1][1].palavra); printf("t_rec[2] = %s\n",m[2][1].palavra); slidingWindowMultipleColumns(m, futureWindow, jump, vetPathFileSlided, tupleQty, presentWindow, 1, totalLinhas, numColunas); free(m); // pclose(in); fclose(arquivo); }
the_stack_data/86703.c
int main() { int a =56; int b =56; int c =56; int d =56 ; int e = 56; e = a >> b>>c>>d; return e; }
the_stack_data/43850.c
#include <stdio.h> #include <unistd.h> #include <string.h> #if 0 int main() { char *p; int i; for (i = 0; i < 16384; i++) { p = (char *)i; *p = i & 0xFF; } for (i = 0; i < 16384; i++) { p = (char *)i; if (*p != (i & 0xFF)) { printf("Error at %d\nFix it now!\\\t\n", i); } } for (; i < 16384; i++) { p; } i = i * 5; p = "This is\na long\tstring. Dude."; } #else int main() { #if 0 int foo[5]; foo[2] = 1; for (;;) { printf("This was compiled.\n"); printf("Cool, eh? 0x%x %d\n", foo[2], foo[2]); foo[2] = foo[2] * 2; } #endif #if 0 int i; i = 1; for (;;) { printf("This was compiled.\n"); printf("Cool, eh? 0x%x %d\n", i, i); i = i * 2; } #endif #if 0 char buffer[30]; int i, j; while (1) { printf("What's your name?\n"); gets(buffer); printf("Hey there %s\n", buffer); for (j = 0; j < 8; j++) { for (i = 0; i < 10000; i++) { /* Nothing. */ } } } #endif #if 0 int i; while (1) { i = get_timer_counter(); printf("Timer %d\n", i); for (i = 0; i < 10000; i++) { /* Nothing. */ } } #endif #if 0 /* fill the screen with white */ int i, j; char *p; p = (char *)(0x4000); for (j = 100; j < 200 + 100; j++) { p[j] = 0xff; } #endif #if 1 /* fill the screen with white */ int i, j; char *p; for (i = 200; i >= 100; i--) { /* for (i = 100; i < 200; i++) { */ p = (char *)(0x4000 + i*22); for (j = 0; j < 22; j++) { p[j] = 0xff; } } #endif #if 0 int i, j; char *p; for (i = 0; i < 160; i++) { p = (char *)(0x4000 + i*22); for (j = 0; j < 22; j++) { p[j] = 0; } } for (i = 0; i < 4; i++) { p = (char *)(0x4000 + (i + 10)*22*4); for (j = 0; j < 22; j++) { p[j] = 0xff; } } #endif #if 0 /* fill the screen with white */ int i, j; char *p; for (i = 56; i < 56 + 170; i++) { p = (char *)(16396 + i*44); /* 352/8 */ for (j = 0; j < 25; j++) { *p = 0xff; p++; } } #endif } #endif
the_stack_data/90765135.c
#include <stdio.h> void main (void) { /* make an inetger called a */ float a; /* make an integer called b and initalise it with a value of 3*/ int b = 3; int c; /* give a a value of 2 */ a = 2.1; /* give c the value of a plus b */ /* as the answer is a float but c is an integer everything after the decimal point is thrown away. THIS DOES NOT ROUND. THIS IS FLOOR ROUNDING.*/ c = a + b; /* %f is needed for as a placeholder for floats */ printf ("The sum of adding %f and %d is %d\n", a, b, c); }
the_stack_data/48575236.c
#if defined(_WIN32) || defined(__CYGWIN__) # define ATTRIBUTES __attribute((__dllexport__)) #else # define ATTRIBUTES #endif static int static_var_1; ATTRIBUTES void fn_1 (int unused) { } ATTRIBUTES int extern_var_1 = 0;
the_stack_data/564107.c
/** ****************************************************************************** * @file stm32f1xx_ll_gpio.c * @author MCD Application Team * @brief GPIO LL module driver. ****************************************************************************** * @attention * * <h2><center>&copy; Copyright (c) 2016 STMicroelectronics. * All rights reserved.</center></h2> * * This software component is licensed by ST under BSD 3-Clause license, * the "License"; You may not use this file except in compliance with the * License. You may obtain a copy of the License at: * opensource.org/licenses/BSD-3-Clause * ****************************************************************************** */ #if defined(USE_FULL_LL_DRIVER) /* Includes ------------------------------------------------------------------*/ #include "stm32f1xx_ll_gpio.h" #include "stm32f1xx_ll_bus.h" #ifdef USE_FULL_ASSERT #include "stm32_assert.h" #else #define assert_param(expr) ((void)0U) #endif /** @addtogroup STM32F1xx_LL_Driver * @{ */ #if defined (GPIOA) || defined (GPIOB) || defined (GPIOC) || defined (GPIOD) || defined (GPIOE) || defined (GPIOF) || defined (GPIOG) /** @addtogroup GPIO_LL * @{ */ /* Private types -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private constants ---------------------------------------------------------*/ /* Private macros ------------------------------------------------------------*/ /** @addtogroup GPIO_LL_Private_Macros * @{ */ #define IS_LL_GPIO_PIN(__VALUE__) ((((__VALUE__) & LL_GPIO_PIN_ALL)!= 0u) &&\ (((__VALUE__) & (~LL_GPIO_PIN_ALL))== 0u)) #define IS_LL_GPIO_MODE(__VALUE__) (((__VALUE__) == LL_GPIO_MODE_ANALOG) ||\ ((__VALUE__) == LL_GPIO_MODE_FLOATING) ||\ ((__VALUE__) == LL_GPIO_MODE_INPUT) ||\ ((__VALUE__) == LL_GPIO_MODE_OUTPUT) ||\ ((__VALUE__) == LL_GPIO_MODE_ALTERNATE)) #define IS_LL_GPIO_SPEED(__VALUE__) (((__VALUE__) == LL_GPIO_SPEED_FREQ_LOW) ||\ ((__VALUE__) == LL_GPIO_SPEED_FREQ_MEDIUM) ||\ ((__VALUE__) == LL_GPIO_SPEED_FREQ_HIGH)) #define IS_LL_GPIO_OUTPUT_TYPE(__VALUE__) (((__VALUE__) == LL_GPIO_OUTPUT_PUSHPULL) ||\ ((__VALUE__) == LL_GPIO_OUTPUT_OPENDRAIN)) #define IS_LL_GPIO_PULL(__VALUE__) (((__VALUE__) == LL_GPIO_PULL_DOWN) ||\ ((__VALUE__) == LL_GPIO_PULL_UP)) /** * @} */ /* Private function prototypes -----------------------------------------------*/ /* Exported functions --------------------------------------------------------*/ /** @addtogroup GPIO_LL_Exported_Functions * @{ */ /** @addtogroup GPIO_LL_EF_Init * @{ */ /** * @brief De-initialize GPIO registers (Registers restored to their default values). * @param GPIOx GPIO Port * @retval An ErrorStatus enumeration value: * - SUCCESS: GPIO registers are de-initialized * - ERROR: Wrong GPIO Port */ ErrorStatus LL_GPIO_DeInit(GPIO_TypeDef *GPIOx) { ErrorStatus status = SUCCESS; /* Check the parameters */ assert_param(IS_GPIO_ALL_INSTANCE(GPIOx)); /* Force and Release reset on clock of GPIOx Port */ if (GPIOx == GPIOA) { LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_GPIOA); LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_GPIOA); } else if (GPIOx == GPIOB) { LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_GPIOB); LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_GPIOB); } else if (GPIOx == GPIOC) { LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_GPIOC); LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_GPIOC); } else if (GPIOx == GPIOD) { LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_GPIOD); LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_GPIOD); } #if defined(GPIOE) else if (GPIOx == GPIOE) { LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_GPIOE); LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_GPIOE); } #endif #if defined(GPIOF) else if (GPIOx == GPIOF) { LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_GPIOF); LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_GPIOF); } #endif #if defined(GPIOG) else if (GPIOx == GPIOG) { LL_APB2_GRP1_ForceReset(LL_APB2_GRP1_PERIPH_GPIOG); LL_APB2_GRP1_ReleaseReset(LL_APB2_GRP1_PERIPH_GPIOG); } #endif else { status = ERROR; } return (status); } /** * @brief Initialize GPIO registers according to the specified parameters in GPIO_InitStruct. * @param GPIOx GPIO Port * @param GPIO_InitStruct: pointer to a @ref LL_GPIO_InitTypeDef structure * that contains the configuration information for the specified GPIO peripheral. * @retval An ErrorStatus enumeration value: * - SUCCESS: GPIO registers are initialized according to GPIO_InitStruct content * - ERROR: Not applicable */ ErrorStatus LL_GPIO_Init(GPIO_TypeDef *GPIOx, LL_GPIO_InitTypeDef *GPIO_InitStruct) { uint32_t pinmask; uint32_t pinpos; uint32_t currentpin; /* Check the parameters */ assert_param(IS_GPIO_ALL_INSTANCE(GPIOx)); assert_param(IS_LL_GPIO_PIN(GPIO_InitStruct->Pin)); /* ------------------------- Configure the port pins ---------------- */ /* Initialize pinpos on first pin set */ pinmask = ((GPIO_InitStruct->Pin) << GPIO_PIN_MASK_POS) >> GPIO_PIN_NB; pinpos = POSITION_VAL(pinmask); /* Configure the port pins */ while ((pinmask >> pinpos) != 0u) { /* skip if bit is not set */ if ((pinmask & (1u << pinpos)) != 0u) { /* Get current io position */ if (pinpos < GPIO_PIN_MASK_POS) { currentpin = (0x00000101uL << pinpos); } else { currentpin = ((0x00010001u << (pinpos - GPIO_PIN_MASK_POS)) | 0x04000000u); } /* Check Pin Mode and Pin Pull parameters */ assert_param(IS_LL_GPIO_MODE(GPIO_InitStruct->Mode)); assert_param(IS_LL_GPIO_PULL(GPIO_InitStruct->Pull)); if ((GPIO_InitStruct->Mode == LL_GPIO_MODE_OUTPUT) || (GPIO_InitStruct->Mode == LL_GPIO_MODE_ALTERNATE)) { /* Check speed and Output mode parameters */ assert_param(IS_LL_GPIO_SPEED(GPIO_InitStruct->Speed)); assert_param(IS_LL_GPIO_OUTPUT_TYPE(GPIO_InitStruct->OutputType)); /* Speed mode configuration */ LL_GPIO_SetPinSpeed(GPIOx, currentpin, GPIO_InitStruct->Speed); /* Output mode configuration*/ LL_GPIO_SetPinOutputType(GPIOx, currentpin, GPIO_InitStruct->OutputType); } /* Pull-up Pull-down resistor configuration*/ LL_GPIO_SetPinPull(GPIOx, currentpin, GPIO_InitStruct->Pull); /* Pin Mode configuration */ LL_GPIO_SetPinMode(GPIOx, currentpin, GPIO_InitStruct->Mode); } pinpos++; } return (SUCCESS); } /** * @brief Set each @ref LL_GPIO_InitTypeDef field to default value. * @param GPIO_InitStruct: pointer to a @ref LL_GPIO_InitTypeDef structure * whose fields will be set to default values. * @retval None */ void LL_GPIO_StructInit(LL_GPIO_InitTypeDef *GPIO_InitStruct) { /* Reset GPIO init structure parameters values */ GPIO_InitStruct->Pin = LL_GPIO_PIN_ALL; GPIO_InitStruct->Mode = LL_GPIO_MODE_FLOATING; GPIO_InitStruct->Speed = LL_GPIO_SPEED_FREQ_LOW; GPIO_InitStruct->OutputType = LL_GPIO_OUTPUT_OPENDRAIN; GPIO_InitStruct->Pull = LL_GPIO_PULL_DOWN; } /** * @} */ /** * @} */ /** * @} */ #endif /* defined (GPIOA) || defined (GPIOB) || defined (GPIOC) || defined (GPIOD) || defined (GPIOE) || defined (GPIOF) || defined (GPIOG) */ /** * @} */ #endif /* USE_FULL_LL_DRIVER */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
the_stack_data/57949878.c
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> void main() { int child_status; pid_t pid; if (fork() == 0) { printf("C\n"); } else { printf("P\n"); pid = wait(&child_status); printf("X\n"); } printf("Bye\n"); exit(0); }
the_stack_data/192329683.c
// https://www.hackerrank.com/challenges/manasa-and-stones/problem #include <stdio.h> int main() { int T, a, b, n, small, big; // n test cases scanf("%d", &T); while (T--) { scanf("%d %d %d", &n, &a, &b); if (a == b) { printf("%d\n", a * (n - 1)); continue; } if (a > b) { small = b; big = a; } else { small = a; big = b; } for (int i = 0; i < n; i++) { printf("%d ", small * (n - 1 - i) + big * i); } } return 0; }
the_stack_data/117327884.c
#include <stdio.h> #include <stdlib.h> #include <time.h> #define N 10 int alea(int n){ return rand()%n; } void init_tableau(int T[],int e){ int i; for(i=0;i<e;i++){ T[i]=alea(15); } } void affiche_tableau(int T[],int e){ int i; for(i=0;i<e;i++){ printf("%d ",T[i]); } printf("\n"); } int compte_valeurs(int T1[],int e){ int T2[N]; int h; for(h=0;h<N;h++){ //initialise un tableau de la meme taille T2[h]=0; //qui a 0 pour toutes ses valeurs } /*int i;int j;int k;int test=0; for(i=0;i<e;i++){ for(j=0;j<N;j++){ for(k=0;k<e;k++){ if(T1[i]==T2[k]){ } } if((T2[j]==0)&&(test==0)){ T2[j]=T1[i]; } } }*/ int i;int j=0;int test=1;int m=0; for(i=0;i<e;i++){ while((T2[j]!=T1[i])&&(test==1)){ test=0; j++; } if(test==0){ while(T2[m]!=0){ m++; } T2[m]=T1[i]; } test=1;m=0;j=0; } int r;int nb=0; for(r=0;r<N;r++){ if(T2[r]==0){ nb=nb+1; } } return e-nb; } int main(){ srand(time(NULL)); int T[N]; init_tableau(T,N); affiche_tableau(T,N); printf("%d\n",compte_valeurs(T,N)); return 0; }
the_stack_data/12790.c
# 1 "benchmarks/ds-06-impl2.c" # 1 "<built-in>" # 1 "<command-line>" # 1 "/usr/include/stdc-predef.h" 1 3 4 # 1 "<command-line>" 2 # 1 "benchmarks/ds-06-impl2.c" # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 1 # 20 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/definitions.h" 1 # 132 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/definitions.h" int X_SIZE_VALUE = 0; int overflow_mode = 1; int rounding_mode = 0; # 155 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/definitions.h" typedef struct { double a[100]; int a_size; double b[100]; int b_size; double sample_time; double a_uncertainty[100]; double b_uncertainty[100]; } digital_system; typedef struct { double A[4][4]; double B[4][4]; double C[4][4]; double D[4][4]; double states[4][4]; double outputs[4][4]; double inputs[4][4]; double K[4][4]; unsigned int nStates; unsigned int nInputs; unsigned int nOutputs; } digital_system_state_space; typedef struct { int int_bits; int frac_bits; double max; double min; int default_realization; double delta; int scale; double max_error; } implementation; typedef struct { int push; int in; int sbiw; int cli; int out; int std; int ldd; int subi; int sbci; int lsl; int rol; int add; int adc; int adiw; int rjmp; int mov; int sbc; int ld; int rcall; int cp; int cpc; int ldi; int brge; int pop; int ret; int st; int brlt; int cpi; } instructions; typedef struct { long clock; int device; double cycle; instructions assembly; } hardware; typedef struct{ float Ap, Ar, Ac; float wp, wc, wr; int type; }filter_parameters; # 21 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" 1 # 17 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" # 1 "/usr/include/stdlib.h" 1 3 4 # 25 "/usr/include/stdlib.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/libc-header-start.h" 1 3 4 # 33 "/usr/include/x86_64-linux-gnu/bits/libc-header-start.h" 3 4 # 1 "/usr/include/features.h" 1 3 4 # 461 "/usr/include/features.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/sys/cdefs.h" 1 3 4 # 452 "/usr/include/x86_64-linux-gnu/sys/cdefs.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/wordsize.h" 1 3 4 # 453 "/usr/include/x86_64-linux-gnu/sys/cdefs.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/long-double.h" 1 3 4 # 454 "/usr/include/x86_64-linux-gnu/sys/cdefs.h" 2 3 4 # 462 "/usr/include/features.h" 2 3 4 # 485 "/usr/include/features.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/gnu/stubs.h" 1 3 4 # 10 "/usr/include/x86_64-linux-gnu/gnu/stubs.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/gnu/stubs-64.h" 1 3 4 # 11 "/usr/include/x86_64-linux-gnu/gnu/stubs.h" 2 3 4 # 486 "/usr/include/features.h" 2 3 4 # 34 "/usr/include/x86_64-linux-gnu/bits/libc-header-start.h" 2 3 4 # 26 "/usr/include/stdlib.h" 2 3 4 # 1 "/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h" 1 3 4 # 209 "/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h" 3 4 # 209 "/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h" 3 4 typedef long unsigned int size_t; # 321 "/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h" 3 4 typedef int wchar_t; # 32 "/usr/include/stdlib.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/waitflags.h" 1 3 4 # 52 "/usr/include/x86_64-linux-gnu/bits/waitflags.h" 3 4 typedef enum { P_ALL, P_PID, P_PGID } idtype_t; # 40 "/usr/include/stdlib.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/waitstatus.h" 1 3 4 # 41 "/usr/include/stdlib.h" 2 3 4 # 55 "/usr/include/stdlib.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/floatn.h" 1 3 4 # 120 "/usr/include/x86_64-linux-gnu/bits/floatn.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/floatn-common.h" 1 3 4 # 24 "/usr/include/x86_64-linux-gnu/bits/floatn-common.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/long-double.h" 1 3 4 # 25 "/usr/include/x86_64-linux-gnu/bits/floatn-common.h" 2 3 4 # 121 "/usr/include/x86_64-linux-gnu/bits/floatn.h" 2 3 4 # 56 "/usr/include/stdlib.h" 2 3 4 typedef struct { int quot; int rem; } div_t; typedef struct { long int quot; long int rem; } ldiv_t; __extension__ typedef struct { long long int quot; long long int rem; } lldiv_t; # 97 "/usr/include/stdlib.h" 3 4 extern size_t __ctype_get_mb_cur_max (void) __attribute__ ((__nothrow__ , __leaf__)) ; extern double atof (const char *__nptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1))) ; extern int atoi (const char *__nptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1))) ; extern long int atol (const char *__nptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1))) ; __extension__ extern long long int atoll (const char *__nptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1))) ; extern double strtod (const char *__restrict __nptr, char **__restrict __endptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); extern float strtof (const char *__restrict __nptr, char **__restrict __endptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); extern long double strtold (const char *__restrict __nptr, char **__restrict __endptr) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); # 176 "/usr/include/stdlib.h" 3 4 extern long int strtol (const char *__restrict __nptr, char **__restrict __endptr, int __base) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); extern unsigned long int strtoul (const char *__restrict __nptr, char **__restrict __endptr, int __base) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); __extension__ extern long long int strtoq (const char *__restrict __nptr, char **__restrict __endptr, int __base) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); __extension__ extern unsigned long long int strtouq (const char *__restrict __nptr, char **__restrict __endptr, int __base) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); __extension__ extern long long int strtoll (const char *__restrict __nptr, char **__restrict __endptr, int __base) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); __extension__ extern unsigned long long int strtoull (const char *__restrict __nptr, char **__restrict __endptr, int __base) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); # 385 "/usr/include/stdlib.h" 3 4 extern char *l64a (long int __n) __attribute__ ((__nothrow__ , __leaf__)) ; extern long int a64l (const char *__s) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1))) ; # 1 "/usr/include/x86_64-linux-gnu/sys/types.h" 1 3 4 # 27 "/usr/include/x86_64-linux-gnu/sys/types.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/types.h" 1 3 4 # 27 "/usr/include/x86_64-linux-gnu/bits/types.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/wordsize.h" 1 3 4 # 28 "/usr/include/x86_64-linux-gnu/bits/types.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/timesize.h" 1 3 4 # 29 "/usr/include/x86_64-linux-gnu/bits/types.h" 2 3 4 typedef unsigned char __u_char; typedef unsigned short int __u_short; typedef unsigned int __u_int; typedef unsigned long int __u_long; typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef signed short int __int16_t; typedef unsigned short int __uint16_t; typedef signed int __int32_t; typedef unsigned int __uint32_t; typedef signed long int __int64_t; typedef unsigned long int __uint64_t; typedef __int8_t __int_least8_t; typedef __uint8_t __uint_least8_t; typedef __int16_t __int_least16_t; typedef __uint16_t __uint_least16_t; typedef __int32_t __int_least32_t; typedef __uint32_t __uint_least32_t; typedef __int64_t __int_least64_t; typedef __uint64_t __uint_least64_t; typedef long int __quad_t; typedef unsigned long int __u_quad_t; typedef long int __intmax_t; typedef unsigned long int __uintmax_t; # 141 "/usr/include/x86_64-linux-gnu/bits/types.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/typesizes.h" 1 3 4 # 142 "/usr/include/x86_64-linux-gnu/bits/types.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/time64.h" 1 3 4 # 143 "/usr/include/x86_64-linux-gnu/bits/types.h" 2 3 4 typedef unsigned long int __dev_t; typedef unsigned int __uid_t; typedef unsigned int __gid_t; typedef unsigned long int __ino_t; typedef unsigned long int __ino64_t; typedef unsigned int __mode_t; typedef unsigned long int __nlink_t; typedef long int __off_t; typedef long int __off64_t; typedef int __pid_t; typedef struct { int __val[2]; } __fsid_t; typedef long int __clock_t; typedef unsigned long int __rlim_t; typedef unsigned long int __rlim64_t; typedef unsigned int __id_t; typedef long int __time_t; typedef unsigned int __useconds_t; typedef long int __suseconds_t; typedef int __daddr_t; typedef int __key_t; typedef int __clockid_t; typedef void * __timer_t; typedef long int __blksize_t; typedef long int __blkcnt_t; typedef long int __blkcnt64_t; typedef unsigned long int __fsblkcnt_t; typedef unsigned long int __fsblkcnt64_t; typedef unsigned long int __fsfilcnt_t; typedef unsigned long int __fsfilcnt64_t; typedef long int __fsword_t; typedef long int __ssize_t; typedef long int __syscall_slong_t; typedef unsigned long int __syscall_ulong_t; typedef __off64_t __loff_t; typedef char *__caddr_t; typedef long int __intptr_t; typedef unsigned int __socklen_t; typedef int __sig_atomic_t; # 30 "/usr/include/x86_64-linux-gnu/sys/types.h" 2 3 4 typedef __u_char u_char; typedef __u_short u_short; typedef __u_int u_int; typedef __u_long u_long; typedef __quad_t quad_t; typedef __u_quad_t u_quad_t; typedef __fsid_t fsid_t; typedef __loff_t loff_t; typedef __ino_t ino_t; # 59 "/usr/include/x86_64-linux-gnu/sys/types.h" 3 4 typedef __dev_t dev_t; typedef __gid_t gid_t; typedef __mode_t mode_t; typedef __nlink_t nlink_t; typedef __uid_t uid_t; typedef __off_t off_t; # 97 "/usr/include/x86_64-linux-gnu/sys/types.h" 3 4 typedef __pid_t pid_t; typedef __id_t id_t; typedef __ssize_t ssize_t; typedef __daddr_t daddr_t; typedef __caddr_t caddr_t; typedef __key_t key_t; # 1 "/usr/include/x86_64-linux-gnu/bits/types/clock_t.h" 1 3 4 typedef __clock_t clock_t; # 127 "/usr/include/x86_64-linux-gnu/sys/types.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h" 1 3 4 typedef __clockid_t clockid_t; # 129 "/usr/include/x86_64-linux-gnu/sys/types.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/types/time_t.h" 1 3 4 typedef __time_t time_t; # 130 "/usr/include/x86_64-linux-gnu/sys/types.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/types/timer_t.h" 1 3 4 typedef __timer_t timer_t; # 131 "/usr/include/x86_64-linux-gnu/sys/types.h" 2 3 4 # 144 "/usr/include/x86_64-linux-gnu/sys/types.h" 3 4 # 1 "/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h" 1 3 4 # 145 "/usr/include/x86_64-linux-gnu/sys/types.h" 2 3 4 typedef unsigned long int ulong; typedef unsigned short int ushort; typedef unsigned int uint; # 1 "/usr/include/x86_64-linux-gnu/bits/stdint-intn.h" 1 3 4 # 24 "/usr/include/x86_64-linux-gnu/bits/stdint-intn.h" 3 4 typedef __int8_t int8_t; typedef __int16_t int16_t; typedef __int32_t int32_t; typedef __int64_t int64_t; # 156 "/usr/include/x86_64-linux-gnu/sys/types.h" 2 3 4 typedef __uint8_t u_int8_t; typedef __uint16_t u_int16_t; typedef __uint32_t u_int32_t; typedef __uint64_t u_int64_t; typedef int register_t __attribute__ ((__mode__ (__word__))); # 176 "/usr/include/x86_64-linux-gnu/sys/types.h" 3 4 # 1 "/usr/include/endian.h" 1 3 4 # 24 "/usr/include/endian.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/endian.h" 1 3 4 # 35 "/usr/include/x86_64-linux-gnu/bits/endian.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/endianness.h" 1 3 4 # 36 "/usr/include/x86_64-linux-gnu/bits/endian.h" 2 3 4 # 25 "/usr/include/endian.h" 2 3 4 # 35 "/usr/include/endian.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/byteswap.h" 1 3 4 # 33 "/usr/include/x86_64-linux-gnu/bits/byteswap.h" 3 4 static __inline __uint16_t __bswap_16 (__uint16_t __bsx) { return __builtin_bswap16 (__bsx); } static __inline __uint32_t __bswap_32 (__uint32_t __bsx) { return __builtin_bswap32 (__bsx); } # 69 "/usr/include/x86_64-linux-gnu/bits/byteswap.h" 3 4 __extension__ static __inline __uint64_t __bswap_64 (__uint64_t __bsx) { return __builtin_bswap64 (__bsx); } # 36 "/usr/include/endian.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/uintn-identity.h" 1 3 4 # 32 "/usr/include/x86_64-linux-gnu/bits/uintn-identity.h" 3 4 static __inline __uint16_t __uint16_identity (__uint16_t __x) { return __x; } static __inline __uint32_t __uint32_identity (__uint32_t __x) { return __x; } static __inline __uint64_t __uint64_identity (__uint64_t __x) { return __x; } # 37 "/usr/include/endian.h" 2 3 4 # 177 "/usr/include/x86_64-linux-gnu/sys/types.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/sys/select.h" 1 3 4 # 30 "/usr/include/x86_64-linux-gnu/sys/select.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/select.h" 1 3 4 # 22 "/usr/include/x86_64-linux-gnu/bits/select.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/wordsize.h" 1 3 4 # 23 "/usr/include/x86_64-linux-gnu/bits/select.h" 2 3 4 # 31 "/usr/include/x86_64-linux-gnu/sys/select.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h" 1 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h" 1 3 4 typedef struct { unsigned long int __val[(1024 / (8 * sizeof (unsigned long int)))]; } __sigset_t; # 5 "/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h" 2 3 4 typedef __sigset_t sigset_t; # 34 "/usr/include/x86_64-linux-gnu/sys/select.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h" 1 3 4 struct timeval { __time_t tv_sec; __suseconds_t tv_usec; }; # 38 "/usr/include/x86_64-linux-gnu/sys/select.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h" 1 3 4 # 10 "/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h" 3 4 struct timespec { __time_t tv_sec; __syscall_slong_t tv_nsec; # 26 "/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h" 3 4 }; # 40 "/usr/include/x86_64-linux-gnu/sys/select.h" 2 3 4 typedef __suseconds_t suseconds_t; typedef long int __fd_mask; # 59 "/usr/include/x86_64-linux-gnu/sys/select.h" 3 4 typedef struct { __fd_mask __fds_bits[1024 / (8 * (int) sizeof (__fd_mask))]; } fd_set; typedef __fd_mask fd_mask; # 91 "/usr/include/x86_64-linux-gnu/sys/select.h" 3 4 # 101 "/usr/include/x86_64-linux-gnu/sys/select.h" 3 4 extern int select (int __nfds, fd_set *__restrict __readfds, fd_set *__restrict __writefds, fd_set *__restrict __exceptfds, struct timeval *__restrict __timeout); # 113 "/usr/include/x86_64-linux-gnu/sys/select.h" 3 4 extern int pselect (int __nfds, fd_set *__restrict __readfds, fd_set *__restrict __writefds, fd_set *__restrict __exceptfds, const struct timespec *__restrict __timeout, const __sigset_t *__restrict __sigmask); # 126 "/usr/include/x86_64-linux-gnu/sys/select.h" 3 4 # 180 "/usr/include/x86_64-linux-gnu/sys/types.h" 2 3 4 typedef __blksize_t blksize_t; typedef __blkcnt_t blkcnt_t; typedef __fsblkcnt_t fsblkcnt_t; typedef __fsfilcnt_t fsfilcnt_t; # 227 "/usr/include/x86_64-linux-gnu/sys/types.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h" 1 3 4 # 23 "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h" 1 3 4 # 44 "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h" 1 3 4 # 21 "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/wordsize.h" 1 3 4 # 22 "/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h" 2 3 4 # 45 "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h" 2 3 4 typedef struct __pthread_internal_list { struct __pthread_internal_list *__prev; struct __pthread_internal_list *__next; } __pthread_list_t; typedef struct __pthread_internal_slist { struct __pthread_internal_slist *__next; } __pthread_slist_t; # 74 "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/struct_mutex.h" 1 3 4 # 22 "/usr/include/x86_64-linux-gnu/bits/struct_mutex.h" 3 4 struct __pthread_mutex_s { int __lock; unsigned int __count; int __owner; unsigned int __nusers; int __kind; short __spins; short __elision; __pthread_list_t __list; # 53 "/usr/include/x86_64-linux-gnu/bits/struct_mutex.h" 3 4 }; # 75 "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h" 2 3 4 # 87 "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h" 1 3 4 # 23 "/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h" 3 4 struct __pthread_rwlock_arch_t { unsigned int __readers; unsigned int __writers; unsigned int __wrphase_futex; unsigned int __writers_futex; unsigned int __pad3; unsigned int __pad4; int __cur_writer; int __shared; signed char __rwelision; unsigned char __pad1[7]; unsigned long int __pad2; unsigned int __flags; # 55 "/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h" 3 4 }; # 88 "/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h" 2 3 4 struct __pthread_cond_s { __extension__ union { __extension__ unsigned long long int __wseq; struct { unsigned int __low; unsigned int __high; } __wseq32; }; __extension__ union { __extension__ unsigned long long int __g1_start; struct { unsigned int __low; unsigned int __high; } __g1_start32; }; unsigned int __g_refs[2] ; unsigned int __g_size[2]; unsigned int __g1_orig_size; unsigned int __wrefs; unsigned int __g_signals[2]; }; # 24 "/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h" 2 3 4 typedef unsigned long int pthread_t; typedef union { char __size[4]; int __align; } pthread_mutexattr_t; typedef union { char __size[4]; int __align; } pthread_condattr_t; typedef unsigned int pthread_key_t; typedef int pthread_once_t; union pthread_attr_t { char __size[56]; long int __align; }; typedef union pthread_attr_t pthread_attr_t; typedef union { struct __pthread_mutex_s __data; char __size[40]; long int __align; } pthread_mutex_t; typedef union { struct __pthread_cond_s __data; char __size[48]; __extension__ long long int __align; } pthread_cond_t; typedef union { struct __pthread_rwlock_arch_t __data; char __size[56]; long int __align; } pthread_rwlock_t; typedef union { char __size[8]; long int __align; } pthread_rwlockattr_t; typedef volatile int pthread_spinlock_t; typedef union { char __size[32]; long int __align; } pthread_barrier_t; typedef union { char __size[4]; int __align; } pthread_barrierattr_t; # 228 "/usr/include/x86_64-linux-gnu/sys/types.h" 2 3 4 # 395 "/usr/include/stdlib.h" 2 3 4 extern long int random (void) __attribute__ ((__nothrow__ , __leaf__)); extern void srandom (unsigned int __seed) __attribute__ ((__nothrow__ , __leaf__)); extern char *initstate (unsigned int __seed, char *__statebuf, size_t __statelen) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2))); extern char *setstate (char *__statebuf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); struct random_data { int32_t *fptr; int32_t *rptr; int32_t *state; int rand_type; int rand_deg; int rand_sep; int32_t *end_ptr; }; extern int random_r (struct random_data *__restrict __buf, int32_t *__restrict __result) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))); extern int srandom_r (unsigned int __seed, struct random_data *__buf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2))); extern int initstate_r (unsigned int __seed, char *__restrict __statebuf, size_t __statelen, struct random_data *__restrict __buf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2, 4))); extern int setstate_r (char *__restrict __statebuf, struct random_data *__restrict __buf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))); extern int rand (void) __attribute__ ((__nothrow__ , __leaf__)); extern void srand (unsigned int __seed) __attribute__ ((__nothrow__ , __leaf__)); extern int rand_r (unsigned int *__seed) __attribute__ ((__nothrow__ , __leaf__)); extern double drand48 (void) __attribute__ ((__nothrow__ , __leaf__)); extern double erand48 (unsigned short int __xsubi[3]) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); extern long int lrand48 (void) __attribute__ ((__nothrow__ , __leaf__)); extern long int nrand48 (unsigned short int __xsubi[3]) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); extern long int mrand48 (void) __attribute__ ((__nothrow__ , __leaf__)); extern long int jrand48 (unsigned short int __xsubi[3]) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); extern void srand48 (long int __seedval) __attribute__ ((__nothrow__ , __leaf__)); extern unsigned short int *seed48 (unsigned short int __seed16v[3]) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); extern void lcong48 (unsigned short int __param[7]) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); struct drand48_data { unsigned short int __x[3]; unsigned short int __old_x[3]; unsigned short int __c; unsigned short int __init; __extension__ unsigned long long int __a; }; extern int drand48_r (struct drand48_data *__restrict __buffer, double *__restrict __result) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))); extern int erand48_r (unsigned short int __xsubi[3], struct drand48_data *__restrict __buffer, double *__restrict __result) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))); extern int lrand48_r (struct drand48_data *__restrict __buffer, long int *__restrict __result) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))); extern int nrand48_r (unsigned short int __xsubi[3], struct drand48_data *__restrict __buffer, long int *__restrict __result) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))); extern int mrand48_r (struct drand48_data *__restrict __buffer, long int *__restrict __result) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))); extern int jrand48_r (unsigned short int __xsubi[3], struct drand48_data *__restrict __buffer, long int *__restrict __result) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))); extern int srand48_r (long int __seedval, struct drand48_data *__buffer) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2))); extern int seed48_r (unsigned short int __seed16v[3], struct drand48_data *__buffer) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))); extern int lcong48_r (unsigned short int __param[7], struct drand48_data *__buffer) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2))); extern void *malloc (size_t __size) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__malloc__)) __attribute__ ((__alloc_size__ (1))) ; extern void *calloc (size_t __nmemb, size_t __size) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__malloc__)) __attribute__ ((__alloc_size__ (1, 2))) ; extern void *realloc (void *__ptr, size_t __size) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__)) __attribute__ ((__alloc_size__ (2))); extern void *reallocarray (void *__ptr, size_t __nmemb, size_t __size) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__warn_unused_result__)) __attribute__ ((__alloc_size__ (2, 3))); extern void free (void *__ptr) __attribute__ ((__nothrow__ , __leaf__)); # 1 "/usr/include/alloca.h" 1 3 4 # 24 "/usr/include/alloca.h" 3 4 # 1 "/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h" 1 3 4 # 25 "/usr/include/alloca.h" 2 3 4 extern void *alloca (size_t __size) __attribute__ ((__nothrow__ , __leaf__)); # 569 "/usr/include/stdlib.h" 2 3 4 extern void *valloc (size_t __size) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__malloc__)) __attribute__ ((__alloc_size__ (1))) ; extern int posix_memalign (void **__memptr, size_t __alignment, size_t __size) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) ; extern void *aligned_alloc (size_t __alignment, size_t __size) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__malloc__)) __attribute__ ((__alloc_size__ (2))) ; extern void abort (void) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__)); extern int atexit (void (*__func) (void)) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); extern int at_quick_exit (void (*__func) (void)) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); extern int on_exit (void (*__func) (int __status, void *__arg), void *__arg) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); extern void exit (int __status) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__)); extern void quick_exit (int __status) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__)); extern void _Exit (int __status) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__)); extern char *getenv (const char *__name) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) ; # 647 "/usr/include/stdlib.h" 3 4 extern int putenv (char *__string) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); extern int setenv (const char *__name, const char *__value, int __replace) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (2))); extern int unsetenv (const char *__name) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); extern int clearenv (void) __attribute__ ((__nothrow__ , __leaf__)); # 675 "/usr/include/stdlib.h" 3 4 extern char *mktemp (char *__template) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); # 688 "/usr/include/stdlib.h" 3 4 extern int mkstemp (char *__template) __attribute__ ((__nonnull__ (1))) ; # 710 "/usr/include/stdlib.h" 3 4 extern int mkstemps (char *__template, int __suffixlen) __attribute__ ((__nonnull__ (1))) ; # 731 "/usr/include/stdlib.h" 3 4 extern char *mkdtemp (char *__template) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) ; # 784 "/usr/include/stdlib.h" 3 4 extern int system (const char *__command) ; # 800 "/usr/include/stdlib.h" 3 4 extern char *realpath (const char *__restrict __name, char *__restrict __resolved) __attribute__ ((__nothrow__ , __leaf__)) ; typedef int (*__compar_fn_t) (const void *, const void *); # 820 "/usr/include/stdlib.h" 3 4 extern void *bsearch (const void *__key, const void *__base, size_t __nmemb, size_t __size, __compar_fn_t __compar) __attribute__ ((__nonnull__ (1, 2, 5))) ; extern void qsort (void *__base, size_t __nmemb, size_t __size, __compar_fn_t __compar) __attribute__ ((__nonnull__ (1, 4))); # 840 "/usr/include/stdlib.h" 3 4 extern int abs (int __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)) ; extern long int labs (long int __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)) ; __extension__ extern long long int llabs (long long int __x) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)) ; extern div_t div (int __numer, int __denom) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)) ; extern ldiv_t ldiv (long int __numer, long int __denom) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)) ; __extension__ extern lldiv_t lldiv (long long int __numer, long long int __denom) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)) ; # 872 "/usr/include/stdlib.h" 3 4 extern char *ecvt (double __value, int __ndigit, int *__restrict __decpt, int *__restrict __sign) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4))) ; extern char *fcvt (double __value, int __ndigit, int *__restrict __decpt, int *__restrict __sign) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4))) ; extern char *gcvt (double __value, int __ndigit, char *__buf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3))) ; extern char *qecvt (long double __value, int __ndigit, int *__restrict __decpt, int *__restrict __sign) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4))) ; extern char *qfcvt (long double __value, int __ndigit, int *__restrict __decpt, int *__restrict __sign) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4))) ; extern char *qgcvt (long double __value, int __ndigit, char *__buf) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3))) ; extern int ecvt_r (double __value, int __ndigit, int *__restrict __decpt, int *__restrict __sign, char *__restrict __buf, size_t __len) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4, 5))); extern int fcvt_r (double __value, int __ndigit, int *__restrict __decpt, int *__restrict __sign, char *__restrict __buf, size_t __len) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4, 5))); extern int qecvt_r (long double __value, int __ndigit, int *__restrict __decpt, int *__restrict __sign, char *__restrict __buf, size_t __len) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4, 5))); extern int qfcvt_r (long double __value, int __ndigit, int *__restrict __decpt, int *__restrict __sign, char *__restrict __buf, size_t __len) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (3, 4, 5))); extern int mblen (const char *__s, size_t __n) __attribute__ ((__nothrow__ , __leaf__)); extern int mbtowc (wchar_t *__restrict __pwc, const char *__restrict __s, size_t __n) __attribute__ ((__nothrow__ , __leaf__)); extern int wctomb (char *__s, wchar_t __wchar) __attribute__ ((__nothrow__ , __leaf__)); extern size_t mbstowcs (wchar_t *__restrict __pwcs, const char *__restrict __s, size_t __n) __attribute__ ((__nothrow__ , __leaf__)); extern size_t wcstombs (char *__restrict __s, const wchar_t *__restrict __pwcs, size_t __n) __attribute__ ((__nothrow__ , __leaf__)); extern int rpmatch (const char *__response) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))) ; # 957 "/usr/include/stdlib.h" 3 4 extern int getsubopt (char **__restrict __optionp, char *const *__restrict __tokens, char **__restrict __valuep) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1, 2, 3))) ; # 1003 "/usr/include/stdlib.h" 3 4 extern int getloadavg (double __loadavg[], int __nelem) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__nonnull__ (1))); # 1013 "/usr/include/stdlib.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/stdlib-float.h" 1 3 4 # 1014 "/usr/include/stdlib.h" 2 3 4 # 1023 "/usr/include/stdlib.h" 3 4 # 18 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" 2 # 1 "/usr/include/assert.h" 1 3 4 # 66 "/usr/include/assert.h" 3 4 extern void __assert_fail (const char *__assertion, const char *__file, unsigned int __line, const char *__function) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__)); extern void __assert_perror_fail (int __errnum, const char *__file, unsigned int __line, const char *__function) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__)); extern void __assert (const char *__assertion, const char *__file, int __line) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__noreturn__)); # 19 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" 2 # 1 "/usr/include/stdio.h" 1 3 4 # 27 "/usr/include/stdio.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/libc-header-start.h" 1 3 4 # 28 "/usr/include/stdio.h" 2 3 4 # 1 "/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h" 1 3 4 # 34 "/usr/include/stdio.h" 2 3 4 # 1 "/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h" 1 3 4 # 40 "/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h" 3 4 typedef __builtin_va_list __gnuc_va_list; # 37 "/usr/include/stdio.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h" 1 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h" 1 3 4 # 13 "/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h" 3 4 typedef struct { int __count; union { unsigned int __wch; char __wchb[4]; } __value; } __mbstate_t; # 6 "/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h" 2 3 4 typedef struct _G_fpos_t { __off_t __pos; __mbstate_t __state; } __fpos_t; # 40 "/usr/include/stdio.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h" 1 3 4 # 10 "/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h" 3 4 typedef struct _G_fpos64_t { __off64_t __pos; __mbstate_t __state; } __fpos64_t; # 41 "/usr/include/stdio.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/types/__FILE.h" 1 3 4 struct _IO_FILE; typedef struct _IO_FILE __FILE; # 42 "/usr/include/stdio.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/types/FILE.h" 1 3 4 struct _IO_FILE; typedef struct _IO_FILE FILE; # 43 "/usr/include/stdio.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h" 1 3 4 # 35 "/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h" 3 4 struct _IO_FILE; struct _IO_marker; struct _IO_codecvt; struct _IO_wide_data; typedef void _IO_lock_t; struct _IO_FILE { int _flags; char *_IO_read_ptr; char *_IO_read_end; char *_IO_read_base; char *_IO_write_base; char *_IO_write_ptr; char *_IO_write_end; char *_IO_buf_base; char *_IO_buf_end; char *_IO_save_base; char *_IO_backup_base; char *_IO_save_end; struct _IO_marker *_markers; struct _IO_FILE *_chain; int _fileno; int _flags2; __off_t _old_offset; unsigned short _cur_column; signed char _vtable_offset; char _shortbuf[1]; _IO_lock_t *_lock; __off64_t _offset; struct _IO_codecvt *_codecvt; struct _IO_wide_data *_wide_data; struct _IO_FILE *_freeres_list; void *_freeres_buf; size_t __pad5; int _mode; char _unused2[15 * sizeof (int) - 4 * sizeof (void *) - sizeof (size_t)]; }; # 44 "/usr/include/stdio.h" 2 3 4 # 52 "/usr/include/stdio.h" 3 4 typedef __gnuc_va_list va_list; # 84 "/usr/include/stdio.h" 3 4 typedef __fpos_t fpos_t; # 133 "/usr/include/stdio.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/stdio_lim.h" 1 3 4 # 134 "/usr/include/stdio.h" 2 3 4 extern FILE *stdin; extern FILE *stdout; extern FILE *stderr; extern int remove (const char *__filename) __attribute__ ((__nothrow__ , __leaf__)); extern int rename (const char *__old, const char *__new) __attribute__ ((__nothrow__ , __leaf__)); extern int renameat (int __oldfd, const char *__old, int __newfd, const char *__new) __attribute__ ((__nothrow__ , __leaf__)); # 173 "/usr/include/stdio.h" 3 4 extern FILE *tmpfile (void) ; # 187 "/usr/include/stdio.h" 3 4 extern char *tmpnam (char *__s) __attribute__ ((__nothrow__ , __leaf__)) ; extern char *tmpnam_r (char *__s) __attribute__ ((__nothrow__ , __leaf__)) ; # 204 "/usr/include/stdio.h" 3 4 extern char *tempnam (const char *__dir, const char *__pfx) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__malloc__)) ; extern int fclose (FILE *__stream); extern int fflush (FILE *__stream); # 227 "/usr/include/stdio.h" 3 4 extern int fflush_unlocked (FILE *__stream); # 246 "/usr/include/stdio.h" 3 4 extern FILE *fopen (const char *__restrict __filename, const char *__restrict __modes) ; extern FILE *freopen (const char *__restrict __filename, const char *__restrict __modes, FILE *__restrict __stream) ; # 279 "/usr/include/stdio.h" 3 4 extern FILE *fdopen (int __fd, const char *__modes) __attribute__ ((__nothrow__ , __leaf__)) ; # 292 "/usr/include/stdio.h" 3 4 extern FILE *fmemopen (void *__s, size_t __len, const char *__modes) __attribute__ ((__nothrow__ , __leaf__)) ; extern FILE *open_memstream (char **__bufloc, size_t *__sizeloc) __attribute__ ((__nothrow__ , __leaf__)) ; extern void setbuf (FILE *__restrict __stream, char *__restrict __buf) __attribute__ ((__nothrow__ , __leaf__)); extern int setvbuf (FILE *__restrict __stream, char *__restrict __buf, int __modes, size_t __n) __attribute__ ((__nothrow__ , __leaf__)); extern void setbuffer (FILE *__restrict __stream, char *__restrict __buf, size_t __size) __attribute__ ((__nothrow__ , __leaf__)); extern void setlinebuf (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)); extern int fprintf (FILE *__restrict __stream, const char *__restrict __format, ...); extern int printf (const char *__restrict __format, ...); extern int sprintf (char *__restrict __s, const char *__restrict __format, ...) __attribute__ ((__nothrow__)); extern int vfprintf (FILE *__restrict __s, const char *__restrict __format, __gnuc_va_list __arg); extern int vprintf (const char *__restrict __format, __gnuc_va_list __arg); extern int vsprintf (char *__restrict __s, const char *__restrict __format, __gnuc_va_list __arg) __attribute__ ((__nothrow__)); extern int snprintf (char *__restrict __s, size_t __maxlen, const char *__restrict __format, ...) __attribute__ ((__nothrow__)) __attribute__ ((__format__ (__printf__, 3, 4))); extern int vsnprintf (char *__restrict __s, size_t __maxlen, const char *__restrict __format, __gnuc_va_list __arg) __attribute__ ((__nothrow__)) __attribute__ ((__format__ (__printf__, 3, 0))); # 379 "/usr/include/stdio.h" 3 4 extern int vdprintf (int __fd, const char *__restrict __fmt, __gnuc_va_list __arg) __attribute__ ((__format__ (__printf__, 2, 0))); extern int dprintf (int __fd, const char *__restrict __fmt, ...) __attribute__ ((__format__ (__printf__, 2, 3))); extern int fscanf (FILE *__restrict __stream, const char *__restrict __format, ...) ; extern int scanf (const char *__restrict __format, ...) ; extern int sscanf (const char *__restrict __s, const char *__restrict __format, ...) __attribute__ ((__nothrow__ , __leaf__)); extern int fscanf (FILE *__restrict __stream, const char *__restrict __format, ...) __asm__ ("" "__isoc99_fscanf") ; extern int scanf (const char *__restrict __format, ...) __asm__ ("" "__isoc99_scanf") ; extern int sscanf (const char *__restrict __s, const char *__restrict __format, ...) __asm__ ("" "__isoc99_sscanf") __attribute__ ((__nothrow__ , __leaf__)) ; # 432 "/usr/include/stdio.h" 3 4 extern int vfscanf (FILE *__restrict __s, const char *__restrict __format, __gnuc_va_list __arg) __attribute__ ((__format__ (__scanf__, 2, 0))) ; extern int vscanf (const char *__restrict __format, __gnuc_va_list __arg) __attribute__ ((__format__ (__scanf__, 1, 0))) ; extern int vsscanf (const char *__restrict __s, const char *__restrict __format, __gnuc_va_list __arg) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__format__ (__scanf__, 2, 0))); extern int vfscanf (FILE *__restrict __s, const char *__restrict __format, __gnuc_va_list __arg) __asm__ ("" "__isoc99_vfscanf") __attribute__ ((__format__ (__scanf__, 2, 0))) ; extern int vscanf (const char *__restrict __format, __gnuc_va_list __arg) __asm__ ("" "__isoc99_vscanf") __attribute__ ((__format__ (__scanf__, 1, 0))) ; extern int vsscanf (const char *__restrict __s, const char *__restrict __format, __gnuc_va_list __arg) __asm__ ("" "__isoc99_vsscanf") __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__format__ (__scanf__, 2, 0))); # 485 "/usr/include/stdio.h" 3 4 extern int fgetc (FILE *__stream); extern int getc (FILE *__stream); extern int getchar (void); extern int getc_unlocked (FILE *__stream); extern int getchar_unlocked (void); # 510 "/usr/include/stdio.h" 3 4 extern int fgetc_unlocked (FILE *__stream); # 521 "/usr/include/stdio.h" 3 4 extern int fputc (int __c, FILE *__stream); extern int putc (int __c, FILE *__stream); extern int putchar (int __c); # 537 "/usr/include/stdio.h" 3 4 extern int fputc_unlocked (int __c, FILE *__stream); extern int putc_unlocked (int __c, FILE *__stream); extern int putchar_unlocked (int __c); extern int getw (FILE *__stream); extern int putw (int __w, FILE *__stream); extern char *fgets (char *__restrict __s, int __n, FILE *__restrict __stream) ; # 603 "/usr/include/stdio.h" 3 4 extern __ssize_t __getdelim (char **__restrict __lineptr, size_t *__restrict __n, int __delimiter, FILE *__restrict __stream) ; extern __ssize_t getdelim (char **__restrict __lineptr, size_t *__restrict __n, int __delimiter, FILE *__restrict __stream) ; extern __ssize_t getline (char **__restrict __lineptr, size_t *__restrict __n, FILE *__restrict __stream) ; extern int fputs (const char *__restrict __s, FILE *__restrict __stream); extern int puts (const char *__s); extern int ungetc (int __c, FILE *__stream); extern size_t fread (void *__restrict __ptr, size_t __size, size_t __n, FILE *__restrict __stream) ; extern size_t fwrite (const void *__restrict __ptr, size_t __size, size_t __n, FILE *__restrict __s); # 673 "/usr/include/stdio.h" 3 4 extern size_t fread_unlocked (void *__restrict __ptr, size_t __size, size_t __n, FILE *__restrict __stream) ; extern size_t fwrite_unlocked (const void *__restrict __ptr, size_t __size, size_t __n, FILE *__restrict __stream); extern int fseek (FILE *__stream, long int __off, int __whence); extern long int ftell (FILE *__stream) ; extern void rewind (FILE *__stream); # 707 "/usr/include/stdio.h" 3 4 extern int fseeko (FILE *__stream, __off_t __off, int __whence); extern __off_t ftello (FILE *__stream) ; # 731 "/usr/include/stdio.h" 3 4 extern int fgetpos (FILE *__restrict __stream, fpos_t *__restrict __pos); extern int fsetpos (FILE *__stream, const fpos_t *__pos); # 757 "/usr/include/stdio.h" 3 4 extern void clearerr (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)); extern int feof (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)) ; extern int ferror (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)) ; extern void clearerr_unlocked (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)); extern int feof_unlocked (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)) ; extern int ferror_unlocked (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)) ; extern void perror (const char *__s); # 1 "/usr/include/x86_64-linux-gnu/bits/sys_errlist.h" 1 3 4 # 26 "/usr/include/x86_64-linux-gnu/bits/sys_errlist.h" 3 4 extern int sys_nerr; extern const char *const sys_errlist[]; # 782 "/usr/include/stdio.h" 2 3 4 extern int fileno (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)) ; extern int fileno_unlocked (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)) ; # 800 "/usr/include/stdio.h" 3 4 extern FILE *popen (const char *__command, const char *__modes) ; extern int pclose (FILE *__stream); extern char *ctermid (char *__s) __attribute__ ((__nothrow__ , __leaf__)); # 840 "/usr/include/stdio.h" 3 4 extern void flockfile (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)); extern int ftrylockfile (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)) ; extern void funlockfile (FILE *__stream) __attribute__ ((__nothrow__ , __leaf__)); # 858 "/usr/include/stdio.h" 3 4 extern int __uflow (FILE *); extern int __overflow (FILE *, int); # 873 "/usr/include/stdio.h" 3 4 # 20 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" 2 # 21 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" void __DSVERIFIER_assume(_Bool expression){ __CPROVER_assume(expression); } void __DSVERIFIER_assert(_Bool expression){ # 36 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" 3 4 ((void) sizeof (( # 36 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" expression # 36 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 36 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" expression # 36 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" 3 4 ) ; else __assert_fail ( # 36 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" "expression" # 36 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h", 36, __extension__ __PRETTY_FUNCTION__); })) # 36 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" ; } void __DSVERIFIER_assert_msg(_Bool expression, char * msg){ printf("%s", msg); # 41 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" 3 4 ((void) sizeof (( # 41 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" expression # 41 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 41 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" expression # 41 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" 3 4 ) ; else __assert_fail ( # 41 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" "expression" # 41 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h", 41, __extension__ __PRETTY_FUNCTION__); })) # 41 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/compatibility.h" ; } # 22 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/fixed-point.h" 1 # 27 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/fixed-point.h" # 1 "/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h" 1 3 4 # 9 "/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h" 3 4 # 1 "/usr/include/stdint.h" 1 3 4 # 26 "/usr/include/stdint.h" 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/libc-header-start.h" 1 3 4 # 27 "/usr/include/stdint.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/wchar.h" 1 3 4 # 29 "/usr/include/stdint.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/wordsize.h" 1 3 4 # 30 "/usr/include/stdint.h" 2 3 4 # 1 "/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h" 1 3 4 # 24 "/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h" 3 4 # 24 "/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h" 3 4 typedef __uint8_t uint8_t; typedef __uint16_t uint16_t; typedef __uint32_t uint32_t; typedef __uint64_t uint64_t; # 38 "/usr/include/stdint.h" 2 3 4 typedef __int_least8_t int_least8_t; typedef __int_least16_t int_least16_t; typedef __int_least32_t int_least32_t; typedef __int_least64_t int_least64_t; typedef __uint_least8_t uint_least8_t; typedef __uint_least16_t uint_least16_t; typedef __uint_least32_t uint_least32_t; typedef __uint_least64_t uint_least64_t; typedef signed char int_fast8_t; typedef long int int_fast16_t; typedef long int int_fast32_t; typedef long int int_fast64_t; # 71 "/usr/include/stdint.h" 3 4 typedef unsigned char uint_fast8_t; typedef unsigned long int uint_fast16_t; typedef unsigned long int uint_fast32_t; typedef unsigned long int uint_fast64_t; # 87 "/usr/include/stdint.h" 3 4 typedef long int intptr_t; typedef unsigned long int uintptr_t; # 101 "/usr/include/stdint.h" 3 4 typedef __intmax_t intmax_t; typedef __uintmax_t uintmax_t; # 10 "/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h" 2 3 4 # 28 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/fixed-point.h" 2 # 1 "/usr/include/inttypes.h" 1 3 4 # 34 "/usr/include/inttypes.h" 3 4 typedef int __gwchar_t; # 266 "/usr/include/inttypes.h" 3 4 typedef struct { long int quot; long int rem; } imaxdiv_t; # 290 "/usr/include/inttypes.h" 3 4 extern intmax_t imaxabs (intmax_t __n) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern imaxdiv_t imaxdiv (intmax_t __numer, intmax_t __denom) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__const__)); extern intmax_t strtoimax (const char *__restrict __nptr, char **__restrict __endptr, int __base) __attribute__ ((__nothrow__ , __leaf__)); extern uintmax_t strtoumax (const char *__restrict __nptr, char ** __restrict __endptr, int __base) __attribute__ ((__nothrow__ , __leaf__)); extern intmax_t wcstoimax (const __gwchar_t *__restrict __nptr, __gwchar_t **__restrict __endptr, int __base) __attribute__ ((__nothrow__ , __leaf__)); extern uintmax_t wcstoumax (const __gwchar_t *__restrict __nptr, __gwchar_t ** __restrict __endptr, int __base) __attribute__ ((__nothrow__ , __leaf__)); # 432 "/usr/include/inttypes.h" 3 4 # 29 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/fixed-point.h" 2 # 30 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/fixed-point.h" extern implementation impl; typedef int64_t fxp_t; fxp_t _fxp_one; fxp_t _fxp_half; fxp_t _fxp_minus_one; fxp_t _fxp_min; fxp_t _fxp_max; double _dbl_max; double _dbl_min; fxp_t _fxp_fmask; fxp_t _fxp_imask; static const double scale_factor[31] = { 1.0, 2.0, 4.0, 8.0, 16.0, 32.0, 64.0, 128.0, 256.0, 512.0, 1024.0, 2048.0, 4096.0, 8192.0, 16384.0, 32768.0, 65536.0, 131072.0, 262144.0, 524288.0, 1048576.0, 2097152.0, 4194304.0, 8388608.0, 16777216.0, 33554432.0, 67108864.0, 134217728.0, 268435456.0, 536870912.0, 1073741824.0 }; static const double scale_factor_inv[31] = { 1.0, 0.5, 0.25, 0.125, 0.0625, 0.03125, 0.015625, 0.0078125, 0.00390625, 0.001953125, 0.0009765625, 0.00048828125, 0.000244140625, 0.0001220703125, 0.00006103515625, 0.000030517578125, 0.000015258789063, 0.000007629394531, 0.000003814697266, 0.000001907348633, 0.000000953674316, 0.000000476837158, 0.000000238418579, 0.000000119209290, 0.000000059604645, 0.000000029802322, 0.000000014901161, 0.000000007450581, 0.000000003725290, 0.000000001862645, 0.000000000931323 }; static const float rand_uni[10000] = { -0.486240329978498f, -0.0886462298529236f, -0.140307596103306f, 0.301096597450952f, 0.0993171079928659f, 0.971751769763271f, 0.985173975730828f, 0.555993645184930f, 0.582088652691427f, -0.153377496651175f, 0.383610009058905f, -0.335724126391271f, 0.978768141636516f, -0.276250018648572f, 0.390075705739569f, -0.179022404038782f, 0.690083827115783f, -0.872530132490992f, -0.970585763293203f, -0.581476053441704f, -0.532614615674888f, -0.239699306693312f, -0.678183014035494f, 0.349502640932782f, -0.210469890686263f, 0.841262085391842f, -0.473585465151401f, 0.659383565443701f, -0.651160036945754f, -0.961043527561335f, -0.0814927639199137f, 0.621303110569702f, -0.784529166943541f, 0.0238464770757800f, 0.392694728594110f, 0.776848735202001f, 0.0870059709310509f, 0.880563655271790f, 0.883457036977564f, -0.249235082877382f, -0.691040749216870f, 0.578731120064320f, -0.973932858000832f, -0.117699105431720f, -0.723831748151088f, -0.483149657477524f, -0.821277691383664f, -0.459725618100875f, 0.148175952221864f, 0.444306875534854f, -0.325610376336498f, 0.544142311404910f, -0.165319440455435f, 0.136706800705517f, 0.543312481350682f, 0.467210959764607f, -0.349266618228534f, -0.660110730565862f, 0.910332331495431f, 0.961049802789367f, -0.786168905164629f, 0.305648402726554f, 0.510815258508885f, 0.0950733260984060f, 0.173750645487898f, 0.144488668408672f, 0.0190031984466126f, -0.299194577636724f, 0.302411647442273f, -0.730462524226212f, 0.688646006554796f, 0.134948379722118f, 0.533716723458894f, -0.00226300779660438f, -0.561340777806718f, 0.450396313744017f, -0.569445876566955f, 0.954155246557698f, -0.255403882430676f, -0.759820984120828f, -0.855279790307514f, -0.147352581758156f, -0.302269055643746f, -0.642038024364086f, -0.367405981107491f, 0.491844011712164f, -0.542191710121194f, -0.938294043323732f, 0.683979894338020f, 0.294728290855287f, 0.00662691839443919f, -0.931040350582855f, 0.152356209974418f, 0.678620860551457f, -0.534989269238408f, 0.932096367913226f, -0.0361062818028513f, -0.847189697149530f, -0.975903030160255f, 0.623293205784014f, -0.661289688031659f, 0.724486055119603f, 0.307504095172835f, 0.00739266163731767f, -0.393681596442097f, 0.0313739422974388f, 0.0768157689673350f, -0.652063346886817f, 0.864188030044388f, -0.588932092781034f, 0.496015896758580f, -0.872858269231211f, 0.978780599551039f, -0.504887732991147f, -0.462378791937628f, 0.0141726829338038f, 0.769610007653591f, 0.945233033188923f, -0.782235375325016f, -0.832206533738799f, 0.745634368088673f, -0.696969510157151f, -0.0674631869948374f, -0.123186450806584f, -0.359158959141949f, -0.393882649464391f, 0.441371446689899f, -0.829394270569736f, -0.301502651277431f, -0.996215501187289f, 0.934634037393066f, -0.282431114746289f, -0.927550795619590f, -0.437037530043415f, -0.360426812995980f, 0.949549724575862f, 0.502784616197919f, 0.800771681422909f, -0.511398929004089f, 0.309288504642554f, -0.207261227890933f, 0.930587995125773f, -0.777029876696670f, -0.489329175755640f, -0.134595132329858f, 0.285771358983518f, 0.182331373854387f, -0.544110494560697f, 0.278439882883985f, -0.556325158102182f, 0.579043806545889f, 0.134648133801916f, 0.602850725479294f, -0.151663563868883f, 0.180694361855878f, -0.651591295315595f, 0.281129147768056f, -0.580047306475484f, 0.687883075491433f, 0.279398670804288f, -0.853428128249503f, -0.532609367372680f, -0.821156786377917f, -0.181273229058573f, -0.983898569846882f, -0.0964374318311501f, 0.880923372124250f, 0.102643371392389f, 0.893615387135596f, -0.259276649383649f, 0.699287743639363f, 0.402940604635828f, -0.110721596226581f, 0.0846246472582877f, 0.820733021865405f, 0.795578903285308f, -0.495144122011537f, 0.273150029257472f, -0.268249949701437f, 0.231982193341980f, 0.694211299124074f, 0.859950868718233f, 0.959483382623794f, -0.422972626833543f, -0.109621798738360f, 0.433094703426531f, 0.694025903378851f, 0.374478987547435f, -0.293668545105608f, -0.396213864190828f, -0.0632095887099047f, -0.0285139536748673f, 0.831794132192390f, -0.548543088139238f, 0.791869201724680f, 0.325211484201845f, 0.155274810721772f, -0.112383643064821f, -0.674403070297721f, 0.642801068229810f, -0.615712048835242f, -0.322576771285566f, -0.409336818836595f, 0.548069973193770f, -0.386353709407947f, -0.0741664985357784f, 0.619639599324983f, -0.815703814931314f, 0.965550307223862f, 0.623407852683828f, -0.789634372832984f, 0.736750050047572f, -0.0269443926793700f, 0.00545706093721488f, -0.315712479832091f, -0.890110021644720f, -0.869390443173846f, -0.381538869981866f, -0.109498998005949f, 0.131433952330613f, -0.233452413139316f, 0.660289822785465f, 0.543381186340023f, -0.384712418750451f, -0.913477554164890f, 0.767102957655267f, -0.115129944521936f, -0.741161985822647f, -0.0604180020782450f, -0.819131535144059f, -0.409539679760029f, 0.574419252943637f, -0.0440704617157433f, 0.933173744590532f, 0.261360623390448f, -0.880290575543046f, 0.329806293425492f, 0.548915621667952f, 0.635187167795234f, -0.611034070318967f, 0.458196727901944f, 0.397377226781023f, 0.711941361933987f, 0.782147744383368f, -0.00300685339552631f, 0.384687233450957f, 0.810102466029521f, 0.452919847968424f, -0.183164257016897f, -0.755603185485427f, -0.604334477365858f, -0.786222413488860f, -0.434887500763099f, -0.678845635625581f, -0.381200370488331f, -0.582350534916068f, -0.0444427346996734f, 0.116237247526397f, -0.364680921206275f, -0.829395404347498f, -0.258574590032613f, -0.910082114298859f, 0.501356900925997f, 0.0295361922006900f, -0.471786618165219f, 0.536352925101547f, -0.316120662284464f, -0.168902841718737f, 0.970850119987976f, -0.813818666854395f, -0.0861183123848732f, 0.866784827877161f, 0.535966478165739f, -0.806958669103425f, -0.627307415616045f, -0.686618354673079f, 0.0239165685193152f, 0.525427699287402f, 0.834079334357391f, -0.527333932295852f, 0.130970034225907f, -0.790218350377199f, 0.399338640441987f, 0.133591886379939f, -0.181354311053254f, 0.420121912637914f, -0.625002202728601f, -0.293296669160307f, 0.0113819513424340f, -0.882382002895096f, -0.883750159690028f, 0.441583656876336f, -0.439054135454480f, 0.873049498123622f, 0.660844523562817f, 0.0104240153103699f, 0.611420248331623f, -0.235926309432748f, 0.207317724918460f, 0.884691834560657f, 0.128302402592277f, -0.283754448219060f, 0.237649901255856f, 0.610200763264703f, -0.625035441247926f, -0.964609592118695f, -0.323146562743113f, 0.961529402270719f, -0.793576233735450f, -0.843916713821003f, 0.314105102728384f, -0.204535560653294f, 0.753318789613803f, 0.160678386635821f, -0.647065919861379f, -0.202789866826280f, 0.648108234268198f, -0.261292621025902f, 0.156681828732770f, 0.405377351820066f, 0.228465381497500f, 0.972348516671163f, 0.288346037401522f, -0.0799068604307178f, 0.916939290109587f, -0.279220972402209f, -0.203447523864279f, -0.533640046855273f, 0.543561961674653f, 0.880711097286889f, -0.549683064687774f, 0.0130107219236368f, -0.554838164576024f, -0.379442406201385f, -0.00500104610043062f, 0.409530122826868f, -0.580423080726061f, 0.824555731914455f, -0.254134502966922f, 0.655609706875230f, 0.629093866184236f, -0.690033250889974f, -0.652346551677826f, 0.169820593515952f, 0.922459552232043f, 0.351812083539940f, 0.876342426613034f, -0.513486005850680f, -0.626382302780497f, -0.734690688861027f, 0.245594886018314f, -0.875740935105191f, -0.388580462918006f, 0.0127041754106421f, -0.0330962560066819f, -0.425003146474193f, 0.0281641353527495f, 0.261441358666622f, 0.949781327102773f, 0.919646340564270f, 0.504503377003781f, 0.0817071051871894f, 0.319968570729658f, 0.229065413577318f, -0.0512608414259468f, -0.0740848540944785f, -0.0974457038582892f, 0.532775710298005f, -0.492913317622840f, 0.492871078783642f, -0.289562388384881f, 0.229149968879593f, 0.697586903105899f, 0.900855243684925f, 0.969700445892771f, -0.618162745501349f, -0.533241431614228f, -0.937955908995453f, 0.886669636523452f, 0.498748076602594f, 0.974106016180519f, -0.199411214757595f, 0.725270392729083f, -0.0279932700005097f, -0.889385821767448f, -0.452211028905500f, -0.487216271217731f, -0.577105004471439f, 0.777405674160298f, 0.390121144627092f, -0.595062864225581f, -0.844712795815575f, -0.894819796738658f, 0.0556635002662202f, 0.200767245646242f, 0.481227096067452f, -0.0854169009474664f, 0.524532943920022f, -0.880292014538901f, -0.127923833629789f, -0.929275628802356f, 0.233276357260949f, -0.776272194935070f, 0.953325886548014f, -0.884399921036004f, -0.504227548828417f, -0.546526107689276f, 0.852622421886067f, 0.947722695551154f, -0.668635552599119f, 0.768739709906834f, 0.830755876586102f, -0.720579994994166f, 0.761613532216491f, 0.340510345777526f, 0.335046764810816f, 0.490102926886310f, -0.568989013749608f, -0.296018470377601f, 0.979838924243657f, 0.624231653632879f, 0.553904401851075f, -0.355359451941014f, 0.267623165480721f, 0.985914275634075f, -0.741887849211797f, 0.560479100333108f, -0.602590162007993f, -0.874870765077352f, -0.0306218773384892f, 0.963145768131215f, 0.544824028787036f, -0.133990816021791f, 0.0679964588712787f, -0.156401335214901f, -0.0802554171832672f, 0.856386218492912f, 0.143013580527942f, 0.403921859374840f, -0.179029058044097f, 0.770723540077919f, -0.183650969350452f, -0.340718434629824f, 0.217166124261387f, -0.171159949445977f, 0.127493767348173f, -0.649649349141405f, -0.0986978180993434f, 0.301786606637125f, 0.942172200207855f, 0.0323236270151113f, -0.579853744301016f, -0.964413060851558f, 0.917535782777861f, 0.442144649483292f, -0.684960854610878f, -0.418908715566712f, 0.617844265088789f, 0.897145578082386f, 0.235463167636481f, 0.0166312355859484f, 0.948331447443040f, -0.961085640409103f, -0.0386086809179784f, -0.949138997977665f, 0.738211385880427f, 0.613757309091864f, -0.606937832993426f, 0.825253298062192f, 0.932609757667859f, -0.169023247637751f, -0.411237965787391f, 0.550590803600950f, -0.0561729280137304f, -0.559663108323671f, -0.718592671237337f, 0.885889621415361f, -0.364207826334344f, -0.839614660327507f, 0.265502694339344f, 0.394329270534417f, -0.270184577808578f, -0.865353487778069f, -0.528848754655393f, -0.179961524561963f, 0.571721065613544f, -0.774363220756696f, 0.251123315200792f, -0.217722762975159f, 0.0901359910328954f, -0.329445470667965f, 0.366410356722994f, -0.777512662632715f, 0.654844363477267f, -0.882409911562713f, -0.613612530795153f, -0.926517759636550f, 0.111572665207194f, 0.0729846382226607f, 0.789912813274098, 0.784452109264882f, -0.949766989295825f, 0.318378232675431f, 0.732077593075111f, 0.786829143208386f, -0.134682559823644f, 0.733164743374965f, 0.978410877665941f, 0.992008491438409f, -0.319064303035495f, 0.958430683602029f, 0.514518212363212f, 0.101876224417090f, 0.642655735778237f, -0.170746516901312f, 0.252352078365623f, -0.761327278132210f, 0.724119717129199f, 0.889374997869224f, -0.785987369200692f, -0.594670344572584f, 0.805192297495935f, -0.990523259595814f, 0.483998949026664f, 0.747350619254878f, -0.824845161088780f, 0.543009506581798f, -0.208778528683094f, -0.314149951901368f, 0.943576771177672f, -0.102633559170861f, -0.947663019606703f, -0.557033071578968f, 0.419150797499848f, 0.251214274356296f, 0.565717763755325f, 0.126676667925064f, -0.0213369479214840f, 0.342212953426240f, -0.288015274572288f, 0.121313363277304f, 0.452832374494206f, 0.545420403121955f, -0.616024063400938f, -0.0320352392995826f, -0.400581850938279f, 0.0642433474653812f, -0.673966224453150f, 0.951962939602010f, -0.241906012952983f, 0.0322060960995099f, -0.449185553826233f, -0.709575766146540f, 0.0283340814242898f, 0.234237103593580f, -0.285526615094797f, -0.793192668153991f, -0.437130485497140f, -0.956132143306919f, 0.601158367473616f, 0.238689691528783f, 0.173709925321432f, 0.437983847738997f, 0.397380645202102f, 0.432093344086237f, -0.0338869881121104f, -0.966303269542493f, 0.875351570183604f, -0.0584554089652962f, 0.294207497692552f, 0.200323088145182f, 0.826642387259759f, 0.284806025494260f, -0.00660991970522007f, 0.682493772727303f, -0.151980775670668f, 0.0470705546940635f, -0.236378427235531f, -0.844780853112247f, 0.134166207564174f, -0.586842667384924f, 0.0711866699414370f, 0.311698821368897f, -0.361229767252053f, 0.750924311039976f, 0.0764323989785694f, 0.898463708247144f, 0.398232179543916f, -0.515644913011399f, -0.189067061520362f, -0.567430593060929f, -0.641924269747436f, -0.0960378699625619f, -0.792054031692334f, 0.803891878854351f, -0.233518627249889f, -0.892523453249154f, 0.707550017996875f, -0.782288435525895f, -0.156166443894764f, -0.543737876329167f, 0.565637809380957f, -0.757689989749326f, -0.612543942167974f, -0.766327195073259f, 0.587626843767440f, -0.280769385897397f, -0.457487372245825f, 0.0862799426622438f, -0.616867284053547f, 0.121778903484808f, -0.451988651573766f, -0.618146087265495f, -0.285868777534354f, 0.108999472244014f, -0.620755183347358f, -0.268563184810196f, -0.721678169615489f, -0.146060198874409f, -0.661506858070617f, 0.901707853998409f, 0.222488776533930f, 0.679599685031679f, 0.974760448601209f, 0.535485953830496f, -0.562345697123585f, 0.369219363331071f, -0.0282801684694869f, -0.0734880727832297f, 0.733216287314358f, -0.514352095765627f, -0.850813063545195f, 0.642458447327163f, 0.118661521915783f, -0.907015526838341f, 0.789277766886329f, -0.719864125961721f, 0.274329068829509f, 0.830124687647056f, 0.719352367261587f, -0.821767317737384f, -0.840153496829227f, 0.650796781936517f, 0.381065387870166f, 0.341870564586224f, -0.00174423702285131f, -0.216348832349188f, 0.678010477635713f, -0.748695103596683f, -0.819659325555269f, 0.620922373008647f, 0.471659250504894f, 0.417848292160984f, -0.990577315445198f, -0.509842007818877f, 0.705761459091187f, 0.723072116074702f, -0.606476484252158f, -0.871593699865195f, -0.662059658667501f, -0.207267692377271f, -0.274706370444270f, 0.317047325063391f, 0.329780707114887f, -0.966325651181920f, -0.666131009799803f, 0.118609206658210f, 0.232960448350140f, -0.139134616436389f, -0.936412642687343f, -0.554985387484625f, -0.609914445911143f, -0.371023087262482f, -0.461044793696911f, 0.0277553171809701f, -0.241589304772568f, -0.990769995548029f, 0.114245771600061f, -0.924483328431436f, 0.237901450206836f, -0.615461633242452f, 0.201497106528945f, -0.599898812620374f, 0.982389910778332f, 0.125701388874024f, -0.892749115498369f, 0.513592673006880f, 0.229316745749793f, 0.422997355912517f, 0.150920221978738f, 0.447743452078441f, 0.366767059168664f, -0.605741985891581f, 0.274905013892524f, -0.861378867171578f, -0.731508622159258f, 0.171187057183023f, 0.250833501952177f, -0.609814068526718f, -0.639397597618127f, -0.712497631420166f, -0.539831932321101f, -0.962361328901384f, 0.799060001548069f, 0.618582550608426f, -0.603865594092701f, -0.750840334759883f, -0.432368099184739f, -0.581021252111797f, 0.134711953024238f, 0.331863889421602f, -0.172907726656169f, -0.435358718118896f, -0.689326993725649f, 0.415840315809038f, -0.333576262820904f, 0.279343777676723f, -0.0393098862927832f, 0.00852090010085194f, -0.853705195692250f, 0.526006696633762f, -0.478653377052437f, -0.584840261391485f, 0.679261003071696f, 0.0367484618219474f, -0.616340335633997f, -0.912843423145420f, -0.221248732289686f, -0.477921890680232f, -0.127369625511666f, 0.865190146410824f, 0.817916456258544f, 0.445973590438029f, -0.621435280140991f, -0.584264056171687f, 0.718712277931876f, -0.337835985469843f, 0.00569064504159345f, -0.546546294846311f, 0.101653624648361f, -0.795498735829364f, -0.249043531299132f, -0.112839395737321f, -0.350305425122331f, -0.910866368205041f, 0.345503177966105f, -0.549306515692918f, 0.711774722622726f, 0.283368922297518f, 0.0401988801224620f, 0.269228967910704f, 0.408165826013612f, -0.306571373865680f, 0.937429053394878f, 0.992154362395068f, 0.679431847774404f, 0.660561953302554f, 0.903254489326130f, -0.939312119455540f, -0.211194531611303f, 0.401554296146757f, -0.0373187111351370f, -0.209143098987164f, -0.483955198209448f, -0.860858509666882f, 0.847006442151417f, 0.287950263267018f, 0.408253171937961f, -0.720812569529331f, 0.623305171273525f, 0.543495760078790f, -0.364025150023839f, -0.893335585394842f, -0.757545415624741f, -0.525417020183382f, -0.985814550271000f, -0.571551008375522f, 0.930716377819686f, -0.272863385293023f, 0.982334910750391f, 0.297868844366342f, 0.922428080219044f, 0.917194773824871f, 0.846964493212884f, 0.0641834146212110f, 0.279768184306094f, 0.591959126556958f, 0.355630573995206f, 0.839818707895839f, 0.219674727597944f, -0.174518904670883f, 0.708669864813752f, -0.224562931791369f, 0.677232454840133f, -0.904826802486527f, -0.627559033402838f, 0.263680517444611f, 0.121902314059156f, -0.704881790282995f, 0.242825089229032f, -0.309373554231866f, -0.479824461459095f, -0.720536286348018f, -0.460418173937526f, 0.774174710513849f, 0.452001499049874f, -0.316992092650694f, 0.153064869645527f, -0.209558599627989f, 0.685508351648252f, -0.508615450383790f, 0.598109567185095f, 0.391177475074196f, 0.964444988755186f, 0.336277292954506f, -0.0367817159101076f, -0.668752640081528f, 0.169621732437504f, -0.440925495294537f, 0.352359477392856f, 0.300517139597811f, 0.464188724292127f, 0.342732840629593f, -0.772028689116952f, 0.523987886508557f, 0.920723209445309f, 0.325634245623597f, 0.999728757965472f, -0.108202444213629f, -0.703463061246440f, -0.764321104361266f, 0.153478091277821f, 0.400776808520781f, 0.0362608595686520f, 0.602660289034871f, -0.00396673312072204f, 0.296881393918662f, 0.563978362789779f, 0.849699999703012f, 0.699481370949461f, -0.517318771826836f, 0.488696839410786f, -0.863267084031406f, 0.0353144039838211f, 0.346060763700543f, 0.964270355001567f, 0.354899825242107f, 0.806313705199543f, 0.675286452110240f, 0.0873918818789949f, -0.595319879813140f, 0.768247284622921f, 0.424433552458434f, -0.308023836359512f, 0.802163480612923f, -0.348151008192881f, -0.889061130591849f, -0.593277042719599f, -0.669426232128590f, 0.758542808803890f, 0.515943031751579f, -0.359688459650311f, 0.568175936707751f, 0.741304023515212f, 0.260283681057109f, 0.957668849401749f, -0.665096753421305f, 0.769229664798946f, -0.0871019488695104f, -0.362662093346394f, -0.411439775739547f, 0.700347493632751f, 0.593221225653487f, 0.712841887456470f, 0.413663813878195f, -0.868002281057698f, -0.704419248587642f, 0.497097875881516f, -0.00234623694758684f, 0.690202361192435f, -0.850266199595343f, 0.315244026446767f, 0.709124123964306f, 0.438047076925768f, 0.798239617424585f, 0.330853072912708f, 0.581059745965701f, 0.449755612947191f, -0.462738032798907f, 0.607731925865227f, 0.0898348455002427f, -0.762827831849901f, 0.895598896497952f, -0.752254194382105f, -0.0916186048978613f, -0.906243795607547f, 0.229263971313788f, 0.401148319671400f, -0.699999035942240f, 0.949897297168705f, 0.442965954562621f, -0.836602533575693f, 0.960460356865877f, -0.588638958628591f, -0.826876652501322f, 0.358883606332526f, 0.963216314331105f, -0.932992215875777f, -0.790078242370583f, 0.402080896170037f, -0.0768348888017805f, 0.728030138891631f, -0.259252300581205f, -0.239039520569651f, -0.0343187629251645f, -0.500656851699075f, 0.213230170834557f, -0.806162554023268f, -0.346741158269134f, 0.593197383681288f, -0.874207905790597f, 0.396896283395687f, -0.899758892162590f, 0.645625478431829f, 0.724064646901595f, 0.505831437483414f, -0.592809028527107f, 0.191058921738261f, 0.329699861086760f, 0.637747614705911f, 0.228492417185859f, 0.350565075483143f, 0.495645634191973f, 0.0378873636406241f, -0.558682871042752f, -0.0463515226573312f, -0.699882077624744f, -0.727701564368345f, -0.185876979038391f, 0.969357227041006f, -0.0396554302826258f, 0.994123321254905f, -0.103700411263859f, -0.122414150286554f, -0.952967253268750f, -0.310113557790019f, 0.389885130024049f, 0.698109781822753f, -0.566884614177461f, -0.807731715569885f, 0.295459359747620f, 0.353911434620388f, -0.0365360121873806f, -0.433710246410727f, -0.112374658849445f, -0.710362620548396f, -0.750188568899340f, -0.421921409270312f, -0.0946825033112555f, -0.207114343395422f, -0.712346704375406f, -0.762905208265238f, 0.668705185793373f, 0.874811836887758f, 0.734155331047614f, 0.0717699959166771f, -0.649642655211151f, 0.710177200600726f, -0.790892796708330f, -0.609051316139055f, 0.158155751049403f, 0.273837117392194f, 0.101461674737037f, -0.341978434311156f, 0.358741707078855f, 0.415990974906378f, 0.760270133083538f, 0.164383469371383f, 0.559847879549422f, 0.209104118141764f, -0.265721227148806f, 0.165407943936551f, 0.611035396421350f, -0.626230501208063f, -0.116714293310250f, -0.696697517286888f, 0.0545261414014888f, 0.440139257477096f, 0.202311640602444f, -0.369311356303593f, 0.901884565342531f, 0.256026357399272f, -0.673699547202088f, 0.108550667621349f, -0.961092940829968f, -0.254802826645023f, 0.553897912330318f, 0.110751075533042f, -0.587445414043347f, 0.786722059164009, 0.182042556749386f, 0.398835909383655f, 0.431324012457533f, 0.587021142157922f, -0.644072183989352f, 0.187430090296218f, 0.516741122998546f, -0.275250933267487f, -0.933673413249875f, -0.767709448823879f, 0.00345814033609182f, -0.585884382069128f, 0.463549040471035f, 0.666537178805293f, -0.393605927315148f, -0.260156573858491f, -0.298799291489529f, -0.246398415746503f, 0.970774181159203f, -0.485708631308223f, -0.456571313115555f, -0.264210030877189f, -0.442583504871362f, 0.0585567697312368f, 0.955769232723545f, 0.651822742221258f, 0.667605490119116f, -0.178564750516287f, 0.744464599638885f, -0.0962758978504710f, -0.538627454923738f, -0.844634654117462f, 0.109151162611125f, -0.862255427201396f, -0.478955305843323f, 0.645965860697344f, 0.345569271369828f, 0.930605011671297f, -0.195523686135506f, 0.927940875293964f, 0.0529927450986318f, -0.537243314646225f, 0.0815400161801159f, -0.528889663721737f, -0.0803965087898244f, 0.722188412643543f, -0.115173100460772f, 0.391581967064874f, 0.609102624309301f, -0.726409099849031f, -0.924071529212721f, -0.424370859730340f, -0.932399086010354f, -0.679903916227243f, 0.398593637781810f, -0.395942610474455f, 0.911017267923838f, 0.830660098751580f, 0.485689056693942f, -0.634874052918746f, 0.558342102044082f, 0.153345477027740f, -0.418797532948752f, -0.962412446404476f, 0.499334884055701f, 0.772755578982235f, 0.486905718186221f, -0.680415982465391f, -0.983589696155766f, 0.0802707365440833f, -0.108186099494932f, 0.272227706025405f, 0.651170828846750f, -0.804713753056757f, 0.778076504684911f, 0.869094633196957f, -0.213764089899489f, -0.289485853647921f, -0.248376169846176f, -0.273907386272412f, -0.272735585352615f, -0.851779302143109f, 0.777935500545070f, 0.610526499062369f, -0.825926925832998f, -0.00122853287679647f, -0.250920102747366f, -0.0333860483260329f, 0.562878228390427f, 0.685359102189134f, 0.909722844787783f, -0.686791591637469f, 0.700018932525581f, -0.975597558640926f, 0.111273045778084f, 0.0313167229308478f, -0.185767397251192f, -0.587922465203314f, -0.569364866257444f, -0.433710470415537f, 0.744709870476354f, 0.812284989338678f, -0.835936210940005f, 0.409175739115410f, 0.364745324015946f, -0.526496413512530f, -0.0949041293633228f, -0.710914623019602f, -0.199035360261516f, 0.249903358254580f, 0.799197892184193f, -0.974131439735146f, -0.962913228246770f, -0.0584067290846062f, 0.0678080882131218f, 0.619989552612058f, 0.600692636138022f, -0.325324145536173f, 0.00758797937831957f, -0.133193608214778f, -0.312408219890363f, -0.0752971209304969f, 0.764751638735404f, 0.207290375565515f, -0.965680055629168f, 0.526346325957267f, 0.365879948128040f, -0.899713698342006f, 0.300806506284083f, 0.282047017067903f, -0.464418831301796f, -0.793644005532544f, -0.338781149582286f, 0.627059412508279f, -0.624056896643864f, -0.503708045945915f, 0.339203903916317f, -0.920899287490514f, -0.753331218450680f, -0.561190137775443f, 0.216431106588929f, -0.191601189620092f, 0.613179188721972f, 0.121381145781083f, -0.477139741951367f, 0.606347924649253f, 0.972409497819530f, 0.00419185232258634f, 0.786976564006247f, 0.716984027373809f, -0.577296880358192f, 0.336508364109364f, -0.837637061538727f, -0.706860533591818f, 0.655351330285695f, -0.799458036429467f, 0.804951754011505f, 0.405471126911303f, 0.485125485165526f, 0.0354103156047567f, 0.774748847269929f, 0.396581375869036f, 0.420464745452802f, -0.544531741676535f, -0.779088258182329f, -0.129534599431145f, 0.228882319223921f, 0.669504936432777f, -0.158954596495398f, -0.171927546721685f, 0.675107968066445f, -0.201470217862098f, -0.185894687796509f, 0.244174688826684f, 0.310288210346694f, -0.0674603586289346f, 0.138103839181198f, 0.269292861340219f, 0.121469813317732f, 0.168629748875041f, 0.581112629873687f, 0.499508530746584f, -0.741772433024897f, -0.311060071316150f, -0.263697352439521f, 0.180487383518774f, -0.800786488742242f, -0.949903966987338f, 0.134975524166410f, 0.213364683193138f, -0.684441197699222f, -0.254697287796379f, -0.260521050814253f, -0.757605554637199f, -0.134324873215927f, -0.699675596579060f, 0.136000646890289f, 0.355272520354523f, -0.712620797948690f, -0.729995036352282f, 0.323100037780915f, -0.718364487938777f, 0.807709622188084f, 0.289336059472722f, -0.558738026311145f, -0.591811756545896f, -0.894952978489225f, -0.354996929975694f, -0.142213103464027f, -0.651950180085633f, 0.182694586161578f, -0.193492058009904f, -0.540079537334588f, -0.300927433533712f, 0.119585035086049f, 0.895807833710939f, -0.413843745301811f, -0.209041322713332f, 0.808094803654324f, 0.0792829008489782f, 0.314806980452270f, 0.502591873175427f, -0.0474189387090473f, -0.407131047818007f, 0.797117088440354f, 0.902395237588928f, -0.783327055804990f, -0.591709085168646f, 0.628191184754911f, -0.454649879692076f, -0.588819444306752f, 0.250889716959370f, -0.582306627010669f, -0.145495766591841f, -0.634137346823528f, 0.667934845545285f, 0.873756470938530f, 0.425969845715827f, -0.779543910541245f, -0.265210219994391f, 0.781530681845886f, 0.304461599274577f, 0.211087853085430f, 0.281022407596766f, 0.0701313665097776f, 0.342337400087349f, -0.0618264046031387f, 0.177147380816613f, 0.751693209867024f, -0.279073264607508f, 0.740459307255654f, -0.352163564204507f, -0.726238685136937f, -0.565819729501492f, -0.779416133306559f, -0.783925450697670f, 0.542612245021260f, -0.810510148278478f, -0.693707081804938f, 0.918862988543900f, -0.368717045271828f, 0.0654919784331340f, -0.438514219239944f, -0.923935138084824f, 0.913316783811291f, -0.961646539574340f, 0.734888382653474f, -0.464102713631586f, -0.896154678819649f, 0.349856565392685f, 0.646610836502422f, -0.104378701809970f, 0.347319102015858f, -0.263947819351090f, 0.343722186197186f, 0.825747554146473f, 0.0661865525544676f, 0.918864908112419f, -0.999160312662909f, -0.904953244747070f, 0.246613032125664f, 0.123426960800262f, -0.294364203503845f, -0.150056966431615f, 0.904179479721301f, 0.517721252782648f, 0.661473373608678f, -0.784276966825964f, -0.984631287069650f, 0.239695484607744f, -0.499150590123099f, 0.00153518224500027f, -0.817955534401114f, 0.221240310713583f, 0.114442325207070f, -0.717650856748245f, -0.722902799253535f, -0.962998380704103f, 0.214092155997873f, -0.226370691123970f, 0.536806140446569f, 0.111745807092858f, 0.657580594136395f, -0.239950592200226f, 0.0981270621736083f, -0.173398466414235f, 0.414811672195735f, 0.147604904291238f, -0.649219724907210f, 0.907797399703411f, -0.496097071857490f, -0.0958082520749422f, -0.700618145301611f, 0.238049932994406f, 0.946616020659334f, 0.143538494511824f, 0.0641076718667677f, 0.377873848622552f, -0.413854028741624f, -0.838831021130186f, 0.0208044297354626f, 0.476712667979210f, 0.850908020233298f, 0.0692454021020814f, 0.841788714865238f, -0.251777041865926f, 0.512215668857165f, 0.827988589806208f, -0.399200428030715f, 0.999219950547600f, -0.00465542086542259f, 0.279790771964531f, -0.683125623289052f, 0.988128867315143f, 0.00697090775456410f, -0.409501680375786f, -0.190812202162744f, -0.154565639467601f, 0.305734586628079f, -0.922825484202279f, -0.0622811516391562f, -0.502492855870975f, 0.358550513844403f, 0.678271216185703f, -0.940222215291861f, 0.568581934651071f, 0.953835466578938f, -0.476569789986603f, 0.0141049472573418f, 0.722262461730185f, -0.128913572076972f, -0.583948340870808f, -0.254358587904773f, -0.390569309413304f, -0.0495119137883056f, -0.486356443935695f, -0.112768011009410f, -0.608763417511343f, -0.145843822867367f, 0.767829603838659f, 0.791239479733126f, 0.0208376062066382f, -0.524291005204912f, -0.200159553848628f, -0.835647719235620f, -0.222774380961612f, 0.0617292533934060f, 0.233433696650208f, -0.543969878951657f, -0.628168009147650f, -0.725602523060817f, -0.273904472034828f, 0.320527317085229f, -0.556961185821848f, 0.261533413201255f, 0.696617398495973f, 0.200506775746016f, -0.395581923906907f, 0.0196423782530712f, -0.0552577396777472f, -0.594078139517501f, -0.816132673139052f, -0.898431571909616f, 0.879105843430143f, 0.949666380003024f, -0.245578843355682f, 0.528960018663897f, 0.201586039072583f, -0.651684706542954f, 0.596063456431086f, -0.659712784781056f, -0.213702651629353f, -0.629790163054887f, -0.0572029778771013f, 0.645291034768991f, -0.453266855343461f, -0.581253959024410f, 0.632682730071992f, 0.991406037765467f, 0.701390336150136f, -0.879037255220971f, -0.304180069776406f, 0.0969095808767941f, -0.465682778651712f, 0.815108046274786f, -0.532850846043973f, 0.950550134670033f, 0.296008118726089f, -0.198390447541329f, 0.159049143352201f, 0.105169964332594f, -0.482506131358523f, 0.493753482281684f, 0.292058685647414f, 0.283730532860951f, 0.00323819209092657f, 0.765838273699203f, -0.0753176377562099f, -0.679824808630431f, 0.548180003463159f, -0.996048798712591f, 0.782768288046545f, 0.396509190560532f, 0.848686742379558f, 0.750049741585178f, 0.730186188655936f, -0.0220701180542726f, -0.487618042364281f, -0.403562199756249f, -0.0693129490117646f, 0.947019452953246f, -0.731947366410442f, 0.198175872470120f, -0.329413252854837f, -0.641319161749268f, 0.186271826190842f, -0.0739989831663739f, -0.334046268448298f, -0.191676071751509f, -0.632573515889708f, -0.999115061914042f, -0.677989795015932f, 0.289828136337821f, 0.696081747094487f, 0.965765319961706f, -0.203649463803737f, -0.195384468978610f, 0.746979659338745f, 0.701651229142588f, -0.498361303522421f, 0.289120104962302f, 0.270493509228559f, -0.132329670835432f, 0.385545665843914f, -0.265371843427444f, 0.306155119003788f, -0.859790373316264f, -0.0198057838521546f, 0.233572324299025f, 0.426354273793125f, -0.510901479579029f, -0.600001464460011f, -0.972316846268671f, 0.531678082677910f, -0.0543913028234813f, -0.860333915321655f, 0.0717414549918496f, -0.992726205437930f, 0.587189647572868f, -0.710120198811545f, -0.712433353767817f, 0.000905613890617163f, 0.323638959833707f, -0.148002344942812f, 0.422217478090035f, -0.512122539396176f, -0.652032513920892f, -0.0749826795945674f, 0.689725543651565f, 0.00708142459169103f, 0.612282380092436f, -0.182868915402510f, -0.478704046524703f, 0.630078231167476f, -0.201694106935605f, 0.471080354222778f, 0.705764111397718f, 0.504296612895499f, -0.245442802115836f, -0.0255433216413170f, 0.244606720514349f, -0.620852691611321f, 0.130333792055452f, -0.0404066268217753f, 0.533698497858480f, 0.569324696850915f, -0.0208385747745345f, -0.344454279574176f, 0.697793551353488f, 0.223740789443046, 0.0819835387259940f, -0.378565059057637f, 0.265230570199009f, -0.654654047270763f, -0.959845479426107f, -0.524706200047066f, -0.320773238900823f, 0.133125806793072f, 0.204919719422386f, 0.781296208272529f, 0.357447172843949f, -0.295741363322007f, -0.531151992759176f, -0.928760461863525f, -0.492737999698919f, 0.185299312597934f, 0.0308933157463984f, 0.0940868629278078f, -0.223134180713975f, -0.728994909644464f, 0.748645378716214f, 0.602424843862873f, 0.939628558971957f, -0.601577015562304f, -0.178714119359324f, 0.812720866753088f, -0.864296642561293f, 0.448439532249340f, 0.423570043689909f, 0.883922405988390f, -0.121889129001415f, -0.0435604321758833f, -0.823641147317994f, -0.775345608718704f, -0.621149628042832f, 0.532395431283659f, -0.803045105215129f, 0.897460124955135f, 0.432615281777583f, -0.0245386640589920f, -0.822321626075771f, -0.992080038736755f, -0.829220327319793f, 0.125841786813822f, 0.277412627470833f, 0.623989234604340f, -0.207977347981346f, -0.666564975567417f, 0.419758053880881f, -0.146809205344117f, 0.702495819380827f, 0.802212477505035f, 0.161529115911938f, 0.987832568197053f, -0.885776673164970f, -0.608518024629661f, -0.126430573784758f, 0.168260422890915f, -0.517060428948049f, -0.766296586196077f, -0.827624510690858f, -0.149091785188351f, -0.643782325842734f, 0.768634567718711f, 0.815278279059715f, -0.648037361329720f, -0.480742843535214f, 0.983809287193308f, -0.701958358623791f, 0.0797427982273327f, 0.903943825454071f, 0.980486658260621f, 0.207436790541324f, -0.536781321571165f, -0.885473392956838f, -0.626744905152131f, 0.279917970592554f, -0.489532633799085f, 0.402084958261836f, -0.566738134593205f, -0.0990017532286025f, 0.458891753618823f, 0.893734110503312f, 0.541822126435773f, -0.856210577956263f, -0.0354679151809227f, -0.868531503535520f, 0.150589222911699f, 0.611651396802303f, 0.524911319413221f, 0.555472734209632f, -0.723626819813614f, -0.162106613127807f, 0.602405197560299f, 0.903198408993777f, 0.329150411562290f, -0.806468536757339f, -0.671787125844359f, -0.707262852044556f, 0.474934689940169f, -0.379636706541612f, 0.404933387269815f, 0.332303761521238f, 0.394233678536033f, -0.0366067593524413f, 0.904405677123363f, -0.356597686978725f, -0.623034135107067f, 0.572040316921149f, 0.799160684670195f, -0.507817199545094f, -0.533380730448667f, -0.884507921224020f, -0.00424735629746076f, 0.647537115339283f, 0.456309536956504f, -0.766102127867730f, -0.625121831714406f, 0.341487890703535f, -0.360549668352997f, -0.229900108098778f, -0.666760418812903f, 0.813282715359911f, 0.115522674116703f, -0.221360306077384f, 0.0297293679340875f, 0.00682810040637105f, 0.0115235719886584f, 0.887989949086462f, 0.792212187398941f, 0.415172771519484f, -0.600202208047434f, 0.949356119962045f, -0.526700730890731f, 0.946712583567682f, -0.392771116330410f, 0.0144823046999243f, -0.649518061223406f, 0.724776068810104f, 0.00920735790862981f, -0.461670796134611f, 0.217703889787716f, 0.846151165623083f, -0.202702970245097f, 0.314177560430781f, -0.761102867343919f, 0.0528399640076420f, -0.986438508940994f, -0.595548022863232f, -0.430067198426456f, 0.150038004203120f, 0.738795383589380f, -0.605707072657181f, -0.597976219376529f, 0.375792542283657f, -0.321042914446039f, 0.902243988712398f, 0.463286578609220f, -0.739643422607773f, 0.210980536147575f, -0.539210294582617f, 0.405318056313257f, -0.876865698043818f, -0.0883135270940518f, 0.0300580586347285f, -0.657955040210154f, 0.159261648552234f, 0.288659459148804f, 0.274488527537659f, 0.646615145281349f, 0.431532024055095f, -0.982045186676854f, -0.777285361097106f, -0.124875006659614f, 0.503004910525253f, 0.824987340852061f, -0.859357943951028f, -0.894837450578304f, 0.744772864540654f, 0.415263521487854f, 0.337833126081168f, -0.612498979721313f, 0.391475686177086f, 0.573982630935632f, -0.391044576636065f, 0.669493459114130f, -0.763807443372196f, -0.898924075896803f, -0.969897663976237f, -0.266947396046322f, 0.198506503481333f, -0.355803387868922f, 0.787375525807664f, 0.655019979695179f, -0.266247398074148f, -0.665577607941915f, 0.0617617780742654f, -0.303207459096743f, 0.807119242186051f, -0.864431193732911f, 0.711808914065391f, 0.267969697417500f, -0.643939259651104f, -0.723685356192067f, 0.887757759160107f, -0.318420101532538f, -0.984559057628900f, -0.123118506428834f, 0.264872379685241f, 0.258477870902406f, -0.727462993670953f, -0.223845786938221f, 0.683462211502638f, -0.989811504909606f, 0.292644294487220f, -0.926087081411227f, -0.801377664261936f, -0.337757621052903f, 0.356167431525877f, 0.974619379699180f, 0.456124311183874f, 0.664192098344107f, -0.910993234571633f, -0.484097468631090f, -0.128534589958108f, -0.770879324529314f, 0.320053414246682f, 0.249818479771296f, 0.0153345543766990f, 0.696352481669035f, -0.397719804512483f, 0.670333638147646f, -0.678192291329959f, 0.190143924397131f, 0.342035884244954f, -0.350791038317704f, 0.0218450632953668f, 0.437133719806156f, 0.659960895652910f, 0.903378806323159f, 0.855089775229062f, 0.946706092624795f, 0.335540975081955f, 0.838337968455111f, -0.102693592034237f, -0.702102376052106f, 0.409624309223486f, -0.654483499569910f, 0.886576641430416f, -0.200573725141884f, -0.461284656727627f, 0.262661770963709f, 0.867505406245483f, -0.0688648080253220f, -0.707487995489326f, -0.248871627068848f, -0.197869870234198f, -0.243745607075197f, -0.244106806741608f, 0.489848112299788f, -0.0909708869175492f, -0.377678949786167f, 0.0385783576998284f, -0.470361956031595f, 0.802403491439449f, -0.408319987166305f, 0.345170991986463f, -0.433455880962420f, 0.00950587287655291f, -0.441888155900165f, -0.817874450719479f, 0.818308133775667f, 0.931915253798354f, 0.818494801634479f, 0.787941704188320f, 0.882012210451449f, 0.0749985961399193f, 0.259772455233352f, -0.655786948552735f, 0.0824323575519799f, 0.980211564632039f, -0.798619050684746f, 0.496019643929772f, -0.727312997781404f, -0.999839600489443f, 0.625938920414345f, -0.561059012154101f, 0.215650518505246f, 0.121571798563274f, 0.161863493108371f, -0.340322748036792f, 0.521792371708641f, 0.655248389359818f, -0.180967013066484f, 0.936797969156762f, 0.523749660366580f, 0.764744126333943f, 0.384701560810431f, -0.744092118301334f, 0.719721922905938f, 0.365931545158250f, -0.720202871171563f, 0.121662048491076f, -0.355501954289222f, 0.379420491208481f, -0.593818415223405f, -0.433690576121147f, -0.766763563509045f, -0.377445104709670f, -0.955638620720410f, 0.309622585052195f, -0.613767678153186f, 0.0177719922394908f, 0.362917537485277f, -0.297613292472489f, 0.0275561832152067f, -0.962345352767599f, 0.452866577068408f, -0.307485159523065f, 0.931778412136845f, 0.639592220588070f, 0.00782144244951311f, -0.0466407334447796f, -0.134392603781566f, 0.895314655361308f, -0.537785271016286f, 0.663926391064792f, -0.886126633268266f, -0.0975129470189278f, -0.429791706025144f, -0.440337831994928f, -0.00156267573188829f, 0.933113069253665f, -0.560704402651437f, -0.201658150324907f, 0.465819560354530f, 0.0701448781871696f, 0.859597672251104f, -0.525851890358272f, -0.992674038068357f, -0.0846761339576128f, -0.401686794568758f, -0.886069686075370f, -0.480254412625133f, 0.432758053902000f, 0.168651590377605f, -0.453397134906684f, 0.340250287733381f, -0.972972507965963f, 0.0560333167197302f, -0.180812774382952f, -0.689848943619717f, -0.427945332505659f, 0.771841237806370f, 0.329334772795521f, 0.573083591606505f, 0.280711890938316f, -0.265074342340277f, -0.166538165045598f, -0.0612128221482104f, 0.458392746490372f, 0.199475931235870f, 0.681819191997175f, 0.356837960840067f, 0.756968760265553f, 0.763288512531608f, -0.890082643508294f, -0.322752448111365f, 0.799445915816577f, -0.956403501496524f, 0.723055987751969f, 0.943900989848643f, -0.217092255585658f, -0.426893469064855f, 0.834596828462842f, 0.723793256883097f, 0.781491391875921f, 0.928040296363564f, -0.468095417622644f, 0.758584798435784f, 0.589732897992602f, 0.929077658343636f, 0.829643041135239f, 0.0947252609994522f, 0.554884923338572f, -0.513740258764285f, -0.221798194292427f, 0.499855133319165f, -0.0237986912033636f, 0.559618648100625f, -0.509812142428963f, -0.444047241791607f, 0.678274420898738f, -0.983706185790147f, -0.295400077545522f, -0.688769625375228f, 0.729259863393412f, 0.889478872450658f, 0.928277502215167f, -0.429388564745762f, -0.790568684428380f, 0.930220908227667f, -0.796970618648576f, -0.980240003047008f, 0.0372716153521411f, -0.290828043433527f, -0.303854123029680f, 0.160774056645456f, -0.712081432630280f, 0.390787025293754f, 0.981202442873064f, -0.679439021090013f, 0.183053153027806f, 0.665002789261745f, -0.708708782620398f, 0.254574948166343f, 0.0575397183305137f, -0.723713533137924f, -0.732816726186887f, 0.501983534740534f, 0.879998734527489f, 0.825871571001792f, 0.920880943816000f, 0.311565022703289f, -0.788226302840017f, -0.223197800016568f, 0.850662847422425f, -0.365181128095578f, 0.958907951854379f, -0.0421327708909884f, -0.153860389403659f, -0.219620959578892f, -0.469076971423126f, -0.523348925540362f, -0.287762354299832f, -0.913332930679763f, 0.403264134926789f, 0.725849051303960f, 0.743650157693605f, -0.382580349065687f, -0.297138545454038f, -0.480092092629432f, 0.0412697614821378f, -0.396203822475830f, -0.0721078217568973f, 0.979038611510460f, -0.766187876085830f, -0.344262922592081f, 0.943351952071948f, -0.219460259008486f, 0.115393587800227f, -0.342675526066015f, 0.926460460401492f, -0.486133445041596f, 0.0722019534490863f, -0.571069005453629f, -0.0854568609959852f, 0.370182934471805f, -0.554007448618166f, 0.899885956615126f, -0.188476209845590f, -0.548132066932086f, 0.0559544259937872f, -0.161750926638529f, -0.532342080900202f, 0.585205009957713f, -0.374876171959848f, -0.169253952741901f, -0.473665572804341f, 0.942267543457416f, -0.515867520277168f, -0.706362509002908f, -0.320672724679343f, -0.398410016134417f, 0.733774712982205f, 0.449599271169282f, 0.109119420842892f, -0.285090495549516f, 0.0854116107702212f, 0.0603189331827261f, -0.943780826189008f, 0.0679186452322331f, 0.0975973769951632f, -0.870728474197789f, -0.153122881744074f, -0.519939625069588f, -0.633620207951748f, -0.767551214057718f, -0.905802311420298f, -0.841350087901049f, -0.271805404203346f, 0.282221543099561f, -0.0874121080198842f, 0.0634591013505281f, 0.318965595714934f, -0.865047622711268f, -0.401960840475322f, 0.637557181177199f, -0.664578054110050f, -0.871253510227744, -0.893972634695541f, 0.442396058421524f, -0.427901040556135f, -0.740186385510743f, 0.788155411447006f, -0.541278113339818f, 0.509586521956676f, -0.461159620800394f, 0.664671981848839f, 0.880365181842209f, -0.0831685214800200f, 0.952827020902887f, 0.183226454466898f, -0.176729350626920f, 0.851946105206441f, -0.361976142339276f, 0.357209010683668f, 0.982462882042961f, -0.690757734204635f, 0.178681657923363f, -0.0804395784672956f, 0.971787623805611f, 0.875217157810758f, 0.160844021450331f, -0.359951755747351f, 0.0178495935461525f, 0.0203610854761294f, 0.413933338290502f, -0.676038601090005f, -0.111093077131977f, -0.381792206260952f, -0.459903351782575f, 0.308522841938619f, 0.324961267942541f, 0.365201262605939f, 0.732543185546895f, -0.559558093250200f, 0.848266528378337f, -0.185546299813159f, 0.997052205707190f, -0.932554828383249f, -0.106322273904826f, -0.0690562674587807f, 0.919489002936141f, 0.137210930163322f, -0.664517238270193f, -0.985856844408119f, -0.0719443995256963f, -0.602400574547167f, -0.398979518518077f, -0.581117055144305f, -0.0626081333075188f, -0.0372763806643306f, -0.688808592854889f, 0.703980953746103f, -0.480647539644480f, 0.615510592326288f, -0.940226159289884f, -0.953483236094818f, -0.300312284206625f, -0.819419230573751f, 0.657560634657022f, -0.0500336389233971f, 0.628589817614501f, 0.717012803783103f, -0.0315450822394920f, -0.445526173532186f, 0.521475917548504f, -0.479539088650145f, 0.695075897089419f, -0.0365115706205694f, 0.0256264409967832f, -0.0121306374106025f, -0.817618774100623f, 0.375407640753000f, 0.944299492219378f, -0.717119961760812f, -0.120740746804286f, 0.995225399986245f, -0.460846026818625f, 0.904552069467540f, 0.807270804870602f, -0.842962924665094f, -0.923108139392625f, -0.130295037856512f, 0.760624035683226f, 0.986419847047289f, -0.959218334866074f, -0.203345611185410f, -0.474420035241129f, -0.872329912560413f, 0.485994152094788f, -0.515456811755484f, -0.948541161235413f, 0.509659433909651f, 0.783030335970347f, -4.41004028146619e-05f, -0.664795573083349f, 0.917509788523214f, -0.824045573084530f, -0.461857767121051f, -0.667434409929092f, -0.00822974230444418f, 0.825606347148302f, -0.396378080991589f, 0.0161379983198293f, -0.940751675506308f, -0.520997013834332f, -0.239727035024153f, -0.354546027474561f, 0.430652211989940f, -0.557416557692462f, -0.357117274957257f, -0.891975448321656f, -0.0775302131779423f, 0.716775563686830f, -0.903453980341467f, 0.946455001410598f, -0.615060907661003f, 0.964288374469340f, 0.0506144897273089f, 0.720601612869967f, -0.991323837622476f, 0.647403093538608f, -0.400304988135589f, -0.883732066109751f, -0.792060477777513f, 0.710867542231890f, -0.840766000234525f, 0.460362174479788f, -0.834771343071341f, -0.329399142231491f, -0.139853203297018f, -0.760035442359396f, -0.546795911275364f, -0.598172518777125f, 0.244198671304740f, 0.0816980976432087f, -0.978470883754859f, -0.425173722072458f, -0.469868865988971f, 0.847396146045236f, 0.0513388454446360f, -0.545662072513986f, -0.130534232821355f, -0.654100097045099f, 0.0409163969999120f, 0.573001152600502f, 0.706046270983569f, 0.587208280138624f, 0.237670099964068f, 0.848355476872244f, -0.318971649676775f, -0.659343733364940f, 0.321817022392701f, -0.595779268050966f, -0.114109784140171f, 0.998897482902424f, -0.615792624357560f, -0.384232465470235f, 0.156963634764123f, 0.499645454164798f, -0.627603624482829f, 0.169440948996654f, 0.109888994819522f, -0.492231461622548f, -0.463014567947703f, 0.825436145613203f, -0.0271223123229367f, 0.497887971992266f, 0.811868354230459f, -0.192668816770168f, 0.287930938097264f, 0.0283112173817568f, 0.791359470942568f, 0.365100854153897f, -0.566922537281877f, 0.915510517906894f, 0.674211624006981f, 0.505848146007678f, 0.509348889158374f, -0.0477364348461706f, 0.409703628204478f, -0.820970358007873f, -0.565377675052345f, 0.810052924776160f, -0.448904038826591f, -0.830251135876445f, -0.660589978662428f, -0.890196028167542f, 0.130526506200048f, 0.924600157422957f, 0.587215078998604f, 0.727552064386916f, -0.224172021948978f, -0.182984019951690f, 0.308546229024235f, 0.971188035736775f, 0.0229902398155457f, 0.0608728749867729f, -0.0712317776940203f, 0.549832674352445f, -0.600015690750697f, -0.0495103483291919f, -0.564669458296125f, 0.726873201108802f, -0.197851942682556f, -0.983422510445155f, -0.905314463127421f, 0.453289030588920f, 0.792504915504518f, -0.840826310621539f, 0.0979339624518987f, -0.506416975007688f, -0.143310751135128f, -0.451251909709310f, -0.356156486602212f, -0.430777119656356f, -0.593002001098269f, -0.212505135257792f, -0.378005313269430f, 0.516460778234704f, -0.574171750919822f, -0.702870049350445f, 0.190454765104412f, 0.694962035659523f, 0.177498499962424f, -0.00126954773922439f, -0.766110586126502f, -0.769862303237397f, -0.208905136673906f, 0.0728026097773338f, -0.467480087700933f, -0.368839893652514f, -0.608806955889496f, -0.531329879815774f, 0.411920547737697f, -0.407318902586407f, 0.922406353838750f, -0.0272310683929855f, 0.781051179942937f, 0.860271807949640f, -0.703736733439623f, -0.285650334863399f, -0.466904334435873f, -0.716816768536707f, 0.0869377378786880f, -0.280331892461309f, 0.773946156883160f, -0.139856444064730f, 0.575680110908147f, -0.887887626173303f, 0.314286545048942f, 0.673119170729964f, 0.520399233930039f, 0.581347801663144f, 0.731708017815653f, 0.672583525027818f, -0.0534590776637494f, -0.880572908687369f, 0.171150522778545f, -0.377041265530122f, -0.478003213002057f, 0.458602883802583f, 0.836824527658741f, -0.0686622680764437f, -0.301000630566919f, -0.652562984155554f, 0.604631263268903f, 0.791770979838877f, 0.0790491584346489f, 0.812646960034949f, 0.138794042671596f, 0.709411730079774f, 0.226484869016811f, 0.797388098554019f, -0.162225991160828f, -0.0295749256270541f, 0.218242165083417f, 0.442845427695148f, -0.480622209857766f, 0.873464432574125f, -0.868017543466245f, -0.435489784247438f, 0.0589001507244313f, 0.829134536020168f, 0.614063504046069f, -0.0498036542372153f, -0.803122689381969f, -0.495207870035615f, -0.126836582496751f, -0.0715271574335641f, -0.600815700055194f, 0.434993547671690f, -0.891665893518364f, 0.515259516482513f, 0.475325173737397f, -0.716548558025405f, -0.881097306400870f, 0.738462585443836f, -0.244486212870867f, -0.750368936394211f, 0.303496411011494f, -0.602701428305057f, -0.400346153635480f, -0.300002744969481f, -0.518552440201900f, 0.437964598712580f, -0.816689813412280f, -0.814392666138757f, -0.888568091915377f, 0.449416911306476f, -0.231889259488176f, 0.589775175288682f, 0.817224890217553f, 0.518646001325967f, -0.406046689874425f, -0.822100925750380f, 0.0528571826460145f, 0.502410576690672f, -0.795964394123106f, 0.0587614583641718f, -0.960750994569408f, 0.0366871534513058f, 0.723018804498087f, 0.0607565140068052f, 0.337380735516841f, 0.810682513202583f, -0.636743814403438f, 0.287171363373943f, -0.651998050401509f, -0.913606366413836f, 0.642186273694795f, -0.197674788034638f, -0.261253290776174f, 0.696450222503413f, -0.178859131737947f, -0.388167582041093f, -0.0593965887764258f, -0.638517356081890f, 0.804955770174156f, 0.220726627737384f, 0.263712659676167f, -0.214285245576410f, -0.267640297291737f, -0.268009369634837f, -0.957726158424482f, 0.708674977585603f, 0.336764494287156f, -0.985742981232916f, -0.883053422617300f, 0.560301189759340f, -0.692967747323003f, 0.977419052658484f, 0.0749830817523358f, 0.916618822945019f, 0.941660769630849f, 0.454145712080114f, 0.176036352526593f, 0.103229925297037f, 0.936507745325933f, -0.870159095287666f, -0.106465234217744f, 0.684178938709319f, 0.669775326656340f, -0.620857222834950f, 0.939074959093680f, -0.592224920792423f, 0.620706594809134f, 0.0456831422421473f, 0.738727999152789f, -0.751090911501446f, 0.683669216540363f, 0.153825621938168f, -0.255671723273688f, -0.773772764499189f, -0.667753952059522f, 0.887641972124558f, -0.664358118222428f, 0.512196622998674f, -0.0234362604874272f, 0.942878420215240f, -0.406617487191566f, -0.140379594627198f, -0.0587253931185765f, 0.419570878799757f, 0.533674656399007f, 0.108777047479414f, -0.695880604462579f, 0.481525582104998f, 0.511165135231064f, 0.136105196996658f, -0.481918536916982f, 0.757546893769363f, 0.957648176032083f, -0.908743619686586f, -0.395640537583668f, 0.0493439519763970f, 0.293569612893396f, 0.387420368421925f, 0.0928482742403196f, 0.407302666835821f, -0.787979245337637f, -0.968269218296593f, -0.409517247978962f, 0.775076200793689f, -0.217738166217447f, -0.370002483875998f, -0.570975789421316f, 0.844070553036478f, 0.668620483679341f, 0.00139813137293987f, -0.0912495442122028f, -0.0375370940595317f, 0.723007849224616f, 0.369999774115317f, 0.862240371150479f, 0.749525689790910f, 0.742992309993137f, -0.495813719545874f, -0.101947508108870f, -0.152536889610560f, 0.0598123624723883f, -0.436496899502871f, 0.520026918467263f, 0.241005798945400f, 0.970456690492966f, -0.376417224463442f, 0.614223236672359f, 0.336733945081746f, 0.376602027190701f, 0.00373987228923456f, -0.415425448787442f, 0.330560415319813f, -0.277250467297048f, 0.861008806111330f, -0.00655914035278493f, 0.810375656135324f, -0.0113631690466840f, -0.191699616402287f, -0.808952204107388f, 0.813180054552450f, 0.472985418265257f, 0.180147510998781f, -0.262580568975063f, 0.211152909221457f, -0.882514639604489f, -0.575589191561861f, 0.106927561961233f, 0.964591320892138f, 0.738192954342001f, 0.687649298588472f, -0.229142519883570f, -0.354434619656716f, -0.420522788056562f, 0.684638470896597f, -0.608080686160634f, 0.172668231197353f, 0.571295073068563f, -0.202258974457565f, 0.183035733721930f, -0.425589835248751f, -0.181955831301366f, 0.798193178080558f, -0.719799491928433f, -0.376418218727565f, 0.100370714244854f, -0.674685331738723f, -0.528950922374114f, 0.480443520097694f, 0.432497368954013f, 0.887439714903326f, 0.598241701759478f, -0.250064970303242f, -0.743111010477448f, 0.936189907099845f, -0.867383557331633f, 0.852536175309851f, -0.426378707286007f, 0.793838638663137f, 0.856262917294594f, 0.734157059815547f, 0.00452009494051664f, -0.884258713402709f, -0.0835595438259760f, -0.735457210599502f, -0.710727075357488f, 0.858050351034768f, -0.626070522205317f, -0.848201957131499f, 0.0180933910837406f, -0.0350884878366737f, -0.893836321618480f, -0.0682788306189803f, -0.539993219329871f, -0.557660404374917f, 0.268969847256868f, 0.505363999910409f, -0.0464757944714727f, -0.529689906951922, -0.138445378586710f, 0.992531054118938f, 0.974585450054910f, 0.940349645687053f, 0.648085319100986f, -0.410736404028701f, 0.804131759246012f, -0.774897101314247f, 0.178246382655493f, -0.361699623232501f, -0.836093509684016f, 0.806309487627613f, -0.758182371322663f, 0.718410035716663f, -0.213136487421868f, -0.0563465521625497f, 0.0411192849612654f, -0.532497330327019f, -0.0419839515250475f, 0.769432068229678f, 0.253556234192255f, -0.745131216530268f, -0.890639235422577f, -0.140643637034330f, 0.318127074868768f, -0.497415632768561f, -0.383508820416842f, -0.468783454456628f, -0.289531078129000f, -0.0831555730758713f, 0.0107128404847427f, -0.567754537918270f, 0.926366772604370f, -0.600154724486768f, -0.0920759547805206f, 0.889582307602381f, -0.0710437157605615f, -0.182724716112986f, 0.228135065644420f, 0.851015495602628f, 0.653035806598961f, -0.986676404958677f, -0.871714951288816f, -0.824734086356281f, -0.490239304888267f, 0.244318295619814f, -0.923794688606381f, 0.670566388343457f, 0.849438492633058f, -0.225318912425116f, 0.461075616917687f, 0.656436404012820f, -0.416403369651597f, 0.205630417444150f, -0.163509095777762f, -0.0670299490212758f, -0.315561491397908f, -0.0952855008191476f, -0.377993693497066f, 0.860172853824826f, -0.669622978211317f, 0.595058880455053f, -0.425661849490015f, -0.0405359106780283f, 0.129968697438974f, -0.156244199842099f, 0.996996665434629f, -0.888570357356090f, -0.925646614993414f, -0.753998082238076f, 0.714491335460749f, -0.307849905639463f, 0.536274323586448f, -0.462944722411129f, 0.622202376598447f, -0.215582012734053f, -0.115115003363232f, 0.128168110175570f, -0.556263623663708f, 0.921813264386344f, -0.288173574121268f, -0.175054002159610f, 0.0621862747516269f, -0.468862899314091f, 0.976184545317535f, 0.468469061953779f, 0.679394669665911f, -0.0651943232114096f, 0.872740953203360f, -0.917720162541254f, 0.271535917769933f, 0.265441861283112f, 0.542190484993772f, -0.0208550501604048f, 0.983272473294640f, -0.522164666401537f, 0.833823680455458f, 0.414337644113416f, 0.588576354535126f, 0.318369292694380f, 0.870442561030567f, -0.422722224743553f, -0.200185003922166f, -0.770185495487048f, -0.878134057034045f, -0.712873198675798f, 0.647706512601268f, 0.593648188899773f, 0.126171748161942f, -0.189622212946038f, 0.707877641788638f, 0.790070498218410f, 0.698576567863428f, 0.594748885238005f, 0.567439045931572f, -0.591839707769224f, -0.632709967090349f, 0.415471238430617f, 0.115403276784208f, -0.375797954748234f, 0.123611001678020f, -0.864109581464288f, 0.115346512920739f, -0.515581940111704f, 0.880606114362175f, 0.356011740142007f, -0.318112820131587f, 0.765766689783476f, -0.226772670084743f, 0.442067390135885f, 0.348547568069751f, 0.862154389627291f, -0.894863284060244f, 0.475714942110286f, 0.552377629980789f, -0.0838875341374268f, -0.227654706745770f, 0.0998522598030438f, 0.870812229993830f, -0.518250234958224f, -0.0635791579471283f, -0.284101882205902f, -0.454751668241269f, 0.720773434493943f, 0.0756117818245317f, -0.0572317848090118f, -0.692584830354208f, 0.776250173796276f, 0.514052484701885f, 0.00770839936587864f, 0.775668871262837f, 0.933055956393907f, 0.0501713700022097f, -0.922194089981246f, 0.266653852930886f, -0.408584553416038f, 0.797066793752635f, -0.785570848747099f, 0.931403610887599f, 0.660859952465710f, -0.630963871875185f, -0.673000673345695f, 0.518897255252506f, -0.342041914345720f, 0.405613809903414f, -0.373516504843492f, -0.208292396009356f, 0.0510871025610438f, 0.396765368381847f, 0.00537609874241829f, 0.935717099427788f, -0.564801066383885f, -0.907523685862547f, 0.670551481631625f, -0.457309616171932f, 0.364001526470449f, 0.140805524345232f, -0.349945327329409f, -0.0361532758624807f, -0.304268551311720f, 0.618482952755668f, -0.0120110524971313f, 0.106364353621731f, -0.427587198043230f, 0.464249033810121f, -0.808297048471569f, 0.675277128303038f, -0.0663762607268352f, -0.431951364170808f, 0.953951718476660f, -0.725934553905574f, -0.685163723789561f, 0.164132617720945f, 0.934798872032034f, -0.695343627424553f, -0.420317401094920f, -0.689247558220342f, -0.605894279765940f, -0.693832779320227f, 0.455037128281788f, 0.968645000038447f, -0.0839147410947130f, 0.603463489419899f, 0.776913738299999f, -0.491560292499776f, 0.692235227850848f, 0.0824017593921889f, 0.459024952691847f, -0.918050509352710f, -0.777463066447746f, -0.161045596440278f, 0.982603547894360f, 0.700884888820475f, 0.998304481713913f, -0.362488733430088f, 0.171493948866881f, 0.565871153533442f, -0.965620428705067f, -0.835532968802398f, 0.885598629033760f, 0.609604257914327f, 0.725300244775050f, 0.153524048564152f, -0.662541112390878f, 0.912145212201290f, 0.135610445338421f, -0.0813934125800109f, 0.242209063597546f, -0.264886126609115f, -0.335070345839122f, 0.823958964903978f, -0.313110855907701f, -0.354068037633970f, -0.0381190024996405f, 0.117794735211134f, -0.604442743379238f, 0.524930955656444f, -0.754959642694882f, -0.359151666678207f, -0.247910739722172f, 0.573570999369016f, 0.543167570010806f, -0.718553346110069f, 0.202415372555816f, -0.860091438569300f, -0.0125446132328610f, 0.509348782140749f, 0.349261188228469f, 0.424395913611831f, 0.0557092265870811f, 0.740276822496471f, 0.479158001215769f, -0.221873518706244f, -0.744883456979009f, 0.393114117430743f, -0.733203119089531f, -0.506531269498885f, -0.505532097672033f, -0.509440981371663f, 0.666118722468113f, 0.0164067375520756f, -0.530276655546078f, 0.786338654343788f, -0.985008085364936f, 0.479988836226036f, -0.233652481382475f, 0.838641098910395f, -0.407379719374768f, -0.314266358910263f, -0.938033692224531f, -0.627320971378707f, -0.229174127295511f, 0.642505983671691f, -0.387855473250297f, 0.360324209821339f, -0.900766206699468f, 0.176676285751262f, 0.833894117554548f, -0.0207873177403817f, -0.202625183820044f, 0.706644325019314f, -0.817922707040537f, -0.242742059004419f, 0.282109349674866f, 0.0164603911954744f, -0.504625902855950f, 0.0415496120997125f, -0.787777778295785f, 0.362588721999523f, -0.371357162843751f, -0.818375262182416f, 0.727779997467707f, -0.836502839702384f, 0.0423869176265037f, -0.283934686546853f, 0.665864224978728f, -0.0428162304637920f, 0.243534621880753f, -0.803789304599586f, 0.570866852088607f, 0.340615579467880f, -0.323456502239327f, 0.403242371952148f, -0.0679158901587793f, -0.866985651416456f, -0.439873628406335f, -0.246357367033863f, 0.436234859832243f, 0.560714706225535f, -0.632564381913014f, -0.316451076258298f, -0.977122780282003f, 0.0741405862954117f, -0.217862250253606f, 0.887093089232476f, -0.418281865182365f, -0.638553415535034f, -0.262631979211197f, -0.567499176465252f, 0.676178859605923f, 0.933551699581608f, -0.0139735129263516f, -0.610719575803582f, 0.565123751720690f, 0.230672823422021f, 0.323935439339366f, 0.635142215896104f, 0.981184609133698f, 0.883668802319366f, -0.281281673616891f, 0.583204242495555f, 0.150854689098149f, -0.775890223139644f, 0.419951701513177f, -0.565767744791652f, -0.855232478054420f, 0.472188579901153f, -0.501463211798228f, 0.727960518524943f, 0.977187851385321f, 0.908113737694915f, -0.570200931535418f, 0.716036980035073f, 0.147838037485588f, 0.218820342222622f, -0.0673193461152677f, 0.433612519652386f, 0.449601736390411f, 0.556458722303960f, 0.417345590820787f, -0.783345413347895f, 0.858903187230710f, 0.178354025272247f, -0.130619018471658f, 0.858282827806003f, 0.508916167873459f, 0.139535936201634f, 0.240400109521332f, -0.102942705407161f, 0.841682417072375f, -0.696350979494975f, -0.793644449061670f, -0.698273636720141f, -0.228676865074326f, -0.195917865828574f, -0.306483109792438f, -0.865320326812636f, 0.659185969805107f, -0.368847387975239f, 0.337343722359231f, 0.0723822170210744f, 0.907475280998826f, 0.515168301614856f, 0.0790167120323961f, -0.756697420780699f, 0.966477562469936f, -0.663190129982788f, 0.145761851826854f, 0.376079225193173f, 0.631883071958707f, -0.956568110802436f, -0.735990864315730f, -0.795999578321461f, 0.958459465243432f, 0.319180429028702f, -0.907664654881857f, 0.992381284978014f, -0.511208110440365f, -0.714797966909523f, -0.717021870210999f, 0.545775837604423f, -0.0443828768329362f, 0.333311879948434f, 0.617237628406207f, -0.0895192882305207f, 0.506491005527430f, -0.354205929841282f, 0.777993157224477f, -0.667532693120319f, -0.105006112097613f, -0.337191911902220f, -0.337964429160738f, 0.609014812897482f, -0.368922911475613f, 0.889184378947484f, -0.676392242654630f, 0.429716870038086f, 0.916751115281822f, -0.655611878274175f, 0.538928395264007f, 0.382674384886170f, 0.0580742902089004f, -0.0124611362991478f, -0.0240388340005702f, -0.726296501832402f, -0.805701334732693f, 0.945344279474230f, -0.668066000378724f, 0.761436128738929f, -0.314275650172792f, -0.394331510439346f, 0.262887592668013f, 0.155064800148016f, -0.561829218656134f, -0.491542446753775f, 0.922248338472926f, 0.574575887413700f, 0.631722295929094f, -0.368854197209698f, 0.984780657580794f, 0.845286034922662f, -0.965631634115590f, -0.435710392440405f, -0.616488688868478f, 0.885865616625930f, 0.425733070487506f, 0.776721663555227f, -0.0652930284860209f, -0.734431875923792f, 0.725517937762654f, -0.474146253075108f, 0.895357779508529f, -0.0725048758018345f, -0.360185856190223f, 0.559350280666427f, 0.363695103660096f, 0.152231254765544f, 0.698196273442671f, 0.0518001104801953f, -0.139037096279713f, 0.340637636595997f, 0.584243998596814f, -0.442304329829130f, -0.501574294329747f, 0.250155103662225f, 0.320493999001502f, -0.150217982700108f, -0.0381390799255577f, 0.734760815545772f, -0.574574233376749f, 0.593440338163725f, 0.408049858247104f, -0.0845023181203484f, -0.855507806920297f, -0.473198309372409f, 0.331033392104072f, 0.196445364460658f, -0.799745050834061f, -0.973517526224363f, 0.333748727500822f, -0.772356831553232f, -0.430793038424357f, 0.649852557262489f, 0.504357958431509f, 0.779588082810134f, 0.0111847677569461f, -0.995526851285634f, -0.676007517368195f, 0.216774012875664f, -0.618928775636485f, -0.418043155155598f, -0.532063904545563f, -0.566979013994587f, 0.246319907266774f, 0.868651379198082f, -0.0433430896891542f, 0.463004686009427f, -0.162112430964754f, 0.285379745117090f, 0.901512987149549f, -0.706916206313139f, 0.685678130935725f, -0.673017501666538f, 0.0616272859909088f, 0.147532779463338f, -0.0108539826652629f, 0.960841184863269f, -0.950190006701182f, 0.992171414792924f, 0.715577145884581, 0.975908103138584f, -0.769014520827696f, -0.463212420186382f, -0.0761813427220397f, -0.704830850508594f, -0.220579724380686f, 0.840893269946637f, -0.432181989863148f, -0.956790418498701f, 0.122344784859397f, -0.242133592220528f, 0.908514497715246f, 0.303653521236872f, 0.756500828196849f, -0.752207807361831f, 0.367894642791072f, -0.702474131286247f, 0.189226989057138f, 0.401804209353236f, 0.608493473010907f, -0.437378101171900f, -0.158801297891213f, -0.381027984311046f, -0.949403985394057f, 0.370189685252539f, -0.872655295458655f, -0.337934909993878f, -0.0619622888328213f, 0.352094440420005f, 0.128759637109350f, 0.432413186229881f, -0.497474226759161f, 0.552933107875735f, 0.332665936587804f, -0.559261497212156f, -0.886188834336549f, 0.0170548801295034f, 0.192729852728271f, -0.674432365770129f, -0.526014722983374f, 0.425009223123802f, -0.186164676538888f, 0.190362042383007f, -0.0930204201587825f, 0.794188212052413f, -0.243549629178106f, 0.118970185744958f, -0.216230226310237f, 0.412570247218594f, 0.659556685538155f, -0.150540425515543f, -0.850858266540316f, -0.843827815842486f, 0.629298164439457f, 0.944304062363374f, -0.117764731240517f, 0.558568737697335f, 0.731745392387362f, -0.00413812760139165f, -0.251933493011685f, -0.473346352965658f, 0.178783613032362f, 0.547769344759580f, -0.414330113592064f, -0.550251453379012f, -0.925253680779905f, 0.623832825809309f, -0.494251081521428f, 0.0643361026845244f, 0.727107898350051f, 0.814864886916156f, 0.0177325632172460f, 0.749324691554934f, -0.266301024849295f, 0.675202550635588f, -0.0748462128620644f, -0.747853513216831f, -0.222563643557406f, -0.608884446788701f, -0.0374135649675464f, 0.852579123003940f, -0.585927920129879f, 0.604065857569210f, 0.573072924781108f, 0.816831955879520f, 0.723975232584095f, 0.367887024581694f, 0.765292601085641f, 0.836490699448589f, 0.623434131440044f, 0.743568762340577f, 0.140474444458222f, -0.746327891490507f, 0.700496422194197f, 0.549693846244016f, 0.729372970291116f, 0.728185563682229f, -0.614909046853182f, -0.756209631211223f, -0.530222413502955f, -0.312453162783936f, -0.752364704008701f, -0.634475515424180f, -0.133239439768175f, 0.252790153178337f, 0.760626105409900f, -0.838262213452153f, -0.266093046689486f, 0.549339088324875f, -0.278178592347115f, 0.190458706141960f, 0.906814275056971f, -0.579827980376046f, -0.134191470195968f, 0.244720998349483f, 0.795502128014338f, 0.287019836683889f, -0.906277889518234f, -0.817071933038363f, 0.613378274793081f, 0.518208081766432f, -0.388902790616382f, -0.785778461147273f, 0.574976429920521f, -0.283168065839246f, -0.857322381041868f, 0.424932015236353f, 0.919756642423073f, 0.412896759578072f, -0.976511020897041f, 0.157825653359643f, -0.0606591903280758f, 0.508438714729350f, -0.513115001652116f, 0.881391940997543f, -0.129708782033534f, 0.382462819411800f, -0.538751535594113f, 0.816770663497783f, 0.869013288394013f, -0.728381721932439f, -0.956736333819522f, -0.839107107637575f, 0.394821058517234f, 0.721983518815999f, -0.0847231453556103f, 0.0206545030491683f, 0.414707730497861f, 0.246591855656934f, -0.546187573590839f, -0.578957978692654f, 0.162844799084821f, 0.493731081270802f, -0.765815587549615f, 0.151613093585910f, -0.112883397239635f, 0.879319928900002f, 0.295375250614654f, -0.505370201033860f, -0.635319167339584f, -0.309818465920078f, 0.768627024018538f, -0.544374452091825f, 0.758974060573473f, -0.106050973670013f, 0.508616501970226f, -0.207224226211215f, 0.616842248601645f, 0.688381226662374f, 0.643728558619948f, -0.906982649598668f, 0.526262112978799f, -0.666644270400075f, 0.314806313630502f, -0.292000096972562f, -0.358353880616007f, 0.156344541906829f, 0.637606941586786f, -0.199572501073669f, -0.669369278061572f, 0.237513395315133f, -0.576741807179552f, 0.0750117203638310f, -0.633877533594996f, 0.829285089669934f, 0.622345234313277f, -0.892617583855908f, -0.280449892200797f, 0.241147361581176f, -0.0784016295955696f, 0.414945819313502f, 0.287238318044040f, -0.691458270387106f, 0.597656137422422f, 0.549022082569726f, -0.590776624040652f, 0.666740423918019f, -0.743115212424850f, 0.164036350785269f, -0.229427480781113f, 0.283602991107853f, -0.533993445778340f, 0.185806116700093f, -0.317953364055307f, 0.140412503708198f, 0.280706883979940f, 0.0439806827213221f, 0.176471515460512f, -0.614144204292693f, 0.314194083857125f, 0.519572839644130f, -0.850547081260782f, -0.515460990713008f, 0.353087995032390f, -0.0241014119925820f, 0.269453276643829f, -0.608515317887958f, -0.777818225534647f, -0.834277444316067f, -0.842707175235771f, -0.929547602540323f, -0.884691870945475f, 0.710591809809692f, 0.143423776629673f, 0.797136471728128f, 0.233311155245426f, -0.923169961754164f, 0.627911916101674f, -0.338187201367212f, 0.211044396110784f, -0.443699655795038f, 0.256593551969761f, -0.406688684034041f, 0.364900889856600f, 0.900530571350288f, -0.160476177153537f, 0.0634217008071056f, 0.709241599309354f, -0.789562037599596f, 0.00891621061029158f, 0.801674768895422f, -0.704378031949125f, 0.430576706378041f, 0.796937507044124f, -0.193348850174576f, -0.493924902919358f, -0.935781577118986f, 0.468142331108629f, 0.00965840085728753f, 0.0834398764999438f, 0.599712941235232f, -0.735675950275295f, 0.200152501800787f, -0.751603779675650f, 0.0697488403240092f, 0.300634243862625f, -0.901969784333300f, -0.958816237033024f, -0.754976119377363f, 0.719702182489622f, -0.338038642556184f, -0.703280944186943f, -0.579148694005994f, 0.556115731092296f, -0.920710928208685f, -0.278178108839470f, -0.793795308512285f, 0.916547680808212f, 0.419467216101691f, 0.177932177026735f, 0.682833725334600f, -0.926849803428705f, 0.179045225389745f, -0.209414969718359f, -0.889551871881532f, 0.961659420127890f, -0.250341627298645f, 0.105606170554974f, -0.547860346689080f, 0.845704098204057f, 0.886892635683680f, 0.768134466622042f, -0.954777823503721f, -0.718106389777233f, -0.580779231998609f, -0.0241800476518665f, 0.815063484178525f, -0.351971452344303f, 0.770369263680192f, 0.520886146470712f, -0.236456125482696f, 0.0900173391919312f, -0.00610611501589697f, 0.0986788038317752f, 0.277083194173223f, 0.0877085076786761f, 0.695814138412262f, 0.281021332783082f, -0.701468161850407f, -0.785496560046616f, -0.805623403379156f, -0.0524204125046179f, 0.0836418099696601f, 0.467252832788807f, 0.148967572323544f, 0.314141193557124f, -0.722297309069329f, 0.147068590429361f, -0.868307069306109f, 0.118712645744921f, 0.737896544941878f, 0.897526485681248f, 0.842207508585120f, 0.817408479766998f, 0.522315328909182f, -0.409136979179218f, 0.580654760034574f, -0.384701243761730f, -0.769398544059918f, -0.791317178699730f, 0.357020281620118f, -0.235410423267782f, -0.326332500533018f, -0.416891876268284f, -0.863029987000052f, 0.505171215727166f, -0.728709553380428f, 0.554546891580919f, 0.737429989077498f, -0.355088598334119f, 0.911987317939763f, 0.525846127625130f, 0.851549830104189f, -0.772303673276796f, 0.0421942169353806f, -0.521836640530782f, 0.995279650924240f, -0.186831960875832f, 0.421233670121556f, -0.0891583750230474f, 0.661100169663965f, 0.393809652414978f, 0.346165179707090f, 0.384203760628548f, -0.329281932973211f, 0.446133401546675f, -0.748200766224366f, -0.0275154142375615f, 0.771701580845288f, -0.0177829993094090f, 0.406813206251131f, 0.606021648140155f, 0.218435152341115f, 0.236571855064013f, -0.513495776515847f, 0.729086381137554f, -0.137775825035815f, 0.0320966747364262f, -0.313487802206023f, 0.105472520924239f, 0.423606700821375f, -0.231301628369264f, 0.465218832919270f, 0.379671652150568f, -0.00497780485272159f, 0.509290230688327f, 0.467240127182068f, 0.353587964503845f, 0.390455232684039f, 0.721536288927627f, -0.838922323815237f, 0.827628029266859f, 0.768844149796201f, -0.813963144642386f, -0.797054297232628f, -0.933039367361175f, -0.0723957249866136f, -0.664824147893300f, 0.695914840901794f, -0.206071660300270f, 0.879389414398409f, 0.181872681691416f, -0.582831210733033f, 0.624249199449935f, 0.204959730900228f, 0.354831594370532f, 0.337152636438178f, 0.596132114241829f, -0.295619496794481f, -0.443402055665686f, 0.743995051028396f, 0.543706744165365f, 0.825846155044062f, -0.764982315603181f, -0.0355223730700034f, -0.682467026736627f, -0.914037445162109f, -0.222823484413727f, 0.825323277024566f, 0.0769459194171547f, 0.696453968928934f, 0.760786120466962f, -0.525470048583831f, 0.764981036001869f, 0.458525204937000f, -0.612703584870878f, 0.626016142683351f, 0.284799326870320f, -0.130410894642153f, -0.730659587111424f, 0.0251896513929686f, 0.744421417725379f, 0.481278905427271f, -0.718686189713675f, -0.972110566787501f, -0.178005803066219f, -0.761536801353512f, 0.675177569459847f, -0.613068600254845f, -0.854757540148688f, 0.641823580903407f, 0.112536000301536f, 0.201235170163357f, -0.332623522893231f, 0.602028236317460f, 0.487529253813741f, -0.936537443253385f, 0.932862477850079f, -0.0977461167435834f, -0.485449569929182f, -0.575807340541437f, -0.920527242558033f, -0.938208754460503f, 0.890054000488493f, -0.154888511872567f, -0.106629818916523f, 0.323343252623500f, 0.105328135407289f, -0.837197492121459f, 0.497769113944639f, -0.234127101891878f, 0.840922493788059f, -0.994297350473539f, 0.241966031396186f, -0.241143860453769f, -0.598953146106117f, 0.839112451637864f, -0.639567866338402f, -0.219908091959649f, -0.778137266578287f, -0.201424793310289f, -0.486105622640452f, 0.874947034932591f, -0.131437343585340f, -0.674427373037920f, -0.161007203320351f, 0.215285933912207f, -0.963047650748652f, -0.841020847986178f, 0.259702280444602f, -0.165325097679823f, 0.572379756389254f, -0.435802768396928f, -0.0776125194906274f, -0.0293182206559168f, -0.847945015803839f, -0.576891917046364f, 0.728544652294888f, 0.110676857648527f, 0.760459056611184f, 0.486936926897001f, 0.680603035572503f, 0.330358411271561f, 0.901153157113818f, -0.893323547516767f, 0.268679990552354f, 0.794615743189695f, 0.221637368947158f, -0.0207579360252996f, -0.585634995914835f, 0.587646126395593f, -0.317780705107399f, 0.790321547328449f, 0.251610679655279f, -0.0386445267248654f, 0.881542790650722f, -0.469258891944944f, -0.900544881246558f, -0.344978220866601f, -0.271404539202745f, 0.863631450621357f, 0.805892242474368f, -0.325004362330199f, -0.649692260224921f, 0.535815472185538f, 0.427767946389023f, 0.924517987543855f, 0.571059970962007f, 0.549923246060706f, -0.639468249016352, 0.307213071097954f, -0.885892976847170f, -0.526002656640427f, 0.733743042788359f, 0.186919211020217f, 0.322167483598106f, -0.933484010727969f, 0.307181642341518f, -0.391959805653480f, -0.892298105797306f, 0.100065710151584f, -0.932962740784651f, -0.643536993204857f, 0.200747180046148f, 0.310831344540979f, -0.923416823619512f, 0.440768799148345f, -0.666930667413366f, -0.485487251971431f, -0.0627811951952384f, -0.331082293469460f, 0.0335811939608148f, -0.653610782697787f, -0.320586426505716f, 0.559163070852115f, -0.497363452770543f, -0.329886484503569f, -0.146612217140156f, -0.0265272745798242f, -0.288663397675155f, -0.996138396801714f, 0.705746028666908f, 0.634215549629091f, 0.165248482682243f, -0.110791752682943f, -0.0583711657160508f, 0.704663932851230f, 0.105987046073574f, -0.674234600022039f, -0.852792911043127f, 0.779458558047699f, -0.506163961277651f, 0.661431789813829f, 0.362986600662932f, 0.677673397902417f, 0.909704544299484f, -0.678129611146149f, -0.700854916363125f, -0.954905799366644f, 0.819329178422143f, -0.278866438326573f, 0.240572863896085f, -0.597973444252616f, 0.520707363092687f, -0.891796539359942f, -0.0707113684027092f, 0.730270237241197f, -0.202809887987925f, 0.712903235793333f, 0.815918058519912f, -0.619284883130692f, 0.620432327799984f, 0.215462902206797f, 0.913706499476201f, -0.284266999538807f, 0.137669223817851f, -0.320599930994154f, -0.279885143029947f, 0.0759863610502050f, 0.362519848337183f, 0.0897184432777523f, 0.730407126330006f, -0.715664883515070f, -0.964294244830797f, 0.337668374417089f, 0.563780948124681f, 0.534272089774928f, 0.670003495251274f, 0.976582736706313f, -0.576021162432801f, 0.318863740329612f, 0.374838616807691f, 0.437628782275460f, 0.629331465907672f, 0.800673318445353f, -0.964950925853698f, -0.115288102568929f, 0.581179798077059f, 0.892103220665649f, -0.224009831257430f, -0.486848659265476f, 0.768601825625188f, -0.478996958061453f, 0.987216084861456f, -0.00828256241998737f, 0.443388113322642f, -0.209225960405120f, 0.784392408672073f, -0.821157008960409f, 0.169088259578466f, 0.188648958653604f, 0.796321723736402f, 0.804915614204973f, -0.947435972579018f, -0.320368366702004f, -0.0857043727442930f, -0.229914128505395f, -0.802013870592427f, 0.497444368231634f, 0.791040716463223f, 0.586369970276563f, 0.871236424247704f, 0.770091868124107f, -0.458396647683594f, 0.871149873224889f, 0.753895449519495f, 0.295832468734546f, 0.574616471536691f, 0.384408809311353f, -0.978021020306570f, 0.0397482936794495f, 0.628095200786834f, -0.968059492217325f, -0.404306711220928f, 0.659301030460980f, -0.345766174675525f, -0.0517956907600681f, -0.640289082986305f, 0.965202733073502f, 0.909703156044274f, -0.744545066259015f, -0.676836498528477f, 0.0507393165493961f, 0.394673166210436f, 0.250366706754377f, -0.287411651947684f, -0.521760552601739f, 0.214487178617345f, -0.922260536787078f, -0.970217444063294f, -0.632705652784150f, -0.720016326822300f, -0.506393579710801f, 0.774172771450182f, 0.891546338793249f, 0.559706491124446f, -0.513481979527671f, 0.735727350850420f, -0.207760672132971f, 0.956672164225499f, -0.516696999265124f, -0.846015525317730f, -0.199370940530009f, 0.927580907007946f, 0.669786891276299f, -0.208316500739886f, -0.349932032863852f, 0.382722440637189f, -0.455635180187178f, -0.573852668753046f, 0.237990995216907f, -0.00210628303929439f, 0.846035951941252f, 0.921932267818374f, 0.141873820779935f, 0.871317167610738f, -0.632607355185838f, -0.565801401210940f, -0.959881482283947f, -0.732559764685905f, -0.655277252471118f, 0.136770193226314f, 0.206392768880907f, 0.0946932052352707f, -0.147722827344946f, 0.142504821799194f, -0.891443939735724f, -0.660161817562772f, -0.918683225740157f, 0.524851053279394f, -0.841532325411647f, -0.662931925252737f, 0.450018807591706f, 0.157794014139767f, -0.562525486647545f, 0.604051451992330f, 0.859220943805127f, 0.943321402026900f, 0.511188518123118f, -0.332990520726740f, 0.904709059147998f, -0.336911302156504f, -0.0329301811082998f, 0.307263624236174f, -0.640655394434152f, 0.791676792853669f, 0.450137270831791f, 0.746000232170803f, -0.915436267533878f, 0.976514418439799f, 0.828073391112522f, 0.990695018409237f, 0.419713963781614f, -0.286897378037841f, 0.111527193084439f, -0.956913449095442f, 0.263769440437253f, 0.534739246489713f, -0.918314908283506f, 0.680501951418845f, -0.0258330390798596f, -0.696521999550769f, 0.274590593565720f, -0.821334538131451f, 0.104139627465949f, -0.790104923997319f, 0.399265830301725f, 0.118854169469537f, 0.309552488812324f, -0.961100729890863f, -0.665645274594184f, -0.125767140532335f, 0.377154316156289f, -0.971986633153292f, -0.148225730575294f, -0.801072242848910f, 0.735673216754228f, 0.247753694178141f, 0.759093842520115f, -0.529946694334253f, 0.594235069164038f, -0.801015868726278f, 0.141962211231124f, 0.135473683510959f, -0.0431660672944612f, -0.437176231417910f, 0.467008031415084f, 0.324675317141816f, 0.122578305547357f, -0.0351479470228342f, -0.437236315511244f, -0.822621846670407f, 0.989461679354308f, -0.242059902390237f, 0.800837521050356f, -0.387832478851607f, 0.316362161826139f, 0.602440060427024f, 0.890992007298149f, 0.319686042477150f, 0.930326885903916f, -0.170779817104763f, -0.437602177375177f, 0.835764105962134f, 0.522922752459604f, 0.295156847627349f, -0.857646277751538f, -0.451421990712551f, 0.752856133268497f, -0.826193868550830f, -0.906961130052697f, 0.118621494342013f, -0.627099634988204f, 0.163256363060383f, -0.719362770410877f, -0.576563943780491f, -0.369939711177846f, -0.294180430088591f, 0.868430622614485f, 0.945955651201780f, -0.879259966782947f, 0.376142233233261f, -0.549019623646418f, -0.366403875933169f, -0.631308623984507f, -0.398270064613022f, 0.631780765950599f, -0.497821177556814f, -0.0754938097555216f, 0.358298259390762f, -0.438971283619577f, -0.835962846436280f, 0.771544885338102f, 0.132031497593111f, 0.0964144932127649f, -0.171144812197942f, 0.734241841669664f, 0.773828279651661f, 0.591442573315395f, 0.449840299498767f, -0.249196666141921f, 0.910274822633449f, -0.623687862912847f, -0.954398427932048f, 0.700975370671540f, -0.128268698036002f, 0.723971772247224f, -0.239872317271662f, 0.599101633280873f, 0.323504979356466f, 0.726076237951951f, 0.775013638477775f, -0.736157118505210f, 0.681129332563739f, -0.989456914597076f, -0.860559243921100f, -0.652547050354339f, 0.227533741410917f, 0.263244425371628f, -0.412800042549063f, -0.774547399227093f, 0.959749220773555f, 0.0285018454625012f, 0.0260964660594436f, -0.817249773797516f, -0.275510098931589f, -0.957071090655421f, 0.755874233806472f, 0.0601247360044190f, 0.155148678178749f, 0.744458452388040f, 0.206143083045583f, 0.405575258734775f, 0.591273066531951f, -0.286358679634110f, 0.168522523380964f, -0.0740663582251186f, 0.991796969736415f, 0.00304472789286958f, 0.0955103281360055f, 0.595292305224677f, -0.633460800851610f, 0.969720344590438f, -0.788939516987962f, -0.690852963213444f, -0.751849610482179f, -0.454105756229298f, 0.527652178438853f, -0.249156091787771f, -0.395486634371019f, -0.586329259469701f, 0.774216673365643f, 0.000796185912973479f, 0.753872935709907f, 0.691883261316931f, -0.599798140130743f, 0.140718954973018f, 0.400016581571111f, -0.412934563119652f, 0.782683275869451f, -0.837415681080234f, 0.503344297140354f, 0.443222186121185f, -0.869067764953740f, 0.891507832007671f, -0.258782538717313f, -0.592111951047753f, 0.542828422857983f, -0.959476625230936f, -0.373353196174649f, 0.558975637763876f, 0.848608638566440f, -0.861701716955403f, -0.937645215971517f, 0.0456695238513540f, -0.643462752057364f, -0.194887894642735f, 0.576940690214110f, -0.889414400002951f, -0.120401270393403f, 0.581976128201341f, -0.914549817300516f, 0.619675229253819f, -0.446355411157033f, -0.686510097388917f, 0.199022704414501f, 0.0679083509214176f, 0.939286059873160f, 0.919854436895475f, -0.921420499961796f, -0.933865152326639f, -0.173428453947994f, 0.0481843697148709f, 0.282408667923603f, 0.411093542307595f, 0.332739798472214f, -0.539048264159821f, -0.704491312083244f, -0.502163632960363f, 0.955228344617550f, 0.620064399129425f, -0.470222569036376f, 0.754614931250763f, -0.616308595262807f, -0.914574682979899f, 0.624066330640082f, 0.836911269770582f, 0.913639510454430f, 0.653228461676548f, -0.269928008555249f, 0.313006679186127f, 0.984676487220296f, -0.492012769698267f, 0.956868299674771f, 0.291679581317590f, 0.0391808383867289f, 0.572884371819903f, 0.0424011452585180f, 0.955486550514640f, -0.402317209279260f, -0.606465037288902f, 0.547296561663929f, -0.262634118959448f, -0.555413611714328f, -0.328781770154915f, 0.145794994289916f, 0.141260540582646f, -0.451655981927315f, 0.305553535897825f, 0.828724940454557f, 0.263943455052409f, -0.609183422737396f, 0.691170220321907f, -0.372701931956834f, 0.750237424665146f, -0.249353280856890f, 0.379870697565802f, 0.385751069018950f, -0.515117494253264f, 0.716937491491901f, 0.343749563024118f, -0.462962268225808f, -0.542579750084113f, 0.865163879545508f, 0.348358741505572f, -0.309602240547849f, -0.0504864877295679f, -0.822856269672862f, 0.199343960697129f, -0.790668167630170f, -0.0910655952543342f, -0.0243531696455832f, 0.832501734319368f, 0.604933598167068f, 0.899053047900036f, 0.270668041381131f, 0.523691409964688f, -0.0841567002292820f, -0.844392287920523f, -0.910987838261586f, -0.470654231510287f, -0.103828495683496f, 0.253788695977573f, -0.103172947809401f, -0.339896741661867f, -0.447251997825083f, 0.217200476817515f, -0.474840886373359f, 0.227876267254650f, -0.851351819181938f, -0.902078585170911f, 0.445464427415683f, -0.842484493463611f, -0.141606736723087f, 0.104224619207891f, -0.554900879859470f, 0.818556374444811f, -0.832710463532413f, -0.284760316465868f, 0.697962734672817f, 0.235137001970259f, 0.538298155374871f, -0.598477541924834f, -0.833959821954974f, -0.164556670763502f, -0.443902305525605f, 0.484290717235912f, 0.319356252041167f, 0.0834544406255109f, -0.839174383593280f, -0.514784811627172f, 0.466424623987191f, 0.597641402168886f, -0.344706573843316f, 0.346954604803744f, 0.150560726232471f, -0.963838773301094f, -0.210406119881130f, 0.740751216241446f, -0.519896828058978f, 0.882277568799242f, 0.982734995306564f, -0.691486807580351f, -0.120653164608028f, 0.263039860106709f, -0.472131671311566f, -0.469155525952548f, -0.562705921604020f, -0.737502946123759f, 0.151863404645485, -0.367233093688652f, 0.149585386378220f, -0.152980596399920f, 0.572826412281344f, -0.498718037086228f, -0.0794332639424211f, 0.659760386972575f, -0.574814983564964f, 0.451329484188896f, 0.473066930128670f, -0.135151886005125f, 0.379571405476121f, -0.308712078323501f, -0.136843563834117f, 0.395667583713552f, 0.196238140324408f, 0.588147058383512f, 0.770505301611929f, -0.865188840370228f, 0.266437694165002f, -0.428134513764013f, 0.661967260527446f, -0.752421375452379f, -0.556389852423621f, 0.424944298468302f, -0.480554454112605f, 0.916159659428765f, -0.112147362457396f, 0.363475545209813f, 0.698805683596358f, -0.862382341730295f, -0.489415523853276f, 0.453056404353730f, -0.606183761884457f, -0.00869682692408680f, -0.288739722701460f, 0.487988005841341f, 0.566870040344668f, 0.0894575138005909f, 0.887832293799319f, -0.0981274237649674f, -0.279935090781560f, 0.506891141525948f, 0.952901245338457f, 0.458002767525373f, -0.569410776125351f, 0.849518291873527f, -0.585020953514368f, 0.676037258640625f, 0.299076264841081f, 0.911385441491479f, -0.954959555659035f, -0.681285607891366f, 0.631368118385947f, 0.522268523899537f, 0.900701101674748f, -0.647701850365577f, 0.567960815808216f, -0.138958982219446f, 0.267024801687456f, -0.975771109955874f, 0.314682157086949f, -0.378801381286130f, 0.665990927256163f, -0.573674360032848f, -0.860450785684384f, 0.516581474078532f, -0.190844183471714f, -0.451971355445856f, -0.808113003973650f, 0.860446168028895f, 0.377778958059242f, 0.126949039950121f, -0.892203650250330f, 0.572503460980517f, 0.975224974978800f, -0.202312370945465f, 0.500665599343084f, -0.0510413720986291f, 0.353231752436633f, -0.805555931906752f, -0.199761377956955f, -0.829487282239605f, 0.0282459088867508f, 0.814545057118991f, 0.557652277921578f, 0.613951716518862f, -0.678811366342345f, 0.896500288318877f, -0.627622562398925f, 0.802545092571611f, 0.211382709497062f, -0.979380222642662f, 0.826784411456488f, -0.670689878657734f, 0.788878029765924f, 0.137070906151783f, 0.901907287859132f, -0.526217367070263f, -0.545043827128876f, 0.494756249972086f, 0.236657948774128f, 0.156603327087660f, 0.516397244064118f, -0.325837179590292f, 0.460683385171580f, -0.196022953760504f, -0.441996357332195f, -0.808932369852494f, 0.291980108741838f, -0.833583979826152f, 0.365574438479475f, -0.797139524158001f, -0.0649288183732912f, -0.000696491493834994f, 0.100125393693922f, 0.598035350719377f, -0.312548404453564f, 0.0414605409182345f, -0.675913083156432f, 0.236245026389435f, 0.550464243484224f, 0.193366907856750f, -0.903654015709839f, -0.00993172527377806f, 0.0180900754210873f, 0.880678290110106f, 0.166539520562349f, -0.984509466189118f, 0.810283124477894f, -0.925371921448173f, 0.193528916069728f, -0.748644561903135f, 0.534508666819454f, 0.364436869280188f, -0.386979667637943f, 0.427958998441480f, 0.362750270039032f, 0.420886957715891f, 0.0300301961707390f, -0.655220626875711f, 0.0504522662127427f, 0.472640818703213f, -0.417745816013639f, 0.0689992794158720f, 0.461232479061866f, -0.483517586427718f, -0.411463769964024f, 0.622740736364726f, 0.659687134578680f, 0.243900134982579f, -0.684356227282321f, -0.688699031115733f, -0.316032121634021f, -0.644296362948831f, -0.236133265458216f, 0.880259454885881f, -0.956880609581177f, 0.737775899964131f, -0.529059297472703f, 0.794119601436042f, -0.375698158660466f, 0.493447663117292f, -0.752511119115434f, -0.941143365329844f, 0.610101048864035f, 0.253791011658991f, -0.369994602049336f, -0.697364270085742f, -0.681360550250048f, -0.571943442128960f, -0.749697324128684f, 0.611997629275096f, 0.892727938106141f, -0.440225399106758f, 0.00196047981855352f, 0.951252158369648f, 0.0351885308766962f, -0.471806546113710f, -0.657231535594911f, -0.0873481442406481f, -0.0341288006282565f, 0.579184398564974f, -0.224334624306026f, -0.298557652719061f, -0.509401519638379f, 0.188853505083675f, -0.321619146497229f, -0.613159956450671f, 0.570042044631281f, 0.699213203307007f, 0.537439231469861f, 0.529440733283839f, -0.744527226912905f, 0.362949055807175f, 0.529758698714545f, -0.114804719889245f, 0.991089489396930f, -0.186716454683287f, -0.218189173574106f, -0.0493780858124198f, -0.928812411399224f, -0.101855573638590f, 0.454268528366586f, 0.617591620012079f, -0.197519518988231f, 0.0973277590468935f, -0.185672509894105f, 0.649922648337967f, -0.896862900376972f, 0.594999589349510f, -0.746978997769556f, 0.590642952628647f, 0.935109901616311f, -0.293310684054096f, 0.783281817912060f, -0.189898897214222f, 0.414859016240278f, -0.0858574647662298f, 0.0810260863380805f, -0.633024441577653f, 0.248442861097829f, 0.984586601784679f, 0.982811638387854f, 0.547456083836220f, 0.476239638753291f, -0.897709902882279f, -0.208045489357872f, -0.860637131636973f, -0.496740558564284f, -0.944185351410090f, 0.157610983944341f, 0.975214099838643f, 0.550265718083095f, -0.630360326400067f, 0.672420341653334f, -0.897139264107564f, -0.670556423663785f, 0.298764071000339f, -0.310465384759529f, -0.978153640586955f, 0.189785151994709f, 0.929291975296760f, 0.758271912876084f, 0.806829662560108f, -0.472787451147715f, -0.802032434276146f, 0.455809631085663f, 0.985520713417984f, 0.739637167649794f, 0.311705106454777f, -0.120539152808323f, 0.977785717545631f, -0.848554870988208f, -0.281179241544089f, 0.931102239520177f, -0.255243432382956f, -0.284952242030900f, -0.189341152192864f, 0.647573166562597f, -0.474203015584843f, -0.545915610099538f, 0.672696420688916f, -0.239274489717776f, 0.956544960216021f, -0.0858024073600807f, -0.758223415922611f, -0.00817763648068581f, -0.500893489164054f, -0.669386983409311f, -0.344450617815217f, -0.728051392792875f, 0.804121117816188f, 0.00718436691280910f, 0.195237363230272f, -0.472485206728796f, 0.642070241911164f, -0.272384993247314f, -0.731715323915071f, -0.791266589031733f, 0.0339783427570857f, 0.0696513783219659f, -0.894169486972683f, 0.00234016305501483f, -0.0403382685361653f, -0.943600572111266f, -0.788181603936192f, 0.851406365407377f, -0.100015982664501f, 0.145502229793638f, -0.528736628076536f, -0.0313760382570432f, -0.662221611141088f, -0.885722031379862f, -0.744257140212482f, 0.524976313116033f, 0.186092035304635f, 0.181669793648209f, -0.606482674165339f, 0.849303544554227f, 0.226118051135263f, -0.690025550727719f, -0.256543384397548f, -0.207714017766381f, -0.447913202664626f, 0.375270273897879f, -0.884312586292038f, -0.0838720085819762f, 0.969898436757285f, -0.736808033249456f, 0.668875150485586f, -0.599937439969920f, 0.470077288925414f, 0.903135367105719f, -0.895619185450694f, -0.637694108244489f, 0.572669535020987f, -0.696211470281632f, -0.820577518545193f, 0.937364674938455f, 0.422458818039761f, -0.593964370461091f, -0.586264791612426f, 0.0282373486927521f, 0.298051147134121f, 0.592825359583763f, 0.716195674857467f, -0.684008410968338f, -0.167523841045924f, -0.370794208549223f, 0.768054740581884f, 0.997835641681024f, -0.366262133888883f, -0.523114034556271f, -0.457946740456489f, -0.530941146838744f, 0.298744841822404f, 0.390761228562591f, 0.0871171594445448f, 0.764002674223649f, 0.233966808661423f, -0.116573523634048f, 0.426118986433559f, -0.255934695328716f, 0.302314199650152f, -0.254971729124577f, -0.330865677738578f, -0.0840307537517577f, -0.711910586170446f, 0.622585361690409f, 0.367595248366733f, 0.422102667722561f, 0.269580206097961f, 0.707083822001774f, 0.625367208198523f, -0.729594790471199f, 0.708679674727951f, 0.00355767003560614f, 0.379158300246371f, -0.688791438249760f, 0.261637457245975f, 0.704008781391790f, -0.917586017594177f, 0.886443038824615f, -0.923559496787343f, 0.360365726214756f, 0.547058288460181f, -0.279853192856989f, -0.996331953899586f, -0.323735921605962f, -0.618788277975037f, 0.314597206161166f, 0.106380963133907f, -0.235044228453968f, 0.0406899091091886f, 0.687339428801573f, 0.344837805924860f, 0.123214914005620f, -0.735264225932133f, 0.0396243248944774f, 0.270602083588730f, -0.316104623194235f, 0.201800731173529f, -0.348987679395254f, 0.994312100135549f, -0.986073454140000f, -0.787571177818193f, 0.508460947811657f, -0.443663972776222f, 0.800303477136838f, 0.712158443474503f, 0.958364684407633f, -0.0512343510942759f, -0.391095518504938f, -0.291911155637644f, 0.721770656984705f, -0.163541232110535f, 0.0366644501980513f, 0.700853097239887f, -0.508089885354834f, -0.375072588159867f, 0.161585369564288f, 0.686325557438797f, -0.113188612544717f, 0.859354598908873f, -0.723198679696606f, 0.398879124170303f, 0.139357627051752f, 0.484780500073663f, -0.0437501438537016f, -0.868783676783105f, -0.147865612288567f, -0.116480069295514f, -0.986846049950927f, -0.859405305954576f, -0.631359938031082f, -0.0310065270390489f, -0.288382201791710f, -0.500960878568203f, -0.805633068309090f, -0.837604329816134f, 0.0325253228618525f, -0.538953832190091f, 0.913844038280417f, 0.681967460199437f, -0.656775429658090f, 0.922492558885196f, -0.689527254640680f, 0.688263898240070f, -0.225450858342925f, 0.0287239965989763f, -0.407744573364816f, -0.477326718671529f, -0.780374037627418f, 0.500400378743065f, -0.532646941279704f, 0.999679272201893f, 0.136003002234441f, -0.811267727922649f, -0.585019862511894f, 0.125465493193590f, 0.203160759437510f, -0.101322607820275f, 0.543784310894398f, 0.630139383695983f, 0.775322422120693f, 0.229262447827729f, -0.656821799421711f, 0.795940998463793f, 0.263281283116320f, -0.377237794697631f, -0.714267543277316f, -0.161924029976839f, 0.804294011825499f, -0.500488029613262f, 0.716655543045374f, -0.709565530287520f, -0.260746944768714f, -0.496886497176178f, -0.896154699339640f, -0.891352204187934f, 0.0589172685048254f, -0.952496908556348f, -0.543314015084183f, 0.0724005345282401f, -0.132089156895576f, 0.694937364018361f, -0.884509342587775f, -0.944587795707932f, 0.346949362800262f, -0.587900264454839f, 0.531217960795664f, 0.404240620498887f, 0.182769547944683f, 0.804826966991636f, 0.601398794220406f, -0.767933817870427f, -0.329693990599177f, -0.880648189418561f, 0.0370834298504716f, -0.405270662847564f, -0.551993194163015f, 0.357335885219159f, -0.442910616174561f, -0.978355051725551f, -0.638907517841606f, 0.266841057307734f, 0.778698832906031f, -0.967180516636130f, -0.772940622039654f, -0.268706136695081f, -0.326082261974967f, 0.0386785617389067f, 0.576293286973562f, 0.446884000380730f, 0.396703264915684f, -0.718633572608705f, 0.586041202195072f, -0.791039546767268f, 0.556638124682382, 0.728711593864679f, -0.576551104247230f, 0.690227524206044f, 0.0451432373341216f, -0.0569690667958747f, 0.877674150343795f, -0.268602876493051f, -0.770720641807978f, 0.630269600593677f, 0.801702094819180f, 0.177071915997341f, -0.0764831522886398f, -0.476930347674815f, 0.0196833210809626f, -0.566188434097295f, 0.309890567123613f, -0.642682312350471f, -0.645839718540077f, -0.985031719881713f, 0.153028235575708f, -0.446724738384881f, -0.616280949001367f, -0.306418078463084f, 0.313048512921978f, 0.944732667717825f, -0.292311689238647f, 0.263616032352334f, 0.776777395064071f, -0.529182830991988f, -0.418996105801001f, 0.286960890623362f, 0.588336822287104f, 0.268219370126612f, -0.696727535489037f, 0.806089151192541f, 0.0396168299208206f, -0.613570658239778f, 0.358002315998429f, -0.0576147175733950f, -0.859664908314368f, 0.930793190364908f, -0.108955403960031f, 0.640347446939098f, 0.0301817512477458f, 0.508435547839785f, -0.774928250619894f, 0.254548271045827f, -0.192551571812315f, -0.401867317012389f, -0.136220787532581f, -0.480363308055205f, 0.146599399729624f, 0.225767301672040f, -0.207158678688912f, 0.763491487133281f, 0.161192803873192f, -0.574968151683314f, -0.454043408746924f, 0.427131132989065f, 0.170648543751820f, 0.0690597676805780f, 0.0360172652133248f, -0.244429817416531f, -0.973014074152018f, -0.172642279134011f, -0.798684796670922f, -0.622626145444778f, -0.743408670602069f, -0.316057396003030f, 0.908608689971065f, 0.948356574904685f, 0.573858539226522f, 0.457065605245418f, -0.246203048690671f, -0.750525340546383f, 0.612971646035183f, 0.951528788403619f, -0.529776510809815f, 0.0886901849846271f, -0.0254136796699882f, 0.978897595553096f, 0.293893753097695f, 0.620217642132267f, 0.862352989549627f, -0.379040515436326f, 0.790157871471479f, 0.147151952442201f, 0.688271487774812f, -0.897847532497188f, -0.0355337105008888f, -0.850253422176695f, -0.0354384862653523f, -0.625796807949394f, 0.851730076897135f, 0.294773618291289f, 0.834287219330433f, 0.0758749738551283f, 0.912613321307355f, -0.326698079590551f, -0.844748577890143f, -0.685263599922107f, -0.197029963909655f, 0.591416614029013f, -0.130921826828109f, -0.524292687689084f, 0.356220524225632f, -0.150091552835503f, -0.935232109847821f, -0.302103008478127f, -0.998557516519010f, -0.477012685701094f, -0.882343341754284f, 0.210797034143964f, -0.963566378978947f, -0.855600913755685f, -0.790231379847513f, -0.625235937382084f, 0.106405105589857f, -0.760544427202586f, 0.0103124858505332f, -0.610157345750845f, 0.968354521575116f, 0.602472069136318f, -0.216458111191680f, 0.935180184275450f, -0.369261245032360f, -0.289325139062185f, -0.772389696964545f, -0.345513639348744f, 0.135539262008296f, -0.747409495863324f, -0.849724942811800f, -0.739393030129744f, -0.0301380087411172f, 0.373808817820448f, 0.760444548005323f, -0.365739960428504f, 0.121859476627292f, -0.719257541809299f, -0.136914676340304f, -0.178479405732130f, -0.336676444507223f, -0.795056125367297f, -0.0872862684496700f, -0.950510559362909f, -0.395266512078238f, 0.636773305385949f, -0.150667208767723f, 0.534401287220298f, -0.349371424663528f, -0.784729313810243f, -0.0510904599006878f, -0.938702345462904f, 0.616929636007953f, -0.228578318449040f, 0.239101663221907f, 0.0390879233281141f, -0.294705782740043f, -0.847928516841798f, -0.0480433695823821f, 0.487351505367245f, -0.820736333448301f, 0.128692585024021f, -0.305133215914817f, 0.344900079505924f, -0.764316168982242f, 0.717529584295197f, 0.655848670831377f, 0.479849611138232f, -0.107624564628078f, -0.345816374073252f, 0.0822414215758816f, -0.0120870567528208f, 0.475870901669481f, -0.00594923432583361f, 0.869227669945672f, -0.262862047504512f, 0.272430399676396f, -0.734262318791166f, 0.980593493214018f, 0.110413869658192f, -0.732486564250777f, 0.470756873196238f, 0.897133387901917f, -0.151953973158384f, -0.591296220619271f, -0.113167158942796f, -0.103020520738423f, 0.220384226627647f, -0.0570027879342681f, 0.0923157145066511f, -0.523010309215342f, 0.385053964060568f, -0.223938668105458f, -0.0566497019068211f, 0.636390081595965f, -0.753651530578004f, -0.765450358896516f, 0.790370075460245f, 0.622949415286967f, -0.0947634056426396f, 0.122381201893998f, -0.138573523511105f, -0.544298107235542f, 0.535416341314523f, -0.341107295330707f, 0.266262786345860f, 0.620108481133049f, 0.190424987800150f, 0.978559599202704f, -0.925772919482004f, -0.300038300695816f, 0.963372836978511f, -0.501235224357981f, 0.828375446308031f, -0.595716120481773f, -0.889271354193173f, -0.389843123593065f, 0.659433696092409f, -0.633476165557619f, -0.708607689555741f, -0.737738480460783f, 0.985245299432648f, 0.976853985813928f, -0.863072444190232f, -0.785830171723126f, 0.309433061520758f, 0.166813366328975f, -0.552916412621405f, 0.0385101740167735f, 0.445866961855263f, 0.222557362424800f, 0.0710515871571971f, -0.368563489700928f, 0.317406114361191f, 0.326902000037272f, 0.868261309598320f, -0.897838476369198f, 0.664364291232529f, -0.373333343843574f, -0.599809263387549f, -0.411236387818613f, -0.118186587264933f, 0.544960929851182f, 0.395925813072269f, 0.337332244255533f, -0.0195528742963547f, -0.580383437020279f, 0.0779554182143842f, -0.902635825594202f, -0.821554429188969f, 0.869996816042779f, 0.646142135585380f, -0.0824693320525758f, 0.643317857725100f, -0.903892480205129f, -0.457595546004975f, 0.540461917564665f, -0.467530238695992f, 0.107497588388074f, -0.122360487746121f, -0.276968072230331f, -0.436413500733568f, 0.0719555518906898f, -0.794937479672675f, -0.641344733876686f, -0.934734152781945f, -0.0610463967348016f, -0.302623058375597f, 0.281116298309257f, 0.557459622053789f, -0.350054779110337f, 0.681853624031498f, -0.0454067482892435f, -0.897204174835461f, 0.0289327275291300f, 0.664312739864751f, -0.368814604980581f, -0.576946854776660f, -0.187886132141311f, 0.424385580259236f, 0.257994303715228f, -0.567650112011742f, -0.0453371545575014f, -0.362909825264387f, 0.450095578912812f, -0.713870209574945f, -0.956583539581944f, -0.969891699048729f, -0.417755773448598f, -0.230738535348142f, -0.153353095644968f, 0.539368458440622f, 0.591116036659417f, 0.779095541288385f, -0.578525766017613f, -0.587777137316663f, -0.301051260910212f, -0.319655538885669f, -0.343495369437935f, 0.908167583226333f, 0.764220052027033f, 0.0536418758245909f, -0.0529753241803754f, 0.249066042857931f, -0.840152142252005f, -0.529971459254312f, -0.449462194610696f, 0.467144819001113f, -0.500103828192601f, -0.758390449663076f, 0.369740436821770f, 0.189153926151852f, -0.188283227959439f, -0.427563759945909f, -0.186773725840825f, -0.00989853573399446f, -0.783648829817413f, -0.626450875837851f, -0.328015817185970f, 0.760383401930071f, -0.00804531008117837f, -0.982799468341000f, 0.392730506677802f, 0.117799138097530f, 0.351088974844522f, -0.259750164530173f, 0.776495358243216f, -0.703059519879109f, -0.362866233240751f, -0.421345310205860f, -0.818968876330675f, 0.936887497269786f, 0.713300632813635f, 0.916608801523944f, -0.147818975792564f, 0.317064988534009f, 0.885779227314381f, -0.897706599297367f, 0.685423132064732f, 0.907830438936990f, 0.0636614655685575f, -0.423018627861747f, 0.411565657893159f, 0.911060408474647f, -0.617833142759668f, -0.709543522964145f, -0.817633731247023f, -0.252433983274424f, 0.160456393103956f, -0.160765428576997f, -0.622001061437904f, -0.470257555319641f, 0.790643274059634f, -0.648181378655916f, -0.828694900506363f, -0.0234091767546987f, -0.562865077760768f, 0.369299949506391f, -0.423850142805423f, 0.520699811923658f, -0.877662359466779f, -0.739844704434180f, 0.300520939787139f, 0.0655718600121620f, 0.970843358712180f, -0.634231195336845f, 0.324880041395596f, -0.479089635857354f, -0.196422753715449f, 0.568762754402869f, 0.699215376070842f, 0.445741923102597f, 0.679868900756090f, 0.107609859752086f, -0.980983474461865f, -0.788419140653730f, 0.0696289436185713f, 0.00330944186568516f, 0.392265626672398f, 0.803469542460994f, 0.131029913648810f, -0.845408454497170f, -0.754797811352229f, -0.824208086798235f, 0.510072775586974f, -0.809491727769575f, -0.0228491196350333f, 0.920014947791232f, 0.441066319826495f, 0.969846842038360f, -0.199024726691046f, 0.886564290041856f, 0.203997575245743f, 0.481547443573126f, -0.637742489331117f, 0.0664642070998316f, 0.109187062068770f, -0.952676759642045f, 0.309247049771982f, 0.880534651306060f, -0.269363005485603f, 0.280012695899358f, 0.853031642671923f, -0.216236966392235f, 0.903180305900435f, 0.837949615815047f, 0.748563816043584f, 0.266735542018788f, -0.685176037557414f, 0.505893787666761f, 0.977721983069541f, -0.667151469253569f, -0.451774081267849f, -0.385755850727233f, 0.681037251596535f, 0.550130384863457f, 0.704080312734731f, 0.519624533199220f, 0.789651392050294f, 0.176325856625025f, 0.684011432098839f, -0.469125761119035f, -0.841814129063957f, -0.901473334652527f, -0.117747872709914f, -0.608533033968273f, 0.199709646080986f, -0.349430401438670f, -0.435162733168206f, -0.368150014673779f, 0.699084004342174f, -0.446068942643995f, 0.197420740774886f, 0.524893584115327f, 0.706475758890142f, 0.912020785879679f, -0.820472223153770f, -0.334742316079635f, -0.851724976994477f, -0.702164662784812f, -0.649654462810552f, 0.411435475616403f, -0.0438368033650360f, 0.799231452421757f, 0.713371883779316f, 0.252437083518609f, -0.685658163265283f, 0.0734649179831324f, -0.400549431226783f, -0.415602545578540f, 0.233864615718965f, 0.828846528739923f, 0.606577491175688f, -0.266016048272811f, -0.619106744484090f, -0.690853262778644f, -0.503499724631377f, -0.409761822901473f, 0.0576293548519007f, 0.551582021066584f, 0.132631452787255f, -0.838228405334512f, -0.107475742619267f, -0.875306852866273f, -0.184700469068763f, -0.317074087896838f, -0.580912620700556f, 0.453916157844897f, 0.690470988649940f, 0.712835197480083f, 0.314786689622726f, 0.759835688452120f, -0.671090442836235f, -0.408277610289776f, -0.815988422173708f, 0.227854929660384f, -0.0482646895577266f, 0.968141192561708f, 0.373896367655818f, 0.820435826598941f, 0.817746838197885f, -0.0970819110331989f, 0.679170154451559f, -0.577986561676471f, -0.0523570914231941f, -0.776930151133931f, -0.560456597170701f, 0.927747720961181f, 0.0350177837302503f, 0.844938034137843f, 0.00849044473190053f, 0.325089161670337f, -0.851825175889265f, 0.835251667623832f, -0.266397917890485f, 0.108463887056499f, -0.817868888235156f, 0.590399913800720f, 0.699274619715208, 0.200782223352391f, -0.936155874445214f, 0.218471971175575f, -0.890402779861849f, 0.268496441855317f, 0.881231954583528f, 0.279360358017994f, -0.492400368838405f, -0.894376670076375f, 0.585129064098519f, 0.340135248071744f, 0.455880107692993f, -0.861081993524584f, -0.303321115935151f, -0.562781799622214f, -0.526041750296426f, 0.999581943964160f, 0.249814139040315f, -0.0537475603822974f, -0.845239239849439f, -0.874024176808607f, 0.997751771128387f, -0.861617607547820f, 0.671357923629889f, -0.687974310115279f, -0.969462039056016f, -0.448304961870341f, 0.713064428261850f, -0.00718668165564318f, -0.450608596544700f, -0.106059234376561f, -0.591961308554238f, 0.588633089685867f, -0.755341317752403f, -0.542715401462936f, 0.759199260356047f, 0.0297710796506234f, -0.997343196630657f, 0.574076752994254f, -0.696719940193256f, -0.852227517176613f, 0.906332566627663f, -0.171801252847090f, -0.925131151948528f, -0.0212194634560026f, -0.940316444070044f, 0.262965279952363f, 0.902198615594563f, -0.265057066430189f, 0.161983092277652f, 0.0181345459457500f, 0.467973650469608f, 0.857351800575040f, -0.889882538061811f, 0.728868283859490f, 0.671187732362764f, -0.296882575397444f, -0.793099233276668f, 0.335561922676737f, 0.0671874495572633f, -0.0857142329385701f, -0.352870876674233f, -0.119927139078065f, 0.814127111105761f, -0.323910302649634f, -0.313495077982818f, 0.0690526899468447f, 0.877155536890319f, 0.768040884649443f, 0.158910636324140f, -0.824414709871474f, 0.00718921022841235f, -0.868917281154898f, -0.564967532196669f, 0.206261416621150f, -0.0699574404456100f, -0.0547095858591442f, 0.811674902353136f, -0.562993920383635f, 0.441212008804309f, 0.917951119557396f, 0.915571961092301f, 0.0901952529553498f, 0.614118141118295f, 0.760473529905706f, -0.566505475760865f, 0.00880029006400429f, 0.975626259597421f, 0.370738159620831f, -0.0242162976348563f, 0.828887690189252f, -0.665240810020082f, 0.00123256686221063f, 0.184020074202841f, 0.829917510366750f, -0.447854906466885f, 0.529356328938248f, -0.995192699858126f, -0.843748622724646f, -0.422765372440245f, -0.386179414096638f, 0.206325400140261f, -0.369817591904938f, 0.266933785902425f, 0.892617584642659f, 0.740018647415220f, -0.481907279471296f, 0.248268418729551f, -0.382770749117505f, 0.974424303757207f, -0.879320252286332f, -0.0294961755317245f, 0.638693329623790f, -0.765127178629299f, -0.160881380476610f, -0.725001019123526f, 0.00294709357263234f, -0.701949969294570f, -0.708933381768328f, -0.463893635537772f, 0.476650147791524f, -0.206043208566879f, 0.223011684523516f, -0.258637160422673f, 0.206325908651728f, -0.432336904344548f, 0.921979975841259f, -0.944396630315761f, -0.00680582426415510f, 0.319263487872783f, -0.836389324192867f, 0.111532890274445f, -0.938142383682239f, -0.637288670131655f, -0.834211558255576f, 0.251969378874330f, -0.970874587083192f, 0.831662411079802f, -0.446568187924869f, -0.659109068071113f, -0.877869176622375f, -0.890670252448197f, 0.477602927742628f, 0.324737705007923f, -0.147513413112549f, -0.186594638422632f, -0.282864808082840f, 0.745093922271927f, 0.915500859154332f, 0.0421588655873384f, -0.483320910754088f, 0.00503734690385604f, 0.555792895688253f, 0.129412601050279f, -0.229347983583150f, -0.680101211823600f, -0.866063899229274f, 0.437769924839021f, 0.133958234316391f, 0.589233411145099f, -0.498053917701437f, 0.180863681584405f, 0.525955777469479f, -0.581250985307273f, -0.327934857804250f, 0.482381204171926f, -0.867703472610278f, 0.833733008515087f, -0.607761820334944f, -0.758512235503178f, 0.0380785706067470f, 0.719862150842292f, 0.651283470517919f, -0.614218162858801f, -0.239754124815405f, -0.733992057859951f, -0.422541764223845f, 0.951215428883086f, 0.882569470276544f, 0.937054481646402f, 0.184532408731968f, -0.104097666585483f, 0.693277433170057f, 0.800241936558839f, -0.998230532922071f, 0.259835639125661f, 0.562745639592536f, 0.220441127510705f, 0.313735993201991f, 0.330940415696351f, -0.602872424656300f, 0.841677792852844f, 0.749701489563795f, 0.266727039860087f, 0.696379094133993f, -0.430719144952456f, -0.276768289732264f, -0.0872580230244173f, -0.722033206227688f, -0.837309584159114f, -0.629739366225350f, -0.185692585028452f, -0.110619837317415f, 0.515881116042359f, -0.105875685978079f, -0.513700186568578f, 0.961245417898430f, 0.655513716233953f, -0.0921704793645632f, -0.694925472850399f, -0.872174817305748f, 0.0307133806779607f, 0.531120672076921f, 0.965271277398122f, -0.00974420246777163f, -0.497322783064087f, 0.693565685926388f, 0.546918707342947f, -0.230039497490898f, -0.316024461029338f, 0.684231559582941f, -0.306362794944468f, 0.861366189035942f, 0.378922635334764f, 0.259443877770437f, -0.838617128408830f, -0.205350631644011f, -0.139772960377519f, -0.192918167939180f, 0.602404904043886f, -0.537407583974730f, -0.877007125624351f, 0.361539942609439f, -0.732030207831016f, -0.488792995226420f, 0.612591017966442f, 0.567185560938756f, 0.195543595335781f, -0.428955670554558f, -0.666590144318038f, -0.702467396810860f, -0.894350832807439f, -0.0620405855731709f, -0.583114546325259f, -0.482155957064968f, 0.212152442925647f, 0.112603107288251f, 0.0683986906619714f, 0.639176340917929f, 0.642610005510521f, -0.708605273163374f, 0.739594669131005f, -0.492786220480274f, -0.308196102291547f, 0.918748221553053f, 0.186736140989674f, 0.438437026242591f, 0.638769573344929f, 0.928896220524135f, 0.579945520523175f, 0.218608554904045f, -0.526070140579576f, -0.140303420071590f, 0.304347769360423f, 0.488123173638490f, 0.987207018313181f, -0.536397951752998f, -0.553296120219359f, 0.184294880372153f, -0.101502970339396f, 0.287041514309517f, 0.658172721877726f, -0.270141883431914f, -0.0196021946303913f, 0.000779126872975988f, -0.0500294515684538f, -0.588505226599557f, 0.550916571982769f, 0.703271386531766f, 0.982335628009701f, 0.942133544852489f, 0.690741953320684f, 0.0466423349204477f, -0.941178278727504f, 0.121655023640973f, 0.777925151322362f, 0.132430336075323f, -0.114812120408198f, -0.694094073965245f, -0.441397675924967f, -0.187253074701348f, -0.672248118097589f, -0.688869123609503f, -0.0723581859661586f, 0.553779536791160f, 0.380610143087564f, -0.392032089052147f, -0.709403552653908f, -0.607184251637473f, 0.698227587629545f, -0.272885954851784f, 0.0736609147840435f, 0.687106303730018f, -0.230362931709251f, 0.393640839382244f, -0.846905732907407f, 0.0727598538725249f, -0.0119849190815611f, 0.470122652313157f, -0.171681529301612f, -0.329268850654460f, -0.433013841687086f, -0.943499527192280f, -0.123404693276305f, -0.0861435714812342f, -0.228816973160929f, 0.0531549757963279f, 0.901446101051298f, 0.470738280922993f, 0.238383552115632f, 0.292841887198914f, -0.617423653544601f, -0.865786115828523f, 0.586332203179351f, 0.267618252846898f, 0.888575002575769f, -0.0220649407038027f, -0.946385428026066f, 0.317436113017866f, -0.277195072909682f, -0.207326502081016f, 0.735387675940421f, 0.961386190882120f, -0.564038045970629f, 0.840007249305217f, -0.262593952346269f, -0.556378761937190f, -0.346529850864238f, 0.00895460576800877f, -0.695431082536551f, -0.105261635693881f, -0.658342101938401f, -0.631093613961188f, 0.601639903111316f, 0.886830692209879f, -0.600591324826329f, -0.350296019796741f, 0.294348102011741f, 0.555826495708193f, 0.216370653207427f, -0.672654026881445f, -0.572202359802723f, 0.202776438466314f, -0.490708964058038f, 0.0148723360197853f, -0.799031226692943f, -0.221164759306209f, 0.0323674121757880f, -0.130290693568615f, 0.613592603765503f, 0.372755498065474f, -0.540502917956863f, -0.740021877141017f, 0.652888612951242f, -0.666157898478327f, 0.476156241264794f, -0.632081251666311f, -0.538341981270842f, -0.275717185193560f, 0.332983363477103f, -0.989659450166330f, 0.212868816589688f, -0.238985653168422f, -0.453005976359810f, -0.805975530848911f, -0.948192632970312f, -0.291329963979224f, 0.549811667826684f, 0.291147979443248f, 0.909805561757383f, 0.0728533843443158f, 0.737767652888933f, 0.605331616290165f, 0.274826946403577f, 0.710517586349601f, 0.666670055891909f, 0.522059053677516f, -0.553398792071804f, -0.406610321679562f, -0.893232547853708f, 0.549587730399741f, 0.714498083720551f, 0.281833380830291f, 0.652788061587949f, 0.825163748516741f, 0.381299333971584f, -0.485549061474930f, -0.881961689917888f, 0.308937809723222f, -0.524542880617761f, 0.329114405956449f, 0.434631551667457f, -0.894732322264538f, -0.831528385961058f, 0.669760583803638f, -0.674650675537928f, -0.373119878846435f, 0.456602566684508f, 0.387804792569985f, -0.556983911869482f, 0.000826745899317194f, 0.687973801099889f, 0.0471935422816141f, 0.0768302380434509f, 0.317557055919800f, -0.823316513699125f, 0.394699119350099f, 0.609556161256400f, -0.0413041171293194f, -0.244100882405517f, -0.939678976894569f, 0.403390183804743f, -0.933567523933859f, -0.331149894636631f, -0.0265881324103010f, 0.224249195386459f, 0.888271870759308f, -0.119845268644579f, -0.357275416804345f, -0.597001288429956f, -0.486847206619720f, -0.181232488650601f, 0.115441291842326f, -0.599055795186955f, 0.213179364205327f, -0.205238322081458f, -0.373942142629613f, -0.610680997090469f, -0.495737765362772f, -0.257634306994249f, 0.583708320566486f, -0.372047136603982f, 0.953878668619925f, -0.632595987923462f, 0.452049761997455f, 0.166602807787896f, 0.773555002555059f, -0.277154387560832f, -0.557129156714301f, -0.985242402457283f, -0.441173064787937f, 0.561221765682284f, -0.352004972295446f, 0.970292440826449f, 0.855523836321424f, -0.528113079339624f, 0.685454746939680f, 0.322200261898966f, 0.953249967336372f, 0.825673980624808f, 0.177229970128320f, -0.728281956776614f, -0.479030792350269f, -0.00697019557862144f, 0.851652517094715f, 0.853865750362844f, 0.514736989335681f, -0.943509205199198f, -0.0524009027225623f, -0.0798997671509367f, -0.355414349557791f, -0.366273957594958f, -0.565729285138989f, -0.931573923976439f, 0.345119269147864f, 0.638375370217726f, 0.711524360229150f, 0.331664704859388f, -0.986788646426241f, 0.521200596781614f, 0.656290865944842f, -0.436907564088290f, 0.305075696150381f, -0.848337345127939f, 0.354044695448027f, 0.690691708552038f, 0.900352213238582f, 0.475181192463882f, 0.219103309687964f, 0.885437995493547f, 0.421455288320496f, -0.879874221804522f, 0.893371290952196f, -0.545214090169942f, 0.800731783168682f, 0.249421864783476f, 0.0766192343033301f, -0.745747520609971f, -0.613575150364454f, -0.700199720327423, 0.0694373671332735f, 0.759953164582251f, -0.0973030480378387f, -0.298615297250225f, 0.0176506580013247f, -0.269562553201540f, -0.405489169051539f, -0.00491991297033256f, -0.0327449030548885f, -0.688168836745951f, 0.703014457338754f, -0.0909491575673764f, 0.738417882180070f, 0.202377973915515f, 0.338436193625848f, -0.408790267504483f, 0.611776208408261f, -0.711043784659083f, 0.841495665411188f, -0.0445715899008592f, -0.127281559164749f, -0.778797832908623f, 0.210344625249896f, 0.287086540530447f, -0.703702357088620f, -0.151146112491418f, -0.785180444786487f, 0.427963227387140f, 0.873814130606035f, -0.344356753075357f, -0.755726746591465f, 0.846013365191461f, 0.126678120904524f, 0.166687962199295f, -0.148273386834835f, -0.770559345875477f, -0.999129219024862f, -0.223692721084046f, -0.652712854614213f, 0.468054498362978f, -0.911782175948953f, 0.555084850374905f, 0.103972972463380f, -0.414021910330282f, 0.938793897617340f, 0.515461292224815f, -0.127677414947037f, 0.510661477088580f, 0.898409443447962f, 0.528096097102698f, -0.444620870908750f, -0.275909952832928f, -0.516074838791812f, 0.110104492330694f, -0.293114842926621f, -0.596621371059734f, 0.152807456749103f, -0.592864305196648f, 0.948295231208874f, -0.575278847840010f, -0.312463646261757f, 0.664597237604897f, -0.177619554099550f, -0.932259652303036f, -0.295074750863924f, 0.731539128777660f, 0.860409131570119f, -0.0947206503071862f, 0.106073387018718f, -0.235389180430490f, -0.494787189603633f, -0.536357147973158f, -0.680862001049455f, 0.618979489665256f, 0.613893487415732f, -0.308605775713246f, 0.694789556987429f, -0.440049894326668f, 0.908690328690240f, 0.233612239829512f, -0.190662564463532f, -0.344799878911344f, -0.185877286582818f, -0.553543917790750f, -0.859543533414720f, -0.996044831818542f, 0.0388505104043095f, 0.650508591477642f, -0.425233346101631f, -0.576839967180874f, 0.378730359294024f, 0.531713629917424f, 0.506096660522796f, 0.854779196325727f, 0.725302682547051f, -0.414685510902716f, 0.654208477287561f, 0.580368151427426f, -0.000356066597174687f, -0.897393734991154f, -0.845565244312410f, 0.615044057364182f, 0.0434592638759266f, 0.342119048500289f, -0.696414680186901f, -0.713269554140146f, -0.580866925323696f, -0.290886355957456f, -0.473082507703548f, 0.517942229000179f, -0.846159512055215f, -0.715410253368047f, -0.526272663742330f, 0.114004124940380f, -0.207397773975621f, -0.920379649009572f, -0.277970833475531f, -0.636533427057722f, -0.972531734576472f, -0.687000156900366f, 0.872752357637196f, 0.617872391924648f, -0.835274231587444f, -0.383282792481497f, 0.399233665040770f, -0.191230601890140f, 0.620222785371960f, 0.106379326744619f, 0.987222511696630f, 0.219022023664391f, 0.179689082166371f, -0.961619514581522f, 0.570178582343486f, -0.811091514477978f, 0.924484469376845f, 0.744507591138529f, 0.272936430096096f, 0.0646316580619510f, 0.314005111302676f, 0.558833629327024f, -0.329744916784918f, -0.544045568909541f, 0.895769679770795f, 0.798125821580789f, 0.877473384028199f, 0.616163339432501f, 0.441057381106904f, -0.642498173762053f, 0.989059595616979f, -0.374771110304453f, 0.480877593471524f, 0.904941689893360f, 0.428742160807762f, -0.430483645585549f, 0.0830560957640680f, 0.694220841170708f, -0.602964792788891f, -0.522672782287498f, 0.717494777479591f, -0.918002255923909f, -0.454075191574169f, -0.378662039464110f, 0.221482629450150f, 0.750918040362614f, -0.636211037178780f, -0.254529141198887f, -0.944623201010144f, -0.720775773991847f, -0.674641067104323f, -0.208243950413264f, -0.959488786545901f, -0.619966503980330f, 0.599486634018692f, -0.0955439064236721f, -0.458181000169795f, 0.736914498713083f, -0.176789993854223f, 0.676652697410790f, -0.967275583857650f, 0.319377813603719f, -0.427030468653864f, 0.0670640089595258f, 0.769945699222976f, 0.767923203047440f, 0.985790354694142f, -0.207111795449682f, 0.219134401666738f, 0.548513609112215f, 0.977227384558063f, -0.198131173309759f, 0.914163808432723f, 0.178214485462450f, -0.240590252223318f, 0.356128697574950f, 0.453093488702627f, -0.0401152114159198f, 0.818060948361957f, -0.880551400213416f, 0.631519794065582f, 0.658832307703964f, -0.179752451562622f, -0.237844011105596f, 0.739834592198990f, 0.711355594921083f, 0.774856912009109f, 0.321864249971600f, 0.470574585274056f, 0.261964793641569f, -0.634481134262705f, 0.461363065389595f, 0.0879014163867016f, 0.698353456328335f, 0.0611830044908546f, 0.918599000791453f, -0.147822590771951f, -0.208296009525534f, 0.775436805889909f, 0.0380914463017457f, -0.954468558268744f, -0.620451283908529f, -0.770251739379244f, 0.772246778681563f, 0.326462458587915f, 0.417738473564738f, 0.0942643452092895f, 0.486153909005530f, -0.720202618855819f, 0.0172425211828453f, -0.460430186764708f, -0.582933725313246f, -0.439721219285309f, -0.694337374508112f, 0.493516461453915f, -0.993527345413430f, -0.562763570629586f, -0.0644937992008268f, 0.741476357523546f, -0.668588797988340f, 0.594184164979780f, -0.605220767543645f, 0.110074204567278f, -0.599398769115359f, 0.723882026196765f, 0.678747828159456f, -0.608589528492249f, -0.881419419882399f, -0.139357674240927f, 0.873828011683502f, 0.314798068434754f, -0.457017849147976f, -0.526003289738433f, -0.411404919696823f, -0.792254466556923f, -0.299635866135236f, 0.0102316480137963f, 0.161921266554201f, 0.981427028530907f, -0.647351555346480f, -0.183312260273700f, -0.348651484808239f, -0.198142718294920f, 0.589869434168343f, -0.201926511662287f, 0.0337896878721506f, -0.0276515055864679f, 0.236943449722327f, -0.473103622922213f, 0.954358213176107f, -0.536519478008862f, -0.603363977756898f, 0.776267386457251f, 0.780662223932714f, 0.289187291033147f, -0.439954328280331f, 0.0429585232791456f, 0.457321950803212f, 0.236810565417317f, 0.167393310927116f, 0.634521586990289f, 0.154409349572581f, -0.750588956901316f, 0.862647670558265f, 0.800182258889404f, -0.342011510602950f, -0.102697321575297f, -0.797254530582515f, -0.718599505627591f, -0.729105921762328f, -0.152424255231618f, -0.702781451563249f, -0.0212710413372206f, 0.961258625954530f, -0.598484979483616f, 0.188043416567111f, -0.511990501189325f, -0.437449883017104f, -0.352443017251219f, 0.0991554004559394f, -0.663282401319921f, -0.835139403797870f, 0.587602722898819f, -0.939771062270554f, 0.613878515061637f, -0.523857415147229f, 0.444842501987166f, -0.297001528475358f, -0.914581150341453f, 0.554844832376064f, -0.816400014706997f, 0.823726509832068f, 0.704425080572720f, -0.819397910034912f, 0.999003444973468f, -0.968751535943602f, 0.0311500939174130f, 0.247867291448898f, 0.835560943875924f, 0.169794916341582f, -0.302041142019408f, 0.289549413666482f, 0.672141268085176f, 0.947060095876251f, 0.324754171403184f, 0.800014020753458f, -0.785428883146460f, -0.463092135879982f, 0.659192831110219f, 0.118301326248760f, -0.542297334341874f, -0.335957421787428f, 0.794808066256455f, 0.625133567458879f, 0.227917183877260f, 0.533557157748932f, -0.948877884679630f, 0.186417887458649f, 0.859592912781013f, -0.0183320237921572f, 0.967066787435574f, -0.141349529637213f, 0.958107445094614f, 0.264359167622140f, -0.631325355674829f, 0.684598042547604f, -0.527467468151933f, 0.294659298854560f, -0.439220168509424f, 0.391038218778621f, 0.0155669207052447f, -0.681384294454809f, 0.146739459198561f, -0.756404876084652f, 0.381192113543008f, 0.442850940158445f, 0.964002016096921f, -0.0507253848694798f, 0.563462880019551f, 0.190980650425415f, 0.482598778123453f, -0.273426091300166f, 0.980640722167518f, 0.198298590133615f, 0.678100193958147f, 0.530416610025615f, 0.196483886579908f, -0.00515783872303177f, 0.0273438459465027f, -0.257248394117661f, -0.576964504105195f, -0.331030677719652f, 0.389178134459083f, 0.0714066784585938f, 0.915179137858455f, 0.529738860096996f, -0.0851681338619263f, -0.692212896293625f, 0.0786352959300358f, -0.122712774017974f, -0.154641019547052f, -0.487537192251297f, 0.0435645872670241f, 0.856938631597551f, 0.351874085305670f, 0.708100804109985f, -0.701200509799317f, 0.0804479422214388f, -0.0794375302823220f, 0.543751723132725f, 0.346144383452864f, -0.680373368944156f, -0.572281173045994f, 0.237981706511708f, 0.0671482960376590f, 0.852393956008547f, -0.301262907769845f, 0.523762878044853f, 0.0885512158718469f, 0.885168455552951f, -0.333351382431635f, -0.914187358461713f, 0.657220242471575f, 0.202238670865175f, -0.660684692864216f, 0.641271628674064f, 0.795923699912913f, -0.332641448887164f, -0.297595219329770f, 0.427283618553541f, 0.601893958036382f, 0.355248259075043f, -0.420766820174961f, 0.355159952778514f, -0.806733697216087f, -0.694403711049608f, -0.719250654428532f, 0.580487742419744f, 0.959156165420351f, -0.941898541689400f, 0.960568821753178f, 0.119007749103819f, -0.973468502734443f, -0.627534816021182f, 0.331394418445345f, -0.415230278112412f, 0.225355270950915f, -0.216818510922154f, 0.716553646689289f, 0.149097723527982f, -0.212491921692561f, 0.681645638056938f, 0.675358683729395f, 0.0591550775861416f, -0.221626142364110f, -0.235878877821190f, 0.168188057112471f, -0.709738432254387f, 0.842890391064944f, -0.331175752377862f, 0.231375360302226f, -0.714989093452242f, -0.492645353426504f, 0.552424848261518f, -0.436987392663331f, -0.336155191719795f, 0.137666231065822f, 0.739347397348610f, 0.493222787180627f, 0.283646543313800f, -0.603522923409923f, -0.474181275984451f, 0.249315354427624f, 0.323736714335287f, 0.933612934150728f, -0.651555022796413f, -0.743229221575077f, -0.648309364385349f, 0.115117716036212f, -0.0689988553878600f, 0.0394979772968704f, 0.732729774997258f, 0.487584669162102f, 0.808754952095239f, 0.827617962775983f, 0.550826738558347f, 0.890858298785235f, 0.152998196795770f, 0.401198245071198f, 0.187173931669199f, 0.576387011979054f, -0.464903903379260f, 0.735172244343599f, -0.0393734341215035f, -0.501927105416023f, -0.852926247859480f, 0.384774001880198f, 0.723957370923565f, 0.869614310250896f, 0.698124990202440f, -0.0618370378422302f, -0.273879540781302f, -0.0745005910544518f, -0.754408143155094f, -0.859084370639359f, -0.709011936778905f, -0.883595552533659f, 0.326386065122049f, 0.756686513420982f, -0.639817612043620f, -0.536531544653662f, -0.596858657734988f, -0.187117983404806f, 0.760208405412209f, 0.191383034225783f, -0.771443976174702f, -0.371171018178012f, 0.723338724416329f, -0.325113980261468f, -0.652823731845602f, -0.902765567501679f, -0.109945188610355, 0.863727536109734f, 0.762531987550249f, 0.484671237555863f, -0.376731181566557f, -0.961176245257487f, 0.374503763045540f, -0.275274129954644f, 0.947951135663002f, 0.891610575724484f, 0.233179187366345f, 0.868694446846928f, -0.201812205484274f, -0.676342903796604f, 0.962133604967067f, 0.0941637112283598f, -0.0856261317646829f, 0.375061189807232f, -0.275342940020193f, 0.0614298144531287f, -0.183234253182376f, 0.146964792162229f, -0.307180215012337f, -0.139123531176191f, 0.130840221889238f, -0.0654726742084248f, 0.988722897887987f, -0.805684911622576f, 0.763299463922693f, 0.148136188784880f, -0.432183160161832f, -0.592185939638987f, -0.593835208842770f, -0.366135084813261f, 0.840566739882685f, 0.572052978307971f, -0.825682529425410f, -0.970222226210689f, -0.554421263584439f, 0.324648156825255f, 0.0472246837302466f, 0.168098848238140f, 0.00634984653176796f, 0.850237261066903f, 0.286624344510407f, 0.196043215794080f, 0.289161416244007f, 0.334801090322515f, 0.871286740072183f, -0.754609531300255f, 0.623871003889383f, 0.0843430009639772f, -0.736369938040848f, 0.400507674511444f, 0.816325383600297f, -0.500667496861800f, 0.453092855162135f, 0.281798170796444f, 0.631969623501011f, 0.472467114651372f, 0.525988741184527f, -0.124862967293674f, -0.882904489381606f, -0.501090007558747f, 0.631622297793485f, -0.0234210285578584f, -0.521093811962915f, -0.0402368492672573f, -0.762999364505356f, 0.948716268452360f, -0.572740830308272f, -0.261042904339051f, -0.506108365537530f, 0.585933508412429f, -0.362463094458446f, -0.885375028242576f, -0.835757117571791f, 0.337250829139564f, 0.298618238243588f, -0.744903291826588f, -0.979848674056393f, -0.488518944548476f, -0.000297116577397283f, -0.137863396173336f, -0.627207234158244f, -0.970417810284170f, -0.601487862773028f, -0.999527775716382f, 0.116672274325216f, -0.786330829714504f, 0.740118245374718f, 0.856485463622646f, -0.555144930193560f, -0.0168912375666686f, -0.774544329159697f, -0.782767315598991f, -0.600844843420598f, 0.885816107471180f, 0.577075799078571f, 0.663829997048111f, -0.359000184287277f, -0.390009578642891f, 0.202240602818017f, -0.0191477232064394f, -0.566459499064884f, 0.288883557382261f, 0.962583478738218f, 0.782123756762393f, -0.312311582870785f, -0.749354208187204f, 0.205679267602357f, 0.804004517387718f, -0.733078779233144f, -0.426195645938973f, 0.686872484317089f, -0.398704803137823f, -0.267786412313359f, -0.374306263341615f, 0.632992513422251f, -0.972217744254910f, -0.167080739523409f, 0.608176739669718f, -0.935550125875275f, -0.422451600932096f, 0.499643952974426f, -0.491034978653149f, -0.0256130378373849f, -0.158669355267388f, 0.360503946885584f, 0.227714934784132f, -0.138648043280479f, -0.0707461296301128f, 0.0638330442765616f, -0.168811643868974f, -0.575670642767690f, -0.162143785491822f, 0.528621079903453f, 0.581283330394272f, 0.444430744183000f, 0.859288341846780f, -0.170487584890459f, -0.440175706710406f, -0.184806402672108f, 0.676010805169568f, -0.0117535553470483f, -0.231606756742133f, -0.210042044569361f, -0.517950708003565f, -0.805772781723687f, 0.156938933772370f, 0.892075905739393f, 0.403874478002384f, 0.572031508558373f, -0.604145909072008f, -0.330076696654475f, 0.0314560087228033f, 0.683787496948704f, -0.788582181996934f, 0.835276281386949f, -0.0644658492206380f, 0.938270191882745f, -0.344927907293928f, -0.976720519493346f, 0.906264084343827f, -0.648152742145255f, -0.776984965421811f, -0.299470572593974f, -0.423690646950321f, 0.749911693814570f, -0.701929894551648f, -0.665191316321370f, -0.568359320650352f, -0.957309362369509f, 0.914088966355983f, 0.770952996203681f, 0.0924190787439159f, 0.844599990803978f, -0.613336716591875f, -0.683270165308367f, 0.358563204319583f, 0.934597169812267f, 0.236596595813630f, -0.895964332479994f, -0.673302324943916f, 0.454883302340070f, -0.473926010524343f, -0.576000657136217f, -0.644850950007290f, -0.980218836434995f, 0.321620362364719f, -0.799924718666919f, 0.0619872524925393f, -0.609255645268410f, 0.159243124858648f, -0.339764623434603f, 0.379865023026277f, -0.923132229333074f, -0.0300494021321296f, -0.183835365297645f, 0.122648511393234f, 0.887652015676064f, -0.616448517838488f, -0.920600866006207f, 0.352861591267815f, -0.930578364778234f, -0.378819076263050f, 0.775423778544869f, 0.836977798656885f, 0.0472244767469148f, 0.484934339557912f, -0.939155187409193f, 0.261555270800537f, 0.143595058480400f, -0.323517719771947f, 0.483466454684928f, -0.423163689969697f, 0.356966814701025f, -0.843907304366205f, 0.945903563730962f, -0.495952298317153f, 0.972277051575873f, 0.153052037173145f, -0.715894882755676f, -0.617028915483254f, -0.332307224095366f, -0.171207102890728f, 0.841771328272651f, -0.0308707743261867f, -0.626480028747696f, -0.729235538916864f, -0.743517330301179f, -0.733868915239511f, -0.449192858200231f, 0.362286468575150f, 0.327436676142902f, 0.609768663831898f, -0.147499187968100f, -0.470195300907973f, -0.232167856443943f, 0.225074905574485f, -0.0818541072414634f, 0.793403933843056f, 0.267628199755028f, -0.391701371806294f, -0.846991992740029f, -0.776221590294324f, 0.121351482320532f, -0.189789365942677f, -0.894392208695015f, -0.632864319945356f, 0.927817761109627f, -0.732454610273421f, 0.260011686544283f, -0.713973491605344f, 0.469764032416604f, -0.608895265807545f, -0.684992974060601f, -0.745556289276139f, -0.536308213076133f, 0.586581187207818f, 0.149804345860779f, 0.401576742698496f, -0.719670291046630f, 0.618659855530024f, -0.256639783379370f, -0.862966031725668f, 0.893866512913152f, 0.861800793529066f, -0.704895723095590f, 0.154163397540805f, -0.0775797186536984f, -0.252297335448882f, 0.869851864160888f, 0.428747373815147f, -0.818372805928921f, -0.739117647833389f, -0.697378012429133f, 0.182997863108567f, 0.689563104159966f, -0.0506114067037338f, -0.705077813920782f, 0.452892458862023f, -0.365069844049503f, -0.889224821648518f, 0.0194889225677406f, 0.847743515500726f, -0.0650338075825718f, -0.108889937983496f, -0.168485037502421f, 0.912533003086865f, 0.428132366084106f, 0.692652998111620f, 0.130599999674344f, 0.411245435867244f, -0.194909473459497f, 0.562152151569866f, 0.503795293326445f, 0.801805532943245f, 0.795718119772331f, -0.327975015537058f, 0.771389506217327f, 0.237139782375987f, -0.793798852884360f, 0.537824655594807f, -0.0767253125021830f, 0.444538451472890f, 0.623473048970629f, -0.500663871860675f, -0.890399840538612f, 0.389528755348857f, -0.915832255765501f, 0.000652855725217894f, -0.121310443088642f, 0.206662014558968f, -0.409513641801496f, -0.0496262665388731f, -0.313314447256644f, -0.994839397423865f, 0.344513198428247f, 0.250828855150578f, 0.845438302422055f, -0.728803841305459f, 0.249670562418639f, 0.543601559270672f, 0.0138774767713057f, -0.0667600054234216f, -0.803421294778238f, -0.222729734665659f, 0.461896933387103f, -0.378537171475208f, -0.464200027877777f, -0.363170335357481f, 0.616070694104851f, -0.316407896795124f, 0.131719997218670f, 0.0622146037260092f, -0.881713850066484f, 0.400811652868418f, 0.163777537634682f, -0.528768052383715f, 0.553072310703894f, 0.931393033749660f, 0.410062835546529f, -0.190904471223264f, 0.0533617852685424f, -0.911780226731855f, 0.823696403963215f, 0.756735978125573f, -0.849701310148249f, 0.106070214350541f, 0.747890454578944f, -0.559823302095172f, 0.976181619002882f, 0.506524051225122f, -0.0735228576098872f, 0.635610640336510f, 0.607728217052133f, -0.383443012662118f, -0.640835123345673f, 0.0897243696426577f, 0.722421963278953f, -0.368833835044170f, 0.684790387373836f, -0.0336846755494535f, 0.199819176553169f, 0.351822803019512f, -0.433387005248570f, 0.709401898386598f, -0.0149217994364210f, -0.549115733466769f, -0.774049259429836f, 0.440376751789406f, 0.740171176715015f, -0.322301969056869f, -0.148261856544327f, 0.724527166150266f, -0.744178178219827f, -0.743031462890542f, -0.00997727490160383f, 0.550074849063942f, 0.147825200269716f, 0.777182602759074f, -0.625412073440604f, -0.0614214671235789f, -0.400121310797195f, 0.864511820640236f, 0.327656445569618f, 0.765838911283705f, -0.906185069285438f, 0.543656228031101f, -0.527337383463707f, 0.544932532036177f, 0.453966596910417f, -0.422906847383216f, 0.803455668330395f, 0.496651297123425f, -0.254890927444284f, -0.940902660088963f, -0.0691448074129200f, 0.0165534278793877f, 0.510199004798987f, -0.0286331020627788f, -0.141471298460923f, 0.872000980716430f, -0.752995088893842f, 0.167696515625982f, -0.181673581299286f, 0.496236252387172f, 0.854022562040503f, 0.388320660177419f, 0.499320363074588f, 0.173522726183149f, 0.0334192536945390f, 0.631347719906229f, -0.832803059709609f, -0.523826088751894f, 0.322557683663180f, 0.0263621365506006f, 0.948982322858062f, -0.253991680115490f, -0.165970359640120f, 0.331700483099733f, 0.808731855823033f, 0.159862831431822f, -0.438178259673022f, -0.943749594272300f, -0.967819867274861f, 0.263403865531262f, 0.710981741513574f, -0.274597382335371f, 0.929606564147885f, 0.125943272920181f, 0.691306164809532f, -0.607946869004681f, 0.284352421048012f, -0.421663515398071f, -0.409479725854699f, -0.152265311389352f, 0.630868673855242f, 0.123144840061153f, -0.645105689918733f, 0.360153393247973f, 0.683885744053582f, 0.752598814717991f, -0.581494857182821f, -0.469116962448560f, -0.0691726199196117f, 0.174679188611332f, 0.351269328558955f, 0.394815335607621f, 0.710281940645013f, -0.618593505217632f, -0.721546422551907f, -0.974088703589852f, 0.939556772536401f, 0.599407011070674f, -0.342213391542906f, -0.387135346574836f, -0.572027944718123f, -0.622717582512866f, -0.676949872287677f, 0.993953153886700f, -0.784539234625462f, 0.788778188174951f, -0.0652679971583152f, -0.988740647590182f, 0.748989697777310f, 0.412949190397683f, 0.206661198525718f, 0.573116044772809f, 0.938498079842984f, 0.743167714677278f, 0.755679122637903f, -0.295095987460132f, 0.217166189740252f, 0.230160404687938f, -0.504654557405015f, 0.472402206737240f, -0.867751757044285f, 0.869050101160567f, -0.905285205825199f, -0.0698843699947245f, 0.762379282963140f, 0.634191197174691f, -0.498487028811837f, -0.284257632541078f, 0.224245853978976f, 0.412950901773606f, -0.831984679101472f, -0.375663639002356f, 0.153699995838016f, -0.953997055484851f, -0.545360745186449f, 0.637687001020610f, 0.465459355638311f, 0.0769011654935299f, 0.267123343048604f, 0.545842501706277f, 0.778890986545214f, -0.363432183057524f, 0.479786652022207, -0.600912698239979f, -0.738845504293020f, -0.775987143750184f, -0.705559714187038f, -0.310523750352236f, -0.576081829930414f, -0.0341897834633795f, -0.388414434291246f, -0.790681299048144f, -0.169440674711419f, 0.219815472280053f, -0.323451599202462f, 0.835623141427806f, -0.932446301638351f, -0.831480966559550f, -0.185050128422203f, 0.946045240208487f, 0.864740749402213f, 0.916918979039328f, -0.204049261822351f, -0.807183358636872f, -0.484543897885746f, 0.974235382435000f, -0.208019257024664f, 0.647411336652954f, 0.0961385231960816f, -0.800258527388060f, 0.352982142334643f, 0.917274278881503f, -0.733934252997685f, -0.229420044045673f, -0.358499183112933f, 0.469156578609832f, -0.859359096702447f, -0.937762141277625f, 0.389776419837803f, 0.458425599271073f, 0.542973137971009f, 0.675023236195573f, 0.944029213696263f, -0.774027667733194f, 0.262984845114612f, 0.842689106929982f, 0.349251854560315f, 0.815938991679117f, -0.226283690374971f, 0.144356327986477f, -0.610588223452142f, 0.539695204296007f, 0.655759463021729f, -0.725805170479948f, -0.194977831685847f, -0.306105075607822f, 0.725461617920836f, 0.678283785172857f, 0.250577882812283f, -0.571672652704059f, 0.112132856850530f, -0.236412229648694f, 0.768173015701816f, -0.799251028098975f, 0.100723381526471f, 0.113856811781171f, -0.0281630563735495f, -0.0727902548617043f, -0.515248547261805f, 0.795765010992038f, 0.505540143557856f, -0.496124371632015f, -0.363010091302494f, -0.302067159683438f, 0.941309812688142f, 0.0564765277142674f, 0.733027295879568f, 0.582734217224559f, -0.159007222603058f, 0.827637470837748f, -0.163060519537145f, 0.352357500273427f, 0.920405360379926f, -0.280691553157313f, -0.401974149240862f, -0.131353114797667f, 0.0719728276882135f, 0.795795661384902f, -0.348203323368113f, 0.946184663961743f, -0.188400643814906f, 0.979319203447783f, -0.132195434304746f, 0.585832597473452f, -0.894730397941282f, -0.998045985412111f, -0.717844040997160f, -0.706372640246558f, 0.237517748136224f, 0.767232946579208f, -0.246080656591091f, -0.767887803661775f, 0.139501344992184f, -0.545658806327887f, 0.480755550666584f, -0.355750609145607f, -0.493518864013929f, 0.832011102158605f, 0.122542855024589f, 0.179356501845966f, 0.630805165349165f, -0.888557403477561f, 0.861375782261841f, 0.963467658712489f, -0.00498707715217361f, 0.341894517453263f, 0.654808049991043f, -0.826909952854692f, 0.101446328788119f, 0.401514152845232f, -0.830556985096328f, 0.832187560444347f, -0.657254039822149f, 0.0304197382717133f, -0.718462386339415f, -0.592343549551534f, -0.356333235896531f, 0.674135547073730f, 0.606490641440102f, -0.707328770155748f, 0.0251846271186025f, 0.763024927861424f, -0.258224600040528f, 0.456384203436896f, 0.626482995304888f, 0.162353458245830f, 0.964280614412026f, 0.869262296229816f, -0.0659501568862260f, -0.712869755397848f, -0.946968242335746f, -0.852822740386429f, 0.791522782900379f, 0.824530390150335f, -0.369383609091590f, 0.118366422602132f, -0.713278848975255f, 0.549165545117801f, -0.00201102645336770f, 0.748955154405439f, -0.173689412898754f, 0.175162399203493f, 0.0819730422177463f, -0.804833155982895f, 0.972966530563786f, -0.0614871820303859f, -0.293463394754661f, 0.885919261783643f, 0.498531250561504f, -0.808874001349436f, 0.364344357769432f, -0.945616638616975f, -0.285864129675031f, -0.0438177789332626f, 0.303981486324719f, 0.362653007142366f, -0.543157427730716f, 0.174551703296805f, 0.140105048664068f, -0.704163993684247f, -0.647461975308389f, 0.831243960763754f, -0.364954329841192f, -0.730289885595360f, 0.0119708019435723f, 0.796338505809816f, -0.227851954967331f, -0.927330125804492f, 0.0602265250934577f, -0.485204061877453f, 0.198319346525046f, -0.529723177394882f, -0.321493822700232f, -0.839566193416413f, -0.187812484529161f, -0.396142329367383f, 0.367600156667632f, -0.922657847865138f, 0.893508892950972f, -0.504434314314017f, 0.663184814192863f, 0.887813887366393f, 0.267103483259066f, 0.984313142773772f, -0.667515321448428f, 0.0718416862496054f, -0.733363156570869f, 0.00186343206374962f, -0.316531364321301f, -0.467549697367438f, 0.569865535259013f, -0.556502178434536f, -0.650896672234238f, 0.564462797319346f, 0.585276582729153f, -0.433005641153548f, 0.847012427243871f, -0.462088105064984f, -0.379468633087939f, -0.0104892833799723f, 0.654191676584918f, -0.893278846859767f, -0.689350274835588f, -0.333220721049179f, -0.0461703436190983f, -0.463411501818667f, -0.995085073808794f, 0.526075522777196f, -0.0686703698159610f, -0.855908120278260f, -0.239774384006192f, -0.524142243888286f, 0.119526621106050f, -0.838266471869898f, -0.459366707886497f, -0.974921205300089f, -0.680517660007036f, 0.507695286553230f, 0.0920009889477380f, -0.674459855090400f, 0.554585280302756f, 0.357871391273056f, 0.453052004120624f, -0.991707675828263f, 0.144725488641274f, 0.0886535789688503f, 0.708257184179799f, 0.579351194763774f, 0.902098539548710f, 0.0104715251706708f, 0.112677648152527f, 0.0513772996762050f, -0.647561525299580f, 0.321958856072156f, -0.433510239079594f, -0.481493822802105f, 0.651663699618654f, 0.922649363108760f, -0.751799312011289f, -0.0336105332513619f, 0.236872038257485f, -0.0434863841224971f, 0.150810692021768f, -0.217629544451037f, 0.345890414626050f, -0.471941673338326f, 0.675001035054686f, -0.986585320322202f, -0.784679789758475f, 0.270727429189404f, 0.595792127677512f, -0.485969146811564f, 0.222507692419212f, -0.850070310429306f, -0.575184466843042f, -0.220860571657717f, -0.749449040845746f, 0.743039624335149f, 0.463892797640518f, 0.224829531690830f, 0.935410439714992f, 0.00609595972560872f, 0.830877831388658f, 0.0270299847557276f, -0.648763861115704f, 0.471982277585509f, -0.145722971031426f, 0.650947186397952f, -0.266164907037466f, -0.962378355156458f, 0.354855353373398f, -0.184127215272909f, -0.825621979621661f, 0.595495186093792f, 0.448679578752395f, -0.839671989567806f, 0.302158874138200f, -0.735484620769119f, -0.891040803749876f, 0.880298595525880f, -0.281199581528421f, 0.0195033020490396f, -0.511515485794419f, 0.447303195702203f, 0.375317547074287f, 0.964442757731427f, 0.167643569291013f, 0.0118587246816413f, 0.958187068873858f, 0.315395458761821f, 0.188852872643367f, 0.417450657662866f, -0.540566147670448f, -0.422709015019828f, 0.101425586029329f, -0.235465301656357f, -0.806044548641562f, -0.617153815671298f, 0.350658348898447f, -0.738540593521098f, 0.291893065415692f, 0.335435501842245f, 0.832048727909480f, -0.609539777284250f, -0.436992256701542f, -0.685315947977391f, -0.502107715051164f, -0.893460699283628f, -0.262263680492396f, 0.454417031133778f, 0.223227655510993f, 0.605288383003966f, -0.698800586984034f, 0.864843125666124f, 0.363752223710394f, -0.354571459375900f, -0.575008718239530f, 0.423061550052490f, -0.272459660313524f, -0.116932919064239f, 0.547073367599225f, -0.890822451422250f, -0.884262586749836f, -0.889803003239001f, 0.217660629852574f, 0.154863581361214f, -0.333284425759330f, -0.826087281020982f, -0.958198419703014f, 0.850114828540176f, -0.391190814837661f, 0.956578087128909f, 0.0541599967910713f, 0.0988550815990206f, 0.851903747125444f, 0.361959550717838f, -0.901818125706440f, -0.0561477675277424f, 0.522090821863134f, 0.263383912024089f, -0.161061362097086f, -0.983707460720128f, -0.333128836619106f, -0.546535222349413f, 0.627261888412583f, 0.408731616102241f, 0.754700916401496f, 0.869772826180715f, 0.362242883540519f, 0.853587698951791f, -0.698910717068557f, -0.671945256263701f, 0.802655941071284f, 0.338701009518668f, -0.0297818698247327f, -0.881311052338108f, -0.296717226328950f, -0.965699941652671f, -0.737164428831818f, 0.00804554422537485f, 0.989716933531351f, -0.832438692682457f, 0.454553001515962f, -0.933801685729775f, -0.644562445615081f, 0.104508389084640f, -0.535426180524709f, -0.937041822784313f, 0.599911275476691f, -0.789109397888652f, 0.821293320968620f, 0.818032308067912f, -0.838306491947354f, -0.172883985566904f, -0.185775969502745f, -0.672256019841514f, -0.412525056012874f, 0.142272136963196f, 0.792136721788200f, -0.726314486042219f, -0.445981475954073f, -0.857821372905156f, -0.783006950965519f, 0.438776336055643f, 0.400193156140386f, 0.177525578340235f, -0.435380642286229f, 0.547815754835977f, 0.0496394855194708f, -0.442174406426496f, -0.0856142956982360f, -0.0247840885457120f, -0.779016166389253f, -0.511802368745331f, 0.319887353303028f, 0.721806644023428f, 0.770423389111803f, 0.809969588377187f, -0.196191981856391f, -0.105718971622809f, -0.301674515042257f, 0.613622254387482f, -0.969517273103490f, 0.0144576310630131f, -0.668829420461301f, 0.750377960820232f, 0.696858494013122f, -0.563485511352760f, 0.726226115587466f, -0.227540741583116f, 0.665488592033944f, -0.124611809537824f, 0.489550286613580f, -0.579185308695604f, 0.628687311174276f, -0.295770837727116f, 0.240358361854250f, -0.155642183802961f, -0.885945841456110f, 0.388592282428421f, -0.663862196774143f, 0.363779469451472f, -0.371285870971327f, 0.563159689631810f, 0.102725415308920f, -0.320909176496511f, 0.334328794247963f, -0.401664407219370f, 0.726728495517480f, -0.192310060924823f, -0.107973316004269f, 0.898177814643418f, 0.456682306673978f, 0.890742303266606f, -0.742770990765425f, 0.0337493848747046f, 0.786190819119190f, 0.911503487800545f, 0.288384155888888f, -0.249479393879906f, -0.431949793185094f, -0.0847659302921913f, -0.475416985100444f, -0.362720571751962f, 0.676910741300893f, 0.00488530543559529f, -0.227678010632002f, -0.0632947771540859f, -0.990261099329279f, -0.708485805011827f, -0.304846597458441f, -0.480289782580152f, -0.593254971635338f, -0.656335976085053f, 0.584373334310954f, -0.493268395245234f, -0.00212668034894836f, -0.480221591678953f, 0.622365041709782f, -0.258845071515928f, 0.943825418665593f, -0.716642329101759f, -0.765317239111819f, 0.324487844009035f, 0.108158868464706f, -0.790583201992229f, -0.649218622127061f, 0.751409704126257f, 0.301455204388007f, 0.620482350165047f, 0.411016780608874f, -0.878843779367281f, -0.779673415191805f, 0.616508572699874f, 0.0750844738292273f, 0.341011338533919f, -0.553376665552953f, 0.277561087965059f, 0.527499935800293f, -0.489644680144407f, 0.514353996113782f, 0.229842524701725f, 0.139172928186734f, 0.793753206591897f, 0.835555341130211f, 0.794120687009671f, -0.0994745468343306f, 0.109098970584400f, 0.383123470993648f, 0.272549010931094f, 0.683070582699418f, 0.522823199313615f, 0.235903759158310, -0.269490013000195f, -0.103775744391749f, -0.994083979953753f, 0.754983594207459f, 0.806308398378106f, -0.997543362839150f, -0.00396367603607373f, -0.873768378178592f, -0.755907732827809f, 0.703713206520365f, -0.0716773056166142f, 0.0792968663717508f, -0.113760825029016f, 0.828188140127672f, -0.103062543982628f, 0.0455017026983378f, 0.330658414568756f, -0.615810862221588f, 0.827890015477212f, -0.507551960954374f, -0.371044788092612f, 0.723489294741891f, 0.169072478802524f, 0.885612989356318f, -0.496475905980558f, 0.114400438991609f, 0.427961880327008f, -0.0456714004002505f, 0.0246660859589438f, 0.175616122301987f, -0.349777838484285f, -0.939474935533562f, -0.215061649130134f, 0.907049169335834f, -0.0553600192559760f, -0.982464152311714f, 0.405919915647442f, 0.755952405091542f, -0.695422520039876f, 0.373280568864688f, 0.483909023765611f, 0.784896384994620f, 0.978722132488262f, -0.113866140463085f, -0.630016943176703f, 0.512742627309861f, -0.829104067044703f, -0.240982431155520f, 0.0107361024967163f, -0.438682584788413f, 0.935730031472303f, -0.953447901200043f, -0.984218956474073f, -0.745077052885218f, -0.466232938128846f, 0.0326267564209573f, 0.303877586274065f, -0.199843777507458f, 0.674317529952029f, 0.448678903834397f, -0.681863209154081f, 0.273397524216090f, 0.193101955704959f, -0.342858479278718f, -0.485179713360910f, -0.586067050491890f, 0.393099777352274f, -0.982324485510343f, -0.852553426343700f, 0.773613825101220f, -0.590256032959421f, 0.837952413540589f, -0.643137731235821f, -0.311955662956384f, -0.888588599835619f, 0.304629859477166f, -0.810098957400030f, -0.534291626181040f, 0.878601703692302f, 0.362706441157764f, -0.254447668911795f, 0.604309282304246f, -0.977266419340276f, 0.250927873824064f, 0.549600558999971f, -0.796155833245480f, 0.226373301058549f, 0.0137578302483823f, 0.819708534464965f, 0.185662636424304f, -0.450456459548662f, 0.0953849597308440f, 0.736872088617975f, -0.582024306116842f, -0.0522261513001507f, 0.394348349710790f, -0.461023913227183f, 0.139996201153565f, -0.790168851966909f, 0.692544084408690f, -0.580603732841955f, -0.584540773580447f, -0.967062276813525f, -0.00886260208554912f, -0.0520831218167985f, -0.999614949922684f, -0.965820736077636f, 0.366390034326646f, 0.0323069925013668f, 0.164651515113853f, 0.300260003499445f, -0.340634856317630f, -0.238157231550037f, -0.291645957143165f, -0.773881882387456f, -0.144494053860223f, 0.660329619628580f, -0.626727996257997f, -0.994965090982706f, 0.161018019917379f, -0.327211572176153f, 0.0410991278573425f, 0.0123663905917732f, 0.747176159655312f, -0.485981637435718f, 0.00667961234248971f, 0.631625759154389f, -0.831294487064668f, 0.449606477050286f, 0.768845094514142f, 0.928354534843426f, 0.812647997969340f, 0.353418126917875f, -0.872184763557736f, -0.579130598386915f, -0.912928075675835f, -0.779484407508668f, 0.534916834944041f, 0.326353225230543f, 0.395431557674662f, -0.842103899863317f, 0.196590107332985f, -0.261317824893025f, 0.750190543523333f, -0.103409967857074f, -0.201452426430379f, -0.213633615009587f, 0.578822104214576f, -0.130809161238349f, -0.774608769872343f, -0.0222201705228122f, 0.126990738965544f, 0.785780586747108f, 0.0379484317527632f, 0.837140835706189f, -0.191007948387153f, 0.106781679021568f, 0.990298140861558f, 0.618337701073777f, 0.460255491901774f, 0.716379796730692f, -0.159421014009881f, -0.560212468621569f, -0.147263014783522f, -0.962301694075771f, -0.327702010262213f, -0.773959532468388f, 0.351239668535113f, -0.682281479449518f, 0.342188824054257f, -0.743039216419066f, 0.700710268270439f, 0.919651386092770f, 0.626343233048871f, -0.157189576636596f, 0.781882574006976f, 0.349953565654219f, 0.361235312853466f, 0.313242228422046f, 0.582185182102266f, 0.554504358491139f, 0.711217954194576f, 0.332473377627418f, 0.165078226255772f, -0.228349029389292f, 0.899730713958153f, 0.653894503448836f, -0.0452904440925501f, 0.0328806142413372f, 0.793701315832839f, -0.703826261467540f, -0.901648894320192f, -0.195631966969018f, -0.0470590812056508f, 0.487185699934959f, 0.175961644103331f, 0.818028721319245f, -0.224389104974946f, 0.901974203693823f, -0.153212477843726f, -0.472747796173897f, -0.587471692952684f, 0.452340198339707f, 0.996443894349412f, -0.849126217374502f, -0.403800337277983f, 0.923427876645159f, -0.0516037992113898f, -0.380335341989182f, -0.299914673109747f, 0.764492139190834f, 0.773463290027243f, 0.0175454601261817f, -0.400742340353541f, 0.912354892189422f, 0.999766609328281f, -0.521321752061712f, -0.365769506846305f, 0.477612405338644f, -0.0522578739905535f, -0.479259238587280f, 0.645161410912429f, -0.702546085166056f, 0.359736398041538f, 0.638130894056863f, 0.115633419893101f, -0.674410360620500f, -0.150824943737990f, -0.824854463897591f, -0.504410162129685f, 0.560317574021813f, -0.159611666752889f, 0.997647540626334f, 0.702777895178414f, -0.946494281691535f, -0.0109619562916898f, -0.383756482005404f, 0.872670066971334f, -0.453527506439184f, -0.635719199113957f, 0.932852122005178f, -0.800755479140234f, -0.225213334363716f, 0.251163542389519f, -0.598147625383133f, -0.155241293946661f, 0.967736510890644f, -0.0157250628103103f, 0.250570924071858f, 0.209749651169078f, -0.381016062687537f, -0.679300447230592f, 0.160197663113971f, -0.749803147200800f, 0.596917045783617f, -0.0878737681749431f, 0.642402180339789f, 0.261614973684270f, -0.111833224093973f, 0.300170844971678f, 0.317966800167647f, 0.0585375534708252f, -0.842709435910728f, 0.760207701069839f, -0.979366191145221f, 0.940703569377911f, 0.866488078693979f, 0.553497107695259f, 0.127260247084497f, 0.530106152060111f, 0.725171359852920f, 0.356742729430045f, -0.209841680046178f, -0.164239817187855f, -0.888858150931758f, 0.0367561852378047f, 0.803496113779956f, -0.594927045375575f, -0.00347281985657166f, 0.114118941713783f, -0.427864462568672f, 0.719021423892768f, 0.335845790828654f, 0.0207216235296064f, -0.523146933862102f, -0.145001077781793f, 0.490566784879983f, 0.461904660734682f, -0.897010089735077f, -0.895737903861849f, 0.343397505472310f, -0.684377591381862f, -0.0154016881290400f, -0.462987614871549f, 0.884045010701589f, 0.192617174725234f, 0.226497290324550f, -0.788151335932529f, -0.190538526746651f, -0.556614046330326f, -0.139480186854974f, 0.196785300148418f, 0.978844132512627f, -0.290726060479808f, -0.591813978495167f, -0.0769033757443105f, -0.467044929381376f, 0.171585053083057f, 0.408215527269010f, -0.818706013465989f, -0.328144984930982f, 0.790275356337217f, -0.977491163139178f, -0.979679268318504f, -0.524875121608236f, -0.263859024168277f, 0.0180787743488171f, -0.984390626106750f, 0.952274619010224f, -0.851400664579601f, 0.692959439369046f, -0.150312001943653f, 0.712066554169562f, -0.492336226254660f, -0.453559897031351f, -0.159679763180474f, 0.745834647687870f, -0.725963425297178f, -0.720341794596050f, 0.370674334928492f, -0.845974926208293f, -0.00448769398027360f, -0.595973105115042f, 0.967372249596385f, 0.512949503724102f, 0.889619262804735f, 0.990718232652913f, -0.662246751886904f, 0.333846293708563f, -0.423114421367372f, 0.549637439543149f, -0.987876053136374f, -0.782714958794276f, 0.294868983681807f, 0.931284560597614f, 0.445522387300861f, -0.388400162488578f, -0.182673246109423f, -0.773488958971573f, 0.438788569593725f, 0.578106509978236f, -0.373449127435319f, -0.301996528814967f, -0.227124771031239f, 0.700176189695036f, -0.910948938567526f, 0.733412403327578f, 0.486154072292544f, -0.974058632864456f, 0.216693355653246f, 0.147564301397678f, -0.715192277853558f, -0.366996833259925f, 0.568909126406069f, -0.0810069456450131f, -0.371253841044151f, 0.254736918036059f, -0.868966383080701f, 0.190312518076662f, 0.457253801337437f, 0.941043431633233f, -0.297470749600241f, 0.244270515950156f, -0.240122562119888f, -0.766384662307300f, 0.765045432900429f, -0.608250739173787f, -0.733052557932594f, -0.268433000443065f, 0.733598123424154f, -0.0550005774741753f, 0.273893221740822f, -0.659641650983149f, 0.967032725204337f, 0.390126626361090f, 0.518740746381756f, -0.859387560527806f, 0.554117289841284f, 0.648904904654236f, -0.755880975555381f, 0.834231592524942f, -0.137512395743275f, 0.0477027353535724f, -0.880364563062979f, 0.458763614093086f, 0.650036413308116f, 0.496385905878033f, -0.418537115548864f, -0.565561960782851f, -0.227941684691245f, -0.165031891659812f, 0.204464989908300f, -0.688093624763916f, -0.678874848552394f, 0.813764873880514f, -0.561723359541237f, -0.575805702297063f, -0.288097000970518f, 0.950119107184838f, 0.709879842972902f, 0.730067219897393f, 0.710813066057284f, -0.192333836978130f, -0.190446300563246f, 0.872679304648751f, 0.134143163657763f, -0.979443835407234f, -0.103872104041761f, -0.0568328979324004f, -0.863020133862081f, -0.0257801722427251f, -0.577962771617033f, -0.0500056799801032f, 0.191817418291914f, -0.799853775410853f, -0.110019424741421f, 0.840753817223395f, 0.355588322976119f, 0.274501278628024f, 0.757538306972136f, 0.771547320156202f, 0.0394143752709530f, 0.120744072764658f, 0.324337882930581f, -0.380086709776951f, -0.772025774284869f, 0.473986846199588f, 0.703247561676381f, 0.734667480205300f, -0.594290184210087f, 0.760158653782445f, 0.624553744314883f, -0.941053266957965f, -0.165913770936962f, -0.0497972870738055f, -0.0435608680908517f, -0.663165366083943f, -0.570972482385751f, 0.427845034528880f, 0.0897903148165149f, -0.481825010950428f, -0.0901127105939594f, 0.887770435656611f, 0.770985476674623f, 0.00966158758316293f, -0.331059327378268f, -0.286033645163736f, -0.0698945910210471f, 0.834392309773299f, 0.875537383319608f, -0.657919190548359f, 0.583890957562885f, -0.418481077359384f, -0.282242397022386f, 0.864577023994874f, -0.898367126143440f, 0.815804441243808f, 0.616061408588373f, 0.132365642864798f, -0.221099752471970f, -0.852722283680675f, -0.269499596712950f, 0.360828136129415f, -0.120022743070141f, -0.0354652134632905f, -0.718389836602256f, 0.973490047219112f, -0.201775047168341f, 0.348769511760972f, -0.338750368577880f, -0.269769414088757f, 0.498910931428472f, -0.787648791515347f, 0.508408064858444f, -0.904215976374529f, -0.778575029821227f, -0.662889546847757f, -0.787503064261069f, -0.915166838630178f, -0.415784802770356f, 0.731806835017609f, -0.903922155472207f, 0.0872811033112211f, -0.452516774501827f, 0.577942533813694f, -0.200909337658770f, 0.866167939661793f, 0.982552542055944f, -0.332277333696961f, 0.201673960342839, 0.881239812364993f, -0.0293753746942893f, 0.0967170348490725f, -0.765573023404242f, -0.179225339525953f, -0.931530757069740f, -0.702596334762137f, 0.439106079307245f, -0.469364154277323f, 0.211063395888038f, -0.245858633045693f, 0.936376071219385f, 0.0334087380010875f, 0.0765265939183459f, 0.417091701258078f, 0.962467059286170f, -0.180698008768999f, -0.129816441691123f, -0.833694435146788f, -0.800582099046532f, 0.736376297618233f, 0.0164704176688124f, 0.207462305741760f, 0.300555292898496f, 0.777154212278295f, -0.0804533056660695f, -0.279940128908185f, 0.203101811030871f, 0.447496959357837f, 0.508353359025257f, 0.644333822521829f, 0.897259297488483f, -0.675785952117501f, 0.149337263319588f, 0.350953290584184f, 0.600296681944338f, -0.606098182955297f, -0.418312129297725f, 0.792551232171214f, -0.944025948110651f, -0.923106441737020f, 0.508989820072736f, 0.101554011154237f, -0.799369609980037f, -0.229001813644938f, 0.196367996268564f, -0.634078446275840f, 0.267446716753553f, 0.943765754688567f, 0.329924442019441f, -0.898235312442524f, 0.563592978494850f, -0.976934293161001f, -0.609744819901837f, 0.498989633313589f, -0.105680058480959f, -0.400730747241191f, 0.264919109340783f, -0.313066735594123f, -0.465399967597728f, -0.425123918113080f, -0.609514085808810f, 0.916560800692384f, 0.0173757138934230f, 0.147814399202503f, 0.594152503614559f, -0.145681097751433f, -0.427232299718493f, 0.233460382614713f, 0.337361272635241f, 0.376106438004541f, 0.900277274651600f, 0.424547631957395f, -0.710790444715071f, 0.0846761090154495f, -0.0122707338404220f, 0.119989812955904f, -0.239774389963524f, -0.692300891031819f, -0.735109129583214f, 0.802276300301071f, 0.348982047806247f, 0.916302084278941f, -0.0838164783829127f, -0.989134997097880f, 0.832909602224562f, -0.701363449605445f, -0.150487976031971f, -0.728594035984111f, -0.144393031996783f, -0.458856761770637f, 0.733295441303064f, -0.405608670768629f, 0.522871610912813f, 0.468223399458939f, -0.575139530810903f, -0.241684287862418f, -0.499140599234906f, -0.395586476697394f, 0.692745485195348f, -0.125142235859546f, -0.342212246193052f, 0.133841188490164f, -0.539478395228865f, -0.887973984329817f, -0.474033882236453f, -0.837114132429830f, 0.773392302912611f, 0.117697651876253f, -0.461595011213406f, -0.528669601602068f, -0.957799577987062f, -0.468654423525192f, -0.0602288998398475f, 0.154553704272891f, -0.422854231304259f, -0.496136532114270f, -0.348154983723668f, 0.0576478341707483f, 0.542088962901856f, -0.0465812136931592f, -0.280128217727361f, -0.900695482510248f, 0.525110685457899f, -0.957266165874283f, 0.136490670826643f, -0.213221811269364f, 0.690040133288898f, 0.269408771473479f, -0.0488994830172422f, -0.837526616586426f, -0.289127052660601f, 0.149325279006459f, -0.694169700971401f, -0.0230547571616897f, -0.368313297034846f, 0.344434270521740f, 0.859135365902404f, 0.839336654691204f, -0.511783987355355f, -0.0349625753049687f, 0.935857929664427f, 0.820032045433520f, -0.0394079346656324f, -0.656352913407746f, -0.874383371678169f, -0.425836335156061f, 0.208600154889275f, -0.135596548598733f, 0.566430757256762f, 0.820840891306264f, 0.735746624790780f, -0.765482927015804f, -0.0195537720748045f, 0.606216172027628f, 0.436027839798869f, -0.609233580289002f, -0.963547951222316f, -0.575271468261977f, 0.692873344771925f, 0.143031668657597f, 0.890157114774225f, 0.762299295692265f, 0.653618249618643f, -0.957258626549595f, 0.521895225378123f, -0.607922211531407f, -0.956795748110572f, 0.477633684273092f, 0.794301967670603f, 0.139753218894595f, 0.371726372555490f, -0.804791987531745f, 0.837080126047059f, -0.440992020192054f, 0.584986017638085f, 0.950442046050057f, 0.613109120495913f, 0.633948971396891f, -0.581246845000116f, 0.730290176291093f, 0.599119212595240f, 0.120096101936515f, -0.144169383323758f, 0.930776406826440f, -0.0209712926465206f, 0.572995665695966f, 0.924623298379120f, -0.751832867985678f, 0.630196806059302f, 0.506634179395662f, 0.0388997263873157f, -0.311041196366299f, -0.729049093325017f, -0.918815504666740f, -0.103935429478766f, -0.000623544124330300f, 0.102880227280474f, -0.563637096166535f, -0.332148269587814f, 0.472114131256244f, 0.295717126494164f, 0.246944592105312f, -0.713191555660498f, 0.160410320426559f, 0.110992936470077f, 0.213877527744528f, 0.541660996543375f, -0.872405734998843f, 0.388515073094269f, -0.840811647524440f, -0.968008592072007f, 0.669947948420772f, -0.122943215855172f, 0.565929115911552f, -0.695408966310186f, 0.361296950635219f, 0.574282481983669f, 0.0877180513263536f, -0.694316083550519f, 0.327696487191071f, 0.289746985823208f, -0.241476327174879f, 0.605084742574250f, 0.0929272338220821f, -0.391399761658219f, -0.612928183827531f, 0.0471987261466311f, 0.157388702609590f, 0.575695018001234f, 0.450453491026024f, 0.876623108212541f, -0.456500163180038f, 0.436901006801809f, 0.796734433864345f, 0.771008396172517f, -0.784740610155705f, 0.405172719255834f, 0.958393667559228f, 0.787380105147761f, -0.262826016234054f, 0.773327117333271f, 0.482142068916266f, -0.461607549022954f, -0.153993688218026f, -0.129280134980317f, 0.901812622560630f, -0.111520793491644f, -0.0973214524989203f, -0.293695817178366f, -0.190045093887485f, -0.204792515844396f, 0.501086384719391f, 0.755953359112033f, -0.425886872154604f, -0.0883029298084141f, 0.763071371252921f, -0.556289447935984f, 0.577370462369201f, 0.0480599614417476f, -0.794423686623353f, 0.756645959967545f, 0.570538730848462f, 0.872575422156333f, -0.443572567528656f, -0.0487937634747691f, 0.283986553648095f, -0.170910821134099f, -0.329867000423004f, -0.982322841409943f, 0.555344201026651f, -0.351964643393940f, 0.776172688776518f, -0.148102477734717f, 0.889532618676503f, -0.310979434517253f, 0.711839903052208f, -0.646385596147085f, 0.145592596381502f, 0.233949589173221f, -0.825471565980294f, -0.370248763132654f, -0.777194557275684f, -0.224658064754195f, 0.263281286751478f, 0.849661910468068f, 0.271261490445121f, -0.915885420717958f, -0.947144520818678f, 0.227960459606299f, 0.784463828083640f, 0.995882406349565f, -0.987273766396493f, 0.0792453274840108f, -0.788403526960056f, -0.619975942121645f, 0.801181796307713f, 0.967884377026145f, -0.781223064263388f, -0.300716486479280f, 0.994748932974184f, -0.200152360574411f, -0.101898131541608f, 0.542914585925881f, 0.407729967031792f, -0.105215843903154f, 0.638066037611924f, -0.563777780161298f, 0.134189395993685f, -0.503320561486155f, -0.0379170306314711f, 0.723638115686875f, 0.747948383928228f, 0.928239905995551f, -0.736883772878758f, 0.892242913709735f, 0.468998243295705f, -0.224406388545097f, 0.758754382878863f, 0.994739001052496f, -0.749837906573089f, -0.938777322178786f, -0.619168635741936f, 0.827875717654585f, 0.294033159230782f, -0.372766318349126f, -0.292752124932124f, 0.396629951868878f, -0.986760927173237f, -0.0841834195975009f, 0.999760803826313f, 0.0142305924173638f, -0.820393900206961f, 0.409972278573230f, 0.227315924377402f, -0.641500351639361f, -0.470788010535406f, -0.486171076557593f, -0.758140688442947f, -0.971539708794928f, -0.949039718833189f, -0.146844988902767f, -0.0183627478820223f, 0.402918762093981f, 0.0620266698060286f, -0.182527786403967f, -0.374395326540229f, 0.566584207940253f, 0.879546558847970f, 0.853360173786566f, -0.515321950652696f, 0.511692631053674f, 0.342152084355850f, 0.374686420595610f, -0.794372980760555f, -0.648670375991101f, 0.761192158420166f, 0.223791993225057f, -0.342720055148453f, 0.965612513218950f, -0.796193009647904f, 0.215057114709867f, -0.0459498239576994f, 0.871047701509015f, 0.664672380241520f, -0.546301701630944f, -0.939910946986200f, -0.213195706858966f, 0.559543622118596f, -0.255844807516886f, 0.509576048776352f, -0.699005089750431f, -0.520317652140772f, -0.924306703712950f, -0.923814193467638f, 0.868401299001930f, -0.571229497763863f, 0.984740691690212f, -0.911782692220985f, -0.265295471266664f, 0.0479848731515942f, -0.195328058836883f, 0.758281465939343f, -0.418177229854869f, -0.263323557662932f, 0.0230762644115943f, 0.382605016442608f, -0.576209059863238f, -0.739785100410209f, 0.0956412509899256f, 0.0369702493097637f, 0.0738922616872486f, 0.589371657036664f, 0.548586250623500f, 0.996096574632666f, -0.574178408335425f, -0.827059309028347f, 0.600283403682961f, -0.0651062813338117f, 0.985857002071398f, 0.982700721670305f, 0.777628710286989f, -0.139415722014730f, 0.951156387462424f, 0.806391217144736f, 0.135433009714206f, 0.252388414319270f, 0.485541324740928f, 0.270688932431637f, 0.892850103229909f, 0.440168171407923f, 0.515384398158669f, 0.600884162546465f, 0.947986221531091f, 0.339440884303404f, 0.403857490690436f, -0.937015609644647f, 0.729529495316627f, -0.389601866986821f, -0.420712615666380f, -0.763003723744745f, -0.0619534667970105f, 0.486654476027536f, -0.943536854881494f, 0.471171699317719f, 0.996886209046820f, -0.945316270673373f, 0.230772742042993f, -0.621222111022648f, 0.838934157721328f, 0.124035987915113f, 0.737576768711407f, -0.217898078842006f, 0.0429859145211120f, 0.223685413947773f, 0.820073956039170f, -0.378381145423743f, -0.335672684173821f, 0.649791267584388f, -0.457253860252872f, -0.664776842833046f, 0.150429615666837f, 0.974812973893170f, 0.00119972362050369f, 0.140744912838368f, -0.252632269055503f, -0.124205752907507f, -0.383194456927254f, -0.356455432479067f, 0.0694989880525767f, 0.188230048541949f, -0.854592697407303f, -0.902559387772971f, 0.454054169179423f, 0.534684767654295f, 0.806837289706952f, 0.274203715752641f, -0.765433763984323f, 0.459365005291520f, -0.896797218412250f, 0.382900474341852f, 0.169400421233177f, -0.184111368111075f, 0.0323514487432812f, 0.621015577938758f, 0.139872518806323f, 0.480965263781330f, 0.0649386999855643f, 0.815365754221614f, 0.761990264098834f, -0.0927412249348933f, -0.580853742457387f, 0.211615321410605f, 0.165159968106305f, 0.305515629345863f, 0.725748395743965f, -0.667649812347274f, -0.621843189978885f, -0.939317191264789f, -0.197108718554958f, 0.902152006895939f, -0.889744652803018f, 0.667113256888905f, 0.929471703711725f, 0.660025836042506f, -0.0712223078913006f, 0.416152292126436f, -0.602223852277700f, -0.828462878627106f, -0.956915163338265f, 0.298196541541469f, -0.933863927954050f, -0.198745190221695f, 0.749101206471011f, -0.922366396086261f, 0.769953026855636f, 0.971459582749177f, -0.226637139032289f, -0.593509265485619f, -0.635649447577657, -0.443127775644156f, 0.350464269654307f, 0.379979516655134f, 0.896282784801247f, 0.00871209446887344f, 0.401818712823609f, 0.815422566258939f, 0.215868289995843f, 0.682217845700443f, 0.508819667108007f, -0.988484263336122f, 0.216656890144568f, -0.185777888700071f, 0.522106353117928f, 0.894211314619113f, -0.779300881699217f, 0.137801937535128f, -0.818740955579722f, 0.637214461095055f, 0.187867696634722f, 0.184985729971243f, 0.315323389557324f, -0.0312525033775366f, 0.498559120407008f, 0.855778208118391f, 0.936851170962385f, -0.0524308158818188f, 0.257087262622978f, 0.816141818246927f, -0.147192803443011f, 0.194545158383538f, -0.655428449892669f, -0.650441844539509f, 0.536015423540886f, 0.0250060573607953f, -0.863380305825989f, 0.0605420782823460f, -0.963662464088496f, 0.689136717877590f, -0.929664162821947f, -0.327349437742288f, 0.713122240487331f, 0.765587094162777f, -0.314350325341316f, 0.409992519686522f, 0.753377832105546f, -0.756848529995586f, 0.760787899507869f, 0.512213162407276f, -0.674820237484644f, 0.560776719592082f, -0.874905891603855f, 0.925202682923872f, -0.907405002733482f, -0.575836335118172f, -0.248173888600965f, -0.187923239740639f, 0.230951002247789f, -0.540190666146588f, 0.390890663320481f, -0.705511708249712f, 0.0980457138183717f, 0.879979753648798f, -0.378326046226794f, -0.645363625221967f, 0.883365508962968f, 0.728720763588748f, -0.191571576393619f, -0.941989254130187f, 0.944312154950866f, -0.367184985473008f, -0.974124559264444f, -0.579946765132286f, 0.509825236656578f, 0.952047194261820f, -0.0955445631918663f, -0.00500764501201401f, -0.00111382665477655f, -0.0404281661495578f, -0.265706359102834f, 0.865881843285797f, -0.947915521623861f, -0.820337973623839f, 0.0843747524022067f, -0.948599514028391f, -0.464018526769358f, 0.600790429663803f, -0.0779017384430381f, 0.756949801920938f, -0.955436496929340f, -0.553346424499498f, -0.401256107066610f, 0.569624108543687f, 0.179455179577041f, -0.189386842296675f, -0.467166492259358f, 0.367644583467601f, -0.722338735126514f, 0.863903729827081f, 0.0631027352569811f, -0.982269235503679f, -0.837788470642698f, 0.421730643738386f, -0.671745211565315f, 0.858467932275763f, -0.745298219348761f, -0.659594977600028f, 0.403238381269873f, 0.951987904652099f, 0.228887404582426f, -0.331665752024408f, 0.794789885033899f, 0.669978127515269f, 0.977583870328654f, -0.346398989178462f, 0.692053246433782f, -0.159407706019695f, 0.710808563527500f, -0.555701359319642f, 0.625665798239905f, -0.711048329414687f, -0.672431532474912f, -0.474897384314332f, -0.196250611816064f, 0.902140605659856f, -0.459732035217428f, 0.651412290305649f, -0.686137550630920f, -0.803228611526547f, 0.371120664039117f, 0.289869860968561f, -0.720979161638185f, -0.0940498575417996f, 0.185025844935128f, 0.401524077274769f, 0.811721346556136f, 0.224659861626089f, 0.106438807548742f, -0.117458956991326f, -0.407361487623449f, 0.683891165426988f, -0.216582410631386f, 0.710644530504861f, 0.867797453793643f, 0.626683550176870f, 0.115061097783331f, 0.976742668387085f, 0.250700864990527f, 0.272723539841862f, 0.159923684669346f, 0.167713264013185f, -0.445764377935606f, -0.489538472614810f, 0.227880894824940f, 0.670702116476237f, 0.610361511284318f, 0.503801949624464f, -0.687816091694902f, -0.0413765153535617f, 0.155769004545734f, 0.921910233366689f, -0.467299226678025f, -0.991984541712805f, -0.527009262324220f, 0.248157897392517f, 0.661145853979517f, -0.975947426744844f, -0.242453990684693f, -0.277956284573619f, 0.162010437415540f, 0.889456199489152f, -0.171259539670729f, -0.0636124576727060f, 0.311318764402696f, -0.227771282875219f, -0.567702050585727f, -0.132881625149059f, 0.870846950418812f, 0.440078398779761f, -0.0908818839265000f, 0.410077545060762f, 0.917678125288724f, 0.975295290129489f, 0.736514272579886f, 0.653896379317074f, -0.166512942888681f, -0.218665383726096f, -0.0688642360506688f, -0.596589868100824f, -0.180873413844075f, 0.229002598511067f, -0.647630976455599f, 0.722615884501717f, 0.760194030884127f, 0.253262836539679f, 0.0734191803957118f, -0.941427952376035f, 0.224118866807764f, 0.634990976599086f, 0.538622500570355f, -0.591487367587299f, 0.829253069890529f, 0.426659996899884f, -0.562435396124737f, 0.924178169394878f, -0.693964899988321f, -0.520472617448914f, 0.845157115508053f, 0.162984246343684f, -0.212032053476592f, 0.0482566706558292f, 0.820584028875367f, 0.676120066619505f, 0.590174358812695f, -0.457289938956925f, -0.351282540371674f, 0.322162683499620f, -0.683726196205246f, -0.279636659553935f, -0.186133028676429f, 0.965481755833750f, -0.0550172560314044f, -0.437844829991532f, -0.448670532146325f, -0.438916826946834f, 0.830205353164842f, -0.0125988502002286f, 0.733716462327519f, 0.870000673588185f, -0.189915082276716f, -0.676269331249200f, -0.336432931956768f, -0.288892891213265f, -0.912569275291884f, 0.509853767908707f, -0.658452317958678f, -0.562848133961047f, -0.102082581799095f, 0.904062026055565f, 0.473339990381854f, 0.210234896873676f, -0.0884007008398613f, 0.720872020499257f, 0.538315255331760f, -0.884485227439286f, 0.160844002639634f, 0.625863524205804f, -0.947487159926400f, 0.362643826956149f, -0.189913270725334f, -0.110428721523612f, -0.666510263156819f, -0.214827103263521f, 0.912669747474334f, -0.973896103049543f, 0.665373714127588f, 0.148135031012834f, 0.126524689644449f, 0.00283763548841764f, 0.312700495893193f, 0.579520771033243f, 0.677583023476560f, -0.779567427807191f, 0.0694994546110597f, -0.298762697062437f, 0.655210050716681f, 0.435909078048151f, 0.322095567178671f, 0.764827170021089f, -0.713736794113842f, 0.992844460358584f, -0.735915506109616f, 0.280204875392391f, 0.584446532772711f, 0.796955505835788f, 0.742508124239176f, 0.0785523490091065f, -0.562359397016753f, 0.874448473576734f, -0.794251927759664f, -0.658767152705445f, 0.120015806343044f, 0.662372174700575f, -0.719334975225296f, -0.663474261357014f, -0.637663874969148f, 0.706137632813821f, 0.734790814693796f, -0.449118755654663f, -0.758125670003823f, 0.719059339327447f, -0.228679956701166f, -0.0782671261690160f, 0.637830522744746f, -0.178696376536345f, -0.848273935253246f, 0.840882430630200f, 0.977813953976437f, 0.565474986185913f, -0.807314895274907f, -0.100534840844589f, -0.436186956483089f, 0.854663592026441f, -0.547576146320248f, -0.621784076386717f, 0.688687549426321f, -0.688962085987764f, -0.998914668418794f, 0.751493418398842f, -0.203018738091861f, -0.881317097659280f, -0.422480898609404f, -0.321074554557095f, -0.759379357125740f, -0.806503084491033f, -0.496837315822352f, 0.217087355208111f, -0.776801484423500f, -0.445747498145286f, 0.710204776554782f, 0.274276964033182f, 0.650397224484409f, -0.709395921248168f, 0.862663541330686f, -0.946166202558813f, 0.826638502366159f, -0.450587332736099f, -0.808257632193740f, -0.414360554482101f, -0.471118187583276f, 0.981592919290155f, 0.192794908371370f, -0.314979855997427f, 0.722518962804398f, -0.795914669179603f, 0.121447532644509f, 0.0446893237592363f, 0.651720955387594f, 0.897128141094619f, 0.283834144643742f, 0.369570391543943f, -0.163784005163726f, -0.799144231493300f, 0.338136741961422f, 0.795991730702685f, 0.601735561139351f, -0.556654767533027f, 0.907044495725416f, -0.374604065784494f, 0.814308532452677f, -0.254295412850351f, 0.443103437041340f, -0.0218296619602199f, 0.826728672505738f, 0.773205771668962f, 0.171909022893217f, 0.497670481959597f, 0.954178712898056f, 0.0840098577761919f, -0.705861127301893f, 0.145663865959608f, -0.436204975766037f, 0.479359595998989f, -0.719493824988072f, -0.523146212355768f, -0.917822711649927f, -0.610003715217602f, -0.192266667446473f, -0.377507163265653f, -0.250419291332051f, 0.873627391381727f, 0.922899703740095f, -0.902411671519496f, 0.285830821349708f, -0.577368595723736f, -0.598296174995687f, -0.0152478418690674f, 0.503725955636280f, 0.946501779740920f, 0.261108140547963f, 0.206258978593364f, -0.887022338332430f, 0.989187042741485f, 0.461764104690670f, 0.305280284664753f, 0.243972878436235f, -0.573704516784209f, 0.111805651228880f, -0.373590027525854f, 0.574564836347642f, -0.712884790778729f, -0.0570130063179222f, 0.244209425500712f, -0.717492787619277f, -0.476920207759357f, -0.444169983027413f, -0.254851417015366f, -0.505678630542571f, -0.953549022234155f, -0.0316841901798541f, 0.198256779602804f, 0.151938229162240f, -0.0259028503944394f, -0.799645893003010f, -0.889308912372168f, 0.339221517072804f, 0.904784479404768f, -0.367330903112591f, 0.866281762131661f, 0.112765232993802f, -0.0852946527317187f, -0.283538359072154f, -0.734951426632046f, 0.502970854898684f, -0.541434927857400f, 0.881496286285600f, -0.227404039639917f, -0.636983936776183f, -0.0799774217214970f, -0.833780310813424f, -0.222787370954425f, 0.433143783060434f, 0.0953330524947187f, 0.965400264971588f, 0.308927931247299f, 0.344316393259575f, 0.122880788538352f, -0.898509922382301f, -0.187062523329053f, 0.705352247460646f, -0.817811000761718f, 0.303714513401701f, 0.714863075518907f, -0.00862372607283035f, -0.842715848975590f, 0.816504077307885f, 0.924594085591125f, 0.334618732730041f, -0.212414743241377f, -0.758289625449925f, 0.586405661412351f, 0.909247363444287f, -0.800422609846793f, 0.397430897916299f, -0.408827454151232f, -0.411913213123543f, -0.602703152770135f, -0.893591462026327f, 0.417648762458765f, -0.766362696266534f, -0.166060103951854f, 0.883234167729589f, -0.0741908774062401f, 0.113912882075078f, -0.268248292164738f, -0.825585719915457f, 0.885446166477969f, -0.996523379251940f, -0.000841720632677401f, 0.940286529247477f, -0.528330498750176f, 0.0938880690147421f, -0.966296878893937f, 0.891956527154360f, -0.483384605653306f, 0.257210342748458f, -0.820220338820906f, 0.363913841603935f, 0.0364865250689275f, 0.0619156958713947f, -0.645447937080250f, 0.548279343062761f, -0.289526240449473f, -0.506780094171335f, -0.901771170107367f, -0.437874075223813f, 0.748512212111141f, -0.529884246718074f, 0.924062132675193f, -0.365432219122282f, -0.263296006595835f, -0.927083881647913f, -0.192737974697553f, -0.450051159199964f, -0.543528645806642f, 0.834976909049276f, -0.426975046433596f, -0.361056079272416f, 0.883880063360531f, 0.680380429911630f, -0.553642515320953f, 0.548847108935282f, -0.357430246936948f, 0.210445016993628f, 0.949511601115471f, -0.611278947360487f, 0.344744934459962f, 0.0684247970496175f, -0.877154656281116f, -0.521992702610556, -0.0303764312006813f, -0.647220068176984f, 0.693175336224119f, -0.0955602614554496f, -0.765579758912278f, -0.821318118938906f, -0.220936603794347f, 0.159013709512021f, 0.0222743973539492f, 0.569438412513281f, 0.896083437551563f, 0.973699071868637f, -0.403438951991928f, -0.976931032127622f, -0.0720613180573018f, 0.0788813367661694f, -0.430781354548607f, 0.580378296309349f, -0.175446689199481f, -0.256743557012462f, -0.696667845393283f, 0.870473046831235f, 0.146660713923108f, 0.277741407197705f, 0.502075064404417f, 0.396530064046844f, -0.000209092342246420f, -0.977003947244262f, 0.451457326960000f, 0.420509664462095f, -0.0826395067671402f, 0.461120688156973f, 0.786867285802415f, 0.429254905841222f, 0.894426863739026f, -0.670297281923597f, -0.833650409296060f, -0.908588009702110f, 0.516311115539149f, 0.975234001829324f, -0.532953533466378f, 0.775291582519158f, -0.0136022600428900f, 0.654817093112596f, 0.363512141498233f, 0.624779024037534f, 0.0237004661473674f, -0.172570506046968f, 0.401807838319043f, 0.997391258152958f, -0.553969395939123f, -0.415425175833161f, -0.758032843655304f, -0.482766088920005f, 0.637574309072414f, -0.729000055114342f, 0.699851428676091f, -0.827508053421131f, 0.900655803848482f, -0.431149800814228f, 0.0369409101983413f, -0.378608101457895f, 0.237564147838841f, 0.533020461112441f, -0.280269627508005f, -0.864065787343603f, -0.0381481642453043f, -0.566886547530062f, 0.539727700361167f, 0.166859339425035f, 0.850080295054718f, 0.384690146030125f, -0.384995288415294f, 0.303656036600558f, -0.580297619022502f, 0.0649069482840878f, -0.162922327392773f, -0.235019427063355f, -0.265468718118809f, -0.121827312187455f, 0.0416628805824146f, 0.343481543012411f, -0.251429566892972f, -0.868100204320718f, -0.802636407512128f, -0.549547579028752f, -0.570017983863503f, -0.853634311513627f, -0.564570567173235f, 0.955944215494794f, -0.0930750790375956f, -0.160319122401953f, -0.640886790354213f, 0.798634607857513f, 0.503051518023559f, 0.765247226736789f, 0.909476811674882f, 0.677590253114963f, -0.110641683440517f, -0.336445241915220f, -0.684064840782028f, 0.962285048920031f, 0.883303701653897f, 0.981819291389659f, -0.597290928759656f, 0.215792997443025f, -0.847656608719347f, 0.679887992445640f, 0.299901700372808f, -0.677306526467426f, -0.348340058872692f, 0.651490451411335f, -0.133387041637395f, 0.718311240322040f, 0.0869279817052975f, 0.155413706090559f, -0.869119988858735f, -0.566773040844476f, -0.0513826414151206f, -0.368087669232071f, -0.978175512831125f, -0.229213501073727f, 0.344608572405871f, -0.663307667219997f, 0.437238632879575f, 0.00205230197288353f, -0.0897076092856746f, 0.834529513214144f, 0.131872357342232f, 0.113081940417244f, -0.418620232731326f, -0.317993033651213f, -0.740303025960662f, 0.423423655701288f, -0.300833032468860f, -0.458960388256530f, 0.692670405117589f, -0.559944357561921f, 0.0168623577148430f, 0.568661331088367f, -0.385055363002398f, -0.356055436463140f, -0.794446573681063f, 0.908870080953069f, -0.295500656666577f, 0.800625150733729f, 0.206307902542489f, 0.729591183391974f, -0.0655746333947396f, -0.261707022686154f, -0.802380330579914f, 0.0812359238243023f, -0.00528231140765212f, -0.725740453383981f, 0.919076065030463f, -0.896497189839174f, 0.861919731820265f, -0.804273875755869f, 0.230339021648310f, 0.296779613186519f, -0.349872572510143f, -0.270230381483447f, 0.0368924200249658f, 0.581340248642417f, 0.943620537648739f, 0.715012058065301f, 0.528414993233909f, 0.695917111744314f, -0.634354198968852f, -0.483786223099716f, 0.565405035681248f, -0.530076864213017f, 0.363019522302994f, -0.825556544716473f, 0.891096876998683f, -0.990692760548295f, -0.450641405862313f, -0.597008073985341f, -0.464377765418678f, -0.942926913464693f, -0.871399725569805f, 0.232335933943403f, 0.858786794807406f, -0.528589179815518f, -0.324757177062634f, 0.595880088750788f, -0.976574570427974f, -0.423824220654658f, -0.832990206908489f, 0.198704682807118f, -0.168244652325292f, 0.843066822744011f, 0.0912498543932607f, 0.485570815146582f, -0.104653316420662f, -0.623461298489716f, -0.807713596811018f, 0.737782734425857f, 0.456364368166532f, -0.430703367862900f, -0.188953991637209f, -0.827984282695373f, 0.0246267653665548f, 0.891225605267640f, 0.910600867999638f, 0.345236086687552f, -0.600682365520065f, 0.833182106437698f, 0.213749250288017f, -0.0866339102562885f, -0.618385082289017f, 0.859527120927500f, 0.749978780964161f, -0.334770513867011f, 0.242140166670949f, -0.196268320459958f, 0.611789869603675f, 0.655057159657307f, -0.603759576722096f, 0.614654509385217f, 0.144145218488192f, 0.959930150756613f, 0.485009777784726f, -0.564230295010912f, -0.404716165405314f, 0.0442672151313601f, 0.929486639423805f, 0.409386317338224f, 0.527053707674182f, 0.899087569745327f, -0.933259779365388f, 0.265159475034860f, -0.858300862890810f, -0.870994388031662f, 0.354868177430506f, 0.00956840260511749f, 0.429740959889133f, 0.649668163567379f, -0.744532888765288f, -0.967499901569196f, 0.556703631745254f, 0.535130550118618f, -0.639502350153040f, -0.604586469532735f, 0.0799683564329623f, -0.156074786599444f, -0.348308700325411f, 0.217829052228100f, 0.545642400171123f, -0.303317700019152f, -0.473220675222451f, -0.239688108834945f, 0.0998500862725149f, -0.962734081833842f, 0.870743993144299f, 0.464578557934316f, 0.184511089576136f, 0.559729843314504f, 0.0702052363354577f, 0.632714874625648f, 0.212930743289312f, -0.454606863365109f, -0.592679055778218f, 0.287649993384466f, -0.457293694071368f, -0.423493046785686f, -0.0674763327876298f, 0.242131064298176f, 0.488581911885965f, -0.464567743213882f, -0.387515661812354f, -0.914585596974616f, -0.255803162310627f, 0.941267268311980f, 0.690278917089395f, 0.302397314111962f, -0.178461434689705f, -0.949279941481428f, 0.160440202901122f, -0.970582196769486f, -0.0119478205074164f, -0.206440255898676f, 0.221640403444713f, -0.819801447827624f, 0.263614394802488f, 0.616376195532700f, -0.596859494305351f, -0.118659509995453f, 0.458168997595326f, -0.0400474705134108f, 0.934465050133603f, -0.852936731989621f, 0.0191637795580570f, 0.298534793677081f, -0.857491630206749f, -0.0141198383157879f, -0.365027350962024f, 0.450964838023674f, 0.351383095290905f, -0.387039947149600f, -0.983994933095116f, 0.610531582220017f, -0.0446025524732094f, 0.216718014780746f, -0.676819246943449f, 0.0385619292249610f, 0.192482456707739f, -0.288809653393521f, 0.241774557042318f, -0.444638770943313f, 0.535319194413803f, 0.374773141606987f, 0.186364279454450f, 0.0701814972821988f, -0.452753172654203f, -0.350918291268194f, -0.332963791049667f, 0.179301863965318f, 0.954101654404080f, -0.687960044344130f, 0.611454049205213f, -0.696789567124132f, -0.551566492897529f, 0.656434797122885f, -0.601779335396959f, -0.265656331560395f, -0.528821434638507f, 0.153601151147409f, 0.514739334540489f, -0.0517769842323894f, -0.659246830986894f, -0.453055366696259f, -0.0515886000780059f, 0.958478845408115f, 0.0221452906045994f, -0.159960643390796f, 0.816263632871352f, 0.245244170325114f, -0.0919839688704780f, 0.947170598807362f, 0.846772793441790f, 0.247105133025056f, -0.801972939368103f, -0.224977420586025f, 0.130099925027197f, 0.497816036746753f, 0.308139730113712f, -0.0536876417759813f, -0.492022090866895f, 0.188938438822753f, -0.400894058284033f, 0.314370104391157f, 0.618580768947071f, 0.830051263404639f, -0.228700130023340f, 0.811855169643177f, 0.0924092179787017f, 0.273652523319809f, -0.0624274843235475f, -0.503696982048589f, 0.510545161203341f, 0.341823133345436f, -0.437486933663093f, 0.0134072800031224f, 0.613837993234983f, 0.740945655313894f, 0.135311460882606f, 0.464832228842466f, -0.973962843371452f, -0.519388256678232f, 0.631469277357519f, -0.936937468616713f, 0.208677911871604f, -0.0946010975796272f, 0.560587233611855f, 0.230925763372331f, -0.637408482848184f, -0.679175194353885f, -0.408696637706987f, -0.0837464598184048f, -0.911070817707239f, 0.985815432104941f, -0.208807972878988f, 0.741966810464688f, 0.162772839973564f, 0.717702638881939f, 0.490767958961575f, -0.835565390813677f, -0.878516167634055f, -0.956727838876563f, -0.00772081382858891f, 0.355227897612178f, 0.202889185809854f, -0.431078767653467f, 0.106936101717808f, 0.354494042302258f, -0.619623833602791f, 0.193065593078352f, -0.105803087758606f, 0.151828327005194f, -0.141094922099930f, 0.847569902283069f, -0.656683924792181f, -0.880754505470701f, -0.421714047610595f, 0.681762288858050f, 0.633712681698887f, 0.947060360650644f, -0.959122611588459f, -0.0690574969687099f, -0.805062392278087f, 0.226501754467861f, -0.414732397455275f, 0.242398867364043f, -0.831838824773804f, 0.00787391802290793f, -0.860692119913991f, -0.391321299589110f, -0.0548681430681355f, -0.992920640472037f, 0.0975642331777702f, 0.894630836703243f, 0.767919825689366f, -0.260878774442215f, 0.407457430171103f, 0.140688657702825f, 0.737494845272763f, -0.650969054257040f, 0.230613259000797f, -0.0986876345046772f, 0.0996951163848971f, -0.679173062298700f, -0.760174222364469f, -0.613840714529317f, -0.692138390397415f, -0.0919103790884603f, 0.0259548517830916f, 0.463763807478796f, -0.859327137970617f, 0.298600182982665f, -0.591236092977368f, -0.994984881037264f, -0.0533840054951049f, 0.544979189292485f, 0.652482875230260f, 0.897548627394727f, -0.340241293753474f, 0.508237349558163f, -0.611986702936889f, -0.399952468536369f, -0.758494484998191f, -0.148960755782999f, 0.895231513826071f, -0.870487943961511f, -0.172763884748068f, -0.652702954266129f, 0.784450103085903f, -0.428504279168614f, -0.347266234450861f, -0.0897193897382391f, 0.760686883857503f, -0.0863659842493281f, -0.453544362916610f, 0.713112885874267f, -0.529914378597266f, -0.134507787695203f, -0.590955798880753f, -0.372583442870916f, 0.646730663631020f, -0.809515553972267f, 0.0226873348847205f, -0.209338539804651f, -0.737170063193136f, 0.365916689978321f, 0.658019395382111f, 0.733982378695990f, -0.579926149814113f, 0.973814182111372f, 0.933875763922095f, -0.985234946636757f, -0.103124599698243f, -0.798304574918884f, -0.119705341414667f, 0.205941898284561f, 0.111088288053652f, 0.418598493379981f, 0.309112287901667f, 0.0865232803642195f, -0.281174085998345f, -0.158426951248790f, 0.156672456990889f, 0.608691108739118f, -0.124654784531448f, -0.372060827503666f, 0.555750853569654f, -0.481715370485256f, 0.411012047999522f, 0.265636511301544f, 0.164466400718006f, 0.427292785417094, -0.407665783814271f, 0.0463239131527564f, 0.0109249300633605f, 0.0949704798708169f, 0.223291931618591f, 0.708651599857453f, 0.810927407452143f, -0.298811874805995f, 0.347215272448441f, 0.778225160999446f, -0.981258755328673f, -0.629231280170021f, -0.948786159268210f, -0.0530522786747270f, -0.665046033882002f, 0.776993795678436f, -0.604492154463805f, -0.906360689482177f, 0.543616910115371f, -0.501547360013149f, 0.571784796850774f, 0.868511495621889f, 0.783008382563488f, 0.571870376568081f, 0.0471150346240308f, 0.402433510592678f, 0.661353159662286f, 0.0253381317208246f, 0.720141243708461f, -0.478805385943742f, 0.989639021624774f, 0.538614599364854f, -0.282810721919526f, 0.888399971333007f, 0.118572990347886f, 0.564528382703688f, 0.988296121763412f, 0.509638594649021f, -0.797738059997026f, 0.0363326380089621f, 0.978315833815278f, -0.483368013204689f, 0.879051054425480f, 0.632539830439323f, 0.722677742708361f, 0.578919286433726f, -0.250721628167261f, 0.534435049744896f, -0.0404568429105234f, 0.00805525426120179f, 0.841210870775473f, -0.731771544679396f, 0.713758914490801f, 0.830250762535296f, 0.436563669872217f, 0.567024378980237f, 0.983941121609744f, -0.253548560865555f, 0.647105012325159f, 0.434994339049196f, 0.130837710207442f, -0.775136733344706f, 0.234917279141211f, -0.498429841761386f, -0.273571256415041f, 0.247467425899991f, -0.970396693506149f, 0.975835855884816f, -0.347896516486866f, -0.552856369180847f, -0.887336234316568f, -0.573271015958957f, 0.910862901097874f, -0.807236601077904f, -0.523971593712952f, -0.263589563369279f, 0.591056276091253f, -0.320168527954128f, 0.726795865615521f, -0.731502115921006f, -0.942225519371229f, 0.268573107637337f, 0.380348127119473f, -0.284539943611895f, 0.117478291379931f, -0.817442486350524f, 0.0734705767013011f, -0.626880755668906f, -0.873066996524459f, -0.528675805715351f, 0.490255491577847f, 0.398142666604162f, -0.911320079669940f, -0.870350237514323f, 0.854587452657144f, 0.736349579728106f, 0.948232845958681f, -0.00126774478569258f, 0.905641169934000f, -0.965500575551565f, 0.0831330388550517f, -0.892713267782484f, -0.277958019172831f, 0.312987842344813f, 0.484268977417485f, -0.365960524226328f, 0.177956605738091f, 0.913776767689874f, -0.897537691614058f, 0.473075982698961f, 0.913190042662185f, -0.00843862630950820f, 0.972679442298938f, -0.856058592202917f, 0.264007224067230f, -0.138444823656136f, -0.386195416368251f, -0.286657907928107f, -0.231200657384828f, 0.917365701941188f, -0.271317547281263f, -0.252691685075831f, 0.893742787021399f, 0.512463051119608f, 0.979155111008605f, -0.472272776864686f, 0.238767541974988f, -0.672234403865928f, -0.846783135777377f, 0.0877594573148737f, 0.493055606176910f, -0.289012308379085f, 0.416463895880697f, -0.0795051375851281f, -0.476692131327163f, -0.430471976159529f, -0.701875030095239f, 0.724684336417516f, 0.984802039066595f, 0.798285421773762f, 0.000509924988974175f, -0.0852199551444761f, -0.709724122158260f, -0.332735158942919f, -0.741119907407496f, 0.729608513555970f, 0.500578022862182f, 0.520862987462710f, 0.565678561009731f, -0.393741545311224f, -0.568866018100912f, 0.571654318026290f, -0.817900961532165f, -0.793268461448962f, 0.614914392385859f, 0.763415306986536f, 0.450074180772758f, -0.737435729799608f, 0.841185794339245f, 0.894276069286366f, -0.276262284222369f, -0.798623475612628f, -0.280994234105732f, 0.821175230597885f, -0.474251640366966f, -0.190039801864015f, 0.0663032720971493f, 0.884162053156770f, -0.162023139878049f, -0.963135153785511f, -0.582213329804047f, -0.328536493809765f, -0.938405687658462f, -0.0171569611327957f, -0.727260847907578f, 0.419920927745257f, -0.361592243835530f, 0.476989471873569f, -0.146161675185107f, 0.431817832405826f, -0.371528849369885f, -0.940567978751516f, 0.165203770962029f, 0.781321525273307f, 0.0585592625092357f, 0.573299596753579f, -0.378869924017182f, 0.523139576520889f, 0.385605607116478f, -0.235893429970747f, 0.285814921067909f, -0.121941292771133f, 0.621558611608942f, -0.0860979132283732f, -0.627097832687809f, -0.312083243705910f, -0.494490796681559f, -0.987187334387934f, -0.0804474888246625f, 0.496400656176795f, -0.851811189314651f, -0.791398271297849f, -0.868174317799275f, -0.226794668997878f, -0.335339474552766f, -0.276765924750817f, -0.395876032147377f, -0.740529136126816f, -0.167799472110453f, 0.593129248263724f, 0.336783120133436f, 0.248892158925787f, 0.950120283075237f, -0.795216613504226f, -0.574731116508357f, -0.822689608026685f, 0.973698546284335f, 0.125166556654624f, 0.588150318080073f, 0.128654744345192f, -0.219207714307262f, -0.271053050307713f, 0.124071241265810f, -0.618209718015327f, -0.766619799595349f, -0.478340220431165f, -0.446873929629545f, 0.978019432749647f, -0.627041040766022f, 0.169323691066764f, -0.714079827532216f, 0.386101296128268f, -0.360225804976135f, -0.236797717782837f, -0.311635747131794f, 0.0482888201705840f, -0.477302740867809f, -0.427349080854399f, 0.390352470816329f, 0.611790541936623f, -0.648292156214605f, -0.345871618789073f, 0.509300603302844f, -0.0142202703124219f, -0.570248077753979f, -0.0629178211029751f, -0.737806048037047f, 0.497750084049821f, -0.761650107803135f, -0.788756591098617f, -0.994497286039420f, -0.987344273533962f, 0.657151987467984f, -0.763708299084062f, -0.0729359162118841f, 0.0455275633022023f, -0.101919187896584f, 0.457804242981095f, 0.0117715388281796f, -0.274125197027132f, -0.949738804931191f, 0.762108173886486f, 0.405150754308562f, -0.733330375873553f, -0.712774896799572f, -0.791947616412901f, 0.444023894424500f, 0.00507562975249609f, -0.900698136223538f, -0.576055334977054f, -0.948895529956106f, -0.832665060374124f, -0.992753953473078f, -0.0674086978315183f, 0.569494111501383f, -0.962269067721443f, -0.489700810475570f, 0.972626508328545f, -0.777400448149780f, 0.115588644128954f, 0.0730469703310024f, 0.523584488072518f, 0.659055312807301f, 0.134198234373838f, -0.797833055125151f, -0.167842823235145f, -0.662347837139732f, -0.537544370279756f, -0.622353549740796f, -0.789789664448618f, 0.985300123665319f, 0.862449845163424f, 0.973193986256980f, 0.148883268671144f, 0.283619537155083f, 0.508503183151258f, -0.246167305966866f, -0.259543094514413f, -0.778029136807597f, 0.128978622849116f, -0.920978818238085f, -0.116324837544276f, -0.261472397833253f, 0.772449038068069f, -0.696754008784325f, 0.980778877985902f, -0.227636956328402f, -0.472493776528032f, -0.568519858000960f, -0.151689463117960f, -0.102997587484899f, 0.464752146042376f, -0.839114793935065f, -0.0325074343587592f, -0.180618880765978f, 0.0132253638432844f, -0.646173464496730f, 0.821983901071593f, 0.657453744559881f, 0.786315172070382f, -0.438718096604728f, 0.702691078885442f, 0.859957412428682f, -0.505281395658564f, -0.236722160990303f, -0.698465568366759f, -0.746418979540090f, -0.218205126412646f, -0.808715244840435f, -0.949813739800491f, 0.176975348790769f, 0.723960974918154f, -0.139253733704369f, -0.387224393658603f, -0.869945438924443f, -0.396979039594941f, 0.0256060022407458f, -0.566074790002811f, -0.161564565183606f, -0.736189868188370f, -0.205593811665825f, -0.628996407588712f, -0.0266462623004120f, -0.344127255771429f, -0.229003801178142f, -0.469786561635510f, 0.258249378153965f, 0.160442939158622f, 0.0528817242116550f, 0.261960766261548f, -0.571069557415276f, 0.411333771884545f, -0.145205354714326f, 0.249324532476397f, 0.163889600722793f, 0.649915677347011f, 0.147077371087195f, -0.227104208942068f, 0.867390199578604f, -0.0734153565896754f, 0.0491208061060167f, 0.0360590744216485f, 0.181620126101180f, 0.0567549454976457f, -0.856976992549465f, -0.242511192726339f, -0.624770508991394f, -0.793161214564285f, -0.251208532727981f, -0.833192309869275f, 0.368166434661069f, 0.939730260791580f, 0.305796202211942f, -0.598830491282818f, -0.0575368190467946f, 0.371329658849021f, -0.227872714677810f, 0.707539568196379f, 0.795186297468385f, 0.475847791658551f, 0.829361555893632f, 0.405386540930889f, 0.213282954068900f, 0.767339023510319f, 0.525055513018554f, 0.259437496637378f, -0.524342591286100f, -0.731515526086696f, -0.233118783725590f, 0.237972339628935f, -0.933985285078109f, 0.537013420173496f, 0.498819465200784f, -0.407713459607516f, 0.382821417923595f, -0.416894700661466f, 0.0787266904103943f, -0.0627973593192392f, -0.320105342653426f, -0.844066834407447f, 0.138221622417319f, -0.676665423871596f, -0.961043785105959f, 0.832268610130385f, -0.905530890441773f, -0.114191325652611f, -0.376697124207843f, 0.390323137798417f, 0.953143142925101f, 0.983427991280007f, -0.0895687386326503f, -0.681543125061097f, 0.677131540142176f, -0.867715848764628f, -0.812718786220309f, -0.212509939486840f, -0.990002327123638f, -0.0682855560011961f, 0.129310729289606f, -0.623746296335073f, -0.285580241032587f, 0.235626081900812f, -0.611973228709249f, 0.539189737955466f, 0.970058678533189f, 0.901944358898624f, 0.168094826408153f, -0.666711281252260f, 0.965612752173968f, 0.651034558458719f, 0.687501917067508f, 0.758614314567106f, -0.839396045781239f, -0.552775028233564f, -0.528941743867256f, 0.174761156721889f, 0.243585712774679f, 0.588913151268911f, -0.306898192880627f, 0.921540023069231f, -0.0223654942298541f, -0.102408576957649f, 0.612577852207921f, 0.835809058447089f, -0.437118459197839f, 0.455316033239981f, 0.311435507416257f, -0.648992336007256f, 0.346823844785409f, -0.632080213667648f, -0.599678627679202f, -0.653822991854328f, 0.484305292443427f, 0.782046295685087f, 0.960987598814982f, 0.627169162605570f, 0.948092598306120f, -0.185268381817018f, 0.602489977060513f, -0.885827813790617f, -0.00179203147433582f, -0.175476447614991f, 0.0461282236560925f, -0.898013889602944f, 0.256310837914276f, -0.733422110056865f, -0.740091677658095f, 0.966724540497493f, 0.328056986822768f, -0.267854591449557f, 0.670545831663244f, -0.356204313297688f, 0.0729865206358908f, -0.594530723723669f, 0.519965324048968f, 0.0632129606097647f, -0.878434885663544f, -0.497945943395010f, 0.0151854050905818f, -0.218036856012343f, 0.547721213710874f, -0.0915514918588898f, -0.279344098401951f, -0.228654882218650f, 0.100432155997130f, 0.802024600677294f, 0.175832345686877f, 0.0551231013299744f, 0.938247319394824f, 0.639298571360036f, -0.291461603371678f, -0.853503115314794f, -0.604829242631156f, 0.0291571486740745f, -0.932575328418390f, -0.621235088415116f, 0.403040314052094f, -0.809695618266849f, 0.966605888732736f, -0.199254401023053, -0.540808222970056f, -0.0141840769249790f, 0.114579158224093f, 0.466889318471371f, -0.145415211797766f, -0.846707387707480f, -0.881237200733915f, -0.410798723199712f, -0.637697860299854f, -0.196366036081372f, 0.193267531425712f, -0.258591200841940f, -0.173003722066551f, 0.478121376006132f, 0.953819951501542f, 0.969916001975448f, 0.131515861287576f, -0.499829658784781f, 0.320952777516193f, -0.226980682212371f, 0.766886115655233f, 0.647310434110803f, -0.772594685974992f, 0.772645949480187f, -0.936357605801364f, -0.671842916281206f, -0.595127074295355f, 0.335132581825520f, 0.648964430112689f, -0.793376819398441f, -0.963663232647360f, 0.914308824314478f, -0.397663128784982f, 0.803240040231588f, -0.291039120047626f, -0.339918835846510f, -0.208620988780609f, 0.278177231697424f, -0.833157746552451f, 0.260554706029473f, -0.580537744139231f, 0.918561093477862f, 0.641368468308093f, 0.827379039283645f, -0.412231303854834f, -0.518315486749742f, 0.423356687848085f, 0.0777277584993787f, 0.394127392657178f, 0.609705410002715f, 0.264669032561337f, -0.460555696512027f, -0.0858908123066196f, -0.281781559603429f, -0.179777723960362f, -0.00449990348855067f, 0.803703377739133f, -0.155074032314596f, -0.00206139428833696f, 0.0661730930565525f, -0.737509215752079f, 0.620182143819587f, 0.114750705414661f, 0.545663051433958f, 0.661601724477194f, -0.592280382351976f, 0.609240020031149f, -0.968781019917808f, -0.668068368389875f, 0.206915551463500f, 0.0951453192552747f, 0.268580107578401f, -0.0450052302342363f, -0.933589842483940f, 0.236570492858402f, 0.0688734168318912f, 0.930163232697303f, 0.435953476823146f, 0.533759385687075f, 0.368282038662015f, -0.602312961473778f, 0.709516631712345f, -0.168303926671961f, 0.130670870119294f, -0.657736111745007f, 0.115028598388756f, 0.173728026281032f, -0.681671363429886f, -0.538786035950873f, 0.481457671665448f, 0.0136795278434168f, -0.570065342244344f, 0.188187050857249f, -0.352869308173680f, -0.979175308628854f, 0.223702879460018f, 0.994220466087713f, -0.147795166105729f, 0.218427535879435f, -0.120050826084179f, -0.0124939247430063f, -0.645134875027126f, -0.503122688484778f, 0.534123007328982f, 0.619710972635444f, -0.234248243706177f, 0.987144458053815f, 0.261284702576427f, 0.851827092094236f, 0.750019654249059f, -0.926154630610335f, 0.449356103243440f, 0.783011320523296f, -0.459228158107270f, -0.228877816937867f, 0.271108937592868f, -0.676085611673506f, 0.783114428240160f, 0.636093784021493f, -0.754110314308629f, -0.546386104880684f, 0.0385811136139234f, -0.768951137117397f, -0.644624743947807f, 0.00890157035391148f, -0.0792572116273387f, -0.989980668770044f, 0.603057533157075f, 0.280835727469123f, -0.634716709420524f, -0.712669415138995f, -0.424129916157595f, -0.436923748487354f, 0.467366013559791f, 0.907740481011987f, 0.788617065944311f, -0.152237692069130f, -0.963044404518533f, 0.907393322909416f, 0.806867676446313f, 0.699270310021791f, 0.107867603776547f, 0.127360747415417f, -0.502645789696788f, -0.511744166872327f, -0.121672719343072f, -0.596527146770249f, 0.410180172377510f, -0.852889849908704f, 0.278972213674154f, 0.0260156356783650f, 0.997558501949683f, -0.499245840292893f, -0.451169267624132f, -0.881643497362337f, 0.986957209874262f, -0.129608292321380f, 0.935829016346258f, -0.649021465281634f, 0.550436689069794f, 0.278888743082679f, 0.0137769346664500f, -0.660666060213522f, -0.416709136728042f, -0.302903068397225f, 0.180657445835459f, -0.908195955986293f, 0.280056533234627f, -0.660025789034158f, -0.798207438952561f, 0.901575224780405f, -0.608702932295102f, 0.318860199910414f, 0.874005722023406f, -0.0816057579181704f, 0.981671341873017f, -0.339234700161323f, 0.559717959858931f, 0.390363525109105f, -0.309384476087470f, 0.956563156784297f, -0.623734354817613f, -0.196627375289105f, -0.702076014509088f, 0.293098766889643f, -0.617152224560368f, 0.859117491438645f, 0.661015739867647f, 0.0747554166353739f, -0.282417009682732f, -0.667461537762524f, -0.451029960388404f, -0.464518668674360f, 0.591389440503293f, 0.552648871601186f, -0.242406315814918f, 0.147876771864331f, -0.00605730052917419f, -0.850648363553678f, -0.659957159486993f, -0.165475362851332f, 0.204150315434812f, -0.665767311591476f, -0.716154682563576f, 0.417487456932076f, 0.448184990956287f, 0.733843802413198f, -0.170228277851921f, -0.346809954182150f, 0.956058632188011f, 0.0315623945930987f, 0.509027121691627f, -0.147826185909834f, 0.717423768198044f, -0.153258078639530f, -0.586190749016474f, 0.122228033051868f, -0.884999045468193f, -0.364729711773548f, 0.0869976154696972f, -0.793532199218799f, 0.533748273468951f, -0.852754376244435f, 0.294752047699830f, 0.136764278163013f, 0.838074791168389f, 0.795224598541123f, -0.778005568697498f, -0.260924769562304f, -0.303759147861313f, 0.273726011325558f, 0.530476779331216f, 0.0866801234357086f, 0.0677702376031544f, 0.724353404182035f, -0.974710312543683f, 0.791838170482991f, 0.247768259921660f, 0.979431048271259f, -0.386992541899814f, 0.0640038231299192f, -0.00457726816166693f, 0.371455553726539f, 0.647649995487707f, 0.268304945808406f, -0.320428608173924f, 0.0927511620029309f, 0.256010036486838f, 0.740396212690346f, -0.656873241472848f, 0.823534292439413f, -0.820380362458844f, -0.453300307443023f, 0.784238355222248f, 0.912791840124321f, 0.0999478035440859f, -0.212620916988855f, 0.0170290625008669f, -0.589062380565879f, -0.171833624145497f, -0.524918122866141f, 0.961528292650892f, 0.101262818636430f, 0.941455114569308f, -0.967226220138929f, 0.616781547648562f, -0.913823148383971f, 0.274508821885917f, 0.924653374107756f, -0.866302908989783f, 0.227541907715857f, 0.0907574361370582f, -0.127499097943315f, -0.942071371521895f, -0.119419163649152f, 0.674284088819523f, 0.881328505929745f, 0.246290207551702f, 0.0547607254148590f, -0.462882918359077f, 0.888969728230585f, 0.666583509571921f, 0.238417203582380f, -0.279842248122727f, 0.855260336845903f, 0.314306869401155f, -0.188654877893078f, -0.609304918228150f, 0.169453885325888f, 0.265617874907016f, -0.943423537926184f, 0.493118676869450f, -0.386147750024858f, 0.0103920154342951f, 0.753677832518483f, 0.363353012331066f, -0.286620106520429f, -0.623332994906295f, 0.183966714365642f, -0.124278942882867f, -0.687889346448110f, -0.509002319646341f, -0.705769785650865f, 0.600586126467172f, 0.814989294939922f, 0.198959025256652f, 0.477897007911356f, 0.757957814363899f, 0.617755921094230f, -0.353589871947529f, 0.419688673189503f, -0.860584865805600f, -0.0232779635193843f, -0.789951030889387f, -0.893196700185750f, 0.610996462535201f, 0.847373590985131f, -0.989553358501822f, -0.367651771428081f, 0.741563712056747f, -0.923595352848971f, -0.580174215739367f, 0.577092000574232f, -0.910872910110270f, -0.907499077314190f, 0.692372247654077f, 0.810694134592084f, -0.608596332548047f, 0.761254615051625f, 0.0546240611947364f, -0.393956427117691f, -0.116127831535139f, -0.0352014590913388f, 0.374742194768889f, -0.927344099730091f, 0.939301337232488f, -0.969831716293845f, -0.0489333404770240f, -0.586719398908953f, 0.0235541378462407f, 0.388882981728285f, -0.0728483242295113f, 0.418280445244943f, -0.574289337805456f, -0.779962057565259f, -0.835190719754123f, 0.918717316922657f, -0.765889988109173f, -0.935310664146932f, -0.0750906135370848f, -0.256246546197534f, 0.693865929543926f, 0.592800255527084f, 0.836743344551035f, -0.801953470827580f, 0.0595524153568945f, 0.158376549012192f, -0.429364776412726f, -0.450531184162532f, -0.169317185285268f, 0.420344570579195f, -0.902838087574441f, -0.654676904337469f, 0.941802178622893f, -0.411034608875500f, -0.455381371659872f, 0.582371240315256f, -0.276150504466756f, 0.164276403376185f, -0.960238817086774f, 0.590055303394028f, -0.995185688656226f, -0.285809748360467f, -0.792066171752882f, -0.456123303649101f, -0.864169187700384f, 0.798745251308383f, -0.517673464079948f, 0.523086536900369f, 0.398784615211052f, 0.908677185333852f, -0.434846969584770f, -0.277024535706464f, 0.575800013122065f, -0.0423952171673019f, -0.327530749916683f, -0.401220909875065f, -0.232577533032385f, 0.577630268254944f, -0.733290201484409f, -0.297499739456838f, 0.166541885572822f, -0.646828619904039f, 0.0312662656272755f, 0.754145050600965f, -0.908499825108811f, 0.315379190361296f, 0.366242661082351f, 0.867903806940678f, -0.613391940567782f, 0.00760147209048068f, 0.953424134034927f, -0.812551125910811f, 0.734998935207065f, 0.781720854678504f, -0.653974423413561f, 0.612587888218526f, -0.297359914095386f, -0.409559158758694f, -0.143962230212734f, -0.814888102841114f, 0.359131810502055f, 0.356924557741016f, -0.872415989401612f, 0.716849887848809f, -0.374916928585818f, -0.0702264435280595f, 0.329843438660215f, 0.0956097573088677f, -0.937528128860310f, -0.322293489817529f, 0.781444964993177f, -0.810141738751828f, -0.150295079242497f, 0.846909181293597f, -0.128124277517711f, -0.752611695817661f, 0.839996835828451f, -0.0705685941510277f, 0.000366462394740585f, 0.0788016995849923f, -0.246053200655556f, -0.156645099915028f, -0.460752333796863f, 0.622021359864204f, 0.722871957583123f, -0.257873353238499f, -0.309810184480446f, 0.765248644407833f, -0.553316047243663f, -0.612742789838491f, 0.354017349601509f, 0.923293368553697f, 0.630695912377860f, -0.148750121613537f, -0.821801680234240f, 0.368247966228196f, 0.405416044101496f, -0.803232509711354f, -0.429778551911399f, -0.723837414527446f, -0.963925147452133f, 0.190882872226757f, 0.477008077263598f, -0.661282403679070f, 0.271643442525556f, -0.915994079618801f, 0.196564556546175f, 0.378359035245796f, 0.584016730657668f, -0.0377864332655202f, -0.327376192853106f, 0.850744189707984f, 0.799571679043808f, -0.111126908452029f, 0.525587242291601f, -0.404486180733535f, -0.134496922397279f, 0.0890128096708100f, -0.815560643303157f, -0.920166023598312f, -0.360079578314899f, -0.556238898466371f, -0.220978103133838f, -0.571530268052405f, 0.573332217175226f, -0.133862258696460f, -0.982130330352248f, -0.352538465285082f, 0.318683937697894f, -0.790927430842686f, 0.691168535237102f, 0.806014327242002f, -0.981639450008060f, 0.407200095027265f, 0.918249921845949f, 0.776880149695420f, -0.437773083955269f, -0.385117533333437f, 0.0115152415796460f, 0.687224538003991f, 0.992524870612626f, 0.471003324792228f, -0.873541777412034f, -0.560923118634380f, -0.726151823613842f, -0.538941951730010f, 0.772057551475325f, 0.858490725829641f, -0.168849338472479f }; # 102 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/fixed-point.h" fxp_t wrap(fxp_t kX, fxp_t kLowerBound, fxp_t kUpperBound) { int32_t range_size = kUpperBound - kLowerBound + 1; if (kX < kLowerBound){ kX += range_size * ((kLowerBound - kX) / range_size + 1); } return kLowerBound + (kX - kLowerBound) % range_size; } fxp_t fxp_get_int_part(fxp_t in) { return ((in < 0) ? -((-in) & _fxp_imask) : in & _fxp_imask); } fxp_t fxp_get_frac_part(fxp_t in) { return ((in < 0) ? -((-in) & _fxp_fmask) : in & _fxp_fmask); } float fxp_to_float(fxp_t fxp); fxp_t fxp_quantize(fxp_t aquant) { if (overflow_mode == 2) { if(aquant < _fxp_min) { return _fxp_min; } else if(aquant > _fxp_max) { return _fxp_max; } } else if (overflow_mode == 3) { if(aquant < _fxp_min || aquant > _fxp_max) { return wrap(aquant, _fxp_min, _fxp_max); } } return (fxp_t) aquant; } void fxp_verify_overflow(fxp_t value){ fxp_quantize(value); printf("An Overflow Occurred in system's output"); __DSVERIFIER_assert(value <= _fxp_max && value >= _fxp_min); } void fxp_verify_overflow_node(fxp_t value, char* msg){ if (2 == 2) { printf("%s",msg); __DSVERIFIER_assert(value <= _fxp_max && value >= _fxp_min); } } void fxp_verify_overflow_array(fxp_t array[], int n){ int i=0; for(i=0; i<n;i++){ fxp_verify_overflow(array[i]); } } fxp_t fxp_int_to_fxp(int in) { fxp_t lin; lin = (fxp_t) in*_fxp_one; return lin; } int fxp_to_int(fxp_t fxp) { if(fxp >= 0){ fxp += _fxp_half; } else { fxp -= _fxp_half; } fxp >>= impl.frac_bits; return (int) fxp; } fxp_t fxp_float_to_fxp(float f) { fxp_t tmp; double ftemp; ftemp = f * scale_factor[impl.frac_bits]; if(f >= 0) { tmp = (fxp_t)(ftemp + 0.5); } else { tmp = (fxp_t)(ftemp - 0.5); } return tmp; } fxp_t fxp_double_to_fxp(double value) { fxp_t tmp; double ftemp = value * scale_factor[impl.frac_bits]; if (rounding_mode == 0){ if(value >= 0) { tmp = (fxp_t)(ftemp + 0.5); } else { tmp = (fxp_t)(ftemp - 0.5); } } else if(rounding_mode == 1){ tmp = (fxp_t) ftemp; double residue = ftemp - tmp; if ((value < 0) && (residue != 0)){ ftemp = ftemp - 1; tmp = (fxp_t) ftemp; } } else if (rounding_mode == 0){ tmp = (fxp_t) ftemp; } return tmp; } void fxp_float_to_fxp_array(float f[], fxp_t r[], int N) { int i; for(i = 0; i < N; ++i) { r[i] = fxp_float_to_fxp(f[i]); } } void fxp_double_to_fxp_array(double f[], fxp_t r[], int N) { int i; for(i = 0; i < N; ++i) { r[i] = fxp_double_to_fxp(f[i]); } } # 275 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/fixed-point.h" float fxp_to_float(fxp_t fxp) { float f; int f_int = (int) fxp; f = f_int * scale_factor_inv[impl.frac_bits]; return f; } double fxp_to_double(fxp_t fxp) { double f; int f_int = (int) fxp; f = f_int * scale_factor_inv[impl.frac_bits]; return f; } void fxp_to_float_array(float f[], fxp_t r[], int N) { int i; for(i = 0; i < N; ++i) { f[i] = fxp_to_float(r[i]); } } void fxp_to_double_array(double f[], fxp_t r[], int N) { int i; for(i = 0; i < N; ++i) { f[i] = fxp_to_double(r[i]); } } fxp_t fxp_abs(fxp_t a) { fxp_t tmp; tmp = ((a < 0) ? -(fxp_t)(a) : a); tmp = fxp_quantize(tmp); return tmp; } fxp_t fxp_add(fxp_t aadd, fxp_t badd) { fxp_t tmpadd; tmpadd = ((fxp_t)(aadd) + (fxp_t)(badd)); tmpadd = fxp_quantize(tmpadd); return tmpadd; } fxp_t fxp_sub(fxp_t asub, fxp_t bsub) { fxp_t tmpsub; tmpsub = (fxp_t)((fxp_t)(asub) - (fxp_t)(bsub)); tmpsub = fxp_quantize(tmpsub); return tmpsub; } fxp_t fxp_mult(fxp_t amult, fxp_t bmult) { fxp_t tmpmult, tmpmultprec; tmpmult = (fxp_t)((fxp_t)(amult)*(fxp_t)(bmult)); if (tmpmult >= 0) { tmpmultprec = (tmpmult + ((tmpmult & 1 << (impl.frac_bits - 1)) << 1)) >> impl.frac_bits; } else { tmpmultprec = -(((-tmpmult) + (((-tmpmult) & 1 << (impl.frac_bits - 1)) << 1)) >> impl.frac_bits); } tmpmultprec = fxp_quantize(tmpmultprec); return tmpmultprec; } # 372 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/fixed-point.h" fxp_t fxp_div(fxp_t a, fxp_t b){ __DSVERIFIER_assume( b!=0 ); fxp_t tmpdiv = ((a << impl.frac_bits) / b); tmpdiv = fxp_quantize(tmpdiv); return tmpdiv; } fxp_t fxp_neg(fxp_t aneg) { fxp_t tmpneg; tmpneg = -(fxp_t)(aneg); tmpneg = fxp_quantize(tmpneg); return tmpneg; } # 398 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/fixed-point.h" fxp_t fxp_sign(fxp_t a) { return ((a == 0) ? 0 : ((a < 0) ? _fxp_minus_one : _fxp_one) ); } fxp_t fxp_shrl(fxp_t in, int shift) { return (fxp_t) (((unsigned int) in) >> shift); } fxp_t fxp_square(fxp_t a) { return fxp_mult(a, a); } void fxp_print_int(fxp_t a) { printf("\n%i", (int32_t)a); } void fxp_print_float(fxp_t a) { printf("\n%f", fxp_to_float(a)); } void fxp_print_float_array(fxp_t a[], int N) { int i; for(i = 0; i < N; ++i) { printf("\n%f", fxp_to_float(a[i])); } } void print_fxp_array_elements(char * name, fxp_t * v, int n){ printf("%s = {", name); int i; for(i=0; i < n; i++){ printf(" %jd ", v[i]); } printf("}\n"); } # 23 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/util.h" 1 # 24 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/util.h" void initialize_array(double v[], int n){ int i; for(i=0; i<n; i++){ v[i] = 0; } } void revert_array(double v[], double out[], int n){ initialize_array(out,n); int i; for(i=0; i<n; i++){ out[i] = v[n-i-1]; } } double internal_pow(double a, double b){ int i; double acc = 1; for (i=0; i < b; i++){ acc = acc*a; } return acc; } double internal_abs(double a){ return a < 0 ? -a : a; } int fatorial(int n){ return n == 0 ? 1 : n * fatorial(n-1); } int check_stability(double a[], int n){ int lines = 2 * n - 1; int columns = n; double m[lines][n]; int i,j; double current_stability[n]; for (i=0; i < n; i++){ current_stability[i] = a[i]; } double sum = 0; for (i=0; i < n; i++){ sum += a[i]; } if (sum <= 0){ printf("[DEBUG] the first constraint of Jury criteria failed: (F(1) > 0)"); return 0; } sum = 0; for (i=0; i < n; i++){ sum += a[i] * internal_pow(-1, n-1-i); } sum = sum * internal_pow(-1, n-1); if (sum <= 0){ printf("[DEBUG] the second constraint of Jury criteria failed: (F(-1)*(-1)^n > 0)"); return 0; } if (internal_abs(a[n-1]) > a[0]){ printf("[DEBUG] the third constraint of Jury criteria failed: (abs(a0) < a_{n}*z^{n})"); return 0; } for (i=0; i < lines; i++){ for (j=0; j < columns; j++){ m[i][j] = 0; } } for (i=0; i < lines; i++){ for (j=0; j < columns; j++){ if (i == 0){ m[i][j] = a[j]; continue; } if (i % 2 != 0 ){ int x; for(x=0; x<columns;x++){ m[i][x] = m[i-1][columns-x-1]; } columns = columns - 1; j = columns; }else{ m[i][j] = m[i-2][j] - (m[i-2][columns] / m[i-2][0]) * m[i-1][j]; } } } int first_is_positive = m[0][0] >= 0 ? 1 : 0; for (i=0; i < lines; i++){ if (i % 2 == 0){ int line_is_positive = m[i][0] >= 0 ? 1 : 0; if (first_is_positive != line_is_positive){ return 0; } continue; } } return 1; } void poly_sum(double a[], int Na, double b[], int Nb, double ans[], int Nans){ int i; Nans = Na>Nb? Na:Nb; for (i=0; i<Nans; i++){ if (Na>Nb){ ans[i]=a[i]; if (i > Na-Nb-1){ ans[i]=ans[i]+b[i-Na+Nb]; } }else { ans[i]=b[i]; if (i> Nb - Na -1){ ans[i]=ans[i]+a[i-Nb+Na]; } } } } void poly_mult(double a[], int Na, double b[], int Nb, double ans[], int Nans){ int i; int j; int k; Nans = Na+Nb-1; for (i=0; i<Na; i++){ for (j=0; j<Nb; j++){ k= Na + Nb - i - j - 2; ans[k]=0; } } for (i=0; i<Na; i++){ for (j=0; j<Nb; j++){ k= Na + Nb - i - j - 2; ans[k]=ans[k]+a[Na - i - 1]*b[Nb - j - 1]; } } } void double_check_oscillations(double * y, int y_size){ __DSVERIFIER_assume(y[0] != y[y_size - 1]); int window_timer = 0; int window_count = 0; int i, j; for (i = 2; i < y_size; i++){ int window_size = i; for(j=0; j<y_size; j++){ if (window_timer > window_size){ window_timer = 0; window_count = 0; } int window_index = j + window_size; if (window_index < y_size){ if (y[j] == y[window_index]){ window_count++; # 209 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/util.h" 3 4 ((void) sizeof (( # 209 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/util.h" !(window_count == window_size) # 209 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/util.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 209 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/util.h" !(window_count == window_size) # 209 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/util.h" 3 4 ) ; else __assert_fail ( # 209 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/util.h" "!(window_count == window_size)" # 209 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/util.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/util.h", 209, __extension__ __PRETTY_FUNCTION__); })) # 209 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/util.h" ; } }else{ break; } window_timer++; } } } void double_check_limit_cycle(double * y, int y_size){ double reference = y[y_size - 1]; int idx = 0; int window_size = 1; for(idx = (y_size-2); idx >= 0; idx--){ if (y[idx] != reference){ window_size++; }else{ break; } } __DSVERIFIER_assume(window_size != y_size && window_size != 1); printf("window_size %d\n", window_size); int desired_elements = 2 * window_size; int found_elements = 0; for(idx = (y_size-1); idx >= 0; idx--){ if (idx > (y_size-window_size-1)){ printf("%.0f == %.0f\n", y[idx], y[idx-window_size]); int cmp_idx = idx - window_size; if ((cmp_idx > 0) && (y[idx] == y[idx-window_size])){ found_elements = found_elements + 2; }else{ break; } } } printf("desired_elements %d\n", desired_elements); printf("found_elements %d\n", found_elements); __DSVERIFIER_assert(desired_elements != found_elements); } void double_check_persistent_limit_cycle(double * y, int y_size){ int idy = 0; int count_same = 0; int window_size = 0; double reference = y[0]; for(idy = 0; idy < y_size; idy++){ if (y[idy] != reference){ window_size++; } else if (window_size != 0){ break; } else { count_same++; } } window_size += count_same; __DSVERIFIER_assume(window_size > 1 && window_size <= y_size/2); double lco_elements[window_size]; for(idy = 0; idy < y_size; idy++){ if (idy < window_size){ lco_elements[idy] = y[idy]; } } idy = 0; int lco_idy = 0; _Bool is_persistent = 0; while (idy < y_size){ if(y[idy++] == lco_elements[lco_idy++]){ is_persistent = 1; }else{ is_persistent = 0; break; } if (lco_idy == window_size){ lco_idy = 0; } } __DSVERIFIER_assert(is_persistent == 0); } void print_array_elements(char * name, double * v, int n){ printf("%s = {", name); int i; for(i=0; i < n; i++){ printf(" %.32f ", v[i]); } printf("}\n"); } void double_add_matrix( unsigned int lines, unsigned int columns, double m1[4][4], double m2[4][4], double result[4][4]){ unsigned int i, j; for (i = 0; i < lines; i++){ for (j = 0; j < columns; j++){ result[i][j] = m1[i][j] + m2[i][j]; } } } void double_sub_matrix( unsigned int lines, unsigned int columns, double m1[4][4], double m2[4][4], double result[4][4]){ unsigned int i, j; for (i = 0; i < lines; i++){ for (j = 0; j < columns; j++){ result[i][j] = m1[i][j] - m2[i][j]; } } } void double_matrix_multiplication( unsigned int i1, unsigned int j1, unsigned int i2, unsigned int j2, double m1[4][4], double m2[4][4], double m3[4][4]){ unsigned int i, j, k; if (j1 == i2) { for (i=0; i<i1; i++) { for (j=0; j<j2; j++) { m3[i][j] = 0; } } for (i=0;i<i1; i++) { for (j=0; j<j2; j++) { for (k=0; k<j1; k++) { double mult = (m1[i][k] * m2[k][j]); m3[i][j] = m3[i][j] + (m1[i][k] * m2[k][j]); } } } } else { printf("\nError! Operation invalid, please enter with valid matrices.\n"); } } void fxp_matrix_multiplication( unsigned int i1, unsigned int j1, unsigned int i2, unsigned int j2, fxp_t m1[4][4], fxp_t m2[4][4], fxp_t m3[4][4]){ unsigned int i, j, k; if (j1 == i2) { for (i=0; i<i1; i++) { for (j=0; j<j2; j++) { m3[i][j] = 0; } } for (i=0;i<i1; i++) { for (j=0; j<j2; j++) { for (k=0; k<j1; k++) { m3[i][j] = fxp_add( m3[i][j], fxp_mult(m1[i][k] , m2[k][j])); } } } } else { printf("\nError! Operation invalid, please enter with valid matrices.\n"); } } void fxp_exp_matrix(unsigned int lines, unsigned int columns, fxp_t m1[4][4], unsigned int expNumber, fxp_t result[4][4]){ unsigned int i, j, l, k; fxp_t m2[4][4]; if(expNumber == 0){ for (i = 0; i < lines; i++){ for (j = 0; j < columns; j++){ if(i == j){ result[i][j] = fxp_double_to_fxp(1.0); } else { result[i][j] = 0.0; } } } return; } for (i = 0; i < lines; i++) for (j = 0; j < columns; j++) result[i][j] = m1[i][j]; if(expNumber == 1){ return; } for(l = 1; l < expNumber; l++){ for (i = 0; i < lines; i++) for (j = 0; j < columns; j++) m2[i][j] = result[i][j]; for (i = 0; i < lines; i++) for (j = 0; j < columns; j++) result[i][j] = 0; for (i=0;i<lines; i++) { for (j=0; j<columns; j++) { for (k=0; k<columns; k++) { result[i][j] = fxp_add( result[i][j], fxp_mult(m2[i][k] , m1[k][j])); } } } } } void double_exp_matrix(unsigned int lines, unsigned int columns, double m1[4][4], unsigned int expNumber, double result[4][4]){ unsigned int i, j, k, l; double m2[4][4]; if(expNumber == 0){ for (i = 0; i < lines; i++){ for (j = 0; j < columns; j++){ if(i == j){ result[i][j] = 1.0; } else { result[i][j] = 0.0; } } } return; } for (i = 0; i < lines; i++) for (j = 0; j < columns; j++) result[i][j] = m1[i][j]; if(expNumber == 1){ return; } for(l = 1; l < expNumber; l++){ for (i = 0; i < lines; i++) for (j = 0; j < columns; j++) m2[i][j] = result[i][j]; for (i = 0; i < lines; i++) for (j = 0; j < columns; j++) result[i][j] = 0; for (i=0;i<lines; i++) { for (j=0; j<columns; j++) { for (k=0; k<columns; k++) { result[i][j] = result[i][j] + (m2[i][k] * m1[k][j]); } } } } } void fxp_add_matrix( unsigned int lines, unsigned int columns, fxp_t m1[4][4], fxp_t m2[4][4], fxp_t result[4][4]){ unsigned int i, j; for (i = 0; i < lines; i++) for (j = 0; j < columns; j++) { result[i][j] = fxp_add(m1[i][j] , m2[i][j]); } } void fxp_sub_matrix( unsigned int lines, unsigned int columns, fxp_t m1[4][4], fxp_t m2[4][4], fxp_t result[4][4]){ unsigned int i, j; for (i = 0; i < lines; i++) for (j = 0; j < columns; j++) result[i][j] = fxp_sub(m1[i][j] , m2[i][j]); } void print_matrix(double matrix[4][4], unsigned int lines, unsigned int columns){ printf("\nMatrix\n=====================\n\n"); unsigned int i, j; for (i=0; i<lines; i++) { for (j=0; j<columns; j++) { printf("#matrix[%d][%d]: %2.2f ", i,j,matrix[i][j]); } printf("\n"); } printf("\n"); } double determinant(double a[4][4],int n) { int i,j,j1,j2; double det = 0; double m[4][4]; if (n < 1) { } else if (n == 1) { det = a[0][0]; } else if (n == 2) { det = a[0][0] * a[1][1] - a[1][0] * a[0][1]; } else { det = 0; for (j1=0;j1<n;j1++) { for (i=0;i<n-1;i++) for (i=1;i<n;i++) { j2 = 0; for (j=0;j<n;j++) { if (j == j1) continue; m[i-1][j2] = a[i][j]; j2++; } } det += internal_pow(-1.0,1.0+j1+1.0) * a[0][j1] * determinant(m,n-1); } } return(det); } double fxp_determinant(fxp_t a_fxp[4][4],int n) { int i,j,j1,j2; double a[4][4]; for(i=0; i<n;i++){ for(j=0; j<n;j++){ a[i][j]= fxp_to_double(a_fxp[i][j]); } } double det = 0; double m[4][4]; if (n < 1) { } else if (n == 1) { det = a[0][0]; } else if (n == 2) { det = a[0][0] * a[1][1] - a[1][0] * a[0][1]; } else { det = 0; for (j1=0;j1<n;j1++) { for (i=0;i<n-1;i++) for (i=1;i<n;i++) { j2 = 0; for (j=0;j<n;j++) { if (j == j1) continue; m[i-1][j2] = a[i][j]; j2++; } } det += internal_pow(-1.0,1.0+j1+1.0) * a[0][j1] * determinant(m,n-1); } } return(det); } void transpose(double a[4][4], double b[4][4],int n, int m) { int i,j; for (i=0;i<n;i++) { for (j=0;j<m;j++) { b[j][i] = a[i][j]; } } } void fxp_transpose(fxp_t a[4][4], fxp_t b[4][4],int n, int m) { int i,j; for (i=0;i<n;i++) { for (j=0;j<m;j++) { b[j][i] = a[i][j]; } } } # 24 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 1 # 19 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" extern int generic_timer; extern hardware hw; double generic_timing_shift_l_double(double zIn, double z[], int N) { generic_timer += ((2 * hw.assembly.push) + (3 * hw.assembly.in) + (3 * hw.assembly.out) + (1 * hw.assembly.sbiw) + (1 * hw.assembly.cli) + (8 * hw.assembly.std)); int i; double zOut; zOut = z[0]; generic_timer += ((5 * hw.assembly.ldd) + (2 * hw.assembly.mov) + (4 * hw.assembly.std) + (1 * hw.assembly.ld)); generic_timer += ((2 * hw.assembly.std) + (1 * hw.assembly.rjmp)); for (i = 0; i < N - 1; i++) { generic_timer += ((17 * hw.assembly.ldd) + (4 * hw.assembly.lsl) + (4 * hw.assembly.rol) + (2 * hw.assembly.add) + (2 * hw.assembly.adc) + (6 * hw.assembly.mov) + (2 * hw.assembly.adiw) + (5 * hw.assembly.std) + (1 * hw.assembly.ld) + (1 * hw.assembly.st) + (1 * hw.assembly.subi) + (1 * hw.assembly.sbc)+ (1 * hw.assembly.cp) + (1 * hw.assembly.cpc) + (1 * hw.assembly.brlt)); z[i] = z[i + 1]; } z[N - 1] = zIn; generic_timer += ((12 * hw.assembly.ldd) + (6 * hw.assembly.mov) + (3 * hw.assembly.std) + (2 * hw.assembly.lsl) + (2 * hw.assembly.rol) + (1 * hw.assembly.adc) + (1 * hw.assembly.add) + (1 * hw.assembly.subi) + (1 * hw.assembly.sbci) + (1 * hw.assembly.st) + (1 * hw.assembly.adiw) + (1 * hw.assembly.in)+ (1 * hw.assembly.cli)); generic_timer += ((3 * hw.assembly.out) + (2 * hw.assembly.pop) + (1 * hw.assembly.ret)); return (zOut); } double generic_timing_shift_r_double(double zIn, double z[], int N) { generic_timer += ((2 * hw.assembly.push) + (3 * hw.assembly.in) + (3 * hw.assembly.out) + (1 * hw.assembly.sbiw) + (1 * hw.assembly.cli) + (8 * hw.assembly.std)); int i; double zOut; zOut = z[N - 1]; generic_timer += ((7 * hw.assembly.ldd) + (2 * hw.assembly.rol) + (2 * hw.assembly.lsl) + (2 * hw.assembly.mov) + (4 * hw.assembly.std) + (1 * hw.assembly.add) + (1 * hw.assembly.adc) + (1 * hw.assembly.ld) + (1 * hw.assembly.subi) + (1 * hw.assembly.sbci)); generic_timer += ((2 * hw.assembly.ldd) + (2 * hw.assembly.std) + (1 * hw.assembly.sbiw) + (1 * hw.assembly.rjmp)); for (i = N - 1; i > 0; i--) { z[i] = z[i - 1]; generic_timer += ((15 * hw.assembly.ldd) + (4 * hw.assembly.lsl) + (4 * hw.assembly.rol) + (2 * hw.assembly.add) + (2 * hw.assembly.adc) + (4 * hw.assembly.mov) + (5 * hw.assembly.std) + (1 * hw.assembly.subi) + (1 * hw.assembly.sbci) + (1 * hw.assembly.ld) + (1 * hw.assembly.st) + (1 * hw.assembly.sbiw) + (1 * hw.assembly.cp) + (1 * hw.assembly.cpc) + (1 * hw.assembly.brlt)); } z[0] = zIn; generic_timer += ((10 * hw.assembly.ldd) + (5 * hw.assembly.mov) + (3 * hw.assembly.std) + (3 * hw.assembly.out) + (2 * hw.assembly.pop) + (1 * hw.assembly.ret) + (1 * hw.assembly.ret) + (1 * hw.assembly.cli) + (1 * hw.assembly.in) + (1 * hw.assembly.st) + (1 * hw.assembly.adiw)); return zOut; } fxp_t shiftL(fxp_t zIn, fxp_t z[], int N) { int i; fxp_t zOut; zOut = z[0]; for (i = 0; i < N - 1; i++) { z[i] = z[i + 1]; } z[N - 1] = zIn; return (zOut); } fxp_t shiftR(fxp_t zIn, fxp_t z[], int N) { int i; fxp_t zOut; zOut = z[N - 1]; for (i = N - 1; i > 0; i--) { z[i] = z[i - 1]; } z[0] = zIn; return zOut; } float shiftLfloat(float zIn, float z[], int N) { int i; float zOut; zOut = z[0]; for (i = 0; i < N - 1; i++) { z[i] = z[i + 1]; } z[N - 1] = zIn; return (zOut); } float shiftRfloat(float zIn, float z[], int N) { int i; float zOut; zOut = z[N - 1]; for (i = N - 1; i > 0; i--) { z[i] = z[i - 1]; } z[0] = zIn; return zOut; } double shiftRDdouble(double zIn, double z[], int N) { int i; double zOut; zOut = z[0]; for (i = 0; i < N - 1; i++) { z[i] = z[i + 1]; } z[N - 1] = zIn; return (zOut); } double shiftRdouble(double zIn, double z[], int N) { int i; double zOut; zOut = z[N - 1]; for (i = N - 1; i > 0; i--) { z[i] = z[i - 1]; } z[0] = zIn; return zOut; } double shiftLDouble(double zIn, double z[], int N) { int i; double zOut; zOut = z[0]; for (i = 0; i < N - 1; i++) { z[i] = z[i + 1]; } z[N - 1] = zIn; return (zOut); } void shiftLboth(float zfIn, float zf[], fxp_t zIn, fxp_t z[], int N) { int i; fxp_t zOut; float zfOut; zOut = z[0]; zfOut = zf[0]; for (i = 0; i < N - 1; i++) { z[i] = z[i + 1]; zf[i] = zf[i + 1]; } z[N - 1] = zIn; zf[N - 1] = zfIn; } void shiftRboth(float zfIn, float zf[], fxp_t zIn, fxp_t z[], int N) { int i; fxp_t zOut; float zfOut; zOut = z[N - 1]; zfOut = zf[N - 1]; for (i = N - 1; i > 0; i--) { z[i] = z[i - 1]; zf[i] = zf[i - 1]; } z[0] = zIn; zf[0] = zfIn; } int order(int Na, int Nb) { return Na > Nb ? Na - 1 : Nb - 1; } void fxp_check_limit_cycle(fxp_t y[], int y_size){ fxp_t reference = y[y_size - 1]; int idx = 0; int window_size = 1; for(idx = (y_size-2); idx >= 0; idx--){ if (y[idx] != reference){ window_size++; }else{ break; } } __DSVERIFIER_assume(window_size != y_size && window_size != 1); printf("window_size %d\n", window_size); int desired_elements = 2 * window_size; int found_elements = 0; for(idx = (y_size-1); idx >= 0; idx--){ if (idx > (y_size-window_size-1)){ printf("%.0f == %.0f\n", y[idx], y[idx-window_size]); int cmp_idx = idx - window_size; if ((cmp_idx > 0) && (y[idx] == y[idx-window_size])){ found_elements = found_elements + 2; }else{ break; } } } __DSVERIFIER_assume(found_elements > 0); printf("desired_elements %d\n", desired_elements); printf("found_elements %d\n", found_elements); __DSVERIFIER_assume(found_elements == desired_elements); __DSVERIFIER_assert(0); } void fxp_check_persistent_limit_cycle(fxp_t * y, int y_size){ int idy = 0; int count_same = 0; int window_size = 0; fxp_t reference = y[0]; for(idy = 0; idy < y_size; idy++){ if (y[idy] != reference){ window_size++; } else if (window_size != 0){ break; } else { count_same++; } } window_size += count_same; __DSVERIFIER_assume(window_size > 1 && window_size <= y_size/2); fxp_t lco_elements[window_size]; for(idy = 0; idy < y_size; idy++){ if (idy < window_size){ lco_elements[idy] = y[idy]; } } idy = 0; int lco_idy = 0; _Bool is_persistent = 0; while (idy < y_size){ if(y[idy++] == lco_elements[lco_idy++]){ is_persistent = 1; }else{ is_persistent = 0; break; } if (lco_idy == window_size){ lco_idy = 0; } } __DSVERIFIER_assert(is_persistent == 0); } void fxp_check_oscillations(fxp_t y[] , int y_size){ __DSVERIFIER_assume((y[0] != y[y_size - 1]) && (y[y_size - 1] != y[y_size - 2])); int window_timer = 0; int window_count = 0; int i, j; for (i = 2; i < y_size; i++){ int window_size = i; for(j=0; j<y_size; j++){ if (window_timer > window_size){ window_timer = 0; window_count = 0; } int window_index = j + window_size; if (window_index < y_size){ if (y[j] == y[window_index]){ window_count++; __DSVERIFIER_assert(!(window_count == window_size)); } }else{ break; } window_timer++; } } } int fxp_ln(int x) { int t, y; y = 0xa65af; if (x < 0x00008000) x <<= 16, y -= 0xb1721; if (x < 0x00800000) x <<= 8, y -= 0x58b91; if (x < 0x08000000) x <<= 4, y -= 0x2c5c8; if (x < 0x20000000) x <<= 2, y -= 0x162e4; if (x < 0x40000000) x <<= 1, y -= 0x0b172; t = x + (x >> 1); if ((t & 0x80000000) == 0) x = t, y -= 0x067cd; t = x + (x >> 2); if ((t & 0x80000000) == 0) x = t, y -= 0x03920; t = x + (x >> 3); if ((t & 0x80000000) == 0) x = t, y -= 0x01e27; t = x + (x >> 4); if ((t & 0x80000000) == 0) x = t, y -= 0x00f85; t = x + (x >> 5); if ((t & 0x80000000) == 0) x = t, y -= 0x007e1; t = x + (x >> 6); if ((t & 0x80000000) == 0) x = t, y -= 0x003f8; t = x + (x >> 7); if ((t & 0x80000000) == 0) x = t, y -= 0x001fe; x = 0x80000000 - x; y -= x >> 15; return y; } double fxp_log10_low(double x) { int xint = (int) (x * 65536.0 + 0.5); int lnum = fxp_ln(xint); int lden = fxp_ln(655360); return ((double) lnum / (double) lden); } double fxp_log10(double x) { if (x > 32767.0) { if (x > 1073676289.0) { x = x / 1073676289.0; return fxp_log10_low(x) + 9.030873362; } x = x / 32767.0; return fxp_log10_low(x) + 4.515436681; } return fxp_log10_low(x); } float snrVariance(float s[], float n[], int blksz) { int i; double sm = 0, nm = 0, sv = 0, nv = 0, snr; for (i = 0; i < blksz; i++) { sm += s[i]; nm += n[i]; } sm /= blksz; nm /= blksz; for (i = 0; i < blksz; i++) { sv += (s[i] - sm) * (s[i] - sm); nv += (n[i] - nm) * (n[i] - nm); } if (nv != 0.0f) { # 373 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ((void) sizeof (( # 373 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" sv >= nv # 373 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 373 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" sv >= nv # 373 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ) ; else __assert_fail ( # 373 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" "sv >= nv" # 373 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h", 373, __extension__ __PRETTY_FUNCTION__); })) # 373 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" ; snr = sv / nv; return snr; } else { return 9999.9f; } } float snrPower(float s[], float n[], int blksz) { int i; double sv = 0, nv = 0, snr; for (i = 0; i < blksz; i++) { sv += s[i] * s[i]; nv += n[i] * n[i]; } if (nv != 0.0f) { # 394 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ((void) sizeof (( # 394 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" sv >= nv # 394 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 394 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" sv >= nv # 394 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ) ; else __assert_fail ( # 394 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" "sv >= nv" # 394 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h", 394, __extension__ __PRETTY_FUNCTION__); })) # 394 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" ; snr = sv / nv; return snr; } else { return 9999.9f; } } float snrPoint(float s[], float n[], int blksz) { int i; double ratio = 0, power = 0; for (i = 0; i < blksz; i++) { if(n[i] == 0) continue; ratio = s[i] / n[i]; if(ratio > 150.0f || ratio < -150.0f) continue; power = ratio * ratio; # 412 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ((void) sizeof (( # 412 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" power >= 1.0f # 412 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 412 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" power >= 1.0f # 412 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ) ; else __assert_fail ( # 412 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" "power >= 1.0f" # 412 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h", 412, __extension__ __PRETTY_FUNCTION__); })) # 412 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" ; } return 9999.9f; } unsigned long next = 1; int rand(void) { next = next*1103515245 + 12345; return (unsigned int)(next/65536) % 32768; } void srand(unsigned int seed) { next = seed; } float iirIIOutTime(float w[], float x, float a[], float b[], int Na, int Nb) { int timer1 = 0; float *a_ptr, *b_ptr, *w_ptr; float sum = 0; a_ptr = &a[1]; b_ptr = &b[0]; w_ptr = &w[1]; int k, j; timer1 += 71; for (j = 1; j < Na; j++) { w[0] -= *a_ptr++ * *w_ptr++; timer1 += 54; } w[0] += x; w_ptr = &w[0]; for (k = 0; k < Nb; k++) { sum += *b_ptr++ * *w_ptr++; timer1 += 46; } timer1 += 38; # 450 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ((void) sizeof (( # 450 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" (double)timer1*1 / 16000000 <= (double)1 / 100 # 450 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 450 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" (double)timer1*1 / 16000000 <= (double)1 / 100 # 450 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ) ; else __assert_fail ( # 450 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" "(double)timer1*CYCLE <= (double)DEADLINE" # 450 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h", 450, __extension__ __PRETTY_FUNCTION__); })) # 450 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" ; return sum; } float iirIItOutTime(float w[], float x, float a[], float b[], int Na, int Nb) { int timer1 = 0; float *a_ptr, *b_ptr; float yout = 0; a_ptr = &a[1]; b_ptr = &b[0]; int Nw = Na > Nb ? Na : Nb; yout = (*b_ptr++ * x) + w[0]; int j; timer1 += 105; for (j = 0; j < Nw - 1; j++) { w[j] = w[j + 1]; if (j < Na - 1) { w[j] -= *a_ptr++ * yout; timer1 += 41; } if (j < Nb - 1) { w[j] += *b_ptr++ * x; timer1 += 38; } timer1 += 54; } timer1 += 7; # 477 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ((void) sizeof (( # 477 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" (double)timer1*1 / 16000000 <= (double)1 / 100 # 477 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 477 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" (double)timer1*1 / 16000000 <= (double)1 / 100 # 477 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ) ; else __assert_fail ( # 477 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" "(double)timer1*CYCLE <= (double)DEADLINE" # 477 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h", 477, __extension__ __PRETTY_FUNCTION__); })) # 477 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" ; return yout; } double iirIItOutTime_double(double w[], double x, double a[], double b[], int Na, int Nb) { int timer1 = 0; double *a_ptr, *b_ptr; double yout = 0; a_ptr = &a[1]; b_ptr = &b[0]; int Nw = Na > Nb ? Na : Nb; yout = (*b_ptr++ * x) + w[0]; int j; timer1 += 105; for (j = 0; j < Nw - 1; j++) { w[j] = w[j + 1]; if (j < Na - 1) { w[j] -= *a_ptr++ * yout; timer1 += 41; } if (j < Nb - 1) { w[j] += *b_ptr++ * x; timer1 += 38; } timer1 += 54; } timer1 += 7; # 504 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ((void) sizeof (( # 504 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" (double)timer1*1 / 16000000 <= (double)1 / 100 # 504 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 504 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" (double)timer1*1 / 16000000 <= (double)1 / 100 # 504 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 ) ; else __assert_fail ( # 504 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" "(double)timer1*CYCLE <= (double)DEADLINE" # 504 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h", 504, __extension__ __PRETTY_FUNCTION__); })) # 504 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/functions.h" ; return yout; } void iirOutBoth(float yf[], float xf[], float af[], float bf[], float *sumf_ref, fxp_t y[], fxp_t x[], fxp_t a[], fxp_t b[], fxp_t *sum_ref, int Na, int Nb) { fxp_t *a_ptr, *y_ptr, *b_ptr, *x_ptr; float *af_ptr, *yf_ptr, *bf_ptr, *xf_ptr; fxp_t sum = 0; float sumf = 0; a_ptr = &a[1]; y_ptr = &y[Na - 1]; b_ptr = &b[0]; x_ptr = &x[Nb - 1]; af_ptr = &af[1]; yf_ptr = &yf[Na - 1]; bf_ptr = &bf[0]; xf_ptr = &xf[Nb - 1]; int i, j; for (i = 0; i < Nb; i++) { sum = fxp_add(sum, fxp_mult(*b_ptr++, *x_ptr--)); sumf += *bf_ptr++ * *xf_ptr--; } for (j = 1; j < Na; j++) { sum = fxp_sub(sum, fxp_mult(*a_ptr++, *y_ptr--)); sumf -= *af_ptr++ * *yf_ptr--; } *sum_ref = sum; *sumf_ref = sumf; } fxp_t iirOutFixedL(fxp_t y[], fxp_t x[], fxp_t xin, fxp_t a[], fxp_t b[], int Na, int Nb) { fxp_t *a_ptr, *y_ptr, *b_ptr, *x_ptr; fxp_t sum = 0; a_ptr = &a[Na - 1]; y_ptr = &y[1]; b_ptr = &b[Nb - 1]; x_ptr = &x[0]; int i, j; for (i = 0; i < Nb - 1; i++) { x[i] = x[i+1]; sum = fxp_add(sum, fxp_mult(*b_ptr--, *x_ptr++)); } x[Nb - 1] = xin; sum = fxp_add(sum, fxp_mult(*b_ptr--, *x_ptr++)); for (j = 1; j < Na - 1; j++) { sum = fxp_sub(sum, fxp_mult(*a_ptr--, *y_ptr++)); y[j] = y[j+1]; } if(Na>1) sum = fxp_sub(sum, fxp_mult(*a_ptr--, *y_ptr++)); y[Na - 1] = sum; return sum; } float iirOutFloatL(float y[], float x[], float xin, float a[], float b[], int Na, int Nb) { float *a_ptr, *y_ptr, *b_ptr, *x_ptr; float sum = 0; a_ptr = &a[Na - 1]; y_ptr = &y[1]; b_ptr = &b[Nb - 1]; x_ptr = &x[0]; int i, j; for (i = 0; i < Nb - 1; i++) { x[i] = x[i+1]; sum += *b_ptr-- * *x_ptr++; } x[Nb - 1] = xin; sum += *b_ptr-- * *x_ptr++; for (j = 1; j < Na - 1; j++) { sum -= *a_ptr-- * *y_ptr++; y[j] = y[j+1]; } if(Na>1) sum -= *a_ptr-- * *y_ptr++; y[Na - 1] = sum; return sum; } float iirOutBothL(float yf[], float xf[], float af[], float bf[], float xfin, fxp_t y[], fxp_t x[], fxp_t a[], fxp_t b[], fxp_t xin, int Na, int Nb) { fxp_t *a_ptr, *y_ptr, *b_ptr, *x_ptr; fxp_t sum = 0; a_ptr = &a[Na - 1]; y_ptr = &y[1]; b_ptr = &b[Nb - 1]; x_ptr = &x[0]; float *af_ptr, *yf_ptr, *bf_ptr, *xf_ptr; float sumf = 0; af_ptr = &af[Na - 1]; yf_ptr = &yf[1]; bf_ptr = &bf[Nb - 1]; xf_ptr = &xf[0]; int i, j; for (i = 0; i < Nb - 1; i++) { x[i] = x[i+1]; sum = fxp_add(sum, fxp_mult(*b_ptr--, *x_ptr++)); xf[i] = xf[i+1]; sumf += *bf_ptr-- * *xf_ptr++; } x[Nb - 1] = xin; sum = fxp_add(sum, fxp_mult(*b_ptr--, *x_ptr++)); xf[Nb - 1] = xfin; sumf += *bf_ptr-- * *xf_ptr++; for (j = 1; j < Na - 1; j++) { sum = fxp_sub(sum, fxp_mult(*a_ptr--, *y_ptr++)); y[j] = y[j+1]; sumf -= *af_ptr-- * *yf_ptr++; yf[j] = yf[j+1]; } if(Na>1) sum = fxp_sub(sum, fxp_mult(*a_ptr--, *y_ptr++)); y[Na - 1] = sum; if(Na>1) sumf -= *af_ptr-- * *yf_ptr++; yf[Na - 1] = sumf; return fxp_to_float(sum) - sumf; } float iirOutBothL2(float yf[], float xf[], float af[], float bf[], float xfin, fxp_t y[], fxp_t x[], fxp_t a[], fxp_t b[], fxp_t xin, int Na, int Nb) { fxp_t *a_ptr, *y_ptr, *b_ptr, *x_ptr; fxp_t sum = 0; a_ptr = &a[Na - 1]; y_ptr = &y[1]; b_ptr = &b[Nb - 1]; x_ptr = &x[0]; float *af_ptr, *yf_ptr, *bf_ptr, *xf_ptr; float sumf = 0; af_ptr = &af[Na - 1]; yf_ptr = &yf[1]; bf_ptr = &bf[Nb - 1]; xf_ptr = &xf[0]; int i=0, j=1; for (i = 0; i < Nb - 1; i++) { x[i] = x[i+1]; sum = fxp_add(sum, fxp_mult(b[Nb - 1 - i], x[i])); xf[i] = xf[i+1]; sumf += bf[Nb - 1 - i] * xf[i]; } x[Nb - 1] = xin; sum = fxp_add(sum, fxp_mult(b[Nb - 1 - i], x[i])); xf[Nb - 1] = xfin; sumf += bf[Nb - 1 - i] * xf[i]; for (j = 1; j < Na - 1; j++) { sum = fxp_sub(sum, fxp_mult(a[Na - j], y[j])); y[j] = y[j+1]; sumf -= af[Na - j] * yf[j]; yf[j] = yf[j+1]; } if(Na>1) sum = fxp_sub(sum, fxp_mult(a[Na - j], y[j])); y[Na - 1] = sum; if(Na>1) sumf -= af[Na - j] * yf[j]; yf[Na - 1] = sumf; return fxp_to_float(sum) - sumf; } # 25 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" 1 # 19 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" extern digital_system ds; extern hardware hw; extern int generic_timer; fxp_t fxp_direct_form_1(fxp_t y[], fxp_t x[], fxp_t a[], fxp_t b[], int Na, int Nb) { fxp_t *a_ptr, *y_ptr, *b_ptr, *x_ptr; fxp_t sum = 0; a_ptr = &a[1]; y_ptr = &y[Na - 1]; b_ptr = &b[0]; x_ptr = &x[Nb - 1]; int i, j; for (i = 0; i < Nb; i++) { sum = fxp_add(sum, fxp_mult(*b_ptr++, *x_ptr--)); } for (j = 1; j < Na; j++) { sum = fxp_sub(sum, fxp_mult(*a_ptr++, *y_ptr--)); } fxp_verify_overflow_node(sum, "An Overflow Occurred in the node a0"); sum = fxp_div(sum,a[0]); return fxp_quantize(sum); } fxp_t fxp_direct_form_2(fxp_t w[], fxp_t x, fxp_t a[], fxp_t b[], int Na, int Nb) { fxp_t *a_ptr, *b_ptr, *w_ptr; fxp_t sum = 0; a_ptr = &a[1]; b_ptr = &b[0]; w_ptr = &w[1]; int k, j; for (j = 1; j < Na; j++) { w[0] = fxp_sub(w[0], fxp_mult(*a_ptr++, *w_ptr++)); } w[0] = fxp_add(w[0], x); w[0] = fxp_div(w[0], a[0]); fxp_verify_overflow_node(w[0], "An Overflow Occurred in the node b0"); w_ptr = &w[0]; for (k = 0; k < Nb; k++) { sum = fxp_add(sum, fxp_mult(*b_ptr++, *w_ptr++)); } return fxp_quantize(sum); } fxp_t fxp_transposed_direct_form_2(fxp_t w[], fxp_t x, fxp_t a[], fxp_t b[], int Na, int Nb) { fxp_t *a_ptr, *b_ptr; fxp_t yout = 0; a_ptr = &a[1]; b_ptr = &b[0]; int Nw = Na > Nb ? Na : Nb; yout = fxp_add(fxp_mult(*b_ptr++, x), w[0]); yout = fxp_div(yout, a[0]); int j; for (j = 0; j < Nw - 1; j++) { w[j] = w[j + 1]; if (j < Na - 1) { w[j] = fxp_sub(w[j], fxp_mult(*a_ptr++, yout)); } if (j < Nb - 1) { w[j] = fxp_add(w[j], fxp_mult(*b_ptr++, x)); } } fxp_verify_overflow_node(w[j], "An Overflow Occurred in the node a0"); return fxp_quantize(yout); } double double_direct_form_1(double y[], double x[], double a[], double b[], int Na, int Nb) { double *a_ptr, *y_ptr, *b_ptr, *x_ptr; double sum = 0; a_ptr = &a[1]; y_ptr = &y[Na - 1]; b_ptr = &b[0]; x_ptr = &x[Nb - 1]; int i, j; for (i = 0; i < Nb; i++) { sum += *b_ptr++ * *x_ptr--; } for (j = 1; j < Na; j++) { sum -= *a_ptr++ * *y_ptr--; } sum = (sum / a[0]); return sum; } double double_direct_form_2(double w[], double x, double a[], double b[], int Na, int Nb) { double *a_ptr, *b_ptr, *w_ptr; double sum = 0; a_ptr = &a[1]; b_ptr = &b[0]; w_ptr = &w[1]; int k, j; for (j = 1; j < Na; j++) { w[0] -= *a_ptr++ * *w_ptr++; } w[0] += x; w[0] = w[0] / a[0]; w_ptr = &w[0]; for (k = 0; k < Nb; k++) { sum += *b_ptr++ * *w_ptr++; } return sum; } double double_transposed_direct_form_2(double w[], double x, double a[], double b[], int Na, int Nb) { double *a_ptr, *b_ptr; double yout = 0; a_ptr = &a[1]; b_ptr = &b[0]; int Nw = Na > Nb ? Na : Nb; yout = (*b_ptr++ * x) + w[0]; yout = yout / a[0]; int j; for (j = 0; j < Nw - 1; j++) { w[j] = w[j + 1]; if (j < Na - 1) { w[j] -= *a_ptr++ * yout; } if (j < Nb - 1) { w[j] += *b_ptr++ * x; } } return yout; } float float_direct_form_1(float y[], float x[], float a[], float b[], int Na, int Nb) { float *a_ptr, *y_ptr, *b_ptr, *x_ptr; float sum = 0; a_ptr = &a[1]; y_ptr = &y[Na - 1]; b_ptr = &b[0]; x_ptr = &x[Nb - 1]; int i, j; for (i = 0; i < Nb; i++) { sum += *b_ptr++ * *x_ptr--; } for (j = 1; j < Na; j++) { sum -= *a_ptr++ * *y_ptr--; } sum = (sum / a[0]); return sum; } float float_direct_form_2(float w[], float x, float a[], float b[], int Na, int Nb) { float *a_ptr, *b_ptr, *w_ptr; float sum = 0; a_ptr = &a[1]; b_ptr = &b[0]; w_ptr = &w[1]; int k, j; for (j = 1; j < Na; j++) { w[0] -= *a_ptr++ * *w_ptr++; } w[0] += x; w[0] = w[0] / a[0]; w_ptr = &w[0]; for (k = 0; k < Nb; k++) { sum += *b_ptr++ * *w_ptr++; } return sum; } float float_transposed_direct_form_2(float w[], float x, float a[], float b[], int Na, int Nb) { float *a_ptr, *b_ptr; float yout = 0; a_ptr = &a[1]; b_ptr = &b[0]; int Nw = Na > Nb ? Na : Nb; yout = (*b_ptr++ * x) + w[0]; yout = yout / a[0]; int j; for (j = 0; j < Nw - 1; j++) { w[j] = w[j + 1]; if (j < Na - 1) { w[j] -= *a_ptr++ * yout; } if (j < Nb - 1) { w[j] += *b_ptr++ * x; } } return yout; } double double_direct_form_1_MSP430(double y[], double x[], double a[], double b[], int Na, int Nb){ int timer1 = 0; double *a_ptr, *y_ptr, *b_ptr, *x_ptr; double sum = 0; a_ptr = &a[1]; y_ptr = &y[Na-1]; b_ptr = &b[0]; x_ptr = &x[Nb-1]; int i, j; timer1 += 91; for (i = 0; i < Nb; i++){ sum += *b_ptr++ * *x_ptr--; timer1 += 47; } for (j = 1; j < Na; j++){ sum -= *a_ptr++ * *y_ptr--; timer1 += 57; } timer1 += 3; # 235 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" 3 4 ((void) sizeof (( # 235 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" (double) timer1 * hw.cycle <= ds.sample_time # 235 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 235 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" (double) timer1 * hw.cycle <= ds.sample_time # 235 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" 3 4 ) ; else __assert_fail ( # 235 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" "(double) timer1 * hw.cycle <= ds.sample_time" # 235 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h", 235, __extension__ __PRETTY_FUNCTION__); })) # 235 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" ; return sum; } double double_direct_form_2_MSP430(double w[], double x, double a[], double b[], int Na, int Nb) { int timer1 = 0; double *a_ptr, *b_ptr, *w_ptr; double sum = 0; a_ptr = &a[1]; b_ptr = &b[0]; w_ptr = &w[1]; int k, j; timer1 += 71; for (j = 1; j < Na; j++) { w[0] -= *a_ptr++ * *w_ptr++; timer1 += 54; } w[0] += x; w[0] = w[0] / a[0]; w_ptr = &w[0]; for (k = 0; k < Nb; k++) { sum += *b_ptr++ * *w_ptr++; timer1 += 46; } timer1 += 38; # 262 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" 3 4 ((void) sizeof (( # 262 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" (double) timer1 * hw.cycle <= ds.sample_time # 262 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 262 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" (double) timer1 * hw.cycle <= ds.sample_time # 262 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" 3 4 ) ; else __assert_fail ( # 262 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" "(double) timer1 * hw.cycle <= ds.sample_time" # 262 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h", 262, __extension__ __PRETTY_FUNCTION__); })) # 262 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" ; return sum; } double double_transposed_direct_form_2_MSP430(double w[], double x, double a[], double b[], int Na, int Nb) { int timer1 = 0; double *a_ptr, *b_ptr; double yout = 0; a_ptr = &a[1]; b_ptr = &b[0]; int Nw = Na > Nb ? Na : Nb; yout = (*b_ptr++ * x) + w[0]; int j; timer1 += 105; for (j = 0; j < Nw - 1; j++) { w[j] = w[j + 1]; if (j < Na - 1) { w[j] -= *a_ptr++ * yout; timer1 += 41; } if (j < Nb - 1) { w[j] += *b_ptr++ * x; timer1 += 38; } timer1 += 54; } timer1 += 7; # 291 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" 3 4 ((void) sizeof (( # 291 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" (double) timer1 * hw.cycle <= ds.sample_time # 291 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 291 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" (double) timer1 * hw.cycle <= ds.sample_time # 291 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" 3 4 ) ; else __assert_fail ( # 291 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" "(double) timer1 * hw.cycle <= ds.sample_time" # 291 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h", 291, __extension__ __PRETTY_FUNCTION__); })) # 291 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/realizations.h" ; return yout; } double generic_timing_double_direct_form_1(double y[], double x[], double a[], double b[], int Na, int Nb){ generic_timer += ((6 * hw.assembly.push) + (3 * hw.assembly.in) + (1 * hw.assembly.sbiw) + (1 * hw.assembly.cli) + (3 * hw.assembly.out) + (12 * hw.assembly.std)); double *a_ptr, *y_ptr, *b_ptr, *x_ptr; double sum = 0; a_ptr = &a[1]; y_ptr = &y[Na-1]; b_ptr = &b[0]; x_ptr = &x[Nb-1]; generic_timer += ((12 * hw.assembly.std) + (12 * hw.assembly.ldd) + (2 * hw.assembly.subi) + (2 * hw.assembly.sbci) + (4 * hw.assembly.lsl) + (4 * hw.assembly.rol) + (2 * hw.assembly.add) + (2 * hw.assembly.adc) + (1 * hw.assembly.adiw)); int i, j; generic_timer += ((2 * hw.assembly.std) + (1 * hw.assembly.rjmp)); for (i = 0; i < Nb; i++){ generic_timer += ((20 * hw.assembly.ldd) + (24 * hw.assembly.mov) + (2 * hw.assembly.subi) + (1 * hw.assembly.sbci) + (1 * hw.assembly.sbc) + (10 * hw.assembly.std) + (2 * hw.assembly.ld) + (2 * hw.assembly.rcall) + (1 * hw.assembly.adiw) + (1 * hw.assembly.cp) + (1 * hw.assembly.cpc) + (1 * hw.assembly.adiw) + (1 * hw.assembly.brge) + (1 * hw.assembly.rjmp)); sum += *b_ptr++ * *x_ptr--; } generic_timer += ((2 * hw.assembly.ldi) + (2 * hw.assembly.std) + (1 * hw.assembly.rjmp)); for (j = 1; j < Na; j++){ generic_timer += ((22 * hw.assembly.ldd) + (24 * hw.assembly.mov) + (2 * hw.assembly.subi) + (8 * hw.assembly.std) + (1 * hw.assembly.sbci) + (2 * hw.assembly.ld) + (2 * hw.assembly.rcall) + (1 * hw.assembly.sbc) + (1 * hw.assembly.adiw) + (1 * hw.assembly.cp) + (1 * hw.assembly.cpc) + (1 * hw.assembly.adiw) + (1 * hw.assembly.brge) + (1 * hw.assembly.rjmp)); sum -= *a_ptr++ * *y_ptr--; } generic_timer += ((4 * hw.assembly.ldd) + (4 * hw.assembly.mov) + (1 * hw.assembly.adiw) + (1 * hw.assembly.in) + (1 * hw.assembly.cli) + (3 * hw.assembly.out) + (6 * hw.assembly.pop) + (1 * hw.assembly.ret)); return sum; } double generic_timing_double_direct_form_2(double w[], double x, double a[], double b[], int Na, int Nb) { generic_timer += ((8 * hw.assembly.push) + (14 * hw.assembly.std) + (3 * hw.assembly.out) + (3 * hw.assembly.in) + (1 * hw.assembly.sbiw) + (1 * hw.assembly.cli)); double *a_ptr, *b_ptr, *w_ptr; double sum = 0; a_ptr = &a[1]; b_ptr = &b[0]; w_ptr = &w[1]; int k, j; generic_timer += ((10 * hw.assembly.std) + (6 * hw.assembly.ldd) + (2 * hw.assembly.adiw)); generic_timer += ((2 * hw.assembly.ldi) + (2 * hw.assembly.std) + (1 * hw.assembly.rjmp)); for (j = 1; j < Na; j++) { w[0] -= *a_ptr++ * *w_ptr++; generic_timer += ((23 * hw.assembly.ldd) + (32 * hw.assembly.mov) + (9 * hw.assembly.std) + (2 * hw.assembly.subi) + (3 * hw.assembly.ld) + (2 * hw.assembly.rcall) + (2 * hw.assembly.sbci) + (1 * hw.assembly.st) + (1 * hw.assembly.adiw) + (1 * hw.assembly.cp) + (1 * hw.assembly.cpc) + (1 * hw.assembly.brge)); } w[0] += x; w_ptr = &w[0]; generic_timer += ((13 * hw.assembly.ldd) + (12 * hw.assembly.mov) + (5 * hw.assembly.std) + (1 * hw.assembly.st) + (1 * hw.assembly.ld) + (1 * hw.assembly.rcall)); generic_timer += ((2 * hw.assembly.std) + (1 * hw.assembly.rjmp)); for (k = 0; k < Nb; k++) { sum += *b_ptr++ * *w_ptr++; generic_timer += ((20 * hw.assembly.ldd) + (24 * hw.assembly.mov) + (10 * hw.assembly.std) + (2 * hw.assembly.rcall) + (2 * hw.assembly.ld) + (2 * hw.assembly.subi) + (2 * hw.assembly.sbci) + (1 * hw.assembly.adiw) + (1 * hw.assembly.cp) + (1 * hw.assembly.cpc) + (1 * hw.assembly.brge) + (1 * hw.assembly.rjmp)); } generic_timer += ((4 * hw.assembly.ldd) + (4 * hw.assembly.mov) + (1 * hw.assembly.adiw) + (1 * hw.assembly.in) + (1 * hw.assembly.cli) + (3 * hw.assembly.out) + (8 * hw.assembly.pop) + (1 * hw.assembly.ret)); return sum; } double generic_timing_double_transposed_direct_form_2(double w[], double x, double a[], double b[], int Na, int Nb) { generic_timer += ((8 * hw.assembly.push) + (14 * hw.assembly.std) + (3 * hw.assembly.out) + (3 * hw.assembly.in) + (1 * hw.assembly.sbiw) + (1 * hw.assembly.cli)); double *a_ptr, *b_ptr; double yout = 0; a_ptr = &a[1]; b_ptr = &b[0]; int Nw = Na > Nb ? Na : Nb; yout = (*b_ptr++ * x) + w[0]; int j; generic_timer += ((15 * hw.assembly.std) + (22 * hw.assembly.ldd) + (24 * hw.assembly.mov) + (2 * hw.assembly.rcall) + (2 * hw.assembly.ld) + (1 * hw.assembly.cp) + (1 * hw.assembly.cpc) + (1 * hw.assembly.subi) + (1 * hw.assembly.sbci) + (1 * hw.assembly.brge) + (1 * hw.assembly.adiw)); generic_timer += ((2 * hw.assembly.std) + (1 * hw.assembly.rjmp)); for (j = 0; j < Nw - 1; j++) { w[j] = w[j + 1]; if (j < Na - 1) { w[j] -= *a_ptr++ * yout; } if (j < Nb - 1) { w[j] += *b_ptr++ * x; } generic_timer += ((70 * hw.assembly.mov) + (65 * hw.assembly.ldd) + (12 * hw.assembly.lsl) + (12 * hw.assembly.rol) + (15 * hw.assembly.std) + (6 * hw.assembly.add) + (6 * hw.assembly.adc) + (2 * hw.assembly.adiw) + (3 * hw.assembly.cpc) + (3 * hw.assembly.cp) + (5 * hw.assembly.ld) + (4 * hw.assembly.rcall) + (5 * hw.assembly.subi) + (3 * hw.assembly.rjmp) + (2 * hw.assembly.brlt) + (3 * hw.assembly.st) + (2 * hw.assembly.sbci) + (3 * hw.assembly.sbc) + (1 * hw.assembly.brge)); } generic_timer += ((4 * hw.assembly.ldd) + (4 * hw.assembly.mov) + (8 * hw.assembly.pop) + (3 * hw.assembly.out) + (1 * hw.assembly.in) + (1 * hw.assembly.cli) + (1 * hw.assembly.adiw) + (1 * hw.assembly.ret)); return yout; } void double_direct_form_1_impl2(double x[], int x_size, double b[], int b_size, double a[], int a_size, double y[]){ int i = 0; int j = 0; double v[x_size]; for(i = 0; i < x_size; i++){ v[i] = 0; for(j = 0; j < b_size; j++){ if (j > i) break; v[i] = v[i] + x[i-j] * b[j]; } } y[0] = v[0]; for(i = 1; i < x_size; i++){ y[i] = 0; y[i] = y[i] + v[i]; for(j = 1; j < a_size; j++){ if (j > i) break; y[i] = y[i] + y[i-j] * ((-1) * a[j]); } } } void fxp_direct_form_1_impl2(fxp_t x[], int x_size, fxp_t b[], int b_size, fxp_t a[], int a_size, fxp_t y[]){ int i = 0; int j = 0; fxp_t v[x_size]; for(i = 0; i < x_size; i++){ v[i] = 0; for(j = 0; j < b_size; j++){ if (j > i) break; v[i] = fxp_add(v[i], fxp_mult(x[i-j], b[j])); } } y[0] = v[0]; for(i = 1; i < x_size; i++){ y[i] = 0; y[i] = fxp_add(y[i], v[i]); for(j = 1; j < a_size; j++){ if (j > i) break; y[i] = fxp_add(y[i], fxp_mult(y[i-j] , -a[j])); } } } # 26 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/delta-operator.h" 1 # 19 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/delta-operator.h" # 1 "/usr/include/assert.h" 1 3 4 # 20 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/delta-operator.h" 2 # 1 "/usr/include/assert.h" 1 3 4 # 23 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/delta-operator.h" 2 int nchoosek(int n, int k){ if (k == 0) return 1; return (n * nchoosek(n - 1, k - 1)) / k; } void generate_delta_coefficients(double vetor[], double out[], int n, double delta){ int i,j; int N = n - 1; double sum_delta_operator; for(i=0; i<=N; i++) { sum_delta_operator = 0; for(j=0; j<=i; j++) { sum_delta_operator = sum_delta_operator + vetor[j]*nchoosek(N-j,i-j); } out[i] = internal_pow(delta,N-i)*sum_delta_operator; } } void get_delta_transfer_function(double b[], double b_out[], int b_size, double a[], double a_out[], int a_size, double delta){ generate_delta_coefficients(b, b_out, b_size, delta); generate_delta_coefficients(a, a_out, a_size, delta); } void get_delta_transfer_function_with_base(double b[], double b_out[], int b_size, double a[], double a_out[], int a_size, double delta){ int i,j; int N = a_size - 1; int M = b_size - 1; double sum_delta_operator; for(i=0; i<=N; i++) { sum_delta_operator = 0; for(j=0; j<=i; j++) { sum_delta_operator = sum_delta_operator + a[j]*nchoosek(N-j,i-j); } a_out[i] = internal_pow(delta,N-i)*sum_delta_operator; } for(i=0; i<=M; i++) { sum_delta_operator = 0; for(j=0; j<=i; j++) { sum_delta_operator = sum_delta_operator + b[j]*nchoosek(M-j,i-j); } b_out[i] = internal_pow(delta,M-i)*sum_delta_operator; } } # 27 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/closed-loop.h" 1 # 28 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/closed-loop.h" void ft_closedloop_series(double c_num[], int Nc_num, double c_den[], int Nc_den, double model_num[], int Nmodel_num, double model_den[], int Nmodel_den, double ans_num[], int Nans_num, double ans_den[], int Nans_den){ Nans_num = Nc_num + Nmodel_num - 1; Nans_den = Nc_den + Nmodel_den - 1 ; double den_mult [Nans_den]; poly_mult(c_num, Nc_num, model_num, Nmodel_num, ans_num, Nans_num); poly_mult(c_den, Nc_den, model_den, Nmodel_den, den_mult, Nans_den ); poly_sum(ans_num, Nans_num , den_mult, Nans_den , ans_den, Nans_den); } void ft_closedloop_sensitivity(double c_num[], int Nc_num, double c_den[], int Nc_den, double model_num[], int Nmodel_num, double model_den[], int Nmodel_den, double ans_num[], int Nans_num, double ans_den[], int Nans_den){ int Nans_num_p = Nc_num + Nmodel_num-1; Nans_den = Nc_den + Nmodel_den-1; Nans_num = Nc_den + Nmodel_den-1; double num_mult [Nans_num_p]; poly_mult(c_den, Nc_den, model_den, Nmodel_den, ans_num, Nans_num); poly_mult(c_num, Nc_num, model_num, Nmodel_num, num_mult, Nans_num_p); poly_sum(ans_num, Nans_num, num_mult, Nans_num_p, ans_den, Nans_den); } void ft_closedloop_feedback(double c_num[], int Nc_num, double c_den[], int Nc_den, double model_num[], int Nmodel_num, double model_den[], int Nmodel_den, double ans_num[], int Nans_num, double ans_den[], int Nans_den){ Nans_num = Nc_den + Nmodel_num - 1; Nans_den = Nc_den + Nmodel_den - 1; int Nnum_mult = Nc_num + Nmodel_num - 1; double den_mult [Nans_den]; double num_mult [Nnum_mult]; poly_mult(c_num, Nc_num, model_num, Nmodel_num, num_mult, Nnum_mult); poly_mult(c_den, Nc_den, model_den, Nmodel_den, den_mult, Nans_den); poly_sum(num_mult, Nnum_mult, den_mult, Nans_den, ans_den, Nans_den); poly_mult(c_den, Nc_den, model_num, Nmodel_num, ans_num, Nans_num); } int check_stability_closedloop(double a[], int n, double plant_num[], int p_num_size, double plant_den[], int p_den_size){ int columns = n; double m[2 * n - 1][n]; int i,j; int first_is_positive = 0; double * p_num = plant_num; double * p_den = plant_den; double sum = 0; for (i=0; i < n; i++){ sum += a[i]; } __DSVERIFIER_assert(sum > 0); sum = 0; for (i=0; i < n; i++){ sum += a[i] * internal_pow(-1, n-1-i); } sum = sum * internal_pow(-1, n-1); __DSVERIFIER_assert(sum > 0); __DSVERIFIER_assert(internal_abs(a[n-1]) < a[0]); for (i=0; i < 2 * n - 1; i++){ for (j=0; j < columns; j++){ m[i][j] = 0; if (i == 0){ m[i][j] = a[j]; continue; } if (i % 2 != 0 ){ int x; for(x=0; x<columns;x++){ m[i][x] = m[i-1][columns-x-1]; } columns = columns - 1; j = columns; }else{ __DSVERIFIER_assert(m[i-2][0] > 0); m[i][j] = m[i-2][j] - (m[i-2][columns] / m[i-2][0]) * m[i-1][j]; __DSVERIFIER_assert((m[0][0] >= 0) && (m[i][0] >= 0)); } } } return 1; } # 28 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/initialization.h" 1 # 17 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/initialization.h" extern digital_system ds; extern digital_system plant; extern digital_system control; extern implementation impl; extern filter_parameters filter; extern hardware hw; void initialization(){ if (impl.frac_bits >= 32){ printf("impl.frac_bits must be less than word width!\n"); } if (impl.int_bits >= 32 - impl.frac_bits){ printf("impl.int_bits must be less than word width subtracted by precision!\n"); # 33 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/initialization.h" 3 4 ((void) sizeof (( # 33 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/initialization.h" 0 # 33 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/initialization.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 33 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/initialization.h" 0 # 33 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/initialization.h" 3 4 ) ; else __assert_fail ( # 33 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/initialization.h" "0" # 33 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/initialization.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/initialization.h", 33, __extension__ __PRETTY_FUNCTION__); })) # 33 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/initialization.h" ; } if(impl.frac_bits >= 31){ _fxp_one = 0x7fffffff; }else{ _fxp_one = (0x00000001 << impl.frac_bits); } _fxp_half = (0x00000001 << (impl.frac_bits - 1)); _fxp_minus_one = -(0x00000001 << impl.frac_bits); _fxp_min = -(0x00000001 << (impl.frac_bits + impl.int_bits - 1)); _fxp_max = (0x00000001 << (impl.frac_bits + impl.int_bits - 1)) - 1; _fxp_fmask = ((((int32_t) 1) << impl.frac_bits) - 1); _fxp_imask = ((0x80000000) >> (32 - impl.frac_bits - 1)); _dbl_min = _fxp_min; _dbl_min /= (1 << impl.frac_bits); _dbl_max = _fxp_max; _dbl_max /= (1 << impl.frac_bits); if ((impl.scale == 0) || (impl.scale == 1)){ impl.scale = 1; return; } if (impl.min != 0){ impl.min = impl.min / impl.scale; } if (impl.max != 0){ impl.max = impl.max / impl.scale; } # 80 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/initialization.h" } # 29 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/state-space.h" 1 # 19 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/state-space.h" extern digital_system_state_space _controller; extern int nStates; extern int nInputs; extern int nOutputs; double double_state_space_representation(void){ double result1[4][4]; double result2[4][4]; int i, j; for(i=0; i<4;i++){ for(j=0; j<4;j++){ result1[i][j]=0; result2[i][j]=0; } } double_matrix_multiplication(nOutputs,nStates,nStates,1,_controller.C,_controller.states,result1); double_matrix_multiplication(nOutputs,nInputs,nInputs,1,_controller.D,_controller.inputs,result2); double_add_matrix(nOutputs, 1, result1, result2, _controller.outputs); double_matrix_multiplication(nStates,nStates,nStates,1,_controller.A,_controller.states,result1); double_matrix_multiplication(nStates,nInputs,nInputs,1,_controller.B,_controller.inputs,result2); double_add_matrix(nStates, 1, result1, result2, _controller.states); return _controller.outputs[0][0]; } double fxp_state_space_representation(void){ fxp_t result1[4][4]; fxp_t result2[4][4]; int i, j; for(i=0; i<4;i++){ for(j=0; j<4;j++){ result1[i][j]=0; result2[i][j]=0; } } fxp_t A_fpx[4][4]; fxp_t B_fpx[4][4]; fxp_t C_fpx[4][4]; fxp_t D_fpx[4][4]; fxp_t states_fpx[4][4]; fxp_t inputs_fpx[4][4]; fxp_t outputs_fpx[4][4]; for(i=0; i<4;i++){ for(j=0; j<4;j++){ A_fpx[i][j]=0; } } for(i=0; i<4;i++){ for(j=0; j<4;j++){ B_fpx[i][j]=0; } } for(i=0; i<4;i++){ for(j=0; j<4;j++){ C_fpx[i][j]=0; } } for(i=0; i<4;i++){ for(j=0; j<4;j++){ D_fpx[i][j]=0; } } for(i=0; i<4;i++){ for(j=0; j<4;j++){ states_fpx[i][j]=0; } } for(i=0; i<4;i++){ for(j=0; j<4;j++){ inputs_fpx[i][j]=0; } } for(i=0; i<4;i++){ for(j=0; j<4;j++){ outputs_fpx[i][j]=0; } } for(i=0; i<nStates;i++){ for(j=0; j<nStates;j++){ A_fpx[i][j]= fxp_double_to_fxp(_controller.A[i][j]); } } for(i=0; i<nStates;i++){ for(j=0; j<nInputs;j++){ B_fpx[i][j]= fxp_double_to_fxp(_controller.B[i][j]); } } for(i=0; i<nOutputs;i++){ for(j=0; j<nStates;j++){ C_fpx[i][j]= fxp_double_to_fxp(_controller.C[i][j]); } } for(i=0; i<nOutputs;i++){ for(j=0; j<nInputs;j++){ D_fpx[i][j]= fxp_double_to_fxp(_controller.D[i][j]); } } for(i=0; i<nStates;i++){ for(j=0; j<1;j++){ states_fpx[i][j]= fxp_double_to_fxp(_controller.states[i][j]); } } for(i=0; i<nInputs;i++){ for(j=0; j<1;j++){ inputs_fpx[i][j]= fxp_double_to_fxp(_controller.inputs[i][j]); } } for(i=0; i<nOutputs;i++){ for(j=0; j<1;j++){ outputs_fpx[i][j]= fxp_double_to_fxp(_controller.outputs[i][j]); } } fxp_matrix_multiplication(nOutputs,nStates,nStates,1,C_fpx,states_fpx,result1); fxp_matrix_multiplication(nOutputs,nInputs,nInputs,1,D_fpx,inputs_fpx,result2); fxp_add_matrix(nOutputs, 1, result1, result2, outputs_fpx); fxp_matrix_multiplication(nStates,nStates,nStates,1,A_fpx,states_fpx,result1); fxp_matrix_multiplication(nStates,nInputs,nInputs,1,B_fpx,inputs_fpx,result2); fxp_add_matrix(nStates, 1, result1, result2, states_fpx); for(i=0; i<nStates;i++){ for(j=0; j<1;j++){ _controller.states[i][j]= fxp_to_double(states_fpx[i][j]); } } for(i=0; i<nOutputs;i++){ for(j=0; j<1;j++){ _controller.outputs[i][j]= fxp_to_double(outputs_fpx[i][j]); } } return _controller.outputs[0][0]; } # 30 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/filter_functions.h" 1 # 20 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/core/filter_functions.h" double sinTyl(double x, int precision){ double sine; double xsquared = x*x; double aux; if (precision < 0) { printf("Warning: Function sinTyl from bmc/core/filter_functions.h: " "Precision must be a positive integer. Assuming 0 precision\n"); precision = 0; } if (precision >= 0) { aux = 0; sine = aux; if (precision >= 1) { aux = x; sine += aux; if (precision >= 2) { aux = aux*xsquared; sine -= aux/6; if (precision >= 3) { aux = aux*xsquared; sine +=aux/120; if(precision >=4) { aux = aux*xsquared; sine -=aux/5040; if(precision >= 5) { aux = aux*xsquared; sine +=aux/362880; if(precision >= 6) { aux = aux*xsquared; sine -=aux/39916800; if (precision >= 7) printf("Warning: Function sinTyl " "from bmc/core/filter_functions.h: Precision " "representation exceeded. Assuming maximum precision of 6\n"); } } } } } } } return sine; } double cosTyl(double x, int precision){ double cosine; double xsquared = x*x; double aux; if (precision < 0) { printf("Warning: Function cosTyl from bmc/core/filter_functions.h: " "Precision must be a positive integer. Assuming 0 precision\n"); precision = 0; } if (precision >= 0) { aux = 0; cosine = aux; if (precision >= 1) { aux = 1; cosine = 1; if (precision >= 2) { aux = xsquared; cosine -= aux/2; if (precision >= 3) { aux = aux*xsquared; cosine += aux/24; if(precision >=4) { aux = aux*xsquared; cosine -=aux/720; if(precision >= 5) { aux = aux*xsquared; cosine +=aux/40320; if(precision >= 6) { aux = aux*xsquared; cosine -=aux/3628800; if (precision >= 7) printf("Warning: Function sinTyl " "from bmc/core/filter_functions.h: Precision " "representation exceeded. Assuming maximum precision of 6\n"); } } } } } } } return cosine; } double atanTyl(double x, int precision){ double atangent; double xsquared = x*x; double aux; if (precision < 0) { printf("Warning: Function sinTyl from bmc/core/filter_functions.h: " "Precision must be a positive integer. Assuming 0 precision\n"); precision = 0; } if (precision >= 0) { aux = 0; atangent = aux; if (precision >= 1) { aux = x; atangent = aux; if (precision >= 2) { aux = xsquared; atangent -= aux/3; if (precision >= 3) { aux = aux*xsquared; atangent += aux/5; if(precision >=4) { aux = aux*xsquared; atangent -=aux/7; if (precision >= 7) printf("Warning: Function sinTyl from bmc/core/filter_functions.h: " "Precision representation exceeded. Assuming maximum precision of 4\n"); } } } } } return atangent; } float sqrt1(const float x) { const float xhalf = 0.5f*x; union { float x; int i; } u; u.x = x; u.i = 0x5f3759df - (u.i >> 1); return x*u.x*(1.5f - xhalf*u.x*u.x); } float sqrt2(const float x) { union { int i; float x; } u; u.x = x; u.i = (1<<29) + (u.i >> 1) - (1<<22); return u.x; } float fabsolut(float x) { if (x < 0) x = -x; return x; } static float sqrt3(float val) { float x = val/10; float dx; double diff; double min_tol = 0.00001; int i, flag; flag = 0; if (val == 0 ) x = 0; else { for (i=1;i<20;i++) { if (!flag) { dx = (val - (x*x)) / (2.0 * x); x = x + dx; diff = val - (x*x); if (fabsolut(diff) <= min_tol) flag = 1; } else x =x; } } return (x); } # 31 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_overflow.h" 1 # 19 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_overflow.h" int nondet_int(); float nondet_float(); extern digital_system ds; extern implementation impl; int verify_overflow(void) { fxp_t a_fxp[ds.a_size]; fxp_t b_fxp[ds.b_size]; fxp_double_to_fxp_array(ds.a, a_fxp, ds.a_size); fxp_double_to_fxp_array(ds.b, b_fxp, ds.b_size); # 73 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_overflow.h" fxp_t min_fxp = fxp_double_to_fxp(impl.min); fxp_t max_fxp = fxp_double_to_fxp(impl.max); fxp_t y[X_SIZE_VALUE]; fxp_t x[X_SIZE_VALUE]; int i; for (i = 0; i < X_SIZE_VALUE; ++i) { y[i] = 0; x[i] = nondet_int(); __DSVERIFIER_assume(x[i] >= min_fxp && x[i] <= max_fxp); } int Nw = 0; Nw = ds.a_size > ds.b_size ? ds.a_size : ds.b_size; fxp_t yaux[ds.a_size]; fxp_t xaux[ds.b_size]; fxp_t waux[Nw]; for (i = 0; i < ds.a_size; ++i) { yaux[i] = 0; } for (i = 0; i < ds.b_size; ++i) { xaux[i] = 0; } for (i = 0; i < Nw; ++i) { waux[i] = 0; } fxp_t xk, temp; fxp_t *aptr, *bptr, *xptr, *yptr, *wptr; int j; for (i = 0; i < X_SIZE_VALUE; ++i) { # 129 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_overflow.h" y[i] = fxp_transposed_direct_form_2(waux, x[i], a_fxp, b_fxp, ds.a_size, ds.b_size); # 174 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_overflow.h" } overflow_mode = 1; fxp_verify_overflow_array(y, X_SIZE_VALUE); return 0; } # 33 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" 1 # 15 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" extern digital_system ds; extern implementation impl; extern digital_system_state_space _controller; extern int nStates; extern int nInputs; extern int nOutputs; int verify_limit_cycle_state_space(void){ double stateMatrix[4][4]; double outputMatrix[4][4]; double arrayLimitCycle[4]; double result1[4][4]; double result2[4][4]; int i, j, k; for(i=0; i<4;i++){ for(j=0; j<4;j++){ result1[i][j]=0; result2[i][j]=0; stateMatrix[i][j]=0; outputMatrix[i][j]=0; } } double_matrix_multiplication(nOutputs,nStates,nStates,1,_controller.C,_controller.states,result1); double_matrix_multiplication(nOutputs,nInputs,nInputs,1,_controller.D,_controller.inputs,result2); double_add_matrix(nOutputs, 1, result1, result2, _controller.outputs); k = 0; for (i = 1; i < 0; i++) { double_matrix_multiplication(nStates,nStates,nStates,1,_controller.A,_controller.states,result1); double_matrix_multiplication(nStates,nInputs,nInputs,1,_controller.B,_controller.inputs,result2); double_add_matrix(nStates, 1, result1, result2, _controller.states); double_matrix_multiplication(nOutputs,nStates,nStates,1,_controller.C,_controller.states,result1); double_matrix_multiplication(nOutputs,nInputs,nInputs,1,_controller.D,_controller.inputs,result2); double_add_matrix(nOutputs, 1, result1, result2, _controller.outputs); int l; for(l = 0; l < nStates; l++){ stateMatrix[l][k] = _controller.states[l][0]; } for(l = 0; l < nOutputs; l++){ stateMatrix[l][k] = _controller.outputs[l][0]; } k++; } printf("#matrix STATES -------------------------------"); print_matrix(stateMatrix,nStates,0); printf("#matrix OUTPUTS -------------------------------"); print_matrix(outputMatrix,nOutputs,0); # 93 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" 3 4 ((void) sizeof (( # 93 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" 0 # 93 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 93 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" 0 # 93 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" 3 4 ) ; else __assert_fail ( # 93 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" "0" # 93 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h", 93, __extension__ __PRETTY_FUNCTION__); })) # 93 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" ; for(i=0; i<nStates;i++){ for(j=0; j<0;j++){ arrayLimitCycle[j] = stateMatrix[i][j]; } double_check_persistent_limit_cycle(arrayLimitCycle,0); } for(i=0; i<nOutputs;i++){ for(j=0; j<0;j++){ arrayLimitCycle[j] = outputMatrix[i][j]; } double_check_persistent_limit_cycle(arrayLimitCycle,0); } # 110 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" 3 4 ((void) sizeof (( # 110 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" 0 # 110 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 110 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" 0 # 110 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" 3 4 ) ; else __assert_fail ( # 110 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" "0" # 110 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h", 110, __extension__ __PRETTY_FUNCTION__); })) # 110 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" ; } int verify_limit_cycle(void){ overflow_mode = 3; int i; int Set_xsize_at_least_two_times_Na = 2 * ds.a_size; printf("X_SIZE must be at least 2 * ds.a_size"); __DSVERIFIER_assert(X_SIZE_VALUE >= Set_xsize_at_least_two_times_Na); fxp_t a_fxp[ds.a_size]; fxp_t b_fxp[ds.b_size]; fxp_double_to_fxp_array(ds.a, a_fxp, ds.a_size); fxp_double_to_fxp_array(ds.b, b_fxp, ds.b_size); # 168 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" fxp_t y[X_SIZE_VALUE]; fxp_t x[X_SIZE_VALUE]; fxp_t min_fxp = fxp_double_to_fxp(impl.min); fxp_t max_fxp = fxp_double_to_fxp(impl.max); fxp_t xaux[ds.b_size]; int nondet_constant_input = nondet_int(); __DSVERIFIER_assume(nondet_constant_input >= min_fxp && nondet_constant_input <= max_fxp); for (i = 0; i < X_SIZE_VALUE; ++i) { x[i] = nondet_constant_input; y[i] = 0; } for (i = 0; i < ds.b_size; ++i) { xaux[i] = nondet_constant_input; } int Nw = 0; Nw = ds.a_size > ds.b_size ? ds.a_size : ds.b_size; fxp_t yaux[ds.a_size]; fxp_t y0[ds.a_size]; fxp_t waux[Nw]; fxp_t w0[Nw]; # 206 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" for (i = 0; i < Nw; ++i) { waux[i] = nondet_int(); __DSVERIFIER_assume(waux[i] >= min_fxp && waux[i] <= max_fxp); w0[i] = waux[i]; } fxp_t xk, temp; fxp_t *aptr, *bptr, *xptr, *yptr, *wptr; int j; for(i=0; i<X_SIZE_VALUE; ++i){ # 234 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" y[i] = fxp_transposed_direct_form_2(waux, x[i], a_fxp, b_fxp, ds.a_size, ds.b_size); # 278 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle.h" } fxp_check_persistent_limit_cycle(y, X_SIZE_VALUE); return 0; } # 34 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error.h" 1 # 17 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error.h" extern digital_system ds; extern implementation impl; int verify_error(void){ overflow_mode = 2; double a_cascade[100]; int a_cascade_size; double b_cascade[100]; int b_cascade_size; fxp_t a_fxp[ds.a_size]; fxp_t b_fxp[ds.b_size]; fxp_double_to_fxp_array(ds.a, a_fxp, ds.a_size); fxp_double_to_fxp_array(ds.b, b_fxp, ds.b_size); # 69 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error.h" fxp_t min_fxp = fxp_double_to_fxp(impl.min); fxp_t max_fxp = fxp_double_to_fxp(impl.max); fxp_t y[X_SIZE_VALUE]; fxp_t x[X_SIZE_VALUE]; double yf[X_SIZE_VALUE]; double xf[X_SIZE_VALUE]; int Nw = 0; Nw = ds.a_size > ds.b_size ? ds.a_size : ds.b_size; fxp_t yaux[ds.a_size]; fxp_t xaux[ds.b_size]; fxp_t waux[Nw]; double yfaux[ds.a_size]; double xfaux[ds.b_size]; double wfaux[Nw]; int i; for (i = 0; i < ds.a_size; ++i) { yaux[i] = 0; yfaux[i] = 0; } for (i = 0; i < ds.b_size; ++i) { xaux[i] = 0; xfaux[i] = 0; } for (i = 0; i < Nw; ++i) { waux[i] = 0; wfaux[i] = 0; } for (i = 0; i < X_SIZE_VALUE; ++i) { y[i] = 0; x[i] = nondet_int(); __DSVERIFIER_assume(x[i] >= min_fxp && x[i] <= max_fxp); yf[i] = 0.0f; xf[i] = fxp_to_double(x[i]); } for (i = 0; i < X_SIZE_VALUE; ++i) { # 156 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error.h" y[i] = fxp_transposed_direct_form_2(waux, x[i], a_fxp, b_fxp, ds.a_size, ds.b_size); yf[i] = double_transposed_direct_form_2(wfaux, xf[i], ds.a, ds.b, ds.a_size, ds.b_size); # 169 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error.h" double absolute_error = yf[i] - fxp_to_double(y[i]); __DSVERIFIER_assert(absolute_error < (impl.max_error) && absolute_error > (-impl.max_error)); } return 0; } # 35 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h" 1 # 13 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h" extern digital_system ds; extern implementation impl; int verify_zero_input_limit_cycle(void){ overflow_mode = 3; int i,j; int Set_xsize_at_least_two_times_Na = 2 * ds.a_size; printf("X_SIZE must be at least 2 * ds.a_size"); # 23 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h" 3 4 ((void) sizeof (( # 23 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h" X_SIZE_VALUE >= Set_xsize_at_least_two_times_Na # 23 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 23 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h" X_SIZE_VALUE >= Set_xsize_at_least_two_times_Na # 23 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h" 3 4 ) ; else __assert_fail ( # 23 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h" "X_SIZE_VALUE >= Set_xsize_at_least_two_times_Na" # 23 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h", 23, __extension__ __PRETTY_FUNCTION__); })) # 23 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h" ; fxp_t a_fxp[ds.a_size]; fxp_t b_fxp[ds.b_size]; fxp_double_to_fxp_array(ds.a, a_fxp, ds.a_size); fxp_double_to_fxp_array(ds.b, b_fxp, ds.b_size); # 71 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h" fxp_t min_fxp = fxp_double_to_fxp(impl.min); fxp_t max_fxp = fxp_double_to_fxp(impl.max); fxp_t y[X_SIZE_VALUE]; fxp_t x[X_SIZE_VALUE]; for (i = 0; i < X_SIZE_VALUE; ++i) { y[i] = 0; x[i] = 0; } int Nw = 0; Nw = ds.a_size > ds.b_size ? ds.a_size : ds.b_size; fxp_t yaux[ds.a_size]; fxp_t xaux[ds.b_size]; fxp_t waux[Nw]; fxp_t y0[ds.a_size]; fxp_t w0[Nw]; # 104 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h" for (i = 0; i < Nw; ++i) { waux[i] = nondet_int(); __DSVERIFIER_assume(waux[i] >= min_fxp && waux[i] <= max_fxp); w0[i] = waux[i]; } for (i = 0; i < ds.b_size; ++i) { xaux[i] = 0; } fxp_t xk, temp; fxp_t *aptr, *bptr, *xptr, *yptr, *wptr; for(i=0; i<X_SIZE_VALUE; ++i){ # 141 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h" y[i] = fxp_transposed_direct_form_2(waux, x[i], a_fxp, b_fxp, ds.a_size, ds.b_size); # 188 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_zero_input_limit_cycle.h" } fxp_check_persistent_limit_cycle(y, X_SIZE_VALUE); return 0; } # 36 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_generic_timing.h" 1 # 16 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_generic_timing.h" int nondet_int(); float nondet_float(); extern digital_system ds; extern implementation impl; extern hardware hw; int generic_timer = 0; int verify_generic_timing(void) { double y[X_SIZE_VALUE]; double x[X_SIZE_VALUE]; int i; for (i = 0; i < X_SIZE_VALUE; ++i) { y[i] = 0; x[i] = nondet_float(); __DSVERIFIER_assume(x[i] >= impl.min && x[i] <= impl.max); } int Nw = 0; Nw = ds.a_size > ds.b_size ? ds.a_size : ds.b_size; double yaux[ds.a_size]; double xaux[ds.b_size]; double waux[Nw]; for (i = 0; i < ds.a_size; ++i) { yaux[i] = 0; } for (i = 0; i < ds.b_size; ++i) { xaux[i] = 0; } for (i = 0; i < Nw; ++i) { waux[i] = 0; } double xk, temp; double *aptr, *bptr, *xptr, *yptr, *wptr; int j; generic_timer += ((2 * hw.assembly.std) + (1 * hw.assembly.rjmp)); double initial_timer = generic_timer; for (i = 0; i < X_SIZE_VALUE; ++i) { generic_timer += ((2 * hw.assembly.ldd) + (1 * hw.assembly.adiw) + (2 * hw.assembly.std)); generic_timer += ((2 * hw.assembly.ldd) + (1 * hw.assembly.cpi) + (1 * hw.assembly.cpc) + (1 * hw.assembly.brlt)); # 85 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_generic_timing.h" y[i] = generic_timing_double_transposed_direct_form_2(waux, x[i], ds.a, ds.b, ds.a_size, ds.b_size); double spent_time = (((double) generic_timer) * hw.cycle); # 89 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_generic_timing.h" 3 4 ((void) sizeof (( # 89 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_generic_timing.h" spent_time <= ds.sample_time # 89 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_generic_timing.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 89 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_generic_timing.h" spent_time <= ds.sample_time # 89 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_generic_timing.h" 3 4 ) ; else __assert_fail ( # 89 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_generic_timing.h" "spent_time <= ds.sample_time" # 89 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_generic_timing.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_generic_timing.h", 89, __extension__ __PRETTY_FUNCTION__); })) # 89 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_generic_timing.h" ; generic_timer = initial_timer; } return 0; } # 37 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_timing_msp430.h" 1 # 16 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_timing_msp430.h" int nondet_int(); float nondet_float(); extern digital_system ds; extern implementation impl; int verify_timing_msp_430(void) { double y[X_SIZE_VALUE]; double x[X_SIZE_VALUE]; int i; for (i = 0; i < X_SIZE_VALUE; ++i) { y[i] = 0; x[i] = nondet_float(); __DSVERIFIER_assume(x[i] >= impl.min && x[i] <= impl.max); } int Nw = 0; Nw = ds.a_size > ds.b_size ? ds.a_size : ds.b_size; double yaux[ds.a_size]; double xaux[ds.b_size]; double waux[Nw]; for (i = 0; i < ds.a_size; ++i) { yaux[i] = 0; } for (i = 0; i < ds.b_size; ++i) { xaux[i] = 0; } for (i = 0; i < Nw; ++i) { waux[i] = 0; } double xk, temp; double *aptr, *bptr, *xptr, *yptr, *wptr; int j; for (i = 0; i < X_SIZE_VALUE; ++i) { # 75 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_timing_msp430.h" y[i] = double_transposed_direct_form_2_MSP430(waux, x[i], ds.a, ds.b, ds.a_size, ds.b_size); # 121 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_timing_msp430.h" } return 0; } # 38 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability.h" 1 # 21 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability.h" extern digital_system ds; extern implementation impl; int verify_stability(void){ overflow_mode = 0; fxp_t a_fxp[ds.a_size]; fxp_double_to_fxp_array(ds.a, a_fxp, ds.a_size); double _a[ds.a_size]; fxp_to_double_array(_a, a_fxp, ds.a_size); # 37 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability.h" 3 4 ((void) sizeof (( # 37 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability.h" check_stability(_a, ds.a_size) # 37 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 37 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability.h" check_stability(_a, ds.a_size) # 37 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability.h" 3 4 ) ; else __assert_fail ( # 37 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability.h" "check_stability(_a, ds.a_size)" # 37 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability.h", 37, __extension__ __PRETTY_FUNCTION__); })) # 37 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability.h" ; # 83 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability.h" return 0; } # 39 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_minimum_phase.h" 1 # 21 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_minimum_phase.h" extern digital_system ds; extern implementation impl; int verify_minimum_phase(void){ overflow_mode = 0; fxp_t b_fxp[ds.b_size]; fxp_double_to_fxp_array(ds.b, b_fxp, ds.b_size); double _b[ds.b_size]; fxp_to_double_array(_b, b_fxp, ds.b_size); __DSVERIFIER_assert(check_stability(_b, ds.b_size)); # 85 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_minimum_phase.h" return 0; } # 40 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability_closedloop.h" 1 # 17 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability_closedloop.h" extern digital_system plant; extern digital_system plant_cbmc; extern digital_system controller; int verify_stability_closedloop_using_dslib(void){ double * c_num = controller.b; int c_num_size = controller.b_size; double * c_den = controller.a; int c_den_size = controller.a_size; fxp_t c_num_fxp[controller.b_size]; fxp_double_to_fxp_array(c_num, c_num_fxp, controller.b_size); fxp_t c_den_fxp[controller.a_size]; fxp_double_to_fxp_array(c_den, c_den_fxp, controller.a_size); double c_num_qtz[controller.b_size]; fxp_to_double_array(c_num_qtz, c_num_fxp, controller.b_size); double c_den_qtz[controller.a_size]; fxp_to_double_array(c_den_qtz, c_den_fxp, controller.a_size); # 48 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability_closedloop.h" double * p_num = plant_cbmc.b; int p_num_size = plant.b_size; double * p_den = plant_cbmc.a; int p_den_size = plant.a_size; double ans_num[100]; int ans_num_size = controller.b_size + plant.b_size - 1; double ans_den[100]; int ans_den_size = controller.a_size + plant.a_size - 1; # 68 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_stability_closedloop.h" printf("Verifying stability for closedloop function\n"); __DSVERIFIER_assert(check_stability_closedloop(ans_den, ans_den_size, p_num, p_num_size, p_den, p_den_size)); return 0; } # 41 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle_closedloop.h" 1 # 23 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle_closedloop.h" extern digital_system plant; extern digital_system plant_cbmc; extern digital_system controller; double nondet_double(); int verify_limit_cycle_closed_loop(void){ overflow_mode = 3; double * c_num = controller.b; int c_num_size = controller.b_size; double * c_den = controller.a; int c_den_size = controller.a_size; fxp_t c_num_fxp[controller.b_size]; fxp_double_to_fxp_array(c_num, c_num_fxp, controller.b_size); fxp_t c_den_fxp[controller.a_size]; fxp_double_to_fxp_array(c_den, c_den_fxp, controller.a_size); double c_num_qtz[controller.b_size]; fxp_to_double_array(c_num_qtz, c_num_fxp, controller.b_size); double c_den_qtz[controller.a_size]; fxp_to_double_array(c_den_qtz, c_den_fxp, controller.a_size); # 58 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle_closedloop.h" double * p_num = plant_cbmc.b; int p_num_size = plant.b_size; double * p_den = plant_cbmc.a; int p_den_size = plant.a_size; double ans_num[100]; int ans_num_size = controller.b_size + plant.b_size - 1; double ans_den[100]; int ans_den_size = controller.a_size + plant.a_size - 1; int i; double y[X_SIZE_VALUE]; double x[X_SIZE_VALUE]; double xaux[ans_num_size]; double nondet_constant_input = nondet_double(); __DSVERIFIER_assume(nondet_constant_input >= impl.min && nondet_constant_input <= impl.max); for (i = 0; i < X_SIZE_VALUE; ++i) { x[i] = nondet_constant_input; y[i] = 0; } for (i = 0; i < ans_num_size; ++i) { xaux[i] = nondet_constant_input; } double yaux[ans_den_size]; double y0[ans_den_size]; int Nw = ans_den_size > ans_num_size ? ans_den_size : ans_num_size; double waux[Nw]; double w0[Nw]; # 105 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle_closedloop.h" for (i = 0; i < Nw; ++i) { waux[i] = nondet_int(); __DSVERIFIER_assume(waux[i] >= impl.min && waux[i] <= impl.max); w0[i] = waux[i]; } double xk, temp; double *aptr, *bptr, *xptr, *yptr, *wptr; int j; for(i=0; i<X_SIZE_VALUE; ++i){ # 134 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_limit_cycle_closedloop.h" y[i] = double_transposed_direct_form_2(waux, x[i], ans_den, ans_num, ans_den_size, ans_num_size); } double_check_persistent_limit_cycle(y, X_SIZE_VALUE); return 0; } # 42 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_closedloop.h" 1 # 23 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_closedloop.h" extern digital_system plant; extern digital_system plant_cbmc; extern digital_system controller; int verify_error_closedloop(void){ overflow_mode = 3; double * c_num = controller.b; int c_num_size = controller.b_size; double * c_den = controller.a; int c_den_size = controller.a_size; fxp_t c_num_fxp[controller.b_size]; fxp_double_to_fxp_array(c_num, c_num_fxp, controller.b_size); fxp_t c_den_fxp[controller.a_size]; fxp_double_to_fxp_array(c_den, c_den_fxp, controller.a_size); double c_num_qtz[controller.b_size]; fxp_to_double_array(c_num_qtz, c_num_fxp, controller.b_size); double c_den_qtz[controller.a_size]; fxp_to_double_array(c_den_qtz, c_den_fxp, controller.a_size); # 56 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_closedloop.h" double * p_num = plant_cbmc.b; int p_num_size = plant.b_size; double * p_den = plant_cbmc.a; int p_den_size = plant.a_size; double ans_num_double[100]; double ans_num_qtz[100]; int ans_num_size = controller.b_size + plant.b_size - 1; double ans_den_qtz[100]; double ans_den_double[100]; int ans_den_size = controller.a_size + plant.a_size - 1; # 77 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_closedloop.h" int i; double y_qtz[X_SIZE_VALUE]; double y_double[X_SIZE_VALUE]; double x_qtz[X_SIZE_VALUE]; double x_double[X_SIZE_VALUE]; double xaux_qtz[ans_num_size]; double xaux_double[ans_num_size]; double xaux[ans_num_size]; double nondet_constant_input = nondet_double(); __DSVERIFIER_assume(nondet_constant_input >= impl.min && nondet_constant_input <= impl.max); for (i = 0; i < X_SIZE_VALUE; ++i) { x_qtz[i] = nondet_constant_input; x_double[i] = nondet_constant_input; y_qtz[i] = 0; y_double[i] = 0; } for (i = 0; i < ans_num_size; ++i) { xaux_qtz[i] = nondet_constant_input; xaux_double[i] = nondet_constant_input; } double yaux_qtz[ans_den_size]; double yaux_double[ans_den_size]; double y0_qtz[ans_den_size]; double y0_double[ans_den_size]; int Nw = ans_den_size > ans_num_size ? ans_den_size : ans_num_size; double waux_qtz[Nw]; double waux_double[Nw]; double w0_qtz[Nw]; double w0_double[Nw]; for (i = 0; i < Nw; ++i) { waux_qtz[i] = 0; waux_double[i] = 0; } for(i=0; i<X_SIZE_VALUE; ++i){ # 150 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_closedloop.h" y_qtz[i] = double_transposed_direct_form_2(waux_qtz, x_qtz[i], ans_den_qtz, ans_num_qtz, ans_den_size, ans_num_size); y_double[i] = double_transposed_direct_form_2(waux_double, x_double[i], ans_den_double, ans_num_double, ans_den_size, ans_num_size); double absolute_error = y_double[i] - fxp_to_double(y_qtz[i]); __DSVERIFIER_assert(absolute_error < (impl.max_error) && absolute_error > (-impl.max_error)); } return 0; } # 43 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" 1 # 20 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" extern digital_system_state_space _controller; extern double error_limit; extern int closed_loop; double new_state[4][4]; double new_stateFWL[4][4]; digital_system_state_space _controller_fxp; digital_system_state_space _controller_double; double ss_system_quantization_error(fxp_t inputs){ digital_system_state_space __backupController; int i; int j; _controller.inputs[0][0] = inputs; for(i=0; i<nStates;i++){ for(j=0; j<nStates;j++){ __backupController.A[i][j]= (_controller.A[i][j]); } } for(i=0; i<nStates;i++){ for(j=0; j<nInputs;j++){ __backupController.B[i][j]= (_controller.B[i][j]); } } for(i=0; i<nOutputs;i++){ for(j=0; j<nStates;j++){ __backupController.C[i][j]= (_controller.C[i][j]); } } for(i=0; i<nOutputs;i++){ for(j=0; j<nInputs;j++){ __backupController.D[i][j]= (_controller.D[i][j]); } } for(i=0; i<nStates;i++){ for(j=0; j<1;j++){ __backupController.states[i][j]= (_controller.states[i][j]); } } for(i=0; i<nInputs;i++){ for(j=0; j<1;j++){ __backupController.inputs[i][j]= (_controller.inputs[i][j]); } } for(i=0; i<nOutputs;i++){ for(j=0; j<1;j++){ __backupController.outputs[i][j]= (_controller.outputs[i][j]); } } double __quant_error = 0.0; for(i=0; i<nStates;i++){ for(j=0; j<1;j++){ _controller.states[i][j]= (new_state[i][j]); } } double output_double = double_state_space_representation(); for(i=0; i<nStates;i++){ for(j=0; j<1;j++){ new_state[i][j]= (_controller.states[i][j]); } } __backupController.inputs[0][0] = inputs; for(i=0; i<nStates;i++){ for(j=0; j<nStates;j++){ _controller.A[i][j] = __backupController.A[i][j]; } } for(i=0; i<nStates;i++){ for(j=0; j<nInputs;j++){ _controller.B[i][j] = __backupController.B[i][j]; } } for(i=0; i<nOutputs;i++){ for(j=0; j<nStates;j++){ _controller.C[i][j] = __backupController.C[i][j]; } } for(i=0; i<nOutputs;i++){ for(j=0; j<nInputs;j++){ _controller.D[i][j] = __backupController.D[i][j]; } } for(i=0; i<nStates;i++){ for(j=0; j<1;j++){ _controller.states[i][j] = __backupController.states[i][j]; } } for(i=0; i<nInputs;i++){ for(j=0; j<1;j++){ _controller.inputs[i][j] = __backupController.inputs[i][j]; } } for(i=0; i<nOutputs;i++){ for(j=0; j<1;j++){ _controller.outputs[i][j] = __backupController.outputs[i][j]; } } for(i=0; i<nStates;i++){ for(j=0; j<1;j++){ _controller.states[i][j]= (new_stateFWL[i][j]); } } double output_fxp = fxp_state_space_representation(); for(i=0; i<nStates;i++){ for(j=0; j<1;j++){ new_stateFWL[i][j]= (_controller.states[i][j]); } } __quant_error = output_double - output_fxp; return __quant_error; } double fxp_ss_closed_loop_quantization_error(double reference){ double reference_aux[4][4]; double result1[4][4]; double temp_result1[4][4]; double result2[4][4]; double temp_states[4][4]; fxp_t K_fxp[4][4]; fxp_t states_fxp[4][4]; fxp_t result_fxp[4][4]; unsigned int i; unsigned int j; unsigned int k; short unsigned int flag = 0; for(i=0; i<nOutputs;i++){ for(j=0; j<nInputs;j++){ if(_controller_fxp.D[i][j] != 0){ flag = 1; } } } for(i=0; i<4;i++){ for(j=0; j<4;j++){ reference_aux[i][j]=0; K_fxp[i][j] = 0; } } for(i=0; i<nInputs;i++){ reference_aux[i][0]= reference; } for(i=0; i<4;i++){ states_fxp[i][0]=0; } for(i=0; i<nStates;i++){ K_fxp[0][i]= fxp_double_to_fxp(_controller_fxp.K[0][i]); } for(i=0; i<4;i++){ for(j=0; j<4;j++){ result1[i][j]=0; result2[i][j]=0; } } for(k=0; k<nStates;k++) { states_fxp[k][0]= fxp_double_to_fxp(_controller_fxp.states[k][0]); } fxp_matrix_multiplication(nOutputs,nStates,nStates,1,K_fxp,states_fxp,result_fxp); fxp_t reference_fxp[4][4]; fxp_t result_fxp2[4][4]; for(k=0;k<nInputs;k++) { reference_fxp[k][0] =fxp_double_to_fxp(fxp_quantize(reference_aux[k][0])); } fxp_sub_matrix(nInputs,1, reference_fxp, result_fxp, result_fxp2); for(k=0; k<nInputs;k++) { _controller_fxp.inputs[k][0] = fxp_to_double(fxp_quantize(result_fxp2[k][0])); } double_matrix_multiplication(nOutputs,nStates,nStates,1,_controller_fxp.C,_controller_fxp.states,result1); if(flag == 1) { double_matrix_multiplication(nOutputs,nInputs,nInputs,1,_controller_fxp.D,_controller_fxp.inputs,result2); } double_add_matrix(nOutputs,1,result1,result2,_controller_fxp.outputs); double_matrix_multiplication(nStates,nStates,nStates,1,_controller_fxp.A,_controller_fxp.states,result1); double_matrix_multiplication(nStates,nInputs,nInputs,1,_controller_fxp.B,_controller_fxp.inputs,result2); double_add_matrix(nStates,1,result1,result2,_controller_fxp.states); return _controller_fxp.outputs[0][0]; } double ss_closed_loop_quantization_error(double reference){ double reference_aux[4][4]; double result1[4][4]; double result2[4][4]; unsigned int i; unsigned int j; short unsigned int flag = 0; for(i=0; i<nOutputs;i++){ for(j=0; j<nInputs;j++){ if(_controller_double.D[i][j] != 0){ flag = 1; } } } for(i=0; i<nInputs;i++){ for(j=0; j<1;j++){ reference_aux[i][j]= reference; } } for(i=0; i<4;i++){ for(j=0; j<4;j++){ result1[i][j]=0; result2[i][j]=0; } } double_matrix_multiplication(nOutputs,nStates,nStates,1,_controller_double.K,_controller_double.states,result1); double_sub_matrix(nInputs,1,reference_aux,result1, _controller_double.inputs); double_matrix_multiplication(nOutputs,nStates,nStates,1,_controller_double.C,_controller_double.states,result1); if(flag == 1) double_matrix_multiplication(nOutputs,nInputs,nInputs,1,_controller_double.D,_controller_double.inputs,result2); double_add_matrix(nOutputs,1,result1,result2,_controller_double.outputs); double_matrix_multiplication(nStates,nStates,nStates,1,_controller_double.A,_controller_double.states,result1); double_matrix_multiplication(nStates,nInputs,nInputs,1,_controller_double.B,_controller_double.inputs,result2); double_add_matrix(nStates,1,result1,result2,_controller_double.states); return _controller_double.outputs[0][0]; } int verify_error_state_space(void){ int i,j; for(i=0; i<nStates;i++){ for(j=0; j<1;j++){ new_state[i][j]= (_controller.states[i][j]); } } for(i=0; i<nStates;i++){ for(j=0; j<1;j++){ new_stateFWL[i][j]= (_controller.states[i][j]); } } _controller_fxp = _controller; _controller_double = _controller; overflow_mode = 0; fxp_t x[0]; fxp_t min_fxp = fxp_double_to_fxp(impl.min); fxp_t max_fxp = fxp_double_to_fxp(impl.max); double nondet_constant_input = nondet_double(); __DSVERIFIER_assume(nondet_constant_input >= min_fxp && nondet_constant_input <= max_fxp); for (i = 0; i < 0; ++i) { x[i] = nondet_constant_input; } double __quant_error; if(closed_loop){ for (i = 0; i < 0; ++i) { __quant_error = ss_closed_loop_quantization_error(x[i]) - fxp_ss_closed_loop_quantization_error(x[i]); # 354 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" 3 4 ((void) sizeof (( # 354 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" __quant_error < error_limit && __quant_error > ((-1)*error_limit) # 354 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 354 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" __quant_error < error_limit && __quant_error > ((-1)*error_limit) # 354 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" 3 4 ) ; else __assert_fail ( # 354 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" "__quant_error < error_limit && __quant_error > ((-1)*error_limit)" # 354 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h", 354, __extension__ __PRETTY_FUNCTION__); })) # 354 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" ; } } else { for (i=0; i < 0; i++) { __quant_error = ss_system_quantization_error(x[i]); # 361 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" 3 4 ((void) sizeof (( # 361 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" __quant_error < error_limit && __quant_error > ((-1)*error_limit) # 361 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 361 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" __quant_error < error_limit && __quant_error > ((-1)*error_limit) # 361 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" 3 4 ) ; else __assert_fail ( # 361 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" "__quant_error < error_limit && __quant_error > ((-1)*error_limit)" # 361 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h", 361, __extension__ __PRETTY_FUNCTION__); })) # 361 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_error_state_space.h" ; } } return 0; } # 44 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_safety_state_space.h" 1 # 17 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_safety_state_space.h" extern digital_system_state_space _controller; extern double error_limit; extern int closed_loop; double fxp_ss_closed_loop_safety(){ double reference[4][4]; double result1[4][4]; double result2[4][4]; fxp_t K_fpx[4][4]; fxp_t outputs_fpx[4][4]; fxp_t result_fxp[4][4]; unsigned int i; unsigned int j; unsigned int k; short unsigned int flag = 0; for(i=0; i<nOutputs;i++){ for(j=0; j<nInputs;j++){ if(_controller.D[i][j] != 0){ flag = 1; } } } for(i=0; i<nInputs;i++){ for(j=0; j<1;j++){ reference[i][j]= (_controller.inputs[i][j]); } } for(i=0; i<nInputs;i++){ for(j=0; j<nOutputs;j++){ K_fpx[i][j]=0; } } for(i=0; i<nOutputs;i++){ for(j=0; j<1;j++){ outputs_fpx[i][j]=0; } } for(i=0; i<4;i++){ for(j=0; j<4;j++){ result_fxp[i][j]=0; } } for(i=0; i<nInputs;i++){ for(j=0; j<nOutputs;j++){ K_fpx[i][j]= fxp_double_to_fxp(_controller.K[i][j]); } } for(i=0; i<4;i++){ for(j=0; j<4;j++){ result1[i][j]=0; result2[i][j]=0; } } for (i = 1; i < 0; i++) { double_matrix_multiplication(nOutputs,nStates,nStates,1,_controller.C,_controller.states,result1); if(flag == 1){ double_matrix_multiplication(nOutputs,nInputs,nInputs,1,_controller.D,_controller.inputs,result2); } double_add_matrix(nOutputs, 1, result1, result2, _controller.outputs); for(k=0; k<nOutputs;k++){ for(j=0; j<1;j++){ outputs_fpx[k][j]= fxp_double_to_fxp(_controller.outputs[k][j]); } } fxp_matrix_multiplication(nInputs,nOutputs,nOutputs,1,K_fpx,outputs_fpx,result_fxp); for(k=0; k<nInputs;k++){ for(j=0; j<1;j++){ result1[k][j]= fxp_to_double(result_fxp[k][j]); } } printf("### fxp: U (before) = %.9f", _controller.inputs[0][0]); printf("### fxp: reference = %.9f", reference[0][0]); printf("### fxp: result1 = %.9f", result1[0][0]); printf("### fxp: reference - result1 = %.9f", (reference[0][0] - result1[0][0])); double_sub_matrix(nInputs, 1, reference, result1, _controller.inputs); printf("### fxp: Y = %.9f", _controller.outputs[0][0]); printf("### fxp: U (after) = %.9f \n### \n### ", _controller.inputs[0][0]); double_matrix_multiplication(nStates,nStates,nStates,1,_controller.A,_controller.states,result1); double_matrix_multiplication(nStates,nInputs,nInputs,1,_controller.B,_controller.inputs,result2); double_add_matrix(nStates, 1, result1, result2, _controller.states); } return _controller.outputs[0][0]; } int verify_safety_state_space(void){ fxp_t output_fxp = fxp_ss_closed_loop_safety(); double output_double = fxp_to_double(output_fxp); # 140 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_safety_state_space.h" 3 4 ((void) sizeof (( # 140 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_safety_state_space.h" output_double <= error_limit # 140 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_safety_state_space.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 140 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_safety_state_space.h" output_double <= error_limit # 140 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_safety_state_space.h" 3 4 ) ; else __assert_fail ( # 140 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_safety_state_space.h" "output_double <= error_limit" # 140 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_safety_state_space.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_safety_state_space.h", 140, __extension__ __PRETTY_FUNCTION__); })) # 140 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_safety_state_space.h" ; return 0; } # 45 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 1 # 14 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" extern digital_system_state_space _controller; int verify_controllability(void){ int i; int j; fxp_t A_fpx[4][4]; fxp_t B_fpx[4][4]; fxp_t controllabilityMatrix[4][4]; fxp_t backup[4][4]; fxp_t backupSecond[4][4]; double controllabilityMatrix_double[4][4]; for(i=0; i<nStates;i++){ for(j=0; j<(nStates*nInputs);j++){ A_fpx[i][j] = 0.0; B_fpx[i][j] = 0.0; controllabilityMatrix[i][j] = 0.0; backup[i][j] = 0.0; backupSecond[i][j] = 0.0; controllabilityMatrix_double[i][j] = 0.0; } } for(i=0; i<nStates;i++){ for(j=0; j<nStates;j++){ A_fpx[i][j]= fxp_double_to_fxp(_controller.A[i][j]); } } for(i=0; i<nStates;i++){ for(j=0; j<nInputs;j++){ B_fpx[i][j]= fxp_double_to_fxp(_controller.B[i][j]); } } if(nInputs > 1){ int l = 0; for(j=0; j<(nStates*nInputs);){ fxp_exp_matrix(nStates,nStates,A_fpx,l,backup); l++; fxp_matrix_multiplication(nStates,nStates,nStates,nInputs,backup,B_fpx,backupSecond); for(int k = 0; k < nInputs; k++){ for(i = 0; i<nStates;i++){ controllabilityMatrix[i][j]= backupSecond[i][k]; } j++; } } for(i=0; i<nStates;i++){ for(j=0; j<(nStates*nInputs);j++){ backup[i][j]= 0.0; } } fxp_transpose(controllabilityMatrix,backup,nStates,(nStates*nInputs)); fxp_t mimo_controllabilityMatrix_fxp[4][4]; fxp_matrix_multiplication(nStates,(nStates*nInputs),(nStates*nInputs),nStates,controllabilityMatrix,backup,mimo_controllabilityMatrix_fxp); for(i=0; i<nStates;i++){ for(j=0; j<nStates;j++){ controllabilityMatrix_double[i][j]= fxp_to_double(mimo_controllabilityMatrix_fxp[i][j]); } } # 91 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 ((void) sizeof (( # 91 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" determinant(controllabilityMatrix_double,nStates) != 0 # 91 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 91 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" determinant(controllabilityMatrix_double,nStates) != 0 # 91 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 ) ; else __assert_fail ( # 91 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" "determinant(controllabilityMatrix_double,nStates) != 0" # 91 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h", 91, __extension__ __PRETTY_FUNCTION__); })) # 91 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" ; } else { for(j=0; j<nStates;j++){ fxp_exp_matrix(nStates,nStates,A_fpx,j,backup); fxp_matrix_multiplication(nStates,nStates,nStates,nInputs,backup,B_fpx,backupSecond); for(i = 0; i<nStates;i++){ controllabilityMatrix[i][j]= backupSecond[i][0]; } } for(i=0; i<nStates;i++){ for(j=0; j<nStates;j++){ controllabilityMatrix_double[i][j]= fxp_to_double(controllabilityMatrix[i][j]); } } # 113 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 ((void) sizeof (( # 113 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" determinant(controllabilityMatrix_double,nStates) != 0 # 113 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 113 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" determinant(controllabilityMatrix_double,nStates) != 0 # 113 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 ) ; else __assert_fail ( # 113 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" "determinant(controllabilityMatrix_double,nStates) != 0" # 113 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h", 113, __extension__ __PRETTY_FUNCTION__); })) # 113 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" ; } return 0; } int verify_controllability_double(void){ int i; int j; double controllabilityMatrix[4][4]; double backup[4][4]; double backupSecond[4][4]; double controllabilityMatrix_double[4][4]; if(nInputs > 1){ int l = 0; for(j=0; j<(nStates*nInputs);){ double_exp_matrix(nStates,nStates,_controller.A,l,backup); l++; double_matrix_multiplication(nStates,nStates,nStates,nInputs,backup,_controller.B,backupSecond); for(int k = 0; k < nInputs; k++){ for(i = 0; i<nStates;i++){ controllabilityMatrix[i][j]= backupSecond[i][k]; } j++; } } for(i=0; i<nStates;i++){ for(j=0; j<(nStates*nInputs);j++){ backup[i][j]= 0.0; } } transpose(controllabilityMatrix,backup,nStates,(nStates*nInputs)); double mimo_controllabilityMatrix_double[4][4]; double_matrix_multiplication(nStates,(nStates*nInputs),(nStates*nInputs),nStates,controllabilityMatrix,backup,mimo_controllabilityMatrix_double); # 154 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 ((void) sizeof (( # 154 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" determinant(mimo_controllabilityMatrix_double,nStates) != 0 # 154 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 154 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" determinant(mimo_controllabilityMatrix_double,nStates) != 0 # 154 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 ) ; else __assert_fail ( # 154 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" "determinant(mimo_controllabilityMatrix_double,nStates) != 0" # 154 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h", 154, __extension__ __PRETTY_FUNCTION__); })) # 154 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" ; } else { for(j=0; j<nStates;j++){ double_exp_matrix(nStates,nStates,_controller.A,j,backup); double_matrix_multiplication(nStates,nStates,nStates,nInputs,backup,_controller.B,backupSecond); for(i = 0; i<nStates;i++){ controllabilityMatrix[i][j]= backupSecond[i][0]; } } # 163 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 ((void) sizeof (( # 163 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" determinant(controllabilityMatrix,nStates) != 0 # 163 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 163 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" determinant(controllabilityMatrix,nStates) != 0 # 163 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 ) ; else __assert_fail ( # 163 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" "determinant(controllabilityMatrix,nStates) != 0" # 163 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h", 163, __extension__ __PRETTY_FUNCTION__); })) # 163 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_controllability.h" ; } return 0; } # 46 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" 1 # 17 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" extern digital_system_state_space _controller; int verify_observability(void){ int i; int j; fxp_t A_fpx[4][4]; fxp_t C_fpx[4][4]; fxp_t observabilityMatrix[4][4]; fxp_t backup[4][4]; fxp_t backupSecond[4][4]; double observabilityMatrix_double[4][4]; for(i=0; i<nStates;i++){ for(j=0; j<nStates;j++){ observabilityMatrix[i][j]= 0; A_fpx[i][j]=0; C_fpx[i][j]= 0; backup[i][j]= 0; backupSecond[i][j]= 0; } } for(i=0; i<nStates;i++){ for(j=0; j<nStates;j++){ A_fpx[i][j]= fxp_double_to_fxp(_controller.A[i][j]); } } for(i=0; i<nOutputs;i++){ for(j=0; j<nStates;j++){ C_fpx[i][j]= fxp_double_to_fxp(_controller.C[i][j]); } } if(nOutputs > 1){ int l; j = 0; for(l=0; l<nStates;){ fxp_exp_matrix(nStates,nStates,A_fpx,l,backup); l++; fxp_matrix_multiplication(nOutputs,nStates,nStates,nStates,C_fpx,backup,backupSecond); for(int k = 0; k < nOutputs; k++){ for(i = 0; i<nStates;i++){ observabilityMatrix[j][i]= backupSecond[k][i]; } j++; } } # 80 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" for(i=0; i<nStates;i++){ for(j=0; j<(nStates*nOutputs);j++){ backup[i][j]= 0.0; } } fxp_transpose(observabilityMatrix,backup,(nStates*nOutputs),nStates); # 99 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" fxp_t mimo_observabilityMatrix_fxp[4][4]; fxp_matrix_multiplication(nStates,(nStates*nOutputs),(nStates*nOutputs),nStates,backup,observabilityMatrix,mimo_observabilityMatrix_fxp); # 112 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" for(i=0; i<nStates;i++){ for(j=0; j<nStates;j++){ observabilityMatrix_double[i][j]= fxp_to_double(mimo_observabilityMatrix_fxp[i][j]); } } # 119 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" 3 4 ((void) sizeof (( # 119 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" determinant(observabilityMatrix_double,nStates) != 0 # 119 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 119 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" determinant(observabilityMatrix_double,nStates) != 0 # 119 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" 3 4 ) ; else __assert_fail ( # 119 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" "determinant(observabilityMatrix_double,nStates) != 0" # 119 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h", 119, __extension__ __PRETTY_FUNCTION__); })) # 119 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" ; }else{ for(i=0; i<nStates;i++){ fxp_exp_matrix(nStates,nStates,A_fpx,i,backup); fxp_matrix_multiplication(nOutputs,nStates,nStates,nStates,C_fpx,backup,backupSecond); for(j = 0; j<nStates;j++){ observabilityMatrix[i][j]= backupSecond[0][j]; } } for(i=0; i<nStates;i++){ for(j=0; j<nStates;j++){ observabilityMatrix_double[i][j]= fxp_to_double(observabilityMatrix[i][j]); } } # 134 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" 3 4 ((void) sizeof (( # 134 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" determinant(observabilityMatrix_double,nStates) != 0 # 134 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" 3 4 ) ? 1 : 0), __extension__ ({ if ( # 134 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" determinant(observabilityMatrix_double,nStates) != 0 # 134 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" 3 4 ) ; else __assert_fail ( # 134 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" "determinant(observabilityMatrix_double,nStates) != 0" # 134 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" 3 4 , "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h", 134, __extension__ __PRETTY_FUNCTION__); })) # 134 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_observability.h" ; } return 0; } # 47 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 # 1 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_magnitude.h" 1 # 16 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_magnitude.h" extern filter_parameters filter; extern implementation impl; extern digital_system ds; # 28 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/engine/verify_magnitude.h" void resp_mag(double* num, int lnum, double* den, int lden, double* res, int N) { double w; int m, i; double out_numRe[N + 1]; double out_numIm[N + 1]; double out_denRe[N + 1]; double out_denIm[N + 1]; double old_out_Re; double zero_test; for (w = 0, i = 0; w <= 3.14159265358979323846; w += 3.14159265358979323846 / N, ++i) { out_numRe[i] = num[0]; out_numIm[i] = 0; for (m = 1; m < lnum; ++m) { old_out_Re = out_numRe[i]; out_numRe[i] = cosTyl(w, 6) * out_numRe[i] - sinTyl(w, 6) * out_numIm[i] + num[m]; out_numIm[i] = sinTyl(w, 6) * old_out_Re + cosTyl(w, 6) * out_numIm[i]; } out_denRe[i] = den[0]; out_denIm[i] = 0; for (m = 1; m < lden; ++m) { old_out_Re = out_denRe[i]; out_denRe[i] = cosTyl(w, 6) * out_denRe[i] - sinTyl(w, 6) * out_denIm[i] + den[m]; out_denIm[i] = sinTyl(w, 6) * old_out_Re + cosTyl(w, 6) * out_denIm[i]; } res[i] = sqrt3(out_numRe[i] * out_numRe[i] + out_numIm[i] * out_numIm[i]); zero_test = sqrt3(out_denRe[i] * out_denRe[i] + out_denIm[i] * out_denIm[i]); __DSVERIFIER_assume(zero_test != 0); res[i] = res[i] / zero_test; } } int verify_magnitude(void) { int freq_response_samples = 100; double w; double w_incr = 1.0 / freq_response_samples; double res[freq_response_samples+1]; int i,j; fxp_t a_fxp[ds.a_size]; fxp_double_to_fxp_array(ds.a, a_fxp, ds.a_size); double _a[ds.a_size]; fxp_to_double_array(_a, a_fxp, ds.a_size); fxp_t b_fxp[ds.b_size]; fxp_double_to_fxp_array(ds.b, b_fxp, ds.b_size); double _b[ds.b_size]; fxp_to_double_array(_b, b_fxp, ds.b_size); resp_mag(ds.b, ds.b_size, ds.a, ds.a_size, res, freq_response_samples); if (filter.type == 1) { for (i = 0, w = 0; (w <= 1.0); ++i, w += w_incr) { if (w <= filter.wp) { __DSVERIFIER_assert_msg(res[i] >= filter.Ap, "|----------------Passband Failure-------------|"); } else if (w == filter.wc) { __DSVERIFIER_assert_msg(res[i] <= filter.Ac, "|-------------Cutoff Frequency Failure--------|"); } else if ((w >= filter.wr) && (w <= 1)) { __DSVERIFIER_assert_msg(res[i] <= filter.Ar, "|----------------Stopband Failure-------------|"); } } } else if (filter.type == 2) { for (i = 0, w = 0; (w <= 1.0); ++i, w += w_incr) { if (w <= filter.wr) { __DSVERIFIER_assert_msg(res[i] <= filter.Ar, "|----------------Stopband Failure-------------|"); } else if (w == filter.wc) { __DSVERIFIER_assert_msg(res[i] <= filter.Ac, "|-------------Cutoff Frequency Failure--------|"); } else if ((w > filter.wp) && (w <= 1)) { __DSVERIFIER_assert_msg(res[i] >= filter.Ap, "|----------------Passband Failure-------------|"); } } } else { __DSVERIFIER_assert(0); } return 0; } # 48 "/home/yashchopda/Desktop/dsverifier-v2.0.3-esbmc-v4.0-cbmc-5.6/bmc/dsverifier.h" 2 extern digital_system ds; extern digital_system plant; digital_system plant_cbmc; extern digital_system controller; extern implementation impl; extern hardware hw; extern digital_system_state_space _controller; extern filter_parameters filter; unsigned int nondet_uint(); extern void initials(); void validation(); void call_verification_task(void * verification_task); void call_closedloop_verification_task(void * closedloop_verification_task); float nondet_float(); double nondet_double(); int main(){ initialization(); validation(); if (1 == 0) rounding_mode = 0; else if (1 == 1) rounding_mode = 1; else if (1 == 2) rounding_mode = 2; if (3 == 3) { call_verification_task(&verify_overflow); } else if (3 == 2) { call_verification_task(&verify_limit_cycle); } else if (3 == 6) { call_verification_task(&verify_error); } else if (3 == 1) { call_verification_task(&verify_zero_input_limit_cycle); } else if (3 == 4) { call_verification_task(&verify_timing_msp_430); } else if (3 == 5) { call_verification_task(&verify_generic_timing); } else if (3 == 7) { call_verification_task(&verify_stability); } else if (3 == 8) { call_verification_task(&verify_minimum_phase); } else if (3 == 9) { call_closedloop_verification_task(&verify_stability_closedloop_using_dslib); } else if (3 == 10) { call_closedloop_verification_task(&verify_limit_cycle_closed_loop); } else if (3 == 11) { call_closedloop_verification_task(&verify_error_closedloop); } else if (3 == 12) { verify_error_state_space(); } else if (3 == 16) { verify_safety_state_space(); } else if (3 == 13) { verify_controllability(); } else if (3 == 14) { verify_observability(); } else if (3 == 15) { verify_limit_cycle_state_space(); } else if (3 == 18) { call_verification_task(&verify_magnitude); } return 0; } void validation() { if (3 == 12 || 3 == 16 || 3 == 15 || 3 == 13 || 3 == 14) { if (0 == 0) { printf("\n\n********************************************************************************************\n"); printf("* set a K_SIZE to use this property in DSVerifier (use: -DK_SIZE=VALUE) *\n"); printf("********************************************************************************************\n"); __DSVERIFIER_assert(0); exit(1); } initials(); return; } if (((3 != 9) && (3 != 10) && (3 != 11)) && (ds.a_size == 0 || ds.b_size == 0)) { printf("\n\n****************************************************************************\n"); printf("* set (ds and impl) parameters to check with DSVerifier *\n"); printf("****************************************************************************\n"); __DSVERIFIER_assert(0); } if ((3 == 9) || (3 == 10) || (3 == 11)) { if (controller.a_size == 0 || plant.b_size == 0 || impl.int_bits == 0 ) { printf("\n\n*****************************************************************************************************\n"); printf("* set (controller, plant, and impl) parameters to check CLOSED LOOP with DSVerifier *\n"); printf("*****************************************************************************************************\n"); __DSVERIFIER_assert(0); } else { printf("\n\n*****************************************************************************************************\n"); printf("* set (controller and impl) parameters so that they do not overflow *\n"); printf("*****************************************************************************************************\n"); unsigned j; for (j = 0; j < controller.a_size; ++j) { const double value=controller.a[j]; __DSVERIFIER_assert(value <= _dbl_max); __DSVERIFIER_assert(value >= _dbl_min); } for (j = 0; j < controller.b_size; ++j) { const double value=controller.b[j]; __DSVERIFIER_assert(value <= _dbl_max); __DSVERIFIER_assert(value >= _dbl_min); } } if (controller.b_size > 0) { unsigned j, zeros=0; for (j = 0; j < controller.b_size; ++j) { if (controller.b[j]==0) ++zeros; } if (zeros == controller.b_size) { printf("\n\n*****************************************************************************************************\n"); printf("* The controller numerator must not be zero *\n"); printf("*****************************************************************************************************\n"); __DSVERIFIER_assert(0); } } if (controller.a_size > 0) { unsigned j, zeros=0; for (j = 0; j < controller.a_size; ++j) { if (controller.a[j]==0) ++zeros; } if (zeros == controller.a_size) { printf("\n\n*****************************************************************************************************\n"); printf("* The controller denominator must not be zero *\n"); printf("*****************************************************************************************************\n"); __DSVERIFIER_assert(0); } } if (0 == 0) { printf("\n\n***************************************************************************************************************\n"); printf("* set a connection mode to check CLOSED LOOP with DSVerifier (use: --connection-mode TYPE) *\n"); printf("***************************************************************************************************************\n"); __DSVERIFIER_assert(0); } } if (3 == 0) { printf("\n\n***************************************************************************************\n"); printf("* set the property to check with DSVerifier (use: --property NAME) *\n"); printf("***************************************************************************************\n"); __DSVERIFIER_assert(0); } if ((3 == 3) || (3 == 2) || (3 == 1) || (3 == 10) || (3 == 11) || (3 == 4 || 3 == 5) || 3 == 6) { if ((10 == 0) && !(0 == 1)) { printf("\n\n********************************************************************************************\n"); printf("* set a X_SIZE to use this property in DSVerifier (use: --x-size VALUE) *\n"); printf("********************************************************************************************\n"); __DSVERIFIER_assert(0); } else if (0 == 1) { X_SIZE_VALUE = nondet_uint(); __DSVERIFIER_assume( X_SIZE_VALUE > (2 * ds.a_size)); } else if (10 < 0) { printf("\n\n********************************************************************************************\n"); printf("* set a X_SIZE > 0 *\n"); printf("********************************************************************************************\n"); __DSVERIFIER_assert(0); } else { X_SIZE_VALUE = 10; } } if ((3 == 0) && (3 != 9) && (3 != 18)) { printf("\n\n*********************************************************************************************\n"); printf("* set the realization to check with DSVerifier (use: --realization NAME) *\n"); printf("*********************************************************************************************\n"); __DSVERIFIER_assert(0); } if (3 == 6 || 3 == 11) { if (impl.max_error == 0) { printf("\n\n***********************************************************************\n"); printf("* provide the maximum expected error (use: impl.max_error) *\n"); printf("***********************************************************************\n"); __DSVERIFIER_assert(0); } } if (3 == 4 || 3 == 5) { if (3 == 5 || 3 == 4) { if (hw.clock == 0l) { printf("\n\n***************************\n"); printf("* Clock could not be zero *\n"); printf("***************************\n"); __DSVERIFIER_assert(0); } hw.cycle = ((double) 1.0 / hw.clock); if (hw.cycle < 0) { printf("\n\n*********************************************\n"); printf("* The cycle time could not be representable *\n"); printf("*********************************************\n"); __DSVERIFIER_assert(0); } if (ds.sample_time == 0) { printf("\n\n*****************************************************************************\n"); printf("* provide the sample time of the digital system (ds.sample_time) *\n"); printf("*****************************************************************************\n"); __DSVERIFIER_assert(0); } } } if (3 == 18) { if (!((filter.Ap > 0) && (filter.Ac >0) && (filter.Ar >0))) { printf("\n\n*****************************************************************************\n"); printf("* set values bigger than 0 for Ap, Ac and Ar* \n"); printf("*****************************************************************************\n"); __DSVERIFIER_assert(0); } } if ((3 == 7) || (3 == 8) || (3 == 9) || (3 == 10) || (3 == 11) || (3 == 12)) { printf("\n\n******************************************\n"); printf("* Temporarily the cascade modes are disabled *\n"); printf("**********************************************\n"); __DSVERIFIER_assert(0); } } void call_verification_task(void * verification_task) { int i = 0; _Bool base_case_executed = 0; if (0 == 2) { for(i=0; i<ds.b_size; i++) { if (ds.b_uncertainty[i] > 0) { double factor = ds.b_uncertainty[i]; factor = factor < 0 ? factor * (-1) : factor; double min = ds.b[i] - factor; double max = ds.b[i] + factor; if ((factor == 0) && (base_case_executed == 1)) { continue; } else if ((factor == 0) && (base_case_executed == 0)) { base_case_executed = 1; } ds.b[i] = nondet_double(); __DSVERIFIER_assume((ds.b[i] >= min) && (ds.b[i] <= max)); } } for(i=0; i<ds.a_size; i++) { if (ds.a_uncertainty[i] > 0) { double factor = ds.a_uncertainty[i]; factor = factor < 0 ? factor * (-1) : factor; double min = ds.a[i] - factor; double max = ds.a[i] + factor; if ((factor == 0) && (base_case_executed == 1)) { continue; } else if ((factor == 0) && (base_case_executed == 0)) { base_case_executed = 1; } ds.a[i] = nondet_double(); __DSVERIFIER_assume((ds.a[i] >= min) && (ds.a[i] <= max)); } } } else { int i=0; for(i=0; i<ds.b_size; i++) { if (ds.b_uncertainty[i] > 0) { double factor = ((ds.b[i] * ds.b_uncertainty[i]) / 100); factor = factor < 0 ? factor * (-1) : factor; double min = ds.b[i] - factor; double max = ds.b[i] + factor; if ((factor == 0) && (base_case_executed == 1)) { continue; } else if ((factor == 0) && (base_case_executed == 0)) { base_case_executed = 1; } ds.b[i] = nondet_double(); __DSVERIFIER_assume((ds.b[i] >= min) && (ds.b[i] <= max)); } } for(i=0; i<ds.a_size; i++) { if (ds.a_uncertainty[i] > 0) { double factor = ((ds.a[i] * ds.a_uncertainty[i]) / 100); factor = factor < 0 ? factor * (-1) : factor; double min = ds.a[i] - factor; double max = ds.a[i] + factor; if ((factor == 0) && (base_case_executed == 1)) { continue; } else if ((factor == 0) && (base_case_executed == 0)) { base_case_executed = 1; } ds.a[i] = nondet_double(); __DSVERIFIER_assume((ds.a[i] >= min) && (ds.a[i] <= max)); } } } ((void(*)())verification_task)(); } void call_closedloop_verification_task(void * closedloop_verification_task) { _Bool base_case_executed = 0; int i=0; for(i=0; i<plant.b_size; i++) { if (plant.b_uncertainty[i] > 0) { double factor = ((plant.b[i] * plant.b_uncertainty[i]) / 100); factor = factor < 0 ? factor * (-1) : factor; double min = plant.b[i] - factor; double max = plant.b[i] + factor; if ((factor == 0) && (base_case_executed == 1)) { continue; } else if ((factor == 0) && (base_case_executed == 0)) { base_case_executed = 1; } plant_cbmc.b[i] = nondet_double(); __DSVERIFIER_assume((plant_cbmc.b[i] >= min) && (plant_cbmc.b[i] <= max)); }else{ plant_cbmc.b[i] = plant.b[i]; } } for(i=0; i<plant.a_size; i++) { if (plant.a_uncertainty[i] > 0) { double factor = ((plant.a[i] * plant.a_uncertainty[i]) / 100); factor = factor < 0 ? factor * (-1) : factor; double min = plant.a[i] - factor; double max = plant.a[i] + factor; if ((factor == 0) && (base_case_executed == 1)) { continue; } else if ((factor == 0) && (base_case_executed == 0)) { base_case_executed = 1; } plant_cbmc.a[i] = nondet_double(); __DSVERIFIER_assume((plant_cbmc.a[i] >= min) && (plant_cbmc.a[i] <= max)); } else { plant_cbmc.a[i] = plant.a[i]; } } ((void(*)())closedloop_verification_task)(); } # 2 "benchmarks/ds-06-impl2.c" 2 digital_system ds = { .b = { 0.93, -0.87 }, .b_size = 2, .a = { 1.0, 1.0 }, .a_size = 2, .sample_time = 0.02 }; implementation impl = { .int_bits = 8, .frac_bits = 8, .max = 1.0, .min = -1.0 };
the_stack_data/13418.c
//@ ltl invariant negative: ( ([] (<> AP((num0 == 0)))) || (! ([] ( (<> ( (! AP((p0_l0 != 0))) && (! AP((p0_l1 != 0))))) && (<> (! ( (! AP((p0_l0 != 0))) && (! AP((p0_l1 != 0)))))))))); extern float __VERIFIER_nondet_float(void); extern int __VERIFIER_nondet_int(void); char __VERIFIER_nondet_bool(void) { return __VERIFIER_nondet_int() != 0; } char p7_l1, _x_p7_l1; char p7_l0, _x_p7_l0; int num6, _x_num6; int num5, _x_num5; int num4, _x_num4; int num3, _x_num3; char p3_l1, _x_p3_l1; int num2, _x_num2; char p3_l0, _x_p3_l0; char p8_l1, _x_p8_l1; int num1, _x_num1; char p2_l1, _x_p2_l1; char run3, _x_run3; char p8_l0, _x_p8_l0; int num0, _x_num0; char p1_l1, _x_p1_l1; char p2_l0, _x_p2_l0; char run2, _x_run2; char p1_l0, _x_p1_l0; char run1, _x_run1; char p0_l1, _x_p0_l1; char p6_l1, _x_p6_l1; char run0, _x_run0; char p0_l0, _x_p0_l0; char p6_l0, _x_p6_l0; int max_num, _x_max_num; int min_num, _x_min_num; int num7, _x_num7; int num8, _x_num8; char p4_l0, _x_p4_l0; char p4_l1, _x_p4_l1; char p5_l0, _x_p5_l0; char p5_l1, _x_p5_l1; int main() { p7_l1 = __VERIFIER_nondet_bool(); p7_l0 = __VERIFIER_nondet_bool(); num6 = __VERIFIER_nondet_int(); num5 = __VERIFIER_nondet_int(); num4 = __VERIFIER_nondet_int(); num3 = __VERIFIER_nondet_int(); p3_l1 = __VERIFIER_nondet_bool(); num2 = __VERIFIER_nondet_int(); p3_l0 = __VERIFIER_nondet_bool(); p8_l1 = __VERIFIER_nondet_bool(); num1 = __VERIFIER_nondet_int(); p2_l1 = __VERIFIER_nondet_bool(); run3 = __VERIFIER_nondet_bool(); p8_l0 = __VERIFIER_nondet_bool(); num0 = __VERIFIER_nondet_int(); p1_l1 = __VERIFIER_nondet_bool(); p2_l0 = __VERIFIER_nondet_bool(); run2 = __VERIFIER_nondet_bool(); p1_l0 = __VERIFIER_nondet_bool(); run1 = __VERIFIER_nondet_bool(); p0_l1 = __VERIFIER_nondet_bool(); p6_l1 = __VERIFIER_nondet_bool(); run0 = __VERIFIER_nondet_bool(); p0_l0 = __VERIFIER_nondet_bool(); p6_l0 = __VERIFIER_nondet_bool(); max_num = __VERIFIER_nondet_int(); min_num = __VERIFIER_nondet_int(); num7 = __VERIFIER_nondet_int(); num8 = __VERIFIER_nondet_int(); p4_l0 = __VERIFIER_nondet_bool(); p4_l1 = __VERIFIER_nondet_bool(); p5_l0 = __VERIFIER_nondet_bool(); p5_l1 = __VERIFIER_nondet_bool(); int __ok = (((( !(p8_l0 != 0)) && ( !(p8_l1 != 0))) && (((( !(p8_l0 != 0)) && ( !(p8_l1 != 0))) || ((p8_l0 != 0) && ( !(p8_l1 != 0)))) || (((p8_l1 != 0) && ( !(p8_l0 != 0))) || ((p8_l0 != 0) && (p8_l1 != 0))))) && (((( !(p7_l0 != 0)) && ( !(p7_l1 != 0))) && (((( !(p7_l0 != 0)) && ( !(p7_l1 != 0))) || ((p7_l0 != 0) && ( !(p7_l1 != 0)))) || (((p7_l1 != 0) && ( !(p7_l0 != 0))) || ((p7_l0 != 0) && (p7_l1 != 0))))) && (((( !(p6_l0 != 0)) && ( !(p6_l1 != 0))) && (((( !(p6_l0 != 0)) && ( !(p6_l1 != 0))) || ((p6_l0 != 0) && ( !(p6_l1 != 0)))) || (((p6_l1 != 0) && ( !(p6_l0 != 0))) || ((p6_l0 != 0) && (p6_l1 != 0))))) && (((( !(p5_l0 != 0)) && ( !(p5_l1 != 0))) && (((( !(p5_l0 != 0)) && ( !(p5_l1 != 0))) || ((p5_l0 != 0) && ( !(p5_l1 != 0)))) || (((p5_l1 != 0) && ( !(p5_l0 != 0))) || ((p5_l0 != 0) && (p5_l1 != 0))))) && (((( !(p4_l0 != 0)) && ( !(p4_l1 != 0))) && (((( !(p4_l0 != 0)) && ( !(p4_l1 != 0))) || ((p4_l0 != 0) && ( !(p4_l1 != 0)))) || (((p4_l1 != 0) && ( !(p4_l0 != 0))) || ((p4_l0 != 0) && (p4_l1 != 0))))) && (((( !(p3_l0 != 0)) && ( !(p3_l1 != 0))) && (((( !(p3_l0 != 0)) && ( !(p3_l1 != 0))) || ((p3_l0 != 0) && ( !(p3_l1 != 0)))) || (((p3_l1 != 0) && ( !(p3_l0 != 0))) || ((p3_l0 != 0) && (p3_l1 != 0))))) && (((( !(p2_l0 != 0)) && ( !(p2_l1 != 0))) && (((( !(p2_l0 != 0)) && ( !(p2_l1 != 0))) || ((p2_l0 != 0) && ( !(p2_l1 != 0)))) || (((p2_l1 != 0) && ( !(p2_l0 != 0))) || ((p2_l0 != 0) && (p2_l1 != 0))))) && (((( !(p1_l0 != 0)) && ( !(p1_l1 != 0))) && (((( !(p1_l0 != 0)) && ( !(p1_l1 != 0))) || ((p1_l0 != 0) && ( !(p1_l1 != 0)))) || (((p1_l1 != 0) && ( !(p1_l0 != 0))) || ((p1_l0 != 0) && (p1_l1 != 0))))) && (((( !(p0_l0 != 0)) && ( !(p0_l1 != 0))) && (((( !(p0_l0 != 0)) && ( !(p0_l1 != 0))) || ((p0_l0 != 0) && ( !(p0_l1 != 0)))) || (((p0_l1 != 0) && ( !(p0_l0 != 0))) || ((p0_l0 != 0) && (p0_l1 != 0))))) && (((((((((((((((((((((((((((((((num0 == 0) && (num1 == 0)) && (num2 == 0)) && (num3 == 0)) && (num4 == 0)) && (num5 == 0)) && (num6 == 0)) && (num7 == 0)) && (num8 == 0)) && (((run3 != 0) && (( !(run2 != 0)) && (( !(run0 != 0)) && ( !(run1 != 0))))) || ((( !(run3 != 0)) && ((run2 != 0) && ((run0 != 0) && (run1 != 0)))) || ((( !(run3 != 0)) && ((run2 != 0) && ((run1 != 0) && ( !(run0 != 0))))) || ((( !(run3 != 0)) && ((run2 != 0) && ((run0 != 0) && ( !(run1 != 0))))) || ((( !(run3 != 0)) && ((run2 != 0) && (( !(run0 != 0)) && ( !(run1 != 0))))) || ((( !(run3 != 0)) && (( !(run2 != 0)) && ((run0 != 0) && (run1 != 0)))) || ((( !(run3 != 0)) && (( !(run2 != 0)) && ((run1 != 0) && ( !(run0 != 0))))) || ((( !(run3 != 0)) && (( !(run2 != 0)) && (( !(run0 != 0)) && ( !(run1 != 0))))) || (( !(run3 != 0)) && (( !(run2 != 0)) && ((run0 != 0) && ( !(run1 != 0)))))))))))))) && (num0 <= max_num)) && (num1 <= max_num)) && (num2 <= max_num)) && (num3 <= max_num)) && (num4 <= max_num)) && (num5 <= max_num)) && (num6 <= max_num)) && (num7 <= max_num)) && (num8 <= max_num)) && (((((((((num0 == max_num) || (num1 == max_num)) || (num2 == max_num)) || (num3 == max_num)) || (num4 == max_num)) || (num5 == max_num)) || (num6 == max_num)) || (num7 == max_num)) || (num8 == max_num))) && ((((((((((num0 == 0) && (num1 == 0)) && (num2 == 0)) && (num3 == 0)) && (num4 == 0)) && (num5 == 0)) && (num6 == 0)) && (num7 == 0)) && (num8 == 0)) == (min_num == 0))) && ((num0 <= 0) || (min_num <= num0))) && ((num1 <= 0) || (min_num <= num1))) && ((num2 <= 0) || (min_num <= num2))) && ((num3 <= 0) || (min_num <= num3))) && ((num4 <= 0) || (min_num <= num4))) && ((num5 <= 0) || (min_num <= num5))) && ((num6 <= 0) || (min_num <= num6))) && ((num7 <= 0) || (min_num <= num7))) && ((num8 <= 0) || (min_num <= num8))) && (((num7 == min_num) || ((num6 == min_num) || ((num5 == min_num) || ((num4 == min_num) || ((num3 == min_num) || ((num2 == min_num) || ((num0 == min_num) || (num1 == min_num)))))))) || (num8 == min_num)))))))))))); while (__ok) { _x_p7_l1 = __VERIFIER_nondet_bool(); _x_p7_l0 = __VERIFIER_nondet_bool(); _x_num6 = __VERIFIER_nondet_int(); _x_num5 = __VERIFIER_nondet_int(); _x_num4 = __VERIFIER_nondet_int(); _x_num3 = __VERIFIER_nondet_int(); _x_p3_l1 = __VERIFIER_nondet_bool(); _x_num2 = __VERIFIER_nondet_int(); _x_p3_l0 = __VERIFIER_nondet_bool(); _x_p8_l1 = __VERIFIER_nondet_bool(); _x_num1 = __VERIFIER_nondet_int(); _x_p2_l1 = __VERIFIER_nondet_bool(); _x_run3 = __VERIFIER_nondet_bool(); _x_p8_l0 = __VERIFIER_nondet_bool(); _x_num0 = __VERIFIER_nondet_int(); _x_p1_l1 = __VERIFIER_nondet_bool(); _x_p2_l0 = __VERIFIER_nondet_bool(); _x_run2 = __VERIFIER_nondet_bool(); _x_p1_l0 = __VERIFIER_nondet_bool(); _x_run1 = __VERIFIER_nondet_bool(); _x_p0_l1 = __VERIFIER_nondet_bool(); _x_p6_l1 = __VERIFIER_nondet_bool(); _x_run0 = __VERIFIER_nondet_bool(); _x_p0_l0 = __VERIFIER_nondet_bool(); _x_p6_l0 = __VERIFIER_nondet_bool(); _x_max_num = __VERIFIER_nondet_int(); _x_min_num = __VERIFIER_nondet_int(); _x_num7 = __VERIFIER_nondet_int(); _x_num8 = __VERIFIER_nondet_int(); _x_p4_l0 = __VERIFIER_nondet_bool(); _x_p4_l1 = __VERIFIER_nondet_bool(); _x_p5_l0 = __VERIFIER_nondet_bool(); _x_p5_l1 = __VERIFIER_nondet_bool(); __ok = ((((((((((( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0))) || ((_x_p8_l0 != 0) && ( !(_x_p8_l1 != 0)))) || (((_x_p8_l1 != 0) && ( !(_x_p8_l0 != 0))) || ((_x_p8_l0 != 0) && (_x_p8_l1 != 0)))) && (((run3 != 0) && (( !(run2 != 0)) && (( !(run0 != 0)) && ( !(run1 != 0))))) || ((((p8_l0 != 0) == (_x_p8_l0 != 0)) && ((p8_l1 != 0) == (_x_p8_l1 != 0))) && (num8 == _x_num8)))) && ((((_x_p8_l0 != 0) && ( !(_x_p8_l1 != 0))) && ((_x_num8 + (-1 * max_num)) == 1)) || ( !(((run3 != 0) && (( !(run2 != 0)) && (( !(run0 != 0)) && ( !(run1 != 0))))) && (( !(p8_l0 != 0)) && ( !(p8_l1 != 0))))))) && (((num8 == _x_num8) && (((_x_p8_l0 != 0) && ( !(_x_p8_l1 != 0))) || ((_x_p8_l1 != 0) && ( !(_x_p8_l0 != 0))))) || ( !(((run3 != 0) && (( !(run2 != 0)) && (( !(run0 != 0)) && ( !(run1 != 0))))) && ((p8_l0 != 0) && ( !(p8_l1 != 0))))))) && (( !(((run3 != 0) && (( !(run2 != 0)) && (( !(run0 != 0)) && ( !(run1 != 0))))) && ((p8_l0 != 0) && ( !(p8_l1 != 0))))) || (((_x_p8_l1 != 0) && ( !(_x_p8_l0 != 0))) == ((( !(num6 == min_num)) && (( !(num5 == min_num)) && (( !(num4 == min_num)) && (( !(num3 == min_num)) && (( !(num2 == min_num)) && (( !(num1 == min_num)) && (( !(num0 == min_num)) && (num8 <= min_num)))))))) && ( !(num7 == min_num)))))) && (((num8 == _x_num8) && (((_x_p8_l1 != 0) && ( !(_x_p8_l0 != 0))) || ((_x_p8_l0 != 0) && (_x_p8_l1 != 0)))) || ( !(((run3 != 0) && (( !(run2 != 0)) && (( !(run0 != 0)) && ( !(run1 != 0))))) && ((p8_l1 != 0) && ( !(p8_l0 != 0))))))) && (((( !(_x_p8_l0 != 0)) && ( !(_x_p8_l1 != 0))) && (num8 == _x_num8)) || ( !(((run3 != 0) && (( !(run2 != 0)) && (( !(run0 != 0)) && ( !(run1 != 0))))) && ((p8_l0 != 0) && (p8_l1 != 0)))))) && ((((((((((( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0))) || ((_x_p7_l0 != 0) && ( !(_x_p7_l1 != 0)))) || (((_x_p7_l1 != 0) && ( !(_x_p7_l0 != 0))) || ((_x_p7_l0 != 0) && (_x_p7_l1 != 0)))) && ((( !(run3 != 0)) && ((run2 != 0) && ((run0 != 0) && (run1 != 0)))) || ((((p7_l0 != 0) == (_x_p7_l0 != 0)) && ((p7_l1 != 0) == (_x_p7_l1 != 0))) && (num7 == _x_num7)))) && ((((_x_p7_l0 != 0) && ( !(_x_p7_l1 != 0))) && ((_x_num7 + (-1 * max_num)) == 1)) || ( !((( !(run3 != 0)) && ((run2 != 0) && ((run0 != 0) && (run1 != 0)))) && (( !(p7_l0 != 0)) && ( !(p7_l1 != 0))))))) && (((num7 == _x_num7) && (((_x_p7_l0 != 0) && ( !(_x_p7_l1 != 0))) || ((_x_p7_l1 != 0) && ( !(_x_p7_l0 != 0))))) || ( !((( !(run3 != 0)) && ((run2 != 0) && ((run0 != 0) && (run1 != 0)))) && ((p7_l0 != 0) && ( !(p7_l1 != 0))))))) && (( !((( !(run3 != 0)) && ((run2 != 0) && ((run0 != 0) && (run1 != 0)))) && ((p7_l0 != 0) && ( !(p7_l1 != 0))))) || (((_x_p7_l1 != 0) && ( !(_x_p7_l0 != 0))) == ((( !(num5 == min_num)) && (( !(num4 == min_num)) && (( !(num3 == min_num)) && (( !(num2 == min_num)) && (( !(num1 == min_num)) && (( !(num0 == min_num)) && (num7 <= min_num))))))) && ( !(num6 == min_num)))))) && (((num7 == _x_num7) && (((_x_p7_l1 != 0) && ( !(_x_p7_l0 != 0))) || ((_x_p7_l0 != 0) && (_x_p7_l1 != 0)))) || ( !((( !(run3 != 0)) && ((run2 != 0) && ((run0 != 0) && (run1 != 0)))) && ((p7_l1 != 0) && ( !(p7_l0 != 0))))))) && (((( !(_x_p7_l0 != 0)) && ( !(_x_p7_l1 != 0))) && (num7 == _x_num7)) || ( !((( !(run3 != 0)) && ((run2 != 0) && ((run0 != 0) && (run1 != 0)))) && ((p7_l0 != 0) && (p7_l1 != 0)))))) && ((((((((((( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0))) || ((_x_p6_l0 != 0) && ( !(_x_p6_l1 != 0)))) || (((_x_p6_l1 != 0) && ( !(_x_p6_l0 != 0))) || ((_x_p6_l0 != 0) && (_x_p6_l1 != 0)))) && ((( !(run3 != 0)) && ((run2 != 0) && ((run1 != 0) && ( !(run0 != 0))))) || ((((p6_l0 != 0) == (_x_p6_l0 != 0)) && ((p6_l1 != 0) == (_x_p6_l1 != 0))) && (num6 == _x_num6)))) && ((((_x_p6_l0 != 0) && ( !(_x_p6_l1 != 0))) && ((_x_num6 + (-1 * max_num)) == 1)) || ( !((( !(run3 != 0)) && ((run2 != 0) && ((run1 != 0) && ( !(run0 != 0))))) && (( !(p6_l0 != 0)) && ( !(p6_l1 != 0))))))) && (((num6 == _x_num6) && (((_x_p6_l0 != 0) && ( !(_x_p6_l1 != 0))) || ((_x_p6_l1 != 0) && ( !(_x_p6_l0 != 0))))) || ( !((( !(run3 != 0)) && ((run2 != 0) && ((run1 != 0) && ( !(run0 != 0))))) && ((p6_l0 != 0) && ( !(p6_l1 != 0))))))) && (( !((( !(run3 != 0)) && ((run2 != 0) && ((run1 != 0) && ( !(run0 != 0))))) && ((p6_l0 != 0) && ( !(p6_l1 != 0))))) || (((_x_p6_l1 != 0) && ( !(_x_p6_l0 != 0))) == ((( !(num4 == min_num)) && (( !(num3 == min_num)) && (( !(num2 == min_num)) && (( !(num1 == min_num)) && (( !(num0 == min_num)) && (num6 <= min_num)))))) && ( !(num5 == min_num)))))) && (((num6 == _x_num6) && (((_x_p6_l1 != 0) && ( !(_x_p6_l0 != 0))) || ((_x_p6_l0 != 0) && (_x_p6_l1 != 0)))) || ( !((( !(run3 != 0)) && ((run2 != 0) && ((run1 != 0) && ( !(run0 != 0))))) && ((p6_l1 != 0) && ( !(p6_l0 != 0))))))) && (((( !(_x_p6_l0 != 0)) && ( !(_x_p6_l1 != 0))) && (num6 == _x_num6)) || ( !((( !(run3 != 0)) && ((run2 != 0) && ((run1 != 0) && ( !(run0 != 0))))) && ((p6_l0 != 0) && (p6_l1 != 0)))))) && ((((((((((( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0))) || ((_x_p5_l0 != 0) && ( !(_x_p5_l1 != 0)))) || (((_x_p5_l1 != 0) && ( !(_x_p5_l0 != 0))) || ((_x_p5_l0 != 0) && (_x_p5_l1 != 0)))) && ((( !(run3 != 0)) && ((run2 != 0) && ((run0 != 0) && ( !(run1 != 0))))) || ((((p5_l0 != 0) == (_x_p5_l0 != 0)) && ((p5_l1 != 0) == (_x_p5_l1 != 0))) && (num5 == _x_num5)))) && ((((_x_p5_l0 != 0) && ( !(_x_p5_l1 != 0))) && ((_x_num5 + (-1 * max_num)) == 1)) || ( !((( !(run3 != 0)) && ((run2 != 0) && ((run0 != 0) && ( !(run1 != 0))))) && (( !(p5_l0 != 0)) && ( !(p5_l1 != 0))))))) && (((num5 == _x_num5) && (((_x_p5_l0 != 0) && ( !(_x_p5_l1 != 0))) || ((_x_p5_l1 != 0) && ( !(_x_p5_l0 != 0))))) || ( !((( !(run3 != 0)) && ((run2 != 0) && ((run0 != 0) && ( !(run1 != 0))))) && ((p5_l0 != 0) && ( !(p5_l1 != 0))))))) && (( !((( !(run3 != 0)) && ((run2 != 0) && ((run0 != 0) && ( !(run1 != 0))))) && ((p5_l0 != 0) && ( !(p5_l1 != 0))))) || (((_x_p5_l1 != 0) && ( !(_x_p5_l0 != 0))) == ((( !(num3 == min_num)) && (( !(num2 == min_num)) && (( !(num1 == min_num)) && (( !(num0 == min_num)) && (num5 <= min_num))))) && ( !(num4 == min_num)))))) && (((num5 == _x_num5) && (((_x_p5_l1 != 0) && ( !(_x_p5_l0 != 0))) || ((_x_p5_l0 != 0) && (_x_p5_l1 != 0)))) || ( !((( !(run3 != 0)) && ((run2 != 0) && ((run0 != 0) && ( !(run1 != 0))))) && ((p5_l1 != 0) && ( !(p5_l0 != 0))))))) && (((( !(_x_p5_l0 != 0)) && ( !(_x_p5_l1 != 0))) && (num5 == _x_num5)) || ( !((( !(run3 != 0)) && ((run2 != 0) && ((run0 != 0) && ( !(run1 != 0))))) && ((p5_l0 != 0) && (p5_l1 != 0)))))) && ((((((((((( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0))) || ((_x_p4_l0 != 0) && ( !(_x_p4_l1 != 0)))) || (((_x_p4_l1 != 0) && ( !(_x_p4_l0 != 0))) || ((_x_p4_l0 != 0) && (_x_p4_l1 != 0)))) && ((( !(run3 != 0)) && ((run2 != 0) && (( !(run0 != 0)) && ( !(run1 != 0))))) || ((((p4_l0 != 0) == (_x_p4_l0 != 0)) && ((p4_l1 != 0) == (_x_p4_l1 != 0))) && (num4 == _x_num4)))) && ((((_x_p4_l0 != 0) && ( !(_x_p4_l1 != 0))) && ((_x_num4 + (-1 * max_num)) == 1)) || ( !((( !(run3 != 0)) && ((run2 != 0) && (( !(run0 != 0)) && ( !(run1 != 0))))) && (( !(p4_l0 != 0)) && ( !(p4_l1 != 0))))))) && (((num4 == _x_num4) && (((_x_p4_l0 != 0) && ( !(_x_p4_l1 != 0))) || ((_x_p4_l1 != 0) && ( !(_x_p4_l0 != 0))))) || ( !((( !(run3 != 0)) && ((run2 != 0) && (( !(run0 != 0)) && ( !(run1 != 0))))) && ((p4_l0 != 0) && ( !(p4_l1 != 0))))))) && (( !((( !(run3 != 0)) && ((run2 != 0) && (( !(run0 != 0)) && ( !(run1 != 0))))) && ((p4_l0 != 0) && ( !(p4_l1 != 0))))) || (((_x_p4_l1 != 0) && ( !(_x_p4_l0 != 0))) == ((( !(num2 == min_num)) && (( !(num1 == min_num)) && (( !(num0 == min_num)) && (num4 <= min_num)))) && ( !(num3 == min_num)))))) && (((num4 == _x_num4) && (((_x_p4_l1 != 0) && ( !(_x_p4_l0 != 0))) || ((_x_p4_l0 != 0) && (_x_p4_l1 != 0)))) || ( !((( !(run3 != 0)) && ((run2 != 0) && (( !(run0 != 0)) && ( !(run1 != 0))))) && ((p4_l1 != 0) && ( !(p4_l0 != 0))))))) && (((( !(_x_p4_l0 != 0)) && ( !(_x_p4_l1 != 0))) && (num4 == _x_num4)) || ( !((( !(run3 != 0)) && ((run2 != 0) && (( !(run0 != 0)) && ( !(run1 != 0))))) && ((p4_l0 != 0) && (p4_l1 != 0)))))) && ((((((((((( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0))) || ((_x_p3_l0 != 0) && ( !(_x_p3_l1 != 0)))) || (((_x_p3_l1 != 0) && ( !(_x_p3_l0 != 0))) || ((_x_p3_l0 != 0) && (_x_p3_l1 != 0)))) && ((( !(run3 != 0)) && (( !(run2 != 0)) && ((run0 != 0) && (run1 != 0)))) || ((((p3_l0 != 0) == (_x_p3_l0 != 0)) && ((p3_l1 != 0) == (_x_p3_l1 != 0))) && (num3 == _x_num3)))) && ((((_x_p3_l0 != 0) && ( !(_x_p3_l1 != 0))) && ((_x_num3 + (-1 * max_num)) == 1)) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run0 != 0) && (run1 != 0)))) && (( !(p3_l0 != 0)) && ( !(p3_l1 != 0))))))) && (((num3 == _x_num3) && (((_x_p3_l0 != 0) && ( !(_x_p3_l1 != 0))) || ((_x_p3_l1 != 0) && ( !(_x_p3_l0 != 0))))) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run0 != 0) && (run1 != 0)))) && ((p3_l0 != 0) && ( !(p3_l1 != 0))))))) && (( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run0 != 0) && (run1 != 0)))) && ((p3_l0 != 0) && ( !(p3_l1 != 0))))) || (((_x_p3_l1 != 0) && ( !(_x_p3_l0 != 0))) == ((( !(num1 == min_num)) && (( !(num0 == min_num)) && (num3 <= min_num))) && ( !(num2 == min_num)))))) && (((num3 == _x_num3) && (((_x_p3_l1 != 0) && ( !(_x_p3_l0 != 0))) || ((_x_p3_l0 != 0) && (_x_p3_l1 != 0)))) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run0 != 0) && (run1 != 0)))) && ((p3_l1 != 0) && ( !(p3_l0 != 0))))))) && (((( !(_x_p3_l0 != 0)) && ( !(_x_p3_l1 != 0))) && (num3 == _x_num3)) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run0 != 0) && (run1 != 0)))) && ((p3_l0 != 0) && (p3_l1 != 0)))))) && ((((((((((( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0))) || ((_x_p2_l0 != 0) && ( !(_x_p2_l1 != 0)))) || (((_x_p2_l1 != 0) && ( !(_x_p2_l0 != 0))) || ((_x_p2_l0 != 0) && (_x_p2_l1 != 0)))) && ((( !(run3 != 0)) && (( !(run2 != 0)) && ((run1 != 0) && ( !(run0 != 0))))) || ((((p2_l0 != 0) == (_x_p2_l0 != 0)) && ((p2_l1 != 0) == (_x_p2_l1 != 0))) && (num2 == _x_num2)))) && ((((_x_p2_l0 != 0) && ( !(_x_p2_l1 != 0))) && ((_x_num2 + (-1 * max_num)) == 1)) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run1 != 0) && ( !(run0 != 0))))) && (( !(p2_l0 != 0)) && ( !(p2_l1 != 0))))))) && (((num2 == _x_num2) && (((_x_p2_l0 != 0) && ( !(_x_p2_l1 != 0))) || ((_x_p2_l1 != 0) && ( !(_x_p2_l0 != 0))))) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run1 != 0) && ( !(run0 != 0))))) && ((p2_l0 != 0) && ( !(p2_l1 != 0))))))) && (( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run1 != 0) && ( !(run0 != 0))))) && ((p2_l0 != 0) && ( !(p2_l1 != 0))))) || (((_x_p2_l1 != 0) && ( !(_x_p2_l0 != 0))) == ((( !(num0 == min_num)) && (num2 <= min_num)) && ( !(num1 == min_num)))))) && (((num2 == _x_num2) && (((_x_p2_l1 != 0) && ( !(_x_p2_l0 != 0))) || ((_x_p2_l0 != 0) && (_x_p2_l1 != 0)))) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run1 != 0) && ( !(run0 != 0))))) && ((p2_l1 != 0) && ( !(p2_l0 != 0))))))) && (((( !(_x_p2_l0 != 0)) && ( !(_x_p2_l1 != 0))) && (num2 == _x_num2)) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run1 != 0) && ( !(run0 != 0))))) && ((p2_l0 != 0) && (p2_l1 != 0)))))) && ((((((((((( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0))) || ((_x_p1_l0 != 0) && ( !(_x_p1_l1 != 0)))) || (((_x_p1_l1 != 0) && ( !(_x_p1_l0 != 0))) || ((_x_p1_l0 != 0) && (_x_p1_l1 != 0)))) && ((( !(run3 != 0)) && (( !(run2 != 0)) && ((run0 != 0) && ( !(run1 != 0))))) || ((((p1_l0 != 0) == (_x_p1_l0 != 0)) && ((p1_l1 != 0) == (_x_p1_l1 != 0))) && (num1 == _x_num1)))) && ((((_x_p1_l0 != 0) && ( !(_x_p1_l1 != 0))) && ((_x_num1 + (-1 * max_num)) == 1)) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run0 != 0) && ( !(run1 != 0))))) && (( !(p1_l0 != 0)) && ( !(p1_l1 != 0))))))) && (((num1 == _x_num1) && (((_x_p1_l0 != 0) && ( !(_x_p1_l1 != 0))) || ((_x_p1_l1 != 0) && ( !(_x_p1_l0 != 0))))) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run0 != 0) && ( !(run1 != 0))))) && ((p1_l0 != 0) && ( !(p1_l1 != 0))))))) && (( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run0 != 0) && ( !(run1 != 0))))) && ((p1_l0 != 0) && ( !(p1_l1 != 0))))) || (((_x_p1_l1 != 0) && ( !(_x_p1_l0 != 0))) == ((num1 <= min_num) && ( !(num0 == min_num)))))) && (((num1 == _x_num1) && (((_x_p1_l1 != 0) && ( !(_x_p1_l0 != 0))) || ((_x_p1_l0 != 0) && (_x_p1_l1 != 0)))) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run0 != 0) && ( !(run1 != 0))))) && ((p1_l1 != 0) && ( !(p1_l0 != 0))))))) && (((( !(_x_p1_l0 != 0)) && ( !(_x_p1_l1 != 0))) && (num1 == _x_num1)) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && ((run0 != 0) && ( !(run1 != 0))))) && ((p1_l0 != 0) && (p1_l1 != 0)))))) && ((((((((((( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0))) || ((_x_p0_l0 != 0) && ( !(_x_p0_l1 != 0)))) || (((_x_p0_l1 != 0) && ( !(_x_p0_l0 != 0))) || ((_x_p0_l0 != 0) && (_x_p0_l1 != 0)))) && ((( !(run3 != 0)) && (( !(run2 != 0)) && (( !(run0 != 0)) && ( !(run1 != 0))))) || ((((p0_l0 != 0) == (_x_p0_l0 != 0)) && ((p0_l1 != 0) == (_x_p0_l1 != 0))) && (num0 == _x_num0)))) && ((((_x_p0_l0 != 0) && ( !(_x_p0_l1 != 0))) && ((_x_num0 + (-1 * max_num)) == 1)) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && (( !(run0 != 0)) && ( !(run1 != 0))))) && (( !(p0_l0 != 0)) && ( !(p0_l1 != 0))))))) && (((num0 == _x_num0) && (((_x_p0_l0 != 0) && ( !(_x_p0_l1 != 0))) || ((_x_p0_l1 != 0) && ( !(_x_p0_l0 != 0))))) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && (( !(run0 != 0)) && ( !(run1 != 0))))) && ((p0_l0 != 0) && ( !(p0_l1 != 0))))))) && (( !((( !(run3 != 0)) && (( !(run2 != 0)) && (( !(run0 != 0)) && ( !(run1 != 0))))) && ((p0_l0 != 0) && ( !(p0_l1 != 0))))) || (((_x_p0_l1 != 0) && ( !(_x_p0_l0 != 0))) == (num0 <= min_num)))) && (((num0 == _x_num0) && (((_x_p0_l1 != 0) && ( !(_x_p0_l0 != 0))) || ((_x_p0_l0 != 0) && (_x_p0_l1 != 0)))) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && (( !(run0 != 0)) && ( !(run1 != 0))))) && ((p0_l1 != 0) && ( !(p0_l0 != 0))))))) && (((( !(_x_p0_l0 != 0)) && ( !(_x_p0_l1 != 0))) && (num0 == _x_num0)) || ( !((( !(run3 != 0)) && (( !(run2 != 0)) && (( !(run0 != 0)) && ( !(run1 != 0))))) && ((p0_l0 != 0) && (p0_l1 != 0)))))) && ((((((((((((((((((((((((_x_run3 != 0) && (( !(_x_run2 != 0)) && (( !(_x_run0 != 0)) && ( !(_x_run1 != 0))))) || ((( !(_x_run3 != 0)) && ((_x_run2 != 0) && ((_x_run0 != 0) && (_x_run1 != 0)))) || ((( !(_x_run3 != 0)) && ((_x_run2 != 0) && ((_x_run1 != 0) && ( !(_x_run0 != 0))))) || ((( !(_x_run3 != 0)) && ((_x_run2 != 0) && ((_x_run0 != 0) && ( !(_x_run1 != 0))))) || ((( !(_x_run3 != 0)) && ((_x_run2 != 0) && (( !(_x_run0 != 0)) && ( !(_x_run1 != 0))))) || ((( !(_x_run3 != 0)) && (( !(_x_run2 != 0)) && ((_x_run0 != 0) && (_x_run1 != 0)))) || ((( !(_x_run3 != 0)) && (( !(_x_run2 != 0)) && ((_x_run1 != 0) && ( !(_x_run0 != 0))))) || ((( !(_x_run3 != 0)) && (( !(_x_run2 != 0)) && (( !(_x_run0 != 0)) && ( !(_x_run1 != 0))))) || (( !(_x_run3 != 0)) && (( !(_x_run2 != 0)) && ((_x_run0 != 0) && ( !(_x_run1 != 0))))))))))))) && (_x_num0 <= _x_max_num)) && (_x_num1 <= _x_max_num)) && (_x_num2 <= _x_max_num)) && (_x_num3 <= _x_max_num)) && (_x_num4 <= _x_max_num)) && (_x_num5 <= _x_max_num)) && (_x_num6 <= _x_max_num)) && (_x_num7 <= _x_max_num)) && (_x_num8 <= _x_max_num)) && (((((((((_x_num0 == _x_max_num) || (_x_num1 == _x_max_num)) || (_x_num2 == _x_max_num)) || (_x_num3 == _x_max_num)) || (_x_num4 == _x_max_num)) || (_x_num5 == _x_max_num)) || (_x_num6 == _x_max_num)) || (_x_num7 == _x_max_num)) || (_x_num8 == _x_max_num))) && ((((((((((_x_num0 == 0) && (_x_num1 == 0)) && (_x_num2 == 0)) && (_x_num3 == 0)) && (_x_num4 == 0)) && (_x_num5 == 0)) && (_x_num6 == 0)) && (_x_num7 == 0)) && (_x_num8 == 0)) == (_x_min_num == 0))) && ((_x_num0 <= 0) || (_x_min_num <= _x_num0))) && ((_x_num1 <= 0) || (_x_min_num <= _x_num1))) && ((_x_num2 <= 0) || (_x_min_num <= _x_num2))) && ((_x_num3 <= 0) || (_x_min_num <= _x_num3))) && ((_x_num4 <= 0) || (_x_min_num <= _x_num4))) && ((_x_num5 <= 0) || (_x_min_num <= _x_num5))) && ((_x_num6 <= 0) || (_x_min_num <= _x_num6))) && ((_x_num7 <= 0) || (_x_min_num <= _x_num7))) && ((_x_num8 <= 0) || (_x_min_num <= _x_num8))) && (((((((((_x_num0 == _x_min_num) || (_x_num1 == _x_min_num)) || (_x_num2 == _x_min_num)) || (_x_num3 == _x_min_num)) || (_x_num4 == _x_min_num)) || (_x_num5 == _x_min_num)) || (_x_num6 == _x_min_num)) || (_x_num7 == _x_min_num)) || (_x_num8 == _x_min_num)))))))))))); p7_l1 = _x_p7_l1; p7_l0 = _x_p7_l0; num6 = _x_num6; num5 = _x_num5; num4 = _x_num4; num3 = _x_num3; p3_l1 = _x_p3_l1; num2 = _x_num2; p3_l0 = _x_p3_l0; p8_l1 = _x_p8_l1; num1 = _x_num1; p2_l1 = _x_p2_l1; run3 = _x_run3; p8_l0 = _x_p8_l0; num0 = _x_num0; p1_l1 = _x_p1_l1; p2_l0 = _x_p2_l0; run2 = _x_run2; p1_l0 = _x_p1_l0; run1 = _x_run1; p0_l1 = _x_p0_l1; p6_l1 = _x_p6_l1; run0 = _x_run0; p0_l0 = _x_p0_l0; p6_l0 = _x_p6_l0; max_num = _x_max_num; min_num = _x_min_num; num7 = _x_num7; num8 = _x_num8; p4_l0 = _x_p4_l0; p4_l1 = _x_p4_l1; p5_l0 = _x_p5_l0; p5_l1 = _x_p5_l1; } }
the_stack_data/7950198.c
/* * Considerando a função que determina se um número é ou não primo, escreva um programa para: * * (a) Imprimir todos os números primos menores que um valor x, fornecido via * teclado. * * (b) Imprimir os primeiros n números primos, onde n é fornecido via teclado. */ #include <stdio.h> #include <math.h> static int primo(int n) { if (2 == n) { return 1; } if (n < 2 || !(n % 2)) { return 0; } int r = sqrt(n); for (int i = 3; i <= r; i += 2) { if (!(n % i)) { return 0; } } return 1; } void a(void) { while (1) { int x; printf("x: "); scanf("%d", &x); for (int i = 2; i < x; i++) { if (primo(i)) { printf("%d ", i); } } puts(""); } } void b(void) { while (1) { int n; printf("n: "); scanf("%d", &n); for (int i = 2; n; i++) { if (primo(i)) { printf("%d ", i); n--; } } puts(""); } } int main(void) { //a(); b(); return 0; }
the_stack_data/190767700.c
#include <stdio.h> #include <stdlib.h> #define w(x) // printf(#x " = %d\n", (x)) typedef struct Subject { int deadline, penalty; } Subject; Subject subjects[1001]; int cmp (const void *a, const void *b) { return ((Subject *)b)->penalty - ((Subject *)a)->penalty; // 降序 } int main() { int t; scanf("%d", &t); while (t--) { int total_penalty = 0; char is_arranged[1001] = {0}; int n; scanf("%d", &n); for (int i = 0; i < n; ++i) scanf("%d", &subjects[i].deadline); for (int i = 0; i < n; ++i) scanf("%d", &subjects[i].penalty); qsort(subjects, n, sizeof(Subject), cmp); for (int i = 0; i < n; ++i) { int deadline = subjects[i].deadline; int penalty = subjects[i].penalty; w(penalty); w(deadline); char flag = 0; for (int j = deadline; j > 0; --j) { if (!is_arranged[j-1]) { is_arranged[j-1] = 1; flag = 1; break; } } if (!flag) total_penalty += penalty; } printf("%d\n", total_penalty); } }
the_stack_data/21565.c
#include <stdio.h> #include <stdbool.h> typedef int grid_t[9][9]; void print_sudoku(grid_t grid) { for (int y = 0; y < 9; y++) { for (int x = 0; x < 9; x++) { printf("%d ", grid[y][x]); if (x % 3 == 2) { printf("| "); } } printf("\n"); if (y % 3 == 2) { printf("----------------------\n"); } } } bool not_on_line(grid_t grid, int value, int y) { for (int i = 0; i < 9; i++) { if (grid[y][i] == value) { return false; } } return true; } bool not_on_column(grid_t grid, int value, int x) { for (int i = 0; i < 9; i++) { if (grid[i][x] == value) { return false; } } return true; } bool not_on_square(grid_t grid, int value, int x, int y) { int _x = x - (x % 3); int _y = y - (y % 3); for (int i = _y; i < _y + 3; i++) { for (int j = _x; j < _x + 3; j++) { if (grid[i][j] == value) { return false; } } } return true; } bool is_valid(grid_t grid, int position) { if (position == 9*9) return true; int y = position / 9; int x = position % 9; if (grid[y][x] != 0) return is_valid(grid, position + 1); for (int i = 1; i <= 9; i++) { if (not_on_line(grid, i, y) && not_on_column(grid, i, x) && not_on_square(grid, i, x, y)) { grid[y][x] = i; if (is_valid(grid, position + 1)) return true; } } grid[y][x] = 0; return false; } int main(int argc, char** argv) { int sudoku[9][9] = { {9, 0, 0, 1, 0, 0, 0, 0, 5}, {0, 0, 5, 0, 9, 0, 2, 0, 1}, {8, 0, 0, 0, 4, 0, 0, 0, 0}, {0, 0, 0, 0, 8, 0, 0, 0, 0}, {0, 0, 0, 7, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 2, 6, 0, 0, 9}, {2, 0, 0, 3, 0, 0, 0, 0, 6}, {0, 0, 0, 2, 0, 0, 9, 0, 0}, {0, 0, 1, 9, 0, 4, 5, 7, 0} }; print_sudoku(sudoku); is_valid(sudoku, 0); printf("\n\n"); print_sudoku(sudoku); return 0; }
the_stack_data/148577403.c
#include <stdio.h> #include <stdlib.h> #include <omp.h> #define M 1024 #define N 1024 void rellenarMatriz(float *A, float *B){ for(int i=0;i<(M*N);++i){ *(A+i)=(float)(rand()%20); *(B+i)=(float)(rand()%50); } } void mostrarMatriz(float *A){ for(int i=0;i<(M*N);++i){ printf("%f", *(A+i)); if((i+1)%N==0) printf("\n"); else printf(" ,"); } } void multiplicarMatriz(float *A, float *B, float *C){ if(M!=N){ printf("\nLas matrices no se pueden multiplicar...\n"); C=NULL; return; } int tam = N; //omp_set_nested(1); #pragma omp parallel for for(int i=0;i<M;++i){ //#pragma omp parallel for for(int j=0;j<N;++j){ float res=0; for(int k=0; k<tam;++k){ res+=(*(A+(i*M)+k))*(*(B+(M*k)+j)); } *(C+(i*M)+j)=res; } } } int main() { int memsize = sizeof(float)*M*N; float *A = (float *)malloc(memsize); float *B = (float *)malloc(memsize); float *C = (float *)malloc(memsize); double start; printf("\nDamos valor a las matrices...\n"); rellenarMatriz(A, B); //printf("\nMatriz A: \n"); //mostrarMatriz(A); //printf("\nMatriz B: \n"); //mostrarMatriz(B); start = omp_get_wtime(); multiplicarMatriz(A,B,C); printf("\nTiempo de ejecucion para el computo de la matriz: %lfs", omp_get_wtime()-start); //printf("\nResultado matriz C:\n"); //mostrarMatriz(C); printf("\n\n\n"); }
the_stack_data/234519303.c
// File: '.\fa-solid-900.ttf' (204528 bytes) // Exported using binary_to_compressed_c.cpp const unsigned int font_awesome_compressed_size = 144852; const unsigned int font_awesome_compressed_data[144852/4] = { 0x0000bc57, 0x00000000, 0xf01e0300, 0x00000400, 0x00010037, 0x000d0000, 0x00030080, 0x54464650, 0xc834934d, 0x1e030024, 0x281582d4, 0x4544471c, 0x032a0046, 0x200f82f2, 0x2c0f82b4, 0x2f534f1e, 0x56873332, 0x01000060, 0x360f8258, 0x616d6360, 0xfe6af170, 0x11000034, 0x0c000068, 0x736167ce, 0x82ffff70, 0x1e032249, 0x381f82ac, 0x796c6708, 0x0eb46866, 0x2d000092, 0xba0200ec, 0x61656864, 0x8f341b64, 0x201b826c, 0x210382dc, 0x10826836, 0x06430423, 0x204f822d, 0x280f8214, 0x746d6824, 0x0351c478, 0x300f820b, 0x0f0000b8, 0x636f6cb0, 0x16100561, 0x1e0000e8, 0x270f8238, 0x78616db4, 0x014e0470, 0x0f827f83, 0x20002108, 0x656d616e, 0x1e2fb023, 0x50e80200, 0x2b050000, 0x74736f70, 0x6146f002, 0x7ced0200, 0x2e310000, 0x012fdb83, 0x47a1854b, 0x5fd54000, 0x00f53c0f, 0x8300020b, 0x24dc2300, 0x0786a2e4, 0xecffaa28, 0x9502b4ff, 0x0f82cd01, 0x02000822, 0x09823183, 0x0000012c, 0xc0ffc001, 0x80020000, 0x0582ecff, 0x17869520, 0x02851a82, 0x83ec0321, 0xec032511, 0x20005d01, 0x02211184, 0x84328200, 0x82402025, 0x26028309, 0x03fb0104, 0x82050084, 0x014c2216, 0x21108266, 0x07850147, 0x1900f525, 0x82008400, 0x0305216a, 0x02921582, 0x45665029, 0xe0800064, 0x84fff805, 0x012e2483, 0x825400cc, 0x82012026, 0x01002403, 0x82a5013a, 0x00202407, 0x86000201, 0x83aa2000, 0x2003824b, 0x20038680, 0x20078200, 0x82038200, 0x83022087, 0x00402213, 0x83078420, 0x2223880b, 0x8b02fdff, 0x82278523, 0x000022ed, 0x830b8201, 0x00022303, 0x03820f00, 0x03830020, 0x00c00127, 0xff80020d, 0x20478cfb, 0x22638200, 0x83faff80, 0x201f8213, 0x21038300, 0x23820002, 0x03841783, 0x02feff25, 0x850f0040, 0x882b8217, 0x210b8517, 0x138c6001, 0x47820720, 0x00021826, 0x40021000, 0x08241784, 0xfcff4002, 0x0022a388, 0x8b8a0700, 0x0b820020, 0x97840820, 0x0120eb82, 0x678cbb86, 0x93841382, 0x378b0782, 0x00800124, 0x5f830112, 0x1f840382, 0xef82c020, 0x5384038a, 0x02200f86, 0x00218785, 0x20438501, 0x85af8408, 0x8c402037, 0x822f8753, 0x243f868b, 0xffc00140, 0x206782f8, 0x8603831b, 0x8faf83ab, 0x83002003, 0x20878a1b, 0x200b8205, 0x87838b05, 0x2013821b, 0x25478613, 0xff400200, 0xaf4101fe, 0x200f820a, 0x200382f9, 0x272b83ff, 0x00000002, 0xffff0002, 0x4f854386, 0x03008023, 0x88cb8602, 0x83002007, 0x22038227, 0x83fbff80, 0x2017823b, 0x8553880f, 0x82fd2043, 0x88fd2047, 0x062f417f, 0x4b843f84, 0x41feff21, 0x8b820803, 0x03820120, 0x0121e78f, 0x0bdf41f0, 0x2006cb41, 0x0aa34200, 0x01233382, 0x8af5ffc0, 0x8b0020ff, 0x8802200b, 0x05a34187, 0xe7420f85, 0x40012309, 0x03830700, 0x00c00023, 0x20038217, 0x23f38400, 0x010d0040, 0x2f880386, 0x3f820020, 0x21080b43, 0x6384ffff, 0x538d6020, 0x83c00121, 0xfaff2157, 0x4f430785, 0x209b8e09, 0x210f8218, 0x4b820118, 0x00230384, 0x83011800, 0x200f8603, 0x84638602, 0x063b4233, 0x0822838a, 0x7382f001, 0x02200386, 0xe742fb82, 0x220b8308, 0x85fbff80, 0x0527410f, 0x4f410120, 0x82002005, 0x00182107, 0x03829b82, 0x00021022, 0x820a4f41, 0x6001215f, 0x0121b389, 0x05f341c0, 0x420f8341, 0x8b410717, 0x82082006, 0x42c38347, 0x00200f77, 0x9f847b83, 0x2006cb42, 0x86078301, 0x200123d7, 0xef84fdff, 0x13008023, 0x83b78601, 0x23038407, 0x01feffc0, 0x02230382, 0x83feff00, 0x850b8303, 0x0543410f, 0x00000123, 0x079b4105, 0x00000223, 0x14c3431b, 0x8f41ff84, 0x44102008, 0x00200863, 0x01201385, 0x00201f83, 0x20051741, 0x08134202, 0x0123ef85, 0x84fcff80, 0x842382ab, 0x41079a8f, 0x4744061b, 0x82082007, 0x8210200f, 0x4320203b, 0x5f840cf3, 0x1b830020, 0x17840020, 0x420a6743, 0x00200c23, 0x27892384, 0xef85c020, 0x45200221, 0x40200a57, 0x840d8f45, 0x4213833f, 0x02210a27, 0x25c78580, 0xffff0002, 0xef822001, 0x07886f82, 0xef41e020, 0x821b870e, 0x82238417, 0x4302202f, 0x4341074f, 0x08c3420a, 0x4f411386, 0x82012007, 0x83012077, 0x8303832f, 0x41b3870b, 0xfb841233, 0xe343c020, 0x063b4406, 0x2006db41, 0x204f84fd, 0x83ff8200, 0x133f4537, 0xff219784, 0x0a6b44fa, 0xe7440820, 0x20138307, 0x21338401, 0x1384fdff, 0x6b844382, 0xf5ff8022, 0x00265786, 0xfbff8002, 0xd7410002, 0x40022305, 0x1787f9ff, 0xa7423783, 0x86378308, 0x470120cf, 0x0787061a, 0xe3860220, 0x73462f84, 0x83c0200f, 0x0000245b, 0x4300a001, 0x87840803, 0x4300c021, 0x23420b5f, 0x455f8205, 0xff21054b, 0x820783ff, 0x830d205f, 0x21038453, 0x0b850000, 0x0f82bf87, 0x42107b43, 0xa34106bf, 0x2353820c, 0xfeff4001, 0x02200383, 0x3f820b83, 0x44600121, 0x80230a9f, 0x8601faff, 0x00022353, 0xc3841000, 0xab824020, 0xd7880383, 0xc0202382, 0x43094b44, 0x002106db, 0x08a74101, 0x43821b82, 0x07420f88, 0x86278306, 0x410020f7, 0xa747086b, 0xc0012306, 0x1388feff, 0xeb434787, 0x07e7470e, 0x4108e744, 0x0f8406ff, 0x0b833386, 0x3b92bf84, 0x2009d743, 0x074342ff, 0xe0010022, 0xf3877786, 0x6f41ab84, 0x48022005, 0xd346065b, 0x07074108, 0x820a4343, 0x05874623, 0x47828020, 0xfeff4022, 0x200a0745, 0x83378300, 0x827785f3, 0x245b8553, 0xff2001fa, 0x453782fc, 0x274309eb, 0x46c0200f, 0x0b880a63, 0x4909e748, 0xcf431003, 0x86178c06, 0x857f89cf, 0x0e4f4653, 0x450def46, 0x00210d07, 0x0c534102, 0x4383db83, 0x1b82c786, 0x2f820120, 0x8509eb43, 0x84838b9f, 0xff00221b, 0x877384f8, 0x43eb885b, 0x012009db, 0x410e9347, 0x6b82056f, 0xf5ff6822, 0x44058b43, 0x80220a87, 0x5742ffff, 0x82f02008, 0x24878317, 0x010000c0, 0x09c74180, 0xaf466f88, 0x0bbf450c, 0x20051b46, 0x488b8202, 0x77420c23, 0x0767460a, 0x43820220, 0x27830120, 0x02200386, 0x1b842382, 0x43820020, 0x02250b82, 0x02ffff00, 0x82938240, 0x214b858b, 0x6747fbff, 0x200b900b, 0x093743f8, 0x85000221, 0x8c87870b, 0x06ff462b, 0x7f820220, 0x20200384, 0x880d534b, 0x874f8a2b, 0x434f8313, 0x9f820913, 0xfeff0022, 0xc7822f88, 0xdb464f84, 0x835f8806, 0x06fb42c7, 0x17410120, 0x093b4206, 0x88faff21, 0x20f3850b, 0x223788f5, 0x87fcff18, 0x0c67442f, 0x33858020, 0xffc00123, 0x848f84f6, 0x202b82c7, 0x22038220, 0x82fdff80, 0x20038317, 0x821b88ed, 0x46012057, 0x8020076f, 0x20096342, 0x43a78702, 0x2f420b9f, 0x210b820b, 0x2f86e001, 0xfe21bf85, 0x08634201, 0x20053341, 0x06234201, 0x82089b42, 0x0cc74153, 0x8f4a9b84, 0x210f880a, 0x2782feff, 0x22090345, 0x83f4ff00, 0x2013828f, 0x414b8c00, 0x1383062f, 0x43085f43, 0x53840f4b, 0x23076349, 0xd0010000, 0x830acb4c, 0x0687471b, 0xd3420120, 0x0977460a, 0x44fdff21, 0xeb8208f3, 0x82c00121, 0x004024ab, 0x82800220, 0x42ab8617, 0x3b880fa3, 0x02218786, 0x45338340, 0x802206db, 0xbf88f2ff, 0xfaff8024, 0x8f820002, 0x1f82a020, 0x01232b82, 0x82ffffc0, 0x02fa2257, 0x20178240, 0x05574140, 0x860c934a, 0x8302206f, 0x820b844f, 0x200b8323, 0x0a774d80, 0x01200f82, 0x2741a385, 0x822f830d, 0x83022063, 0x4380201f, 0x7f4807ff, 0x842f8305, 0x49002033, 0x5f4205c7, 0x85838408, 0x84b38523, 0x46ff201f, 0x00260873, 0x00022000, 0x0382fcff, 0x210b7f4c, 0x838402fd, 0x84f7ff21, 0x09f34adb, 0xe7822b82, 0xf9ff0022, 0x20082f41, 0x20e782c0, 0x84c38700, 0x02ff211b, 0x8306bf4c, 0x4627876f, 0x0f470703, 0x42078707, 0x8741080f, 0x203b8206, 0x203383f5, 0x850f8502, 0x8580206f, 0x4f338257, 0x97440507, 0x874f830a, 0x4edf8503, 0x4f4d110f, 0x084f410a, 0x4a09e74a, 0x0b460ef7, 0x059b430c, 0x2b490220, 0x00002306, 0x03860300, 0x01001c22, 0x00240982, 0x0300c40a, 0x1c240984, 0xa80a0400, 0xd80aa582, 0x000002a6, 0xe0a60008, 0xe041e005, 0xf086e076, 0xf005f002, 0xf013f00e, 0xf019f015, 0xf01ef01c, 0xf044f03e, 0xf05bf04e, 0xf06ef05e, 0xf080f07c, 0xf089f086, 0xf091f08d, 0xf098f095, 0xf0a1f09e, 0xf0b2f0ae, 0xf0d1f0ce, 0xf0e0f0de, 0xf0ebf0e3, 0xf1fef0f4, 0xf10ef10b, 0xf11cf111, 0xf122f11e, 0xf131f12e, 0xf13af135, 0xf144f13e, 0xf14bf146, 0xf159f14e, 0xf165f15e, 0xf188f183, 0xf195f193, 0xf199f197, 0xf1aef19d, 0xf1b3f1b0, 0xf1c9f1bb, 0xf1d8f1ce, 0xf1def1da, 0xf1ecf1e6, 0xf2fef1f6, 0xf207f201, 0xf218f20b, 0xf22df21e, 0xf239f236, 0xf24ef249, 0xf26cf25d, 0xf27af277, 0xf28df28b, 0xf295f292, 0xf29ef29a, 0xf2a8f2a4, 0xf2b9f2b6, 0xf2bdf2bb, 0xf2cef2c2, 0xf2dcf2d2, 0xf2e7f2e5, 0xf2edf2ea, 0xf2f6f2f2, 0xf3fef2f9, 0xf30cf305, 0xf328f31e, 0xf35bf338, 0xf360f35d, 0xf382f362, 0xf3bff3a5, 0xf3c5f3c1, 0xf3cdf3c9, 0xf3ddf3d1, 0xf3e5f3e0, 0xf3faf3ed, 0xf4fff3fd, 0xf410f406, 0xf424f422, 0xf436f434, 0xf43cf43a, 0xf441f43f, 0xf445f443, 0xf44bf447, 0xf450f44e, 0xf458f453, 0xf45ff45d, 0xf466f462, 0xf472f46d, 0xf479f474, 0xf482f47f, 0xf48bf487, 0xf494f48e, 0xf49ef497, 0xf4b3f4ad, 0xf4bef4ba, 0xf4c4f4c2, 0xf4d3f4ce, 0xf4dff4db, 0xf509f5e3, 0xf59df591, 0xf5a7f5a2, 0xf5b4f5b1, 0xf5bdf5b8, 0xf5cbf5c5, 0xf5d2f5ce, 0xf5daf5d7, 0xf5dff5dc, 0xf5e4f5e1, 0xf5ebf5e7, 0xf6fdf5ee, 0xf610f604, 0xf619f613, 0xf621f61f, 0xf637f630, 0xf641f63c, 0xf647f644, 0xf64ff64a, 0xf655f651, 0xf65ef658, 0xf666f662, 0xf66df66b, 0xf674f66f, 0xf679f676, 0xf67ff67c, 0xf689f684, 0xf69bf696, 0xf6a7f6a1, 0xf6adf6a9, 0xf6bbf6b7, 0xf6c0f6be, 0xf6cff6c4, 0xf6d3f6d1, 0xf6d7f6d5, 0xf6def6d9, 0xf6e6f6e3, 0xf6edf6e8, 0xf6faf6f2, 0xf700f7fc, 0xf70ef70c, 0xf717f715, 0xf722f71e, 0xf72ff729, 0xf740f73d, 0xf747f743, 0xf753f74d, 0xf75bf756, 0xf769f75f, 0xf773f76b, 0xf781f77d, 0xf788f784, 0xf794f78c, 0xf79cf796, 0xf7a2f7a0, 0xf7abf7a6, 0xf7b6f7ae, 0xf7bdf7ba, 0xf7c2f7c0, 0xf7caf7c5, 0xf7d0f7ce, 0xf7daf7d2, 0xf7ecf7e6, 0xf7f2f7ef, 0xf7f7f7f5, 0xf807f8fb, 0xf810f80d, 0xf816f812, 0xf82af818, 0xf83ef82f, 0xf84cf84a, 0xf853f850, 0xf86df863, 0xf87df879, 0xf887f882, 0xf897f891, 0xf8ccf8c1, 0xfffff8d9, 0xe00000ff, 0xe041e005, 0xf085e059, 0xf004f000, 0xf010f007, 0xf017f015, 0xf01ef01c, 0xf041f021, 0xf050f048, 0xf060f05e, 0xf080f070, 0x06a74283, 0xf0934408, 0xf09cf098, 0xf0a3f0a0, 0xf0c0f0b0, 0xf0d6f0d0, 0xf0e2f0e0, 0xf0f0f0e7, 0xf100f1f8, 0xf110f10d, 0xf11ef118, 0xf124f120, 0xf133f130, 0xf13df137, 0xf146f140, 0xf14df14a, 0xf15bf150, 0xf182f160, 0x4291f185, 0x480806a7, 0xf1abf19c, 0xf1b2f1b0, 0xf1c0f1b8, 0xf1d8f1cd, 0xf1dcf1da, 0xf1eaf1e0, 0xf2f8f1f6, 0xf204f200, 0xf217f20a, 0xf221f21a, 0xf238f233, 0xf24df240, 0xf26cf251, 0xf279f271, 0xf28df28b, 0xf295f290, 0xf29df29a, 0xf2a7f2a0, 0x06a742b5, 0xc7f2c126, 0xdbf2d0f2, 0x3208a742, 0xf2f5f2f1, 0xf3fef2f9, 0xf309f302, 0xf328f31e, 0x4258f337, 0x812406a7, 0xbef3a5f3, 0x2420a742, 0xf436f433, 0x16a74239, 0x5ff45c3c, 0x66f461f4, 0x70f468f4, 0x77f474f4, 0x81f47df4, 0x8bf484f4, 0x90f48df4, 0xa74296f4, 0xb82a0806, 0xc0f4bdf4, 0xcdf4c4f4, 0xd6f4d3f4, 0xe2f4def4, 0x15f5faf4, 0x9ff593f5, 0xaaf5a4f5, 0xb6f5b3f5, 0xbff5baf5, 0xcdf5c7f5, 0xa742d0f5, 0x42de2006, 0xfc200aa7, 0x240ca742, 0xf637f62e, 0x0ca7423b, 0x58f6532a, 0x62f65df6, 0x69f664f6, 0x2e08a742, 0xf67bf678, 0xf681f67f, 0xf696f687, 0x42a0f698, 0xb62006a7, 0x2006a742, 0x0ca742c3, 0xe2f6dd36, 0xe8f6e6f6, 0xf0f6ecf6, 0xfcf6faf6, 0x0bf7fff6, 0x14f70ef7, 0x2406a742, 0xf72ef728, 0x0ca7423b, 0xf75a3a08, 0xf769f75e, 0xf772f76b, 0xf780f77c, 0xf786f783, 0xf793f78c, 0xf79cf796, 0xf7a2f79f, 0xf7a9f7a4, 0xf7b5f7ad, 0xf7bdf7b9, 0xf7c2f7bf, 0xf7c9f7c4, 0xf7d0f7cc, 0xf7d7f7d2, 0x0aa742e4, 0x05f8fa2e, 0x0ff80df8, 0x15f812f8, 0x29f818f8, 0x2a12a742, 0xf881f87b, 0xf891f884, 0x42c0f897, 0xa60a07a7, 0xc31ffe1f, 0x9e1fac1f, 0x24102510, 0x22102310, 0x20102110, 0x1d101e10, 0x19101b10, 0x15101610, 0x12101310, 0x0e101110, 0x0a100c10, 0x04100710, 0x01100310, 0xfd0ffe0f, 0xfb0ffc0f, 0xed0fee0f, 0xe80fe90f, 0xe40fe70f, 0xdd0fe00f, 0xdb0fdc0f, 0xd40fda0f, 0xd20fd30f, 0xd00fd10f, 0xce0fcf0f, 0xcb0fcc0f, 0xc70fca0f, 0xc50fc60f, 0xc30fc40f, 0xa60fa70f, 0x9d0f9e0f, 0x9b0f9c0f, 0x8c0f990f, 0x8a0f8b0f, 0x820f860f, 0x760f7f0f, 0x740f750f, 0x700f730f, 0x660f670f, 0x630f650f, 0x560f610f, 0x530f550f, 0x4d0f4e0f, 0x440f470f, 0x340f420f, 0x2f0f300f, 0x1e0f1f0f, 0x1a0f1c0f, 0x140f160f, 0x110f130f, 0x030f050f, 0x010f020f, 0xfa0efe0e, 0xf10ef90e, 0xe80ee90e, 0xe40ee60e, 0xdf0ee10e, 0xd90edd0e, 0xd30ed60e, 0xb90ec20e, 0x8c0eab0e, 0x890e8b0e, 0x6a0e880e, 0x300e480e, 0x2c0e2f0e, 0x260e290e, 0x180e230e, 0x120e160e, 0xff0d0b0e, 0xfc0dfd0d, 0xed0df60d, 0xdb0ddc0d, 0xcc0dcd0d, 0xc90dca0d, 0xc60dc70d, 0xc40dc50d, 0xc00dc30d, 0xbd0dbe0d, 0xb70dbb0d, 0xb30db40d, 0xaf0db20d, 0xac0dae0d, 0xa90dab0d, 0xa50da60d, 0xa10da40d, 0x9f0da00d, 0x980d9e0d, 0x850d8a0d, 0x7f0d810d, 0x7d0d7e0d, 0x710d750d, 0x6d0d6f0d, 0x550d6b0d, 0x490d4a0d, 0x470d480d, 0x440d450d, 0x420d430d, 0x400d410d, 0x3e0d3f0d, 0x380d3a0d, 0x360d370d, 0x330d350d, 0x2e0d310d, 0x1f0d2c0d, 0x0e0d190d, 0x070d0c0d, 0x010d020d, 0xef0cf50c, 0xe80cec0c, 0xe40ce60c, 0xde0ce20c, 0xdc0cdd0c, 0xd60cda0c, 0xd20cd30c, 0xcf0cd00c, 0xca0cce0c, 0xc80cc90c, 0xc50cc70c, 0xc20cc40c, 0xb50cb60c, 0xac0cb10c, 0xa80cab0c, 0x9d0ca00c, 0x9a0c9b0c, 0x8e0c980c, 0x8c0c8d0c, 0x8a0c8b0c, 0x860c890c, 0x810c830c, 0x7d0c800c, 0x740c7b0c, 0x710c730c, 0x660c670c, 0x600c610c, 0x570c5a0c, 0x4e0c520c, 0x410c430c, 0x3c0c3f0c, 0x320c370c, 0x2d0c300c, 0x220c2b0c, 0x1b0c210c, 0x110c130c, 0x0f0c100c, 0x060c0c0c, 0x000c050c, 0xfd0bfe0b, 0xfa0bfc0b, 0xf30bf90b, 0xef0bf10b, 0xed0bee0b, 0xe90bec0b, 0xe70be80b, 0xe20be60b, 0xd40bd90b, 0xd00bd20b, 0xcd0bce0b, 0xc20bcb0b, 0xbc0bbd0b, 0xb90bbb0b, 0xa80bb80b, 0x960ba40b, 0x8a0b8b0b, 0x850b870b, 0x6d0b760b, 0x610b620b, 0x5d0b5e0b, 0x4f0b540b, 0x1d0b270b, 0xec0a110b, 0x10000100, 0xa5020000, 0x0a020623, 0x21008200, 0xb1420001, 0x00012310, 0x00850002, 0x00200787, 0x01200096, 0x00101796, 0x218c0116, 0x8e41eb03, 0xb0230832, 0x98010000, 0x38050000, 0x1c070000, 0xa8070000, 0x74080000, 0xe8090000, 0xb40b0000, 0x900c0000, 0x820d0000, 0x0e210823, 0x0f0000ac, 0x100000a4, 0x11000048, 0x12000094, 0x13000054, 0x15000030, 0x16000044, 0x17000060, 0x33038218, 0x180000f0, 0x1900009c, 0x1a0000f4, 0x1b0000c0, 0x1c000084, 0x1d253f82, 0x1e000040, 0x2b038210, 0x1f0000d8, 0x200000e0, 0x220000fc, 0x24242f82, 0x24000008, 0x25201382, 0x26240f82, 0x26000048, 0x27207b82, 0x27242782, 0x27000058, 0x28287b82, 0x2900000c, 0x2a00005c, 0x2b242782, 0x2c000080, 0xcc230383, 0x822d0000, 0xe42d284f, 0x682e0000, 0x822f0000, 0x822f202f, 0xbc3025ab, 0x7c310000, 0x4f820382, 0x9f823220, 0x23823320, 0x009c3324, 0xd7823400, 0x00143524, 0x77823500, 0x003c3629, 0x00b03600, 0x82343700, 0x82702003, 0x24438203, 0x0000dc38, 0x24638239, 0x0000283a, 0x243f823a, 0x0000003b, 0x2437823b, 0x0000c83b, 0x255f823c, 0x0000e83c, 0x03826c3d, 0x0000f023, 0x2897823e, 0x0000203f, 0x0000e43f, 0x20638240, 0x28fb8241, 0x0000f441, 0x0000a442, 0x24038243, 0x00007444, 0x20138245, 0x203f8245, 0x20978246, 0x242f8246, 0x00008c46, 0x20238246, 0x201f8247, 0x204b8247, 0x241f8248, 0x00009848, 0x25c78248, 0x00002c49, 0x03826449, 0x0000b824, 0x0382184a, 0x03826020, 0x4b20c782, 0x4b25ef82, 0x4b000054, 0x820382b4, 0x824c203b, 0x824c20ab, 0x824d208f, 0xd04d241f, 0x824e0000, 0x824f2017, 0x824f2023, 0x824f2097, 0x3050240f, 0x82500000, 0xf850298f, 0xa0510000, 0x48520000, 0xa8200382, 0xf3820382, 0x00905324, 0xbb825300, 0x00ac5425, 0x82245500, 0x00882403, 0x82145600, 0x24c38203, 0x00005057, 0x203f8257, 0x20278258, 0x25a78259, 0x0000d459, 0x03827c5a, 0x5b206b82, 0x5b242382, 0x5c0000d8, 0x5c207382, 0x5d2ccf82, 0x5d000000, 0x5e0000dc, 0x5f0000b0, 0x6120b782, 0x62240782, 0x62000038, 0x6220f382, 0x63205f82, 0x64245f82, 0x6500005c, 0x65209782, 0x65243382, 0x660000ec, 0x6620ff82, 0x67205382, 0x6720e382, 0x68240f82, 0x69000080, 0x6924ff82, 0x6a0000fc, 0x6b253f82, 0x6c000068, 0x8203821c, 0x046d25a3, 0x786d0000, 0x27820382, 0x00b86e24, 0x5b826f00, 0x00547024, 0xd7827000, 0x000c7124, 0xf3827100, 0x3f827220, 0xf3827320, 0x00c47324, 0xf3827400, 0x9f827420, 0x63827520, 0xf7827520, 0x87827620, 0x83827620, 0x00347724, 0xab827800, 0xe7827920, 0x8f827a20, 0x57827b20, 0x33827b20, 0x97827c20, 0x43827c20, 0x003c7d25, 0x82707d00, 0x82a42003, 0x203f8203, 0x2017827e, 0x2027827e, 0x258f827e, 0x0000e07e, 0x0382107f, 0x80207f82, 0x80204782, 0x81200f82, 0x82208782, 0x82201382, 0x8320c782, 0x84206382, 0x84285b82, 0x850000f4, 0x860000cc, 0x86201b82, 0x87202b82, 0x88252b82, 0x89000040, 0x82038224, 0x828a20bf, 0x828b20d7, 0x988b24b3, 0x828c0000, 0x828c2007, 0x208d24c3, 0x828d0000, 0x828e209f, 0x7c8e24b7, 0x828e0000, 0x828f20c3, 0x828f2057, 0xc88f24bf, 0x82900000, 0x9090213f, 0x73820782, 0x67829120, 0x37829220, 0x5b829220, 0x00dc9225, 0x82609300, 0x20078203, 0x20238294, 0x201f8294, 0x200f8296, 0x82038397, 0x82982093, 0xfc9824cb, 0x82990000, 0x829920d7, 0xbc9a240f, 0x829b0000, 0x1c9c24fb, 0x839c0000, 0x20138207, 0x20db829d, 0x2c0b829e, 0x0000e49e, 0x0000b49f, 0x000054a0, 0x201f82a1, 0x299782a1, 0x000048a2, 0x0000f0a2, 0x038250a3, 0xa4202782, 0xa4209382, 0xa5207f82, 0xa5241782, 0xa60000d0, 0xa620e382, 0xa6243b82, 0xa70000d8, 0xa720fc82, 0xa8241382, 0xa8000028, 0xa9203b82, 0xa920d382, 0xaa209782, 0xaa242b82, 0xaa0000a4, 0xab208782, 0xac24cf82, 0xac000018, 0xad300f82, 0xad00005c, 0xae0000e8, 0xaf000080, 0xb0000000, 0xb0207382, 0xb128af82, 0xb1000014, 0xb20000f8, 0xb32c3b82, 0xb40000c4, 0xb50000ac, 0xb600009c, 0xb7246782, 0xb800004c, 0xb8211f82, 0x8207827c, 0x98b928af, 0xecb90000, 0x82ba0000, 0x82bb2057, 0x82bb2057, 0x82bb209b, 0x82bc20a7, 0x82bd2007, 0x82bd2027, 0x68be24cf, 0x82bf0000, 0x82bf205f, 0x82c0202b, 0x82c120ff, 0xccc22457, 0x82c30000, 0x82c42097, 0x78c428cf, 0x2cc50000, 0x82c60000, 0x34c72503, 0x04c80000, 0xbf820382, 0x3382c920, 0x00f4c924, 0x3382ca00, 0x9782cb20, 0x5f82cc20, 0xb782cc20, 0x2f82cd20, 0x8782ce20, 0x7f82ce20, 0x00f0cf24, 0x8b82d000, 0x8382d020, 0x0044d124, 0xcf82d100, 0x2382d220, 0x4382d320, 0x5b82d420, 0xdb82d420, 0xd782d520, 0x000cd624, 0xc382d600, 0x3782d820, 0x1b82d920, 0x1782d920, 0xff82da20, 0x3f82da20, 0xa782dc20, 0x00c0dc24, 0x7f82dd00, 0x00d0dd24, 0xa782de00, 0x3b82df20, 0x0090df24, 0xc782e000, 0x1382e020, 0xab82e120, 0x6f82e120, 0x6382e220, 0x0088e224, 0xe382e300, 0x1f82e420, 0x0054e524, 0x4382e500, 0x00e0e62c, 0x00ace700, 0x006ce800, 0x0382e900, 0x00a0ea24, 0x1b82eb00, 0xeb82eb20, 0x0050ec28, 0x00b8ec00, 0xc382ed00, 0x8782ee20, 0xd782ef20, 0x2f82ef20, 0x7382f020, 0x6b82f120, 0x0038f228, 0x00ccf200, 0x2f82f300, 0x82a8f321, 0x20678207, 0x20f782f4, 0x204382f5, 0x24af82f6, 0x0000c4f6, 0x241b82f7, 0x000020f8, 0x207382f8, 0x203f82f9, 0x204b82f9, 0x245b82f9, 0x000040fa, 0x201382fa, 0x242782fb, 0x0000fcfb, 0x28ab82fc, 0x000024fd, 0x00008cfd, 0x203f82fe, 0x25d382ff, 0x0100ccff, 0x03825800, 0x0100d428, 0x01007c01, 0x03821802, 0x01009c24, 0x03820803, 0x0100e828, 0x01008c04, 0x03820c05, 0x062c1f82, 0x06010050, 0x070100c4, 0x08010078, 0x08251382, 0x090100dc, 0x82038288, 0x3c0a2907, 0xe00a0100, 0x340b0100, 0x47820382, 0x00f00b24, 0x13820c01, 0x00b80c29, 0x00980d01, 0x82640e01, 0x00f42703, 0x00d00f01, 0x0f821001, 0x0f821120, 0x03821220, 0x00801324, 0x0f821401, 0x00241630, 0x00101701, 0x00441801, 0x001c1901, 0x0f821a01, 0x00ec1a29, 0x00a01b01, 0x82701c01, 0x00d82303, 0x77821d01, 0xab821e20, 0x7b821f20, 0x00c01f29, 0x00742001, 0x82282101, 0x00c82303, 0xb3822301, 0x00682424, 0x2b822501, 0x1b822520, 0x00f82524, 0x1f822601, 0xaf822720, 0x00b02925, 0x82002a01, 0x00b02303, 0x2f822b01, 0x9b822b20, 0x2f822c20, 0x00242d29, 0x00ac2d01, 0x82302e01, 0x00a42303, 0x5f822f01, 0xff823020, 0x00a83024, 0xab823001, 0x9f823120, 0x17823120, 0x00e43125, 0x822c3201, 0x205b8203, 0x249b8233, 0x01009433, 0x24438233, 0x01004834, 0x209f8234, 0x202b8234, 0x200b8235, 0x20538235, 0x20ff8236, 0x203f8236, 0x202f8237, 0x20fb8237, 0x20178238, 0x20078238, 0x28b38239, 0x01006039, 0x0100cc39, 0x241b823a, 0x0100fc3a, 0x24af823b, 0x0100383c, 0x20bf823c, 0x2027823d, 0x209f823d, 0x297f823e, 0x0100883e, 0x0100803f, 0x03820840, 0x40203382, 0x41206b82, 0x41207b82, 0x42200782, 0x43201b82, 0x4324af82, 0x44010098, 0x45244382, 0x47010090, 0x47205b82, 0x48200f82, 0x48244382, 0x490100d4, 0x4a287f82, 0x4b01004c, 0x4c010020, 0x4c202b82, 0x4d203782, 0x4d240782, 0x4d0100e0, 0x4e203382, 0x4f295b82, 0x50010044, 0x5101007c, 0x23038228, 0x52010084, 0x52259382, 0x530100c0, 0x82038204, 0x8254204b, 0x82552017, 0x8256208b, 0x10572407, 0x82570100, 0x82582057, 0x14592427, 0x82590100, 0x3c5a24a7, 0x825b0100, 0x825b20bf, 0x6c5c24bb, 0x825d0100, 0x825d206b, 0x825e20db, 0xd05e2477, 0x825f0100, 0x246024b7, 0x82610100, 0x8261202f, 0x82622073, 0x64632827, 0xec630100, 0x82640100, 0xf4642823, 0xa4650100, 0x82660100, 0x82672047, 0x826820db, 0x826820eb, 0x826920cb, 0x826920cb, 0x826a20bf, 0x5c6b248b, 0x826b0100, 0x786c2453, 0x826d0100, 0x346e252b, 0x006f0100, 0xb8300382, 0x50700100, 0x9c710100, 0x8c720100, 0x1c730100, 0xdc230382, 0x82740100, 0x827420e3, 0x82752027, 0x82752053, 0x48762407, 0x82770100, 0x8277207f, 0x827720cf, 0x8278206f, 0x8279207f, 0xf879306b, 0x887a0100, 0xe47b0100, 0x7c7c0100, 0x827d0100, 0x827d203f, 0x827e209f, 0x827f20df, 0x827f205f, 0x8280201b, 0x8280204b, 0x82812043, 0x828120c7, 0x8283208b, 0x7484243b, 0x82850100, 0x2c862c2f, 0xa0860100, 0xe0870100, 0x82880100, 0xd48824fb, 0x82890100, 0x828a2007, 0xc48a256b, 0x288b0100, 0x33820382, 0x13828c20, 0x00588d24, 0x53828e01, 0x82948e21, 0x206f8207, 0x2453828f, 0x01002090, 0x206b8290, 0x200f8290, 0x20a38291, 0x207b8291, 0x20338292, 0x20538292, 0x246f8293, 0x01001c94, 0x207f8295, 0x28238295, 0x01000496, 0x0100b496, 0x25fb8297, 0x0100f097, 0x03824498, 0x99205b82, 0x9a201b82, 0x9b205f82, 0x9b241782, 0x9c0100ac, 0x9d250b82, 0x9e010090, 0x82038224, 0x829f204f, 0xb09f2927, 0x40a00100, 0x0ca10100, 0xd8230382, 0x82a20100, 0x82a32083, 0xcca32417, 0x82a40100, 0xf4a42417, 0x82a50100, 0xe8a5287f, 0x8ca60100, 0x82a70100, 0x82a820e3, 0x78a824ab, 0x82a90100, 0x82ab2007, 0xf8ab245b, 0x82ac0100, 0x82ad20f7, 0x82ad20c7, 0x82ae2057, 0x3caf248b, 0x82b00100, 0xa8b12467, 0x82b20100, 0x83b32047, 0x249b8203, 0x01005cb4, 0x20bf82b5, 0x200782b6, 0x28db82b6, 0x010068b7, 0x0100e0b7, 0x209782b8, 0x243382b9, 0x0100c4b9, 0x244382ba, 0x01009cbb, 0x245382bc, 0x01004cbd, 0x208382bd, 0x207782be, 0x293782bf, 0x0100ecbf, 0x010080c0, 0x038214c1, 0xc3240b82, 0xc3010010, 0xc4240782, 0xc50100d4, 0xc5201f82, 0xc6205382, 0xc828f782, 0xc8010030, 0xc90100a4, 0xc9209f82, 0xca208f82, 0xcb20df82, 0xcc241382, 0xcd010070, 0xce205b82, 0xce205b82, 0xcf2d8f82, 0xd0010098, 0xd1010050, 0xd2010044, 0x27038208, 0xd30100ac, 0xd40100d0, 0xd5203382, 0xd6205782, 0xd7208b82, 0xd8240382, 0xd90100dc, 0xda24f382, 0xdb01006c, 0xdc20b382, 0xdc247f82, 0xdd0100cc, 0xde205f82, 0xdf200f82, 0xe020c382, 0xe1243382, 0xe2010058, 0xe3201382, 0xe320df82, 0xe4209382, 0xe520d782, 0xe5200f82, 0xe6202b82, 0xe7208f82, 0xe7250b82, 0xe80100d8, 0x82038248, 0x82e920d7, 0x82e92077, 0x82ea200f, 0x82ea202f, 0x82eb2043, 0x82ec20e7, 0xb0ec2513, 0x24ed0100, 0x77820382, 0x7382ee20, 0x0004ef28, 0x00a0ef01, 0x8382f001, 0xa782f120, 0x1f82f120, 0x1782f220, 0x0020f328, 0x00e8f301, 0xcf82f401, 0xaf82f420, 0x4b82f520, 0x0054f624, 0x0782f601, 0x7b82f720, 0x00f8f724, 0x3782f801, 0x7b82f920, 0x00b8fa25, 0x8228fb01, 0x20df8203, 0x244782fc, 0x010018fd, 0x201f82fd, 0x204782fe, 0x2dab82fe, 0x02007cff, 0x02002800, 0x02005001, 0x03822402, 0x0200ac23, 0x24138203, 0x02006c04, 0x34178205, 0x02000407, 0x0200b007, 0x0200c408, 0x02003c09, 0x02004c0a, 0x2c17820b, 0x0200c80b, 0x0200b40c, 0x0200700d, 0x200f820e, 0x2023820e, 0x343f820f, 0x0200cc0f, 0x02001c11, 0x02009412, 0x0200e013, 0x0200a814, 0x280f8217, 0x0200e817, 0x0200b818, 0x30438219, 0x0200f019, 0x0200a41a, 0x0200441c, 0x0200301d, 0x207b821e, 0x244b821e, 0x02006420, 0x20138221, 0x24338221, 0x02003822, 0x24038223, 0x02005824, 0x243f8225, 0x0200f425, 0x2d0b8227, 0x0200ec28, 0x0200f829, 0x0200682b, 0x0382002c, 0x0200d423, 0x244b822e, 0x0200802f, 0x20638230, 0x20738232, 0x24a38233, 0x0200d033, 0x20138234, 0x205f8235, 0x205b8235, 0x208f8236, 0x240f8237, 0x02008838, 0x20578239, 0x24378239, 0x02008c3a, 0x200b823b, 0x2037823b, 0x2023823c, 0x2413823d, 0x0200743e, 0x2483823f, 0x0200d83f, 0x24478240, 0x02002c41, 0x20b38242, 0x20df8242, 0x281b8243, 0x02000c44, 0x0200bc44, 0x250f8245, 0x0200ac46, 0x03822447, 0x4828f382, 0x490200a0, 0x4b020020, 0x4c241f82, 0x4d020028, 0x4d2cd382, 0x4e0200e4, 0x5002006c, 0x51020098, 0x52201b82, 0x52241b82, 0x530200c8, 0x5420af82, 0x55206382, 0x55205782, 0x56203b82, 0x57201b82, 0x5720cb82, 0x58257f82, 0x59020034, 0x24038204, 0x5a02007c, 0x8203825c, 0x105c24b7, 0x825c0200, 0x825e20f7, 0xf45e242f, 0x825f0200, 0x8360201b, 0x00f02303, 0xbb826102, 0x6f826320, 0x3f826420, 0xab826520, 0x97826620, 0x7b826820, 0xcf826920, 0xaf826a20, 0xef826b20, 0x00606c24, 0x13826d02, 0x00c06e29, 0x00846f02, 0x82407002, 0x00fc2703, 0x00a87102, 0x33827302, 0x47827320, 0x2f827420, 0x00087624, 0xf7827602, 0x00707724, 0x0b827802, 0x73827820, 0x00807928, 0x00307b02, 0x03837c02, 0x7e207b82, 0x7e241782, 0x7f02008c, 0x80202782, 0x81206b82, 0x8220ab82, 0x82205382, 0x8320eb82, 0x8320d382, 0x84243382, 0x85020048, 0x86207782, 0x86243382, 0x87020090, 0x8720b782, 0x8824f382, 0x89020068, 0x89202f82, 0x8a24f382, 0x8b0200bc, 0x8c244782, 0x8c02006c, 0x8d249782, 0x8e020058, 0x8f249782, 0x9002001c, 0x90286382, 0x910200c4, 0x920200f8, 0x94200382, 0x95302382, 0x9502009c, 0x960200f4, 0x97020094, 0x98020064, 0x98202782, 0x99206382, 0x9a240382, 0x9a020024, 0x9a29eb82, 0x9b0200b8, 0x9c02007c, 0x82038200, 0x829d202f, 0x829d2053, 0x829e201f, 0xe89e2d97, 0x549f0200, 0xa0a00200, 0x94a10200, 0xf3820382, 0x0b82a220, 0x0034a324, 0x6b82a302, 0x0070a425, 0x8210a502, 0x24d38203, 0x020060a6, 0x24df82a6, 0x0200a8a7, 0x241382a8, 0x02004cab, 0x202b82ac, 0x20cf82ad, 0x245382ae, 0x0200bcae, 0x20e382af, 0x205782b0, 0x209f82b0, 0x202b82b1, 0x201382b2, 0x202382b3, 0x206f82b4, 0x208b82b5, 0x244382b6, 0x02005cb7, 0x20eb82b7, 0x20af82b8, 0x286f82b8, 0x02003cb9, 0x0200a4b9, 0x200f82ba, 0x38008200, 0x80010002, 0x3e002300, 0x32250000, 0x06141516, 0x2622012b, 0x012b2634, 0x3307820e, 0x26222327, 0x3634013d, 0x3736013b, 0x15173735, 0x06271716, 0x1f221084, 0x15833501, 0x1d163225, 0x82363701, 0x142c0804, 0x01012f06, 0x135e4260, 0x130d400d, 0x100d0d13, 0x103d4c3d, 0x0909075d, 0x22177707, 0x18212020, 0x0b0b07e7, 0x07096e07, 0x6e090720, 0x8e230a83, 0x82425ec0, 0x131a3c29, 0x1d23231d, 0x07600709, 0x30081409, 0x08300303, 0x0a016014, 0x0a081e08, 0x831c0c01, 0x0c1c213e, 0x0f2e0e86, 0x08000000, 0xe0ff0000, 0x80018002, 0xb1821a00, 0x36002d22, 0x4624b582, 0x56004e00, 0x1d2abb84, 0x23061401, 0x22012e21, 0xb6820706, 0x34113525, 0x83213336, 0x352522a0, 0x20d38234, 0x86c2831d, 0x17322108, 0x16201286, 0x33200887, 0x20241086, 0x06141632, 0x1629ff82, 0x26343632, 0x02140622, 0x27848370, 0x3e06aefe, 0x32063e54, 0x022a0b83, 0xfe090700, 0x08100840, 0x0482710f, 0x6c080c22, 0x11210582, 0x2004826f, 0x2d038280, 0x2f42cffe, 0x432f422f, 0x1a13131a, 0xed848013, 0x37372926, 0x01070929, 0x0931f782, 0x6c4cf007, 0x0c800808, 0x0808591b, 0x80280159, 0x243c8208, 0x0808b844, 0x820383b8, 0x422f2236, 0x23368241, 0x05001a13, 0xbf2ee782, 0xc1018002, 0xab00a300, 0x5401b300, 0xe1825c01, 0x31230624, 0xe3822f22, 0x84060721, 0x07142601, 0x16173106, 0x82f38215, 0x20128315, 0x33ba8317, 0x2306012f, 0x07232230, 0x26222306, 0x013f3435, 0x22072726, 0x34260a86, 0x36373435, 0x16822737, 0x32333624, 0x0a85011f, 0x0b963720, 0x06821686, 0x22833320, 0x15011e2b, 0x16010f14, 0x33323717, 0x220b8632, 0x8e071415, 0x418b827e, 0x36200636, 0x05200786, 0x0f229f82, 0x2a821401, 0x2c8b0620, 0x0a83378a, 0xb782ac83, 0x23204e8c, 0xce88c38d, 0xc18ac382, 0x3421c38b, 0x83dd8236, 0x36342203, 0x21228e31, 0xef833634, 0x32303322, 0x9384cb84, 0x3122ca84, 0xa8860632, 0x10016208, 0x050b0403, 0x05010304, 0x04050605, 0x09010104, 0x04080a0a, 0x01030903, 0x05090903, 0x08060e0b, 0x01021915, 0x070e0303, 0x1803010b, 0x02030b0d, 0x0b0d0a08, 0x0b060201, 0x03070b0c, 0x0d0a0a03, 0x05040808, 0x08050609, 0x04061310, 0x09060507, 0x17150705, 0x070b0104, 0x1603040d, 0x0107070b, 0x223c8202, 0x86050805, 0x3f09823d, 0x0c010c0d, 0x070a0609, 0x100a0507, 0x04070612, 0x131aa802, 0x69131a13, 0x0e09090e, 0x01bf0109, 0x0a215e8f, 0x8b5d9e08, 0x215b829a, 0x7682060a, 0x0b205b87, 0x0220de8c, 0x0421dd95, 0x2142880d, 0x8c84e80d, 0x0b02de2c, 0x01010109, 0x06060403, 0x08820504, 0x05045208, 0x020a080b, 0x11080804, 0x0f05090e, 0x0e09050a, 0x070b0d0b, 0x0c0b0202, 0x070a0418, 0x0304030e, 0x08070603, 0x0c040416, 0x04010a08, 0x05071517, 0x07050609, 0x10130604, 0x09060509, 0x08070305, 0x030a090e, 0x0c0b0703, 0x01020609, 0x08050d0b, 0x3a3c8505, 0x0d050804, 0x03020404, 0x05091417, 0x050b0708, 0x01030b09, 0x04030902, 0x8313220c, 0x094d2888, 0x0e09090e, 0x94020336, 0x0a082162, 0x08216190, 0x2161860a, 0x6085080a, 0x070b0122, 0x04206095, 0x0220e28c, 0xdf20e19b, 0x00348b84, 0x00030000, 0x02c0ff00, 0x00c10100, 0x00a7009f, 0x010000af, 0x2008e742, 0x20098217, 0x08904306, 0x9d431520, 0x43222005, 0x058205b1, 0x43010f21, 0x2d831133, 0x012a2328, 0x23060723, 0xb4432722, 0x07f04207, 0x4314b443, 0x898225b3, 0x16071524, 0x2d823717, 0x97430020, 0x0175080e, 0x101101ff, 0x0e080d0f, 0x140e0713, 0x05080819, 0x0f0a0e02, 0x03010506, 0x09060701, 0x01050507, 0x0e0c0101, 0x05050a0e, 0x0302040c, 0x0e060d0d, 0x1c0b0714, 0x01020121, 0x03130404, 0x04011203, 0x040f1020, 0x110e0a03, 0x0604010f, 0x0a0e110d, 0x0d0d0404, 0x0e0a0b12, 0x0b060909, 0x05081a15, 0x0c08060a, 0x1e1c0807, 0x0a0e0104, 0x16040610, 0x02090917, 0x213c8202, 0x3a850e09, 0x92fe123a, 0x281c1c28, 0x0e14761c, 0x010e140e, 0x11040359, 0x04030505, 0x070c1a1f, 0x2b084582, 0x040e0c07, 0x040c0302, 0x0e0e0a05, 0x0501020c, 0x05090705, 0x02010107, 0x0a0f0606, 0x0a05030e, 0x0c13170a, 0x0e0a0907, 0x0e120b07, 0x92828c82, 0x20100e23, 0x3b6a8205, 0x04050511, 0x15080904, 0x11060414, 0x04020e0a, 0x07081c1e, 0x050e0a0d, 0x0b161908, 0x043b9183, 0x0d130b09, 0x0a04040c, 0x070c100e, 0x120e0203, 0x03030a0e, 0x041f100e, 0x82e6fe01, 0x281c228d, 0x228d826c, 0x8200140e, 0xff032200, 0x06e341ff, 0x00094e08, 0x002d0013, 0x03212500, 0x021e3233, 0x3501013b, 0x06141521, 0x26222123, 0x1d163201, 0x34352101, 0x17013b36, 0x14062223, 0x32213316, 0x2b263436, 0x80013701, 0x8d4000ff, 0x250e2517, 0x40fe6e16, 0x0d130002, 0x130d40fe, 0x130de001, 0x280b82fe, 0x070f0e31, 0x01070909, 0x2a058360, 0x01a0150e, 0x1b2a1b20, 0x824080fe, 0x01133022, 0x800d130d, 0x40130d80, 0x0a0a0d09, 0x8240090d, 0x0200218a, 0x40298b84, 0x2400c101, 0x00004e00, 0x07944713, 0x20088347, 0x24888333, 0x2b010e14, 0x06c04701, 0x45013d21, 0xa684057a, 0x2005c147, 0x29a58237, 0x14151632, 0x020e1407, 0xad83012b, 0x37013b26, 0xa0323336, 0x40258483, 0x07400709, 0x22028209, 0x85040804, 0x5801280b, 0x1c871008, 0x83a5fe22, 0x2f37241e, 0x82a02a20, 0x090724bf, 0x834e060b, 0x78782810, 0x01140d0b, 0x85060a10, 0x823d8235, 0x213b8302, 0x13820a06, 0x1c82a020, 0x14640c24, 0xe082060a, 0x131a2629, 0x0602030d, 0x8204070a, 0x085833d0, 0x00000400, 0x8002c0ff, 0x1600c001, 0x74006000, 0xcf828c00, 0x2206072e, 0x012e022f, 0x023f3435, 0x021f3236, 0x0122a483, 0xa4820617, 0x46012f21, 0xea8207ad, 0x3b22e384, 0xce833201, 0x1c350b9b, 0x07061501, 0x23030f15, 0x011f1406, 0x2f343627, 0x0f222602, 0x2a0c8202, 0x3f321602, 0x14310501, 0x8431010f, 0x865b8271, 0x156b2a70, 0x15020802, 0x04020231, 0x36098531, 0x3b010404, 0xc61e0d26, 0x087d0f18, 0x0c141117, 0x131a1318, 0x8e081008, 0x060d3305, 0x01260f01, 0x01151501, 0x1e020278, 0x0204020c, 0x08871e0c, 0x89400121, 0x2354874b, 0x04311501, 0x01211582, 0x85298203, 0x0402380a, 0xc3fe0204, 0xac141d10, 0x17110d0b, 0x0df12011, 0x980d1313, 0x83b80808, 0x08b82307, 0x0f869808, 0x07834820, 0x0201b032, 0x010b0601, 0x010f2601, 0x010a300b, 0x0105027f, 0x01216f85, 0x21788505, 0xc4820450, 0x56836183, 0x00206086, 0x24080082, 0xff200006, 0x012102c0, 0x000700c1, 0x00570016, 0x00a5009d, 0x240000ad, 0x36342622, 0x27141632, 0x013e3707, 0x05d64717, 0x22232625, 0x41022e07, 0x15210562, 0x26178917, 0x33141514, 0x83013f32, 0x15022427, 0x87010f14, 0x1702230f, 0x10831e32, 0x010e022a, 0x2230011d, 0x17163225, 0x06261a82, 0x1422012b, 0x0c96013b, 0x3536272f, 0x35272634, 0x3f013e34, 0x32333601, 0x824f8316, 0x21388806, 0x98861233, 0x8d490020, 0x04023e06, 0x281c1c28, 0x1510e91c, 0x09090e03, 0x090f010c, 0x13e2080a, 0x140f101b, 0x023c020e, 0x0812830f, 0x06082729, 0x0f032f02, 0x060a0608, 0x06082c01, 0x07022201, 0x0804060b, 0x22010306, 0x023c2f4a, 0x0e09a901, 0xa00a0e02, 0x847f0808, 0x08802308, 0x08845f08, 0x1d21d030, 0x161c2406, 0x036c1827, 0x110e0a04, 0x1584c72f, 0x45271e82, 0x1a13131a, 0x849cfe13, 0x82e02079, 0x281c3b7d, 0x08420512, 0x0d01010a, 0x3004030a, 0x200ad203, 0x0a711629, 0x320a0e0d, 0x158209be, 0x04090e29, 0x01017a04, 0x83970608, 0x8206200d, 0x8a03217c, 0x05390e82, 0x0508056b, 0x08060501, 0x6c030405, 0x33511017, 0x080b321a, 0x0e0a0203, 0x31068c10, 0x1d100e12, 0x1b1a052c, 0x21082330, 0x120a0e01, 0x1e861105, 0x82100121, 0x1a132385, 0x81848dfe, 0x0000003b, 0xff000002, 0x018102c0, 0x003700c0, 0x2500004c, 0x34353637, 0x0f222326, 0x07f04302, 0x01272232, 0x3f343526, 0x32333601, 0x3637011f, 0x1707013b, 0x0c820583, 0x2d052544, 0x26012b06, 0x01332527, 0x22230607, 0x0484012f, 0x2e06e54b, 0x051a6701, 0x05060709, 0x4b01211b, 0x82140306, 0xfd0422b8, 0x080886b3, 0x09157526, 0x1a4c540d, 0x560d0958, 0x7037090d, 0x07090907, 0xfe120462, 0x7e010818, 0x0d120b09, 0x1f13120a, 0x825b1117, 0xfc291782, 0x07070518, 0x1e190409, 0x254082ff, 0x03061905, 0x0886c701, 0x09155b39, 0x08511445, 0x07093709, 0x170a06c0, 0xd8feba0f, 0x10080e0a, 0x82520e18, 0x09072410, 0x82060000, 0x84bf20db, 0x000731db, 0x00200012, 0x00340029, 0x11000063, 0x14151733, 0x372db682, 0x15010e22, 0x36321614, 0x35172634, 0x29bf8a05, 0x23113325, 0x35022e22, 0x1a82013a, 0x25842320, 0x0e412520, 0x26152321, 0x3d41012f, 0x18073006, 0x400d1348, 0x04080430, 0x09090e09, 0x8a160149, 0x8e0128d3, 0x0b074060, 0x82290509, 0x82072019, 0xeffe2121, 0x2f1f1d41, 0x1a920404, 0x06070905, 0x38400104, 0x40130da8, 0x07213482, 0x22588209, 0x86d78f20, 0xffe026ef, 0x0b090500, 0x83138207, 0x418c201b, 0xc2241929, 0x18760305, 0x0a22ea82, 0x00820004, 0x3b450820, 0x00072f08, 0x0017000f, 0x0027001f, 0x0051002f, 0xcb430059, 0x43062008, 0x26200632, 0x4c08c84c, 0x362005d0, 0x2720178e, 0x2105ea4d, 0x08462315, 0x06142705, 0x2315012b, 0x51462635, 0x011e2505, 0x26011e17, 0x27063348, 0x0e147202, 0x620e140e, 0x32200584, 0x8e200584, 0x14820584, 0x11850282, 0x1303333f, 0x0d60200d, 0x600d1313, 0xe0401a26, 0x2a507040, 0x13344023, 0x1ac4350e, 0x131a1313, 0x202b8490, 0x2005847e, 0x20058446, 0x2005845a, 0x20058476, 0x25058436, 0x0d07063b, 0x2c822013, 0x20261a2d, 0x50553ab1, 0x1b271670, 0x82259914, 0x1a132110, 0x1b42fb82, 0x00212e09, 0x00310029, 0x004c0039, 0x25000054, 0x23c88217, 0x2306010f, 0x230cf642, 0x32013b36, 0x1723c484, 0x43270616, 0x07210520, 0x06544404, 0x07860620, 0x16140424, 0xf789013b, 0x23053724, 0x24410422, 0xc6012206, 0x0fff42b4, 0x3b312722, 0x062cd186, 0x079c0f07, 0x090f0d13, 0x0e146a01, 0x4e20b982, 0xfe210584, 0x26fa87e0, 0x143f0115, 0x842b010d, 0x8b812115, 0x210f0343, 0xd684211e, 0x1b0e0e29, 0x0d09096a, 0x84840c13, 0x844e20fb, 0x1a112205, 0x23fb8513, 0x08f6282e, 0xf7821184, 0xfcff043b, 0x0002c0ff, 0x0700c001, 0x20001800, 0x00003700, 0x17373611, 0x26352315, 0x24fa8205, 0x3e272131, 0x23ed8201, 0x021e1716, 0x2007b141, 0x05d34117, 0xdb410720, 0x072a0806, 0x012b010e, 0x01072135, 0x43a0dc03, 0xfe030002, 0x6716e2ef, 0x5934423e, 0x1b1b0b1d, 0x13131ac2, 0x0730131a, 0x95070909, 0x06838b0a, 0x0701803d, 0x01921521, 0x08011000, 0xc3a10e0e, 0x06013db1, 0x37a40106, 0x10292f45, 0x82215247, 0x1a13262c, 0x090e09a3, 0x24038220, 0xc0181404, 0x20a38330, 0x050f4b00, 0x0f27a383, 0x79002900, 0x42240000, 0xab830e6f, 0x9e480620, 0x21152106, 0x82076842, 0x270121b5, 0x2d053249, 0x013f2622, 0x22263436, 0x2606010f, 0x0882013d, 0x011d0627, 0x012f0614, 0x22cc8226, 0x8216011f, 0x21d5853b, 0x21821632, 0x32161422, 0x16202d82, 0x16222182, 0x2d823632, 0x21823620, 0x2d824682, 0x01333622, 0x02829882, 0x474d3720, 0x033d2d05, 0x26200d13, 0x00ff401a, 0x4a507040, 0x0e22f382, 0xe5838735, 0x10160c2b, 0x0a05090f, 0x0f08050d, 0x2b2d8228, 0x05080f28, 0x09050a0d, 0x0c16100f, 0xd0201e9d, 0x49205e84, 0x5a320584, 0x130d0706, 0x40261a40, 0x505639b1, 0x15292f70, 0x4bac1598, 0x5b4c6a90, 0x01402e08, 0x002b00c0, 0x00410033, 0x17162500, 0x23f28206, 0x012f2607, 0x2306764a, 0x0607013d, 0x26260e83, 0x25373435, 0x8b513236, 0x2650080a, 0x16140622, 0x17343632, 0x34353632, 0x22012b26, 0x16141506, 0x043b0233, 0x16030101, 0x05060605, 0xfe0d1310, 0x10130d80, 0x05070505, 0x01050416, 0x0c1e0c00, 0x40070965, 0x34c60907, 0x26342626, 0x38090730, 0x38284028, 0x05d40709, 0x18050607, 0x0e3b3883, 0x13130dd2, 0x030ed20d, 0x18040101, 0x05070605, 0x5a0a0ae2, 0x09090734, 0x82088807, 0x34262a32, 0x280709ea, 0x07283838, 0x4dbe8209, 0x8020061b, 0x3324bf82, 0x52004e00, 0x1523bf82, 0x83262223, 0x222322b2, 0x0699462f, 0xbf43b28b, 0x22232205, 0x21b08607, 0xb182011d, 0x16320522, 0xbc4a0782, 0x3435210a, 0x2a05e542, 0x3523011d, 0x10011523, 0x82130db0, 0x050635be, 0xd4050412, 0x580a1b0a, 0x07200709, 0x04053b09, 0x121b8906, 0x093ece84, 0x05a50107, 0xfe121906, 0x061912d6, 0x0d082505, 0x110ce608, 0x80a0c030, 0x13a40d13, 0x3c840403, 0x0909bb24, 0xc783274e, 0x05346028, 0x08040506, 0x0c832515, 0x09074036, 0x0a0506a0, 0x12191912, 0xa006050a, 0x13090e09, 0x9090a00d, 0x0625db83, 0xb6ff0000, 0x2edb8302, 0x0039000b, 0x00910089, 0x00c70099, 0x83260100, 0x055e4bbd, 0x33160331, 0x0f063732, 0x35260601, 0x37363734, 0x8333083e, 0x232626ca, 0x1f140622, 0x07904301, 0x36140628, 0x012f2206, 0xe4830626, 0x3d262225, 0x82263401, 0x26222831, 0x36013f34, 0x82012b26, 0x204c8308, 0x26218236, 0x1f323634, 0x4a361601, 0x162008f2, 0x32222182, 0x2d821416, 0x013b1622, 0x06200882, 0x06202d82, 0xfa432182, 0x51162007, 0x06200a78, 0x27203f82, 0x36258e82, 0x012f3435, 0x05654333, 0x34363722, 0x3b088b82, 0x36343507, 0x071e3233, 0x58011617, 0x090b1a0b, 0x09071007, 0x04140d94, 0x3c201404, 0x21044e2f, 0x020c0145, 0x080b040b, 0x1d070d0b, 0x140f0c29, 0x0c080f1c, 0x141c1c14, 0xf50e080c, 0x42323243, 0x92260ae6, 0x0e09090e, 0x05844909, 0x042c0126, 0x203c2f4e, 0x60897683, 0x131d0f28, 0x1d290c0f, 0x7d820d07, 0x0b043a08, 0x45010c02, 0x07072901, 0x09090787, 0x0f54fe07, 0x0f091a01, 0x0f2e370d, 0x026c7b0f, 0x040f0412, 0x0205030a, 0x081b1c26, 0x090e281c, 0x091c281c, 0x0a0d270e, 0x110f0905, 0x21728515, 0xe3431115, 0x4364202e, 0x1f2c0adc, 0x372e0f0f, 0x1a090f0d, 0x14141c01, 0x1d285e87, 0x261c1b08, 0x0a030502, 0x123a7c82, 0x00006c02, 0x00000500, 0x4002c0ff, 0x0700c001, 0x2c002400, 0x68004800, 0xc04a0000, 0x14062207, 0x09914d1f, 0x4d262221, 0x32270588, 0x1417011e, 0x4b010f06, 0x0720077e, 0x4d06ec42, 0x373008ba, 0x012f3436, 0x3e35012e, 0x16073301, 0x06010f14, 0x23203983, 0x22271e82, 0x3426012f, 0x8336013f, 0x33210830, 0x32363435, 0x26347a17, 0x40263426, 0x0d13320e, 0x0d130d40, 0x401a2613, 0x0412180d, 0x01480104, 0x221a848c, 0x82261a20, 0x341c8316, 0x480e0e32, 0x20070401, 0x04040414, 0x070a0348, 0x030a0780, 0x210a8948, 0x48824001, 0xc3342638, 0x60300d26, 0x0d13130d, 0x600d1380, 0x130a261a, 0x0102010b, 0x1b849044, 0x1a264622, 0x80201a82, 0x60251d83, 0x0d260d30, 0x2f1a8244, 0x04871612, 0x0344040a, 0x24240507, 0x44030705, 0xab4a0c8b, 0x001a310a, 0x13000040, 0x37343534, 0x2b060705, 0x35262201, 0x2320c782, 0x35210a87, 0x14ad4937, 0x8e482720, 0x011f2206, 0x05ea4233, 0x01022035, 0x09054245, 0x010a0642, 0x052b6731, 0x09072808, 0x473a0220, 0xbe3e0faa, 0x060a0125, 0x69050942, 0x42421e72, 0x2c01391e, 0x04040202, 0x090875fb, 0xac020207, 0x0683063a, 0x47ca6c21, 0x933b0f97, 0x07020282, 0x27b80809, 0x00002732, 0xffffff03, 0x018001c0, 0x001600c1, 0x8252003b, 0x1e3229b9, 0x14011f02, 0x010e1415, 0x352abc85, 0x33013e37, 0x26343517, 0xb744012b, 0x22232908, 0x14011d06, 0x15013b16, 0x32230483, 0x823d013e, 0x373621b7, 0x2405c141, 0x1523012f, 0x055d4923, 0x15162108, 0xec173233, 0x0b11160c, 0x1e111501, 0x251bc011, 0x19240215, 0x2805089c, 0x061a0608, 0x08052808, 0x04220a85, 0x0b820406, 0x05058b3a, 0x050d0516, 0x1380432b, 0x130d400d, 0x01131a43, 0x160f0920, 0x0303e00c, 0x26293c82, 0xe003031a, 0x1bad2119, 0x26378705, 0x07061b05, 0x83080628, 0xf507213c, 0x16233882, 0x492b0505, 0x13200599, 0x82059b45, 0x00c026d7, 0x00260017, 0x20d7833d, 0x41d68416, 0x35340692, 0x043e3437, 0x36321333, 0x26273435, 0x15060722, 0x13021e14, 0x193bbf96, 0x26150224, 0x261ac01a, 0x0c080615, 0x4c08100d, 0x03342319, 0x0a34030a, 0x92e71610, 0x182221b2, 0x1a23b082, 0x821b2526, 0x0f0835af, 0x04080a0d, 0x192200ff, 0x0404451c, 0x160c1b46, 0x42010910, 0x0433ab8e, 0xc0ff0f00, 0xc001f001, 0x21000700, 0x7d007500, 0x48120000, 0x252e0653, 0x0e141516, 0x22060704, 0x35032e27, 0xea4c3634, 0x46464806, 0x3e32332b, 0x2f343502, 0x33362601, 0x206f8622, 0x05ae44d9, 0x151e0236, 0x2f332d23, 0x08140817, 0x27404d2a, 0x09c00e10, 0x6e080a09, 0x471d2e48, 0x093110e2, 0x0f28090e, 0x03070508, 0x05030406, 0x16100f09, 0x205d855b, 0x39188200, 0x0c750e09, 0x4c623520, 0x09202f41, 0x43110404, 0x0f47825f, 0x04500518, 0x5648fc04, 0x04032437, 0x48070306, 0x092206e3, 0x3f4e000e, 0x01002908, 0x000900c1, 0x37000050, 0x2008cc52, 0x10734725, 0x4408fc59, 0x3722076f, 0x24853336, 0x22012b22, 0x2008a449, 0x08855233, 0x2b061435, 0x01201501, 0xff2838c0, 0x01382800, 0x090907d0, 0x8320fe07, 0x40602105, 0x502b0583, 0x2b40130d, 0x280a0922, 0x82070938, 0x1a132616, 0x0d134013, 0x27198350, 0x20202040, 0xa8383828, 0x04841784, 0x0709202f, 0x13090710, 0x24bc300d, 0x38020638, 0x820c8228, 0x130d2711, 0x30c00d13, 0x1c84130d, 0x7b452020, 0x01002f06, 0x002000c0, 0x00300028, 0x00440038, 0xc78f0100, 0x9b531420, 0x013b2a05, 0x34353632, 0x06362726, 0x05f65022, 0x07862620, 0x07863620, 0x65440520, 0x210e8306, 0x8e82a001, 0xc0fe2822, 0x80220583, 0x06835919, 0x23280b82, 0x34461f1c, 0x26342626, 0x22051550, 0x82131a8d, 0x00ff26c3, 0x26261ac0, 0x2404831a, 0x28380001, 0x2d328480, 0x1b253828, 0x38385038, 0x0a321e28, 0x3182161c, 0x7a342628, 0x1c1c281c, 0x31820428, 0xf31a1322, 0x26211184, 0x26008200, 0xff0d0004, 0x82b101be, 0x002926c3, 0x005e0053, 0x2bc18267, 0x06141516, 0x37012e27, 0x3537013e, 0x3b0c8441, 0x012b0614, 0x37171615, 0x011f3236, 0x020f1416, 0x3e373623, 0x23343502, 0x14011d22, 0x3722df82, 0xc3823435, 0x07293c82, 0x1407010e, 0x33161415, 0x052f5330, 0x26201882, 0x33232484, 0x82322632, 0x2223352b, 0x8e01013d, 0x56577c22, 0x65020279, 0x09072049, 0x07800709, 0x3c080482, 0x182c3820, 0x17050d05, 0xc31b0404, 0x0e180331, 0x38380a0a, 0x01081908, 0x0904080c, 0x02111312, 0x5201060a, 0x1c1c8309, 0x45393738, 0x010d0d1a, 0x573e3301, 0x8001017a, 0x0c704c55, 0x09bd4122, 0x24092226, 0x17040419, 0x3f084982, 0x2014bc1a, 0x111d1013, 0x08043c3d, 0x0b170508, 0x1914110e, 0x0119271b, 0x080a0601, 0x6b1a0816, 0x6a3f201d, 0x7413c23f, 0x00741415, 0xfaff0300, 0x8602c0ff, 0x0500c101, 0x3a002c00, 0x17130000, 0x3721fe82, 0x14e34d01, 0x33363733, 0x011f3221, 0x21230616, 0x17153317, 0x35053335, 0x06204b17, 0x3311352b, 0x4a581215, 0x020b1213, 0x101e463a, 0x0b232308, 0x96011109, 0x0a560911, 0xc2fe1312, 0x40803529, 0x134000ff, 0x0d00ff0d, 0x44014013, 0xfe102244, 0x1d462df1, 0x101b350f, 0x10800e0e, 0x63292022, 0x321ba08c, 0x13130d49, 0xa000010d, 0x08054f45, 0x01600222, 0x000d00c0, 0x00460016, 0x17333700, 0x3d262221, 0x16171601, 0x27373233, 0x2e272223, 0x06173701, 0x8814dd46, 0x060721bf, 0x03832782, 0x83351721, 0x36230835, 0xe27a1537, 0x0c61fe9e, 0x09080712, 0x1c0e0e09, 0x2b070601, 0x1c861724, 0x0306d801, 0x05080413, 0x86d1fd04, 0x09222108, 0x803eca82, 0x193d0911, 0x07062d24, 0x2a1c1c2a, 0x0e890c0d, 0x0809090e, 0x13804007, 0x0103c50d, 0x3e820401, 0x6d285923, 0x10f0461b, 0x0f101c32, 0x5a28680f, 0x21210106, 0x04507004, 0x82030101, 0x8120cf86, 0x152bcf82, 0x44003c00, 0x34130000, 0x82060537, 0x2221299f, 0x3435012e, 0x35053e37, 0x3631ca94, 0x010e2133, 0x2617011d, 0x32363435, 0x06141516, 0x078f4a07, 0x01014033, 0x0712043c, 0x04e7fe17, 0x03010408, 0x0208030d, 0x11b14702, 0x231a363b, 0x201c1c01, 0x50381232, 0x21212b38, 0x1a13131a, 0x0f000113, 0x361ff511, 0x29378216, 0x26090203, 0x140d190c, 0x97415e0a, 0x2d2a350f, 0x493e651d, 0x503d3327, 0x45507070, 0x257b0e68, 0x36252536, 0x2b0c4752, 0x001e0016, 0x004d0042, 0x3700005b, 0x24055459, 0x020e1737, 0x09564307, 0xfe432420, 0x42072006, 0x3e221465, 0xd1833301, 0x07010e30, 0x05021e17, 0x17373634, 0x22212306, 0x2d453526, 0x2b210806, 0x27012e01, 0x11853336, 0x04251b14, 0x14201489, 0x130d4203, 0x1a401a26, 0x2634a001, 0x6b263426, 0x0f9d4885, 0x06a43408, 0x422e2b3e, 0x37152012, 0xfe192113, 0xf52c3c93, 0xe0fe0607, 0xc0011c14, 0x0d13261a, 0x1e280542, 0x0cec1a13, 0x0b0b1b25, 0x2a210b89, 0x200d1317, 0x8220261a, 0x34262349, 0xfe8f67a9, 0x382a7f3e, 0x2a172e42, 0x032b081e, 0x2c411b12, 0x02bd0442, 0x26b0141c, 0x130d201a, 0x13103a23, 0x2c05c748, 0xc1010102, 0x5f005700, 0x00006700, 0x0a324c25, 0x4c069b5a, 0x2b5e0e84, 0x0e864c06, 0x36343523, 0x11884c33, 0xba553320, 0x16062305, 0x764c0433, 0x077e4c06, 0x0ce40136, 0x160c1111, 0x0f1b1d26, 0x0b0c1108, 0x471b0f08, 0x47101810, 0x0b220d82, 0x0d82110c, 0x16261d22, 0xfe21209f, 0x0a205afe, 0x3d8fdc20, 0x11110b23, 0x905e9c0b, 0x1c2c2120, 0x54204f83, 0x08075651, 0xff03002a, 0x02bffff9, 0x00c70187, 0x00590024, 0x37000062, 0x0e173736, 0x14011d01, 0x2e222306, 0x34013d01, 0x15020f26, 0x36012e06, 0x2609944d, 0x010e0133, 0x82260127, 0x011f2110, 0x2213984d, 0x4d011e17, 0x27080c99, 0x1707010e, 0x34250716, 0x26343536, 0x72072223, 0x11f50d0f, 0x080c1016, 0x1b47070d, 0x1809010f, 0x0f090110, 0x16261d1b, 0x022eac83, 0x050d040d, 0x090cb3fd, 0x5d0d0a14, 0x32411808, 0x0816230a, 0x33410109, 0x34d48405, 0x020e180f, 0xfe090ca3, 0x141c01d2, 0x01dc0808, 0x1c06bd07, 0x82428213, 0x26162255, 0x2457821d, 0x12010801, 0x2d3f8617, 0x0205eafe, 0x0ac70104, 0x090c1a0c, 0x458a0949, 0x07212983, 0x32678207, 0x10471a10, 0x150e1018, 0x0c0a7e0d, 0x010201fc, 0x47031c14, 0x802c0657, 0x4f00c001, 0xa7005700, 0xb700af00, 0x200d3b42, 0x41be4e14, 0x7a5f3320, 0x22272407, 0x60011f06, 0x8b4205ba, 0x34104f0e, 0x0a4f2320, 0x05c2610f, 0x3538ef51, 0x13131a91, 0x1d65131a, 0x060c1416, 0x0c06120c, 0x120c3514, 0x0c82350c, 0x0f821220, 0x1d161428, 0x0d0d0810, 0x1e841008, 0x8a110d21, 0x0d11211e, 0x1e860c82, 0xd95fd820, 0x4960200a, 0x784f37ca, 0x82202005, 0x1a13228c, 0x8c809598, 0x8e808b9f, 0x8415209f, 0x82332044, 0x05134a89, 0x00000325, 0x8201c0ff, 0x2e003a01, 0x49003d00, 0x16250000, 0x0614011d, 0x3735012b, 0x27222306, 0x1d060717, 0x05304501, 0xf7633f20, 0x011f2a06, 0x3f323316, 0x013b3601, 0x312a8232, 0x26343607, 0x06010f22, 0x011e1415, 0x04373233, 0xb7533436, 0x01360808, 0x0d130bb5, 0x27234ac0, 0x0d392327, 0x130da002, 0x0d13350b, 0x19060720, 0x1a20201a, 0x20070619, 0x05fd130d, 0x30040d0a, 0x04080405, 0x2c010407, 0x04300509, 0x04820a0d, 0x1310d039, 0xe0130dcd, 0xaa1313dd, 0xe0050529, 0x13cd0d13, 0x0d805010, 0x82110413, 0x13042400, 0x85d3800d, 0x82072027, 0x05052338, 0x42820e09, 0x00214784, 0x05635c00, 0x4d24cf86, 0x6b005500, 0x0520d1b0, 0xcd85f382, 0x17013f24, 0xd0833216, 0xe4853720, 0x63532720, 0x2e078307, 0x35363225, 0x012e3534, 0x3635012b, 0x4e222726, 0x33200501, 0xfe2ff3a2, 0x040f0fc0, 0x05030603, 0x03101003, 0x8204070a, 0x0a07210d, 0x13350b85, 0x22171722, 0x0a2f0117, 0x0a0f010f, 0x0a0d0105, 0x0f0a0101, 0x200d4107, 0x48827020, 0x51820520, 0x0b854a8b, 0x4e82bb20, 0x61221723, 0x2148830f, 0x5682050c, 0x0b0e4d08, 0x01000730, 0xc0fffaff, 0xc0010602, 0x00001700, 0x33150701, 0x14151632, 0x3522012b, 0x013b3634, 0x36262735, 0x16322133, 0x38d6f601, 0xf0081711, 0x38111708, 0x171110d6, 0x1117bc01, 0xc0d68601, 0x08081117, 0xd6c01711, 0x002a2a10, 0x01210082, 0x07ff5500, 0x00001e22, 0x2c05d25b, 0x22061411, 0x33363426, 0x05351732, 0x310b8815, 0x01373411, 0x0d0505d6, 0x38503813, 0x10102838, 0x088600ff, 0xbe011630, 0xfe0d1302, 0x25251ba0, 0xb9042536, 0x0885ea4b, 0x18050123, 0x06b34c07, 0x0002bf22, 0x1925ab82, 0x00002100, 0x07924e25, 0x013d2624, 0x66832306, 0x0720bb83, 0xfb436b82, 0xf9013b07, 0x071c0707, 0x07640714, 0x7a564838, 0x2c7aac7a, 0xfa070a10, 0x6a4b4b6a, 0x1682054b, 0x82071c21, 0x100a2219, 0x2518822c, 0x3848567a, 0x17820707, 0x006a4b2e, 0xfdff0100, 0x0302e0ff, 0x1200a401, 0x44080c82, 0x010f011e, 0x012f2206, 0x36373626, 0x37011f16, 0xce01013e, 0xc12b062f, 0xc10a1a0a, 0x292f062b, 0x1414266b, 0x81016b26, 0xc82b7c28, 0x2bc80a0a, 0x0923287c, 0x27141427, 0x00010009, 0x02baff0f, 0x00c10131, 0x23478218, 0x021f3236, 0x41084b83, 0x2f061617, 0x26060701, 0x2627013f, 0x01013f36, 0x09280903, 0x0c149241, 0x03196a0e, 0x83831120, 0x19032011, 0x140c0e6a, 0x12ae0192, 0x02168412, 0x92670e26, 0x44091713, 0x13180a44, 0x260e6792, 0xbf4d1602, 0xc0012708, 0x0700c001, 0xf7591b00, 0x07445209, 0x52222121, 0x16240665, 0x15013732, 0x262ff184, 0x141c4f37, 0x1c14a0fe, 0x2311374f, 0x84c0234c, 0x4f6b2cec, 0x1c142a37, 0x372a141c, 0x8310104f, 0x85092057, 0x80013e5c, 0x3b002f00, 0x53004700, 0x6b005f00, 0x83007700, 0x00008f00, 0x15163201, 0x2b061411, 0x06266701, 0x07862120, 0x29066767, 0x1415013b, 0x3d32013b, 0x07862101, 0x15852787, 0x8f057567, 0x8605200b, 0x20178f43, 0x21179617, 0x4789013d, 0x0ae8012b, 0x080a0e0e, 0xfe0c280c, 0x200482c0, 0x210d8708, 0x12834001, 0x04828020, 0x0124028e, 0x0cc80c10, 0x70200288, 0x0e821d8e, 0x0e80012b, 0x0ab0fe0a, 0x0c0c140e, 0x23038314, 0x50010a0e, 0xfe230d89, 0x820c28cc, 0x8a6c2024, 0x60c42605, 0x0c600c0c, 0x200584b4, 0x351d908c, 0x00040000, 0x02e0ff00, 0x00a00100, 0x001f000f, 0x003f002f, 0x3d4f0100, 0x2336210d, 0x230c4c4f, 0x34033336, 0x69064f45, 0x35210584, 0x08315405, 0x011d1628, 0x01230614, 0xe883c028, 0x46200483, 0x0a230887, 0x870a0e18, 0x28012115, 0x01241588, 0xa00a0ea0, 0x048c0d83, 0x88f8fe21, 0x89182012, 0x0000221f, 0x31ab8a09, 0x00300020, 0x00520042, 0x00720062, 0x00920082, 0x97541300, 0x209e8508, 0x06045317, 0x2206cc54, 0x8e371516, 0x622320b6, 0x87420560, 0x16322206, 0x069b4215, 0x22063450, 0x8e073336, 0x8e252030, 0x8e0720e7, 0x8e25200f, 0x0e95252f, 0x0e0a650a, 0xb6240484, 0x66060b07, 0x04820b83, 0x16892020, 0x07042024, 0x17870508, 0x2b86ce20, 0x180a0e22, 0x01212189, 0x87158883, 0x0a0e254b, 0x0a0ecdfe, 0x01223587, 0x21835088, 0xfa200483, 0x0e216482, 0x200e840a, 0x241387a0, 0x0609050a, 0x20148604, 0x82078688, 0x88b82021, 0x20148a1f, 0x201f89a0, 0x201f8868, 0x20008200, 0x10234206, 0x5f004f25, 0x41370000, 0x2f410e71, 0x4213200f, 0x0f640e37, 0x05ed6a06, 0x23061423, 0x07f96a01, 0x2105a564, 0x4f411735, 0x411f8805, 0x0a8a0a3f, 0x10417d20, 0x83b52008, 0x1b012109, 0xfe230583, 0x860a0ecd, 0x0ae52309, 0x1889180e, 0x1d41e820, 0x88aa2008, 0xa80121d2, 0xfe21e889, 0x210b8940, 0x2288a801, 0x1589b820, 0x0120ff82, 0x02250383, 0x007f0100, 0x20f58214, 0x05db5627, 0x50011f21, 0x072f06de, 0xae220601, 0x250707a7, 0x70081507, 0x821508f0, 0xfe072b08, 0x091607d9, 0x071607a6, 0x13830824, 0x82240821, 0xdafe220a, 0x29478308, 0x0f00ffff, 0x71016101, 0x4b822300, 0x22461720, 0x06072407, 0x83012f22, 0x2e5d9058, 0x090964f3, 0x091a0a16, 0x1a096464, 0x8309160a, 0x200f8c07, 0x821796c0, 0x8227842f, 0x00032373, 0x9746ff00, 0x001b2a05, 0x003d0035, 0x14150100, 0x2303842b, 0x23013d22, 0x34230382, 0x8235013b, 0x1d322503, 0x13323301, 0xb2468a85, 0x011f250e, 0x34261416, 0x25055348, 0x380c3001, 0x0382200c, 0xc9200686, 0x2910c246, 0x50a80764, 0x70505070, 0x268a0001, 0xfe380c23, 0x0fd146d7, 0x14076423, 0x212883ce, 0xa3890050, 0x25000b24, 0xa3862d00, 0x93a59b85, 0x0c0ca824, 0x8b9d0ca8, 0x839bb582, 0x0700022c, 0xf801c7ff, 0x2900c001, 0x81823900, 0x15011e22, 0x3105654d, 0x013e3435, 0x1f163637, 0x07061601, 0x1415030e, 0xa3533316, 0x012e2605, 0x013e013f, 0x05074507, 0x08086844, 0x30900128, 0x43679138, 0x2e1a4372, 0x05150920, 0x07040410, 0x0a111910, 0x63454662, 0x04072024, 0x15051004, 0x200a0e5f, 0x04840e0a, 0x8a012708, 0x673d6b22, 0x44724291, 0x173e4c29, 0x1c090506, 0x0c051208, 0x1527221d, 0x47626345, 0x05184727, 0x091c0812, 0x2e83d805, 0x0483f020, 0x05000028, 0xc0ff1800, 0xa7826802, 0x2307b345, 0x3700004f, 0x440e6d43, 0x25200fcd, 0x26071b47, 0x11352622, 0x82333634, 0x052b472f, 0xd8250f96, 0x07090907, 0x20048330, 0x20098850, 0x840f8401, 0x88b02004, 0x23098914, 0xc00709a0, 0x04821683, 0x07096023, 0x820a8360, 0x09c02404, 0x83e0fe07, 0x2001230b, 0x17820907, 0x8480fe21, 0x8305820c, 0x2213820c, 0x82010709, 0x00002b1f, 0x10000200, 0xf001c1ff, 0xd551bf01, 0x16253305, 0x06070607, 0x0706012f, 0x06071415, 0x013d2627, 0x07832726, 0x3f26273a, 0x37342601, 0x36372627, 0x011f3637, 0x34353736, 0x16173637, 0x1716011d, 0x17250783, 0x16010f16, 0x07b64d07, 0x09e7013b, 0x06261103, 0x221b2b08, 0x0a363709, 0x092a1b22, 0x03112606, 0x03032a09, 0x2119842a, 0x19832a09, 0x89093721, 0x06270819, 0x2f42de06, 0x842f422f, 0x29350a04, 0x17190407, 0x020a310c, 0x0a020c0c, 0x19170c31, 0x35290704, 0x11190509, 0x84191124, 0x1805211e, 0x0a251e90, 0x23231904, 0x2140822d, 0xd382422f, 0xffffff2b, 0x014102e0, 0x001e00a0, 0x05654944, 0x37450120, 0x2b262609, 0x1d062201, 0x08aa4601, 0x25622520, 0x012f2607, 0x010f2226, 0x158b5e06, 0x0418012c, 0x09b80408, 0x09077007, 0x0c690709, 0x290a8205, 0x0304dc01, 0x05050419, 0x1d82eb03, 0x0403eb3b, 0x03190406, 0x220efd04, 0x05075a0d, 0x01070538, 0x9802022c, 0x0a0907a4, 0x05984106, 0x05070426, 0x31a40709, 0x032a2682, 0xc203051f, 0x03c20202, 0x35831f05, 0x0b0bd02a, 0x0705494a, 0x008b0507, 0x022d0082, 0xc8ff0800, 0xb801f801, 0x1d000700, 0x08db5800, 0x35360524, 0x535a2f34, 0x1f143e09, 0x32331601, 0x91ce9937, 0x0191ce91, 0x3a060454, 0x07200709, 0x04430f09, 0x01040806, 0x221482b8, 0x82a8ce91, 0x2a05220b, 0x22b38390, 0x820c139c, 0x00340878, 0x00fbff03, 0x01450200, 0x00220080, 0x00420030, 0x06162500, 0x3427012b, 0x22012b26, 0x0715010e, 0x37262223, 0x013b3613, 0x3b161407, 0x35363201, 0x17323327, 0x2206b850, 0x83012f36, 0x32172425, 0x8535013e, 0x15063030, 0x011e1407, 0x073d0233, 0x0bc41112, 0x82440709, 0xc40b2ce0, 0x8c071211, 0x03621308, 0x821e0305, 0x13622b03, 0x0104ad08, 0x06280607, 0x07820107, 0x37072829, 0x06040804, 0x822e0609, 0x24098203, 0x621d102d, 0x3f108206, 0x101d6204, 0x17134001, 0x04050504, 0x2c341317, 0x05080805, 0x05b0072c, 0x06300508, 0x30060808, 0x00220882, 0x4b4c0004, 0x00152e07, 0x0033002b, 0x1300003b, 0x1d163233, 0x4b048201, 0x3b25078f, 0x36343501, 0x080d6101, 0xca823420, 0x32161723, 0x2022833f, 0x064b4506, 0x0805be71, 0xd832162d, 0x580e0a50, 0x98090a0d, 0x98061006, 0x580d0a09, 0x0e32010e, 0x0a30fe0a, 0x930a0e0e, 0x0f2a0f31, 0x0e0a9331, 0x0c100c7c, 0x844c100c, 0xc0012505, 0x19a80a0e, 0x2e822f82, 0x0aa81926, 0x7088fe0e, 0x04822b83, 0x0f0f3125, 0x836a0e31, 0x832c8229, 0x02002202, 0x27008200, 0x80014002, 0x1b001300, 0x2007634e, 0x05824b23, 0x013f3c08, 0x32213336, 0x33070517, 0x33373317, 0x08380227, 0x20fe141c, 0x6a081c14, 0x0c011a0e, 0xd4fe0e1a, 0x70207b55, 0xcc557b20, 0x14810f0c, 0x81141c1c, 0x159f0c0f, 0x40802b15, 0x82008040, 0x00012a00, 0x02c8ff07, 0x00c00101, 0x08d35839, 0x2b084149, 0x2e173330, 0x06222302, 0x32331614, 0x3305c171, 0x07141516, 0x2e222306, 0x36343501, 0x011e3233, 0x31342717, 0x01260982, 0x070705f4, 0x0483c805, 0x65012208, 0x1e382c10, 0x49676749, 0x04043242, 0x03220405, 0x43604604, 0x66924273, 0x173a4725, 0x01050704, 0x2b2986c0, 0x0507052f, 0x67132318, 0x032c6792, 0x05302682, 0x42400306, 0x92664472, 0x521b2715, 0x00070501, 0x2006d75d, 0x229b8200, 0x82530029, 0x226a839d, 0x5032013b, 0x6c480533, 0x2e172206, 0x5da08201, 0x3e2a08e1, 0x16323301, 0x36320317, 0x29823637, 0x0e20ad83, 0x26261f82, 0x31141727, 0xd7820614, 0x8307e445, 0x27232943, 0xb901011e, 0x0c2f0507, 0x66349086, 0x3e2d4d18, 0x0a020e5f, 0x11070531, 0x62385a89, 0x603dbd23, 0x01210e85, 0x820f8410, 0x212d8bbe, 0xa782b301, 0xf6840c20, 0x2424cc83, 0x093b4c2a, 0x0126e082, 0x292e7357, 0x0c8aaffe, 0x278bcf83, 0x07000022, 0x670a9349, 0x33280561, 0x4b003f00, 0x21050000, 0x2006d045, 0x05f04521, 0x63220021, 0x0620056b, 0x3720078e, 0x200abf4c, 0x290b9615, 0x60fed001, 0x141c1c14, 0x0582a001, 0x22adfe24, 0x028d1717, 0xaa4cf820, 0x20088808, 0x842d8220, 0x82fe2033, 0x68012133, 0x49203084, 0x9f26058a, 0x200c0c20, 0x058a540c, 0x2406a741, 0xc001c001, 0x20c98300, 0x11e15b00, 0x32363427, 0x23011d16, 0x056e6535, 0x82900121, 0x8314208d, 0x141c2d5f, 0x597e5918, 0x2a3c2a50, 0xc0141ce0, 0x04821583, 0x593f483c, 0x48483f59, 0x1e2a2a1e, 0x01000048, 0xc0ff0800, 0xc1010002, 0x00002700, 0x05763201, 0x06072705, 0x23262223, 0x88450722, 0x11352d06, 0x36343526, 0x17011e17, 0x07141514, 0x3d086b82, 0x45305e01, 0x3b0e1e0f, 0x1a68243f, 0x0a0e343e, 0x180e0a10, 0x1f161822, 0x47210401, 0x205d0168, 0xf3121207, 0x23290911, 0x0e0a5e17, 0x82010a0e, 0x21181d11, 0x151e0101, 0x0a0a0202, 0x7382230c, 0x2307534d, 0x1200002f, 0x1422ba83, 0x925f010f, 0x063f4205, 0xca861720, 0x220c484d, 0x8226012f, 0xd496281e, 0x020e1296, 0x83182d41, 0x2f18275a, 0x719e7121, 0x0c852f21, 0x02412d3b, 0xa001120e, 0x14306a96, 0x3f2d0709, 0x0ab00a0e, 0x4f02220e, 0x024f7171, 0x270c8422, 0x09072d3f, 0x006a3014, 0x01340082, 0xfcff0000, 0x84010001, 0x00001100, 0x15163613, 0x2f061411, 0x82061d53, 0x0bd72675, 0x590b1e1e, 0x32638366, 0x0b790166, 0xb0fe100c, 0x590b0c10, 0x0a900a0e, 0x8202000e, 0x01fa223b, 0x203b8481, 0x313d9323, 0x14011e17, 0x2e060706, 0x36373601, 0x012e2734, 0x4f8b013e, 0x1915d42b, 0x14081519, 0x15090509, 0x22048215, 0x8d780114, 0x0c13325f, 0x0c293029, 0x13110605, 0x0c2e0c05, 0x06111305, 0x05874e00, 0x4002ce2c, 0x1100b201, 0x3e002700, 0x77935000, 0x77892520, 0x35023e24, 0x7a842634, 0x8a831620, 0x26272629, 0x023e3736, 0x84012e34, 0x16172213, 0x08a29c07, 0x3c420129, 0x083c4444, 0x09040b14, 0x391a2f21, 0x0b040931, 0x292d2814, 0x05051309, 0x1d130904, 0x131d0f0f, 0x140a0409, 0x8f612908, 0x0e2b41cb, 0x278c2d08, 0x277e8e7e, 0x14100506, 0x4a3d1605, 0x21683b27, 0x05101405, 0x195360c2, 0x09080506, 0x240c0613, 0x242c2e2c, 0x1113060c, 0x36190605, 0x2e08f892, 0xff000009, 0x01c001e0, 0x000300a0, 0x000b0007, 0x0013000f, 0x00230017, 0x002b0027, 0x33013d00, 0x33152715, 0x15333735, 0x23353723, 0x85350115, 0x8225200f, 0x200e820f, 0x210e8223, 0x0b821533, 0x03822720, 0x4080c024, 0x0482c080, 0x0483fe20, 0x20200129, 0x60402060, 0x82202040, 0x83e02002, 0x40402511, 0x404040c0, 0x22821c82, 0x8040402d, 0x20c06020, 0x20202080, 0x82001000, 0x00022300, 0x7f8c8001, 0x1f001b22, 0x2f2d8386, 0x37003300, 0x3f003b00, 0x11310000, 0x2a01bc33, 0x12090912, 0x1b092409, 0x83091b12, 0x121a2300, 0x0083121b, 0x1b120922, 0x12241083, 0x80fe8001, 0xef4503bb, 0x0011240b, 0x43000019, 0x1f21066b, 0x08875301, 0x03453620, 0x141c2a06, 0xd40e14cc, 0x0ecc0e0e, 0x29068228, 0x1c1c2884, 0xccc41c28, 0x0c821c14, 0x14822820, 0xd0200682, 0x1c211182, 0x083b4d28, 0xc0018023, 0x20538300, 0x0dd55329, 0x3b363425, 0x4a173201, 0x052b076a, 0x27220607, 0x2f343637, 0x83323301, 0xf2012174, 0x6f846187, 0x6684c220, 0x83320221, 0x1aae2474, 0x8331c51a, 0x82de2082, 0x0ecc2181, 0x91827082, 0x920e1c22, 0xa2207584, 0xae241082, 0xc41b4a1b, 0x82831682, 0x45056b48, 0x2324061f, 0x38002f00, 0x14248582, 0x17140607, 0x21087d68, 0x4b4f1135, 0x05152105, 0x5206d952, 0x13230fcb, 0x83213726, 0x013337fc, 0x030309c0, 0xfe0a0e09, 0x383828b8, 0x0a480128, 0x06c0fe0e, 0x028806d4, 0x0303fd33, 0x130de3fe, 0x0c580d13, 0x0b340b07, 0x0a100b08, 0x2b27820e, 0x0e382840, 0x06146e0a, 0x46061406, 0xff350584, 0x13202000, 0x0100131a, 0xc0ff0000, 0xc0018001, 0x00000a00, 0x34868715, 0x141c2711, 0x1c142001, 0xd00140c0, 0x141c1c14, 0x007030fe, 0x0a334900, 0x27002324, 0xc7833000, 0x84320121, 0x492b20c3, 0xc0570925, 0x33362205, 0x28d18435, 0x1516011f, 0x15213503, 0x05606025, 0x5b152321, 0x013b07c2, 0x09251bc0, 0x0d133007, 0x130dc0fe, 0x25090730, 0x010d131b, 0x2e090d13, 0x82ff4009, 0x2f118294, 0x142601c0, 0x0e140e0e, 0x1b250001, 0x60090770, 0x6028d483, 0x1b700709, 0x130da025, 0x0d252782, 0x60608dfe, 0x221182e0, 0x5b48a030, 0x0320056e, 0x28085347, 0x0022001a, 0x0100002a, 0x069a5011, 0x3b25d782, 0x023e3701, 0x20af823b, 0x0cbf491f, 0x22053356, 0x82000232, 0x836020e4, 0x0c583dea, 0x0a120d04, 0x06180f7e, 0x1c14580c, 0x46644688, 0x34266446, 0x48343448, 0xe0fe3001, 0x012c2183, 0x211c1420, 0x11080e09, 0xd61c210e, 0x46211e83, 0x221e839c, 0x83020034, 0xc001287f, 0x2b00a101, 0x47002e00, 0x4d490707, 0x013b2407, 0x53072327, 0x3b230e9a, 0x82361301, 0x13172693, 0x01273327, 0x081e61b0, 0x98181424, 0x0d881418, 0x0883172b, 0x08163016, 0x2f5ee883, 0x09fb6020, 0x89404021, 0x6a01350b, 0x96fe1616, 0x00008190, 0x12000300, 0x8401e0ff, 0x1d00a001, 0x2305874f, 0x07011e25, 0x200bbb46, 0x09925e11, 0x0607162b, 0x32331527, 0x23263436, 0x05d66411, 0x4d011529, 0x05041c1b, 0x83d13652, 0x2020217d, 0xc7260583, 0x03064c39, 0xf98357d3, 0x20201830, 0x15d25718, 0x4634243f, 0x07300709, 0x8f820109, 0x54360682, 0x60612439, 0xfe1c281c, 0x212e21e0, 0x01000070, 0xe0ff0000, 0x83824001, 0x0c822320, 0x06141525, 0x9103012b, 0x20878af8, 0x22cb8201, 0x4e2f503f, 0x0921067b, 0x210b8907, 0x83829001, 0x8ac0fe21, 0x82f686ea, 0x056f41ea, 0x82430221, 0x002d2267, 0x0ebd4a49, 0x90112321, 0x23112171, 0x2409b84d, 0x32013336, 0x0ae74b16, 0x3f268c82, 0x1f323601, 0xac821601, 0x274f1520, 0x21798205, 0x93832838, 0x0483a020, 0x30064d64, 0x20020709, 0x5008080b, 0x50040e04, 0x300b0808, 0x210c8b30, 0x364fa001, 0xfe202206, 0x20b28ad0, 0x84498230, 0xb0fe2a18, 0x05500714, 0x14075005, 0x820888e0, 0x000226c8, 0x01ddff00, 0x20c795c0, 0x20c79015, 0x52c78d35, 0x26220583, 0x1683013d, 0x27058452, 0x011d1636, 0x36343533, 0x82055242, 0x1878217d, 0x21084d42, 0x99867818, 0x8f5b0121, 0x8314208a, 0x835020bf, 0x70102129, 0x7021be89, 0x06445010, 0x95fbfe21, 0x0b3022f5, 0x051b4408, 0x56050747, 0x37200887, 0x650e0f54, 0x362005cc, 0x20081f54, 0x0d416517, 0x51653320, 0x0d33270e, 0x05080805, 0x05830601, 0x89fafe21, 0x839d200b, 0x60fe218e, 0x01210583, 0x230b89a0, 0x26050860, 0x04822483, 0x89000121, 0x0a25430b, 0x8900ff21, 0x040021d4, 0x8808b747, 0x8f7f8faf, 0x06ff540f, 0x17873b20, 0x230b4943, 0x0614011d, 0x91056d41, 0x055c2599, 0xe8050707, 0x0120048c, 0x8b0ac843, 0x40012496, 0x83280507, 0x21048229, 0x0b8900ff, 0x20245f41, 0x1e4f4115, 0x1020cf8f, 0x41094241, 0x01210946, 0x0f6f41a3, 0x20057b41, 0x093b41e0, 0x200b8d43, 0x09694180, 0x7541ff20, 0x4caf940a, 0x33200e17, 0x5f410faf, 0x0b054217, 0x63410b8b, 0x8980200a, 0x290a95bd, 0x00000600, 0x0002f0ff, 0x47599001, 0x05235708, 0x570e9553, 0xc3420f13, 0x07e34506, 0x51703320, 0x10d3420e, 0x50201f8f, 0x22060252, 0x92400709, 0xe0012109, 0xfe211483, 0x200583c0, 0x91208401, 0x8950200b, 0x7b01203a, 0x10840552, 0x1689a020, 0x3d45b020, 0x20072311, 0x21820907, 0x1b840582, 0x00000023, 0x080f4305, 0x1b000b28, 0x3b002b00, 0x2b574b00, 0x1d162408, 0x8f061401, 0x089964b9, 0x5406e543, 0x0f860fbf, 0x2b06a650, 0x60653336, 0x07600505, 0x44011414, 0x240f6c42, 0x080805e6, 0x20048905, 0x2c1f89e3, 0x0e046055, 0x08086004, 0x080bc00b, 0x42c5892d, 0x0a8b0a74, 0xcf982089, 0x73260621, 0x142106c5, 0x20cfbf07, 0x20cb821b, 0x21d38207, 0xcfaa3501, 0x0820ca85, 0x9520d683, 0x0352cfad, 0x000f2209, 0x08295d19, 0x2c502320, 0x4e052007, 0x35260721, 0x1c145001, 0xa948141c, 0x10de2706, 0x6e0f2322, 0x10888001, 0x1c142031, 0x14110b26, 0x111400ff, 0x009e4b0b, 0x82030000, 0x02002e03, 0x00800100, 0x0017000f, 0x29000022, 0x157f5001, 0x35210726, 0x010f2627, 0x56500383, 0x2ea3300d, 0x212e2121, 0x58800168, 0x38880808, 0x4a480808, 0x7285053a, 0x82480121, 0x2e21231b, 0x1c8770e7, 0x00820020, 0x00000128, 0x8001bfff, 0x7182c001, 0x2e170023, 0x06ce6706, 0x050e3008, 0xac220607, 0x221a3d18, 0x70030d0b, 0x0d0370a0, 0x3d1a220b, 0x361a0718, 0x35245823, 0x11192216, 0x50707050, 0x16221911, 0x23582435, 0x5400000a, 0x0d240bdb, 0x34360000, 0x31057d78, 0x34363237, 0x91082326, 0xce9191ce, 0x6c6c4c67, 0x0983594c, 0x6c409124, 0x33836c98, 0xc0ff0032, 0xc1016001, 0x21001100, 0x1e130000, 0x06141503, 0x3426f182, 0x3637023e, 0x3a840332, 0x31080e83, 0x15062226, 0x10cd1614, 0x67212c36, 0x2d216792, 0x2d071035, 0x09090717, 0x092f2107, 0x0142090e, 0x365f34aa, 0x684a2649, 0x48264a68, 0x16345e38, 0x168240fe, 0x83212f21, 0x422e2521, 0x03000000, 0xc022e382, 0xe3824002, 0x1a000c30, 0x00003700, 0x0f161701, 0x012e0602, 0xab6f023f, 0x012f2906, 0x36013f26, 0x34031732, 0x67066376, 0x824b05f1, 0x010f3a06, 0x11012b06, 0x5a930121, 0x5cdb0707, 0x01060b06, 0xa907db0a, 0x07240b0b, 0x28118207, 0x0c200b24, 0x05280484, 0x05715f0f, 0x01141c2e, 0x0606081e, 0xe6050328, 0x6d014001, 0xdb222082, 0x3382010a, 0x07db5c27, 0x0c200c10, 0x2d338423, 0xfe0c0c23, 0x280305b2, 0x9e080606, 0xe6511c14, 0x050f2505, 0xc0fe0428, 0x0036ae82, 0xff400001, 0x018001da, 0x001500a6, 0x34111700, 0x1d32013b, 0x55423701, 0x14152e07, 0x4022012b, 0xc40c300c, 0x0f25250f, 0x320882c4, 0x0ca80114, 0x0db5b00c, 0x80fe1412, 0xb40d1214, 0x82000caf, 0xff002b43, 0x010002fa, 0x001f0086, 0x43893500, 0x0621488c, 0x05b95a2f, 0x0c280c25, 0x82250fac, 0x0f252202, 0x820282ac, 0x010c260e, 0x980c0c68, 0x2052829d, 0x21048384, 0x5782c0fe, 0x83839c21, 0x0c972404, 0x87000200, 0x000b295b, 0x37000017, 0x013f3426, 0x27209d85, 0x0c230b8b, 0x83c00c0c, 0x864020a2, 0x0aa72407, 0x82a00a1e, 0x204c8451, 0x210c8ba0, 0xaf840000, 0xc101b82f, 0x0b00c801, 0x16250000, 0x06050714, 0x38b68226, 0xa8011736, 0xa0fe1818, 0x15333117, 0x0e360ee9, 0x1c1b0ed0, 0x191ea001, 0x8432820e, 0x01e12687, 0x00a101c0, 0x20e5830f, 0x089a6017, 0x2105ad53, 0xe3701425, 0x34112405, 0x82013b36, 0x60902512, 0x141c1c14, 0x01200483, 0x0c830786, 0x64531f20, 0x4130200b, 0x1c21078c, 0x4b608214, 0xc022053b, 0x5f82a001, 0x43070f61, 0x395308e5, 0xa001210b, 0x8208fb41, 0x0f1f415e, 0x0f21cd82, 0x73cd8601, 0xd98605dc, 0x2041f420, 0x41d9200e, 0x01240613, 0x0d121440, 0x84072041, 0x0ecf410c, 0x1411012a, 0x3d22012b, 0x26060701, 0x35200484, 0x1f24e282, 0x36343501, 0xeb820483, 0x41000221, 0x012311d1, 0x4198fe74, 0x57840bd2, 0x4208d241, 0x5f8a0d73, 0x55825a87, 0x42800121, 0x01230b74, 0x4258fe94, 0x01200675, 0x31087542, 0xff020000, 0x01e0fff7, 0x00a001c9, 0x001b000f, 0xb1572500, 0x2133270a, 0x22251632, 0xdb4b3f26, 0x01232b06, 0xfe0d13c0, 0x13130d80, 0x0582010d, 0x1f70fe2e, 0x0eb01519, 0x15b00e2a, 0x40401f19, 0x04831683, 0x17393338, 0xc01010c0, 0x00003917, 0x1b000100, 0x2501e5ff, 0x14009b01, 0x46850000, 0x20066463, 0x05b5630f, 0xc223342b, 0x16071407, 0x9b070107, 0x2004829b, 0x240c8216, 0xc2d108c2, 0x20128207, 0x83128314, 0x8207201b, 0x274b8f22, 0x22060725, 0x012e012f, 0x2006a663, 0x05725036, 0x4c921d20, 0x4c93af20, 0x200bfb44, 0x0ad75923, 0x63343521, 0x2320083d, 0x5005ae6f, 0x33210651, 0x06dd5932, 0x5c0c8824, 0x0382380c, 0xdd590686, 0x8a832006, 0x5c0c2112, 0x200d5b45, 0x275f8913, 0x3d322117, 0x21233401, 0x4f855a83, 0x08017427, 0xf8fe0c0c, 0x2047860c, 0x05575e8f, 0x8b0c9b45, 0x3727249f, 0x46012f36, 0x06230647, 0x8207011f, 0x3f162303, 0x03821701, 0x4f853620, 0x4272012b, 0x28080842, 0x41410908, 0x20068209, 0x860d8c08, 0x93a82064, 0x5a29861b, 0x17200ef3, 0xe34f0f82, 0x8d032006, 0x0116317a, 0x91ce91f8, 0xb884ce91, 0x0c160c0c, 0x0b46960b, 0x0c240682, 0x27010b68, 0x91271583, 0x0bb885fe, 0x830b170b, 0x24068317, 0x00000c68, 0x0a4b5b03, 0x33002b22, 0x07215989, 0x23c78422, 0x33023e37, 0x2305976e, 0x011d020e, 0x24067064, 0x3435023e, 0x07bc5726, 0x603f7286, 0x09062b4a, 0x0b070923, 0x110d140d, 0x12110f1d, 0x380c1411, 0x1a1f1a0c, 0x1b262048, 0x861b261b, 0x40523e82, 0x071a0709, 0x0a0d0d09, 0x0d0b0e13, 0x1e0c0a0a, 0x0c0c0413, 0x10120901, 0x3c2a1a26, 0x212882f8, 0x8482261b, 0x0f22978c, 0xad412700, 0x53242009, 0x1720062f, 0x820a1542, 0x42152096, 0x11420619, 0x22092a07, 0x19221919, 0x0c0c0c0e, 0x82038240, 0x41582002, 0x232007cd, 0x19281782, 0x0c18e522, 0x180c0c64, 0x18211d82, 0x306f850c, 0x02c0ff00, 0x00c00100, 0x00500028, 0x25000058, 0x25ee8232, 0x020e012b, 0x24441507, 0x012e2205, 0x06976027, 0x37013e23, 0x054c4635, 0x17011e23, 0x860d8207, 0x86218217, 0x010e232b, 0x3f853307, 0x2b842182, 0x41341521, 0x012f06b1, 0x1e0c0cf4, 0x2e4e3307, 0x460c280c, 0x821e0b65, 0x650b220d, 0x2a0c8546, 0x0a3f2cb6, 0x290c0c29, 0x822c3f0a, 0x250c8c10, 0x13131a13, 0x1582e01a, 0x334e2e23, 0x86348c07, 0x92b5200c, 0x20418534, 0x203a8379, 0x41e48213, 0x0d210beb, 0x0a014300, 0x012e042b, 0x04360107, 0x0137011e, 0x06b14206, 0x8860aa28, 0x26010134, 0x078291fe, 0x26fffe22, 0x2706a442, 0x260b6015, 0x1c34fffe, 0x01220682, 0x52823401, 0xff01002d, 0x01e5ffff, 0x009b01c0, 0x4300001d, 0x262105ff, 0x05534434, 0x0f061624, 0x6b4c2101, 0x21232c05, 0x01011e17, 0x14071702, 0x8207c207, 0x07143302, 0x07010717, 0x0a1f0178, 0xfe0a0e0e, 0x010778e1, 0x17851603, 0x28061744, 0x200a0e73, 0x07730e0a, 0x25638414, 0xe5ff0000, 0x6385c101, 0x44371321, 0xaa440556, 0x3f362206, 0x05345c01, 0x21333626, 0xbe012e27, 0xfe21628f, 0x216283e1, 0x62821f01, 0x9c7d0121, 0xff052663, 0x01bb01e0, 0x20c783a1, 0x08f16237, 0x82141621, 0x2f262367, 0x03471101, 0x0e072307, 0x46962301, 0x7b8a9e20, 0x82081621, 0x257b8ade, 0x05000100, 0x5f82dfff, 0x5f83a020, 0x63632520, 0x34262808, 0x1636013f, 0x4711011f, 0x1125065b, 0x01013e37, 0x2060969d, 0x41dc8fe2, 0x27410a3f, 0x02dc2907, 0x00a50101, 0x0100001e, 0x4b08ba85, 0x030e013d, 0x06161714, 0x35012e27, 0x37033e34, 0x17363435, 0x0808f801, 0x311c0cb0, 0x0d173244, 0x230b1504, 0x4c321e30, 0x0c1c3450, 0x16070201, 0x0d0a9807, 0x0b01580f, 0x2b402a19, 0x19080e0c, 0x422c2c55, 0x01091929, 0x0a0d0f50, 0x04236383, 0x51ff0000, 0x10290513, 0x32002100, 0x00004300, 0x21538211, 0xee42013b, 0x14152605, 0x2522012b, 0x220e8234, 0x43011d16, 0x23230537, 0x5c173522, 0x3d2107df, 0x231a8201, 0x07333435, 0x26201a83, 0x1a820d84, 0x15323331, 0x0c7c0a0e, 0x280c540c, 0x0c20010c, 0x820e0a7c, 0x0c542308, 0x15860c94, 0x1288ec20, 0x1c9b0120, 0xa7962f88, 0x8406695a, 0x823320aa, 0x48142076, 0x858405d8, 0x4805a343, 0xce43060e, 0x16322306, 0xc2851715, 0x84363421, 0x210c8234, 0x9d87b401, 0x88e0fe21, 0x83ad84b3, 0x82c02099, 0x21158509, 0x1d880001, 0xce861820, 0x58fe0c22, 0x1984e285, 0x00214685, 0x091b4900, 0x5d552320, 0x08d4530a, 0x78085054, 0x012c0829, 0x13130da0, 0x0d13900d, 0x90130d20, 0xf0200a89, 0x1b85108f, 0x00275f83, 0x00c00190, 0x880f00f0, 0x08bf4e5f, 0x3b484b85, 0x84408505, 0x82002045, 0x00012600, 0x01c0ff13, 0x203982ed, 0x3a378236, 0x010f011e, 0x012f010e, 0x2b061617, 0x3f262201, 0x26060701, 0x3626012f, 0x6427013f, 0x1f2c056f, 0x3e262701, 0x32013b01, 0x37010f16, 0x37059564, 0xde01010f, 0x13050509, 0x8b081405, 0x0b0e0103, 0x010e0b26, 0x14088b03, 0x05231182, 0x898e8e09, 0x0b07221a, 0x311b8d07, 0x09130572, 0x06050922, 0x0e0ba254, 0x54a20b0e, 0x0e820506, 0x4e051323, 0x8217884e, 0x44188b32, 0x0f220edb, 0xc7461d00, 0x46022009, 0x2722062f, 0x9e821417, 0x34373523, 0x20c18226, 0x06b44606, 0x1b265430, 0x5a1b261b, 0x0c300c08, 0x40050708, 0xa5460705, 0xd6fe2106, 0x1b291682, 0x0b88c026, 0x0706880b, 0x077b4f07, 0x01000237, 0x000600a0, 0x002e000d, 0x00430039, 0x33353300, 0x26222315, 0x22068205, 0x51230614, 0x5d410647, 0x013b2b07, 0x36343526, 0x17163233, 0x0582013e, 0x0714152a, 0x012e3321, 0x010e2223, 0x2105ac65, 0x0b832634, 0x20073b08, 0x130da0c0, 0x13c00001, 0x130d200d, 0x20fe0709, 0x0d130907, 0x24340a2c, 0x1b1b2e1e, 0x34241e2e, 0x56e4fe0a, 0x0b122123, 0xdf170b12, 0x11171711, 0x1920110c, 0x1313a080, 0x378280a0, 0x057a4020, 0x0d503006, 0x24151313, 0x24242034, 0x14243420, 0x821b3514, 0x2c2c822e, 0x24071722, 0xff010025, 0x02bdfffd, 0x066f5e40, 0x5c151621, 0x0628059c, 0x2e010e07, 0x043e3701, 0x21052d57, 0xae830722, 0x013b4b08, 0x36373632, 0x1e220232, 0x5b387597, 0x0513351b, 0x050b1819, 0x51402009, 0x0907477d, 0x75a90709, 0x50507002, 0x05184f2f, 0x42b60113, 0x09b9834e, 0x2c252e06, 0x0a0b0c2e, 0x2f150c19, 0x0922303e, 0x0e54090e, 0x2f705006, 0x87590829, 0x00c42608, 0x13000021, 0x08964e14, 0x2005f05e, 0x23778216, 0x042e3435, 0x3c086f82, 0x3123d816, 0x9e712331, 0x1e0b3771, 0x261b1a25, 0x131d1a13, 0x0a1a1506, 0x1ca80122, 0x4d322c32, 0x71714f2f, 0x0c394e4f, 0x1b55110c, 0x111b2526, 0x221c1a20, 0x0f253d2a, 0x0300000a, 0x82008200, 0x00802bdb, 0x001b0011, 0x2500002d, 0xd8821416, 0x2e22232f, 0x34262701, 0x32013e37, 0x36320716, 0x05da6235, 0x957c3720, 0x34352205, 0x2c7c8537, 0x3d023627, 0x982a0303, 0x566f3c5b, 0x3e08831c, 0x3cf398b6, 0x54785454, 0x38283c54, 0x04394f38, 0x1c14100c, 0x07cf0c09, 0x61500710, 0x84354f2d, 0xef612307, 0x24843c54, 0x2182f020, 0x0d273929, 0x141c090c, 0x4f040c10, 0x975b081f, 0x00302205, 0x268b8246, 0x06173732, 0x83262223, 0x37362389, 0x4a181e17, 0x36241568, 0x17163233, 0x0621b582, 0x6f471807, 0x82172007, 0x832720b0, 0x30153816, 0x01071415, 0x340d0d40, 0x985b2529, 0x0e03032a, 0x27036917, 0x775f0140, 0x80220f1a, 0x1f844e45, 0x49331f35, 0x343c540e, 0x09024927, 0x38270d0d, 0x29033005, 0x8250610a, 0x1d1a26b7, 0x233d2551, 0x0f06773a, 0x84266321, 0x2b3b2a1d, 0x3c1f1d39, 0x05392154, 0x24ca8205, 0x0f012738, 0x2bcf830f, 0xc0fff8ff, 0xc1014802, 0x13000b00, 0x29053d70, 0x22212306, 0x36133726, 0x57431732, 0x3a022e15, 0xfe1c1b0d, 0x0d1b1c20, 0x0e380ef0, 0x0f5e4317, 0x3018082a, 0xa0011830, 0xb6fe1818, 0x220e6043, 0x82feff01, 0x0140276b, 0x002a00c0, 0x6b770100, 0x05016305, 0x23013f22, 0x272c0887, 0x013b3626, 0x33011f32, 0x023e2627, 0x013a0984, 0x42421ee0, 0x0569721e, 0x09084209, 0x2b673102, 0x08280805, 0x20200109, 0x08820901, 0x2b052708, 0x01013167, 0x42040605, 0x01690509, 0x27322700, 0x070d08b8, 0x0c063aac, 0x086c6c08, 0xac3a060c, 0x03060803, 0xeb82b808, 0x73000821, 0x092207c7, 0xeb821500, 0x39002d2d, 0x51004500, 0x00006f00, 0x5b211115, 0x25200673, 0x2016c95c, 0x8217ae27, 0x011d24df, 0x82343521, 0x08d745cd, 0x09883320, 0x4fc00121, 0x01240505, 0x0c280c40, 0x80200288, 0x012d0c98, 0xfe1c1450, 0x30141c40, 0x07200709, 0x050b5609, 0x10011028, 0x1c14f0fe, 0x4184d81c, 0x2005646f, 0x200b9674, 0x283b8301, 0x301c1430, 0x07090907, 0x32058530, 0x00000300, 0x0102dbff, 0x1300a501, 0x3b001f00, 0x48250000, 0x2325074f, 0x37012f22, 0x2dae8317, 0x3d222517, 0x013b3401, 0x07011f32, 0xa5412127, 0x20108405, 0x5ed88537, 0x263606e5, 0x07f90135, 0x1e0b5007, 0x4604053b, 0x1e203535, 0x0c63fe0b, 0x0c846f0c, 0x20200129, 0x6f0504dc, 0x82540c0c, 0x1e3b2306, 0x2884500b, 0x14075922, 0x0c2e2f82, 0x4b042810, 0x1028393a, 0x0c670b0c, 0x0b830c38, 0x8204ec21, 0x04ec2108, 0x50201283, 0x00252386, 0xff010000, 0x062f70fe, 0x274c1420, 0x05157c06, 0x27262b08, 0x37023e26, 0x96343526, 0x6a9696d4, 0x4c413338, 0x02010402, 0x061c1107, 0x7aa00139, 0x33137aac, 0x07050203, 0x39163115, 0x4682564a, 0xd320f384, 0xac29f382, 0x1e000f00, 0x00003e00, 0x087e4713, 0x4805c64a, 0x08510830, 0x33072e05, 0x06151632, 0x010e1417, 0x35012e22, 0x08c04134, 0x32161429, 0x34013d36, 0x8298a436, 0x680f2b5d, 0x0107150f, 0x98050757, 0x0b83150c, 0x01261483, 0x7b744e01, 0x13824f74, 0x32070532, 0x0107323c, 0x5005072c, 0x0f15150f, 0x0c070550, 0x0b840282, 0x05077c33, 0x7448092c, 0x47743b3b, 0x07053105, 0x2d340507, 0x2c028234, 0x01000705, 0x3b000500, 0x4501bb01, 0x23ef8200, 0x14161713, 0x47059c47, 0x34250593, 0x3236013f, 0x115e4ff1, 0x4f3d0121, 0x00201286, 0xf74a4b8d, 0x013e2205, 0x06c3471f, 0x010f1425, 0x91cf2206, 0x9443204b, 0x02002d4a, 0xfcff0300, 0x84017d02, 0x43002100, 0x260f0d4c, 0x2f222335, 0x4a362601, 0xc34b0519, 0x48052006, 0x3d21064f, 0x086b6e01, 0x3b0bdc4b, 0x02323315, 0x14076576, 0x07076507, 0x0715070b, 0x0809bc28, 0x100c0b10, 0x280e0af4, 0x0b230e82, 0x8cf0fe07, 0x8b27820e, 0x6468242b, 0x82640707, 0x070b2c3d, 0x07b62b07, 0x0e1e0b10, 0x832bde0a, 0x16142149, 0x23820c8b, 0xb3462689, 0x42022505, 0x2e00c001, 0x0629c182, 0x21172123, 0x010f1632, 0x06515516, 0x88233721, 0x42032009, 0x1f210a1c, 0x34258201, 0x04100207, 0x06dbfe13, 0x0e0b0d01, 0x21200602, 0xd211212e, 0x08058211, 0x46461c20, 0x0a0e0e0a, 0x020d0867, 0x0c890109, 0x1393030e, 0x190b1220, 0x2117230f, 0x10181721, 0x07831810, 0x0111202e, 0x100a0e57, 0x080b0e0a, 0x000b122d, 0x00288783, 0x01000200, 0x00110080, 0x0b974118, 0x34113527, 0x17013b36, 0x05c26001, 0x1c14602a, 0x40a0141c, 0x141c4001, 0x2308c65f, 0x00020040, 0x02270082, 0x00800144, 0x821e000d, 0x820720c5, 0x262224c6, 0x5236013f, 0x0e220539, 0x6f4c0f01, 0x33172f05, 0x011d1632, 0x12493d02, 0x0e70fe25, 0x0782070e, 0x0e90012a, 0x1154fe0e, 0x45091920, 0xa0275883, 0x7c9c1c14, 0x820c1820, 0x0c382803, 0x01760f15, 0x821c1416, 0x0030236b, 0x63840500, 0x80010022, 0x20085b5a, 0x72698254, 0x33200e7d, 0x61750f8e, 0x054e4308, 0x1f8f2320, 0x850a3d5d, 0x163225e7, 0x4d011115, 0x2206025d, 0x883a0508, 0xbafe2109, 0xdd281492, 0x07090907, 0x130d30fe, 0x22050845, 0x83860508, 0x59048424, 0x4620098a, 0x04841383, 0x0983c620, 0x4e5d0482, 0x0d132305, 0x3f845001, 0x7200d021, 0x1c2c0b5b, 0x35002d00, 0x4d003d00, 0x21130000, 0x7d618e83, 0x22172209, 0x08115106, 0x3205232d, 0x2634013d, 0x0f22012b, 0x82222301, 0x12332116, 0x08375818, 0x08165d18, 0x36343523, 0x058c5733, 0x1415062b, 0x14a00130, 0xfe141c1c, 0x08058360, 0x06090722, 0x01060674, 0x07090640, 0x1e0203fd, 0xa806068a, 0x64464664, 0x34485446, 0x21344834, 0x0d13090e, 0x1a219b83, 0x0d215526, 0x07092033, 0x1406060a, 0x4a066006, 0x2d030907, 0xfe062406, 0x223582f8, 0x828a6446, 0x29028235, 0x130d0709, 0x26090e09, 0x776a071a, 0x62c12008, 0x14250645, 0x27222306, 0x564e1807, 0x05de4e08, 0x3f29c282, 0x34352601, 0x3233013e, 0x05a26916, 0x22262b08, 0x49670002, 0x07181011, 0x0a0e250b, 0x700a0e28, 0xa2070e0a, 0x30512f09, 0x1cb06749, 0x281c1c28, 0x67491001, 0x28081b03, 0x02820e0a, 0x4e0a0e2c, 0x1ba2070a, 0x2f51301c, 0x1d830567, 0x00001c3b, 0xfaff0600, 0x8202beff, 0x3b00c301, 0x85004300, 0xcd009100, 0x0000d500, 0x08386f01, 0x8b822720, 0x36372625, 0x6f36013b, 0x376f0941, 0x33172409, 0x83161732, 0x070621aa, 0x072c0783, 0x06012f06, 0x013e1627, 0x010e2627, 0x07231189, 0x82061415, 0x012e2150, 0x6f0c926f, 0x36260c91, 0x32173637, 0x946f021e, 0x013e2b0d, 0x0706012e, 0x011e010e, 0x90c20536, 0x08000235, 0x0e120a05, 0x0a080508, 0x010b1006, 0x0b010404, 0x820a0610, 0x120e260e, 0x1008050a, 0x241d9c10, 0x0926121a, 0x0803820d, 0x1122672e, 0x0d210907, 0x1e181e11, 0x2626080c, 0x181f0b09, 0x200d111d, 0x2111070a, 0x12210606, 0x0c200a08, 0x1e191d12, 0x2626090b, 0x03060704, 0x1d852682, 0x7b062228, 0x23160411, 0x05841630, 0x9c090121, 0x088aa56c, 0x0e010122, 0x0c070309, 0x0c0e0907, 0x13120b0f, 0x0f0c0f0a, 0x070c0609, 0x030f0904, 0x04090f03, 0x09060d06, 0x0a271282, 0x0f0b1213, 0x820a0e0c, 0x09032819, 0x0e3e030e, 0x8214230c, 0xae200803, 0x1a130a11, 0x110a0f28, 0x08220b15, 0x0707010e, 0x22080e01, 0x0a11150b, 0x131b270f, 0x1f20110a, 0x1b291f82, 0x100a0f27, 0x09220a15, 0x2b1f820d, 0x04080605, 0x10140b22, 0x1c26100b, 0x1f272082, 0x23301635, 0x84110516, 0x8ea62005, 0x0e0d2588, 0x060c0709, 0xa2838888, 0x860f0d21, 0x20198288, 0x33888b07, 0xff020000, 0x02e0fffe, 0x00a00142, 0x002b0013, 0x06140000, 0x2b082348, 0x26373637, 0x32363435, 0x16171613, 0x204c1588, 0x1e4c0806, 0x01141501, 0x3c567aa0, 0x022e2b33, 0x03020104, 0x7a260f15, 0x150ff4ac, 0x2e050403, 0x403c332b, 0x0e121868, 0x39018d63, 0x84420148, 0x0319195e, 0x14040502, 0x42332922, 0x2284fe5e, 0x190a0414, 0x022c3619, 0x090b4f71, 0x33315112, 0xdf7a7682, 0x20012905, 0x0d00c001, 0x11010000, 0x2308d37a, 0x20013602, 0x3109c67a, 0xc0010941, 0x094448fe, 0x67911417, 0x1503260e, 0x3b851284, 0xbfff0024, 0x3b828101, 0x00002c29, 0x15021e25, 0x822b0614, 0x570f209f, 0x3d2305b4, 0x83222301, 0x503f20c7, 0x946206e7, 0x012b3d08, 0x26192a01, 0x880a0e17, 0x0a021801, 0x88011802, 0x26300e0a, 0x0e0a2a0c, 0x10010a0e, 0x2a3a0583, 0x2d200cea, 0x680e0a19, 0x04300202, 0x02023004, 0x240a0e68, 0x0e76123c, 0x1e83300a, 0xfb5b0482, 0x0031240a, 0x46410039, 0x07210793, 0x63018206, 0x232f06ce, 0x013d2221, 0x013b3634, 0x27022e35, 0x86262726, 0x8634200c, 0x05250888, 0x27261716, 0x25141523, 0x07062335, 0x02363736, 0x3e0e0a28, 0x251f3e30, 0x0c251b30, 0x250cd8fe, 0x0e04301b, 0x21128324, 0x7f820a0e, 0xfe3d9983, 0x0b1713a3, 0xc0014002, 0x170b0240, 0x80012313, 0x38380a0e, 0x3407222d, 0x1a1e4816, 0x2b00820c, 0x02481e1a, 0x0718260a, 0x38382d22, 0x2f067f44, 0x080d8128, 0x17102d29, 0x292d1017, 0x001a0d08, 0x04210082, 0x09177100, 0x37002f29, 0x00003f00, 0x82222325, 0x0d21659f, 0x37061422, 0x2b0c1771, 0x3b161415, 0x3d363201, 0x16323301, 0x210f1b71, 0x1c712801, 0x0ece2110, 0x26061b71, 0x50172188, 0x71882117, 0x40200d1b, 0x210d1a71, 0x19717008, 0x17082506, 0x08172121, 0x290e1b71, 0xbcfffcff, 0xc4010402, 0xad822300, 0x1e00003d, 0x010e0701, 0x26060e16, 0x2e060706, 0x013e3702, 0x16063e26, 0x07363736, 0x832e013e, 0x1407271a, 0x3217021e, 0x19823233, 0x22d80133, 0x02080909, 0x270a0207, 0x3b3a4642, 0x0f0d2b2d, 0x0811902b, 0x0706b920, 0x34070b03, 0x03010e6a, 0x02020305, 0x5e0a040c, 0x2b22ba01, 0x2d2b0d0f, 0x42463a3b, 0x3f820a27, 0x09090822, 0x63341190, 0x070d0b02, 0x346a0e01, 0x04050703, 0x5e2c0c01, 0x01000000, 0xc022ab82, 0xab820002, 0x00001735, 0x14151601, 0x2f222300, 0x013f2601, 0x3e011f36, 0x83273701, 0x17300809, 0xfe13ed01, 0x0413c0f0, 0x70130518, 0x3b310c10, 0x0e3c1b5b, 0x13083007, 0x1304a701, 0x13f0fec0, 0x30081368, 0x1b3c0e07, 0x0b323a5c, 0x05127011, 0x02205782, 0x22086754, 0x602e000f, 0x1334111b, 0x34353632, 0x2322012f, 0x06010f22, 0x011f1415, 0x26270706, 0x15220c86, 0x545c1617, 0x782e370b, 0x01410caa, 0x1e040a02, 0x23250601, 0x07051f4b, 0x09460303, 0x4a47030f, 0x80fe290d, 0x030c78aa, 0x0346090f, 0x1f2cdc82, 0x0625234b, 0x0a041e01, 0x0c410102, 0x1b4e7c82, 0x00c12206, 0x10435326, 0x35013b22, 0x47050970, 0x86820841, 0x011d0622, 0x300d1070, 0x0a0e5a7d, 0x2b0e0a20, 0xc02a1d1e, 0x14a0141c, 0x2f04841c, 0x595a4066, 0x0e0a103f, 0x1e100a0e, 0x671e2b2a, 0x2408b754, 0xa0014002, 0x05874e00, 0x00002b25, 0x4221013d, 0x37200697, 0x200a674e, 0x220b8a07, 0x82211501, 0x21332f85, 0x40021632, 0x20fe141c, 0x0cc01c14, 0x02820c88, 0x480c8023, 0x2202820c, 0x82fd0002, 0xe0012676, 0xb0101c14, 0x207c82b0, 0x0a574e58, 0x30100123, 0x83128230, 0x8203207b, 0x01df2de7, 0x00a101c1, 0x001b0007, 0x36000031, 0x2006b358, 0x23dc8517, 0x27012e35, 0x2205d149, 0x92011e33, 0x80033613, 0x26263525, 0x0709d535, 0x06090730, 0x09065477, 0xa474070a, 0x210e8597, 0x0e8390cb, 0x739d5624, 0x24833b46, 0x076f2528, 0x5406090a, 0x1d840677, 0x74a40722, 0x90210e83, 0x230e85cb, 0x9d724703, 0x2705b743, 0x40020000, 0x0f008001, 0x23228f82, 0x075d2b00, 0x21272511, 0x36370722, 0x1f21f982, 0x08905a01, 0xf1532620, 0x070b4106, 0x83141c21, 0xfe3025f9, 0x610f1020, 0x28054074, 0x1a330f61, 0x131a1313, 0x5e058473, 0x3c2709cf, 0x15159106, 0x82600691, 0x2002871a, 0x068b4200, 0x3405f760, 0x0034002c, 0x07142400, 0x23061415, 0x26012f22, 0x1506012b, 0x05c44c14, 0x35262724, 0x124c3734, 0x3f2a0809, 0x32333601, 0x07011d16, 0x23060711, 0x02173215, 0x10102040, 0x4255090b, 0x1a041c55, 0x4b13120b, 0x02190814, 0x25251b22, 0x1382c01b, 0x0b093008, 0x21401010, 0x546b6b54, 0x99124af5, 0x4407160a, 0x2b101035, 0x11231022, 0x10103a35, 0x1b601b25, 0x07443525, 0xc4990a16, 0x431a1a01, 0x53004360, 0x032c06d3, 0x3b00c301, 0x17250000, 0x010f0616, 0x2f240482, 0x010e0701, 0x06210482, 0x55048426, 0x2722069e, 0x09823626, 0x1f362624, 0xdb4d3701, 0x36372208, 0x08318216, 0x07011e22, 0x0a2ecb01, 0x123f0d08, 0x3e0e1404, 0x091c0310, 0x1c092d2d, 0x0e3e1003, 0x3f120414, 0x2e0a080d, 0x0a211d8f, 0x211d8a1b, 0x0e892dc0, 0x83070e21, 0x0e07212c, 0x1b224a87, 0x1d8d2d0a, 0x8a2f2f21, 0x531b2068, 0x002408bb, 0x27008101, 0x26069545, 0x012b0614, 0x83070616, 0x010e2d02, 0x23012a23, 0x2e272622, 0x34013d01, 0x3727b882, 0x16323336, 0x82070607, 0x15052105, 0x450dde7a, 0x022f079d, 0x64121b00, 0x0a12010d, 0x10040e0c, 0x82011a23, 0x12472643, 0x1f1c0c08, 0x29048245, 0x050a1c1a, 0x1b129509, 0xd64660fe, 0x1c230809, 0x0c0c100c, 0x1a11f810, 0x120f2b0d, 0x20180825, 0x0103240f, 0x1fac090d, 0x132d0d0d, 0x0c182b1d, 0x18121a0d, 0x21072240, 0x2b83ba0e, 0x5f640c20, 0x00812d0a, 0x00360026, 0x1300003e, 0x26272633, 0x17229e82, 0xff6e011e, 0x87072005, 0x2e3722bd, 0x47028301, 0x05200599, 0x200ef66a, 0x06224c16, 0x09952d2b, 0x1a1c0a05, 0x45080c1c, 0x2204821f, 0x82234712, 0x27282eb9, 0x0a0c0e06, 0x640d0112, 0x011b1b12, 0x0788479d, 0x841a0e21, 0x24013e85, 0x2b180c0d, 0x0d2d131d, 0x09ac1f0d, 0x2403010d, 0x25082324, 0x0d2b0f12, 0x1a12111a, 0xd8401814, 0x84d42009, 0x00002ae1, 0xffffff03, 0x018001c0, 0x076b41c0, 0x16321327, 0x1636011d, 0x37028417, 0x15011c15, 0x14070614, 0x012b010e, 0x012e2722, 0x34352627, 0x17161736, 0x13200582, 0x5d43b48f, 0x41882006, 0x23260734, 0x07032424, 0x3341060a, 0xc001211b, 0x22089741, 0x41282706, 0x05220596, 0x9741050a, 0x8200201f, 0x88032000, 0x066b41b7, 0x06351724, 0x9e820607, 0x013e3722, 0x22050f77, 0x85011e17, 0x0e2722be, 0x82028301, 0x222323c8, 0x8d511326, 0x82062009, 0x782620d3, 0x5c2007d4, 0x202c3741, 0x31994113, 0x220eab5f, 0x18000025, 0x24073d5d, 0x32332707, 0x05254e36, 0x34363723, 0x054d7b2f, 0x1f142008, 0x3f321601, 0x01343601, 0x9191ce67, 0x4cdb91ce, 0x0e0e0ab7, 0x074cb70a, 0x14070b07, 0x82078407, 0x82142002, 0x8238200a, 0xce912b1b, 0x0a0e4801, 0x480e0a10, 0x12821507, 0x82850721, 0x83852020, 0x60152027, 0x73820ddb, 0x07ef5318, 0x18173721, 0x21085a55, 0x6b880607, 0xeb5d7b87, 0x5d729705, 0x73a806f3, 0x2107ab66, 0x39493727, 0x85172008, 0x66eb8bdb, 0x549705c3, 0x9705d666, 0x115b4191, 0xa1460020, 0x035b1807, 0x26272409, 0x8d010f22, 0x06ed59eb, 0xf4597497, 0x08759806, 0x00000933, 0xf001c8ff, 0x0500b801, 0x13000d00, 0x22001900, 0x31002b00, 0x3d003700, 0x23010000, 0x1632013e, 0x33373406, 0x23071416, 0x27262325, 0x0625011e, 0x22158207, 0x82151605, 0x34362711, 0x17140727, 0x20822623, 0x33170629, 0x2622010e, 0x82373617, 0x252a0807, 0x2e171633, 0xb0500101, 0x303a300b, 0x03ba03ad, 0x4201ba03, 0x35230f6c, 0x24eafe53, 0x53166c0e, 0x09096b01, 0xfd030372, 0x07837203, 0x27842820, 0x19849420, 0x849ffe21, 0x20013627, 0xc4545444, 0x40202040, 0x325ca020, 0x325b4b10, 0x9e4b335c, 0x25008220, 0x40213e21, 0x0582221e, 0x827f2121, 0x834a2022, 0x837e2017, 0x00002f21, 0xffff0200, 0x0502bfff, 0x1c00c501, 0xbd822400, 0x07061635, 0x0727010e, 0x34262206, 0x3626013f, 0x17013e37, 0x540f011e, 0x00200501, 0x08069f44, 0x09fc0142, 0x501e1b14, 0x3513d526, 0x0dd51325, 0x4a1b1d12, 0x05030724, 0x4b440b4a, 0x3cfe0d05, 0x140e0e14, 0x2453010e, 0x121d1c49, 0x2513d50d, 0x25d61335, 0x141b1d51, 0x050d0209, 0x4a0b444b, 0x8efe0305, 0x0e212182, 0x217e8214, 0x7f820600, 0x0002f03c, 0x1500a101, 0x33002b00, 0x53004300, 0x00006300, 0x14161713, 0x2206020f, 0x4218012f, 0x14900ec9, 0xc3590620, 0x6b342005, 0xcb5c06ab, 0x0e296e09, 0x2b0f0b6b, 0x0303118c, 0x0a040f49, 0x04042f04, 0x03290682, 0x0a034017, 0x04031104, 0x2a138e48, 0x1c1c285c, 0xe1011d28, 0x18090907, 0x940a2340, 0x109c290b, 0x48040904, 0x30030310, 0x0f274a82, 0x3f160404, 0x8211a304, 0x8252820a, 0x04092165, 0x12821982, 0x831cb121, 0x6c0c2051, 0x3c0822b0, 0xfffbff01, 0x010502bc, 0x001000c0, 0x16320100, 0x1411010f, 0x26012f06, 0x2627013d, 0xe8013336, 0xb90b0c10, 0x0a500c1a, 0x100c0bb9, 0x0b1ec001, 0x0ffafeb9, 0x0838080d, 0x0bb9ce0c, 0x0597461e, 0x02e0ff2e, 0x00a00100, 0x00270013, 0x2500002b, 0x2105985c, 0x42822221, 0x94433320, 0x18372006, 0x45097869, 0x23080822, 0x15233523, 0x1dc04001, 0x1360fe13, 0x0709c01d, 0x90090760, 0x00fe1d13, 0x1d50131d, 0x1d13a013, 0x30708040, 0x1d271082, 0x07309013, 0x82d70909, 0x13503716, 0x1d13301d, 0x2030131d, 0x01000020, 0xbfffffff, 0xc1010002, 0xf5553b00, 0x3b362208, 0x84548201, 0x6a3420be, 0x3321050b, 0x0d6e4d35, 0x7e823320, 0x2d072158, 0x1523013d, 0x01163233, 0x14074f60, 0xde824f07, 0x1d65332d, 0x07074f0c, 0x651d0c4f, 0x820d1033, 0x2016930a, 0x21218816, 0x38840b0c, 0x100d0c22, 0x168c388c, 0xd7530020, 0x01803806, 0x000700a0, 0x001e000f, 0x003a0026, 0x36000048, 0x36342622, 0x45141632, 0x494208a7, 0x012b2805, 0x3627022e, 0x85012a33, 0x254a181d, 0x0e272313, 0xf2490701, 0x347a2709, 0x26342626, 0x06849a01, 0x261a2034, 0x03420d13, 0x13142014, 0x425c921a, 0x23425c42, 0x3f6c4330, 0x30433105, 0x21462109, 0x05281ed7, 0x26130d42, 0xe01a401a, 0x02873682, 0x1a26462a, 0x17130d20, 0x130b212a, 0x42343382, 0x3043625c, 0x1c1c141d, 0x43301d14, 0x100d1010, 0x0d13233a, 0xc7435a82, 0x01002d07, 0x002500c1, 0x0100004b, 0x010f1416, 0x2205c443, 0x82171636, 0x010f2301, 0x7d45010e, 0x26272a06, 0x26352627, 0x1636013f, 0x82258436, 0x8227200e, 0x013e210e, 0x83062945, 0x1615212e, 0x18823e82, 0x26823420, 0x47012308, 0x2c442c2c, 0x262c597e, 0x01011307, 0x0d070309, 0x15150115, 0x1543153c, 0x07050515, 0x09160c01, 0x1c9b6a16, 0x3e830a20, 0x2d070123, 0x2145827e, 0x45827e59, 0x1b0a082a, 0x0e07091a, 0x16153b15, 0x3c2b4482, 0x04040515, 0x150c1208, 0x9db0100a, 0x8409201e, 0x2adc8242, 0xe0ff0000, 0xa0018002, 0x50001c00, 0x232806f7, 0x35262221, 0x34373634, 0x33240482, 0x36171632, 0x3d080482, 0x1a021415, 0x4b1b2e1d, 0x3c90fe35, 0x5e2a3654, 0x154a2c42, 0x38281d18, 0x362405dd, 0x544b351e, 0x0f4a2f3c, 0x5e420305, 0x3810242c, 0x00001228, 0xf4ff0200, 0xcc01c0ff, 0x1b00c001, 0x59822500, 0x27571620, 0x38581806, 0x33072212, 0x058d7427, 0xb5010731, 0xfe2a2816, 0x16282ace, 0x0e0a0875, 0x83d00a0e, 0xb6082f04, 0x400630ac, 0x49232c06, 0x97bd2349, 0xd44d0a0e, 0x0e0a2c05, 0x084e6997, 0x0aa0a00a, 0x83030008, 0xc50121c3, 0x2724c382, 0x37002f00, 0x17276d82, 0x22060716, 0x5807012f, 0x34200550, 0x1723c182, 0x18062737, 0x2309934d, 0x32363717, 0x5c782382, 0x074f5607, 0xa6160137, 0x46180909, 0x07197418, 0x38385038, 0x21060728, 0x28070621, 0x2b0c8238, 0x18741907, 0x09091846, 0x131a97fe, 0x2908c24c, 0x0809a6c0, 0x19731919, 0x23841211, 0x21210123, 0x21378401, 0x14821112, 0x09081923, 0x21298446, 0x0684edfe, 0xe7510020, 0xc0012b05, 0x1100c001, 0x2c002300, 0x7b4e0000, 0x05905707, 0x16141127, 0x16141333, 0x0d85783b, 0x1d161739, 0x33352301, 0x40011732, 0xf0fe0a0e, 0x0a0e0e0a, 0xa8172148, 0x87680a0e, 0x79a8270e, 0x0a066007, 0x1a832807, 0x0a700129, 0x17d8fe0e, 0x82580121, 0x87f82007, 0x07492511, 0x0760060a, 0x2f054b44, 0xc101c101, 0x00003200, 0x3f362617, 0x17323601, 0x8307b642, 0x011f270d, 0x06010f16, 0x18821617, 0xc0423420, 0x32162106, 0x17850c82, 0x2b222808, 0xd12c012b, 0x21215e22, 0x4016b721, 0x16011516, 0x170b0c8f, 0x09900b0b, 0xb7070809, 0x280e0f0f, 0x331ad20f, 0x84ac1948, 0x2dac2f15, 0x7f2d127e, 0x2222d72d, 0xbb215f22, 0x55820117, 0x0b931627, 0x0b0c160b, 0x342f8293, 0x2a10ba08, 0xd60f0f0f, 0x1a354b1b, 0x160c0cb0, 0x2db00c0b, 0x05c74100, 0xa001c02e, 0x19001100, 0x00002800, 0x11151601, 0x24091358, 0x17322133, 0x06364702, 0x2f341326, 0x012b2601, 0x2405b16a, 0xb2013532, 0x08dd6c0e, 0x0e140c38, 0x25253699, 0x04a02536, 0xe5040403, 0x0ce80c0c, 0x140e3e01, 0x376df4fe, 0xfe0e2207, 0x241d828e, 0x0c013625, 0x24218204, 0x0c0c680c, 0x0b2b6400, 0x11510f20, 0x1a476d11, 0x00000328, 0xc001fcff, 0xab598401, 0x13002106, 0x2006c54f, 0x05e94421, 0x9e052321, 0x0a55750f, 0x74110a76, 0x0126059e, 0x2807093c, 0x04840907, 0x0a94a020, 0x26057f45, 0x010002f0, 0x82070090, 0x00172689, 0x00370027, 0x09d96947, 0xd9471620, 0x47078706, 0x1c222fe1, 0x028e1c28, 0x74f00121, 0x0121216b, 0x20348490, 0x47058a84, 0x062223ab, 0x6b47fcff, 0x2a210806, 0x4a003a00, 0x74005a00, 0x00009800, 0x15011e37, 0x22230614, 0x013f2627, 0x33161736, 0x2b343532, 0x06105301, 0x5f233721, 0x1d25062e, 0x14153001, 0x8fde8f07, 0x0fda760f, 0x3d852720, 0x22233524, 0x5c823435, 0x32013b25, 0x8233011d, 0x23142203, 0x2e198307, 0x3435023e, 0x06072223, 0x3726012f, 0x83323336, 0x030e2187, 0x3505856a, 0x0e0e3e23, 0x10151818, 0x05060609, 0x0e08070b, 0x05080410, 0x0c820301, 0x08170628, 0x050b3908, 0x2641a101, 0x08a02a21, 0x08081008, 0x05020801, 0x23088318, 0x13100c44, 0x28084f82, 0x08070904, 0x1a0e070a, 0x0a0f130b, 0x010b0e0d, 0x2f080827, 0x120c1304, 0x0907091a, 0x0306090a, 0x02080908, 0x06070807, 0x25338206, 0x0701040b, 0x06499d06, 0x0aab7509, 0x200b0c7b, 0x232a82e0, 0x02020840, 0x5820a482, 0xa0350a82, 0x1911040b, 0x08040c0c, 0x07060804, 0x07130807, 0x110a0e13, 0x225a830b, 0x82000810, 0x7d022000, 0x2f22081f, 0x9d534d00, 0x27262212, 0x06e64826, 0x18011f21, 0x2d07c848, 0x012b2627, 0x14150622, 0x33021f16, 0x15821716, 0x0f820620, 0x012f2622, 0x3f2c2982, 0x32333601, 0x013b1617, 0x34353632, 0x08063e42, 0x09072022, 0x13660709, 0x34480102, 0x103d2544, 0x2b090101, 0x040a0403, 0x12421f0e, 0x570e111a, 0x01045e16, 0x5d781a93, 0x1d1b280a, 0x49330606, 0x83012027, 0x01162c37, 0x121a1c08, 0x1b04170e, 0x900c0c60, 0x52172017, 0x0128076f, 0x00c001c0, 0x003f002f, 0x5f07ad43, 0x14200539, 0xb982ab82, 0x3d363222, 0x8b07e657, 0x22062417, 0x42013d26, 0xbf840f38, 0xc4839020, 0x422f2023, 0x240d8a2f, 0x015e845e, 0x43178370, 0x3a6206d4, 0x07092105, 0xa0242282, 0x212f2f21, 0x260aa141, 0x5e5e42a0, 0x8afea042, 0x0c136721, 0x13000f28, 0x1b001700, 0x97441f00, 0x35132411, 0x82371523, 0x86052003, 0x0bb95e07, 0xa0a0b025, 0x838001a0, 0x0cf87104, 0x6080fe24, 0x0287a060, 0x08276618, 0xc0010022, 0x2b083744, 0x1300002b, 0x013f012f, 0x010f011f, 0x07210785, 0x220b8705, 0x59071416, 0x342e0510, 0x32360137, 0x27370717, 0x2010e007, 0x03821020, 0x351ba024, 0x03821b35, 0x86450121, 0x09622c08, 0x0994fe09, 0x09550a1a, 0x826c0109, 0x573b2507, 0x60015633, 0x10222b84, 0x2b846010, 0xb51b1b22, 0xf7220786, 0x2d831a0a, 0x82550921, 0x262d8207, 0x3356c209, 0x18040057, 0x4708576e, 0x3c2005d7, 0x27088342, 0x0614012b, 0x23352622, 0x80760585, 0x011d2809, 0x011f3233, 0x47011d16, 0x078707d9, 0x2735372f, 0x70021523, 0x07090907, 0x38503830, 0x36038280, 0x1c1c1410, 0x14400114, 0x0e142c1c, 0x2cfe0e64, 0x281c1c28, 0x845c011c, 0x64802c06, 0x0709602c, 0x28090720, 0x83283838, 0x22298503, 0x8230141c, 0x6c14222a, 0x0a0b4570, 0x640cb427, 0x00000070, 0x30038206, 0x01800200, 0x000f0080, 0x00190014, 0x00260021, 0x12b1412b, 0x26343328, 0x36323523, 0xa0522335, 0x35052507, 0x37150622, 0x1628ca82, 0x130d6002, 0xc0fd0d13, 0x102e0583, 0x1b1b2540, 0x42ef4025, 0x2f422f2f, 0x0a826001, 0x01254026, 0xfe0d1380, 0x012b1d84, 0xfe130d40, 0xa0251bb0, 0x82f01b25, 0x503822c9, 0x232e8268, 0x251b40e0, 0x002d7082, 0x01570007, 0x00000139, 0x1300000b, 0x09b47e21, 0x02011f2f, 0x81090a0d, 0x81061006, 0x00010a09, 0x820a8219, 0x00192109, 0x01200082, 0x60203382, 0x09203382, 0x25213383, 0x09fe7221, 0xfe210123, 0x203489fe, 0x26338d60, 0x00270017, 0x845901c0, 0x4c112067, 0xc020098c, 0x01212587, 0x853c8b41, 0x82002067, 0x85a92033, 0x05b47333, 0x87057d48, 0x8b3f2032, 0x000022a3, 0x087f4403, 0x74050343, 0x132410df, 0x21112311, 0xf7420382, 0x8001220d, 0x0f7f58a0, 0xff000123, 0x2a038300, 0x00020000, 0x01f8ff0d, 0x82880133, 0x001723b7, 0x4b183700, 0x25220abe, 0x806b0616, 0x32363305, 0x10ee2917, 0x07770b0c, 0x0b770714, 0x0b0f010c, 0x0f87100c, 0x821ea021, 0x23158216, 0x1e0b691e, 0xd8820a84, 0x53850120, 0x82a00021, 0x8b518c53, 0x28388845, 0x00010000, 0x01e0000d, 0x21838434, 0xb94d2500, 0x1701210a, 0xe020768a, 0x77225e84, 0xb3821e0b, 0x022b6482, 0x00800100, 0x003a001f, 0x18360100, 0x34080744, 0x3634013d, 0x1e171617, 0x3e323304, 0x07363704, 0x23022e22, 0x051d5c26, 0x0806367f, 0x0706075c, 0x01020e22, 0x1c0703f6, 0x1460fe14, 0x2103071c, 0x0e170279, 0x090a1516, 0x0c121012, 0xd2760310, 0x1b0e1708, 0x09347a01, 0xa001141c, 0x31091c14, 0x0e1b017d, 0x03010117, 0x14cc0404, 0xcc141c1c, 0x19020304, 0x09120258, 0x0705060d, 0x030c090c, 0x090b6555, 0x07285915, 0x1e83130c, 0x070c1328, 0x09155b26, 0x9882000b, 0xff00002b, 0x01f901c8, 0x002b00c0, 0x06af5700, 0x32013b2b, 0x013e011d, 0x0e011e33, 0x0aba4701, 0x26343626, 0x07062223, 0x2106ff54, 0x5982c8d4, 0x0c302c08, 0x67366123, 0x67910190, 0x090a475f, 0x32090822, 0x67674942, 0x194a2b49, 0x07070562, 0xc80507e0, 0x274e0c0c, 0xcd91012b, 0x82094091, 0x2c082b1f, 0x27679267, 0x30050721, 0x7b850705, 0x2105274f, 0x4f670037, 0x06f05006, 0x4a072721, 0xff5005e3, 0x6527200b, 0x173a1013, 0x17323637, 0x0707f901, 0x0713087c, 0x06070717, 0x09065128, 0x1b097309, 0x06852e09, 0x28510625, 0x83140705, 0x827d201a, 0x07162406, 0x83710507, 0x82f9200f, 0x077d210c, 0x14221682, 0x32830507, 0x33821b20, 0x06843282, 0x06203282, 0x13221a83, 0x21867c08, 0xab833282, 0xffffff29, 0x014401c0, 0x821900c0, 0x163231b8, 0x23060307, 0x013f2622, 0x012e2223, 0x023e013f, 0x3605ea6d, 0x0e0e2801, 0x0e07b007, 0x2e030e0c, 0x060c0777, 0x07012001, 0x8290060a, 0x012a340e, 0xfe0c1820, 0x0c120cd0, 0x070c08c2, 0x050a06f0, 0x5d820b13, 0x8020088b, 0x0f275782, 0x45003500, 0x18005500, 0x27102552, 0x35231537, 0x013b3634, 0x2712864d, 0x1d163233, 0x23352301, 0xa57e2182, 0x06cb4a0f, 0x2508b57e, 0x13130d80, 0x0483600d, 0x17304825, 0x8328ca0f, 0x27138409, 0x170fca28, 0x4830c030, 0x01211f88, 0x200a8850, 0x82328660, 0x30502537, 0x40170f3a, 0x40270f89, 0x303a0f17, 0x89503030, 0x82098911, 0xff0226d7, 0x02c0fffe, 0x34d78242, 0x0043002d, 0x06162500, 0x06012e27, 0x27220607, 0x23072e30, 0x84098422, 0x37262410, 0x5c37013e, 0x76080633, 0x3605011e, 0x15173233, 0x22230614, 0x3e262726, 0x16171601, 0x35363233, 0x0c014002, 0x37351a08, 0x030c0419, 0x08080404, 0x120f0e0b, 0x14281f09, 0x19040c03, 0x081b3437, 0x8f15010c, 0x131a135c, 0xd5fe8f5c, 0x1010110f, 0x2a19212f, 0x190c0508, 0x0b040517, 0x08a70907, 0x0d1c070a, 0x07072b23, 0x0b0c0807, 0x05080a0c, 0x07072227, 0x1c0e242b, 0x63080a07, 0x83120a7a, 0x0a1232ee, 0x0e0e787a, 0x1d2f2182, 0x09180d18, 0x090b0c0c, 0xd3471807, 0x00152a0a, 0x002f001d, 0x13000038, 0x080c7a15, 0x17323622, 0x23057e41, 0x22360622, 0x21051c64, 0x4c183317, 0x2a0808ad, 0x013b3634, 0x37161415, 0x33352315, 0x16011f32, 0x0e0a6880, 0x12510a0e, 0x0a51124a, 0x2117880e, 0x0e0e142a, 0x68a00e14, 0x83f00a0e, 0x0e883818, 0x0a066072, 0x01074207, 0x0a0ee808, 0x0e0a5001, 0x0a0e2020, 0x82792148, 0x140e2324, 0x2383c8ea, 0x0a300123, 0x2245820e, 0x82600626, 0x82002027, 0x00033200, 0x01bfff00, 0x00c10160, 0x0020000d, 0x17000030, 0x22808235, 0x4b06010f, 0x03220562, 0xa0823634, 0x0714152c, 0x15300706, 0x26313423, 0x367d2627, 0x06222105, 0x323c9982, 0x36343536, 0x1105a060, 0x113e110a, 0x60051209, 0x674a4b64, 0xa00f252c, 0xb02c250f, 0x3d05e27c, 0x2f090e09, 0x0a262606, 0x0e0e1a08, 0x2001081a, 0x49676947, 0x302b3242, 0x2b300101, 0x1d829232, 0x832e4221, 0x2f212128, 0xc0218b86, 0x25018201, 0x0f000700, 0x5c185500, 0x0621094d, 0x06b17d34, 0x1d011e23, 0x05184e01, 0x34013d27, 0x0e153736, 0x26858601, 0x16352726, 0x82321617, 0x8214839b, 0x011f2724, 0x36013f16, 0xa082012f, 0x011d1623, 0x053e7807, 0x35823620, 0x27262d08, 0x4b6a1501, 0xf84b6a4b, 0x0e0e140e, 0x4a36ca14, 0x9afe131a, 0x30401a13, 0x2e211711, 0x0c121621, 0x1d3a1c0b, 0x1c010401, 0x081f0e24, 0x08240782, 0x13303013, 0x20240884, 0xc01c240d, 0x4b223982, 0x3a83fd6a, 0x9f0e4008, 0x2d354e02, 0x131a1a13, 0x084b312d, 0x131d0551, 0x17212117, 0x52051d13, 0x0a0a0302, 0x052e0101, 0x0e2c1d2c, 0x07010402, 0x03020810, 0x1919201b, 0x02041c1e, 0x01071008, 0x2a0d0207, 0x5d052c1d, 0x002b0907, 0x4200c201, 0x00004a00, 0x821e3201, 0x420720d2, 0x2e2106bd, 0x20b08201, 0x20c78236, 0x21ce8216, 0x19820f06, 0x32331622, 0x2720c482, 0x21052f44, 0x0f41011f, 0x1e072205, 0x23168402, 0x013e3726, 0x3e075e48, 0x1e12bf01, 0x49672011, 0x37026747, 0x3f080b49, 0x0302100a, 0x1f090b02, 0x38272839, 0x820b0a1f, 0x082b0895, 0x083f070c, 0x0237490b, 0x2e1d331e, 0x01012142, 0x090e1424, 0x01090e09, 0x121d1150, 0x45711225, 0x0b445f63, 0x099b3959, 0x820c020d, 0x82102039, 0x7b062841, 0x273a3828, 0x8202067a, 0x0a06360c, 0x020d0104, 0x399b090d, 0x2e1b0c58, 0x712b3d1a, 0x251a2612, 0x21408250, 0xd8820e09, 0xc3470420, 0x09210808, 0x17000d00, 0x00002100, 0x36341117, 0x1632013b, 0x15031115, 0x11173533, 0x012b0614, 0x16323311, 0x080e4301, 0x141c8030, 0xc01c14a0, 0x141cc080, 0x1c143030, 0x048260fe, 0x20200a82, 0x3106874f, 0x20800170, 0x00ff5020, 0x60011c14, 0x1cbcfe1c, 0x0a820114, 0x02366b82, 0xc0ffffff, 0xc001c101, 0x2b000500, 0x22160000, 0x14333526, 0xe05f1637, 0x012e2b05, 0x36373435, 0x35023e37, 0x23443634, 0x022e0808, 0x011e1415, 0x34fa1617, 0x09978026, 0x80fe0e12, 0x09080f09, 0x110f0201, 0x13384814, 0x3a25131a, 0x0f111421, 0x1b254002, 0x0c0a711b, 0x1d82130d, 0x010a0c3f, 0x43180f03, 0x0b563a2c, 0x13130d15, 0x2c07150d, 0x432c2642, 0x00030f18, 0xf9ff0300, 0x054b53ff, 0x19001127, 0x00002700, 0x09fb4f37, 0x2608e483, 0x13230614, 0x32331523, 0x13263436, 0x26272221, 0x21333637, 0x07060732, 0x3828c006, 0x88010a0e, 0x354b4b35, 0x82283820, 0x1a2c08dc, 0xfe162626, 0x090c2100, 0x0203020d, 0x05040f48, 0x3840081a, 0x0e0ae828, 0x284b6a4b, 0x80200138, 0xfe263426, 0x07182080, 0x091d1701, 0x00227982, 0x636f0700, 0x821b2008, 0x00333079, 0x0047003b, 0x006f0053, 0x21150500, 0x6a3b3435, 0xfa820594, 0x2805d14c, 0x15163233, 0x03323311, 0x06405123, 0x34013d25, 0x18323307, 0x2008ca5e, 0x23178317, 0x37343533, 0x4c181f8b, 0x35220962, 0x247c3327, 0x18338408, 0x3c08765f, 0x0114011d, 0x0c40fec0, 0x580a0e14, 0x0a700a0e, 0x0e0a580e, 0x288c0c14, 0x0c280c0c, 0x240584b4, 0x400c2874, 0x6f098434, 0x0a260674, 0x0614061a, 0x0282061a, 0x2c330683, 0x010c1414, 0x480e0a68, 0x0a0e0e0a, 0xfe0a0e48, 0x82200198, 0x6f02823b, 0x802506b0, 0x0c54540c, 0x20128560, 0x2156830c, 0x3c88f40c, 0xd34c4384, 0x01802c08, 0x002700c0, 0x004b002f, 0x4c580053, 0x37203139, 0x431a197d, 0x554c075c, 0x08c02427, 0x82300838, 0x20068603, 0x29634c9c, 0x368adc20, 0xf0380823, 0x2539831c, 0x70640cb4, 0x57430500, 0x000d2c08, 0x001b0011, 0x00490025, 0x70111700, 0x332009e9, 0x21185d43, 0x72183405, 0x36391a1e, 0x3233013d, 0x20603536, 0x14a0141c, 0x80e0201c, 0x10141cc0, 0xfe1c1410, 0x82048240, 0x20012c0a, 0x09300709, 0x09072007, 0x8a090730, 0x0120210a, 0x2106a443, 0x9d43a0fe, 0x8f902013, 0x233a842f, 0x01000000, 0x8024c784, 0x2f00a001, 0x2e05b749, 0x33072302, 0x012b1432, 0x23353335, 0x82272307, 0x35332606, 0x35373527, 0x22018223, 0x82173337, 0x84352015, 0x1743081f, 0x20021733, 0x30806060, 0x15287518, 0x30107315, 0x080b2243, 0x30404030, 0x43220b08, 0x15731030, 0x18752815, 0x1615e030, 0x94101015, 0x50a40c0c, 0x0310450b, 0x03082a08, 0x500b4510, 0x940c0ca4, 0x83040010, 0xc001217b, 0x19277b82, 0x2e002200, 0x6e003a00, 0x0f21070d, 0x05344401, 0x11352623, 0x06626734, 0x34351729, 0x15012b26, 0x5e063637, 0x22240568, 0x14011d06, 0x01260b8b, 0x1a2f2170, 0x95555115, 0x10012407, 0x82400e0a, 0x093728e5, 0x09090eb7, 0x8457090e, 0x60012f05, 0x1881212f, 0x2a240a27, 0x0a0e0e0a, 0x05839001, 0x81d1282d, 0x19b80907, 0x07094504, 0x8d0907e0, 0x234e1804, 0x00a02408, 0x1833000f, 0x250da14e, 0x16322133, 0x87832307, 0x9b842320, 0x16229184, 0x9f83013b, 0x2407915a, 0x2634013d, 0x06f37201, 0x01141c26, 0x701c1460, 0x2008c772, 0x09d27209, 0x70010926, 0x1c14a0fe, 0x1c252185, 0x50070944, 0x88898850, 0x4e8b8c0a, 0x052012db, 0x551a3143, 0x40200c41, 0x0e514018, 0x200ca050, 0x584018fc, 0x0002320d, 0x011f0018, 0x006101a9, 0x002a0015, 0x36013f00, 0x05d85a32, 0x011e1724, 0x8c500f06, 0x7d072006, 0x14220816, 0xed4b010f, 0xe0272206, 0x05a74b88, 0x05606026, 0x16050303, 0x88240c82, 0x0707b907, 0x07211588, 0x21138307, 0x9a4b88d1, 0x23258205, 0x17040d0c, 0x1b201f84, 0x07212b84, 0x21068217, 0xf34b6060, 0x83fb8205, 0x82a82087, 0x00142187, 0x3720fb82, 0x2008404c, 0x187b8927, 0x18085375, 0x2408d85f, 0x1632013e, 0x85888917, 0x25869072, 0x09090904, 0x8888af03, 0xa7827185, 0x03238790, 0x46030404, 0xf82506e7, 0x88014101, 0x4c8b8500, 0x948808df, 0x27323622, 0x2e072741, 0x012f2206, 0x22010e07, 0x26012f26, 0x9eb13734, 0x238a8465, 0xc0070717, 0x8d0e2641, 0x030424b3, 0x82160403, 0x228b8ea6, 0x72000029, 0x7b8305e5, 0x200a4a7e, 0x127b5e17, 0x9e8f0721, 0x05054189, 0x4f41879d, 0x01002b05, 0x1f001800, 0x6101e900, 0x21421500, 0x42202017, 0xfa41120c, 0x204b8613, 0x204b82e8, 0x41cd8214, 0xce4113e5, 0x12ba4111, 0xff01002a, 0x015800ff, 0x00280141, 0x13204782, 0x4113a141, 0x0120128a, 0xda85a689, 0x00078822, 0x4b850082, 0x4b854020, 0x41146141, 0x6020124c, 0x2310c141, 0x00000200, 0x22060778, 0x5223001f, 0x2b30089b, 0x32331701, 0x23061416, 0x34262221, 0x37013b36, 0x2f068649, 0x21110133, 0x14100211, 0xc0141c1c, 0x0e0a4810, 0x21087d5a, 0x1383c010, 0xfed00128, 0x1cc00140, 0x0d82fe14, 0x140e3023, 0x2c02820e, 0x01141c30, 0xfe1c1440, 0xfe2001a0, 0x07c74be0, 0x01800229, 0x001700c0, 0x56250021, 0x056c1241, 0x13372105, 0x67456982, 0x82032005, 0x70023509, 0x1a260907, 0x261a00fe, 0x14ef0709, 0x120e3d0d, 0x00fec201, 0x37059d50, 0x2080fe40, 0x1a100709, 0x101a2626, 0x150b0907, 0x70010f11, 0x5001b0fe, 0xfe219182, 0x05e151dc, 0xe7850020, 0x82c00121, 0x820f2077, 0x10355279, 0x1808ed5b, 0x250a575a, 0x13131aa3, 0xcf84131a, 0xdd846020, 0xc782a020, 0xb75b2020, 0x00022506, 0x01c0ff00, 0x0020ed82, 0x2b214f8b, 0x06775401, 0x10204f88, 0xe0203983, 0x63200483, 0x9f844e9b, 0x22054b60, 0x4139001c, 0x5d4f0815, 0x09735607, 0x1d062223, 0x8c671801, 0x521c8d0e, 0x802d05f7, 0x425e1c14, 0x0e0e0a08, 0x261a080a, 0x8c7e83d0, 0x1cc02211, 0x2c0f8214, 0x42f0141c, 0x300a0e5e, 0x1a260e0a, 0x8f119140, 0x18012093, 0x460dc74e, 0x8e5f0554, 0x91332006, 0x09315793, 0x82013321, 0x208e8981, 0x068e6b50, 0x0121118e, 0x848f9ea0, 0x820020a1, 0x00072100, 0x5a075f6e, 0x1f2105d7, 0x050b5600, 0x64000021, 0x0220069d, 0x4e06d95a, 0x26220519, 0x17862034, 0x1807e95a, 0x2007f181, 0x27278600, 0x281c3001, 0x28281c1c, 0x1c210483, 0x210584ec, 0x1284c0fe, 0x0c841520, 0x84420121, 0xf6fe2106, 0x01210684, 0x210684a4, 0x218460fe, 0x0584ec20, 0x93201184, 0x210a0256, 0x0c844201, 0x18010021, 0x180aef45, 0x66083961, 0x01290507, 0x91ce91b8, 0x0000ce91, 0x08ef6404, 0x2920cf85, 0x2009a35b, 0x06f94f04, 0x2307636b, 0x2e343617, 0x2705e650, 0x010e012e, 0x32161714, 0x91284384, 0x131a5501, 0xb3131a13, 0xa32f0584, 0x0a090604, 0x236e2304, 0x06090a04, 0x868c2d04, 0x5e172068, 0x132a08a3, 0x0b04971a, 0x05020507, 0x04822a2a, 0x040b0723, 0x66839036, 0x83900ad3, 0x013e162b, 0x07222627, 0x37011e06, 0x2d7f9336, 0x0512078a, 0x2d8c2d05, 0x07110706, 0x7d926e23, 0x0408c72c, 0x36360810, 0x07031107, 0xff91002a, 0xff891f20, 0xff861620, 0x34321727, 0x1422012b, 0xad911833, 0x20f58507, 0x25ee84b5, 0xc0101090, 0xad431010, 0x05534106, 0xad23ea85, 0x84802020, 0x386385f3, 0x81021f00, 0x0f006001, 0x33002b00, 0x00003b00, 0x14163201, 0x27222306, 0x05046023, 0x48173321, 0xdd4b1aab, 0x2a7f8707, 0x5e42e001, 0x2f43425e, 0x83432f5c, 0x0c582408, 0x82180c34, 0x26068603, 0x171722c7, 0x84571722, 0x60012605, 0x305e845e, 0x20048230, 0x22218aac, 0x8240340c, 0x22172221, 0x82058449, 0x820d209f, 0x02002403, 0x82800140, 0x05ad4d9f, 0x4b003f31, 0x63005700, 0x7b006f00, 0x93008700, 0x18009f00, 0x2010574f, 0x06644d01, 0x013b1423, 0xcb5f1832, 0x200ba30b, 0x8b3bae05, 0x9625202f, 0x1002253b, 0x1c1420fe, 0x2205ff6d, 0x4d5cfe1c, 0x984d0591, 0x21069406, 0x239ab0fe, 0x01241c87, 0x0ce80c20, 0x41860282, 0x64845e82, 0x14e0fe24, 0x6d18011c, 0x118b111d, 0x776f5420, 0x08179d0a, 0x00040022, 0x02c0ff08, 0x00c10100, 0x002e0007, 0x00580034, 0x011e1300, 0x012e1517, 0x16363727, 0x0714011d, 0x152f6018, 0x1617022f, 0x16323607, 0x35073233, 0x36150706, 0x26058325, 0x26352706, 0x85261527, 0x15372811, 0x16151736, 0x82163517, 0x82372008, 0x3635251d, 0x0f3209f3, 0x40080282, 0x0e1e10df, 0x69243f3b, 0x0e343e19, 0x0e0a100a, 0x0e182218, 0x01010f18, 0x68472105, 0x22e4301a, 0x4d012328, 0x26232327, 0x23263e0c, 0x1c2e3713, 0x3f0b2128, 0x25252326, 0x011b2a20, 0x03110202, 0x29038244, 0x121207bf, 0x290911f3, 0x60181622, 0x22080c85, 0x0d0e170e, 0xe3230c0b, 0x460f0348, 0x11478a0d, 0x09064806, 0x44140244, 0x0147050b, 0x04114615, 0x85070346, 0x0448360e, 0x06144618, 0x00000447, 0xffffff02, 0x018002e0, 0x0014009b, 0x08556624, 0x013f3422, 0x200acb4a, 0x095e5305, 0x32213327, 0x02011516, 0x059149c2, 0x4b9a9a21, 0xc22f0530, 0x0e770107, 0x0ad0fe0a, 0x010a0e0e, 0x180e0a30, 0x2012754c, 0x201b83be, 0x08048320, 0x03000020, 0xbdfffaff, 0xc3018602, 0x1b000b00, 0x00002b00, 0x37262705, 0x011f3613, 0x06030716, 0xd6720627, 0x0f162607, 0x07161701, 0x210f8505, 0x7b622627, 0x01072805, 0x040c3d17, 0x830c0388, 0x7d043205, 0x0a900908, 0x0809900a, 0x5b09092b, 0x0109095b, 0x200a881c, 0x271a842b, 0x0c031240, 0x030cd601, 0xfe330682, 0x09740c2a, 0x09098708, 0x2e090887, 0x50500809, 0x882f0908, 0x82108209, 0x41002019, 0xdc3c050f, 0xa5014002, 0x2e001a00, 0x37130000, 0x011d1636, 0x1415031e, 0x26060706, 0x27263637, 0xa0820982, 0x664c3420, 0x261b8205, 0x31150607, 0x82011f14, 0x88273716, 0x331c0cb0, 0x30213e4e, 0x04150b23, 0x1c54391c, 0x7808b00c, 0x15820808, 0x136d2508, 0x0c1c6d13, 0x0a980201, 0x04530f0d, 0x2f462915, 0x0819552c, 0x525a0c0e, 0x0d0f540a, 0x1607980a, 0x0716071d, 0x10241d83, 0x1a1a105e, 0x15820482, 0x01003c08, 0xbdfffbff, 0xc9010902, 0x00000f00, 0x07163601, 0x2e010e03, 0x23013d01, 0x37362622, 0x2f1cbd01, 0x2008bf0c, 0x19b0171e, 0x01170a1b, 0x1c2f0cbc, 0x0e1160fe, 0xb0121a06, 0x820b2d25, 0x01002bca, 0xc0ff0000, 0xc7010702, 0x59483700, 0x084a560a, 0x56330721, 0x59670574, 0x06125208, 0x3711153b, 0x37333523, 0x16011f36, 0x0115010f, 0x0e0e0ae8, 0x0a0e280a, 0x930e0a30, 0x200c8273, 0x270f8b28, 0x0c0b3bd3, 0x3b0c0c16, 0x8405eb6f, 0x1b01221a, 0x210d8293, 0x31840801, 0xfe251184, 0x3b6093e5, 0x2227820c, 0x83f33b0b, 0x83042097, 0x80012397, 0x9918c001, 0x0028081d, 0x07061401, 0x020e0706, 0x06230482, 0x7e011e07, 0x3e250605, 0x2e353701, 0x21968201, 0x11821632, 0x3615072a, 0x37023e37, 0x022e3736, 0x4c181284, 0x076407a1, 0x46122007, 0x01370633, 0x01181e80, 0x202d0d15, 0x0a10321c, 0x2f1c1705, 0x1a0e2f42, 0x821f1910, 0x191f2c07, 0x18183918, 0x010b071e, 0x820f1a11, 0xd7fe270f, 0x0e09090e, 0x05841709, 0x0584f720, 0x1a30013d, 0x1a2a082a, 0x02061310, 0x08050805, 0x21192909, 0x12212f2f, 0xc805161f, 0x831b2a07, 0x2a1b2f0b, 0x060b9007, 0x090b0302, 0x1605180d, 0x13821220, 0x44822f20, 0xfe0e0923, 0x21068489, 0x06843701, 0x0300002c, 0xbfffffff, 0xc1010102, 0x61601700, 0x16252105, 0x21083c68, 0x0b83011f, 0x32161426, 0x1736013f, 0x2205f142, 0x82141632, 0x220b851e, 0x82222634, 0x0613230b, 0xa86b2722, 0x01173d06, 0x01071416, 0x2d090930, 0x2c597e2c, 0x2808092d, 0x152d0808, 0x2d153c2a, 0x28100808, 0xe2251693, 0xfe071407, 0x05a04347, 0x07b90125, 0x82082a07, 0x7e59213b, 0x09203b82, 0x3c213b84, 0x213b832a, 0x169328dc, 0x07a1fe23, 0x23338207, 0x07170714, 0x143a4383, 0x00020007, 0x01c0ff18, 0x00c0017a, 0x00310029, 0x16321300, 0x030e1415, 0x2072011d, 0x023e2a08, 0x35013e37, 0x22232634, 0x051c730e, 0x37012e23, 0x071e6f36, 0x42ca4208, 0x25251a6e, 0x480a0e1a, 0x1f0d0e0a, 0x161b1313, 0x1d13192c, 0x13060f14, 0x03082b08, 0x3a463f06, 0x283a2828, 0x405ac001, 0x141b3120, 0x0a060b15, 0x0a0a0e0e, 0x0c1b2216, 0x0f150f0b, 0x130d1c16, 0x20268211, 0x282e8221, 0x298bfe5b, 0x39292939, 0x26008200, 0xff000002, 0x82c000c0, 0x001e2693, 0x37000026, 0x0dc95a33, 0xb74a3320, 0x298b870d, 0x08141414, 0x70080c0c, 0x07840c08, 0x0c829820, 0x2a3c362a, 0x182a3c2a, 0x30080c90, 0x08210d82, 0x820786d4, 0xa801210c, 0x2a261882, 0x0200003c, 0x6b821000, 0x6b82b020, 0x17000724, 0xb1750000, 0x56032007, 0x032006be, 0x2a050741, 0x422fb035, 0x68422f2f, 0x825e0a0e, 0x0a0e25c1, 0x310e0a42, 0x2f2c1083, 0x0f0a4701, 0xf0fe0a0f, 0x0a0d0d0a, 0x00204b82, 0x01255083, 0x001f00c0, 0x08675253, 0x8309f34b, 0x077b64c6, 0x011d1623, 0x21c78727, 0xd2891707, 0x07012f23, 0x20318906, 0x059d1837, 0x1f322c09, 0x33363701, 0x0907f001, 0x83600709, 0x10102b04, 0x10020907, 0x07300a04, 0x0f839009, 0x4e4e2123, 0x27078321, 0x50050843, 0x43080550, 0x01211392, 0x093e6420, 0x07096025, 0x82200304, 0x8290204c, 0x23438209, 0x07097070, 0x07230682, 0x84077373, 0x820f8a08, 0x020026d5, 0xc0ff0000, 0x059f5e02, 0x2d5cdb82, 0x013b210e, 0x0320db8e, 0xd993dbf0, 0x8f800121, 0x470f8fca, 0x00290627, 0x1500a101, 0x00001a00, 0x06f16525, 0x2f222126, 0x37342601, 0x08068952, 0x17072523, 0xf2013733, 0x0c0c908e, 0x0e149cfe, 0x010e0e60, 0x0e280e00, 0xc3fe0ea0, 0x4472507c, 0x280c8eae, 0x2015820c, 0x82168328, 0x31283215, 0x0043507d, 0x00010000, 0x02bfff00, 0x00c00140, 0x2259824b, 0x59011e32, 0x232e05ea, 0x16010e22, 0x0e22011f, 0x35022e02, 0x5b433634, 0x14152106, 0x0e281f83, 0x012f2601, 0x16173011, 0x9a6b1582, 0x83338205, 0x3e70081a, 0x30013f02, 0x32330607, 0x12070236, 0x1a1d0c1b, 0x11113114, 0x03040112, 0x20210a03, 0x0e191f24, 0x111b2324, 0x1414111d, 0x13343525, 0x20704012, 0x231a1c27, 0x2a231524, 0x0b0b222a, 0x09291311, 0x1d139f32, 0x24231b11, 0x0d232319, 0x0403040c, 0x0d100602, 0x19153011, 0x121a0c1d, 0x09171f12, 0x04011414, 0x4d010404, 0x09320b0a, 0x1e1a1732, 0x302c6182, 0x03121112, 0x040b0c04, 0x1f6b4504, 0x20085765, 0x25cf8260, 0x003c000b, 0xf9583600, 0x16322505, 0x3714011d, 0x06220584, 0x9c431507, 0x013b260e, 0x3d012e35, 0x45751801, 0x17162308, 0x0e833616, 0x50d8332c, 0x38503838, 0x57090740, 0x61183841, 0x3833084f, 0x07095741, 0x42090710, 0x09543931, 0x28386007, 0x833828a0, 0x09682704, 0x63423007, 0x1c842209, 0x22240484, 0x28446909, 0x21083783, 0x044e332a, 0x30384d06, 0x00000907, 0xfff9ff02, 0x018702b9, 0x002500c7, 0x05000046, 0x06010f16, 0x60480127, 0x34352605, 0x1e323336, 0x21aa8201, 0x81841707, 0x2006654f, 0x10054f0f, 0x1726b084, 0x1617021e, 0xd0821737, 0x0c7a0228, 0x0c0a1409, 0x0684b3fd, 0x2838b328, 0x051a2c1a, 0x85840b1a, 0x8b4c1421, 0x063431ba, 0x071b2f1f, 0x1012320e, 0x190d0a0a, 0xc701090c, 0x8a230684, 0x8238282d, 0x0ea02533, 0x1a181410, 0xcb82a782, 0x80262a22, 0x072bca8d, 0x1d2c1a29, 0x27010102, 0x50220206, 0x0d270bdb, 0x00002b00, 0x6b322113, 0x25220a22, 0x277e2314, 0x82342008, 0x011d23c4, 0x07863533, 0x15163226, 0x0ca8010c, 0x2405256b, 0xfe0cc001, 0x240b8258, 0x0c280c30, 0x38038280, 0x011c1430, 0xfcfe0c00, 0x141c1c14, 0x2c0c0401, 0x14240c0c, 0x0c0c341c, 0x22038334, 0x8200141c, 0xff022500, 0x01c0fffe, 0x00330182, 0x00400038, 0x16360100, 0x0614011d, 0x3526012f, 0x461e1523, 0x36380b13, 0x022a3537, 0x0e07050e, 0x37012e01, 0x36263736, 0x07163233, 0x06373433, 0x0806b96b, 0x06b2012d, 0xa8060808, 0x1b0f280a, 0x0a0e0b13, 0x290e0a90, 0x061e041f, 0x07120618, 0x0305090d, 0x04081213, 0x210b3c1e, 0x08221c1e, 0x47810a3a, 0x2f08059e, 0x050801a6, 0x01080574, 0x1b10021c, 0x1f181204, 0x0e0af810, 0x21f70a0e, 0x021b0835, 0x0d0a0603, 0x08090c13, 0x4c091307, 0x2d311b0f, 0x1202101b, 0x44068b47, 0x01240597, 0x2c00c001, 0x0026b582, 0x14151601, 0x03820706, 0x06010f26, 0x3d262223, 0x09684f18, 0x2e222325, 0x61343501, 0x3b08057a, 0x3233013e, 0x32071617, 0x2e34013e, 0x06222301, 0xf9011614, 0x103c4407, 0x0605620b, 0x0b160e0a, 0x0933091a, 0x68170801, 0x03060b07, 0x110e0431, 0x64276808, 0x0a203348, 0x0b120b77, 0x11330282, 0xad011717, 0x64483221, 0x190d6827, 0x0e033105, 0x8217680a, 0x0a333b2f, 0x0616091b, 0x0506070b, 0x070c0763, 0x0207433d, 0x16120b9f, 0x22170b12, 0x56180017, 0x1c200cfb, 0x2009d376, 0x08e17525, 0x760ad276, 0xfe3206ca, 0x14078896, 0x08081007, 0x08086565, 0x07130810, 0xc5760788, 0x87562105, 0x66210f85, 0x221f8566, 0x8f140787, 0x0714475f, 0xe26d0520, 0x011f2206, 0x09d27507, 0x91ce9927, 0x0191ce91, 0x4f5e906a, 0x5fa206da, 0x2007ab76, 0x88568813, 0x222621c8, 0x9205a276, 0x059d7645, 0x1f417892, 0x07f95110, 0x16410320, 0x21c88808, 0x8e763216, 0x76609206, 0x39410689, 0x42002012, 0x022307df, 0x5fc10142, 0x3721057f, 0x051a4422, 0x2b061627, 0x17011e01, 0x065e6c35, 0x2405994a, 0x15011e17, 0x0bcf4414, 0x013e1524, 0x318a2337, 0x22010e25, 0x4a002726, 0x2408069a, 0x0506080d, 0x44080844, 0x23080605, 0x3430520e, 0x1c340c0c, 0x28283924, 0x341c2437, 0x05070705, 0x0e523034, 0x2e238923, 0xaa8e1020, 0x0001108e, 0x1a13131a, 0x850f6013, 0x270f3e3a, 0x0cbe0631, 0x0a050c28, 0x39281f32, 0x27380101, 0x050a321f, 0x05280507, 0x3106be07, 0x24258727, 0x49575749, 0x07b55401, 0x24092b44, 0x002600c1, 0x080d4c32, 0x7f07d575, 0x172b175d, 0x22263435, 0x14011d06, 0x7f363216, 0x70231869, 0x82172217, 0x1a707f02, 0x11309825, 0x83111717, 0x106f5204, 0x180af351, 0x8312c947, 0x9114237d, 0x028291ce, 0x6c98ac31, 0x836c986c, 0x6a4b4b6a, 0x2634664b, 0x42263426, 0xfe210685, 0x221782e1, 0x82cc986c, 0x6a4b2217, 0x2e178275, 0x00003426, 0x08000300, 0xf8017800, 0x53000801, 0x0021055b, 0x050b5424, 0x16023a22, 0x0a540884, 0x48012707, 0x2a2a3c2a, 0x0483743c, 0xcafe2a22, 0xde200684, 0x17840584, 0x02821a82, 0x18264f84, 0xa800c8ff, 0x4f87b801, 0x21063943, 0x6c54023c, 0x62022005, 0x4220068e, 0x01213b8f, 0x82609108, 0x096f5c4f, 0x17000f24, 0x97522900, 0x0abf4506, 0x48183620, 0x173208d9, 0x2e353632, 0x06222701, 0x3314011d, 0x1417011e, 0x118f013b, 0x9c413320, 0x282c330b, 0x1c281c1c, 0x050704ce, 0x07055375, 0x04553c0b, 0x0c828a0b, 0x827eb121, 0x9266230c, 0x10690b04, 0x822c820f, 0x05073002, 0x07057553, 0x040b2304, 0x070b3c55, 0x85b27d05, 0x6692220c, 0x0c33440b, 0xa3531520, 0x3e052709, 0x2f263401, 0x97832601, 0x44371621, 0x6c21062c, 0x24008206, 0x18180cb0, 0x069e410c, 0x0c037f2d, 0x6b030c0c, 0xd00e0e07, 0x5c070e0e, 0x1b200c37, 0x1812136b, 0x8c0a235c, 0x080126d3, 0xf8fe0c0c, 0x23bb8e0c, 0x0c380cf8, 0x00200282, 0x2905df42, 0x01c001e0, 0x000f00a0, 0x7318001f, 0x5c181009, 0x16220e3a, 0xe35c9001, 0x18e1200a, 0x180ec55b, 0x290cc772, 0x0c0bb862, 0x960c0c16, 0x06820c46, 0x0b680b22, 0x9b726b82, 0x000f2409, 0x912a001c, 0x0f032d6d, 0x011e1401, 0x36013f33, 0x3726012f, 0x64059144, 0x3420057c, 0xb631788c, 0x07030688, 0x04883903, 0x67053704, 0x0714071e, 0x22098317, 0x8c071704, 0x2e012381, 0x26823988, 0x26820620, 0x09043824, 0x2582071e, 0x04370522, 0x14202582, 0x08334118, 0xc5014131, 0x40001e00, 0x07010000, 0x013d2606, 0x18020e22, 0x230a8b58, 0x36343533, 0x14287d82, 0x17363407, 0x37323316, 0x2105ae47, 0xb2582123, 0x3b2c0805, 0x07163201, 0x2b060706, 0x02211101, 0x1d0b9038, 0x15303f2d, 0x0914040c, 0x2d1c2b1f, 0x1d2f4a46, 0xc008900b, 0x05050608, 0x0a060c0c, 0x08053248, 0x79141c35, 0x1e080509, 0x33050415, 0x0f014001, 0x100c0b88, 0x27170a48, 0x0d0c283b, 0x294f1807, 0x16263e2a, 0x0c104809, 0x1407880b, 0x010805d1, 0x07020401, 0x5e145906, 0x12260651, 0x04160f05, 0xba82c0fe, 0x56030021, 0x1e230cff, 0x823e0000, 0x0614248b, 0x57022622, 0x0526069f, 0x0f012e36, 0x02820601, 0x013f1628, 0x13d83736, 0x0282131a, 0x91ce4732, 0x0191ce91, 0x0e070476, 0x050b9009, 0x0c140642, 0xcd200682, 0x13221a83, 0x1a820501, 0x03ce912d, 0x03051008, 0x900b0542, 0x8206140c, 0x0e1f4206, 0x3b5f1a20, 0x17052111, 0x26246183, 0x0622012b, 0x2b0d225f, 0x087c9cfe, 0x06057c08, 0x0608f608, 0x200c185f, 0x211784a0, 0x5b910f0f, 0x27603520, 0x07cc4306, 0x2627252a, 0x1606010f, 0x3632013b, 0x0bbb6118, 0x89640121, 0x01102459, 0x411c1460, 0x5889065c, 0x0b9b4518, 0x4d18b382, 0x13220f17, 0x7d433637, 0x92302007, 0x0e2a433f, 0x0020c78a, 0x01340082, 0xe0ff0000, 0xa0014201, 0x00004500, 0x07161725, 0x26222306, 0x2206454e, 0x6b26013b, 0x3e2608b1, 0x17323301, 0xc082021e, 0xa56b2720, 0x260b8207, 0x1706012b, 0x84163233, 0x031e3709, 0x36373233, 0x02093701, 0x4d1f1e0b, 0x051e1370, 0x01150c07, 0x06821602, 0x6f16213c, 0x041b1948, 0x0c010205, 0x11150b03, 0x8a103e28, 0x06010706, 0x02930a02, 0x09858602, 0x08723708, 0x15261f18, 0x220c1716, 0x08030b2c, 0x05074656, 0x16140c1c, 0x0c1e0507, 0x01055040, 0x2c030704, 0x2804020b, 0x1d060923, 0x0917130a, 0x13091c06, 0x060d1620, 0xbf850002, 0xbf824020, 0xbf823620, 0x011d3222, 0x2106ee4a, 0x9f47013b, 0x36342108, 0xa383ba82, 0x0e21b983, 0x06c57304, 0x15012b24, 0x1a823533, 0x34012908, 0xd8fe0c0c, 0x1c240c0c, 0x4f1c0c0c, 0x092f373d, 0x09071d07, 0x11091b1e, 0x04070b0e, 0x540c0c54, 0x6005077b, 0x0c0c680c, 0x3005174b, 0x23473742, 0x08240a07, 0x08041306, 0x080e0d0a, 0x3a178240, 0x0705337f, 0x01000000, 0xc0fffcff, 0xc0012a01, 0x00004100, 0x07011e37, 0x1807010e, 0x34083943, 0x012e2722, 0x1736013f, 0x32013b16, 0x2f343536, 0x27012e01, 0x90541826, 0x1732260b, 0x010f011e, 0x082c7306, 0xd1172208, 0x0c102d2c, 0x0709243a, 0x30090720, 0x06020626, 0x0f0a0a22, 0x110d4213, 0x2e226715, 0x31410404, 0x281a9102, 0x0dd7090c, 0x27212d54, 0x05384c01, 0x0e051e31, 0x07092205, 0x160d110a, 0x340a1e06, 0x8f473122, 0x10092217, 0x0a434103, 0xc4823420, 0x17162329, 0x011d3233, 0x82012b14, 0x161722be, 0x05ec6906, 0x2006934d, 0x07547536, 0x16822620, 0x14822620, 0x83213321, 0x013d082b, 0x05094934, 0x350c0c3b, 0x97394c05, 0x53080606, 0x04a50305, 0x1f540507, 0x0c9f0527, 0x2914920c, 0x0c070555, 0x010c2801, 0x0c110f60, 0x46380c28, 0x0f068b02, 0x05039903, 0x20070535, 0x2411821b, 0x2d05071b, 0x8207820c, 0xff13288b, 0x016e01e0, 0x823a00a0, 0x1632238b, 0x8c86010f, 0x86150721, 0x82152008, 0x18222099, 0x2009b380, 0x06864927, 0x3626273e, 0x1f32013b, 0x3f363302, 0x01333601, 0x0307075f, 0x0c0c3a50, 0x0c6c1458, 0x380c6c0c, 0x0c3f0382, 0x0c58146c, 0x03503a0c, 0x08410707, 0x021b3703, 0x03370f0c, 0x0ca00108, 0x200c9606, 0x821b250c, 0x0c5c2304, 0x06825c0c, 0x82251b21, 0x06962a04, 0x4871070c, 0x07712325, 0x08db4300, 0x97828020, 0x32002926, 0x23370000, 0x06228e89, 0x8f8a012b, 0x8a828e84, 0x82343521, 0x1416238e, 0x28822706, 0x35362408, 0xef232634, 0x0c0ca15c, 0x3b0507a1, 0x0c0c340c, 0x070c3434, 0xa30c3405, 0x9c515140, 0x2828244d, 0x82208023, 0x053422fd, 0x201c8207, 0x2d7c8228, 0xcf07052d, 0x51804f0c, 0x232996db, 0x7f822822, 0x00000626, 0x4002e0ff, 0x452e7f82, 0x52004e00, 0x64005a00, 0x00006800, 0x80502301, 0x012b2205, 0x05a84107, 0x07872320, 0x4105bd76, 0x01230e1d, 0x82363733, 0x861f2096, 0x075d4107, 0x23370522, 0x32371282, 0x013f013e, 0x013b1723, 0x23272627, 0x37170706, 0x021e1723, 0x83363331, 0x34022f14, 0x0c46073f, 0x022a550c, 0x0209390a, 0x0785372b, 0x0c54292a, 0x3e08460c, 0x12300c0c, 0x3b087f82, 0x11020a2a, 0x0902146d, 0x14020a2c, 0x0a020e6e, 0x0107062e, 0xfe0c3013, 0x0b260c78, 0x01010106, 0x51081e03, 0x021a8206, 0x020c0203, 0x270c8103, 0x0103030c, 0x071e0201, 0x00010751, 0xb723fd83, 0x83b70909, 0x280c2203, 0x250e830c, 0x09090551, 0x03855656, 0x82510521, 0x36963714, 0x180c2f36, 0x09202081, 0x0b0c0c0b, 0x0b36367f, 0x8f160c18, 0x6b522020, 0x80012b05, 0x1100c001, 0x00001a00, 0x2f7b1413, 0x07256d10, 0x0a0ee039, 0xfe0a0e88, 0x0e0e0ab0, 0x80a0c80a, 0x62070a06, 0x0a380107, 0x83b8fe0e, 0xd0012611, 0x067a0e0a, 0x26138280, 0x00050000, 0x86c0ff00, 0x001d2653, 0x00350029, 0x2059933e, 0x0a095b13, 0x22082a69, 0x8a32013b, 0x6d352016, 0x7d8c08a3, 0xa80c4023, 0x20028e0c, 0x27909360, 0x0c088cfe, 0x4c0c080c, 0x54200584, 0x0c200a83, 0x042aa387, 0xe0fffdff, 0xa001c001, 0x9f821500, 0x52004f28, 0x32370000, 0x00650f16, 0x69362005, 0x322b06df, 0x25111516, 0x011d1632, 0x51010f14, 0x4e180d6c, 0x372109b8, 0x05a64416, 0x42012f21, 0x2621053e, 0x06f17835, 0x33071724, 0x7218b027, 0x09250b9d, 0x09072007, 0x29038201, 0x07383d0b, 0x80070909, 0x09860907, 0x09019f2c, 0x030c1907, 0x04044705, 0x2382190b, 0x0b043b31, 0x34040b2a, 0x14601020, 0x05056007, 0x44140760, 0xfe280593, 0x070940d0, 0x460a0e12, 0x0a8a4a84, 0x03025522, 0x0d2c4c82, 0x07090b0d, 0x0ba00203, 0x0030650b, 0xe3920082, 0x8c741320, 0x012b2109, 0x08286218, 0xe3bb0520, 0xe3911020, 0xd9886020, 0x0121e3a2, 0x28e48720, 0x0907d0fe, 0x30010709, 0x22e4aa80, 0x7afdff05, 0x0f2306db, 0x71002500, 0x6f1806a5, 0x27200f1b, 0x561ad941, 0x33200801, 0x780fa571, 0x83410f9b, 0x83402005, 0x914020a3, 0x183020f3, 0x82083d75, 0x070921f3, 0x01220484, 0xd0820700, 0x0584ff20, 0x200a0e56, 0x0fd54140, 0x0ad17118, 0x2020fb82, 0x04823483, 0x73180120, 0xe7a40b2f, 0xdd410320, 0x0e3f5614, 0xe020e7ab, 0x7020e791, 0x0121e7a9, 0x0fd94100, 0x97093856, 0xff0434e7, 0x01defffd, 0x00a001b1, 0x0037001f, 0x0055003f, 0x43220100, 0x16210853, 0x0e87431d, 0x013b3625, 0x82361735, 0x0e142116, 0x27067e52, 0x2e373637, 0x033e3701, 0x20077560, 0x14fb4107, 0x57300121, 0x102008d0, 0x3b09e557, 0x133e280a, 0x0d061e25, 0x0d050a02, 0x2b24090c, 0x0e0b030a, 0x0c101811, 0x9c0c100c, 0x57110941, 0x751808d5, 0x40390aac, 0x27310ba3, 0x2232230b, 0x0606020d, 0x05050f14, 0x263d0408, 0x0a0e110a, 0x2243825e, 0x4108100c, 0x00200ff9, 0x1529ef89, 0x3d001d00, 0x00005300, 0x70cf9325, 0x27200880, 0x231e0d41, 0x06161727, 0x510ada43, 0x32220546, 0xda8f4a01, 0x221d0622, 0x1c20d884, 0x24130841, 0x080850d5, 0x06966c0b, 0xbd20f885, 0x1422d792, 0xd5845c1d, 0xde58f820, 0x0b084107, 0x07603b23, 0x07d04314, 0x0029f583, 0x00030000, 0x02c0ff00, 0x06476601, 0x4d754420, 0x07b34111, 0x0614012d, 0x16323307, 0x23071415, 0x83070616, 0x0e072702, 0x22012b02, 0xce822627, 0x34013d33, 0x37013e37, 0x33363736, 0x68021e32, 0x0a0e0e0a, 0x08048350, 0x0e141e2f, 0x010e140e, 0x65012058, 0x01132319, 0x060d0408, 0x0c060c0a, 0x1d212a0a, 0x23483003, 0x04070511, 0x0e103514, 0x0b140e0b, 0xe00f1915, 0x05dc730e, 0x0e0af022, 0x0805b072, 0x19790123, 0x1723073f, 0x2e11131e, 0x0e291411, 0x0e0e121a, 0x07102002, 0x0305d605, 0x0f0f4d15, 0x0f053a2c, 0x23c39024, 0x11000046, 0x20086f57, 0x23a18206, 0x14363526, 0xad83c585, 0x022e2722, 0x24063c78, 0x3b363732, 0x24ae8201, 0x1e071617, 0x20028301, 0x05364633, 0x15011e25, 0x86020e14, 0x20c682c1, 0x24c28228, 0x0201140e, 0x30a78214, 0x101f1c0e, 0x11050704, 0x03304823, 0x18241915, 0x30cd8308, 0x08040d06, 0x19231301, 0x0f200165, 0x88011519, 0x82fe820a, 0x0a0e22c3, 0x29fe8432, 0x2c3ae8fe, 0x2b280d0f, 0xb8820311, 0x2010072b, 0x0b0d0501, 0x290e1a12, 0x39d58214, 0x23171e13, 0x19193f07, 0x00050f24, 0x05000200, 0xfb00c0ff, 0x0700c001, 0x8f502200, 0x16132109, 0x774bc582, 0x053c4208, 0x013b2508, 0x32333716, 0x25366517, 0xb7253625, 0x380c0e03, 0x0a200a0e, 0x0e0c380e, 0x13043003, 0x0b25250b, 0xc0010413, 0x25261b82, 0x0cc3fe36, 0x92836812, 0x0c126827, 0x111112c0, 0x055f4812, 0x84c00021, 0x89242067, 0x086b4567, 0x274b6b8b, 0x37162205, 0x2f698445, 0x0e1c1470, 0x0a0e100a, 0x100e0a40, 0x141c0e0a, 0x65866882, 0x141c6b22, 0xfa84f782, 0x0a0e8827, 0x111c1488, 0x0a275e11, 0x2f000724, 0x69893700, 0x1416052c, 0x1617010f, 0x07012f06, 0x04832206, 0x613f2621, 0x27250597, 0x011f3626, 0x055a6b37, 0x010f162a, 0x26343606, 0x16140622, 0x34052c59, 0x0a0a5601, 0x0f03215e, 0x0430640a, 0x642f0516, 0x2104100a, 0x2512835e, 0x640b0f04, 0x1287052f, 0x4b4b632d, 0x014b4b6a, 0x38503820, 0x88185038, 0x85299216, 0x0a102312, 0x3183bf64, 0x004b6a22, 0x50080082, 0xff1b0001, 0x01e801c0, 0x001800c0, 0x2e220500, 0x36343501, 0x1e173233, 0x010e0701, 0x37161415, 0x0e071636, 0x451b0102, 0x6a964576, 0x03081718, 0x92372f07, 0x0508085d, 0x404a3e18, 0x6a467545, 0x10020496, 0x365e1a05, 0x0212795e, 0x2a1e060f, 0x57491817, 0x00092a0c, 0x00250015, 0x21113300, 0x057b6211, 0x14153724, 0x9472013b, 0x06214706, 0x2d07bb54, 0xc0012033, 0x80fe0d13, 0x0ca0130d, 0x02820c68, 0x65180120, 0x012c0ae0, 0x0de0fe20, 0x08e11313, 0x0c080c0c, 0x302a2682, 0x07090907, 0x00130d30, 0x9b5fff02, 0x00c02a05, 0x0045003f, 0x06142500, 0x29b7822b, 0x14161707, 0x012f2206, 0xc8492306, 0x27222e06, 0x26220607, 0x26013f34, 0x2223013d, 0x08e48226, 0x35013b3c, 0x36342627, 0x33011f32, 0x16323637, 0x15010f14, 0x00163233, 0x23151632, 0x14000234, 0x3d0e370d, 0x0a1a1309, 0x0c332836, 0x28330c18, 0x131a0a36, 0x370e3d09, 0x0d13140d, 0x19842f38, 0x1384e620, 0x0d382f2f, 0x5cd3fe13, 0x0d9fe042, 0x1d201012, 0x2727833c, 0x0cf42037, 0x3720f40c, 0x3c292683, 0x1210201d, 0x3b130e0d, 0x8419842e, 0x3b2e2713, 0x42130113, 0x73502e2e, 0x51052011, 0x332106cd, 0x2d888221, 0x03061411, 0x011f0607, 0x013d3616, 0x71522634, 0x7ca0270c, 0x057c0808, 0x60520f0f, 0x0a89500d, 0xef535a82, 0x420f200c, 0x0420098d, 0x20056442, 0x06e95332, 0x422f4825, 0x53422f2f, 0x882006e5, 0x2f200b83, 0x08088f52, 0xc1010222, 0x42002c00, 0x17250000, 0x010f0616, 0x012f2606, 0x27262223, 0x3e343526, 0x011e1701, 0x010e1417, 0x2a0acc5e, 0x1f323317, 0x16363701, 0x410e1727, 0x37210664, 0x080a8216, 0x16141577, 0x37363233, 0x030ef001, 0x0c410604, 0x8c3e061a, 0x2002120c, 0x19121f12, 0x190e0123, 0x07820510, 0x79070909, 0x09148405, 0x0c062539, 0x57151ab6, 0x3d674935, 0x19050432, 0x2a2e421f, 0x1c3e063f, 0x21030d06, 0x860c0906, 0x04e10b10, 0x01111e12, 0x10192401, 0x2102121d, 0x07200709, 0x7b122009, 0x1c040213, 0x673a2f37, 0x13593749, 0x330f271b, 0x37422e1f, 0x06174f29, 0x8b4e8120, 0x32253305, 0x010e1516, 0x3d22012b, 0x26060701, 0x3f34013d, 0x08883501, 0x013b3424, 0xba831d32, 0x14011d25, 0x8215010f, 0x330885c3, 0x34353632, 0x74013336, 0x7b040705, 0x310c5065, 0x37090906, 0x0c230484, 0x82810c38, 0x8487200c, 0x62462b04, 0x07c00507, 0x0c706405, 0x5c820bc1, 0x020a2924, 0x08871e0c, 0x0c0c4524, 0x14851d33, 0x871e1e21, 0x4d9f2d08, 0x00070448, 0x00000200, 0x8002e0ff, 0x33359f82, 0x00003c00, 0x07141625, 0x06212306, 0x040e3307, 0x15233523, 0x82a58222, 0x333422ad, 0x82058535, 0x33153189, 0x031e3235, 0x17162317, 0x32073221, 0x22232636, 0x0234a782, 0x342f2f51, 0x07e2fe45, 0x4228ce09, 0x22372a2b, 0x201c1410, 0x29080082, 0x2210141c, 0x422b2a37, 0x0709ce28, 0x35451e01, 0x0f0c0c0f, 0x3416f008, 0x060a1816, 0x23242308, 0x25808016, 0x2818401b, 0x03821018, 0x251b4025, 0x82168080, 0x06082815, 0x2828700a, 0x47084008, 0x9f4c052b, 0x000f2405, 0x553d0025, 0x260811e5, 0x021e3217, 0x33023e32, 0x34353736, 0x22212326, 0x16011d06, 0x0e070605, 0x032e2204, 0x15272627, 0x21331614, 0x56353632, 0x822b0b00, 0x0f081101, 0x11080f0a, 0x6e284a01, 0x2829057d, 0x49161801, 0x10091001, 0x8201820f, 0x16492717, 0x10010a0e, 0xf7520e0a, 0x0ee63f0d, 0x05070705, 0x1920350e, 0x0a0e0e0a, 0x11092019, 0x060c0135, 0x09040409, 0x35010c06, 0x15838e11, 0x00820020, 0x1000032a, 0xf001e0ff, 0x1700a001, 0x3920b382, 0x08279118, 0x73509d82, 0x5f3f2006, 0x032205e4, 0x6c521632, 0x33362608, 0x33153337, 0x08038635, 0x011d3223, 0x3b343521, 0x08f00101, 0x78fe0c18, 0x0508180c, 0x010401e8, 0x0a1805e8, 0x30fe080e, 0x380a0e08, 0x2a008340, 0x60fe0c24, 0x4001240c, 0x820c0810, 0x10082f00, 0x01580205, 0xfe025801, 0x100a0ecb, 0xc1820808, 0x83c0f021, 0x140c2700, 0x00000c14, 0x00820002, 0x01810227, 0x00230084, 0x0895822e, 0x07141673, 0x012f0605, 0x15160706, 0x16170714, 0x22012b06, 0x26013f26, 0x36373435, 0x34262737, 0x1f362537, 0x14173701, 0x35262206, 0x02161737, 0xfe12126e, 0xc41717e9, 0x0e100213, 0x0809011a, 0x01090838, 0x01100e1a, 0x12123011, 0x17171701, 0x700e910a, 0x910e70a0, 0x06270121, 0x08550622, 0x170e3c08, 0x0a10110a, 0x0c0c0773, 0x100a7307, 0x151a0912, 0x2919850f, 0x1b712cf7, 0x711b2525, 0x91820a2c, 0x82050021, 0x02202404, 0x82600180, 0x000f2f09, 0x004e0044, 0x37000065, 0x013f2317, 0x82442516, 0x21232205, 0x12057411, 0x26070630, 0x020f2627, 0x17161706, 0x1f060706, 0xb7821601, 0x16171633, 0x2736013f, 0x37362726, 0x34253233, 0x11213336, 0x28bf8321, 0x3b011e06, 0x013f3201, 0x053c5333, 0x26012f22, 0x0734ed82, 0x0b260b98, 0xd3010508, 0x0a0e0e0a, 0x0001e8fe, 0x100c400c, 0x0c380382, 0x09150972, 0x07090708, 0x0a070b07, 0x0a0e0c0b, 0x0b060806, 0x14101112, 0x0a3a0883, 0x0b200d0d, 0xb0fd0c0b, 0x18010a0e, 0x0e0ae8fe, 0x0602013b, 0x03091704, 0x03823c09, 0x022c8982, 0x20090339, 0x26d40309, 0x80152126, 0x23055f42, 0x10784001, 0x02825982, 0x150c102a, 0x090b0a16, 0x07040406, 0x092a4882, 0x0e0a0609, 0x0e0b070b, 0x04820c0d, 0x0a385d82, 0x0a6c2323, 0x0ec0fe0e, 0x0704380a, 0x1f1f0905, 0xa9060a09, 0x00000808, 0x2009af6e, 0x08df4d15, 0x6e005e22, 0x82100f43, 0x011f26e4, 0x35031516, 0x24e08334, 0x14011d06, 0x22128216, 0x8d013d36, 0x9e17200f, 0x013d241f, 0x82262223, 0x27152104, 0x0eee9118, 0x0de00127, 0xfe0d1313, 0x240583c0, 0x2e090df3, 0x0ab34d09, 0x8914d54c, 0x07302414, 0x8380a009, 0x83202037, 0x20012104, 0x4c844682, 0x4c820120, 0x0d224882, 0xf14d9dfe, 0x87092107, 0x79200988, 0x77261392, 0x30070940, 0x86874080, 0x0d40012a, 0x00080013, 0x01c0ff00, 0x00220182, 0x6b510011, 0x003d2905, 0x00550049, 0x05000061, 0x57074c43, 0x0120084b, 0x180a0148, 0x23080e64, 0x1722012b, 0x2109aa7a, 0xb5471733, 0x0b076d06, 0x8b0b9d51, 0xb401220b, 0x059c7a0c, 0x0a500125, 0x6ce0fe0e, 0x34210b26, 0x200d830c, 0x18048274, 0x850c0c6a, 0x0c202f22, 0x010c1414, 0x0e0e0ac8, 0x0138fe0a, 0x2b832894, 0x05846c20, 0x2085a020, 0x0c54a025, 0x8aac540c, 0x211d8517, 0xaf520000, 0x0007260a, 0x12000029, 0x053a5c34, 0x14163623, 0x07cf500f, 0x18013d21, 0x2107a083, 0x66481135, 0x2a782f09, 0x3c2a2a3c, 0x5f0913cb, 0x0d100d13, 0x05841013, 0x13095f2a, 0x66560a1a, 0x5a010a56, 0x2a211d83, 0x280e8250, 0x0df5fe5e, 0x700d1313, 0x08058370, 0x5e0b0122, 0x09131a0a, 0x00095757, 0xff050000, 0x02e0fffb, 0x00a50105, 0x001d0012, 0x00330028, 0x3600003f, 0x200a6b64, 0x05de4806, 0x0616262b, 0x012e0607, 0x013e2627, 0x08078216, 0x3637368f, 0x1617011e, 0x0e011e17, 0x37012e01, 0x2e07023e, 0x1e013e01, 0x030e0701, 0x3e5c4cda, 0x4c192226, 0x194d1213, 0x193e2622, 0x0e161410, 0x0805171e, 0x2f9e2c14, 0x1814122d, 0x06191f0f, 0x1416ee09, 0x142c2a10, 0x1e170508, 0x1214188e, 0x09142f2d, 0x18151104, 0x265f43e0, 0x19191e1a, 0x5f261a1e, 0x052d346a, 0x11190b03, 0x1d0a2d1a, 0x3741260c, 0x200f0406, 0x051f2115, 0x0a1d342d, 0x19111a2d, 0x3706210b, 0x370c2641, 0x111b1021, 0x2b961807, 0x00c12408, 0x82190013, 0x130023c9, 0x8f821f36, 0x14011d22, 0x08053b69, 0x34013d44, 0x07013f36, 0x35371715, 0x07353703, 0xd01111ef, 0xd01b110e, 0x1ad01615, 0xc0e10e11, 0xa0a0c0c0, 0x06ba01a0, 0x18064e06, 0x0d1ee10f, 0x680b0b68, 0x0fe11e0d, 0x48100618, 0x024e4e02, 0x8650e4fe, 0x00820042, 0x00000728, 0x0002dbff, 0x6382a301, 0x2700212d, 0x2f002b00, 0x37003300, 0x53250000, 0x06230552, 0x8207012f, 0x06104803, 0x013f3422, 0x19828682, 0x07350724, 0x7c832715, 0x82032721, 0x27372409, 0x86051707, 0xe9013d07, 0x10641417, 0x10686810, 0x17146410, 0x0d641761, 0x2217640d, 0x66667755, 0x55551266, 0x01210582, 0x08068456, 0x1909c631, 0x320a166e, 0x34340808, 0x0a320808, 0x09196e16, 0x09196c24, 0x26050526, 0x016c1909, 0x8f452449, 0x01292901, 0x4bb7fe26, 0x279b4f27, 0x86462a27, 0x00002607, 0xfffcff03, 0x29b382bd, 0x001c00c1, 0x00550038, 0x3a4c3700, 0x3b162205, 0x05d85701, 0x012e2227, 0x2627013f, 0x24ad8236, 0x26371716, 0x05324122, 0x2805d846, 0x0f163637, 0x2f010e01, 0x28238301, 0x0e141617, 0x15012b01, 0x82e28314, 0x25d9821f, 0x2f363233, 0x0b822601, 0xb9176008, 0x28091202, 0x13120a33, 0x340c0c34, 0x12093624, 0x03092933, 0x0c066e0b, 0x24097c01, 0x0b061209, 0x12070a22, 0x2a1c6a1c, 0x03120928, 0x060b0219, 0x09030b6e, 0x180fad28, 0x14601b2d, 0x0c0c5007, 0x60140750, 0x1b0a1213, 0x0a220a07, 0x0d0aba07, 0x10511906, 0x0c280c21, 0x51224130, 0x8215051a, 0x074b0833, 0x0f0f4907, 0x16060a1d, 0x2d1d0a06, 0x0619422d, 0x076e0a0d, 0x03190207, 0x9c1a0515, 0x1c2b3517, 0x08080b30, 0x500b0b50, 0x300b0808, 0x0a2c1021, 0x0a061507, 0xfeff0400, 0x02020000, 0x37008001, 0x50004100, 0x00006100, 0x82163201, 0x012b21e4, 0x1421c082, 0x08af4d07, 0x09882120, 0x013d2626, 0x22233734, 0x3626d982, 0x3e37013b, 0x30823b03, 0x25011f26, 0x2e272107, 0x2227ff82, 0x023a0706, 0x4a35033e, 0x200805f8, 0x34363221, 0x0e222326, 0x1e141501, 0x01013a03, 0x010706f4, 0x14090306, 0x0d131016, 0xff130d20, 0x08068400, 0x14161037, 0x01060309, 0x113c0607, 0x201b1506, 0x39228011, 0xdcfe110c, 0x14000114, 0x800e1905, 0x0239190e, 0x060b060d, 0x1c220307, 0x4e011212, 0x0e12120e, 0x03101709, 0x2e138207, 0x0910010d, 0x13091806, 0x1218301d, 0x82130d36, 0x0856824e, 0x360d1322, 0x1d301812, 0x06180913, 0x1b0f2a09, 0x20260a12, 0x3232122a, 0xaf11110d, 0x06030201, 0x12210f04, 0x1c294882, 0x09171012, 0x02030604, 0x67411801, 0x0031290c, 0x00420039, 0x2500004a, 0x4105d266, 0x36261601, 0x013e013f, 0x4018013b, 0x17200b12, 0x082d4b18, 0x20060a41, 0x24108707, 0x1c16ce01, 0x08f18b20, 0x161c2023, 0x1b2b0716, 0x800d130b, 0x1b0b130d, 0x9bfe072b, 0x1a13131a, 0x16013513, 0x040a0111, 0x01030cd6, 0x2710840d, 0x172304ce, 0x29132430, 0x2929da89, 0x17302512, 0x1b550423, 0x23e98422, 0xc31b2220, 0x13273882, 0x05435d1a, 0x84b20e08, 0x2acf820a, 0xfffbff01, 0x018501bf, 0x822f00c1, 0x061624c9, 0x4815012b, 0x352508f9, 0x3f262223, 0x20048601, 0x270a8227, 0x1632013e, 0x0716011f, 0x24842582, 0x7a014e08, 0x890f0c0a, 0x0909041e, 0x04090960, 0x0c0f891e, 0x0f1f500a, 0x1d4f090c, 0x0a06060f, 0x0606036e, 0x0a6e0306, 0x1d0f0606, 0x0f0c094f, 0x1b0b461f, 0x0f083118, 0x1831080f, 0x1a5a0b1b, 0x0d0e5b0b, 0x0203750b, 0x0b750302, 0x0b5b0e0d, 0x188e821a, 0x260abb53, 0x0019000f, 0x69000023, 0x2e2305b0, 0x68013d01, 0x0629083d, 0x013d2622, 0x15172016, 0x26098614, 0x5d83c001, 0x853c673d, 0x83ba2604, 0x47320147, 0x27068483, 0x1e2e7701, 0x1421142b, 0x7b280584, 0x2b2b1e67, 0x6f31671e, 0x43480786, 0x01270805, 0x00c00180, 0x000c0006, 0x00260014, 0x004b0042, 0x3700004f, 0x3334012e, 0x16071432, 0x36070617, 0x0e373607, 0x4f331304, 0x3524062c, 0x3b363411, 0x162a9382, 0x36272617, 0x06012e27, 0x24820607, 0x17010e28, 0x37323316, 0x05823736, 0x27362408, 0x1d163726, 0x33352301, 0x06131732, 0x02b63627, 0x06060202, 0x330c150e, 0x1f044f0d, 0x06080c06, 0x5988a203, 0x3b080830, 0x0e1d020e, 0x1503050c, 0x0e060216, 0x261d1217, 0x190e080c, 0x24113e24, 0x0a0a141c, 0x80074f10, 0x18070a06, 0xc02b2506, 0x28111707, 0x020f1a36, 0x0b561814, 0x090f0a1d, 0x0c010105, 0x08096159, 0x0e0a8825, 0x2f2412ac, 0x080b0e11, 0x3637160a, 0x10260e20, 0x03143e0a, 0x0f092213, 0x060a07db, 0x9ffe0780, 0x41011007, 0xf383095f, 0x3c001124, 0x7f594500, 0x07222814, 0x27261506, 0x82012b26, 0x85072008, 0x1f062508, 0x013b1601, 0x3322e183, 0x09831716, 0x36013f25, 0x5923012e, 0x39291586, 0x0216010a, 0x1d09021c, 0x3d05820a, 0x0a021301, 0x02070619, 0x250a0225, 0x01180309, 0x03150401, 0x020a2609, 0x06030126, 0x9d594f04, 0x00ff3d13, 0x0f1c650a, 0x73090973, 0x0a5f1b08, 0x09a80609, 0x170c6309, 0xa8090958, 0x86040704, 0x21064b5a, 0x4b5a0003, 0x00342209, 0x21c7933d, 0xc2833617, 0x34010f22, 0xc182ca84, 0x86060721, 0x22c285c3, 0x95012f36, 0x043c29bf, 0x07230707, 0x03252503, 0x07220682, 0x0f863c04, 0x11032224, 0x11850413, 0x2b14e65a, 0x060c06f2, 0x06440145, 0x5e5d060d, 0x3d230a82, 0x82242108, 0xd65e2106, 0x0022b186, 0xb3880400, 0x10000724, 0xb5832200, 0x16323727, 0x012b0614, 0x08314235, 0x685b0720, 0x34132110, 0x0e21c683, 0x09ba4a02, 0x3e023a31, 0x0e0dc204, 0xd31b0d0f, 0x0a068007, 0x5b0e3707, 0x353c0a81, 0x02512128, 0x07020305, 0x07051f05, 0x170c1401, 0x080c1310, 0x111b11b1, 0x0a07a63d, 0x81208a82, 0x330b995b, 0x2c21d3fe, 0x02050302, 0x070705c8, 0x06023905, 0x0019110b, 0x0822a78b, 0xa7821a00, 0x00002d2c, 0x35231501, 0x011f3233, 0x08430716, 0x22062810, 0x32161406, 0x18173436, 0x22088786, 0x41800115, 0x882005d7, 0x300ae742, 0x1c1c276a, 0x28a01d27, 0x28670908, 0x01280808, 0x228b8246, 0x42300762, 0x10270cc3, 0x1c1c281c, 0x8270d428, 0x82682020, 0x30282103, 0x280b335c, 0x00140008, 0x002e002a, 0x438d824f, 0x0220075f, 0x25056449, 0x34352622, 0x39413736, 0x33152410, 0x82073335, 0x32022a04, 0x26012f36, 0x3335012b, 0x85c58235, 0x23152303, 0x03863315, 0x01060724, 0xb0830779, 0x0f119f28, 0x131b1309, 0x4f417709, 0x20682d0a, 0x19208040, 0x12041f32, 0x20160a02, 0x13250089, 0x07570105, 0x2bc3820a, 0x0d07b7fe, 0x10100b07, 0xcf0d070b, 0x840b5a41, 0x80fe252a, 0x0a571926, 0x20233589, 0x5d186120, 0x21260d07, 0x3d002f00, 0xbf424600, 0x35033913, 0x010f2634, 0x011d2223, 0x17013b14, 0x06373616, 0x3637011e, 0x0e262734, 0x14210d82, 0x20068537, 0x42148507, 0x230815c8, 0x24050f40, 0x1c0c0c1c, 0x210f0524, 0x0c18090a, 0x1a0b1414, 0x4f070907, 0x09061b0a, 0x0a0b1b1b, 0x40290b18, 0x3c138143, 0x08886cfe, 0x0c240606, 0x06240c38, 0x1a0b3806, 0x3b150906, 0x18080b14, 0x6e13070c, 0x2906820a, 0x0b1c4e1c, 0x2a09051a, 0xdb429f75, 0x098f4308, 0x1a000824, 0x31423400, 0x1097410b, 0xd7831320, 0x8210704d, 0x423520e1, 0xa0200738, 0x290a8141, 0x0b1e60c8, 0x700a0e37, 0x04840e0a, 0x1e0b3722, 0x20063b42, 0x0cc94218, 0x0c10e825, 0x8626370b, 0x0a0e2724, 0x0c0b3726, 0x3f420010, 0x001a260d, 0x00470033, 0x1ccd4260, 0x36370726, 0x012f3435, 0x26320585, 0x010f2223, 0x011f1406, 0x17323316, 0x3f323330, 0x1c833401, 0x16833020, 0x14151423, 0x05186b17, 0x15202484, 0x07212582, 0x82058306, 0x4337202b, 0x733a1300, 0x28020114, 0x14010228, 0x01020301, 0x41020241, 0x35030201, 0x3e010401, 0x05841c04, 0x1285bc20, 0x26891f82, 0x27142543, 0x020215f1, 0x24240103, 0x022d4782, 0x3d010115, 0x3d020402, 0xd3043101, 0x20468201, 0x20068508, 0x20138467, 0x22288d01, 0x18000600, 0x2809739e, 0x0015000d, 0x0021001b, 0x09835427, 0x27262524, 0x95181607, 0x27250875, 0x36170706, 0x22108237, 0x82272637, 0x540e8208, 0xa632069b, 0x1c3f1a14, 0x38509611, 0x20385038, 0x1140141a, 0x11846d1c, 0x0b84ee20, 0x2006b354, 0x200c8419, 0x222282a1, 0x8ad65038, 0x2d2a851e, 0x01000000, 0xc7ff0700, 0xb401f801, 0x0c822300, 0x1736342e, 0x1415011e, 0x2223010e, 0x36342726, 0x5605eb53, 0x420805ed, 0x34353632, 0x35262726, 0x0c122001, 0x72426951, 0x01916743, 0x130b5169, 0x6c4c3a12, 0x3a4c6c98, 0x0c990112, 0x8515030e, 0x43724356, 0x86566790, 0x0c0e0315, 0x10051211, 0x6c4c3f62, 0x623f4c6c, 0x82120510, 0x0100356e, 0xbbffffff, 0xc5010302, 0x00001600, 0x07163601, 0x2f010e03, 0x08057554, 0x26361339, 0x2e270507, 0xdc013701, 0x4802190d, 0x7d0a1502, 0xf1200a40, 0xfe040803, 0x020e6ae1, 0x07bd010d, 0x50fe0f11, 0x34050c0b, 0x110b0d4d, 0x05250151, 0x2cfd0307, 0x82071e06, 0x00022c58, 0x01c7ff08, 0x00b801f9, 0x82370025, 0x0614230f, 0x4b822223, 0x3e013f26, 0x33161701, 0x5205d54a, 0x3d28074b, 0x1f363401, 0x32333601, 0x114a7b84, 0x2ffa8208, 0x91f80107, 0x08445867, 0x060b0801, 0x40320713, 0x2308ba83, 0x07333549, 0x07910b08, 0x32071409, 0x24676348, 0x41081406, 0x0a100a0e, 0x0208290e, 0xcd270106, 0x15073792, 0x013e2e82, 0x986c2805, 0x0733326c, 0x91070914, 0x3207080b, 0x08bafe45, 0x88330603, 0x0a0e0e0a, 0x35822068, 0x00010022, 0x20077f53, 0x18fb824b, 0x21118093, 0x32722335, 0x44911811, 0x012b220f, 0x0e027615, 0x0127e982, 0x090720c0, 0x83a00709, 0x8b202004, 0x2116950b, 0x59186001, 0x80200b24, 0x200bea5d, 0x09165140, 0xae82178b, 0x61200021, 0x2120068f, 0x15220c82, 0xc35c0614, 0x06a8600b, 0x23013d24, 0x6e5b2622, 0xc0012305, 0x9f5c0709, 0x05575f05, 0x5e422029, 0x07f0425e, 0x82900109, 0x90fe2192, 0x0121a883, 0x26078570, 0x5e845e70, 0x18030009, 0x2b08df49, 0x00470023, 0x2500006b, 0x011d1632, 0xc74cdb82, 0x215c8209, 0x7a18013d, 0x47600ce7, 0x09f34b08, 0x21058773, 0xd5412133, 0x85372008, 0x92cb1847, 0x7647910a, 0xfe210549, 0x20fc84b0, 0x209c8350, 0x200a8450, 0x210b8a01, 0xb484b0fe, 0x17841885, 0x2384d020, 0x1683d020, 0x3c410a85, 0x83102005, 0x84102010, 0x200a851b, 0xa10b8aa0, 0x00002416, 0x52000100, 0x25230733, 0x6a250000, 0x35240527, 0x06273734, 0x3426b982, 0x17323336, 0xde822637, 0x23331783, 0x16072722, 0x36170714, 0x38286001, 0x02385038, 0x82221a66, 0x22282408, 0x8202661a, 0x8438200e, 0x20148208, 0x230c8480, 0x15400a0b, 0x15230882, 0x840b0a40, 0x2008822d, 0x6c128216, 0x35200caf, 0x2711376a, 0x27072207, 0x37273436, 0x2a054643, 0x14150622, 0x23260717, 0x82140622, 0x17372110, 0x16230e82, 0x18343632, 0x2d0e7549, 0x44101690, 0x10440202, 0x21211716, 0x0886212e, 0x14831720, 0x21200e82, 0x270c646a, 0x07290fec, 0x0f29070e, 0x17211883, 0x82088507, 0x84072012, 0x051b4c39, 0x00022008, 0x1700c001, 0x27001f00, 0x37002f00, 0x4f003f00, 0x07010000, 0x0f141617, 0x14151601, 0x41262206, 0x24080515, 0x011f3236, 0x1432013f, 0x3422012b, 0x1d322633, 0x3d221401, 0x26061701, 0x1636013f, 0x2627010f, 0x16011f36, 0x24038306, 0x3626012f, 0x40771805, 0x08c1820b, 0x34b80126, 0x1107071b, 0x7aac7a12, 0x292d567a, 0x07140711, 0x0c4d341a, 0x0c0c180c, 0x2e181830, 0x11091208, 0x55081108, 0x11230483, 0x863b1109, 0x9ffe2e07, 0x09071a26, 0x38280709, 0x01090e09, 0x26428268, 0x29110714, 0x827a562d, 0x11122946, 0x341b0707, 0x3c18180c, 0x18254483, 0x0812092b, 0x20038311, 0x214b8411, 0x46821912, 0x12235382, 0x82261ac0, 0x2838213b, 0x00234682, 0x46030000, 0x25220a1b, 0x11822a00, 0x3227df85, 0x37270717, 0x83272617, 0x07062206, 0x2c068237, 0x1f371714, 0x37160701, 0x17013f27, 0x081c8336, 0xf8010729, 0x9191ce91, 0x3f1a61ce, 0x3e272211, 0x0e4b4b0e, 0x1023273e, 0x08261a3f, 0x3e1e2555, 0x55251e3e, 0x1ef82608, 0x721e4e4e, 0x2c08061a, 0x543a16f8, 0x1f133603, 0x131f2a2a, 0x3a540336, 0x22344216, 0x14124d0b, 0x0b4d1214, 0x5c043422, 0x005c3838, 0xff00000d, 0x010502c0, 0xc77e18cd, 0x5d28080a, 0x75006900, 0x8d008100, 0xa5009900, 0x0000b100, 0x16013e13, 0x010f1617, 0x2f222306, 0x30352601, 0x07263735, 0x14153017, 0x34211188, 0x05d86817, 0x013b3424, 0x0baf1532, 0x3bae0520, 0x3b972f8b, 0xb7440539, 0x080a44b7, 0x030b052b, 0x060b5703, 0x0b066060, 0x0b030357, 0x18032b05, 0x8d14cb41, 0xd9411814, 0x58013d33, 0x44313144, 0x08450d0a, 0x0d042301, 0x23233c01, 0x040d013c, 0x45080123, 0xc7080505, 0x099a7f18, 0x860ba355, 0x9688200b, 0x4917911d, 0xe02e0667, 0xa0010002, 0x1e000900, 0x3d003300, 0x67494100, 0x05974505, 0x06830520, 0x7f551520, 0x013d2707, 0x1e25043e, 0x3e451703, 0x23210808, 0x1e323335, 0x16322501, 0x3523011d, 0x13333634, 0x01153335, 0x070960a0, 0xfe090740, 0x600d13a0, 0x2d038220, 0x0d01130d, 0x010d1212, 0x17130181, 0x10840114, 0x09602028, 0xf0fe090e, 0x2a820907, 0x0140703e, 0x07303090, 0x0d770909, 0x0da0a013, 0x2c0d1313, 0x25293b24, 0x391f1a2d, 0x2c2c4729, 0xa0261083, 0x770e09a0, 0x25830709, 0xa000ff23, 0x21b682a0, 0x934d0300, 0x0023220a, 0x21b3872b, 0x89601632, 0x1507260b, 0x012e3523, 0x9476183d, 0x82372008, 0x3634290f, 0x40011632, 0x131a1340, 0x07277383, 0x40374910, 0x82104937, 0x7007217e, 0xbd821483, 0x72826020, 0x07098d2e, 0x20090720, 0x630b5939, 0x39590b63, 0x21059446, 0x1a836080, 0x07000022, 0x02318083, 0x00800140, 0x001a0014, 0x00320026, 0x004a003e, 0x12c35856, 0x36343525, 0x82320233, 0x37152180, 0x200a9257, 0x200b8a21, 0x84179627, 0x2123332f, 0x14011d22, 0x0a280233, 0xfe141c0e, 0x0e211728, 0x0282280a, 0xf4101029, 0x0c980c0c, 0x8468010c, 0x8b382006, 0x2016820c, 0x390382fe, 0x0a0e8001, 0x1c14c8fe, 0x10011721, 0x0a080e0a, 0x08b0fe0e, 0x0c08f8f8, 0x02880c08, 0x0c8d6020, 0x0c0c2831, 0x00000c28, 0xffffff03, 0x018102e0, 0x821200af, 0x822c20db, 0x141632d3, 0x2706010f, 0x06072026, 0x3426012f, 0x16013e37, 0x05624602, 0x86253421, 0x8622201a, 0x32363c1a, 0x05057b02, 0x6e0b0b22, 0x0b6ed6fe, 0x0505220b, 0xffe4e457, 0x36252536, 0x840b0125, 0xa83f2218, 0x2417853f, 0x042501e8, 0x212a830e, 0x10836464, 0x51040e26, 0xeafe3939, 0x25232882, 0x82057936, 0x0a0a2618, 0x0a0a3636, 0x210a8222, 0xd345004c, 0xc0013105, 0x0f00c001, 0x2f001f00, 0x4f003f00, 0x6f005f00, 0x21106f41, 0x9c4c1333, 0x2d2d5a10, 0x200f4d5a, 0x088a5d11, 0x27057d5d, 0x1d139001, 0xa0fe131d, 0x50250583, 0x05260508, 0x20048e08, 0x840f8e80, 0x21148c0e, 0x3483dafe, 0x3a820120, 0x82c00121, 0x8360204a, 0x8201204a, 0x4dfe2150, 0x85204d88, 0x7b200988, 0xa6201393, 0x04834083, 0x66050122, 0x04830a83, 0x03000022, 0x2408bf7b, 0x002f0023, 0x0ec17b37, 0x55183620, 0x013f08d1, 0x011e1415, 0x16171617, 0x31061415, 0x22231725, 0x3435012e, 0x17023e37, 0x33352622, 0x7b010e14, 0x913f0db2, 0x1a133d25, 0x14483813, 0x01020f11, 0x7efe0109, 0x0f09f2d5, 0x0c0e0908, 0x261aa716, 0x7b1e1180, 0x70370cac, 0x0d150d31, 0x150d1313, 0x2c3a560b, 0x030f1843, 0x010c0a01, 0x82a48803, 0x0a0c2a31, 0xe5320e0f, 0x1e111b25, 0x08f35911, 0xc101c027, 0x21001700, 0x61801800, 0x05af490b, 0x3b363730, 0x011f3201, 0x03210301, 0x012b010e, 0x9a182622, 0x78340ba9, 0x720f0709, 0xfe09070f, 0x800115fd, 0x131c0115, 0x011c13f6, 0x31053249, 0x07200709, 0x0d0d1309, 0x014dfe13, 0x13adfe53, 0x1b791a1a, 0x4d38200d, 0x05210933, 0x05767036, 0x040e0723, 0x28f98223, 0x32333634, 0x3f361617, 0x2d168201, 0x23062e27, 0x14150622, 0x3233011e, 0x3c4d013e, 0x6d590806, 0x03190203, 0x0501030c, 0x0b160e0d, 0x22282723, 0x0b041a24, 0x03021603, 0x0b0b0301, 0x0d1a1412, 0x4324523e, 0x11382029, 0xce91b801, 0xcace9191, 0x03040404, 0x04010422, 0x08090501, 0x21203006, 0x0204182b, 0x03032304, 0x03010405, 0x06090708, 0x293d5204, 0x10182642, 0x20008200, 0x08c34702, 0x46003a29, 0x32010000, 0x82141516, 0x022e2483, 0x88010e27, 0x3b36219d, 0x2505b757, 0x013e1716, 0x4f493435, 0x16362608, 0x0616011f, 0x05ea4907, 0x82321321, 0x081a83bf, 0x16141567, 0x8e6a0001, 0x100f4c4a, 0x0d030e17, 0x342c142a, 0x122a3951, 0x0c2d0c01, 0x0318020e, 0x201a0c05, 0x6c4c4e6a, 0x2d364c6c, 0x0a061208, 0x3d090407, 0x9191674a, 0x12251551, 0x14241711, 0x647cb801, 0x0601543f, 0x16110c0f, 0x56423139, 0x0c110c16, 0x01100d79, 0x4a1f3203, 0x6c986c56, 0x0703051d, 0x0615090c, 0x2ceb8228, 0x1f29d0fe, 0x20291613, 0x02001513, 0x050f6800, 0x0b00c133, 0x00002300, 0x0717013f, 0x07012b06, 0x34353727, 0x05b56500, 0x6d0f1421, 0x34220590, 0xa865013f, 0x7e333605, 0x1b137e80, 0x2020382d, 0x1c38a801, 0x07070d4d, 0x07140729, 0x230685a2, 0x731c4d0d, 0x20281f83, 0x1b2d3820, 0x50386001, 0x14202083, 0x20822182, 0x20820684, 0x00820020, 0xffff0231, 0x0002c0ff, 0x1300c001, 0x00002c00, 0x41301737, 0x26290540, 0x33041e35, 0x01363732, 0x220f8232, 0x48010e07, 0x5008056d, 0x37073e34, 0x0158a736, 0x40403a46, 0x0e0d0c02, 0x040b030b, 0x166a011a, 0x50550e20, 0x400c0a2e, 0x08080109, 0x25271414, 0x8b121e3f, 0x3802074a, 0x02435840, 0x06090909, 0x3a01440a, 0x1b13161c, 0x3503619f, 0x0e091413, 0x12170c10, 0x1b381f23, 0x061f6f10, 0x7f82c020, 0x34002335, 0x4a003f00, 0x00005500, 0x22262225, 0x23262206, 0x83230622, 0x35232509, 0x013b3634, 0x83071661, 0x16322907, 0x3521011d, 0x16323632, 0x33260385, 0x01331632, 0x27822622, 0x16323525, 0x94330614, 0xc0012c0a, 0x272f270c, 0x17182718, 0x820d0b28, 0x1c0c2409, 0x83401014, 0x14102400, 0x8240fe1c, 0x2e1d8417, 0x0b0d272f, 0xa0fe1827, 0x0a20130d, 0x8c721216, 0x20402106, 0x50230084, 0x84901c14, 0x141c2300, 0x118460d0, 0x4001202a, 0x1c0e0d13, 0x15262516, 0x0024078f, 0x00020000, 0x02270082, 0x00800100, 0x741b000f, 0x352b095d, 0x013b3411, 0x25111532, 0x821f1636, 0x3e373ccd, 0x01011f01, 0xfe0c0cf4, 0x280c0c18, 0x0435010c, 0xfe5a020b, 0x0d035780, 0x82405504, 0x010c2210, 0x2c1b8268, 0x0304e0cc, 0x9168bc05, 0x72050105, 0x2e008200, 0xfffcff03, 0x012102be, 0x000800c1, 0x83230013, 0x0716345d, 0x2f060706, 0x06143701, 0x3435012b, 0x011e3336, 0x82161705, 0x074b0812, 0x26272606, 0x16363736, 0x07100215, 0x3d0c010a, 0xde9f0b0b, 0x0ae00709, 0xfe805907, 0x01059ce6, 0x604b3c06, 0x77030390, 0xa00b075a, 0x3a53070b, 0x419e0b0a, 0x07e00a07, 0x9a800609, 0x040f059c, 0x8901012b, 0x0c8d5c60, 0x8a080901, 0x7b1420d3, 0x2d580eff, 0x16322305, 0x346e1115, 0x086d6806, 0x2305ef5b, 0x37011f32, 0x33208782, 0x3a06084e, 0x09130d30, 0x09072007, 0x09079001, 0x60200b1e, 0x490a1a0a, 0x160c0b2e, 0x83440c0c, 0x2049240a, 0x4d100c0b, 0x831805ec, 0x012609e9, 0x76070920, 0x2d820c10, 0x4a090924, 0x2c820c2e, 0x82450b21, 0x204a2409, 0x82001e0b, 0x82032000, 0x02002d03, 0x00800140, 0x0013000b, 0x0100001d, 0x24057156, 0x36342622, 0x05b85533, 0x13222632, 0x26343632, 0x1416012b, 0x50800107, 0xc0507070, 0x80320483, 0x4b4b6a4b, 0x4b35f56a, 0x3131354b, 0x70800131, 0x028270a0, 0x14838b20, 0x00ff4b22, 0x37221c82, 0xcf413792, 0x8c5f8707, 0x07737c5d, 0x3d85538a, 0xfe214b87, 0x226284c0, 0x82ff0500, 0x81022d00, 0x38008001, 0x4b003c00, 0x67005100, 0x072da784, 0x2e27010e, 0x37343501, 0x2b060727, 0x0ac34401, 0x22233723, 0x12d01826, 0x18332009, 0x270ca045, 0x33070536, 0x36320726, 0x3f212383, 0x05df4401, 0x23013f27, 0x011f1607, 0x05d54416, 0x37670720, 0x06650808, 0x02011e17, 0x014b3501, 0x34354b01, 0x560f294b, 0x0b340d07, 0x4b352c45, 0x1417344c, 0x0e0a311e, 0x57070b07, 0x0f720907, 0x09090733, 0x070d4007, 0xd3fe164e, 0x4a042b18, 0x51092818, 0x2d080e0e, 0x2f210908, 0x804ac42f, 0xfd062418, 0x212f3222, 0x032d0a0a, 0x060d0603, 0x142d030d, 0x012c0101, 0x35354d00, 0x365d824a, 0x18263834, 0x362a0b8b, 0x4b34364b, 0x0a0e3008, 0x09070b06, 0x82181007, 0x09073e03, 0x4a087d0b, 0x1a761626, 0x490c1916, 0x2f422f02, 0x20287860, 0x30026030, 0x022f2122, 0x20498248, 0x24518209, 0x1f1f1847, 0x053f582c, 0x0100022b, 0x003400c0, 0x004c003c, 0x08f34654, 0x4b066550, 0x0988094f, 0x5c692220, 0x05104705, 0x36343528, 0x011d1632, 0xd36a3200, 0x21372305, 0x18823632, 0x25662620, 0x16142205, 0x2f178604, 0x0e0ae801, 0x0e080a0e, 0x0d13060c, 0xc0130d20, 0x0d220584, 0x15840813, 0x82bc8231, 0x131a83fe, 0x30131a13, 0x130d0001, 0x83ff0d13, 0x10012105, 0x01291284, 0x500a0e40, 0x0ba60e0a, 0x5d37820f, 0x20230763, 0x84a00d13, 0x22302716, 0x30222e2e, 0x3b82f0fe, 0x5d1a1325, 0x83800d13, 0x2004823e, 0x21108470, 0xab420000, 0x01002805, 0x000f0080, 0x493f0027, 0x17221197, 0xc2822606, 0x2b05d164, 0x1506012e, 0x37361614, 0x26012f36, 0x01271797, 0x1c1c14d0, 0x8360fe14, 0x1faa3c05, 0x061e403d, 0x03021104, 0x3f415219, 0x03041a53, 0x1eb90414, 0x051f403e, 0x83011204, 0x52402813, 0x1303031b, 0x82800104, 0x88881831, 0x1be03808, 0x15222517, 0x1e060418, 0x03190303, 0x362f2e34, 0x04041c05, 0x9605061b, 0x0ad35017, 0x39001c27, 0x34130000, 0x0ab05226, 0x200e126e, 0x0d4b6413, 0x32013b3b, 0x33011d16, 0x11353632, 0xf8333634, 0x09701721, 0x09073007, 0x38a80a0e, 0x27098450, 0x500907b8, 0x0e0aa838, 0x702c0c84, 0x07092117, 0x21171801, 0x0907a0fe, 0x98220982, 0x1c820e0a, 0x302a0a84, 0xd8fe0709, 0x0a0e5038, 0x0f831801, 0x1721e027, 0x09072801, 0x329b8400, 0x014202be, 0x003300c0, 0x25000057, 0x32211721, 0x46010f16, 0x272306e4, 0x83233726, 0x2e27280a, 0x3e342701, 0x52033701, 0x322408af, 0x011f011e, 0x06222a84, 0x1a4b2327, 0x22232108, 0x18064d65, 0x82082979, 0x013d26ba, 0xf9012634, 0x408a18fe, 0x18230809, 0x01012016, 0x2311d212, 0x011f1518, 0x46090d06, 0x0e0e0a46, 0x0a05670a, 0x01090107, 0x030e0c89, 0x8274042f, 0x071022af, 0x82ea8209, 0x070921d8, 0x28080a86, 0x0b122080, 0x17230f19, 0x19162021, 0x18181011, 0x1f010121, 0x0f140b15, 0x0e570106, 0x0e0a100a, 0x2d050905, 0x13d00b12, 0x22da8298, 0x84280709, 0x200a8a37, 0x23008200, 0xff000002, 0x4620ef87, 0x2b24efb9, 0x011d2201, 0x1f25ed82, 0x013f1601, 0x26deb036, 0x180c2b79, 0x18082b0c, 0xa7079c42, 0x3c8024d7, 0x183c0c0c, 0x21077042, 0x13490000, 0x01802605, 0x003c00c0, 0x22cb8244, 0x5433011e, 0x23240560, 0x010e2722, 0x2e23a282, 0x41062701, 0x332706b1, 0x27373632, 0x603f3626, 0x35200574, 0x84077542, 0x17200830, 0x2507011e, 0x32363715, 0x0135011f, 0x2c3d0ef1, 0x0a0e0e0a, 0x300b3758, 0x2314801e, 0x5837071b, 0x2c080f83, 0x460d3e2c, 0x2a11080c, 0x0e400d13, 0x0e0a900a, 0x2a130d40, 0xfe0c0811, 0x0a057689, 0x224b7605, 0x100a0e29, 0x1a3b0e0a, 0x111b0f21, 0x2a0b843b, 0x0d462229, 0x8c0e0523, 0x8328130d, 0x13282e40, 0x050e8c0d, 0x58af0d23, 0x26020226, 0x08535c58, 0xc201c02a, 0x36003200, 0x56003a00, 0x6955c384, 0x053b5505, 0x3b2bb283, 0x26352601, 0x36373435, 0x41013e37, 0x1620056e, 0x2205634c, 0x82071407, 0x010f26be, 0x17012f37, 0x22068237, 0x82353734, 0x152726ed, 0x15163330, 0x82d38216, 0x323621f1, 0x94080782, 0x01363736, 0x1a231d80, 0x139afe13, 0x191e251a, 0x3a080a04, 0x0e464012, 0x0a16071b, 0x1c0e0e1c, 0x1b07160a, 0x1240460e, 0x030a083b, 0x321820e8, 0x18322a8a, 0x342c064a, 0x05012e32, 0x0e040809, 0x02061414, 0x1d07020e, 0x8c080616, 0x2d233d12, 0x131a1a13, 0x123e242d, 0x1f0e083c, 0x14130d21, 0x0922310d, 0x070e0505, 0x05050e07, 0x0d312209, 0x210d1314, 0xea080e1f, 0xc0202878, 0xb22820c0, 0x060b0303, 0x03030b06, 0x06030819, 0x06061111, 0x06050f15, 0x21fe8207, 0xe3460300, 0x00482408, 0x446d0057, 0x162405db, 0x26222706, 0x2725ee82, 0x1617020e, 0x06e24606, 0x3725fa82, 0x26371736, 0x05c4492b, 0x32013b23, 0x0de14617, 0x44363721, 0x14200529, 0x17223182, 0xea460536, 0x3625240d, 0x46222326, 0x15220ae1, 0x50821614, 0x01023708, 0x4c014b34, 0x2d4b3436, 0x0c1a130d, 0x0a0f0101, 0x2c450b54, 0x01014b36, 0x13163248, 0x3820100c, 0x0a0e0e0a, 0x9a1f4538, 0x09074214, 0x0e500709, 0x07261607, 0x15832d0b, 0x15205239, 0x281895fe, 0x0e0e5109, 0x07052907, 0x012f2f21, 0x223002f1, 0x46310808, 0x4b0806ea, 0x22321632, 0x00012b1f, 0x4c36344b, 0x3b344b01, 0x290f1527, 0x0f0a182d, 0x364d362a, 0x01024833, 0x0e191406, 0x280e0a0a, 0x10070920, 0x260c0907, 0x0a0e082a, 0x370e0a20, 0x151bd007, 0x014b0c18, 0x4c2f422f, 0x51023222, 0x08040d05, 0x52285282, 0x30222017, 0x002b0202, 0x3c059b51, 0xc0010002, 0x24001c00, 0x00004000, 0x15011e25, 0x26220614, 0x37363435, 0x0e151716, 0x8d661802, 0x26362809, 0x36342622, 0x18141632, 0x23083dc0, 0x33373216, 0x82062243, 0x012b2134, 0x48083682, 0x4f417001, 0x4f96d496, 0x21080841, 0xac7a1c33, 0x08333d7a, 0x2525364d, 0x0d802536, 0x0c141c13, 0x0c112611, 0x0d131c14, 0x0d400d13, 0x2e0c7613, 0x3838281c, 0x0c2e1c28, 0x05170409, 0x170b130f, 0x10172121, 0x0417071b, 0x2e3182d3, 0x13e53625, 0x1c14600d, 0x141c0808, 0x82130d60, 0x0d133102, 0x02000000, 0xe0fffeff, 0xa1010202, 0x29000d00, 0x1729b182, 0x22060733, 0x3733012f, 0x298f8217, 0x07011e13, 0x22262723, 0x0484010f, 0x36262322, 0x3607bf4c, 0x40011732, 0x06b66d16, 0x5eb6050f, 0x1404391e, 0x0424cc04, 0x821c7721, 0x31330808, 0x0415053a, 0x04216624, 0x6e260324, 0x271c1c27, 0x2ccc266e, 0xba0606ba, 0x09097f48, 0x69250d01, 0x09093728, 0x0a098262, 0x25692856, 0x1c282802, 0x7027271d, 0x202408c3, 0x2100a001, 0x01228783, 0xec7d0614, 0x012e2617, 0x32363435, 0x070b4a16, 0x3f200129, 0x0c0c2431, 0x82280c24, 0x240c3203, 0x78543f31, 0x422fe054, 0x01422f2f, 0x0b4e3310, 0x82178634, 0x0b342706, 0x543c334e, 0x1b831b54, 0x72822f20, 0x00020022, 0x012c0082, 0x00800180, 0x00200018, 0x1d320100, 0x2f207682, 0x0e1d7818, 0x33362623, 0x07674802, 0x0f0c7426, 0x16511105, 0x54296182, 0x50232a3c, 0x08060511, 0x2a4d84b6, 0x4f0c8001, 0x11050608, 0x822a2350, 0x54782861, 0x05115116, 0x84c0fe0f, 0x00003186, 0xff000002, 0x012001c0, 0x003b00c0, 0x25000043, 0x3722db9d, 0x01822726, 0x013b362a, 0x17161732, 0x36373216, 0x21053f43, 0x01820607, 0x333cf599, 0x05260304, 0x28060701, 0x1104020a, 0x11174617, 0x280a0204, 0x05010706, 0x33030426, 0x20050f41, 0x110e41f0, 0x032b4337, 0x052f2003, 0x0f130a08, 0x130f1414, 0x2f05080a, 0x2b020420, 0x6ad48422, 0x31220aa3, 0x1f413900, 0x1c9d410e, 0x17323324, 0x38412737, 0x0fa94112, 0x200e4441, 0x084441c0, 0x1c25a982, 0x1c0c280c, 0x8202820c, 0x4e0b2306, 0x53413c33, 0x01e02614, 0x005000c0, 0x209ba758, 0x059b4b02, 0x26012f25, 0x7127013f, 0x5d5005b8, 0x37172905, 0x16011f36, 0x3617010f, 0xd420b98f, 0x8c05f241, 0x33202fb9, 0x1410161d, 0x091c0809, 0x11131309, 0xb6830f05, 0x1411062c, 0x1d080913, 0x10140808, 0x1a425423, 0x28d5980c, 0x223b2807, 0x1410232a, 0x84368208, 0x08062248, 0x206d834f, 0x22118513, 0x42161014, 0xfb5b0d46, 0x0021240a, 0x82570029, 0x1d4942f5, 0x200a2543, 0xaa401805, 0xa9401809, 0x2726220c, 0x06af5a36, 0x07222322, 0x33250c82, 0x14151632, 0x1a534306, 0x6b432120, 0x1a1f320a, 0x22170b15, 0x212f2f21, 0x150b1722, 0x543c3227, 0x1c73433f, 0x8c43dc20, 0x1407300b, 0x2f181f1a, 0x20182f42, 0x3c541f19, 0x45004e33, 0x19230b3f, 0x82002100, 0x05914311, 0x10b07b18, 0x200a5942, 0x05314525, 0x23232287, 0x82012e22, 0x451420d1, 0x2e250667, 0x22302301, 0x42e18231, 0x0127058e, 0x0a070c54, 0x43311103, 0x302707c0, 0x08060511, 0x822f4296, 0xb4012385, 0x1b860705, 0x3f253c26, 0x1e210427, 0x15271482, 0x0f031625, 0x841d2103, 0xc0012827, 0x07054f0c, 0x43301103, 0x312407e2, 0xfe0f0511, 0x22055943, 0x89050751, 0x3b22311b, 0x010f0324, 0x2f2f2102, 0x15251621, 0x1203211e, 0xde822983, 0x00030030, 0x02c0ff00, 0x00c00140, 0x00480026, 0x71440050, 0x41bc8906, 0xb785108c, 0x16320423, 0x1de94115, 0x08ffef18, 0xe1873420, 0x27323c22, 0x210d9c41, 0xc684232a, 0x786ffe23, 0x0ccc4254, 0x6f3f3122, 0x8b050141, 0x191f2bdf, 0x422f1820, 0x1a1f182f, 0xbd83161f, 0x3c544022, 0x21113c44, 0xdf448c3c, 0x26cb8209, 0x00800181, 0x4d33002b, 0x2f2708e3, 0x16170701, 0x4506010f, 0x35230850, 0x44013e34, 0x3f220519, 0x48503601, 0x095a4506, 0x0f07053f, 0x0e121105, 0x091c0909, 0x16120e08, 0x27547854, 0x232a2742, 0x08080f12, 0x0e09081d, 0x0b6c4511, 0x4f050725, 0x83060608, 0x1c082b2d, 0x120e0909, 0x543c2a23, 0x2f823c54, 0x0e121623, 0x82408208, 0x0f7f4512, 0x2101e033, 0x2c00c401, 0x00003400, 0x06141637, 0x37342622, 0xadd61836, 0x1835200a, 0x600ba64d, 0x1521095d, 0x074e7916, 0x822af621, 0x1e2a2991, 0x07051428, 0x18140507, 0x38277e82, 0x06380808, 0x85180806, 0x27283811, 0x2f422f2f, 0x782ad62f, 0x2a785454, 0x071a091d, 0x07052805, 0x84060f18, 0x190e2126, 0x1a220e84, 0x2483d309, 0x002f423c, 0x00000200, 0xe5013000, 0x28005001, 0x00003000, 0x010f1625, 0x013d2606, 0xc45b1523, 0x06232205, 0x26a38307, 0x16173236, 0x18353317, 0x2108b351, 0x8f871736, 0x09dc012d, 0x0f053809, 0x0c280c18, 0x871d091c, 0x821c2075, 0x0f18230e, 0x8b84f305, 0xa087c820, 0x140c0c24, 0xbf871e28, 0xbd830c82, 0x88869020, 0x0000022c, 0x2001e0ff, 0x1100a001, 0x51441900, 0x47828506, 0xfc460767, 0x3f202207, 0x255d8231, 0x78543f31, 0x3142b154, 0x33102d05, 0x0c980b4e, 0x4e0b980c, 0x54543c33, 0x87070d42, 0x822020db, 0x000726db, 0x1200000f, 0x06ab4722, 0x78413220, 0x223d8505, 0x8254788c, 0x10012149, 0x6f208784, 0x54220a82, 0x00820078, 0x8f830920, 0x82000221, 0x000f248f, 0x5e1f0017, 0x572608c7, 0x00005f00, 0x6d182101, 0x1d240938, 0x26061401, 0x0f196118, 0x01291fbe, 0x0d40fee0, 0x010d1313, 0x260582c0, 0x0e0e1433, 0x844e0e14, 0xae582005, 0x20012317, 0x49840d13, 0x58200482, 0x02874582, 0x16acea20, 0x28093344, 0x00c00180, 0x002b0023, 0xbb5b183f, 0x183d2011, 0x4d09937a, 0x04200839, 0x18075b4a, 0x2a0d9f85, 0x3216013b, 0x07700237, 0x53070909, 0x40200595, 0xfe210a89, 0x7ccd18e5, 0x09f02513, 0x09072007, 0x0a85268a, 0x834b3021, 0x4f6b2c2c, 0x1c142a37, 0x372a141c, 0x8910104f, 0x828720ab, 0x821b20ab, 0x823720ad, 0x070044ab, 0x0cb75d18, 0x1f363725, 0x9c071601, 0x2d4e2ea3, 0x0b170c0c, 0x0b2e2e0b, 0x0c0c170b, 0x210d8c2d, 0xa9939afe, 0x2a93d020, 0x3e203886, 0x0221ae92, 0x2a008200, 0x80018002, 0x2b000700, 0x41360000, 0x29630631, 0x26222408, 0x4b21013d, 0x11200787, 0x2408924e, 0x33363435, 0x06fd42d1, 0x09422e27, 0x09072007, 0xde4218fe, 0x09e0220a, 0x05f44907, 0x2e425125, 0x5d0907c0, 0x092305ba, 0x83600107, 0x90d0220b, 0x05bf6307, 0x8201c021, 0x17002501, 0x2f002700, 0x28064562, 0x23061617, 0x3f262221, 0x874d1801, 0x0e835b0a, 0xeb420620, 0xc0013606, 0x043f344e, 0xd0fe0603, 0x3f040306, 0x314f4e34, 0x304e32c0, 0x715f180e, 0x2e99340a, 0x212e2121, 0x00ff6001, 0x03323927, 0x32030b0b, 0x82012739, 0xaf39210b, 0x21079368, 0x2082360e, 0x002e2122, 0x05230082, 0x89ff0000, 0x0037248f, 0x9d47003f, 0x012b2293, 0x08957622, 0x775c3720, 0x18a3870e, 0x94078d5d, 0x0ef822ab, 0x055a7f0a, 0xc80e0a22, 0x1c220a89, 0x02821c28, 0x84e4fe21, 0x20bb9c06, 0x20c5880a, 0x6b65182e, 0x067f420a, 0x87780020, 0x00072405, 0x82250021, 0x152127c7, 0x35333521, 0xa8523723, 0x1d162705, 0x2b061401, 0x467e1501, 0x013d2505, 0x05333634, 0x022a2082, 0x0120fe20, 0x102020e0, 0x32541c14, 0x141c3905, 0x1c1400fe, 0xd001141c, 0x200160fe, 0x804040c0, 0x0e10141c, 0x0e0a900a, 0x1c272282, 0x1c14e014, 0x82808060, 0x82032070, 0x226fcc03, 0xd0c0fe70, 0x3523216f, 0x1021df99, 0x206e9be0, 0x21dfb200, 0x6f9a1517, 0x9980b021, 0x4102206e, 0x00210c4b, 0x20b94101, 0xb141d599, 0x2f5e8214, 0x00000100, 0x4401beff, 0x1500c401, 0x23250000, 0x08085657, 0x26060736, 0x36341135, 0x06160117, 0x386a2e01, 0x31070603, 0x35030d07, 0x17160857, 0x081d0107, 0x07887709, 0x0216030e, 0x59810705, 0x010c0a09, 0x08090cae, 0x1708dbfe, 0xbf2d4f84, 0xc1010001, 0x00004800, 0x23061401, 0x574e1822, 0xdd5a1809, 0x22232607, 0x0e27012e, 0x08e95202, 0x09b44c18, 0x82073421, 0x013d291a, 0x33023e34, 0x17011e32, 0x16370683, 0x07000115, 0x0c245405, 0x0554240c, 0x17050707, 0x12122d1e, 0x83161e2e, 0x2615850b, 0x02030603, 0x89030403, 0x8c013618, 0x70300705, 0x700c280c, 0x05070131, 0x03070528, 0x12121112, 0x870a8402, 0x22348217, 0x82050228, 0x431a8638, 0xff20062b, 0x2205ff62, 0x4338002c, 0x332005f3, 0x22061876, 0x4821013d, 0x34250685, 0x2311013b, 0x21a38222, 0x8379013b, 0x20238507, 0x81411805, 0x05152309, 0xce573435, 0x23278208, 0x0c14e001, 0xfe218e82, 0x21048280, 0x0b84140c, 0x0b850120, 0xa82b1282, 0x0ca80c0c, 0x540c4001, 0x84480a0e, 0xe0fe2109, 0x4020268a, 0xb42d0b89, 0x0c880c0c, 0x0c88e80c, 0x340e0a48, 0xe340180c, 0x40022a07, 0x2b00a001, 0x00005d00, 0x20a18937, 0x4ca19435, 0xbd8207ef, 0x0b8a3720, 0x3521d98a, 0x08085633, 0x2b263424, 0x66493501, 0x2b142a07, 0x34064001, 0x1a1a0606, 0x21068206, 0x0b892001, 0x1184c020, 0x84e0fe21, 0x0e882911, 0x0e0a400a, 0x68080a0e, 0x80200e84, 0xc0201b84, 0x0a842c8a, 0x89a04021, 0x08482111, 0x34822f83, 0x2b844820, 0x7b570020, 0x0011290a, 0x2500001a, 0x011d0622, 0x0cbb4118, 0x06010f22, 0x15279883, 0x0a380114, 0x83f8fe0e, 0x90012c3e, 0x62070e0a, 0x80060a07, 0x820a0e80, 0x290f8383, 0xf8fe0a0e, 0x80076237, 0x53850a06, 0x0002c027, 0x0f00c001, 0x05636000, 0x44111521, 0x352505ef, 0x33363411, 0x18f48211, 0x24081fb6, 0x1415013b, 0x06735816, 0x1c14e025, 0x58d0141c, 0x3023074a, 0x58c0012f, 0xfe220b56, 0x1f833060, 0x14200127, 0x2f21d01c, 0x26008200, 0xffffff05, 0x828002c0, 0x00152867, 0x00340018, 0x82630037, 0x061429c1, 0x30352622, 0x37363435, 0x32240182, 0x1e171617, 0x27236282, 0x6d053307, 0x1a85052a, 0x37043e23, 0x221b8836, 0x48132733, 0x11210fa4, 0x09205b26, 0x07007b18, 0x2b06143f, 0x11070601, 0x6a4b0001, 0x1a1e0a4b, 0x0d3c0d13, 0x0a1d1a14, 0x01904880, 0x233b22b8, 0x25148235, 0x080b0505, 0x1886050b, 0x4890c829, 0x09090710, 0x8360fe07, 0x26b02305, 0x07838208, 0x4e199024, 0x08839019, 0x2608823b, 0x2f2f2170, 0x17080121, 0x1a26343c, 0x3935281a, 0xa0010916, 0x25161090, 0x25158515, 0x10150a0a, 0x19870b16, 0xfe901022, 0x28050a49, 0x07200709, 0x10270109, 0x20088429, 0x051f6520, 0xfe102924, 0x008200d9, 0x9b650220, 0x002a2208, 0x08074d30, 0x06142325, 0x18011e07, 0x250f54bd, 0x2e373634, 0xce4a3502, 0x34012f06, 0x15062226, 0x0e0a6801, 0x35440a0e, 0x07834435, 0x85b0fe21, 0x3723220d, 0x3108831f, 0x563d1001, 0x0ec0013d, 0x0e0a100a, 0x12126b43, 0x0a84436b, 0x0f820484, 0x4f380c23, 0x250b842d, 0x553b40fe, 0x4b4f3b55, 0x80012406, 0x8300c001, 0xac36208b, 0x012e2a8d, 0x13070622, 0x14233536, 0x29939d17, 0x3c320d05, 0x0bba0d32, 0x99a30bd0, 0x2c24802a, 0x0001242c, 0x1e22221e, 0x8806a742, 0x0100219f, 0x28212441, 0x1d163221, 0x010e1401, 0x21988332, 0x27416801, 0x0a502917, 0x56dd0e0e, 0x8001d03d, 0x291b2641, 0x0a100a0e, 0x3b55900e, 0x476c003b, 0x052b4108, 0x062089a9, 0x7fa2839d, 0xdf247b87, 0xa1010002, 0x21053f5c, 0xe382011e, 0x06010f22, 0x2b28e984, 0x3d262201, 0x012f3401, 0x36210583, 0x22ff8333, 0x85343517, 0x91332008, 0x36343708, 0x150dd101, 0x0830080d, 0xf0070b06, 0x70100e0a, 0x13141d20, 0x048f081c, 0x0e70013e, 0x14850d16, 0x13127412, 0x060b0703, 0x15070a0e, 0x2b1d640e, 0x1d1c1442, 0x88073014, 0x1f210683, 0x21058330, 0x0b84202f, 0x821c1421, 0xff012ea8, 0x01c0fffd, 0x00c101c0, 0x01000037, 0x21a78632, 0xa382010e, 0x3e249f82, 0x011f1601, 0x2205df4f, 0x82011d16, 0x013e259b, 0x021e3233, 0xaf890a84, 0x0a99012d, 0x1b050a13, 0xc6101b03, 0x827d0f18, 0x09212209, 0x22118220, 0x82081811, 0x10082605, 0x1708060b, 0x340c8210, 0x0b400118, 0x17960b12, 0x15107115, 0x210eac14, 0x2c0d0513, 0x231182ec, 0xd8af1118, 0x062d0682, 0xd708100b, 0x181810b1, 0x1157b011, 0x399a8218, 0x00000100, 0x0002e0ff, 0x2d00a401, 0x34160000, 0x23353336, 0x36342622, 0x0788013b, 0x022e2727, 0x1f013e37, 0x82048401, 0x061424a1, 0x8206010f, 0x17d825ba, 0x17112011, 0x20080482, 0x1c1c14d0, 0x0cb2d014, 0x08040310, 0x19be1324, 0x700d1d09, 0x880e1114, 0x11500504, 0x08172209, 0x38038217, 0x0e1c281c, 0x19140545, 0x0710120d, 0x050c1f4b, 0x170c4007, 0x03160ef0, 0x867f8220, 0x01402c83, 0x002400a0, 0x34350500, 0x4126012f, 0x878206be, 0x013f3223, 0x240e8836, 0x17322133, 0x08838213, 0x0b800136, 0x930e0c70, 0x1b250e0a, 0x1608157c, 0xe60a0a03, 0x0a0e2117, 0x0e1a4e01, 0x3d200fa3, 0x0747070e, 0x1b080a0e, 0x09331425, 0x10172110, 0xfe160e0a, 0x741c17fd, 0x6f82f082, 0x82c0ff21, 0x00c125ef, 0x01000050, 0x82052b66, 0x8235206f, 0x1f3222f9, 0x417a8301, 0x1e20058a, 0x1627f182, 0x34353233, 0x82262735, 0x33032611, 0x1f021e32, 0x2e118201, 0x023e013f, 0x1e173233, 0x14010f01, 0x82331431, 0x3e5c089e, 0x16323301, 0xff011415, 0x25380944, 0x6c27367f, 0x1011170d, 0x2a0c3d0b, 0x0b120b02, 0x020b1009, 0x08070126, 0x07040133, 0x07070c0a, 0x02070a0d, 0x08080238, 0x0b022602, 0x06060911, 0x22030f0f, 0x1d020607, 0x110e1603, 0xfe2f0117, 0x252d23e1, 0x11110c66, 0x29390b17, 0x06059028, 0x23084282, 0x7d090d07, 0x01010806, 0x070505c4, 0x04070a0c, 0x060b0805, 0xb80808da, 0x02080f09, 0xa5101b05, 0x7b060801, 0x11213c82, 0x21de8205, 0x6b420400, 0x00c02f06, 0x0031002d, 0x00390035, 0x14152500, 0x6d42010f, 0x3411230c, 0x6b423236, 0x83078d05, 0x23052416, 0x86373315, 0xc0012303, 0x98822001, 0x0c14d023, 0x05714280, 0xce411720, 0x24078606, 0x080800ff, 0x28028458, 0x040560d0, 0x10110e88, 0x057242b0, 0x11140127, 0xc8111717, 0x21058328, 0x05831828, 0x61210483, 0x25008360, 0xff010000, 0x374dfffc, 0x002b2305, 0x89832400, 0x362ba08a, 0x2627013f, 0x1f16013e, 0x8e353301, 0x013424a6, 0x84172287, 0x17f03391, 0x0507400c, 0x074b1f0c, 0x08242510, 0x281c0e45, 0x9383081c, 0x1117e823, 0x2c888450, 0x1d0d7014, 0x13be1909, 0x12100f24, 0x05a042b2, 0x86832020, 0x4b682020, 0x20002906, 0x60018102, 0x47001900, 0x32228e82, 0xd37e011e, 0x06b34e05, 0x29071650, 0x2b160133, 0x012f2201, 0xf2422335, 0x022f2306, 0xfc421623, 0x37262305, 0x57183613, 0x0982092e, 0x01172808, 0x04050305, 0x55050701, 0x05360507, 0x07055507, 0x0174020c, 0x010b360d, 0x070b0109, 0x3209031e, 0x121f0209, 0x82020201, 0x3646080e, 0x18010706, 0x09410b01, 0x01102b03, 0x032b0809, 0x010b4109, 0x06036001, 0x07052b03, 0x070705f1, 0x0507f105, 0xcdfe0c2b, 0x36850b0d, 0x07551422, 0x1e365507, 0x080b8518, 0x0b280105, 0x20357f08, 0x0b087f15, 0xc76f0000, 0x000f2e0c, 0x2500002a, 0x35012b14, 0x36163233, 0x05005314, 0x27261325, 0x4e343536, 0x3d240b75, 0x16173301, 0x2608ae82, 0x1c1d0136, 0x0e15171e, 0x91ce91db, 0x2b04ce91, 0x476a2601, 0x090f0f09, 0x1a0e0a17, 0x180e072c, 0x1df10e0e, 0x83270c38, 0xfe91321c, 0x18024fa0, 0x0a0e5932, 0x0e0e0ae8, 0x0d53480a, 0x07af4718, 0x5b510220, 0x00272305, 0xde600100, 0x07ff5307, 0x0a116118, 0x0cfb7618, 0x1c145026, 0xb0f0141c, 0x200a5f48, 0x2b1183f0, 0x00fe1002, 0x141cc001, 0x1c14c0fe, 0x48051848, 0x1c200524, 0x0bfd7618, 0x6f4f0320, 0x001d2408, 0x8247002b, 0x99651875, 0x011d2319, 0x65180514, 0x05210cc7, 0x94bb1834, 0x01352318, 0x6518feb4, 0xfe210eba, 0xd865184c, 0x0c482409, 0x82280c3c, 0x21068603, 0x65182001, 0x24220dc9, 0x6518200c, 0x8c2009e6, 0x09822789, 0x56000021, 0x012405b7, 0x00c001c0, 0x3720b383, 0xe86db3ae, 0x25a39d0a, 0xb80c0c3c, 0x9a9c0c0c, 0xc482c020, 0x93900282, 0x202f4741, 0x3cbc1837, 0x9d272018, 0x300d2ca3, 0x081c0909, 0x09303009, 0x83091c08, 0x9c0d8a06, 0x93a020b9, 0x83468231, 0x41ce823f, 0x3b200e63, 0x232e6341, 0x010f2627, 0x06260383, 0x3f16011f, 0xc39d3601, 0xc0825920, 0x082e6a23, 0x24c08209, 0x8f080952, 0x26b79c09, 0x08091c60, 0x82082f6a, 0x540825ed, 0x098e0808, 0x0120ab83, 0x2408a355, 0x01000019, 0x8c931836, 0x013b270c, 0x011d1632, 0x04823637, 0x0cdb0139, 0xfe0a0e19, 0x0e0e0a30, 0x0e0a700a, 0x01190c8b, 0x0e0e081c, 0x820af0fe, 0x05b74c10, 0x0858c425, 0x89440e0e, 0x012035ff, 0x000900c0, 0x001d0011, 0x32163700, 0x06071537, 0x02012f22, 0x08063756, 0x3432372b, 0x15062223, 0x34353214, 0x1e117036, 0x0c041611, 0x781c1604, 0x54785454, 0x260c0c90, 0x83281836, 0x219d0303, 0x01210505, 0x291382da, 0x18087854, 0x0c0c2636, 0x5f84281c, 0xfff9ff25, 0x820702c0, 0x001a245f, 0x82390024, 0x0f1623b7, 0xe1430601, 0x08e2530a, 0x03173224, 0x45453335, 0x099b4c06, 0x26012f24, 0xc96a013f, 0xfb012905, 0x092b0c0c, 0x0a7ffe0e, 0xa829c782, 0x07200709, 0x090e9909, 0x055255f0, 0x1483e820, 0x0e7ffe24, 0x24842b09, 0x0140992d, 0x2c0b0b6b, 0x500a0e09, 0x76100e0a, 0xfe2305f1, 0x82707039, 0x17012109, 0x09211484, 0x211f832c, 0xa4822020, 0x00034d08, 0x02deff00, 0x00a10140, 0x000c0008, 0x11000016, 0x11013f34, 0x35260607, 0x11171137, 0x011e3613, 0x0f141115, 0x8c141101, 0xc00e088a, 0x0906aac0, 0x018c1407, 0x3808164a, 0x033f80fe, 0x0130080a, 0x80fe4080, 0x0302bf01, 0xa6fe0608, 0x01231682, 0x82010080, 0x02bd2253, 0x20f78200, 0x0ae14415, 0x3d215382, 0x08d34401, 0x261ac029, 0x7d901a26, 0x83600d06, 0xc0013208, 0xe0fe1a26, 0x045e261a, 0x26540707, 0x1a20011a, 0x0ea74526, 0x857b1720, 0x0f3b700b, 0x6e0f1354, 0xe8220548, 0x2f650709, 0x09072105, 0x84052566, 0x06346e0f, 0x07a0b723, 0x06957909, 0x72820988, 0x6e020021, 0x0722081f, 0xc36e1700, 0x0e75540a, 0x01216185, 0x90428958, 0x00002257, 0x08774504, 0x19001122, 0x20066360, 0x08194f33, 0x2205a647, 0x82152315, 0x22262208, 0x074e5b06, 0xfb580620, 0x60603707, 0xe0fe212f, 0x4b602f21, 0x80c04b6a, 0x96263426, 0x140e0e14, 0x0584b20e, 0xfe200134, 0x2f2f21f0, 0x20100121, 0x354b4b35, 0x261a2020, 0xf4579226, 0x3c7b840a, 0x014002e0, 0x002a00a2, 0x00420036, 0x2500004e, 0x2b061415, 0x020e0701, 0x26222123, 0x09c2572f, 0x013e3727, 0x010f011e, 0x073e4833, 0x05163222, 0x0a766718, 0x0b8a3720, 0x0b8a2720, 0x40022908, 0x1a080a0e, 0x0c150d02, 0x1b1294fe, 0x0a081a03, 0x430a0e0e, 0x161a086b, 0xec500804, 0x16040850, 0x436b081a, 0xf8fe0e0a, 0x70209685, 0xe0200685, 0xe82c0685, 0xb70e0a10, 0x170b130b, 0x0a0eb712, 0x93300b82, 0x1a10040b, 0x0b6d6d0b, 0x0b04101a, 0x70ba0e93, 0x7e06c043, 0x098a09d3, 0x00820020, 0xffff022f, 0xc101e0ff, 0x4300a001, 0x00004700, 0x21d98301, 0x65483233, 0x82072005, 0x2622240c, 0x8823013f, 0x230d8308, 0x37013b36, 0x8205715b, 0x830c8208, 0x6033202c, 0xfc8205e7, 0x37310d83, 0xb9010723, 0x174f0a02, 0x0108054b, 0x500a0108, 0x05cf600f, 0x10620e2a, 0x06290a01, 0x4b0f0107, 0x07200482, 0xba3021a0, 0x01176317, 0x09800a0a, 0x560a2805, 0x5205090a, 0x0d830484, 0xb2301290, 0x00008080, 0xfffcff05, 0x01c401c0, 0x000700c0, 0x2005815a, 0x091d582d, 0x20076f5a, 0x06914416, 0x20072742, 0x20ed8213, 0x31f68307, 0x01372622, 0x425c9e36, 0x5c425c42, 0x281c1c28, 0x0b8a821c, 0x0e206830, 0x91fe080e, 0x0e220c07, 0x7001090e, 0x2582e007, 0x5e5c4222, 0x1c222582, 0x0b8ac428, 0x1aa4012d, 0x0a30fe0c, 0xd0010c1a, 0x4305000a, 0x8f850a03, 0x00004722, 0x07426a18, 0x87862420, 0x07873620, 0x31062358, 0x2e013e17, 0x22060701, 0x010e2627, 0x17161716, 0x0d820e14, 0x011e5308, 0x37363736, 0x1e171633, 0x27013e01, 0x3635022e, 0x7aac5601, 0xfe7aac7a, 0x9191cec9, 0xa0a891ce, 0x70a07070, 0x15151ecf, 0x0652151e, 0x070b0307, 0x07484c48, 0x0607030b, 0x06091d35, 0x0e06020a, 0x0412030d, 0x0312040a, 0x02060e0d, 0x1d09060a, 0x3d829001, 0xa2ac7a22, 0x91223c82, 0x3c8259ce, 0x44a07022, 0x40083c82, 0x014d1e15, 0x02070d0c, 0x07021111, 0x0c020b0d, 0x13412f04, 0x050e0718, 0x212e0606, 0x06062e21, 0x18070e05, 0x042f4113, 0x00000400, 0x8001bdff, 0x0b00c001, 0x1b001300, 0x00004200, 0x22230605, 0x2da8822f, 0x14151617, 0x0e161727, 0x012f2601, 0x29652212, 0x16172405, 0x82060706, 0x2326290f, 0x1f141522, 0x0e071501, 0x3f25e582, 0x15073501, 0x05496814, 0x36374408, 0x1732013b, 0x02027c01, 0x087d0205, 0xf1017e05, 0x180b053f, 0x04240519, 0x241a1a24, 0x02066f1a, 0x07140708, 0x04020166, 0x04421f01, 0x050c1918, 0x0a0e1036, 0x073d0e0a, 0x070c200c, 0xce04013f, 0x82d00703, 0x9ac3293c, 0x0b0a190c, 0x3c01580c, 0x1a253582, 0x1408c324, 0x3b3a8206, 0x02040281, 0xb56c2701, 0x18090c0c, 0x148c950d, 0x0e0e0a50, 0x094f5f0b, 0x00050009, 0x02380082, 0x00800100, 0x000e0006, 0x0037001e, 0x37000047, 0x36372317, 0x32371637, 0x2b23c982, 0x44373501, 0x3430086b, 0x32213336, 0x26270516, 0x0f22012b, 0x021e0601, 0x3f20b482, 0x2506d24a, 0x3437013e, 0xec4a012e, 0x09a32c0b, 0x0202091a, 0x1916a802, 0x6cc50e2f, 0x3708071b, 0x1c14a001, 0x0239f5fe, 0x03082409, 0x03010139, 0x091d0305, 0x08340803, 0x041d0903, 0x18b70306, 0x05391e2d, 0x39050707, 0x1ed1352e, 0x0a0a061e, 0x3118191a, 0xe0fe5f62, 0x0807c353, 0xa8f41c33, 0x03a80808, 0x09030406, 0x05091e1e, 0x2b1e5407, 0xa8050717, 0x00340705, 0xfff4ff04, 0x018101c0, 0x002100c6, 0x00430033, 0x17000053, 0x3736012e, 0xca971836, 0x27232709, 0x32371706, 0x11893233, 0x14161332, 0x2f010e07, 0x36372601, 0x3f262734, 0x37163601, 0x06201182, 0x0720108a, 0x26080f8e, 0x2e2d4061, 0x400c0a3f, 0x04200209, 0x3801010c, 0x01382020, 0x20040c01, 0x05400801, 0x09910804, 0x050b0309, 0x82040606, 0x06420800, 0x5f0b0506, 0x0a082d2d, 0x25080905, 0x05090825, 0x1b1b260a, 0x08060a08, 0x07141407, 0x3b0a0608, 0x40abab40, 0x0528080a, 0x5103030a, 0x5a5a060b, 0x03510b06, 0x28050a03, 0x10a10103, 0x01051022, 0x2b820604, 0x2a821020, 0x01040636, 0x368c3656, 0x0806090a, 0x2d742d08, 0x09060808, 0x23582337, 0x072c0f82, 0x1a421a08, 0x09060708, 0x000c0000, 0x02230082, 0x43a00180, 0x272308ff, 0x5b002f00, 0x4f250517, 0x5f005700, 0xef751800, 0x43062008, 0x12200675, 0x5e080d44, 0x1d4405df, 0x20178707, 0x9f1f8e04, 0x25802c2f, 0x36252536, 0x13131a28, 0x8305131a, 0xd325210a, 0x0a5b9e18, 0x01201185, 0x02881b82, 0x1a852491, 0x3c84db20, 0x0c84c020, 0x84730121, 0x849b2055, 0xab8d200c, 0x84532012, 0x8200202c, 0x00062200, 0x06775000, 0x38001336, 0x48004000, 0x64006000, 0x14370000, 0x35262206, 0x16323634, 0x2306ec68, 0x26062226, 0x0e210c83, 0x05994303, 0x3336342a, 0x34353632, 0x3435023e, 0x24861a82, 0x41072541, 0x25200745, 0x3d394585, 0x27012e01, 0x3e37012e, 0x011e1703, 0x07051417, 0x10d83727, 0x422f1018, 0x3705822f, 0x310e140e, 0x150f6792, 0x2d3f0f15, 0x0c10100c, 0x1b171e16, 0x46644616, 0x53221a82, 0xa782131a, 0x05846d20, 0x82000221, 0x51013310, 0x030a0b40, 0x0c090802, 0x01665105, 0x502299fe, 0x3383bc22, 0x2f2f2123, 0x2d078321, 0xa60e0e0a, 0x2b1b4967, 0x0913141a, 0x30823f2d, 0x19161e2a, 0x19261325, 0x32464632, 0x49211f83, 0x20f78485, 0x2005846d, 0x321183cf, 0x44010102, 0x1504166f, 0x0409050b, 0x8c1b0201, 0x82b50356, 0x00240854, 0xff040000, 0x02c6fffa, 0x00ba0186, 0x00410032, 0x00820074, 0x07260100, 0x06161732, 0x07163223, 0x2723010e, 0x2a05b744, 0x3736023f, 0x06011e36, 0x82070607, 0x17162408, 0x83010e16, 0x82e8820a, 0x26072224, 0x077d7723, 0x33363727, 0x0f162526, 0x21288202, 0x2982012e, 0x08823720, 0x26272638, 0x3637013e, 0x2e270637, 0x013e3701, 0x22371617, 0x33362627, 0x0c822622, 0x3717332a, 0x07171636, 0x23060722, 0x48085482, 0x35363233, 0x23012634, 0x183d2120, 0x0e0e1007, 0x2b0b0710, 0x07435e1a, 0x082c030e, 0x0a293a0f, 0x0e160846, 0x0d140802, 0x120b2822, 0x0c050101, 0x2d151707, 0x05070a2b, 0x0a251505, 0x0a140f16, 0x0a160910, 0x01111107, 0x212d8e70, 0x2d8d1409, 0x608b0920, 0x835c1c21, 0x84b92060, 0x83072039, 0x153d0846, 0x0c100301, 0x19190d33, 0x091c170d, 0x06050421, 0x21090f59, 0x07395a4a, 0x07161102, 0x05171311, 0x070b0e02, 0x0201090d, 0x05150a0d, 0x070a0a15, 0x0f151541, 0x1408110a, 0x1034010f, 0x21298d08, 0x298c0c0d, 0x588d0520, 0x32824720, 0x15140f26, 0x00140f0f, 0x04300082, 0xc0fffbff, 0xc5010502, 0x38001300, 0x51004400, 0x20379f42, 0x05bb6425, 0x013f2626, 0x17011736, 0x22200c83, 0x4205034c, 0x0135248e, 0x570909bc, 0x081c0908, 0x08095708, 0x091cc9fe, 0x0a049409, 0x20068303, 0x2d854208, 0x82089b21, 0x1c082247, 0x20478209, 0x28478309, 0x04049408, 0x9409081c, 0x36eb8209, 0xffffff03, 0x01c101bf, 0x003200c2, 0x006b003f, 0x36341700, 0x1835013b, 0x8b089b5c, 0x83372008, 0x2e27261a, 0x1f013e01, 0x0a005501, 0x2737262a, 0x36373626, 0x06011f16, 0x37270382, 0x0f141530, 0x82343501, 0x870720e8, 0x88208817, 0x26273008, 0x1516013e, 0x3e0d115b, 0x11110c7e, 0x829a7f0b, 0x0c2d0805, 0x120c7d9a, 0xa90c1001, 0x0e040a1f, 0x0e7c0918, 0x10500c0f, 0x100c6b10, 0x03072549, 0x08180909, 0x0e020d0d, 0x3d0df70b, 0x15157b12, 0x2e128234, 0x4e07170a, 0x03085e04, 0x0717090a, 0x844d055f, 0x67082e08, 0x17110101, 0x110c2412, 0x0c0c1106, 0x20048210, 0x3309830b, 0x0716110b, 0x06031318, 0x8d120a5a, 0x1302130c, 0x2eee1004, 0x32823e82, 0x230b1130, 0x0102080a, 0x11300a11, 0x0f5a0c16, 0x6882430e, 0x0a03072e, 0x0a790363, 0x03070718, 0x62047a09, 0x85230885, 0x82110c26, 0x0000379d, 0xf8ff0200, 0x4002beff, 0x2d00c201, 0x00004500, 0x07141625, 0x095e0706, 0x03272906, 0x06130706, 0x022f2223, 0x26231282, 0x70372627, 0x36280696, 0x36011f16, 0x07163233, 0x21078f75, 0xaa431736, 0x36230807, 0x07061635, 0x07073902, 0x052b5731, 0x080d0803, 0x14fc0614, 0x1112be12, 0x77291616, 0x717d0d10, 0x890f0f3c, 0x3522081a, 0x95592a28, 0x38502288, 0x2a13181a, 0x0b191226, 0x19120c14, 0xd812050e, 0x540b1a0b, 0x14083a2b, 0x44820a05, 0x09650130, 0x02f1fe0d, 0x11ab3a03, 0x6628b213, 0x1a891818, 0x570a4835, 0x383327bb, 0x0d1c0950, 0x0c121914, 0x12190c13, 0x82193d1a, 0x002808d6, 0xff000006, 0x018002fd, 0x00190080, 0x00280020, 0x0037002f, 0x01000057, 0x15011f32, 0x37012f26, 0x22262736, 0x0615010f, 0x342ed682, 0x36373537, 0x11331733, 0x35262223, 0x5b75013a, 0x5c052005, 0xe14a0519, 0x1e052907, 0x0e010f01, 0x07012f01, 0x03830483, 0x34822320, 0x0e833b20, 0x1e172b08, 0x01013f01, 0x37090db3, 0x1a920404, 0x0d050a0c, 0x220d5005, 0x620d0a0a, 0x60c30d09, 0x29130d40, 0x0e09090e, 0x60c0fd09, 0x07820d13, 0x013d0282, 0x09030aa4, 0x0a1b0809, 0x1f092005, 0x3511120c, 0x37125b14, 0x52540d09, 0x14140216, 0x394f823b, 0xc2370980, 0x18760305, 0x04050c0b, 0x020a0149, 0x0b210c0b, 0x40085a01, 0x428600ff, 0x00012926, 0x40130de0, 0x0a244e84, 0x0c0b1a08, 0x04375082, 0x0a040c26, 0x11061510, 0x0937e052, 0x163c144b, 0x1b140315, 0x46000200, 0x1a2507a3, 0x00004600, 0x08fb5c05, 0x36372b08, 0x023e3037, 0x021e3233, 0x16171631, 0x07260715, 0x0e300706, 0x2e222302, 0x27262703, 0x06010f26, 0x16171415, 0x32041e17, 0x2b82033e, 0x34353625, 0x49000227, 0x12320570, 0x0e1c7c29, 0x17080817, 0x297c1c0e, 0x07044212, 0x0f834723, 0x10073708, 0x02120d11, 0x04072347, 0x24030209, 0x0e160246, 0x15141517, 0x02160e17, 0x02032446, 0x1c1c1410, 0x18070114, 0x155a200e, 0x090b0b09, 0x0e205a15, 0x04064218, 0x0e82331b, 0x090b063e, 0x1b33010e, 0x020e0604, 0x1a030402, 0x0a110232, 0x0d06060d, 0x3202110a, 0x0204031a, 0x0320c482, 0x012ec783, 0x00c001c0, 0x002f0027, 0x01000044, 0xa05f1523, 0x88078806, 0x333624db, 0x60163221, 0xc141067b, 0x35172f07, 0x012b2634, 0x23272206, 0x1d010e22, 0x31551401, 0x14b42405, 0x840c0c14, 0x141c2303, 0xa284c0fe, 0x14402008, 0xd60c141c, 0x34262634, 0x1c273026, 0x132a1305, 0x121f1205, 0x09b4090d, 0x4020010d, 0x830c280c, 0x05fe5d03, 0x3083a020, 0x12823020, 0x2c822020, 0xc7342632, 0x08221813, 0x101b0f08, 0x0b0b0813, 0x06000000, 0x089f6c18, 0x17000f2a, 0x37002b00, 0x4f004300, 0x20111577, 0x07a54c16, 0x5164a189, 0x012b220b, 0x20ae8222, 0xe161183b, 0x410b9107, 0xfe21055a, 0x208c8320, 0x21b78c9a, 0xb684271c, 0x9008e023, 0x20028e08, 0x4b901801, 0x8a60200c, 0x182221be, 0x3d26bd83, 0x10080810, 0x058a4808, 0x0320cf82, 0x0c937218, 0x81501f20, 0x6d821809, 0x2e373009, 0x07222301, 0x26272206, 0x07062223, 0x8291ce91, 0x1c013602, 0x48343448, 0x39b2b134, 0x0320340e, 0x15281504, 0x34200304, 0x0694500e, 0x1a823120, 0xfe48342c, 0x211b44dc, 0x01070701, 0x50181b21, 0x0f210bbf, 0x06396700, 0x20068b56, 0x070e6023, 0x06221722, 0x2205c141, 0x18232634, 0x4109c050, 0x3f4108e1, 0x50012308, 0xb85f1c14, 0x18602007, 0x20081068, 0x13254116, 0x0dd48c18, 0x0e092023, 0x20028209, 0x10194180, 0x00000023, 0x08d74107, 0x1300092f, 0x2b001f00, 0x3f003700, 0x00005200, 0x05cb7d01, 0x33363425, 0x4c211103, 0x252006e0, 0x169b5b18, 0x420bc741, 0x072907a3, 0x013b1606, 0x2e273632, 0x08a94201, 0x1410022a, 0x1cc0fd1c, 0x40023014, 0x2024c782, 0x60011c14, 0x820eca41, 0x8496200e, 0x02ad37cf, 0x08ba080a, 0x2206020a, 0x2a130815, 0x190e0813, 0x1ca00112, 0x41821014, 0x0170fe29, 0x14d0fe30, 0x41fc1c1c, 0xe18510d7, 0x07a63708, 0x13080c0d, 0x0b080819, 0x03000014, 0xc0ffffff, 0xc0010001, 0x33001200, 0x00004300, 0x15161513, 0x30230614, 0x35262223, 0x34353734, 0x03163236, 0x34353632, 0x7551062e, 0x070e2607, 0x011e1415, 0x06fa4a33, 0x1d3d2285, 0x20e01601, 0x3501354b, 0x5038204a, 0x2f216038, 0x03060202, 0x01080307, 0x011c281c, 0x08098208, 0x0202062b, 0x41152515, 0x20253625, 0x20131a13, 0x25cb6001, 0x4c4b3530, 0xcb243035, 0xfe383828, 0x06212f68, 0x060b090c, 0x01090409, 0x3bbb82dd, 0x0a01dd14, 0x0b060903, 0x15070b09, 0x1b501625, 0x251b2525, 0x130de912, 0x12e90d13, 0x0f22b38a, 0xb3832200, 0x37208a8f, 0x1521c290, 0x24c09003, 0x3632013b, 0x208f87c0, 0x20bc8920, 0x23ba9510, 0x402f2101, 0xa9208685, 0xa9228683, 0xc08b3012, 0xe0fe2822, 0x2f20bf9a, 0xf40b6741, 0x836920b3, 0x406920b3, 0x2920adb3, 0x2920b383, 0x0724b3b8, 0x3b001a00, 0x4209b14e, 0x25222c13, 0x10424536, 0x365b2623, 0x25362525, 0x2b084215, 0x5f001021, 0xa12005af, 0x2818634f, 0x006f0067, 0x00a60077, 0x0fe15200, 0x52221621, 0x1b5c050b, 0x14162205, 0x08f95226, 0x34211786, 0x4f118536, 0x15860e73, 0x6d4e3420, 0x87079707, 0x16372227, 0xb2431814, 0x35262f09, 0x26273734, 0x0e232223, 0x14111501, 0xa56b2b06, 0x1f322b06, 0x32333601, 0x32363717, 0xf3480117, 0x25058505, 0x09090e37, 0x0b8b090e, 0x11849720, 0x2005be48, 0x200b8420, 0x20239069, 0x85118417, 0x200b853b, 0x08118449, 0x04042621, 0x040e04aa, 0x0604040c, 0x110a0e20, 0x16040418, 0x2007091d, 0x65490907, 0x1b1a0a23, 0x8206202e, 0x8280201d, 0x0e092270, 0x20058469, 0x20058437, 0x850b9029, 0x20848578, 0x85239017, 0x853b8511, 0x8449200b, 0x82e32023, 0x04aa215d, 0x0e207e82, 0x2e347f82, 0x110a1a1b, 0xfe172403, 0x090907ce, 0x342f0107, 0x0e0a244d, 0x04218082, 0x0a774900, 0x49001928, 0x35370000, 0x5d181521, 0x50181564, 0x222108af, 0x09e47f26, 0x36011f23, 0x98961817, 0x34262d0b, 0x27372637, 0x1d062226, 0xc0012001, 0x20054c5d, 0x05676dff, 0xd0012022, 0xfe217c83, 0x2d058320, 0x14392910, 0x05232d13, 0x050b050d, 0x06856905, 0x14141c2b, 0x400c1206, 0x1c2b3030, 0x20238429, 0x24058310, 0x09ab1c29, 0x82098407, 0x1cbb2704, 0x14141429, 0x3582051c, 0x36820d20, 0x23270684, 0x0c06142c, 0x8200bb09, 0x22ce8200, 0x8201c0ff, 0x00240801, 0x002b000b, 0x00590051, 0x22060500, 0x35012e27, 0x14153234, 0x07162706, 0x27060706, 0x36343526, 0x17011e17, 0x27300d82, 0x37262726, 0x26343536, 0x07010e07, 0x16321206, 0x07212582, 0x21128206, 0x33823e37, 0x23032e2a, 0x14150622, 0x15161716, 0x06200382, 0xfd504784, 0x013a0807, 0x064a060b, 0x0e800e07, 0x0e060575, 0x2e050407, 0x52393d57, 0x05300201, 0x060e0704, 0x293b1d05, 0x02023525, 0x4683ba05, 0x01060338, 0x2c250104, 0x362b2112, 0x2a67491c, 0x0e820324, 0x03065808, 0x36c54539, 0x25362525, 0x19171729, 0x2c2c1755, 0x05af5517, 0x080f0a04, 0x3d3e2b06, 0x51020255, 0x062c4139, 0x040a0f08, 0x29281d05, 0x35020239, 0x03012b25, 0x6c425d83, 0x0404021b, 0x4e18141b, 0x2c351d2e, 0x48671220, 0x02184e2d, 0x04191303, 0x6c1b0204, 0x821d5d42, 0x36252351, 0x8b710200, 0x071f5f0c, 0x22089348, 0x82343505, 0x011d210b, 0x0bb54018, 0x0c900124, 0x7d1898fe, 0xa0250e99, 0x540c0c54, 0x20008200, 0x224f8501, 0x18006000, 0x211317d3, 0x401814d0, 0x602308fb, 0x8320141c, 0x8204820d, 0x03002136, 0x2206d34b, 0x591100c0, 0x112706b9, 0x012b0614, 0x83263435, 0x33362504, 0x07163221, 0x320e5e55, 0x012b3407, 0x33011d22, 0x141c0002, 0xd0212f30, 0x8201141c, 0x2a41184c, 0x0c442e0c, 0x01fc0ce4, 0x14e0fe90, 0x2f21d01c, 0x206f8230, 0x0a215594, 0x0c0c3023, 0x207b8334, 0x227b8809, 0x181f000f, 0x250a834b, 0x008f007f, 0x0d440100, 0x013b280a, 0x15171632, 0x83012b14, 0x33352203, 0x0a0a6c32, 0x0fa5a582, 0x15332524, 0x216c2223, 0xae37200a, 0xa001230f, 0xce82141c, 0x60250484, 0x2a061206, 0x9704822a, 0x1efe2107, 0x062b1e9c, 0xfe900112, 0x1c1c1460, 0x82a00114, 0x0c4e2805, 0x30060606, 0x96660606, 0x820c2007, 0x8306201b, 0x9960201b, 0x82002008, 0xff013400, 0x01c0fffa, 0x00c001c6, 0x250000a7, 0x010f011e, 0x4f012f06, 0x2f23067f, 0x45171502, 0xc6620777, 0x6a991808, 0x4e352008, 0x2e240590, 0x07013f01, 0x83064f72, 0x013e250b, 0x2737011f, 0x28056053, 0x27013f36, 0x36013f26, 0x2006821f, 0x2827823e, 0x1f011e36, 0x26273502, 0x20138434, 0x07e25d35, 0x6a443720, 0x3f152207, 0x833e8301, 0x82372085, 0x0f162334, 0x0b831701, 0x010e2f08, 0x1707012f, 0x1f163637, 0x0f061601, 0x06b80101, 0x07100303, 0x0206210e, 0x060f0606, 0x3f13010c, 0x0b050535, 0x14040d05, 0x0720060a, 0x09821409, 0x05050c27, 0x02133f36, 0x081f820b, 0x07010620, 0x10070e21, 0x1a220e08, 0x04020607, 0x46070b01, 0x07464040, 0x0204010b, 0x221a0706, 0x4a85080e, 0x04050326, 0x0608040f, 0x36284c82, 0x0b0c0404, 0x0709140b, 0xea454b83, 0x214b8205, 0x4b830c01, 0x83060221, 0x0d07214b, 0x67334b94, 0x1b050d03, 0x1a14070d, 0x04020b06, 0x47060702, 0x45354e24, 0x13270503, 0x09090728, 0x85132807, 0x4e3625a6, 0x07064724, 0x0c2a8a82, 0x07141a06, 0x080d1b0d, 0xaa840713, 0x13020725, 0x82132525, 0x820f2039, 0x13072241, 0x821a8208, 0x2495834d, 0x06020104, 0x214f8704, 0x4f8c0c0c, 0x86350521, 0x9b43824f, 0x0100344f, 0xbfffffff, 0xc9010902, 0x00001400, 0x07061601, 0x4127010e, 0x2d0808ce, 0x3e373626, 0x28e00101, 0x58243014, 0x1708c025, 0x09083309, 0x240d15d7, 0xa0018931, 0x2431892a, 0x09d7150d, 0x17093308, 0x5825c008, 0x40823024, 0x08066346, 0x01a00127, 0x002a00c1, 0x1300003c, 0x06141516, 0x06161707, 0x2622012b, 0x022e013f, 0x36373435, 0x16151732, 0x023e3732, 0x21098235, 0x0a821716, 0x13220882, 0x5d6f012e, 0x06ae4305, 0x10d0373a, 0x010d2025, 0x0a400a0f, 0x150d010f, 0x0210111f, 0x0e01022c, 0x03040101, 0x07200883, 0x022e0a82, 0x222c792c, 0x19392a13, 0x0a0e0e0a, 0x1b820b38, 0x5fb12908, 0x0c372622, 0x0f0f0aee, 0x1d08ee0a, 0x5f221a2a, 0x028e100f, 0x3b470b02, 0x08101001, 0x8e020286, 0x23d3fe10, 0x26424c56, 0x2d05f360, 0x01000a10, 0xc8ff0800, 0xb901f901, 0xff822600, 0xb2183220, 0x36240fa6, 0x07263637, 0x3208c088, 0x3634013d, 0x0136011f, 0x43724300, 0x475f6791, 0x0828090a, 0x463f3008, 0x65010161, 0x2a304245, 0x86100c0b, 0x0b1e0e0a, 0xb8014724, 0x67437342, 0x82084091, 0x072a0821, 0x4745622a, 0x2c010163, 0x0e1e0b2a, 0x0c10860a, 0x0045240b, 0xff000005, 0x01c001c0, 0x000900c1, 0x00210015, 0x0045002d, 0xa14d1700, 0x15012508, 0x36321614, 0x26236f82, 0x96070622, 0x10a5470b, 0x3b363728, 0x011f3201, 0x43450120, 0x10012406, 0x82090e09, 0x8c602002, 0x40012106, 0x32091465, 0x0f070978, 0x09070f72, 0xfe500110, 0x1c1c14b0, 0x83e01401, 0x2004971c, 0x515918a9, 0x0d132409, 0x8200130d, 0x09ff5f00, 0x3a001c27, 0x26010000, 0x2db08223, 0x22012b06, 0x013e3726, 0x37173233, 0xd1731636, 0x2a108205, 0x16323305, 0x3316010f, 0x84013e32, 0x071625aa, 0x2223010e, 0x3306e47d, 0x31730136, 0x0e5b3a42, 0x06390a02, 0x89110107, 0x2448635a, 0x2c072f41, 0x1086d7fe, 0x312a0b0c, 0x30442642, 0x2b208e09, 0x472d3b01, 0x05090938, 0x24457357, 0x27077f41, 0x2a0b1e79, 0x2539212d, 0x0030168c, 0x10000200, 0xb601c0ff, 0x2200c001, 0x00003000, 0x2106cd58, 0x9d703736, 0x2b14240a, 0x7e161501, 0x02210669, 0x3cbf1816, 0x142e0809, 0x0132013b, 0x7aac7ab0, 0x0c1c4b65, 0x0c0c780c, 0x1b2c381c, 0x091c0809, 0x22011d09, 0x280507b0, 0x280c0705, 0x7a56900c, 0x754d567a, 0x0b82220c, 0x22270282, 0x091b2409, 0x82081c09, 0x62332923, 0x08080498, 0x000c9804, 0x022c0082, 0xfcff0000, 0x8401f801, 0x31001500, 0xe9618782, 0x086b4907, 0x16011f24, 0xdc180514, 0x3620070a, 0x080d6818, 0x08074150, 0xf101152f, 0x881e0ba8, 0x0a0e0e0a, 0xa80b1e88, 0x0cc8fe07, 0x38382854, 0x0c0c5428, 0x13130d54, 0xaf0c540d, 0x100c0ba8, 0x600a0e60, 0x10600e0a, 0x2722820c, 0x380caa14, 0x3828c028, 0x13249582, 0x130dc00d, 0xf4268788, 0x80010002, 0x87831b00, 0xa4712120, 0x82362007, 0x2b262388, 0x06822201, 0x24052a64, 0x16270614, 0x06fc7a14, 0x220a124a, 0x89a00117, 0x22828472, 0x8a070757, 0x206c8899, 0x227c8528, 0x821407c9, 0x2c988b1e, 0x00010000, 0x01c8ff07, 0x00b901f8, 0x420c8224, 0x3f3a0c2f, 0x26272601, 0x011e1706, 0x36373233, 0x0716011f, 0x26222306, 0x00013634, 0x19424764, 0x302a3608, 0x01654542, 0x3f466101, 0x28080830, 0x5f470a09, 0x01929167, 0x090a42b8, 0x012c2a29, 0x45476301, 0x82072a62, 0x4008271e, 0x0091ce91, 0x2f480400, 0x00302908, 0x00440038, 0x2500004c, 0x2605f843, 0x35262221, 0x83373634, 0x013b2104, 0x322b0585, 0x27343536, 0x16323336, 0x8a071415, 0x075e5205, 0x26361725, 0x8322012b, 0x363222a5, 0x078a6226, 0x1ac33508, 0xfe1e2a23, 0x232a1e90, 0x1e2a1d1a, 0x1a26160e, 0x0f2f2110, 0x38280609, 0x261a0606, 0x2a1e0e16, 0x131aedfe, 0x80131a13, 0xb0040501, 0x08010504, 0x253c383c, 0x23081184, 0x1b28044f, 0x1e2a2a1e, 0x1604281b, 0x132a1e23, 0x2f261a1d, 0x02151921, 0x110f2838, 0x131d1a26, 0x5b231e2a, 0x132a3882, 0x0704781a, 0x20150407, 0x0d846020, 0x2008bf62, 0x067f49a0, 0xd3823420, 0x2a064477, 0x36341135, 0x1415013b, 0x54253316, 0x15220d8d, 0xe5513404, 0x15072105, 0x07f0e918, 0xe001072f, 0x80fe141c, 0x141c1c14, 0x01212f10, 0x200c87b0, 0x31128201, 0x281cc0fe, 0x44281c1c, 0x08586001, 0x08288808, 0x3f552008, 0x14002605, 0x2f21d01c, 0x20338350, 0x220b8201, 0x8344141c, 0x601c2326, 0x27867030, 0x00820020, 0xfeff0432, 0x0102beff, 0x0d00c001, 0x21001900, 0x00002800, 0x47072248, 0x272505e9, 0x16011f36, 0x24138207, 0x36013f26, 0x37038216, 0x35020f26, 0x37170723, 0x2ef20135, 0x096f0809, 0x280e2e09, 0xe40e3c0e, 0xfe2b0b84, 0x120c7afa, 0x145c1602, 0x820a9a0a, 0x24242b03, 0x0140200c, 0x09092e32, 0x2782086f, 0x28212682, 0x270b841c, 0x0216fafe, 0x207a0c12, 0x27832382, 0x40306825, 0x82240c20, 0x0200218e, 0x07228f88, 0x8b821100, 0x79851720, 0x1416013a, 0x3727010f, 0x01173236, 0xeafe8023, 0x01100c72, 0x0ee5010d, 0x3980390e, 0x01217d82, 0x26138263, 0x0c10010d, 0x82290172, 0x2014830e, 0x874c820e, 0x00c1244b, 0x821f0009, 0x2143884b, 0x55821f07, 0x26060727, 0x013f3637, 0x06104927, 0x01323623, 0x244f87f2, 0xc55355bb, 0x2d638451, 0x66179851, 0x0c160c0b, 0x210b770c, 0x5b877601, 0x82542821, 0x2a6f841f, 0x66169851, 0x0b170b0b, 0x820c760c, 0x0d002d60, 0xf300dfff, 0x1300a001, 0x33370000, 0x0d747c18, 0x32013b36, 0x102ea815, 0x07560b0c, 0x0b560714, 0x0c2e100c, 0x1e660c38, 0x0d820e82, 0x2e011e2e, 0x01000c0c, 0x4d00ffff, 0x3301c001, 0x15203f84, 0x09ffb318, 0x21011d28, 0x14011d32, 0x2e8b8623, 0x4c8f9820, 0x82010021, 0x014d22f3, 0x393f82c1, 0x25000014, 0x1f363435, 0x06011e01, 0x2606010f, 0x2221013d, 0x3334013d, 0x41823a01, 0x0303052b, 0x1e0b5605, 0x0c0cd2fe, 0x224384e8, 0x820c0c05, 0x82918510, 0x22478242, 0x82e0ff0d, 0x83a120c7, 0x23133487, 0x013f2622, 0x011f3236, 0x012b0616, 0x012b1411, 0x8f583522, 0x1a01217a, 0x55839987, 0xff234384, 0x82dfffff, 0x00a1228b, 0x05f1423b, 0x20056848, 0x1f611827, 0x4637200d, 0x44180764, 0x2721074a, 0xf0481826, 0x06474a08, 0x0ec00132, 0x0c10700a, 0x6b6b240b, 0x100c0b24, 0x1e0e0a70, 0x1e200b85, 0x68201797, 0x3b8b23a2, 0x2005234d, 0x058f7501, 0x29001d25, 0x4d010000, 0x3b290a11, 0x32363401, 0x32331516, 0x0a1d5816, 0x47086757, 0x1c3207d2, 0x34265014, 0x1c145026, 0x0e0e14b6, 0x06480e14, 0x028206b4, 0xfe500131, 0x1c1c14a0, 0x14600114, 0x26261a1c, 0x82341c1a, 0x140e281b, 0x06061464, 0x41000614, 0x022505ef, 0x00330101, 0x230c821b, 0x011f3634, 0x4108cd45, 0x33220cfc, 0x5e417a01, 0x88f42007, 0x16012108, 0x410b4b42, 0x00200c90, 0x01280082, 0xbfff0d00, 0xc101f300, 0x82185b83, 0x35200cd5, 0x210cd041, 0x4698d615, 0x74914620, 0x57680020, 0x181a200c, 0x2309395e, 0x22231507, 0x2006406b, 0x06676d26, 0x91f80137, 0xce9191ce, 0x06084793, 0x08087306, 0x08060673, 0x0c400c47, 0x05546e01, 0x0f748423, 0x23158305, 0x0c740f05, 0x578f4682, 0x2607e17e, 0x34352327, 0x83010f26, 0x3d36295a, 0x3d323301, 0x67013401, 0x91205683, 0x3820408b, 0x538f6994, 0xd7521220, 0x33173306, 0x3f161415, 0x012f3601, 0x011d0626, 0x011d2223, 0x52909914, 0xa4b80121, 0x53362053, 0x37230633, 0x6d323335, 0x06290517, 0x15013b16, 0x32013b14, 0x20409408, 0x51699059, 0xc02509ff, 0x34001e00, 0x95621800, 0x26222109, 0x20052246, 0x06aa4932, 0x35211125, 0x6b333634, 0x2f210657, 0x080e4c01, 0x36262729, 0x07b00133, 0x42141c09, 0xa03f056e, 0x07090907, 0x09400190, 0x0e0a5807, 0xf3240b1e, 0x17071407, 0x24f40707, 0x80100c0b, 0x42800709, 0x09340792, 0x09072007, 0x0770c0fe, 0x0e400109, 0x0c10800a, 0x07f4240b, 0x14242982, 0x0b24f307, 0x28066776, 0x01c001e0, 0x000f00a0, 0x0d154323, 0x32213328, 0x22230716, 0x85821f06, 0x16011f2a, 0x1617013f, 0x34013d36, 0x0ea16118, 0x82705821, 0xc3202b53, 0x081f0909, 0x0b20c309, 0x61180e1e, 0x24220c94, 0x1b820b1e, 0x091f0822, 0x0c251b83, 0x0e0a7010, 0x050b4100, 0x0002f32b, 0x15008d01, 0x00002b00, 0x83f18311, 0x091b43f6, 0x26222123, 0x05114105, 0x43212321, 0x0e300c26, 0x1e68010a, 0x0707500b, 0xfe1e0b50, 0x010e0a98, 0x20054f6c, 0x25138798, 0x0a101801, 0x9182300e, 0x14075022, 0x0c262382, 0x8e0e3010, 0x138f0a0e, 0x20082f7b, 0x27f78280, 0x0031001c, 0x021e2500, 0x2307b147, 0x34373634, 0x32229183, 0x7a481716, 0x18362006, 0x820ef7ad, 0x183720a7, 0x3115d6c3, 0x0b08078b, 0x30070941, 0x0b410907, 0x0b6a0708, 0xc318dd0b, 0x692914e7, 0x07701407, 0x70070909, 0x52238314, 0x8ba50647, 0x260c8142, 0x32013b16, 0x95013d36, 0x8597208b, 0x886a2081, 0x208b9592, 0x2083844e, 0x2091876a, 0x08c76400, 0x01404c08, 0x000300c0, 0x000b0007, 0x00170011, 0x0100001d, 0x23272317, 0x23372117, 0x15230733, 0x06161733, 0x03210327, 0x3f272206, 0x06073301, 0x5ae60126, 0x45304565, 0x8045eafe, 0x65654550, 0x0105017b, 0x89180147, 0x43010401, 0x82db657b, 0xa0c0210d, 0x202f0083, 0x020302fc, 0xc2feff00, 0xfc420202, 0x820302ff, 0x0100276e, 0xbffffdff, 0x6f824501, 0x00001923, 0x05f24225, 0x013b3623, 0x9ddd1811, 0x152d0809, 0x16323311, 0x08683a01, 0x0a680814, 0x5440100c, 0x06380305, 0x0ac40806, 0x0c10400e, 0x08087038, 0x011d0b70, 0x05380410, 0xfe0a0e0f, 0x84ab82b8, 0x82c02053, 0x00c12153, 0xd6465382, 0x46062006, 0x5a85059f, 0x013f2627, 0x01173236, 0x294e833a, 0x08c40a0e, 0x03380606, 0x4e825405, 0x65830a20, 0x0b48012f, 0x0ab8fe1d, 0x38050f0e, 0x1d100104, 0x2c62820b, 0x00010000, 0x02c0ff00, 0x00c10140, 0x42b68226, 0x5283059f, 0x34013d26, 0x06222326, 0x08b38418, 0x210b356f, 0xd3186901, 0x30220a67, 0xbf431c14, 0x01e03207, 0x503f59c0, 0x0a0e0e0a, 0x2b2a1e50, 0x141c471e, 0x821c83c0, 0x40462104, 0x00215c82, 0x396b8202, 0x018001bf, 0x001700c0, 0x1700001f, 0x3435062e, 0x15163236, 0x07050e14, 0xed4a2206, 0x18ac2a07, 0x0b221a3d, 0xa070030d, 0xc5f31870, 0x42142d08, 0x2f422f2f, 0x24582336, 0x19221635, 0x0dcbf318, 0x1982f020, 0x87422f21, 0x01c0225f, 0x205f8260, 0x08a95c30, 0x0c9b9518, 0x21086b4c, 0x1b4d012e, 0x20ef8405, 0x05034416, 0x82333621, 0x82168383, 0x5e232091, 0x1520058e, 0x1422078e, 0x9a185001, 0x68291b88, 0x50383850, 0x0b0b5538, 0x22038755, 0x18090001, 0x2b22919a, 0xa02838a0, 0x28383828, 0x20081008, 0x28200386, 0x0326cf83, 0xc0ff0000, 0xcf824001, 0x17000f24, 0x555f2300, 0x078c5808, 0x08219418, 0x34113722, 0x15261382, 0x013b1411, 0xaa180132, 0x90230f79, 0x820cc80c, 0x0dfa5d02, 0x1320fe31, 0x1a13131a, 0x0c380159, 0x0cc8fe0c, 0x83070000, 0x80023470, 0x1d008001, 0x32002d00, 0x3f003700, 0x49004400, 0x18250000, 0x25082140, 0x35013b34, 0x29192306, 0x6b820821, 0x18011d21, 0x4508eb7b, 0x332b05f3, 0x26343313, 0x36323523, 0x4c122335, 0xbe1806bc, 0x013509d3, 0x40080860, 0x02100808, 0x08030403, 0x060f0402, 0x01080e07, 0xe7be1810, 0x50e82f10, 0x38503838, 0x251b7001, 0xa0254040, 0x31821008, 0x01370831, 0x02020e03, 0x040a0304, 0x13e05808, 0x83c0fe0d, 0x40013235, 0xb0fe130d, 0x25a0251b, 0x4200ff1b, 0x5c42425c, 0xfabe1862, 0x02002d08, 0xb9fff9ff, 0xc7018102, 0x28000d00, 0x3622c582, 0xbb851737, 0x36013f2c, 0x011e0517, 0x2706010f, 0x0c832601, 0x37360122, 0x08064054, 0x14151633, 0x0f0c0107, 0x95795013, 0x05180413, 0x0c107013, 0x02059f01, 0x0c0a1404, 0x090cb3fd, 0x010d0a14, 0x3c111d61, 0x0830070e, 0x65136813, 0x3e0b0743, 0x08088257, 0x07300821, 0x0d04890e, 0x0a0c1a05, 0x0d0ac601, 0xfe090c19, 0x322524ee, 0x1270110b, 0x13041805, 0x820080a0, 0x05cb4100, 0xcb418020, 0x612b2006, 0xe15f2d21, 0x5faa200b, 0xd05f21d7, 0x01200813, 0xdcffffff, 0xa5010002, 0x00002000, 0x16363713, 0x041e011d, 0x07061415, 0x3e372606, 0x27042e01, 0x08069246, 0x0cb0083b, 0x4c50341c, 0x23301e32, 0x0904150b, 0x1e150706, 0x1c22362e, 0x0108b00c, 0x0d0a9802, 0x0901500f, 0x2c422919, 0x0819552c, 0x321f0c0e, 0x0d131d26, 0x0f580105, 0x07980a0d, 0x05834316, 0xbcff1024, 0xe782f001, 0x001a5d08, 0x0100001f, 0x1415011e, 0x0607030e, 0x35032e27, 0x3f033e34, 0x17323601, 0x37013e03, 0x0ed20127, 0x3d2e1e10, 0x12121c39, 0x27404d2a, 0x09070503, 0x1408c006, 0x634b1208, 0x6c01b002, 0x3f0f1805, 0x29435373, 0x1108080b, 0x47825f43, 0x080a0b06, 0x04500207, 0x2546fe04, 0x004a6ca2, 0x43092b63, 0xa9580d1b, 0x077f4208, 0x34113722, 0x15261382, 0x21331411, 0xad180132, 0xd02810e5, 0x0cb8fe0c, 0x0c48010c, 0x201e1e43, 0x090f6100, 0x1e000d35, 0x2e002600, 0x4c004200, 0x00005400, 0x15163212, 0x82060714, 0x26272663, 0x22253435, 0x2af0820e, 0x3f323316, 0x36373401, 0x18012e31, 0x2007ec4c, 0x060e4336, 0x2e362528, 0x06262702, 0x2783010f, 0x36331724, 0x6a183435, 0x2323073c, 0x86160722, 0xeea93f24, 0x120927a9, 0x091244fe, 0x09200127, 0x0d13090e, 0x02090909, 0xd8100301, 0x1a13131a, 0x05844313, 0x0117013a, 0x04070401, 0x3d03120a, 0x6e092319, 0x0a4c1709, 0x13130d11, 0x2e06050d, 0xa02a1f85, 0x434e77a9, 0x4e430f0f, 0x43826977, 0x06130d2a, 0x0203011c, 0xe0fe0d0b, 0x340a0f6c, 0x080a0535, 0x09030206, 0x2502b809, 0x0f0f1119, 0x7f131d11, 0x211f820f, 0x2484de02, 0x03000023, 0x23008200, 0x80014002, 0x1f2c0982, 0x00002f00, 0x21152113, 0x33161424, 0x21065a48, 0xb383013d, 0x6e352321, 0x1d2405e1, 0x34272201, 0x08ab5b18, 0x32213331, 0x01803536, 0x01c0fe40, 0x1c141c90, 0x8220fe14, 0x831c2004, 0xe0012109, 0x4c340982, 0xb0fe0a0e, 0x0a0e0e0a, 0x0e0a5001, 0x74c02001, 0x14601c28, 0x60211e82, 0x2008871c, 0x201d8338, 0x5c0483d0, 0xc020086b, 0x22531819, 0x54783c28, 0x10547854, 0xca654b35, 0x354b2605, 0x234c2337, 0x251282a0, 0x4b747854, 0x63831035, 0x10211c82, 0x5ada8410, 0x0124059f, 0x000f00a0, 0x22129543, 0x78372701, 0x035b1836, 0x434c290c, 0x28090943, 0x42420909, 0x0d8c0684, 0x210d8864, 0x2393defe, 0x31850920, 0xff020031, 0x01d9fff9, 0x00a701c7, 0x00270013, 0x4e013f00, 0x06240d59, 0x0126012f, 0x280e8b4e, 0x16011f36, 0x0b216305, 0x05644e0c, 0x0c631f27, 0x010c190b, 0x24118fc2, 0x0b1f6315, 0x053f4e1e, 0x0c632127, 0x010b190c, 0x20118f62, 0x9f441800, 0x0013250b, 0x37000028, 0x93876b92, 0x1d011e24, 0x90821401, 0x03820720, 0x5dd52622, 0x5d258089, 0x0b1a0b0b, 0x2510850b, 0x1e060b07, 0x11841f0b, 0x895d8521, 0x20108480, 0x2710836b, 0x70070b06, 0x210b0c10, 0x00211184, 0x097f6500, 0x00202f08, 0x002c0026, 0x17162500, 0x27222306, 0x06273736, 0x37342607, 0x26371716, 0x17323627, 0x36170706, 0x07141637, 0x36252726, 0x07160727, 0x18820637, 0x01373f08, 0x48211370, 0x20486464, 0x1c111d14, 0x101c3636, 0x4820131d, 0x132048c8, 0x361c101d, 0xfe111b37, 0x1f1919ff, 0x19f61516, 0x16151e19, 0x461f2754, 0x0e271f46, 0xae441c21, 0x0f211b44, 0x0e821e26, 0x210e2623, 0x270e831b, 0x4d4d1222, 0x9043430a, 0x42250582, 0x00000044, 0x08176608, 0x0a000429, 0x15000f00, 0x83001b00, 0x002b28a1, 0x07061300, 0x82173627, 0x171622a1, 0x22978205, 0x82270536, 0x829f82a5, 0x252721af, 0x06221682, 0xa6821725, 0xaf823620, 0x06172108, 0x4e2a02d4, 0x392e6935, 0xfe3f5301, 0x4d374ea2, 0x2e3c010a, 0x6204349e, 0x02382e96, 0x5e013f53, 0xfe211283, 0x201284c4, 0x372a83ba, 0x374db601, 0x2eca2c4e, 0x34046246, 0x022a4e22, 0x9e2e9745, 0x2c02533f, 0x0121108e, 0x822683eb, 0x040021a6, 0x210cbf66, 0xc1660017, 0x075d440a, 0x07e58b18, 0x91220f87, 0x028291ce, 0x131a6b25, 0x53131a13, 0x102005fd, 0x4a4e0b84, 0x82272006, 0x1a132216, 0x2012845a, 0x081770b0, 0xf3540520, 0x003b2c08, 0x00730053, 0x0093007b, 0x54273700, 0x005705e3, 0x34352307, 0x145d013b, 0x3233250a, 0x0f141516, 0x07145c18, 0x14012b25, 0x18362317, 0x2107b2a7, 0xd7571733, 0x013d2408, 0x5b013f34, 0x272009b8, 0x09bff218, 0x07864f87, 0x17224b82, 0xbf773723, 0x2b3f9706, 0x0901224a, 0x08183907, 0x10081808, 0x08270382, 0x09073918, 0x600a2201, 0x80220525, 0x08831010, 0x0909b724, 0x0882e007, 0x0709172e, 0x740907a0, 0x1a060b19, 0x36061906, 0x1a2b0382, 0x03190b06, 0x09202f7e, 0x8277090e, 0x85c02024, 0x07802924, 0x035af009, 0x20090703, 0x06825386, 0x07092027, 0x095a0303, 0x23508207, 0x413f3f41, 0xfc230884, 0x82160a04, 0x16072431, 0x840c040a, 0x92102968, 0x3b0e0a15, 0x1a1a0606, 0x3b270385, 0x52150a0e, 0x82202050, 0x90a32024, 0x05f3442b, 0x0140012e, 0x002300c0, 0x37000033, 0x2e373634, 0x35071841, 0x07061415, 0x06071716, 0x16011f14, 0x16013f32, 0x15071415, 0x614e3523, 0x05ea4a09, 0x4708333c, 0x130e0b2a, 0x130d400d, 0x21260b0e, 0x0c02026c, 0x64020702, 0x38c0381b, 0xd5182801, 0xa0300979, 0x03228a35, 0x130d0b11, 0x110b0d13, 0x6c3d1f03, 0x0c2d2482, 0x3c650202, 0x2c11432b, 0x095d112c, 0x83a18307, 0x20002104, 0x4d08f741, 0x0f280547, 0x17001300, 0x1f001b00, 0x8118a382, 0x25080925, 0x003f003b, 0x00470043, 0x004f004b, 0x00570053, 0x005f005b, 0x00670063, 0x006f006b, 0x00770073, 0x007f007b, 0xb0820100, 0x15330724, 0x07823723, 0x07821320, 0x03822720, 0x06821383, 0x07833520, 0x35230524, 0x03823533, 0x33350324, 0x07821315, 0x07820120, 0x15210682, 0x20078233, 0x20248225, 0x200c8201, 0x840b8207, 0x20078243, 0x830b8627, 0x202f831b, 0x200f8213, 0x20238227, 0x832b8237, 0x82272023, 0x35052467, 0x82251533, 0x82172007, 0x00012613, 0x4040c040, 0x83018280, 0x80012107, 0xfe230582, 0x820140c0, 0x23158313, 0xfe404040, 0xc0211283, 0x21148240, 0x0e820140, 0x80201584, 0x40220884, 0x0d8400ff, 0x4185c020, 0x40214283, 0x834f8240, 0x8708822a, 0x20258242, 0x82168380, 0x830a8233, 0x8238842b, 0x86fe204c, 0x896f8247, 0x83138285, 0x821e8339, 0x82028207, 0x854a8431, 0xcbb618a2, 0x0035250c, 0x16322100, 0x0b9b5e18, 0x43013321, 0x2120055e, 0x271d8443, 0x09079001, 0xa0fe0709, 0x01320583, 0x01130d70, 0x4ad6fe4a, 0xa00d1301, 0x28080828, 0x03823008, 0x41280821, 0x012c09ef, 0x050d1320, 0x05d6d605, 0x30130d05, 0x06821d86, 0x69003021, 0x8031053f, 0x2500a001, 0x3d002d00, 0x26370000, 0x3f34013d, 0x597c8301, 0x212d05e4, 0x36341535, 0x3d36013f, 0x0f060701, 0x23028301, 0x34272223, 0x8206076c, 0x3fbb8cab, 0x09071313, 0x940c020e, 0xc0fe714f, 0x1b391418, 0x09030a16, 0x060c0f04, 0x10060706, 0x0c100c0c, 0x8406ad42, 0xb02008b5, 0x0a891508, 0x041c0907, 0x50700c04, 0x18010fc0, 0x0d1d0a26, 0x050b321e, 0x060f1e0b, 0xa3020205, 0x0c232f82, 0x89ccfe10, 0x000021c5, 0x21084b43, 0x4b4300a0, 0x012e2105, 0x22067b4e, 0x18330706, 0x21090575, 0xae822317, 0x3b432320, 0x41172006, 0x69310e5f, 0x563d1b16, 0x19161b3d, 0x07090907, 0x18b01810, 0x08db5c10, 0xe15cfe20, 0x2f0e2905, 0x3d3d2b1b, 0x0e2f1b2b, 0x05257b84, 0x502b2b50, 0x200a8405, 0x388c8be0, 0xffffff03, 0x010002c0, 0x000700c0, 0x00490017, 0x26220000, 0x16323634, 0x06225314, 0x34076b4f, 0x15160133, 0x21010f14, 0x34352627, 0x1736013f, 0x33323316, 0x0600443e, 0x011e1722, 0x2209f75c, 0x83161415, 0x36372a1c, 0x2e170117, 0x212e2121, 0x0ae34178, 0x07a92c08, 0xd0fe6602, 0x1d070266, 0x180e0a0c, 0x1a130102, 0x0b270508, 0x111b0302, 0x020e140b, 0x05270b02, 0x05111608, 0x0a0e1804, 0x8250010c, 0x2e21233b, 0xad898ffe, 0x08012408, 0x04040805, 0x0304d3d3, 0x08100509, 0x1e01130d, 0x0a080514, 0x110a1610, 0x05080a0b, 0x01031d12, 0x4c080d13, 0xa0340adf, 0x2b002300, 0x00003b00, 0x1d163201, 0x17140701, 0x27353621, 0x2008cc45, 0x28098c33, 0x34350333, 0x1d062226, 0x0f694101, 0x07700132, 0xfe0d4009, 0x09400de6, 0x09073807, 0x50070930, 0x58230584, 0x66131a13, 0xa0300509, 0x07090907, 0x0709a001, 0x4a5620b0, 0xb020564a, 0x09785318, 0x0730302c, 0x40e0fe09, 0x0d13130d, 0x03428040, 0x0003300c, 0x02e0ff00, 0x00a00180, 0x002f0017, 0x18000053, 0x630adc64, 0x36220a81, 0xf34e0533, 0x19152005, 0x220d9001, 0x1827011d, 0x21072d44, 0x2f822622, 0xdd831e90, 0x0a683330, 0x300a0e0e, 0x08180e0a, 0x0a0e1808, 0x06844002, 0x14840f82, 0x1c869820, 0x0d848020, 0x0a820484, 0x0e600125, 0x83f0fe0a, 0x0868231a, 0x40820830, 0x06858020, 0x010a0e23, 0x20158410, 0x201f82c0, 0x21098370, 0x0583a8a8, 0x87900121, 0x4700200b, 0x21080aef, 0x000d0006, 0x00510015, 0x17160100, 0x16171627, 0x17272601, 0x27262726, 0x1737013e, 0x1307010e, 0x90562707, 0x56079005, 0x172505ff, 0x36013f16, 0x8e2b822f, 0x2a138207, 0x0de20126, 0x33369d01, 0x8534fe1e, 0x11122407, 0x82d86798, 0x1d663303, 0x0c05061c, 0x171d0505, 0x0b06061c, 0x161c0606, 0x0784051d, 0x05200e84, 0x01291d9c, 0x9d353484, 0xfe080e01, 0x2407855b, 0x0f916fc6, 0x220382d9, 0x841c5401, 0x1c06253d, 0x05051d17, 0x07835483, 0x06050c23, 0x205b8d1c, 0x88258a16, 0x6100201d, 0xa0390607, 0x1500c001, 0x2d002300, 0x42003800, 0x33370000, 0x012b0614, 0x011d0622, 0x05865e14, 0x06822620, 0x14252626, 0x2307020e, 0x2a060844, 0x35363207, 0x06162734, 0x82171627, 0x010e2706, 0x32331627, 0x11853736, 0x60290982, 0x100d13e0, 0x280c130d, 0x3e07840c, 0x1a0e4001, 0x2ddc1624, 0x7aac7a35, 0x16130eb4, 0x08141d07, 0x0b051648, 0x17080d17, 0x8440130e, 0x2808820f, 0x13130d20, 0x0c0c140d, 0x3e078214, 0x2c351bdd, 0x5d1c0e26, 0x7a7a5637, 0x170e1382, 0x071d1408, 0x08172f16, 0x040a170d, 0x854d1416, 0x0014230f, 0x00820002, 0x0100022b, 0x00070080, 0x3c000012, 0x059d6a01, 0x011e272d, 0x14153736, 0x35262206, 0x8296d496, 0xc9372302, 0x068237c9, 0x3850f83b, 0x0e385038, 0x281e1e28, 0x3838286e, 0x00030028, 0x02bdff00, 0x00c70187, 0x32ff8217, 0x25000035, 0x030e1417, 0x2f010e07, 0x013f3601, 0x820f2636, 0x013e2347, 0x53580533, 0x34352605, 0x1613023e, 0x058c650f, 0x37277108, 0x011f013e, 0x01173637, 0x0d035700, 0x1b101d0f, 0x04353685, 0x06035f07, 0x1d193c04, 0x011c511b, 0x2e2e2209, 0x160c2e43, 0x0c0a9e1d, 0x040322e8, 0x19563b06, 0x22040c03, 0xe70a0de8, 0x280f046d, 0x150d2a24, 0x17020211, 0x07047020, 0x174a1601, 0x2f881416, 0x212f2f42, 0x0c161d11, 0x0a0d4101, 0x0c052bb1, 0x376d0c01, 0x2b040105, 0x000c09b2, 0x01200082, 0x0b45af82, 0x00033205, 0x11210500, 0xfe000221, 0x40000200, 0x00000002, 0x064b6403, 0x0a00c026, 0x27001f00, 0x262fcb82, 0x37270706, 0x1e173236, 0x15060701, 0x58261714, 0x2e230b4c, 0x85043701, 0x342908d5, 0x7130f001, 0x3f38d422, 0x182f3fb2, 0x290b06f2, 0x0659241d, 0x06350611, 0x1d236707, 0x3e011509, 0x50383850, 0x14209838, 0x2c23822f, 0x89812f3f, 0x1a1d1216, 0x67241c05, 0x27238207, 0x23590611, 0xa422511d, 0x25082182, 0x00005038, 0xfffdff06, 0x01f801c8, 0x000900bd, 0x001a0011, 0x002d0025, 0x3700003b, 0x2607010e, 0x37013e27, 0x09832716, 0x16373628, 0x26272617, 0x99833627, 0x36171626, 0x06070637, 0x072e0d82, 0x23063716, 0x13362722, 0x1c15021e, 0x0b821501, 0x36317508, 0x4b35e726, 0x11152412, 0x24154460, 0x0f195f3e, 0xd2234547, 0x5a033037, 0x34343330, 0x29534c84, 0x461e0c28, 0x33213e92, 0x5b458b76, 0xca0a3b46, 0x2c2a4b30, 0x2706012d, 0x3d6321cd, 0x72472e23, 0x1e4f3220, 0x90513f63, 0x06cd1f26, 0x0e5d821b, 0x558b3206, 0x0a010128, 0x1a152931, 0x52472c2b, 0x2f243b14, 0x44118e01, 0x0401355f, 0x83450e01, 0x08000000, 0xbf34c382, 0xc001c001, 0x42003a00, 0x52004a00, 0x62005a00, 0x72006a00, 0x1807f155, 0x240e664b, 0x32363435, 0x08bb7116, 0xd9500b97, 0x085e4c0f, 0x8706c450, 0x23178f0f, 0x131a9301, 0x0d104e18, 0x46191820, 0x08250eb3, 0x0ed70810, 0x05646409, 0x136d0582, 0x850e8505, 0x05676d0b, 0x01270585, 0xb00d1350, 0x18711416, 0x2108374e, 0x4619f121, 0xfe2118a0, 0x204584e3, 0x20058457, 0x200b8a89, 0x6c0b8429, 0x772005fd, 0x00200b84, 0x07200082, 0x20360382, 0x60018002, 0x13000900, 0x1f001700, 0x2f002700, 0x00003700, 0x6f573411, 0x01352106, 0x2308e35a, 0x11211101, 0x2007695d, 0xa35c1806, 0x330f880e, 0x1a60601a, 0x1a400226, 0x601a2626, 0x0001e0fe, 0x0e0e1446, 0x6e200287, 0x01320b8a, 0xfe261a20, 0x011a26c0, 0xc01a2600, 0x4001261a, 0x0383c0fe, 0x2c84e820, 0x05845220, 0x0b8a6e20, 0x23075f54, 0xc0010002, 0x1239ab82, 0x00001c00, 0x23173001, 0x1e323335, 0x15271701, 0x37313623, 0x0733013e, 0x06b45121, 0xfe013532, 0x0b8def01, 0xdb030e12, 0x053301ef, 0x02631019, 0x3606f676, 0xc0070701, 0x210a0f08, 0x0f9807c0, 0x14f0e012, 0x00141c1c, 0x58000300, 0xc0260523, 0x29001400, 0xe95b3e00, 0x06275808, 0x013b3627, 0x35173715, 0x05364925, 0x53490c85, 0x07232106, 0x860c5158, 0x30022129, 0x24083849, 0xfe202050, 0x820d83d0, 0x18502008, 0x20081146, 0x211186e0, 0x221909a0, 0x15230954, 0x84406015, 0x8260200e, 0x85088409, 0x8713880e, 0x010029a7, 0x001900a0, 0x0039001d, 0x200fbd6c, 0x09554e3b, 0x33152725, 0x18351735, 0x51195a4b, 0x502c0bdb, 0x14a0141c, 0x2080c01c, 0x30083808, 0x06860382, 0x1c400123, 0x093c6c14, 0x1c143029, 0x2030141c, 0x8af82020, 0x38082122, 0x2b06774a, 0x00c00180, 0x0013000a, 0x011e1300, 0x0805c545, 0x1236342b, 0x34353632, 0x14150627, 0x6b6b55c0, 0x2c6a6baa, 0x60603654, 0xa54dc001, 0x76765e3a, 0xfea53a5e, 0x382a358d, 0x2a386969, 0x05b74800, 0xd7824720, 0x25001d2a, 0x00002f00, 0x07061625, 0x2005cd56, 0x294d8427, 0x3634013d, 0x17163233, 0x06823736, 0x46181720, 0x053f073d, 0x23262737, 0x010e0722, 0x1b2b0217, 0x241d2710, 0x0783223c, 0x425c4206, 0x402d2e42, 0x831d0d02, 0xf8fe3a10, 0x011c281c, 0x0f415223, 0x120c101b, 0x27940c07, 0x31151b5d, 0x950f0abb, 0x2a26822e, 0x3e422ee0, 0x1514212c, 0x83708f31, 0x2d7028de, 0x09165d3a, 0x4911290c, 0xc0260aef, 0x1d001500, 0x6b412d00, 0x36342412, 0x43151632, 0x17200711, 0x210c4553, 0xd1563716, 0x26502c0b, 0x14362634, 0x0e140e0e, 0x18090961, 0x210ca74a, 0x5a5a8001, 0x07896007, 0x25821820, 0xda140e26, 0x081d0809, 0x0aa24a18, 0x08248f82, 0xc0ff0000, 0x20080b61, 0x26918225, 0x00410035, 0x9759004d, 0x0fbe4499, 0x2007a055, 0x06bb4336, 0xa3181320, 0x3d220aca, 0xa1783401, 0x20c58f14, 0x0ac243aa, 0x0e21a884, 0x20118482, 0x11ce7668, 0xfe21da91, 0x0ad14398, 0x2005e343, 0x271184b2, 0x08109efe, 0x68081008, 0x0022058a, 0xef830700, 0x01800223, 0x2a0982c0, 0x0033000f, 0x0043003b, 0x185b004b, 0x18091fd1, 0x2f076b6a, 0x36262705, 0x16373637, 0x33363536, 0x16061732, 0x17300a82, 0x010f011e, 0x2627010e, 0x35231527, 0x26060706, 0x18077c66, 0x4c095b61, 0xaf5e058f, 0x05da4308, 0x01333108, 0x09090ef7, 0x489c090e, 0x34483434, 0x0712a4fe, 0x120b0c05, 0x4a563718, 0x2005453c, 0x171c0e2f, 0x1207040d, 0x320a1a07, 0x3138e037, 0x37011a0a, 0xd844fd84, 0x84b12005, 0xf001273a, 0x07090907, 0x0583a0fd, 0x4a82c020, 0x470e0922, 0x23084a82, 0x1bf04834, 0x06081c09, 0x1f19140a, 0x23191620, 0x0e0d1603, 0x1b091c08, 0x1e06050b, 0x135b5b13, 0x1f05061e, 0x200af444, 0x20388406, 0x0cdb4bc9, 0xffff0438, 0xc101bfff, 0x3c00c101, 0x47004100, 0x00004d00, 0x37033e15, 0x3f55032e, 0x17230805, 0x36211716, 0x013b3637, 0x0e071632, 0x07060704, 0x36272633, 0x17021e37, 0x012b0616, 0x27262722, 0x83070621, 0x26250809, 0x23373613, 0x16213716, 0x03363317, 0x23272621, 0x200e0306, 0x422d2d42, 0x01030e20, 0x0e20070a, 0x01020202, 0x34048238, 0x0a07200e, 0x1e0a0201, 0x2c314d2a, 0x040d7f22, 0x392a1b20, 0x25228411, 0x0301010f, 0x2286c8fe, 0x24e13708, 0xa71c801c, 0x0c09fafe, 0x01fd0cdc, 0xdb0d0805, 0x2f152e0c, 0x1d1d4944, 0x152f4449, 0x080e0b07, 0x0e080a0a, 0x2812070b, 0x1940393f, 0x020c1d16, 0x5a241311, 0x19821a38, 0x090c0630, 0x010b0e09, 0x18181419, 0x10101068, 0x0482d0fe, 0x00002708, 0xff000003, 0x014202b9, 0x001500c0, 0x003d0035, 0x26272500, 0x013f013e, 0x37273717, 0x1f021e36, 0x0f061601, 0xd6822601, 0x0e010f28, 0x012e2701, 0x71182627, 0x17260b24, 0x37171613, 0x8f181636, 0x013708dc, 0x01013526, 0x213e0406, 0x033d213d, 0x01040606, 0x0606023c, 0x82fe17a1, 0xd54f0805, 0x1d2d4401, 0x2c08052b, 0x0907595c, 0x17700709, 0x1c2d6407, 0x020c06d6, 0x1c28b7fe, 0xaa1c281c, 0x070804a0, 0x14631401, 0x01011563, 0xb5030502, 0x35020c07, 0x0b072911, 0x382c4703, 0x1e2c0508, 0x15012337, 0x07200709, 0xd6fe1609, 0x82472401, 0x82a82052, 0x281c2236, 0x05134500, 0x82800221, 0x001427c3, 0x37000042, 0x2f622622, 0x37152405, 0x4d333517, 0x23200562, 0x2106124e, 0x4418012b, 0x37210760, 0x83098923, 0x06a54f30, 0x83013b21, 0x83d02030, 0x309023a2, 0x07839030, 0x09237282, 0x82035307, 0xc603216c, 0x53230584, 0x7b300907, 0x80290617, 0x00010709, 0x20800907, 0x20098220, 0x200982ff, 0x27a28440, 0x1c140709, 0x0808141c, 0x01210789, 0x22188670, 0x5b0090fe, 0x082b09bb, 0x36001a00, 0x16010000, 0x8223011d, 0x071724aa, 0x653b1614, 0x13200d74, 0x23195346, 0x07790135, 0x100a8d18, 0x54464020, 0x1857200e, 0x2012008d, 0x097446d8, 0x3f410982, 0xc0012706, 0x2f00c001, 0x8d823800, 0x3d33848a, 0x16173301, 0x17013f32, 0x34363233, 0x27012b26, 0x820f2226, 0x6b2b2004, 0x3525067c, 0x013b3634, 0x22bd8717, 0x180e2001, 0x2b07948d, 0x0a022346, 0x5a163902, 0x07090907, 0x142a0b85, 0x088d0502, 0x0a0e3808, 0xb58499c8, 0x0a380132, 0x0ab8fe0e, 0xa80a0e0e, 0x72040446, 0x090e092c, 0x28280783, 0x08100804, 0x690e0ae8, 0x0020b784, 0x260a376a, 0x000d0009, 0x49330029, 0x17280b2d, 0x25112111, 0x013b1415, 0x32200383, 0x18061765, 0x5e0ade52, 0x2b2d064d, 0x141c1101, 0x1c143030, 0xff400180, 0x0e204100, 0x1c145022, 0x01251c82, 0xfe1c1470, 0x22088340, 0x4740fec0, 0xc0200d72, 0x23053346, 0x0800c001, 0x2e08b748, 0x00250019, 0x003d0031, 0x00650049, 0x467d0071, 0x98501213, 0x45012008, 0x172016f7, 0x37201796, 0x461a4548, 0x02331743, 0x09130d20, 0x07e0fd07, 0x800d1309, 0x0dc00d13, 0x6d00ff13, 0x058505e2, 0x0c8ba020, 0x1a061024, 0x03821406, 0x90200686, 0x012d1b8b, 0xfe0d1360, 0x09090790, 0x0d700107, 0x05f35013, 0x28acfe23, 0x1923820c, 0x20118b02, 0x23458ab6, 0xdcfe1a06, 0x5342268a, 0x00022a06, 0x0700c001, 0x00002300, 0x06494d12, 0xf5860520, 0xfd8c2320, 0x14153325, 0x4e32013b, 0x01250588, 0x08300870, 0x86038260, 0xc0012106, 0xe2271784, 0x580808f0, 0x85080858, 0x05174206, 0x4002c022, 0x13265f82, 0x2e001b00, 0x83413800, 0x33152212, 0x08e77e35, 0x250d217e, 0x33160607, 0x84821513, 0x77823620, 0x40181620, 0x90280b0c, 0x263446c0, 0x1d263426, 0x2a0d147e, 0x080a0204, 0x0d13809d, 0x47130d40, 0x60220d69, 0x2d82a060, 0xba342624, 0x0a7e070d, 0x070d2b05, 0x60a0010d, 0x13130d60, 0x43480400, 0x0039220c, 0x48a39245, 0x13200cd5, 0x481afb41, 0x27480b33, 0x05ed480f, 0xd9424820, 0xb008220d, 0x8d028208, 0x261a23ad, 0xf2481a26, 0xdefe2105, 0x270c574a, 0x080810c8, 0x00000810, 0x4b45b385, 0x00382706, 0x0040003c, 0x884b3700, 0x23172213, 0x07934b15, 0x06632120, 0x06434508, 0x49563320, 0x35052406, 0x82211523, 0x07902803, 0x70070909, 0x83704040, 0x30802207, 0x09b24730, 0x02210b85, 0x2a118260, 0x01a0a9fe, 0x09c0a080, 0x4507e007, 0x0883064e, 0x22074e45, 0x8b090720, 0x8240200a, 0x2fab8500, 0x014402dc, 0x000b00a0, 0x001d0013, 0x12000027, 0x84051f4c, 0x54172091, 0x372a060d, 0x06071617, 0x3e37022e, 0xd26d1e01, 0x36372405, 0x82425c42, 0x1ca03c02, 0xd2ec1c28, 0x762f0707, 0x06220854, 0x230953c3, 0x06d30705, 0xa0012f07, 0x4ae02e42, 0x9e2005af, 0x2b05a84a, 0x0507d31e, 0x76530923, 0x5437072f, 0x07240482, 0x220607d2, 0x2c06e342, 0xc0018001, 0x31002100, 0x35130000, 0x062f6b21, 0x27098944, 0x013d3233, 0x35012b34, 0x23210784, 0x0e015637, 0x4001202c, 0x00ff0d13, 0x0878130d, 0x03867808, 0x0e0ad022, 0x2b08c75e, 0xa0fe4000, 0x0d13130d, 0x08100840, 0xc0220387, 0xfd530a0e, 0x4b002007, 0x0f250c37, 0x35001900, 0x05275500, 0x8205476f, 0x3336227a, 0x08b37313, 0x29453720, 0x6801211a, 0x08207689, 0x4b469587, 0x237a8a0f, 0x600120fe, 0xc5209b84, 0x200c4642, 0x05db4600, 0x01800229, 0x002300c1, 0x4d47003f, 0x21200edb, 0x2115e354, 0xca712227, 0x011f3405, 0x1f323637, 0x16323301, 0x012b0614, 0x22060727, 0x5602012f, 0x022106cb, 0x2b691810, 0x09c03512, 0x08088807, 0x1402058d, 0x04140432, 0x0907661c, 0x167a0709, 0x4c290b84, 0x34262634, 0x2e42e026, 0x09ca55a0, 0x83600121, 0x90f0310b, 0x08800907, 0x28040810, 0x37090963, 0x2c090e09, 0xff210783, 0x222e8200, 0x43003426, 0x49260c03, 0x59005100, 0xc58a5e00, 0x22061425, 0x83233526, 0x08e44105, 0xc282bc86, 0x20071647, 0x210b8232, 0x17852123, 0x2008c960, 0x2ad98233, 0x04011d16, 0x26343632, 0x87140622, 0x35372607, 0x02152327, 0x23a48470, 0x80385038, 0x98260382, 0x08d00808, 0x0587f008, 0x0982fe20, 0x141c3825, 0x18140001, 0x83244ee4, 0x05e564da, 0x30280588, 0x141c1c14, 0x0e640e30, 0x145ee418, 0x4b060021, 0x0b2a08fb, 0x33002300, 0x4e003700, 0xa9655a00, 0x0333240c, 0x541d011e, 0x415d08ec, 0x03142109, 0x240ed142, 0x15233505, 0x8a2b8a01, 0x6517202a, 0x332a09f8, 0x08087802, 0x1f080830, 0x06822e29, 0x1d1f2422, 0x70240582, 0x07090907, 0x2605d971, 0x01b06001, 0x821e1a08, 0x3c242114, 0x58200482, 0x60202b84, 0x0805f34c, 0x1b090126, 0x081e3157, 0x42261e08, 0x3e251314, 0x0b3e0808, 0x0709f1fe, 0x1c090780, 0x1c144014, 0x01404070, 0x21391242, 0x2c242183, 0x42412a19, 0x2c212082, 0x353a85ee, 0xfcff0200, 0x0402bcff, 0x1f00c401, 0x00003e00, 0x07173713, 0x12442f06, 0x013f2505, 0x013f2627, 0x240cb356, 0x0f163727, 0x201f8301, 0x20078417, 0x231f8203, 0x37021f36, 0x363b2783, 0x8840ca17, 0x40261bb6, 0x0c050642, 0x07430505, 0x381a1b04, 0x060b0605, 0x852d3706, 0x05fd2107, 0x062b1882, 0x06492d1c, 0x05062206, 0x85118811, 0x2d392307, 0x2682061c, 0x11010529, 0x1cb58841, 0x84430705, 0x40422526, 0x381b1b26, 0x06221883, 0x07842e37, 0x84950521, 0x2d1c234d, 0x3f82054a, 0x3f830620, 0x06220525, 0x82381106, 0x2958823f, 0x04000005, 0xc0ffffff, 0xcb828402, 0x000b2308, 0x0024001a, 0x1200002e, 0x16171632, 0x22212306, 0x05363526, 0x0e151632, 0x2e222301, 0x36342702, 0xf8440033, 0x45072008, 0x362e060b, 0x095b7864, 0xfe030601, 0x090503d0, 0x04822f01, 0x1e3c5b34, 0x051c2a37, 0x1f020305, 0x05230954, 0x0707d307, 0x0483462f, 0x0e837620, 0x4d000129, 0x0606033a, 0x82633a03, 0x154d2c03, 0x031d3124, 0x546b0106, 0x82072f76, 0x23052128, 0x05222882, 0x0e830923, 0x00820020, 0x9b840120, 0xc3010135, 0x00002800, 0x0f141601, 0x06072301, 0x3f342622, 0x41373501, 0x1e580c62, 0x013e350a, 0x1c23dd01, 0x075964fe, 0x59070e14, 0x0606322d, 0x3206060b, 0xf683078a, 0x1b2e3333, 0x21ac014d, 0x59fd1c52, 0x07140e07, 0x332e6559, 0x21178205, 0x07903206, 0x82061c21, 0xff022d87, 0x01cffffd, 0x00b401e4, 0x00190015, 0xcf418982, 0x23062405, 0x7b262722, 0x372709e6, 0xde010727, 0x82220505, 0x1ef62971, 0x1b1f2f2b, 0x0bf21e06, 0x08260f84, 0x01944f46, 0x1a860606, 0x52202424, 0x9482f11e, 0x05052226, 0x944f45ee, 0x05205f82, 0x2b083743, 0x00170013, 0x003b0027, 0x1300003f, 0x4205f643, 0x4d5105ec, 0x15332206, 0x07d95333, 0x96098b5b, 0x08482d27, 0x0808d008, 0x2f422f18, 0xa0014030, 0x21092a47, 0x188b5801, 0x30088023, 0x28028208, 0x2f2f21f0, 0x6060f021, 0x0a985afe, 0x1b8e0120, 0x200bd347, 0x22a7820b, 0x43410023, 0xa24406db, 0x059d5a05, 0x25200b86, 0x0b82b783, 0x34373527, 0x15162533, 0x07df5811, 0xed581282, 0x11353106, 0x36253734, 0xf8011732, 0x90fe0808, 0x70010808, 0x012d078c, 0x1ed90108, 0x13085008, 0x0e82fe0e, 0x24088213, 0x0810011e, 0x0bd04914, 0xc020b682, 0x8b2bbd85, 0xa9fe200c, 0x0df80808, 0x820d1313, 0x5701264d, 0x04710c20, 0x07434604, 0xc0010028, 0x21001900, 0x35493200, 0x15062812, 0x36321614, 0x46273435, 0x2721071d, 0x2d128822, 0x012e3637, 0xc0010706, 0x1a26261a, 0x058380fe, 0x711a1a3a, 0x641a719e, 0x845e5e84, 0x1711a05e, 0x0b172217, 0x0c050222, 0x8001030c, 0x28842282, 0x1a40012d, 0x4f332d26, 0x334f7171, 0x8200ff2d, 0x845e2427, 0x8210183a, 0x0f11282b, 0x0c064f0c, 0x41060505, 0x072a0cef, 0x1f000f00, 0x7d003300, 0x4f590000, 0x34262105, 0x07554418, 0x4510735d, 0x3b260d21, 0x11211101, 0x13483527, 0x8c5f1808, 0x0e226c10, 0x52231521, 0x3d22053f, 0xf3843301, 0x48263421, 0x0784074d, 0x090ee926, 0xb7090e09, 0xd0200584, 0x21092c42, 0x0b896002, 0x0002302b, 0x68880860, 0x08680808, 0x23038210, 0x08886808, 0x40260e85, 0x281c1c14, 0x0382401c, 0x40141c22, 0x88221f83, 0x4c824008, 0x170e0922, 0x01210584, 0x09105197, 0x7c49fe20, 0x6001270a, 0x10c8a0fe, 0x4d822008, 0x83060563, 0x8403840a, 0x1010214a, 0x10845784, 0x00002508, 0xfffeff03, 0x018202de, 0x001700a2, 0x002d0022, 0x3f322500, 0x06141501, 0x2f06010f, 0x3d012e01, 0x33161701, 0x17231182, 0x85163716, 0x36372713, 0x1f362117, 0x1e840701, 0x01375a08, 0x890607aa, 0x0fd90a0e, 0x0e0ad810, 0x1c070689, 0x0e40400e, 0x080604f0, 0x5c060cc6, 0xfd050cfa, 0xfa0c05ea, 0xc60c065c, 0xc0040608, 0x0bb22702, 0x04360311, 0x11033604, 0x0227b20b, 0x176b6b17, 0x020e0770, 0x980b0438, 0x0a0a0120, 0x0b982001, 0x0e023804, 0x00000007, 0x2d978204, 0x010002e0, 0x001400a0, 0x0024001c, 0xa34c002c, 0x22232e05, 0x22230627, 0x3e262726, 0x35263702, 0x0f745834, 0x96380f87, 0x6a9696d4, 0x4c413338, 0x02010402, 0x061c1107, 0x131a7339, 0x93131a13, 0x0124058a, 0x7aac7aa0, 0x0bab0e19, 0x20827620, 0x0022028d, 0x576c0200, 0x820f2008, 0x37002485, 0x82053734, 0x2483847f, 0x26373637, 0x0a596c05, 0x71011f21, 0x4025066b, 0x26450109, 0x277d8328, 0x2c030405, 0x3a02390b, 0x320c546c, 0x6a604969, 0x1ad03996, 0x130afc1c, 0x34040a33, 0x6c90392b, 0x52260c4d, 0x48567a35, 0x7b82003a, 0x00820020, 0x01800228, 0x00110080, 0x7b820039, 0x012b2622, 0x29057769, 0x06222315, 0x2521011d, 0x45181632, 0xde4e1681, 0x82212008, 0xa0333b09, 0x38201a26, 0x28400128, 0x261a2038, 0xa001c0fe, 0x0920261a, 0x09074007, 0x068480fe, 0x1f822020, 0x01130d27, 0xe00d1380, 0x2ab8821a, 0x1a262838, 0x1a266040, 0x18791324, 0x2a095c45, 0x1a241379, 0x600d1326, 0x4a130d60, 0x022908d7, 0x00c00100, 0x00460007, 0x09875468, 0x010e2727, 0x1f161415, 0x2b998201, 0x22012b06, 0x06010f26, 0x17161714, 0x3b2b1382, 0x3d363201, 0x35013e01, 0x7b2f2634, 0x1627071c, 0x2636013f, 0x82272627, 0x822c8213, 0x0e9e433a, 0x16013b2a, 0x1d222317, 0x21331401, 0x3f05a94b, 0x56013736, 0xac7a7aac, 0x2219e67a, 0x0c3f1318, 0x0a26070a, 0x04100610, 0x09181305, 0x0a070b07, 0x14251582, 0x060a0c3e, 0x30158427, 0x18130401, 0x040c060a, 0x0df60408, 0xfe0d1313, 0x2d058340, 0x3f2b1e20, 0x6c010a0a, 0x2c400a0a, 0x4a82201e, 0xc5ac7a2e, 0x151a2401, 0x03130621, 0x0a0a080e, 0x0a294d82, 0x11010e03, 0x070a0a07, 0x27189510, 0xfe050804, 0x600d13f1, 0x04824e83, 0x49192721, 0x280805ca, 0x03002719, 0xbffffeff, 0xc3010002, 0x29000900, 0x00003100, 0x36272601, 0x17163637, 0x33371716, 0x06141507, 0x0607012b, 0x21f28223, 0x19823f36, 0x34352622, 0x2305de5c, 0x36343517, 0x0807bb42, 0x4e200151, 0x07201135, 0x2c0a0213, 0x5e207070, 0x0a414d42, 0x052e6b0c, 0x16900806, 0x041a5511, 0x7d1e0415, 0x0e1a2f4e, 0x090e0909, 0x3b101901, 0x06082531, 0x4b38450a, 0x5e42a040, 0x48040838, 0x24021007, 0x68511110, 0x0a09373d, 0x3c055845, 0x82602f21, 0x0e092129, 0x002e8a82, 0x02c0ff00, 0x00800041, 0x25000025, 0x61180616, 0x517f0c1c, 0x2b260808, 0x14062201, 0x32013b16, 0x3236013f, 0x010c3502, 0x1612970c, 0x09079bfe, 0x2f370709, 0x0fa02a20, 0x14020213, 0x0f834e0c, 0x11177636, 0x7818095d, 0x79091e0a, 0x6007090e, 0x1a260907, 0x0f0c0e17, 0x0e236e82, 0x5300084a, 0x412606f7, 0x1200c301, 0x71823800, 0x3626272d, 0x1f163637, 0x013e3701, 0x82011e17, 0x0522217d, 0x013584a4, 0x03176d13, 0x153d171a, 0x3c160b0b, 0x18031b17, 0x010e066d, 0x3298a11c, 0x481872c6, 0x16051416, 0x05160c0c, 0x18481614, 0x97480672, 0x29ab88aa, 0x004500c0, 0x0100006e, 0xad83012e, 0x26084643, 0x15161716, 0x82140714, 0x262732b3, 0x1522012b, 0x1e011f14, 0x06161702, 0x0e141507, 0x05175b01, 0x26272625, 0x63373435, 0x3b2505b8, 0x34353201, 0x41338327, 0x15221263, 0x33841514, 0x3e096541, 0x1a120f01, 0x19200303, 0x0712070a, 0x0510130a, 0x06130202, 0x24060509, 0x0c360709, 0x82020d14, 0x08052219, 0x211a8f04, 0x98410bf0, 0x130d210e, 0x080d9741, 0x05300121, 0x25181119, 0x09071202, 0x02120709, 0x03060409, 0x11020103, 0x08020406, 0x030f0107, 0x830b130e, 0x0804221c, 0x241d9104, 0x0f0e0aa9, 0x08d3410a, 0x030d1323, 0x09d54102, 0x2809d741, 0x000b00c0, 0x24000031, 0x06c64222, 0x14151623, 0x25d04117, 0x38504828, 0x05100553, 0xc441b553, 0x37c02a21, 0x06702c27, 0x272c7006, 0x17bc417f, 0x00000234, 0x8002c0ff, 0x22008001, 0x00004500, 0x1d161737, 0xe7571401, 0x012f2205, 0x05e27326, 0x17011d27, 0x013f3216, 0x24108236, 0x2416013e, 0x21228332, 0x0458010f, 0x25228206, 0x013e013f, 0xc179011e, 0x08278205, 0xcd34352f, 0x07091a39, 0x03030c84, 0x130a6907, 0x045a131a, 0x0a0d050e, 0x03082608, 0x8e011a16, 0x690a131a, 0x0c030307, 0x1a090784, 0x161a0839, 0x08188203, 0x050d0a2a, 0xda5a040e, 0x702b224d, 0x0c0c0907, 0x110d8709, 0x13130dda, 0x066c940d, 0x0b090d05, 0x101a0b33, 0x0d139c04, 0x870d11da, 0x07281e83, 0x4d222b70, 0x1a10040a, 0x09271982, 0x6c06050d, 0x82000d94, 0xff022d00, 0x02bdfffd, 0x00c30183, 0x00400025, 0x22072d50, 0x8315012b, 0x053d44d0, 0xc3822620, 0x013f3625, 0x823f3435, 0x32162815, 0x25013d36, 0x820f0616, 0x8426200f, 0x67222026, 0x36260598, 0x3637013b, 0x5c781716, 0x13083605, 0x1a26100d, 0x1a0b6789, 0x07065007, 0x411f500b, 0x012a3c2a, 0x2a0a832c, 0x17b81721, 0x210f1722, 0x83671210, 0x00012c1e, 0x0a300a0e, 0x130d400e, 0x823c261a, 0x0b8b2f1f, 0x302e061a, 0x7a271324, 0x1e2a2a1e, 0x0e832538, 0x21171c2c, 0x17171158, 0x09127e11, 0x24830a15, 0x220a534c, 0x823500c0, 0x061625b5, 0x1607012b, 0x0be06e18, 0x2327372c, 0x3e372622, 0x15063702, 0x9b821723, 0x23354408, 0x16323634, 0x33152315, 0x23371732, 0x011e2734, 0x0a010002, 0x02890907, 0x80090e09, 0x8902130d, 0x010a0709, 0x29432e04, 0x07741c3e, 0x51703001, 0x3070515e, 0x1c740701, 0x01583f3e, 0x980a0711, 0x82800206, 0x0d133b2a, 0x98060280, 0x4124070a, 0x6c440e2c, 0x52800282, 0x80526e6e, 0x446c8202, 0x96825415, 0x41050021, 0xc02e064f, 0x0f000700, 0x65001a00, 0x00006e00, 0xfe182212, 0x13210d99, 0x065f5d16, 0x16023f2d, 0x020e020f, 0x2e232223, 0x7f013f01, 0x0f270575, 0x23070601, 0x82012f26, 0x17072402, 0x82011f16, 0x8222202b, 0x022f22cb, 0x21218226, 0x12823637, 0x26440220, 0x31118608, 0x011f0517, 0x2e010e07, 0x28943701, 0x1c281c1c, 0x06846401, 0x054e5d08, 0x06060c0b, 0x021b0816, 0x16070a29, 0x09010a43, 0x0301080e, 0x0a01100d, 0x112b0d03, 0x33130607, 0x0ba00b06, 0x07123306, 0x0d2b1107, 0x10010a03, 0x0c01030d, 0x430a0212, 0x07130716, 0x241b1d1e, 0x09100b0d, 0x0907a007, 0x230d0b10, 0x071e1e1b, 0x0229e5fd, 0x1918051b, 0x6001050b, 0x0a287918, 0x70fe5a08, 0x0205190c, 0x2e134514, 0x4c192064, 0x070d085d, 0x5c0e1402, 0x47310f14, 0x210d1315, 0x04010104, 0x15130d21, 0x140f3147, 0x02140e5c, 0x4c5d0c10, 0x20502019, 0x150f0c0d, 0x600a2227, 0x07090907, 0x27220a60, 0x0d0c0f15, 0x132eb420, 0x0a0b0c45, 0x00000c19, 0xfdff0300, 0x05d355ff, 0x4b004322, 0x43058150, 0x06200669, 0x2105d946, 0x26672622, 0x013d2409, 0x4135022e, 0x332105f3, 0x059b5032, 0x07010e33, 0x013b1606, 0x013b013e, 0x3b361732, 0x17160701, 0x066d5106, 0x07222723, 0x5f5e1834, 0x26312407, 0x83300223, 0x0d312784, 0x40070912, 0xa4480907, 0x13390805, 0x1928101d, 0x11020322, 0x06060e19, 0x070a0601, 0x0b0f0202, 0x3a580b2b, 0x1d100780, 0x1813202c, 0x090e690d, 0xa0090e09, 0x38011817, 0x050b3850, 0x800709e0, 0x0d120907, 0x09605251, 0x270e5138, 0x19261a30, 0x060c170e, 0x09050614, 0x37110c05, 0x4c220249, 0x584b1e16, 0x06b72a05, 0x28010401, 0x01283838, 0x32ee8201, 0xfeff0200, 0xc201b8ff, 0x0800c101, 0x00002900, 0x4a17013f, 0x253205f5, 0x010f0616, 0x2e032706, 0x013e3401, 0x3736013f, 0x18423236, 0x0f5a0805, 0x37362701, 0x06072226, 0x0e5b4f75, 0x03094412, 0x0207bb01, 0x0d124509, 0x070c0df9, 0x062c0205, 0x1f6b220a, 0x112c060a, 0x4f221507, 0x5a210434, 0x58820421, 0x1c0c1066, 0x08081606, 0x0c1c0616, 0x0f130110, 0x091b1b23, 0x060c4903, 0x0c061616, 0x17401c49, 0x063b5726, 0xf7521212, 0x01003509, 0x002600c0, 0x003b002e, 0x25000043, 0x06141632, 0x37362123, 0x2506ff59, 0x36342622, 0x4941013b, 0x26a68207, 0x14062223, 0x83123316, 0x36322705, 0x16320434, 0x15821415, 0x4b022e21, 0x0121093a, 0x29f183a0, 0x151beafe, 0x13130de6, 0x0d83600d, 0x382d2d28, 0x18303850, 0x11836018, 0x131a6d27, 0xfe131a13, 0x23118478, 0x5335200b, 0x80200f84, 0x21212182, 0x8218821f, 0x20402107, 0x18233483, 0x821c1c50, 0x0001210f, 0x13240482, 0x2838ad1a, 0x0c251083, 0x28185626, 0x05467048, 0x7b730220, 0x001a220a, 0x06ea4900, 0x08053d47, 0x35262236, 0x06143325, 0x3e272607, 0x835d4003, 0x07200709, 0x01835d09, 0x557440c0, 0x290f2b10, 0x60013b32, 0x07905d83, 0x90070909, 0x56405d83, 0x2f3d0980, 0x111e2a1a, 0x2606b747, 0x00c00100, 0x45270023, 0x2324082f, 0x06141121, 0x5c053679, 0xa4430837, 0x35132508, 0xf0011521, 0xfe214a83, 0x20678490, 0x200b8330, 0x240a8430, 0x01400120, 0x59098480, 0x218a0766, 0xe0c0fe23, 0x078741e0, 0xf001c82c, 0x0700b801, 0x22000f00, 0xb7672f00, 0x34122109, 0x0805535f, 0x16173748, 0x032e2736, 0x07062223, 0x013f1606, 0x26073236, 0x1617010e, 0x26363732, 0x91220607, 0xce9191ce, 0x131a1337, 0x0ab11a13, 0x01010f06, 0x0a14110c, 0x01032514, 0x0b0a060f, 0x1207bd26, 0x8c2d0505, 0x0a190a2d, 0x877f6e23, 0x1b012105, 0x133b2b83, 0x08060910, 0x0b100909, 0x09121806, 0x09090608, 0x1004086f, 0x0c363608, 0x832a0c14, 0x00032397, 0xef6aff00, 0x00072405, 0x59210019, 0xe34e0ad5, 0x36342809, 0x14151632, 0x54322607, 0xc63a05e5, 0x34262634, 0x07d00126, 0xfe070909, 0x83835d70, 0xc54383ba, 0x50383850, 0x6f550138, 0x84ba2005, 0x241682ff, 0x425e5d83, 0x05246740, 0xfeff032a, 0x8002beff, 0x1600c001, 0x2005e34a, 0x09935e37, 0x935e3220, 0x26063507, 0x14112101, 0x26222306, 0x2f060527, 0x25372601, 0x12363411, 0x5a087686, 0x03023132, 0x194d0406, 0x034d193e, 0x01040507, 0x07060132, 0x010b07d8, 0x4200014c, 0x02412d2e, 0x020877fe, 0x0108020d, 0x2889135a, 0x1c281c1c, 0x0804ba48, 0x5c140206, 0x01155d10, 0xb9030503, 0x3a020b07, 0x7e010702, 0x422e70fe, 0x026c2d3f, 0x02082e08, 0x0d44015e, 0x8240fe13, 0x281c242d, 0x41050000, 0x2924080b, 0x39003100, 0x4406eb56, 0x595e06ae, 0x4e098309, 0x35200652, 0x19599f82, 0x32332105, 0x2008305f, 0x25b08616, 0x27331525, 0xad442326, 0x6d023f07, 0x12070913, 0x2f422f02, 0x2f02a402, 0x18182821, 0x132f2128, 0x0da0010d, 0x131a2613, 0x644e10fe, 0x5c30250b, 0x0306052b, 0xd32c1184, 0x07561a13, 0x21080809, 0x08212f2f, 0x212f0082, 0x2f20202f, 0x0d500121, 0x600d1313, 0x1813fd13, 0x23090164, 0x052b30cd, 0x4405b677, 0xf9210587, 0x05db7aff, 0x26001e22, 0x1e30da82, 0x06010f01, 0x2701012f, 0x36013f26, 0x3233011f, 0x173fd682, 0x16363735, 0x06141115, 0x01352507, 0x22212306, 0x057a0226, 0x0a140402, 0x8bfeb20d, 0x82090c25, 0x4e380808, 0x201c14f4, 0x1122106e, 0x01ddfd0c, 0xfe110d6e, 0x0a1c14e0, 0x1a050d04, 0x018a090c, 0x0d0a1c21, 0x3d090c19, 0x18b2141c, 0x110b4b89, 0x0d00ff14, 0xf5100112, 0x1c0ae5fe, 0x23088383, 0xfffbff01, 0x012501c0, 0x001e00c0, 0x16321700, 0x012b1415, 0x36343522, 0x2e35013b, 0x34013f01, 0x013b013e, 0x31081582, 0x07061617, 0x1711d815, 0x1708d008, 0x40342811, 0x07041005, 0x0906e004, 0x34400510, 0x08111710, 0x75171108, 0xb237570c, 0x08040605, 0x5737b207, 0x5c82750c, 0x634f0220, 0x00172208, 0x7bdf8721, 0x1f2205ad, 0xdf833e01, 0x0e141522, 0x3321f382, 0x23d68217, 0x3634013d, 0xa57bda86, 0x0c873007, 0x543c324d, 0xc0162113, 0x82fef830, 0x854f1c14, 0x079d7bd5, 0x3d2f692f, 0x301b3c54, 0xc0330c26, 0x370a141c, 0x054f574f, 0x84c00121, 0x002e22cb, 0x061f6936, 0x8309475b, 0x021e2272, 0x08277017, 0x22010e25, 0x4e372726, 0x342108c1, 0x22fa8226, 0x822f1706, 0x011f25f6, 0x011e1707, 0x4e056d4a, 0x062105c2, 0xe86b181d, 0x16372307, 0x555d0632, 0x32262206, 0x30168216, 0x07403435, 0x0e070909, 0x18305012, 0x091e252e, 0x320d860e, 0x1a125060, 0x28302838, 0x90141c38, 0x0c481c14, 0x820c2424, 0x8c270803, 0x141c4533, 0x800d1350, 0x1450130d, 0x3033451c, 0x090e0f70, 0x57090e09, 0xe020090e, 0x07600709, 0x0e352b09, 0x86152419, 0x2b352c0a, 0x38281858, 0x11182838, 0x84591717, 0x0c0c2e40, 0x334c0695, 0x401c140a, 0x0d13130d, 0x23fa8240, 0x1f064c33, 0x82050b4e, 0x30302286, 0x09c74f07, 0xc0018528, 0x1b000700, 0xc74f2b00, 0x06c96709, 0x2b070f55, 0x3216013b, 0x0f162537, 0x012f0601, 0x24057642, 0x01173637, 0xa6831815, 0x54013213, 0x088d0908, 0x09095109, 0x2d09081c, 0xc0080969, 0x4a84184b, 0x08802210, 0x2b228208, 0x1b090852, 0x682d0909, 0x04000908, 0x2208ab55, 0x82170007, 0x82332087, 0x063d4189, 0x2c191720, 0x32230d91, 0x42161427, 0x95840708, 0x17323325, 0x49222606, 0x210805d1, 0x5478b401, 0xd0547854, 0x0c0a260a, 0x0a3c0a0a, 0xfe2328f0, 0x4f1c14a5, 0x4c231137, 0x0d0b1123, 0xb1842b12, 0x2382e020, 0x42785437, 0x0a360a0c, 0x100a4c0a, 0x1c184c2c, 0x4f372a14, 0x26021010, 0x86ac8448, 0x0182318f, 0x003b00c0, 0x004b0043, 0x25000076, 0x06071617, 0x18a44a19, 0x2627372d, 0x36373637, 0x3736011f, 0x19373435, 0x440fa34a, 0xa7870739, 0x14151324, 0x5b410617, 0x3233310c, 0x06143316, 0x1f160615, 0x07170601, 0x1617010e, 0x3d057953, 0x1a620216, 0x180a0105, 0x11190504, 0x21210614, 0x1a111406, 0x0a170405, 0x04190602, 0x19821904, 0x05041723, 0x2f19871a, 0x18040519, 0x1a05010a, 0x1c288a04, 0xab1c281c, 0x4923ec84, 0x190f0c02, 0x08096b53, 0x08021135, 0x0a040301, 0x0101080c, 0x040a0c08, 0x110c1c0c, 0x0508090a, 0x06030f4b, 0x02041920, 0x1e070e0f, 0x07070106, 0x071e0601, 0x04020f0e, 0x03062019, 0x9c15150f, 0x8230201d, 0x281c236a, 0x6d834b74, 0x0ad3fe25, 0x41080705, 0x2708064d, 0x02060101, 0x04071a0d, 0x07050404, 0x1f270d19, 0x0304050c, 0x04000000, 0xbfff0000, 0xc0018002, 0x1c000700, 0x2f002400, 0x200b7542, 0x416a8217, 0x17310cde, 0x010f1737, 0x25372606, 0x010f1416, 0x36013f27, 0x08774232, 0x4e293b29, 0x01070108, 0x41edfe04, 0x3e3207e2, 0x3d89478a, 0x01010b08, 0x2a070719, 0x07250548, 0x7d420714, 0x4d2e2606, 0x0a3d0b08, 0x2899860b, 0x8a478991, 0x080b0107, 0x252082e1, 0x2604482a, 0x97860707, 0x24073f47, 0x0023001b, 0x156e1837, 0x130d4309, 0x87182420, 0x15390981, 0x012b0614, 0x013d3634, 0x3b362734, 0x37321601, 0x42425cee, 0x3023425c, 0x05336a43, 0x0930433b, 0x01214621, 0x38385004, 0x2e303850, 0xb1141c42, 0x1d1b2801, 0x172a1704, 0x2f2782c0, 0x43625c42, 0x1c141d30, 0x301d141c, 0x20101043, 0x38302482, 0x2e425850, 0x04011c14, 0x2b392701, 0x0008080f, 0x2908d374, 0x00c301c0, 0x003a0010, 0x79442500, 0x07454205, 0x03173729, 0x013f3426, 0x18011f36, 0x33090ba8, 0x27373435, 0x14151615, 0x0e161707, 0x22012b01, 0x26013f26, 0x35241382, 0x4b363f01, 0x08053663, 0x5f364b25, 0xbe0e0ed2, 0x0ebe1414, 0x4b0e600e, 0x420e4b6a, 0x010f0b0c, 0x2a030401, 0x0f020504, 0x027f0c0b, 0x830a364d, 0x0a2d089a, 0x5f024d36, 0x1a035001, 0x04042e03, 0x0319042e, 0x351d1c17, 0x1d354b4b, 0x0735101c, 0x3e080c0d, 0x09040604, 0x0c083e05, 0x003b070d, 0x097b5900, 0x1c000728, 0x3c003400, 0xe5414400, 0x1415210a, 0x270ae241, 0x33373233, 0x25061730, 0x6c05a448, 0x966e0964, 0x073a4306, 0x2e603720, 0x06744406, 0xfe092023, 0x05f541e7, 0x2326262c, 0x01080e11, 0x13130d20, 0x0483e00d, 0x422f202a, 0x131a5d2f, 0x40131a13, 0xff410382, 0xa08b2305, 0xfb410f11, 0x0e022506, 0xa00d1310, 0x04822883, 0x2f215026, 0x9050212f, 0x13232782, 0x83507d1a, 0x00502214, 0x088b4403, 0x17000f26, 0x00002b00, 0x33219a8e, 0x09f94106, 0x5f011d21, 0x3b2909cb, 0x37321601, 0x09077002, 0x05c66c09, 0x1d459b20, 0x63801813, 0x4530200a, 0x7b851117, 0x01c00129, 0x001000c0, 0x412d0025, 0x272b12e5, 0x35263734, 0x033e1732, 0x49163233, 0x062c055f, 0x15062237, 0x23263433, 0x47344501, 0x0805d641, 0x65344732, 0x312b2bc0, 0x1d18071d, 0x4b351323, 0x432c354b, 0x0d671c0c, 0x0d13a013, 0x344c059f, 0x1c1c142a, 0x4c342a14, 0x33c76605, 0x28331d1d, 0x0b121b10, 0x35278c82, 0x13601e29, 0x43130d0d, 0xbd22060b, 0x87828002, 0x17001226, 0x37001f00, 0x16298982, 0x030e1415, 0x2e270607, 0x059f7601, 0x013e0724, 0xd1442737, 0x14072207, 0x12d14416, 0x02063039, 0x1c12126e, 0x0b112224, 0x1250350b, 0x0b0b0b73, 0x60043b21, 0x824b6adb, 0x3720246e, 0x440a092c, 0x013c0a99, 0xb1010105, 0x40241207, 0x0716262f, 0x73150404, 0x2d07124e, 0x0fec0404, 0x11263a4e, 0x4b262f82, 0x6d44736a, 0xc6410423, 0x06012106, 0x9f57a682, 0x133b480a, 0x32330222, 0x0623b482, 0x82340507, 0x210524aa, 0x48352622, 0x93320e3a, 0x21382303, 0x26304b35, 0x331df6fe, 0xfe1f011f, 0x134914a2, 0x073d4806, 0x36207230, 0x29354b1f, 0x20ae0d42, 0xde062539, 0xaf5b141c, 0x0011290b, 0x002b001d, 0x25000040, 0x084b5e18, 0x34013d28, 0x32013b36, 0xde180717, 0x27300a45, 0x35012e22, 0x32333634, 0x1415011e, 0x1f141706, 0x0b957618, 0x32162408, 0x17323337, 0x0a097702, 0x091b095c, 0x0e12125b, 0x5c121b4f, 0x07070b06, 0x0e0a060b, 0x3b23d60e, 0x83354b22, 0x1c4b2404, 0x41170f3a, 0x11220a2e, 0x30825315, 0x82095d21, 0x4f1b3333, 0x4513130d, 0x0b0d0b07, 0x0e140e06, 0x233b2258, 0x04844b35, 0x1c286f24, 0x3041133a, 0x052f4106, 0xff000024, 0x018201c0, 0x82070021, 0x440020bb, 0x4b4408c3, 0x2737230f, 0x67450733, 0x35202107, 0x26072c44, 0x20203035, 0x43202060, 0x6c230552, 0x42354e02, 0x352b0548, 0x88bf024e, 0x00883838, 0x82060000, 0x02e0245f, 0x47a00182, 0x62240637, 0x93008500, 0x87453b47, 0x221721ab, 0x3007df4e, 0x07062207, 0x22232627, 0x22070607, 0x14151707, 0x08ec4d17, 0x3233162d, 0x16333633, 0x1706011f, 0x47062330, 0x3723054b, 0x190e2733, 0x470b5710, 0x2a083a58, 0x2634bafe, 0xa0263426, 0x5d41422e, 0x01010b42, 0x0a090801, 0x0d170c11, 0x06660201, 0x441c14ff, 0x2321092f, 0x01020502, 0x82080604, 0x0a23341c, 0x110c1c0c, 0xf601100b, 0x4205281e, 0x1a26130d, 0x476b1a40, 0x6f471c51, 0x36808224, 0x42463426, 0x42422e2e, 0x0117192e, 0x0c050501, 0xc2012219, 0x460a0a0a, 0x01220547, 0x00820405, 0x2720122f, 0xac090c1f, 0x13233a10, 0x261a200d, 0x34008200, 0xffffff05, 0x018002c0, 0x002a00c2, 0x00450042, 0x005e005b, 0x06136600, 0x2305344f, 0x06072726, 0x33066654, 0x36343526, 0x37173233, 0x011f1636, 0x010f0616, 0x25110706, 0x0ce98518, 0x36370338, 0x17161732, 0x27332716, 0x1e171605, 0x31141501, 0x26220614, 0x38823035, 0x82363721, 0x3307231c, 0x3a7b0227, 0x06073007, 0x020c068e, 0x0706030a, 0x212f0180, 0x8676172e, 0x8420080d, 0x2001200b, 0x35233b22, 0x061e0a4b, 0x070c0d07, 0x530d3c0d, 0x90c80101, 0x14abfe48, 0x4b0a1d1a, 0x07128618, 0x48906623, 0x059d7e09, 0x03570128, 0x06023004, 0x42821f06, 0x02082b26, 0x27282f21, 0x26080d82, 0x030b071e, 0xfe0e212c, 0x251690d9, 0x01212f15, 0x0c3c1708, 0x0e19190e, 0x07a61a1a, 0x6a900a03, 0x16393528, 0x18210109, 0x22091786, 0x410090c0, 0x813e050f, 0x2b00c201, 0x41003e00, 0x5a005700, 0x34170000, 0x11013b36, 0x2e012f26, 0x3e013f01, 0xdc5b1f01, 0x27e18207, 0x020e010f, 0x0706012f, 0x20076350, 0x22ea8827, 0x4e171617, 0x3723055b, 0x8b012733, 0x08164115, 0x60341882, 0x20b00709, 0x0607840b, 0x0c020a03, 0x2e177606, 0x80012f21, 0x01300d83, 0x8e040807, 0x07090706, 0x600907e0, 0x141b1c0a, 0x82050441, 0x903827fb, 0x0a000148, 0x11831a1d, 0x1e1a1323, 0x3512850a, 0x01090710, 0x2c210e27, 0x1e070b03, 0x27020606, 0x02212f28, 0x53822b08, 0x05041f3a, 0x04300102, 0x07a9fe03, 0xc0070909, 0x39150901, 0x1a1a2836, 0x060207a7, 0x3128f982, 0x01e0fe90, 0x35391609, 0x26251282, 0x08173c34, 0x20148401, 0x06834b00, 0xc001002a, 0x17000f00, 0x3f003b00, 0x4808f946, 0x33200763, 0x28070f4f, 0x011d2213, 0x07013b14, 0x20078e23, 0xd6871821, 0x33430807, 0x33050721, 0xa0012327, 0x0d13251b, 0x130dc0fe, 0x1a731b25, 0x131a1313, 0x9e080848, 0x08088c12, 0x08721284, 0xff116908, 0x14670900, 0x01141c1c, 0x51fe11d0, 0x40460b51, 0x0d201b25, 0x200d1313, 0x8260251b, 0x1a13232d, 0x5c678d01, 0x60402a0a, 0x14a0141c, 0x8080401c, 0x2d008200, 0xff000002, 0x014002dd, 0x001100a1, 0x7c180022, 0x063208a5, 0x012e0607, 0x37341135, 0x15160736, 0x27061411, 0x716e2726, 0x17400805, 0x0e1e0216, 0x8c0d1114, 0x070b054f, 0x077b4d07, 0x8c4f080f, 0x0e14110d, 0x01a0019a, 0xaefe0e12, 0x2708120c, 0x05090203, 0x04096c01, 0x09042f2f, 0x090894fe, 0x12082704, 0x0e52010c, 0x00090112, 0x06200082, 0xfb507382, 0x00113005, 0x00390024, 0x0069004b, 0x1300006c, 0x82262722, 0x013b2e70, 0x06071632, 0x06161714, 0x010e2723, 0x076d7016, 0x25311986, 0x06071416, 0x2e22012b, 0x013e3701, 0x3e262726, 0x222f8201, 0x86173207, 0x37263716, 0x26273436, 0x13073336, 0x010f0616, 0x012f2606, 0x010e0723, 0x2e82012f, 0x26132e08, 0x013e3435, 0x15011e32, 0x27330714, 0x08030c97, 0x220c0308, 0x08020908, 0x08090208, 0x040f0c5f, 0x09090417, 0x1b040a23, 0x230b041a, 0x20178209, 0x2708831a, 0x02010906, 0x0c0f0516, 0x0623d382, 0x8e790b23, 0x82522d36, 0x1e060503, 0x31030c06, 0x0c033196, 0x27080982, 0x0b820305, 0x1e221e11, 0x30607011, 0x1a0b0001, 0x0d0b1a36, 0x152c1508, 0x16a90d08, 0x082b5d34, 0x7c39090f, 0x060f0939, 0x072a0583, 0x5b29060b, 0x0b051736, 0x288b4007, 0xc6fe642d, 0x0d020c06, 0x76060502, 0x82050676, 0x060c2808, 0x14103a01, 0x82111e11, 0xac142402, 0x7a020074, 0x29210aaf, 0x16ad7a00, 0xa27a2520, 0x09982229, 0x11997a0c, 0x7a290e21, 0x082a0a99, 0x174a1602, 0x0db91416, 0x8e7ab209, 0x06362705, 0xb22b0502, 0x97700c09, 0x000d270a, 0x13000021, 0x02522311, 0x82152006, 0x0e885e09, 0x3521332f, 0x40601533, 0xf0011117, 0x50401711, 0x08d57207, 0xc010012f, 0xa0fe8001, 0x17117801, 0x88fe1117, 0x0ceb6301, 0x00404022, 0x03200082, 0x2c066f45, 0x001300c0, 0x0034001b, 0x16323700, 0x069f5415, 0x33363423, 0x05175432, 0x2006534a, 0x05107101, 0x26012b24, 0x72823327, 0x21113326, 0x35232615, 0xd02f2682, 0x141c412f, 0x411c14e0, 0x1503042f, 0x4c031528, 0x013e054c, 0x1c1c1450, 0x1e09f514, 0xfe40804c, 0x1c211fa0, 0x2f426014, 0x131c1c13, 0x0701422f, 0x4a4c0107, 0x08013205, 0xc4fe151d, 0x1a261d15, 0x20014040, 0x152e1232, 0x4a97841d, 0x2d2708e7, 0x3f003600, 0x50250000, 0x262405a6, 0x011d0622, 0x3f217382, 0xad451801, 0x773b2007, 0x15510949, 0x05152908, 0x15013f34, 0x35262223, 0xce833683, 0xd001352a, 0x36256010, 0x70106025, 0x850a5255, 0xa0fe3b0a, 0x07706d13, 0x136d0209, 0xc9700709, 0x60ee1209, 0x1b25251b, 0x0912ee60, 0x84553344, 0xd933300f, 0xc02f0815, 0x08810709, 0x09076415, 0x840600c0, 0x010033a7, 0x000900c0, 0x001f0011, 0x00300028, 0x35000038, 0x227d2016, 0x41002006, 0x0526063b, 0x3233011e, 0x1586013e, 0x36352522, 0x0e220982, 0x47502402, 0x26052206, 0x2b108327, 0x06013d06, 0x719e713d, 0x719e8f01, 0xfe280682, 0x3a681e00, 0x143e4826, 0x01350b82, 0x0e213fa0, 0xbafe2319, 0xa07070a0, 0x0c9b0170, 0x37336e30, 0x3100822b, 0x1a26261a, 0x34264001, 0xd2342626, 0x180b1b19, 0x11833411, 0x0b3f2936, 0x10092b18, 0x2f930b0f, 0x422f2f42, 0x05172209, 0x1e122b25, 0x1b934718, 0x36341727, 0x06223533, 0x09247b15, 0x06141622, 0x9122bd82, 0x028291ce, 0x425e582a, 0x5098714f, 0x38503838, 0x21056457, 0x1884b801, 0x5e426726, 0x604f7120, 0x38211682, 0x0a4b5750, 0x8002bc24, 0x8155c001, 0x32012905, 0x15071516, 0x17070614, 0x2405a251, 0x2b222322, 0x260b8601, 0x26060723, 0x4a373435, 0x17200581, 0x3208c354, 0x60382820, 0x04293d4d, 0x040c160b, 0x0202012c, 0x85262701, 0x6121080b, 0x0c1d0f79, 0x212f7401, 0x144a1927, 0x0e140e0e, 0x1b25a001, 0x65415010, 0x040b7012, 0x780b0408, 0x2c068568, 0x1111073d, 0x2501090f, 0x202f2115, 0x26268248, 0x0000140e, 0x5d000200, 0xc024058b, 0x3b000f00, 0x11b34418, 0x82320021, 0x222327ef, 0x27210727, 0xf7822306, 0x23058d56, 0x3f361617, 0x2308b458, 0x011e1707, 0x34480d84, 0x60fe3f05, 0x07090907, 0x1c28cc01, 0x0503141c, 0x4880fe48, 0x1c140305, 0x041c281c, 0x061b0b48, 0x09821252, 0x06521226, 0x04480c1a, 0x21090e65, 0x15824001, 0xc1c10123, 0x2a068201, 0x0a0a141c, 0x0b07072b, 0x82160f8f, 0x16142936, 0x070b8f0f, 0x0a0a2b07, 0x0820ac82, 0x1022ab88, 0x55421800, 0x00402606, 0x00500048, 0x08e77b00, 0x3d262227, 0x013e3701, 0x08a85a27, 0x2408e84b, 0x36013f34, 0x084e4132, 0x2509d041, 0x22263436, 0x5e781406, 0x21178707, 0x7d835002, 0x1c14e034, 0x0a091288, 0x0e0e1403, 0x0e160e14, 0x280faf0e, 0x0685af0f, 0x1384ad20, 0x51788e20, 0x23118510, 0x141c0001, 0x1c273c82, 0x12892e14, 0x82b81631, 0x140e223d, 0x823c89ad, 0x84ea2043, 0x848e2013, 0x8a722005, 0x21118505, 0xeb820600, 0xc001e028, 0x0f00a001, 0xd97c1700, 0x83701809, 0x07a0570f, 0xde8fbe8f, 0x1b800127, 0xfe1b2525, 0x200583c0, 0x09b75633, 0xe3471320, 0x20058505, 0x21178413, 0x2787a001, 0x1b400125, 0x84a0fe25, 0x84ad2015, 0x8a732005, 0x22118505, 0x92050000, 0x0fd77ba7, 0x08075318, 0x0f87a58f, 0x7b189d97, 0x979a0b63, 0xa38ad320, 0x00820020, 0x938c0220, 0x758b8d98, 0xfb929320, 0x185bff20, 0x00002205, 0x184f8c07, 0x9809c9b9, 0x97d78759, 0x84f79fef, 0x8b1320cf, 0x1a9b41fd, 0x1b844d20, 0x09410585, 0x20118b05, 0x20008200, 0x90bf9004, 0x179767b9, 0x42119941, 0x93410b31, 0x052a420d, 0x820b2442, 0x8e03207b, 0x9179a07b, 0x05074171, 0xee856b93, 0x63890020, 0x6a05476a, 0x9a180843, 0x17200741, 0x270d336a, 0x2536c533, 0x5b253625, 0x80250584, 0x0d13130d, 0x200584fe, 0x22148260, 0x84e53625, 0x13552205, 0x05d74a0d, 0x45130d21, 0x19220a23, 0x23452100, 0x013b2110, 0x5b088548, 0x535207a5, 0x05457b05, 0x141c7026, 0x1c142001, 0x4405945d, 0x8d260af2, 0x151e1e15, 0x344173fe, 0x09e77105, 0x1000c326, 0x2a002200, 0x2b2b6588, 0x35231101, 0x15163233, 0x82360311, 0x22212204, 0x05b05026, 0x37207382, 0x2e08ab44, 0x09090770, 0x70609007, 0x0fe81c14, 0x83b0fe19, 0x0e50280d, 0x0e14860a, 0x840e140e, 0x80012d72, 0xfe141d40, 0x04bf01b1, 0x21fe1014, 0x6d241285, 0xed03120b, 0x2f05e85d, 0x02000000, 0x30000000, 0x5001c001, 0x1f000f00, 0x5311474c, 0x574c0651, 0xa0012108, 0x20093641, 0x0a424101, 0x36419020, 0x89c02009, 0x285b820a, 0xff000001, 0x010502c0, 0x27dd82c7, 0x011e0100, 0x0633010f, 0x0e330382, 0x07272602, 0x34262206, 0x26360137, 0x3626010f, 0x82013e37, 0x16460802, 0x0a27d301, 0x08628321, 0x1b629327, 0x163a4547, 0x0e140742, 0x0b040107, 0x06b30b17, 0x2107291d, 0x515f2c2e, 0x67279301, 0x27082c39, 0x081f1a31, 0x07420604, 0x0107140e, 0x0b160c03, 0x2a7435b2, 0x2c2d2206, 0x77821321, 0xffff0230, 0x4002e0ff, 0x3800a001, 0x00004000, 0xe4651601, 0x52172005, 0x2b300568, 0x2e362701, 0x22262701, 0x1606010f, 0x1736013f, 0x32219884, 0x975b1816, 0x033e2108, 0x32218d82, 0x74861816, 0x3abf3608, 0x9a1e1e29, 0x130d3662, 0x775a0709, 0x09111102, 0x231c461b, 0x26ea820c, 0x14202623, 0x834f2313, 0xfe320818, 0x1c261ad0, 0x30584835, 0x2c3a2c06, 0x0e0e1453, 0x5f010e14, 0x23101614, 0x69561122, 0x09070d13, 0x132c187e, 0x1a151506, 0x1909190a, 0x420e0f1a, 0x1583301b, 0x311a252b, 0x253c4c5d, 0x25251d04, 0x21328243, 0xf349140e, 0x05e34d09, 0x44004022, 0x37107d42, 0x1d160133, 0x27061401, 0x013d012e, 0x012b2634, 0x34112115, 0x32013b36, 0xf9491582, 0x32162405, 0x83013d36, 0x2627211d, 0x25050147, 0x15233507, 0x1a195001, 0xdd320ae9, 0x1b212f13, 0x08111725, 0x1a26e0fe, 0x08261aa0, 0x7e823424, 0x261c142a, 0x040c0404, 0xa09c040e, 0x080ab542, 0x1b135521, 0x032b20df, 0x1c1d2c03, 0x01701711, 0x26261a60, 0x2434c01a, 0x0e0e0a20, 0x1f03a10a, 0x82263e15, 0x040c2631, 0x8080a604, 0x05974300, 0x0140022b, 0x004300a8, 0x005d0050, 0x07784a00, 0x2b4d2220, 0x063b5606, 0x3105af4f, 0x010f011e, 0x012f010e, 0x0f060726, 0x32333601, 0x04833317, 0x27262723, 0x055c4d26, 0x3f36262c, 0x17163601, 0x23263701, 0xdc5b0722, 0x35252106, 0x17220c83, 0xf182011e, 0x02363608, 0x3043023e, 0x03422e25, 0x03032403, 0x30252e42, 0x0a2d0243, 0x06102443, 0x02050206, 0x120e060c, 0x2704100f, 0x373b2929, 0x293b374a, 0x10042729, 0x060e120f, 0x081b820c, 0x10060633, 0xfe0a4324, 0x232304ba, 0x151e2425, 0x011e1425, 0x23252436, 0x1e010423, 0x1e152514, 0x460808a8, 0x2c3d432f, 0x3d2c2727, 0x08462f43, 0x2526b508, 0x2051830d, 0x3359820f, 0x09070604, 0x1a0c9a11, 0x119a0c1a, 0x04060709, 0x0f060602, 0x0d345483, 0xf1fe2625, 0x250d0d29, 0x171b1d15, 0x290d0d25, 0x001d1b13, 0x012a0082, 0xfdfffdff, 0x83018101, 0x0f411600, 0x05072306, 0xf5822606, 0x2720dd82, 0x3d05ba50, 0x126e0117, 0x0ccdfe12, 0x060e0519, 0xdadb0c09, 0x0e06090d, 0xee0c1905, 0x14221508, 0x12828f09, 0x190c1d25, 0x82666606, 0x821d2012, 0x3b53821a, 0xff000002, 0x01c001d0, 0x001800b3, 0x13000028, 0x013f032e, 0x0517013e, 0x14011d16, 0x04455d89, 0x07373e0f, 0x0201050a, 0x0d1b050c, 0x17172e01, 0x1b0ed3fe, 0x0d050c05, 0x0ac1b00d, 0xfe0a0e0e, 0x3a058370, 0x08035401, 0x1e060d0b, 0x78050c0c, 0x17101707, 0x0c057807, 0x180d1e0c, 0x77e04404, 0x032e0b35, 0xc0fffeff, 0xc0018102, 0x2c002600, 0xd7823e00, 0x032f222a, 0x013b3626, 0x33011f32, 0x2007924c, 0x08b05233, 0x5f431520, 0x15272805, 0x13022e33, 0x5b071416, 0x22820857, 0x01173637, 0x560a1030, 0x090120a0, 0x05082808, 0x07b0d02b, 0x01070909, 0x300583a0, 0x13835db0, 0x077da00d, 0x05bc3423, 0xfe232106, 0x2c1a84ba, 0x0b170d46, 0x40730d40, 0x060c086c, 0x0a566f3a, 0x5d834037, 0x7cbc130d, 0xfe23341f, 0x040e05ff, 0x2007091e, 0x0b160907, 0x20008200, 0x37461803, 0x00112708, 0x0029001c, 0xe54a0100, 0x05e24a06, 0x17323334, 0x37320736, 0x0e222326, 0x16141501, 0x033e3221, 0x0d823435, 0x01160729, 0x636346d7, 0x82465146, 0x21078502, 0x00822fdd, 0x1421142c, 0x0c4c012b, 0x070e1216, 0x0f821e2b, 0x5e600126, 0x4f4f5e84, 0xe02e0484, 0x1e114040, 0x06261a11, 0x0a14100c, 0x5f4e261a, 0x02e03509, 0x00ae0140, 0x00400034, 0x25000044, 0x22071415, 0x012f2223, 0x07208082, 0x820a9b65, 0x1527210e, 0x2c05784e, 0x012e013d, 0x033e3435, 0x16173637, 0x22af823b, 0x83363206, 0x020e3e93, 0x35171415, 0x40020706, 0x0a02020c, 0x0c0c4a04, 0x17114c4c, 0x07100709, 0x18020e09, 0x08088418, 0x1c342c2c, 0x091a3024, 0x50434654, 0x77452e0a, 0x0a0e0e14, 0x04060905, 0xe6171168, 0x08040cf6, 0x0b310189, 0x09073b09, 0x01310709, 0x07833606, 0x194a2208, 0x44293459, 0x020a1c26, 0x3d2e3013, 0x0e140e4b, 0x05090604, 0x1163a70a, 0x00010009, 0x01fdff00, 0x06bf4283, 0x2705b343, 0x3d262527, 0x25373401, 0x089c6f18, 0xb2426d20, 0xcdfe2506, 0x33011212, 0x2007c842, 0x06b1425a, 0xc8428f20, 0x05834c0d, 0x2505bf42, 0x00260016, 0x4d8d3700, 0x64861720, 0x2410bf42, 0x2e011717, 0x06b4420d, 0x0d0db028, 0x1b050c05, 0xbc42440e, 0x42ea2009, 0x0c2c09b1, 0x44440518, 0x1e0d1804, 0x42050c0c, 0x230bb942, 0x00050000, 0x023e0082, 0x00800180, 0x001c0018, 0x00240020, 0x01000048, 0x1415030e, 0x21151716, 0x34013e35, 0x72782726, 0x05152506, 0x33152335, 0x05240386, 0x23152135, 0x9706e15a, 0x80023707, 0x05080c07, 0x80fd0e12, 0x0e12120e, 0x40020d13, 0x60fe130d, 0x0182c040, 0x0260fe28, 0x0e094080, 0x038a8009, 0x023d0137, 0x080e0c09, 0x6305190f, 0x1e190563, 0x0d230519, 0xa00d1313, 0x28008480, 0x1b6060c0, 0x060a0a06, 0x5905911b, 0x87260653, 0x3500c701, 0xbd185500, 0xbb820e6d, 0x132f5f18, 0x14331725, 0x18361707, 0x200a645f, 0x0c414d0f, 0x3b363432, 0x012e3501, 0x1e17013d, 0x37161701, 0x15070617, 0x0d8cbd18, 0x5038b322, 0x09485f18, 0x052c2929, 0x07090b1a, 0x18090710, 0x2a0e48f9, 0x07293c0a, 0x1210320e, 0x180d0a0a, 0x180d47f9, 0x25094b5f, 0x14100e20, 0x73501a18, 0x262a2205, 0x84458480, 0x09222e04, 0x29074469, 0x01043928, 0x02062701, 0x07cb5322, 0x02e02008, 0x00a10181, 0x0026001e, 0x0034002c, 0x0040003a, 0x15160100, 0x010e1411, 0x26272223, 0x83062223, 0x11352106, 0x3105a651, 0x33363233, 0x32150532, 0x2637023e, 0x2e171603, 0x794b2301, 0x35053d07, 0x1607010e, 0x27263537, 0x6d02011e, 0x080f0913, 0x312b0605, 0x3f3ef63e, 0x0d131335, 0x24080b87, 0x160bf8fd, 0x24020c10, 0x01221e1b, 0x42ef1a25, 0x2f422f2f, 0x1e146001, 0x1a171f04, 0x0120011e, 0xfe16088a, 0x293b82c3, 0x163e0d02, 0x3d011608, 0x0982120e, 0x083d643e, 0x020b130e, 0x030beafe, 0x3811241a, 0x50383850, 0x1b033a54, 0x31e60313, 0x2318030a, 0x0223c882, 0x89ff0000, 0x21bf9fc7, 0xa14e3200, 0x21a69905, 0x9985e7fe, 0xfe218e94, 0x418284c0, 0x803b093f, 0x0900a001, 0x25001900, 0x3d003100, 0x00004700, 0x11211131, 0x21230614, 0x63252622, 0x4c180e33, 0x2b220863, 0x1b822201, 0x32213325, 0x8234013d, 0x20178b28, 0x6f7e1801, 0x80022e08, 0xc0fd0d13, 0xc001130d, 0x07600709, 0x22048409, 0x82087008, 0x80fe2b02, 0x08300108, 0x08d0fe08, 0x0283b008, 0x0730022a, 0x0980fd09, 0xfe400107, 0x13212f82, 0x8fda18dd, 0x107f2608, 0x08100808, 0x20058458, 0x24058468, 0x07094001, 0x832e8230, 0x000521bf, 0x28072f67, 0x004b000f, 0x00630057, 0x10cb766f, 0x32133324, 0xb172023e, 0x1617290b, 0x2736013f, 0x34352726, 0x1d21c482, 0x0ded7201, 0x0f26272e, 0x16170601, 0x3b141517, 0x37353201, 0x0a444118, 0xf4880b8b, 0x32213326, 0x130d6002, 0x1336e685, 0x1009900d, 0x0e12070b, 0x0507092d, 0x0606071c, 0x08070c04, 0xbf82110e, 0x92191221, 0x41f02014, 0xa023050a, 0x83085008, 0xf0fe2802, 0x10010808, 0x4ca00108, 0x0138077c, 0xfe130d80, 0x100c08d8, 0x05180f09, 0x050a030d, 0x04030408, 0x0b05070b, 0x08242582, 0x121a0110, 0x20221692, 0x6e820810, 0x2e410285, 0x01003005, 0xb9ff0000, 0xc701c601, 0x00003300, 0x53072325, 0x072008fe, 0x20050864, 0x07404c23, 0x09863720, 0x37213328, 0x16011f36, 0x2986010f, 0x62a00124, 0xe383ad4b, 0x0953f728, 0x0a0d190d, 0x0c833733, 0xcd4b8222, 0x01230683, 0x830a5217, 0x18342114, 0xf02d0d82, 0x200d1360, 0x0c6a130d, 0x0d091409, 0x910b8443, 0x82002011, 0xff053800, 0x02bafff7, 0x00cb0100, 0x001d0015, 0x002d0025, 0x13000035, 0x46011e36, 0x062905db, 0x07061617, 0x37022e06, 0x8d5f183e, 0x0f404f10, 0x8f50cc39, 0x501b2655, 0x0f112826, 0x682f1f1a, 0x0f0d2950, 0x131a2f6e, 0x50131a13, 0x2e7605d4, 0x10bb340c, 0x1b4e7f3d, 0x1c224026, 0x2a07053b, 0x4a437d50, 0x82d4fe6d, 0x1a13222a, 0x2005846d, 0x2005842d, 0x4a058453, 0x012005ab, 0x22056f51, 0x422a0022, 0x36201357, 0x18054866, 0x260943d3, 0x14163237, 0x18012b06, 0x320c07e1, 0x383828c0, 0x09076028, 0x07200709, 0x130d3009, 0x18300d13, 0x260e5e5e, 0x385038e0, 0x83e00709, 0x80302122, 0x40247c82, 0xffff0300, 0x80236f82, 0x4e008101, 0x122006bf, 0x2205b060, 0x8414021e, 0x16373308, 0x06010714, 0x26012f22, 0x36013734, 0x25801732, 0x02822536, 0x0483db20, 0x0a46252d, 0x0aeefe0a, 0x0a160a1a, 0x8212010a, 0x25012107, 0xdb201684, 0xd5202385, 0x1e821182, 0x1a201d82, 0x0a201e83, 0x220c2b61, 0x61340024, 0x0328112b, 0x23153315, 0x07221715, 0x2307195a, 0x1632013b, 0x4d0f5061, 0x802005f2, 0x4027de83, 0x2440e0e0, 0x83604913, 0x4e10820b, 0x19840518, 0x18138021, 0x26089dbb, 0x40202001, 0x86207030, 0x89132011, 0x6f901818, 0x44c32008, 0x4920068f, 0x1808175a, 0x8208e6be, 0x06072bf8, 0x34113526, 0x37011f36, 0x04863236, 0xac431120, 0xff4b180a, 0x08662a18, 0x26081212, 0x050a0536, 0x20048436, 0x220f8e26, 0x8e08f008, 0xbd012d02, 0xfe0a0906, 0x06090a20, 0x03032d2d, 0x11820385, 0x8be00121, 0xc8fe2111, 0x430aa144, 0x00250678, 0xff080000, 0x06074bff, 0x22000933, 0x2e002a00, 0x3a003200, 0x48003e00, 0x33370000, 0x066f4315, 0x6b452520, 0x26cf8206, 0x013b013e, 0x4d363435, 0x042106ab, 0x058a6c34, 0x15231724, 0x03823733, 0x2105f545, 0x0f843216, 0x06141530, 0x3335012b, 0x20201632, 0x13130d20, 0x687b0d02, 0x25153705, 0x1a137016, 0x2f217013, 0x2217e8fe, 0x0f221717, 0x40604040, 0x0b876840, 0x0d13c022, 0xe0202f83, 0x802f0782, 0xfe30130d, 0x26261af0, 0x1610011a, 0x82401525, 0x400d2345, 0x3483822f, 0x82581721, 0x868f2055, 0x82a02009, 0x13c03428, 0xfdff0100, 0x8302cdff, 0x3700b301, 0x16010000, 0x4c010706, 0x717e07a5, 0x08178f17, 0x17163621, 0x07067c02, 0x0b0ffe0b, 0x0650061a, 0x3c450c06, 0x070d0704, 0x1c383c04, 0x070e0604, 0x82371c04, 0x2407820f, 0x041c373c, 0x820f8707, 0x453b211f, 0x01212f82, 0x21048219, 0x3582e6fe, 0x190b872d, 0x07652707, 0x06040804, 0x842f1f66, 0x1f302707, 0x08030666, 0x0f900704, 0x2f822720, 0x2e08d356, 0x00c00100, 0x00470023, 0x07153700, 0x4f113526, 0x0f7c0715, 0x011d2311, 0x4d183314, 0x27290949, 0x14153337, 0x3d32013b, 0x2b078f01, 0x13029ea0, 0x130d600d, 0x38080838, 0x012b0386, 0x13130d78, 0x0240fe0d, 0x5c299f06, 0xa0260af6, 0x02069f29, 0x1b83c001, 0x168a2020, 0x3e844020, 0x8a9e0221, 0x82382040, 0x010021ae, 0x40270482, 0x40014002, 0x18003700, 0x180f6f44, 0x96098b49, 0x21a58795, 0x8a842002, 0x05830020, 0x748b3020, 0x01200b86, 0x91847d82, 0x58230482, 0x8f580808, 0x82838203, 0xc0ff2a87, 0xc0010001, 0x00002f00, 0x6f991837, 0x1e3a4107, 0x2328a082, 0x14011d22, 0x0d1358a8, 0x20215f95, 0x41938340, 0x4020050e, 0x7766998e, 0x0009220a, 0x2f778219, 0x00410037, 0x36343500, 0x2311013b, 0x01352622, 0x23068a72, 0x3b34013d, 0x37240b83, 0x23111516, 0x2009b96b, 0x0dd45711, 0x8b5b2520, 0x13112c07, 0x0750400d, 0x08680109, 0x82083008, 0x0ea22e72, 0x60070980, 0x0e800907, 0x081408a0, 0x052e4933, 0x130d702d, 0xe0500709, 0xc0fe130d, 0x83010709, 0x40082999, 0x40280808, 0x8bfe110a, 0x2805b970, 0x0a117501, 0xfb05056b, 0x8230832f, 0xf0fe2153, 0x40205382, 0x310ac370, 0x00170009, 0x07170100, 0x012e0723, 0x07353727, 0x6e583236, 0x01373609, 0x3e6040c0, 0x0b100753, 0x3e16c053, 0x0b75162b, 0x0b350b1e, 0x2a15820b, 0x100b5380, 0xb73e5307, 0x823e2b16, 0x21148215, 0x07450b1e, 0x80023605, 0x0700c301, 0x21000f00, 0x00003400, 0x34262213, 0x15013b36, 0x21058402, 0xdd832223, 0x07061431, 0x2f262706, 0x3e323501, 0x13363701, 0x4a15011e, 0x2e2e05f9, 0x37352302, 0xc0363736, 0x1b25251b, 0x0382e020, 0x1b202908, 0x66492c01, 0x342d4d48, 0x1c3a2d23, 0x30130f2b, 0x32484dd2, 0x30382f4e, 0x1c2b0f13, 0x33232d3a, 0x36252001, 0xe5fe8025, 0x20080482, 0x262e32c0, 0x040a1142, 0x80100d02, 0x200c090b, 0x42111901, 0x152c1f26, 0x0b090c20, 0x020d1080, 0x06374604, 0xc001002d, 0x32002a00, 0x00003a00, 0x83163212, 0x0607267b, 0x0e16011f, 0x09767f02, 0x28069645, 0x3f262223, 0x2e273601, 0x09b87201, 0x2e07ae54, 0x1796d496, 0x03111d2a, 0x04020109, 0x424e0307, 0x4e2f0611, 0x09010907, 0x322c1103, 0x26263486, 0x84e62634, 0xc0012e05, 0x41225d83, 0x130b1536, 0x05070342, 0x07384303, 0x42070b29, 0x5a200b13, 0x82bd5d34, 0x20028729, 0x0e775c00, 0x1d00192f, 0x4a002f00, 0x35370000, 0x013b3634, 0x82918217, 0x061432b3, 0x01342622, 0x06013732, 0x37161415, 0x17353317, 0x05dc4f36, 0x29491720, 0x32272408, 0x83141716, 0x822220d2, 0x222324be, 0x8327012e, 0x17322e3f, 0x0960011e, 0x76601607, 0xd4360907, 0x08c48296, 0x3d00012d, 0x24f5fe32, 0x33207c71, 0x4f71241c, 0x837c323d, 0x07090907, 0x23182c23, 0x03020104, 0x01071002, 0x100b1202, 0x0503111c, 0x82061103, 0x4090270b, 0x09600907, 0x3b823701, 0xfed4962e, 0x0b0124d6, 0x714f3d32, 0x6f2020c0, 0x24230783, 0x8207097c, 0x1fc02e20, 0x02040118, 0x0f0b0602, 0x0310190e, 0x38078206, 0xf4ff0200, 0x7402c0ff, 0x1a00c001, 0x00003300, 0x07061601, 0x27222306, 0x82028506, 0x012e3209, 0x3336013f, 0x03173221, 0x37363732, 0x23061415, 0x37b68221, 0x1716013d, 0x37323316, 0x16352115, 0x261a5a02, 0x2c07072f, 0x1e581e1d, 0x1d2d0282, 0x2f07062d, 0x09411a26, 0x12940112, 0x26b58309, 0xfe0d1309, 0x820e0940, 0x09092dbf, 0x8001110d, 0x28490110, 0x2101065a, 0x012e0084, 0x68285a06, 0xeffe0f0f, 0xc5030101, 0x2682130d, 0x0103c52b, 0x64640401, 0xff030004, 0x209b82fa, 0x299b8286, 0x001b000d, 0x25000025, 0xe1463335, 0x15332308, 0x8b831625, 0x9e872620, 0x1b831120, 0x22012b3f, 0x40400126, 0x00ff0d13, 0x0140130d, 0x13120afb, 0x1213c0fd, 0x1109550b, 0x09119601, 0x05c45125, 0x83a04021, 0x0d13321e, 0xf2a00001, 0x10222210, 0xfe0e0e80, 0xfe10011e, 0x34ad82f0, 0x03000000, 0xe0ff0000, 0xa0010002, 0x1f000f00, 0x00002f00, 0x05d84a13, 0x18076652, 0x5607a050, 0xe14508b1, 0x3d262609, 0x33363401, 0x09585210, 0x0a207d18, 0x83600121, 0x84fe2016, 0x82012005, 0x821a8488, 0x09502204, 0x200a8707, 0x820a89b0, 0x5e062087, 0x033108eb, 0x0b000700, 0xb0001300, 0x0000b400, 0x27071737, 0x82028337, 0x32023408, 0x22061416, 0x36053426, 0x37012f34, 0x26012f36, 0x1827010f, 0x1808b845, 0x820c7855, 0x250f9d31, 0x16011f06, 0x5c82013f, 0x0b824382, 0x0f960720, 0x47822382, 0x1f867b82, 0x8b890f96, 0x90823720, 0x2dbc0725, 0x829e2d2d, 0x20028303, 0x05e2426a, 0x0202bb33, 0x05051d1d, 0x1c06050c, 0x0611222e, 0x06060b06, 0x20068711, 0x220d8405, 0x841c2d22, 0x861c2016, 0x852d2006, 0x88052026, 0x211d8426, 0x26822111, 0x05204682, 0x98204dca, 0xed20a782, 0x44200382, 0xb5200382, 0x01220382, 0xb4839671, 0x06039223, 0x218cf103, 0xdaa4050c, 0xa7823320, 0x240abb42, 0x002f002b, 0x09c7614d, 0x61012b21, 0x262006c9, 0x3f220988, 0xcc613601, 0x2717250c, 0x17152335, 0x12cf3a19, 0x33013d2c, 0x3b161415, 0x01363201, 0x127709f7, 0x35058705, 0x330d092e, 0x14a0141c, 0x090d331c, 0x80c08089, 0x40fe0d13, 0x238b130d, 0x0d09e929, 0x09071053, 0x85100709, 0x0d533605, 0x50092e09, 0x141c1c14, 0x40090950, 0x6010d040, 0x0d13130d, 0x2c228960, 0xfeff0100, 0x8202c0ff, 0x2500c001, 0x05cf5900, 0x2f010e25, 0x6d062601, 0xb7570a5f, 0x821e200a, 0x02372c96, 0x03040677, 0x050d0339, 0x430f0839, 0x0f2405fc, 0x0c063908, 0x04351282, 0x3f0fc306, 0x010f3f4c, 0x060d0360, 0x03050672, 0x0909041c, 0x267283fe, 0x040909fe, 0x8205031c, 0x030d2714, 0x1a1a1560, 0x00820015, 0x00000326, 0x4301bdff, 0x07257b82, 0x49003a00, 0x081f7c00, 0x581e1721, 0x2f2a0541, 0x16170701, 0x0e16011f, 0x93822601, 0x3f240282, 0x0f060701, 0x2e291b82, 0x36013f01, 0x33063e37, 0x231e8232, 0x17163707, 0x06231683, 0x82342622, 0xe4470816, 0x281c1c28, 0x090c2e1c, 0x170c190c, 0x11050917, 0x16040b2d, 0x171a0d03, 0x0b041203, 0x0f08173c, 0x07050c1a, 0x08181806, 0x22100606, 0x11071504, 0x070e0e09, 0x090c3823, 0x280814cd, 0x3b09050e, 0x09131a0a, 0x7b010a32, 0xb12205d8, 0x29821906, 0x190c0b3a, 0x0b324511, 0x170d5910, 0x4a0d0d06, 0x19420c0f, 0x040b3c22, 0x090b0e0b, 0x0e3c6582, 0x09010e20, 0x03020603, 0x1d222a01, 0x2c0a3499, 0x3c090c22, 0x0a1a1309, 0x02000932, 0x2208df44, 0x4e24001c, 0x2120118d, 0x26054357, 0x14062221, 0x52043316, 0x01210621, 0x05535ccd, 0x25251b3e, 0x1470011b, 0xfe07091c, 0x09090780, 0x1a430107, 0x131a1313, 0x141c4001, 0x1c1400ff, 0x40241c82, 0x141c251b, 0x0e221a82, 0xfe4ed009, 0x0c036305, 0x36002424, 0x8d784f00, 0x172c0809, 0x36321614, 0x3a273435, 0x37323101, 0x012e3436, 0x0626012f, 0x021e0607, 0x1706011f, 0x27013e16, 0x0e072226, 0x36031e01, 0x37323637, 0x2e2c0e82, 0x0e010f02, 0x33161701, 0x15063332, 0x91223b86, 0x028291ce, 0x6c828820, 0x0101022b, 0x0301030c, 0x07500305, 0x080b820b, 0x04050227, 0x06a80a1e, 0x1f060612, 0x02022062, 0x07060402, 0x46150307, 0x02060662, 0x04080601, 0x02060750, 0x01010c03, 0x20398202, 0x065d630a, 0x130d5730, 0x06020d13, 0x0506040b, 0x02180104, 0x08840606, 0xa8090a2c, 0x08100408, 0x08032626, 0x60820606, 0xa2190428, 0x04070b02, 0x22820106, 0x0b070b24, 0x35830305, 0x00090e22, 0x022d0082, 0xc0ff0000, 0xc0014002, 0x32002200, 0x0b496b00, 0x34023d27, 0x1d062226, 0x07735701, 0x3b363426, 0x11211101, 0x2b0f5b66, 0x09073002, 0x07a00709, 0x38503809, 0x09250784, 0x00021007, 0x21148310, 0x0583e0fd, 0xf26a0920, 0xa0102605, 0x28383828, 0x060d50b0, 0xfe600125, 0x86c001a0, 0x0720231a, 0x8c820009, 0x01c0ff22, 0x00210182, 0x080b8204, 0x16001136, 0x23001b00, 0x42003a00, 0x00004a00, 0x36070625, 0x2623013f, 0x1e271627, 0x3e231702, 0x07060701, 0x26173623, 0x37163327, 0x2e07010e, 0x14172702, 0x17140607, 0x08636818, 0x865e3520, 0x06152105, 0x21063b7c, 0x1d423513, 0x3e013305, 0x020c2d08, 0x0c022727, 0x0a04562d, 0x012e0108, 0x0f82220f, 0x2d2d0829, 0x4c022708, 0x83070f01, 0x0af73014, 0x0f0a0202, 0x29bafe0b, 0x01293737, 0x6fab1a46, 0x210805f0, 0x130de0fe, 0x31f00e12, 0x20291d15, 0x1e151d29, 0x15231205, 0x1d022a1e, 0x15973129, 0x1e292931, 0x1183072a, 0x050f962a, 0x0a0c3409, 0x0e0c1009, 0x40253c82, 0x261a3729, 0x083f834b, 0x40cbfe2b, 0x00121c12, 0xfdff0400, 0x8301beff, 0x1400c501, 0x78002c00, 0x00008300, 0x32331637, 0x010e0737, 0x2207012f, 0x16013f26, 0x29018317, 0x23061605, 0x26060727, 0x1d83012f, 0x36373628, 0x013e3237, 0x27833633, 0x22262722, 0x272c1882, 0x2627072e, 0x27012e27, 0x34363726, 0x3e210482, 0x83238201, 0x17362827, 0x36373216, 0x82011e17, 0x031e2247, 0x05d36917, 0x07255e82, 0x060e0706, 0x05834226, 0x012e4b08, 0x16612223, 0x3411121e, 0x25061103, 0x030a0934, 0x030d0c2e, 0x01040906, 0x090a0321, 0x11062534, 0x12113403, 0x0201161e, 0x02020904, 0x0c0d0203, 0x0c1c0a4a, 0x0c091809, 0x04030a1c, 0x07020404, 0x16030903, 0x0f050606, 0x00820611, 0x050f113a, 0x19160606, 0x110a0208, 0x150a1516, 0x090f1116, 0x04061615, 0x0a030801, 0x2b081f8a, 0x07030a03, 0xa8050503, 0x19374e37, 0x55271a2b, 0x08800a15, 0x02260603, 0x0a70080e, 0x02010104, 0x0e085905, 0x03062602, 0x150a8008, 0x02240d82, 0x0a040101, 0x06223383, 0x06820706, 0x03030424, 0x01820201, 0x1517062a, 0x16111009, 0x17150a16, 0x16206682, 0x0822de82, 0x65850b01, 0x05051027, 0x040f1607, 0x2a75820e, 0x160a1517, 0x09101116, 0x82061715, 0x01033133, 0x50c90504, 0x1a283838, 0x00001a2c, 0xffff0200, 0x80250482, 0x11008001, 0x0d5e1800, 0x012f280c, 0x013f3426, 0x18053336, 0x3b1a4971, 0x251b4002, 0x8dfe1b25, 0x0997131a, 0x1a139709, 0x3e3e1e01, 0x0c160c0c, 0x0b3e3e0b, 0x0c200682, 0x012f0d8c, 0xff1b2580, 0x13251b00, 0x0a1a0a96, 0x93fe1396, 0x23318623, 0x05000000, 0x270ad355, 0x00370027, 0x005d004d, 0x320dcd65, 0x07333634, 0x06171415, 0x013e2307, 0x030e2337, 0x82262223, 0x16322212, 0x0eb1581f, 0xc55b3320, 0x27262e06, 0x17011e23, 0x36272623, 0x3e33013d, 0x0cb57e01, 0x01263882, 0x13130d70, 0x0483600d, 0x3606402d, 0x390b3211, 0x0c03502a, 0x830a130f, 0x201423e2, 0x1e882507, 0xc4820220, 0x821b2521, 0x2a502b12, 0x11320b39, 0x07550636, 0x1d881420, 0x86a00121, 0x324a8245, 0x0c0e4838, 0x4f303f27, 0x0a0f0919, 0x25362506, 0x89e81216, 0x1001211c, 0x192b1184, 0x273f304f, 0x12480e0c, 0x89f0fe16, 0x0200211c, 0xc033ff82, 0xc101c701, 0x3b003100, 0x23050000, 0x35262722, 0x69373634, 0x322109c9, 0x058f4416, 0x17161524, 0xca792737, 0x05336805, 0x1516073a, 0x27060714, 0x26210706, 0x2335012f, 0xdc2e0115, 0x341a1226, 0x0907102c, 0x2a065f54, 0x27121510, 0x0b0c0c09, 0x84340c0b, 0x2b093a05, 0xdc121a1b, 0x00011325, 0x60182513, 0x332c2140, 0x9a195934, 0x06200709, 0x2204840a, 0x82110c9a, 0x822e822f, 0x2e05832f, 0x352e2b09, 0xfd212c33, 0x16272716, 0x60b6b60d, 0x012a088f, 0x00c00180, 0x001b0009, 0xab410023, 0x82212005, 0x033328b2, 0x14152135, 0x82012b06, 0x26222604, 0x2223013d, 0x55981826, 0x60013f07, 0x80fe130d, 0x01200d13, 0x401b2580, 0x40253625, 0x14ca251b, 0x0e140e0e, 0x0d13c001, 0x1d82e0e0, 0x2020c023, 0x8316831b, 0x604d201f, 0x5b4b06fd, 0x00342a09, 0x00480040, 0x005c0052, 0x0a1d4264, 0x2b216d87, 0xc8421801, 0x180d840d, 0x53084457, 0x25200560, 0x20063e51, 0x182c8234, 0x29075a60, 0x22233537, 0x14011d06, 0x11823b16, 0x34013d25, 0x67012b26, 0x0121074f, 0xbed018e8, 0x58c0201e, 0x3d2c05c9, 0x1a13131a, 0x0d70a013, 0x900d1313, 0x70210584, 0x21128473, 0xd0184001, 0x382721c5, 0x10080810, 0x82b0fe08, 0x1a132241, 0x0a4f425d, 0x63f0fe21, 0x01370897, 0xc0ffffff, 0xc0010202, 0x00005b00, 0x07141625, 0x23222306, 0x83161716, 0x26272407, 0x82141527, 0x013d21cf, 0x2505104e, 0x37363726, 0xd96e2322, 0x2e372405, 0x72342702, 0x1e23050a, 0x82301702, 0x013e300a, 0x17323637, 0x1415041e, 0x37023e15, 0x82323336, 0x020e3544, 0xf7011607, 0x493c0909, 0x050c0909, 0x07040703, 0x28250302, 0x28239482, 0x82020325, 0x0326080d, 0x09090c05, 0x09093c49, 0x2b1c2c20, 0x0709030b, 0x220b0102, 0x16212153, 0x04120408, 0x10150904, 0x2253210d, 0x2a83010b, 0x0b03023f, 0x582d1c2b, 0x1f051305, 0x07091116, 0x1b0c0105, 0x40080840, 0x05010b1c, 0x16110907, 0x0818821f, 0x2109112a, 0x020b2356, 0x010a0602, 0x1a290a02, 0x70350103, 0x07070d28, 0x302e1005, 0x01032146, 0x020a291a, 0x09060501, 0x2156230b, 0x8205a747, 0x02bf2bfb, 0x00c10100, 0x00270014, 0x06570100, 0x013f2109, 0x23060756, 0x26270517, 0x1f330c88, 0x010f1601, 0xf9012206, 0xd8fe0707, 0xa8071407, 0x82280707, 0xf06f3a06, 0xfe071406, 0x0c0c70e4, 0x050d052d, 0x0d049837, 0x0c0c2d05, 0x010e04d0, 0x821d8211, 0x20288229, 0x35298214, 0x07f07007, 0x0c709207, 0x05052d0b, 0x05059737, 0xd00c0b2d, 0x00820005, 0xfbff022f, 0x4002c0ff, 0x1700c001, 0x00002d00, 0x0c4d7f05, 0x36262725, 0x82322133, 0x13152178, 0x08064560, 0x33163755, 0x26343632, 0x07062223, 0x01013e23, 0x08171128, 0x111708f0, 0x0c0ba938, 0x116e0111, 0xc0a90b0c, 0x3c54543c, 0x13242328, 0x38382814, 0x0d2c1a28, 0x104a0f34, 0x08081117, 0xa97d1711, 0x0c1e1e0c, 0xd0017da9, 0x15547854, 0x50380924, 0x2b161a38, 0x84020035, 0x01002d88, 0x00190080, 0x01000029, 0x2115011e, 0x48142644, 0x01290fab, 0xfe6e5220, 0x10526e40, 0x05915b07, 0x10070923, 0x210a83d0, 0x058320fe, 0x0b3d0128, 0x7e54547e, 0x1682130b, 0x25820f83, 0xf178fe20, 0x00002a0a, 0xff000004, 0x010602ba, 0x09836ac6, 0xec822520, 0x010f0624, 0x5d4b2f06, 0x34352407, 0x8236013f, 0x011f2202, 0x18028216, 0x59088b41, 0x01320fbc, 0x241307fe, 0x27452613, 0x1e2a4d2a, 0x0c061f37, 0x0e8b0e02, 0x59b1fe21, 0xb3200ac8, 0xc1240b84, 0x2645272a, 0x072b3382, 0x371f060c, 0x0a4c2b1e, 0x8b1c200b, 0x13bd2110, 0x8d202683, 0x93200584, 0xaf860584, 0xc501052c, 0x26001e00, 0x36002e00, 0xaf980000, 0x011e1725, 0x4b161433, 0xae90073d, 0x1306ff24, 0xae901423, 0x012a2627, 0xfe4a354a, 0x22ac90d9, 0x96262ac0, 0x823420ac, 0x91712030, 0x0a4754aa, 0x31001822, 0x200a8959, 0x0b451815, 0x33352a08, 0x11151632, 0x15331101, 0x53611823, 0x3435260c, 0x32013b36, 0x05a54416, 0x0a0e282b, 0xa00e0a30, 0xfe130de0, 0x240583e0, 0x0e0e0a28, 0x2014850a, 0x841a8460, 0x48012a10, 0xff0d1360, 0xfe480100, 0x210882b8, 0x19880001, 0x0800003a, 0x20000000, 0x60018002, 0x1b000f00, 0x33002700, 0x4b003f00, 0x67005b00, 0x1811774c, 0x210b7d5f, 0x83821427, 0x34013d27, 0x1522012b, 0x180ba217, 0x180f85ae, 0x8307bb5e, 0x0b565d3a, 0x08100124, 0x028208e0, 0x1008e823, 0x061c5408, 0x28250690, 0x07d00709, 0x87048409, 0x8401202e, 0x130d2adf, 0x00010d13, 0x00ff130d, 0x20008308, 0x09205d48, 0x05864d85, 0x83303021, 0x2004833d, 0x4c278479, 0x21240cff, 0x41002900, 0x3809ff4c, 0x3e16011f, 0x37012f01, 0x012e013e, 0x27010f06, 0x1f010e26, 0x1e060701, 0x08806901, 0x37273725, 0x8b012e36, 0x013f221a, 0x22348217, 0x8291ce91, 0x1d982e02, 0x07051107, 0x01051c1c, 0x040a0806, 0x300d861d, 0x08100507, 0x26263463, 0x1cd32634, 0x0f06071c, 0x84188b08, 0x06ee4c0b, 0x1d863e20, 0x080a0425, 0x89050106, 0x0604222b, 0x223c82ad, 0x889d3426, 0x21448638, 0x24840604, 0x00003408, 0xff000003, 0x010002be, 0x000800c0, 0x00480040, 0x07172500, 0x022f010e, 0x020e3736, 0x0f272223, 0x2e220601, 0x37273501, 0x36262726, 0x1736013f, 0x79371716, 0x173408a9, 0x30270706, 0x31223022, 0x32331607, 0x1f363736, 0x26011e01, 0x0806594c, 0x37c90176, 0x070e0107, 0x522c3736, 0x315c4c1b, 0x36473234, 0x05060803, 0x17214707, 0x1c060303, 0x140e090c, 0x50380c44, 0x23340c38, 0x02023330, 0x39222343, 0x0d081f64, 0xea04061c, 0x1a13131a, 0x3a606813, 0x17030808, 0x297e115f, 0x7b13203d, 0x06040117, 0x1c7c3a04, 0x030d0622, 0x150d0810, 0x18167612, 0x28383828, 0x24591618, 0x0c74580d, 0x070d2f37, 0xb40d040f, 0x4f081347, 0x012f051b, 0x3300a101, 0x00004e00, 0x011d1601, 0x4d350714, 0x062005b9, 0x26210887, 0x08118627, 0x013d2620, 0x33033e34, 0x36371732, 0x011f3233, 0x0f141516, 0x35363201, 0x27012e34, 0x22230607, 0xf382012f, 0x18013f21, 0x2807e9a7, 0x4851af01, 0x340e140e, 0x2104823c, 0x0482343c, 0x30483408, 0x132d523e, 0x046e3739, 0x09040905, 0x56f90703, 0x1a27157a, 0x09040576, 0x07020905, 0x56181a49, 0x015f387a, 0xa0391d46, 0x0a66202e, 0x770a0e0e, 0x8368020f, 0x02682307, 0x0783770f, 0x2e20662d, 0x162d1ea0, 0x470a020d, 0x820d0703, 0xc5052a45, 0x140a1b25, 0x034d0610, 0x280e8208, 0x022f0508, 0x1d121a26, 0x064b6f11, 0x0140022d, 0x000b00a0, 0x00200016, 0x1836002a, 0x210e815f, 0xc0602f36, 0x36173805, 0x2e373216, 0x0e222301, 0x35370701, 0x15072226, 0x36321614, 0x82023e17, 0x24d582f3, 0xeea91617, 0x080282a9, 0x0f08cd2a, 0x4644381a, 0x3c3c153b, 0x1522061f, 0x0412190e, 0x2040207d, 0x2f263426, 0x44213a26, 0x080f1a38, 0x4ba00106, 0x4b35c035, 0x37080483, 0x2c1b1d53, 0x1716260a, 0x19100a26, 0x0c191403, 0x0d8d0d14, 0x1a0d0303, 0x076d2626, 0x160f1c15, 0x1b2c0a26, 0x0000191d, 0xff000001, 0x010002c0, 0x002100c0, 0x0f060100, 0x2405ca6b, 0x010e0706, 0x0acb6b23, 0x3e373634, 0x09000206, 0x0e516a2d, 0x3a659310, 0x203f1f4b, 0xc56b0739, 0x04023508, 0x5b443205, 0x012c564f, 0x356e7dc0, 0x31311619, 0x39040308, 0x2a08c36b, 0x33222eb3, 0x182e3857, 0x41000512, 0xc0220517, 0x6f828001, 0x1d00112b, 0x54002900, 0x00005d00, 0x55651813, 0x1135260a, 0x013b3634, 0x0ae24907, 0x250ba162, 0x2e272213, 0xe46b0701, 0x012b2305, 0x25530622, 0x3f2b0805, 0x17161701, 0x3f323132, 0x17323601, 0x32013b16, 0x23263436, 0x011d1613, 0x32333523, 0x0a0ee017, 0xfe0a0e88, 0x0e0e0ab0, 0x61a0c80a, 0x502106b3, 0x08088208, 0x0307c123, 0x0e0e2b09, 0x12062206, 0x070c0803, 0x0c070909, 0x0b04170e, 0x010b0311, 0x0308040a, 0x1b0c030e, 0x2015832f, 0x95651849, 0xd001270e, 0x10480e0a, 0xa2180808, 0xff3807d1, 0x09120600, 0x1111290c, 0x0e090836, 0x1f0e1009, 0x09010a32, 0x1806060f, 0x01250d82, 0x060a0717, 0xef451880, 0x22fb8609, 0x93300027, 0x361324f7, 0x5b012b26, 0x22260913, 0x16011f06, 0xca953732, 0x08084c32, 0x0709410b, 0x41090720, 0x6008080b, 0xad050e05, 0xfe24a792, 0x501407a5, 0x5027c483, 0x05600714, 0x85520105, 0x0003368e, 0x02c0ff00, 0x00c00147, 0x00170008, 0x01000033, 0x33352315, 0x276e8232, 0x010f1617, 0x013d2606, 0x352e0e82, 0x05173634, 0x013b1614, 0x23061415, 0x795d2221, 0x84152006, 0x22233a11, 0x80011506, 0x070a0680, 0x0cbb0762, 0x1407600c, 0x07144040, 0x0709e5fe, 0x086c41b0, 0x880a0e27, 0x010907b0, 0x22ff8246, 0x82c40762, 0x20b18324, 0x2bad8340, 0x8809077c, 0x0a0e0e0a, 0x0e0ad001, 0x80230882, 0x44000709, 0xc02205e3, 0x93820002, 0x12000922, 0x695f9383, 0x0568180a, 0x013d2213, 0x318b8233, 0x2f36013f, 0x1d062601, 0x34112301, 0x10013b36, 0xed827070, 0x07f00126, 0x070a0680, 0x0909f518, 0xfd828020, 0x8024a584, 0xa0c80a0e, 0x22059658, 0x820a07b7, 0x0a812499, 0x83b8fe0e, 0x8388208b, 0x86602098, 0x080123a5, 0x92820e0a, 0x97820020, 0x01c0ff23, 0x33938280, 0x000c0003, 0x002a001e, 0x00420036, 0x25000052, 0x25352315, 0xc0429593, 0x0b74471d, 0x4208e741, 0x352505c5, 0x01c02001, 0x42b78e19, 0x01210fb2, 0x05c04200, 0x2606154e, 0xc00907e0, 0x8d974040, 0x0f9e42c8, 0x2006e260, 0x08354ad0, 0x2b0c8743, 0x001a0008, 0x00320026, 0x0100006d, 0x9b43cfa5, 0x1315220a, 0x24d1823e, 0x012f012e, 0x05c74826, 0x182aa265, 0x4313a269, 0x90250c9e, 0x0f081912, 0x25926509, 0x69180120, 0xa24312cc, 0x08582e05, 0x08081008, 0x1a01e8fe, 0x0d120a12, 0x0c8e6503, 0x08081823, 0x65178218, 0x16820f8e, 0x08f34f18, 0xab440120, 0x003b2405, 0x434c0043, 0x262414b1, 0x3627010f, 0x230eca41, 0x1733013d, 0x5907cf59, 0x362a06af, 0x3523012f, 0x14163233, 0x69433706, 0x0c984407, 0x0b0c4528, 0x2521211e, 0xba4b501b, 0x3b132506, 0x0b0b0b1e, 0x1e201482, 0x0b220482, 0x0d821e0b, 0x30308022, 0xc9201c82, 0x18057343, 0x2509236a, 0x0e0ad001, 0x2282c5fe, 0x26122124, 0xc354251b, 0x3b302306, 0x3e820c1e, 0x1e1e0c23, 0x8307830c, 0x3722083e, 0x090e0920, 0x07800696, 0x00000762, 0xff000004, 0x014102c0, 0x003700c0, 0x00450040, 0x3700004f, 0xe943011e, 0x15072214, 0x16744526, 0x3f011e26, 0x13323601, 0x0733cf87, 0x23071737, 0x0f141625, 0x36372701, 0x06da1732, 0x44800c14, 0x80210b0b, 0x166e4506, 0x08041625, 0x85a90e03, 0xa36031d7, 0x0145a244, 0x1c070719, 0x15071c44, 0x0d0b1808, 0x4405f24a, 0x2f240528, 0x0501527f, 0x250f6b45, 0x060f0a02, 0xd8842801, 0x44a2eb26, 0x1508f9a3, 0x73453c84, 0x36322928, 0x2226012f, 0x1606010f, 0x0482ff83, 0x3d363224, 0x3e463701, 0x45412014, 0x60200669, 0x18087b45, 0x200fb16b, 0x27a88201, 0x0714a0fe, 0x60050560, 0x20077945, 0x050246f7, 0x0000022f, 0x0002bfff, 0x1700c701, 0x00002600, 0x095f6025, 0x27013f22, 0x2e050d52, 0x17323637, 0x07273713, 0x06141617, 0x82012f22, 0x07260893, 0x0909f701, 0x1c501cde, 0x5f1c1c75, 0x160c0c56, 0x52560b0c, 0x5b091b09, 0x3b3ba331, 0x091b1209, 0x050e513b, 0x1182e702, 0x821cde21, 0x82502023, 0x820b2024, 0x820c2024, 0xfe092324, 0x248330e9, 0x09121b26, 0x050d523b, 0x21090f41, 0x83824002, 0x22000a24, 0x85833100, 0x6a821520, 0x34352625, 0xa5013f36, 0x00022890, 0x25362540, 0xa2071020, 0x5d802a97, 0x25251b23, 0x1840101b, 0x08a1a57f, 0xfeff0627, 0x0102c0ff, 0x0d00c201, 0x41002d00, 0x6e005c00, 0x00009100, 0x15163236, 0x23060716, 0x36372622, 0x1e373427, 0x240d8201, 0x2e27020e, 0x230e8301, 0x06222726, 0x01200f83, 0x262c0e84, 0x011e2636, 0x16170607, 0x010e1407, 0x34822185, 0x17243282, 0x07141514, 0x2e2e1287, 0x07222701, 0x36012e06, 0x16053637, 0x59831415, 0x27343523, 0x2b0e8226, 0x1627021e, 0x2726010e, 0x2623042e, 0x15254682, 0x23010e14, 0x21788230, 0x4682013d, 0x32173508, 0x14f6021e, 0x051f020e, 0x020b0f12, 0x2b17021e, 0x010c013e, 0x09090e04, 0x010b020c, 0x1e191722, 0x11020f01, 0x0e020b13, 0x493b0101, 0x1d06020f, 0x050b0101, 0x7c081e84, 0x2801010a, 0x6d4c8906, 0x0e010601, 0x020d0a0b, 0x51010106, 0x09101239, 0x090b0511, 0x06120118, 0x0e0a0a0e, 0x0a0b0205, 0x06070a04, 0x10040627, 0x1e0c0514, 0x15282622, 0x01393c58, 0x01060b07, 0x47010d0a, 0x3e1f6c4b, 0x0eca3036, 0x126e720a, 0x6b690915, 0x3c01600a, 0x044b4d2a, 0x02010809, 0x48470a10, 0x20012017, 0x094c4d15, 0x0a10040b, 0x3c294946, 0x08130d1a, 0x3c3e2e23, 0x08208503, 0x3f393759, 0x013a0831, 0x030a4a6b, 0x0e083536, 0x0a100101, 0x4f373938, 0x0a020401, 0x05021114, 0x0a2c1c7a, 0x27090f0e, 0x02110a17, 0x08050201, 0x0b140856, 0x1c110903, 0x01091016, 0x1852393c, 0x0f060b06, 0x4866150a, 0x1d10014a, 0x0000002a, 0x00feff02, 0x01400220, 0x5a180060, 0x1e3505d7, 0x020e1402, 0x27262223, 0x3f260607, 0x36262701, 0x013e011f, 0x09dd7016, 0x47013b08, 0x28406130, 0x30614028, 0x5826703e, 0x19021409, 0x0a140219, 0x8c702657, 0x090f0f13, 0x03070905, 0x37296001, 0x37331a33, 0x422a3c29, 0x6e0a0b07, 0x070b0a6e, 0xb83c2a42, 0xb770140e, 0x06002105, 0x10738518, 0x2f002725, 0x18240000, 0x2409ed4f, 0x26220614, 0x79621834, 0x84142008, 0x1722287e, 0x012b3432, 0x50331422, 0x01220718, 0xbc18144e, 0x11320960, 0xce9191ce, 0x3c2a5091, 0xbe3c2a2a, 0x10801010, 0x0a838210, 0x82f82a21, 0x20028775, 0x212182ce, 0x9682ce91, 0xf8232582, 0x84682020, 0x4500202c, 0x54180547, 0x1f22098f, 0x6b4e2700, 0x87162009, 0x3616227b, 0x06df4b27, 0x37160622, 0xe25b8182, 0x37518406, 0x1a138891, 0xa81a1313, 0x05010d09, 0x28131e3d, 0x0d010322, 0x29343109, 0x13201483, 0x2006354e, 0x2c0c842a, 0x090c03d7, 0x1d0d221b, 0x030c0913, 0x8235850f, 0xff02327f, 0x02c0fffa, 0x00c00106, 0x001b0017, 0x15070100, 0x13d25233, 0x17210727, 0xd6f60121, 0x07bf5238, 0x1110d631, 0x17bc0117, 0x88fe4a11, 0x01180130, 0x52c0d686, 0xc02905b2, 0x2a2a10d6, 0x00003006, 0x0a674102, 0xd3896a20, 0x36340526, 0x012e013b, 0x2206c972, 0x8206010f, 0x011d2802, 0x013b1614, 0x83011f32, 0x15162205, 0x25128214, 0x2b26012f, 0x1b892201, 0x23821620, 0x33161728, 0x36013f32, 0x60523637, 0x013d2205, 0x75238334, 0xcd4d052d, 0x201f8405, 0x05164135, 0x09980136, 0x590e1207, 0x1906093b, 0x03080508, 0x090c0e06, 0x05065a07, 0x0a250182, 0x2f0b0907, 0x08108206, 0x12010d2e, 0x20161b0f, 0x09071917, 0x0f110808, 0x0e0b0d08, 0x01040104, 0x09031302, 0x05080807, 0x0705040d, 0x04030203, 0x05031304, 0x090f0304, 0x32064c41, 0x3a090747, 0x07150952, 0x050c0709, 0x0c030401, 0x82090704, 0x06093855, 0x0210030c, 0x0b060703, 0x0e1b1015, 0x07092017, 0x0f11131d, 0x8210140c, 0x04162645, 0x05041903, 0x2f31820b, 0x020f0614, 0x0c030101, 0x04080203, 0x0300000a, 0x220a2341, 0x416e005f, 0x36220a25, 0xd8823435, 0x2e012b23, 0x08944e01, 0x3b23e285, 0x82363201, 0x34352419, 0x8236013f, 0x05bb4a0b, 0x82023f21, 0x07062c13, 0x2f061415, 0x16070601, 0x5b1f1617, 0x1d270544, 0x1e171401, 0x41150701, 0x37230536, 0x82173736, 0x07272657, 0x06010f06, 0x41228214, 0x21080628, 0x0e090e4a, 0x04430d09, 0x0e100616, 0x1f08070b, 0x05060203, 0x06030209, 0x0f020405, 0x020a0201, 0xae820904, 0x06063208, 0x0a060604, 0x1d0b0b05, 0x080f0c0c, 0x19204718, 0x010a0809, 0x1f12110f, 0x0d0b0910, 0x11161501, 0x05010401, 0x021d5f03, 0x04060d15, 0x12040413, 0x062f4105, 0x130ed523, 0x2b60820d, 0x06071e02, 0x03090703, 0x0804010a, 0x1f23fd82, 0x82040201, 0x0802215b, 0x30085889, 0x090b0201, 0x1f0c0409, 0x0c0d2647, 0x090d0109, 0x13091109, 0x0b090d20, 0x051b0a1f, 0x070e022f, 0x08640304, 0x2a2f0b0f, 0x1e050306, 0x1b060e06, 0x0c3f4108, 0x6d003822, 0x21093f41, 0xc74d3717, 0x013d2206, 0x05d35a34, 0x2605d24f, 0x3f323317, 0x42163601, 0x36200569, 0x10821c85, 0x17323323, 0x52278335, 0x0f2505bf, 0x012b0601, 0x08814222, 0x85058442, 0x50332032, 0x79410636, 0x053f4105, 0x11ed5308, 0x02010601, 0x09080305, 0x3303040b, 0x75531f1f, 0x05073e03, 0x02080313, 0x060a0417, 0x05050907, 0x05050606, 0x05b00907, 0x0604020c, 0x01040103, 0x01020403, 0x0c050206, 0x02180203, 0x03062703, 0x0a07040c, 0x03160202, 0x0d080b03, 0x070f0605, 0x3b410905, 0x1d5f3207, 0x08040302, 0x06040a4e, 0x26030902, 0x0f53750a, 0x27598211, 0x092d0401, 0x07090709, 0x663c5985, 0x0c040718, 0x040d0303, 0x02030e03, 0x1101050d, 0x02100102, 0x02030a06, 0x0106050c, 0x4d825082, 0x00820020, 0x6b420d20, 0x000e360a, 0x001d0015, 0x00250021, 0x002d0029, 0x00350031, 0x0044003d, 0x0a3f414b, 0x15233525, 0x59331614, 0x36200613, 0x82078744, 0x21128215, 0x078e1715, 0x83071345, 0x32332217, 0x05984336, 0x1d411520, 0x28903205, 0x08080d13, 0x1320130d, 0x1a13131a, 0x30303035, 0x20038670, 0x2210831b, 0x82286013, 0x4222821c, 0xf720062c, 0x38200e83, 0x95203383, 0xe0231e84, 0x8d382828, 0x13682102, 0x93241883, 0x25132808, 0x28213982, 0x438b1800, 0x8926200f, 0x520420c5, 0xaa5206a2, 0x32142e07, 0x26363736, 0x27220607, 0x17010e26, 0x21a08516, 0x68845501, 0x2d056356, 0x01075960, 0x982f090d, 0x060a062f, 0x93860701, 0x71841720, 0x0282bd82, 0x2736ed2c, 0x0f030c09, 0x0a04020f, 0x7b8c2706, 0x23001524, 0x7b893200, 0x0706252e, 0x32161716, 0x26373637, 0x07222627, 0x12200d8c, 0x38278794, 0x0f01010f, 0x85051506, 0x8ca52006, 0x942b200d, 0x16102698, 0x09152221, 0x21059009, 0xa58cd0fe, 0x240d6346, 0x002b0017, 0x25a78939, 0x07062224, 0x35591614, 0x36162405, 0x8d272627, 0x042e210f, 0x0620ac8a, 0x30083341, 0x0223265b, 0x0c0a030c, 0x03090d26, 0xd602010d, 0x250e8b13, 0x0e0b0801, 0xb188190f, 0x410d0921, 0x012e0849, 0x03071e29, 0x16161105, 0x07030511, 0x0d8b291e, 0x12160c26, 0xe8fe070c, 0x0339b886, 0x0027090c, 0x00050000, 0x01c8ff00, 0x00c101f8, 0x001d000b, 0x0041002d, 0x2d158250, 0x34352622, 0x17323637, 0x07141516, 0x05823732, 0x2622062c, 0x32333634, 0x14150617, 0xbf8d2616, 0x0e3acf9c, 0x01161701, 0x2a1c28dc, 0x2a020802, 0x140b0930, 0x9191ce91, 0x083e4a67, 0xdfaa4c2f, 0x2f052a42, 0x17131c40, 0x37030337, 0x033c1317, 0x91673330, 0x29254a82, 0x2e210e12, 0x21e48808, 0xf28b0406, 0xf28d0d82, 0x41055142, 0x19240dab, 0x3a002700, 0x2e09ab41, 0x1f160617, 0x013f1601, 0x26272636, 0x82010f06, 0x0d9c4104, 0x6f632520, 0x2e272506, 0x010e0701, 0x37202a82, 0x3205e242, 0x100e055a, 0x14020846, 0x0e101104, 0x07020418, 0x41691a0e, 0x0e320d9d, 0x04050e10, 0x0709120e, 0x0e180402, 0x14041110, 0xfb420802, 0x0f1f3306, 0x0212041c, 0x1b0f4608, 0x0d110302, 0x0d040208, 0xa341fbfe, 0x04932f0a, 0x0c090f1c, 0x08020203, 0x0302110d, 0x65820f1b, 0xd3480020, 0x0016240e, 0x89310023, 0x060522c3, 0x2c988214, 0x37012f36, 0x012e3436, 0x0717010f, 0x24d18306, 0x26012f34, 0x85cd8d06, 0x1a0134bb, 0x08500606, 0x2121070e, 0x04080603, 0x072121f3, 0x8450080e, 0x8d582012, 0x84b820c3, 0x032d352f, 0x0530030e, 0x2828080f, 0x02060904, 0x28281203, 0x30050f08, 0xfe211485, 0x08b98af0, 0xff060028, 0x02bfffff, 0x00c10101, 0x0017000b, 0x003c002f, 0x005a004a, 0x26220100, 0x36373637, 0x07141632, 0x16320106, 0xc4540607, 0x01362705, 0x0e163736, 0x40442702, 0x26072405, 0x8217023e, 0x27162119, 0x262abd85, 0x012e022f, 0x3f011e07, 0xd3833601, 0x1f16062b, 0x27013e02, 0x0e070626, 0x31028201, 0x36321617, 0x06059a01, 0x0e100b01, 0x110e1d2a, 0x0b8585fe, 0x0e1e2931, 0x217f0111, 0x79142918, 0x050747a8, 0x8a171902, 0x1787350b, 0x5a070901, 0x340a020a, 0x5d140105, 0x17021401, 0x05070401, 0xdc381084, 0x05171922, 0x6b170412, 0x0802082c, 0x01403c15, 0x48050550, 0x291e0e10, 0xd6205a82, 0x012d0a88, 0x4707050a, 0x291479a8, 0x1f112019, 0x2d0b8a02, 0x0a065b28, 0x14021702, 0x0a340501, 0x6182f002, 0x07055a24, 0x10840104, 0x6122602e, 0x08010724, 0x04176b2c, 0x1c0f0512, 0x240cdf44, 0x002e0020, 0x09c74147, 0x010e1724, 0xfd84011f, 0x3616172d, 0x3637012f, 0x26022f26, 0x41010f22, 0x25200dc3, 0x02201686, 0x91222d8d, 0x028291ce, 0x03055f39, 0x01061a03, 0x1f1f0507, 0x06010804, 0x0503031a, 0x0a020f23, 0x41460f02, 0x27200dd9, 0x23201888, 0x05233189, 0x42060107, 0x103906a3, 0x19030901, 0x02060423, 0x06021111, 0x03192304, 0x20050109, 0xfe200404, 0x0aef41f4, 0x1587c420, 0x2d8d0520, 0xff060038, 0x02c8ffff, 0x00b80181, 0x0017000b, 0x00460036, 0x00640056, 0xfb413700, 0x1605380a, 0x27220614, 0x36262726, 0x16071617, 0x31011e17, 0x2622010e, 0x42013f27, 0x3e26060d, 0x1e323301, 0x20821701, 0x7e440620, 0x012e210e, 0x200e8e44, 0x09fa4506, 0x16170623, 0x09084266, 0x53022a08, 0x0e291e0e, 0x06010a11, 0x0c724805, 0x20020118, 0x20738873, 0x0c180201, 0x0b171902, 0x5f8d0a0d, 0x06456c3f, 0x1c140b0d, 0x0d9b444b, 0x0e8dc320, 0x3b411620, 0x42c0200c, 0x1126080e, 0x0e1e290e, 0x70834711, 0x82520321, 0x4439235e, 0x5d823944, 0x1f11522a, 0x5d020202, 0x3d653a7f, 0x1c210782, 0x19ad4462, 0x45ef1e21, 0x042e0d9b, 0xbfff0000, 0xb801f001, 0x25001d00, 0x3d482d00, 0x14152506, 0x3d360706, 0x22061841, 0x82262722, 0x151724e4, 0x6f2e1714, 0x072412f9, 0x021e013a, 0x06241c82, 0x022e2223, 0x33323282, 0x011f1636, 0x013f3216, 0xce91023e, 0x09485991, 0x8b47062a, 0x0d092805, 0x092a0601, 0x479b5948, 0x37080aa8, 0x02010103, 0x26040704, 0x11170d1b, 0x0b01120a, 0x02010315, 0x0201020e, 0xb8010f0b, 0x7e4f6791, 0x2e14141b, 0x0c09241b, 0x030f0f03, 0x1b24090c, 0x1b14142e, 0x57674f7e, 0x3a0aca47, 0x0401029a, 0x251b4002, 0x0d18110b, 0x0b05093f, 0x0707080b, 0x020b0708, 0x8b000000, 0x003b27db, 0x00550048, 0xad992500, 0x16320222, 0x1726f69a, 0x012f3436, 0x2c430626, 0x37272306, 0x7d4b2636, 0x01362206, 0x20c49825, 0x1400418d, 0x4506d621, 0x0728060a, 0x21f3080e, 0x090d0721, 0x20050945, 0x21c99649, 0x0a416c01, 0x4541201a, 0x08220829, 0x2745050f, 0x0577470c, 0x3305db41, 0x00250007, 0x00400038, 0x0000005e, 0x06141632, 0x26342622, 0x6318ee9d, 0x17200e3a, 0x22053e4f, 0x41171406, 0x4b4f1940, 0x94af2006, 0x06c021f4, 0x0f626318, 0x34880b23, 0x20868226, 0x183d410d, 0x0e080127, 0x140e0e14, 0x20fd9abe, 0x8b631850, 0x3009210d, 0x26225082, 0x48418d34, 0x0fd34616, 0xf9520f20, 0x013c2905, 0x14163236, 0x34122206, 0x2005614a, 0x2bfb8f37, 0x17062607, 0x3632011e, 0x012e3637, 0x0d396418, 0xd591bb20, 0x0d09e92e, 0x60590701, 0x06010759, 0x982f060a, 0x0c3b6418, 0x09060723, 0x3a641808, 0x6109300a, 0x27090c03, 0x06273636, 0x0f02040a, 0x82060000, 0x012033a0, 0x006001c0, 0x001f000f, 0x003f002f, 0x005f004f, 0x5b183700, 0x0f9d0f94, 0xd8793320, 0x673b200e, 0x0f8f0e53, 0x0d603326, 0x400d1313, 0xe0200483, 0xb1710992, 0x201e9805, 0x843a86a0, 0x20049120, 0x841e9dc0, 0xe0ff23f3, 0xf3714001, 0x67f38608, 0x82180fe1, 0x0266089a, 0x8f332005, 0x90e38e0f, 0x892f8f1f, 0x60b391f3, 0xb89a056c, 0xf48a0120, 0x01210a95, 0x953e8940, 0x72002021, 0x11240cef, 0x40002200, 0x220be941, 0x183d012e, 0x2407cf63, 0x0e14011d, 0x050e6701, 0x33363426, 0x17163202, 0x82064b62, 0x23262421, 0x82010e22, 0x85062020, 0xa036291f, 0x0d13130d, 0x111e1110, 0xe0220282, 0x0582251b, 0x11831020, 0x94d2c92d, 0x10070903, 0x567a0907, 0x84386038, 0x82032009, 0x0d802296, 0x20218213, 0x21038240, 0x05831a26, 0x820d1321, 0x00012b11, 0x07706997, 0x70070909, 0x2c827a56, 0x69200a85, 0x240a2b76, 0x001f000f, 0x89ab8246, 0x3b362285, 0x7e958201, 0x9e420885, 0x20a88a05, 0x25208434, 0x36323315, 0xc05f3435, 0x87142006, 0x82c020b1, 0x251b23af, 0xa7821b25, 0xab84b020, 0x0d821020, 0xaf82f420, 0xb625352f, 0x141c1c14, 0x661c1420, 0xac7a1911, 0x2cb5857a, 0x130d70f0, 0x1b301b25, 0x139d1325, 0x280b870d, 0x69976001, 0x1c3525a6, 0x272f8228, 0x02a41119, 0x567a7a56, 0x3182ec82, 0x2122b787, 0xc182c101, 0x1b001129, 0x37150000, 0x82130717, 0x06390803, 0x2707012f, 0x35262737, 0x011e2534, 0x3727010f, 0x44171636, 0x29192343, 0x161023ad, 0x3360332b, 0xa001020d, 0xaa0f020f, 0x2b10c7a9, 0x43462010, 0x23100123, 0x07112aad, 0x241b820d, 0x1006052b, 0x221682ac, 0x82aaa9c7, 0x82002022, 0x00083b00, 0x02c0ff00, 0x00c00100, 0x00270013, 0x0047003b, 0x005f0053, 0x0073006b, 0xf0180100, 0x17200c68, 0x07fd8618, 0x36251582, 0x1732013b, 0x23018316, 0x22012b06, 0x1806a342, 0x23099162, 0x07011f32, 0x16be4018, 0x0bca4018, 0x00210b8b, 0x05f35422, 0x059e012b, 0x01072b1b, 0x0e10070a, 0x20098802, 0x2f13926e, 0x25130dac, 0x1b80fe1b, 0x2b1b2525, 0x806f1115, 0x20059f63, 0x2e069360, 0x2536bbfe, 0x01253625, 0x2416280e, 0x940b073e, 0x13402306, 0x4b83a00d, 0x251be028, 0x70b8530d, 0x02930808, 0x82400121, 0x36252246, 0x05334100, 0xc0014037, 0x3d002d00, 0x5d004d00, 0x73006d00, 0x93008300, 0x23010000, 0x08bb7711, 0x4208535b, 0x11200861, 0x18760986, 0x18052007, 0x2211e342, 0x50013b16, 0x222207c2, 0x1f8e2706, 0x1a891720, 0x14011d2b, 0x33173316, 0x06222634, 0x10bc5b25, 0x73263421, 0x142005b3, 0x02274d84, 0x07101030, 0x67070909, 0xf020054b, 0x21095a73, 0x0b822002, 0x19c9fe21, 0x221e9b03, 0x86080533, 0xc0332621, 0x01385038, 0x252f9300, 0x80fe8001, 0x4f820709, 0x52825020, 0x84500721, 0x1801200a, 0x210ab87a, 0x4587262d, 0x09886520, 0x09885b20, 0x52899820, 0x38288023, 0x89228938, 0x82002009, 0x00053700, 0x02c0ff00, 0x00c00180, 0x001e0016, 0x00400037, 0x0100004c, 0x8f7b3d26, 0x17142206, 0xc87e181e, 0x36052709, 0x2223011f, 0x7e183627, 0x2e210bb0, 0xdd7e1801, 0x2220830c, 0x1832012f, 0x2b080b4a, 0x01012f22, 0x30083cbc, 0x1e1a2808, 0xfe2c0582, 0x711824e3, 0x5a809759, 0x2e29cf01, 0x10230f82, 0x821d151e, 0x1db73c06, 0x1d597614, 0x01017514, 0x0e0e0a56, 0x131e110a, 0x2a0b0176, 0x08084241, 0x181c2c3e, 0x35079d7e, 0x841b0699, 0x21013850, 0x1e31571b, 0x191e0808, 0x130d272f, 0x22823e25, 0xf1fe0b2d, 0x8a168a16, 0x0a700a0e, 0x4e8a160e, 0x0f240eab, 0x35002d00, 0x4809e34c, 0x342408ba, 0x34353627, 0x0621bc83, 0x05e25a1f, 0x07861420, 0x3e371623, 0x0c8c5702, 0x2e05a34a, 0x112323a8, 0x03061522, 0x15151106, 0x83050511, 0x260c8205, 0x1a0b291f, 0x571a1313, 0x8b4a0794, 0x16af3e05, 0x0a160e0e, 0x01010e13, 0x0907030d, 0x02070919, 0x0907020b, 0x0208081a, 0x1b02010e, 0x09c768ab, 0x20072358, 0x4da18217, 0x16220b87, 0x654c3536, 0x21ab9b0c, 0x2d833701, 0x4c230221, 0x17200894, 0x2e05894d, 0x020c03d1, 0x02232623, 0x0d09030c, 0x96680d26, 0x034127bd, 0x1912010c, 0x2787130c, 0x20067e4d, 0x0cd8504b, 0xcf9cb920, 0x2b82b720, 0x12211422, 0x4207654c, 0xc8330753, 0xb801fc01, 0x26001200, 0x4d002e00, 0x00006100, 0x58061625, 0x3e250504, 0x16363701, 0x2204831f, 0x18151607, 0x250a7456, 0x012e2326, 0x51180607, 0x17200762, 0x0222f485, 0xa0412627, 0x010e2106, 0x2009a041, 0x08dc5201, 0x23032e24, 0x36820e22, 0x01163108, 0x121107f5, 0x17030a53, 0x0c120703, 0x03041c11, 0xab1f1008, 0x67342f17, 0x91ce9191, 0x15080b11, 0xa0111754, 0x1a13131a, 0x23239813, 0x101b130a, 0x1125b682, 0x04111515, 0x09cb4101, 0x0a102a08, 0x090b270b, 0x01010e07, 0x0a14110c, 0x02131a0d, 0x122e0f01, 0x02160521, 0x170c5309, 0x13020210, 0x05020910, 0x01540b0f, 0x29548215, 0x2c2e6791, 0x23022503, 0x54827f1c, 0xaf1a132a, 0x160e0e16, 0x080d0e08, 0x2115f641, 0x008209c2, 0x2406a14a, 0x090c140a, 0x10a74208, 0x25001722, 0x2d19e754, 0x37363217, 0x21232636, 0x1e170622, 0xe6543301, 0x37382e12, 0x0a010751, 0x07f2fe07, 0x5107010a, 0x06c84137, 0x1c4d0720, 0x48fd280a, 0x0b0b0736, 0x50483607, 0x19240c03, 0x3c002e00, 0x05217789, 0x09385406, 0x41089f5a, 0x0425096d, 0x010e2223, 0x23888805, 0x3632013b, 0x10228b86, 0x3c540d01, 0x13232509, 0xa212180c, 0x0125118a, 0x0f0e0b08, 0x21148207, 0xa48a1d01, 0x51371022, 0x3620a786, 0x220b4354, 0x89142112, 0x160c270e, 0x12070c12, 0xba857721, 0x8752bb8d, 0x52b3942a, 0x01211887, 0x20a5941f, 0x1a895211, 0xa087ae20, 0x240ed741, 0x00210019, 0x165f412f, 0x22230223, 0xa0911806, 0x07dd4109, 0x380a5441, 0x060f010c, 0x0c260b0a, 0x010f0609, 0x0d1a1302, 0x1a5a2514, 0x131a1313, 0x249e94c7, 0x06090835, 0x27008209, 0x0c080906, 0x1c180a14, 0x13222882, 0x978a7f1a, 0x2909eb45, 0x00130009, 0x004c0041, 0x6d180050, 0x152a0965, 0x2b061425, 0x32333501, 0x714b1516, 0x05895508, 0x18343521, 0x211cfc8d, 0x65651501, 0x2b388205, 0x15233507, 0x13130de0, 0x4001200d, 0x20270482, 0x0730130d, 0x18070909, 0x30160c8e, 0x1cc06001, 0x1c146014, 0x13806030, 0x130da00d, 0x302f82e0, 0xff0d13e0, 0x20070900, 0x08080907, 0x141c1c14, 0x85008208, 0x07092307, 0x8e187001, 0x01240813, 0x1001e020, 0x30371783, 0x04003030, 0xbfff0000, 0xc0014002, 0x18000b00, 0x2c002200, 0x82120000, 0x1475088c, 0x27220607, 0x07343526, 0x15171637, 0x022e0607, 0x0434013d, 0x37363732, 0x16352715, 0x1e362517, 0x14011d01, 0xec11010f, 0x05724a68, 0x8e72050e, 0x8a0e0777, 0x04060804, 0x0f2c0a01, 0x1ac01a21, 0x062f0121, 0x8c140709, 0x344ac001, 0x0606863e, 0x8e343e86, 0xe9191630, 0x0402023f, 0x16fa0407, 0x25281188, 0x25b640f6, 0x0302b628, 0x16fa0608, 0x20013808, 0x06534700, 0x13268f87, 0x2a002000, 0x918d3400, 0xa7078546, 0x226d2699, 0x19221919, 0x209fa2e2, 0x2227825e, 0xa1492219, 0xe3b618a5, 0x001e2d0b, 0x17013f00, 0x06070607, 0x00363726, 0x2205ab63, 0x19060727, 0x08097e06, 0x4b5e3620, 0x72514b80, 0x0d01100c, 0x1b35be01, 0x136280a5, 0x170b0c57, 0x0b690b0b, 0x15250c21, 0x1e839e1b, 0x10010d28, 0x7301720c, 0x1f834b35, 0x0b571422, 0x68261f83, 0x15240c0c, 0x0082001b, 0xff042808, 0x02c0fffd, 0x00c00103, 0x00130009, 0x0034001b, 0x07061300, 0x3b362627, 0x25173201, 0x010f1632, 0x36372726, 0x50320633, 0x05200591, 0x08156554, 0x2f3fe045, 0x0a09066f, 0x010a126f, 0x06090a55, 0x453f2f6f, 0x92ca120a, 0x67926767, 0x05050d01, 0x03183407, 0x3418030e, 0x26050507, 0x060c0109, 0x0c062f2f, 0x3d010901, 0x089f2b0a, 0x11101011, 0x0a2b9f08, 0x82a01073, 0x92672b2d, 0x010d0536, 0x07072f08, 0x3982082f, 0x07342529, 0x19190309, 0x82070903, 0x0c835c97, 0x18000f21, 0x180a05dd, 0x440f4559, 0xc45205fb, 0x06cf440b, 0x570b9452, 0x21220fff, 0x0f443300, 0x78172009, 0x272005bb, 0x20086843, 0x0a956006, 0x8a343521, 0x14152117, 0x58316d85, 0x22263426, 0x131a1302, 0x10e02202, 0x10108010, 0x860f8886, 0x1a47287c, 0x261a2626, 0x7b020612, 0x12240547, 0x702020d6, 0x2621108c, 0x0657691a, 0x01800127, 0x000f00c7, 0x8f58181a, 0x07714c0a, 0x13013325, 0x71361321, 0x072005f4, 0x270e0c4b, 0x09077001, 0xa0fe0709, 0x01320583, 0x00ff1f11, 0x4d08011f, 0x084d0b0b, 0x46050830, 0x04840805, 0x2d09067b, 0xc5fe5b01, 0x080c3b01, 0x4c0c0c4c, 0x9f4ada08, 0x00002508, 0x00000200, 0x2d081342, 0x0100002b, 0x36372307, 0x1e173233, 0x364e0701, 0x012b2505, 0x16070614, 0x2605244d, 0x37363726, 0x4b35012e, 0x012b07ec, 0xcc9764f6, 0x07090c09, 0x83120511, 0x43103086, 0x01051436, 0x07e0070a, 0x1405010a, 0x84104336, 0x6383279b, 0x08040799, 0x8c849024, 0x15613c2d, 0x0c07201b, 0x1b20070c, 0x843c6115, 0x26838812, 0x00c00100, 0x8230000f, 0x18142083, 0x210bad54, 0x874d1516, 0x012b2206, 0x0d685115, 0xd9683320, 0x35363405, 0x0d13a001, 0x130da0fe, 0x60010d13, 0x1b20130d, 0x84283825, 0x8340200d, 0x1b252112, 0x01200b82, 0x1c820a84, 0x200d132b, 0x28401b25, 0x0d132038, 0x821d8380, 0x282f8204, 0x09000d13, 0xc0ff0000, 0x21018201, 0x0b820400, 0x00103008, 0x001d0018, 0x0039002d, 0x00460041, 0x37361300, 0x33010f06, 0x17261716, 0x3327012e, 0x3e27010e, 0x021e3701, 0x3736011f, 0x32130633, 0x6b111516, 0x33230987, 0x4c363201, 0x142105a7, 0x08d66216, 0x17163725, 0x7c822623, 0x07260923, 0x012e010f, 0x187c1e0f, 0x0c122506, 0x6a082702, 0xfe298e83, 0x25251ba0, 0x0710011b, 0x06476a09, 0x4b6a3b2c, 0xa94b6a4b, 0x0227082d, 0x227c1001, 0x2a072508, 0x682a1e1e, 0x2806197c, 0x31291d66, 0x0d130101, 0x82e382fe, 0x1b80273b, 0x0960fe25, 0x0282090e, 0x3a826020, 0x8b6a4b25, 0x41293115, 0x072507e7, 0x1700cc01, 0x076b4400, 0x27010f22, 0x2a064775, 0x14150622, 0x37270717, 0x82360136, 0x27012c94, 0x2163544f, 0x05b10f05, 0x8202065d, 0x131a3396, 0x3b055d02, 0x23310105, 0xc724165d, 0x6321a562, 0x0f820f54, 0x13025d35, 0x0d13131a, 0x055d0602, 0x04010fb1, 0x28541e27, 0x410062b7, 0x012208cf, 0x6b82c101, 0x00002129, 0x07173713, 0x8e050706, 0x3613216b, 0x08099168, 0x8097892a, 0xfe20092b, 0x0a960fe8, 0x1c1c140b, 0x96051c28, 0x010b5d0f, 0x390e0e8a, 0x280e3980, 0x2b35010e, 0x0b219780, 0x05960f5d, 0x1c291c82, 0x960a0b14, 0x2018010f, 0x831a824a, 0x820e2020, 0xff042573, 0x02befffe, 0x122c7383, 0x24001c00, 0x00003600, 0x34262737, 0x21053649, 0x02570607, 0x011f2205, 0x20e38207, 0x280c8232, 0x01172714, 0x3f260607, 0x23848401, 0x012f2206, 0x08c84318, 0x09646d35, 0x1b095a09, 0x063e2209, 0x07020b06, 0xfe2c3e02, 0x822e712e, 0x0e2d2c6a, 0xd7fe71c4, 0x02100b6b, 0x85e40113, 0x87642223, 0x2425832c, 0xcc3e0506, 0x21328264, 0x3582095a, 0x35820520, 0x12203482, 0x0e243483, 0x1e280e2d, 0x13253482, 0x6b0b1002, 0x2321850c, 0x3e2c8665, 0x06222382, 0x2b413e06, 0x01802809, 0x000f00c2, 0x4d00002e, 0x014406b4, 0x26372508, 0x3634013d, 0x1f22b082, 0x07862702, 0x16171631, 0x27060706, 0x02272625, 0x09090770, 0x83a0fd07, 0x0d1d3b05, 0x0827080d, 0x30661c03, 0x0941080d, 0x2b626403, 0x280d1d1c, 0xe0fe2b26, 0x07440b0e, 0x0bf23e09, 0x0909650d, 0x08020b02, 0x08a41c43, 0x0311030b, 0x0b1bc009, 0x0b311e1d, 0x044e0c0b, 0x2890820a, 0xfffeff02, 0x018902c0, 0x208f82a0, 0x228f9231, 0x41362627, 0x37200553, 0x33300985, 0x37011f32, 0x011e1736, 0x05070607, 0x22012b06, 0x2208948b, 0x03054d41, 0x08042808, 0x9d684804, 0x41080406, 0x04060404, 0x2b2b63db, 0x1719182e, 0x0eddfe2c, 0x890f8210, 0x6b24089b, 0x04120653, 0x24020214, 0x12076234, 0x03022104, 0x03163252, 0x24273103, 0x00079416, 0x00000200, 0x8701d9ff, 0x2a2b9782, 0x00003200, 0x0f161725, 0x822f0601, 0x012f2675, 0x27013f26, 0x08cf7523, 0x2b06dc52, 0x17070614, 0x011f3637, 0x15250716, 0x2a052a78, 0x0c4e2d01, 0x0b0c160c, 0x820b4e4e, 0x4e0c2306, 0x7b861380, 0x38289025, 0x85542430, 0xc5fe2715, 0x13130d60, 0x0d85600d, 0x31864e20, 0x0750802f, 0x01070909, 0x38090700, 0x05362428, 0x24168554, 0x1a1340b2, 0x0dc35613, 0x2e001b27, 0x4a003600, 0x05fb4800, 0x30730620, 0x27222108, 0x23066753, 0x3435012e, 0x7b189482, 0xd2460d07, 0x8d372007, 0x2a278216, 0x4191ce91, 0x090e0937, 0x822e642e, 0x41372205, 0x197b18b6, 0x28392711, 0x1c281c1c, 0x304d07c6, 0x18142005, 0x2a07307b, 0x0106090c, 0x426791b8, 0x83b42171, 0x13c523bb, 0x0783c513, 0x7121b425, 0x18476742, 0x280e327b, 0x263426c9, 0x03903426, 0x0b0b5709, 0x60060921, 0xf02a0627, 0x0700b801, 0x1b000f00, 0xdd822300, 0x1428d983, 0x34262206, 0x14062204, 0x062ab883, 0x34353632, 0x07222627, 0x63181506, 0x172a08e0, 0x27013e16, 0x14222326, 0x264d3233, 0x60e4200c, 0x332e0614, 0x1a13131a, 0x1306ca13, 0x462d0505, 0x294d1010, 0x05116207, 0xf25fdd20, 0x82942008, 0x13240824, 0x0408ad1a, 0x20360810, 0x06000000, 0xe0ff0000, 0xa0018002, 0x21001d00, 0x2d002900, 0x39003500, 0x16250000, 0x83057155, 0x23352196, 0x22320585, 0x34113526, 0x32213336, 0x35330517, 0x36321223, 0xaf822634, 0x23353723, 0x076c4115, 0x2733272d, 0x0b750223, 0x38200d13, 0x82803850, 0x0d203503, 0x010d1313, 0xfe0e16aa, 0x4c606052, 0x281c1c28, 0xec60d01c, 0x302d0784, 0xed425092, 0x0d6f110d, 0x38382813, 0x82038328, 0x242f8229, 0xfe608f11, 0x252782b0, 0x60d4281c, 0x0886f060, 0x0100002c, 0x0000f9ff, 0x83018002, 0x0c823d00, 0x9e833220, 0x23010e2c, 0x0607030e, 0x26272223, 0x07830637, 0x013f262a, 0x010f2636, 0x012f2606, 0x85080a83, 0x010f021e, 0x3637013e, 0x0714011e, 0x33011e06, 0x023e3732, 0x0a076f02, 0x0e040704, 0x0a282229, 0x172b2343, 0x864d0519, 0x10130d0a, 0x19076205, 0x0d063a0e, 0x0d081203, 0x263a1c37, 0x4b2a0d13, 0x1513154a, 0x02030104, 0x36160b0b, 0x013d450a, 0x20070900, 0x01050704, 0x04181411, 0x381c191e, 0x1e09873d, 0x150ef60e, 0x03042708, 0x090d1b06, 0x23051125, 0x47681d33, 0x13010136, 0x12081121, 0x05180b17, 0x374d1a27, 0x001b220e, 0x0bd36227, 0x974e1720, 0x2304240b, 0x63170622, 0x062806f5, 0x37321617, 0x2e273616, 0x20110251, 0x10804e70, 0xf9231328, 0x230a190a, 0x0582236e, 0x338c2d25, 0x50010d03, 0x462013fd, 0x260e7d4e, 0x140c9929, 0x822a2a0c, 0xac362404, 0x50070305, 0x08200dec, 0x083b7718, 0x2800142e, 0x30002c00, 0x38003400, 0x40003c00, 0x5708bf44, 0x2b08058e, 0x3b013e34, 0x15333501, 0x14151213, 0x2123010e, 0x34352622, 0x33023e13, 0x05163221, 0x03273307, 0x3f072337, 0x17072301, 0x37232733, 0x03200482, 0x01210782, 0x068a47b0, 0x08043008, 0xc9803004, 0x090f0937, 0x130ec2fd, 0x0e090137, 0x0cd20108, 0x0abdfe12, 0x0bc30a8c, 0x0a82136a, 0xac881160, 0x0ab8960b, 0x72461167, 0x7f096a13, 0x220806f0, 0x20050704, 0xfea50120, 0x0e0902bd, 0x030d1309, 0x0c084201, 0x60310f07, 0x7000ff60, 0x6060a070, 0x849070a0, 0x8200200b, 0xff022a00, 0x02e0ffff, 0x00a40141, 0x22c5821e, 0x82320100, 0x07023ba6, 0x2e272206, 0x33343503, 0x17021e32, 0x37361716, 0x2605033e, 0x36272627, 0x0e823637, 0x07067208, 0x08380206, 0x1d270f06, 0x1d53e853, 0x08060f27, 0x443f2710, 0x17172b1c, 0x3f441c2b, 0x13f8fe27, 0x1a211a1a, 0x47080846, 0x191a2219, 0x0f080001, 0x193f3b25, 0x3f195151, 0x080f253b, 0x1b240f05, 0x27383827, 0x050f241b, 0x19171d6f, 0x073d6f13, 0x136f3d07, 0x0100161a, 0xd7fff4ff, 0xa7010302, 0x00002200, 0x0f011e25, 0x010f0601, 0x012f010e, 0x20098226, 0x051f6926, 0x36633620, 0x82162005, 0x17470806, 0x0625d801, 0x021c3e22, 0x1e480305, 0x46201936, 0x1c103326, 0x1526120d, 0x21482729, 0x4c192e15, 0x1f071009, 0x12430cfc, 0x3e1c0f1f, 0x28171a22, 0x090f0713, 0x1a391f34, 0x391d3418, 0x16020603, 0x210f1a2f, 0x490b1b3d, 0x02230587, 0x82c00100, 0x00113309, 0x00290021, 0x00390031, 0x00490041, 0x13000051, 0xf3492315, 0x011e2105, 0x4a06a34c, 0x2f4706a5, 0x43122008, 0x775706e9, 0x07cb4c07, 0x2f862620, 0x86087f6c, 0x80e03f0f, 0x0d400d13, 0x131af313, 0xe0131a13, 0x0d133828, 0x130d00ff, 0x421f2838, 0x2f422f2f, 0x17849d01, 0x05848d20, 0x05844d20, 0x058a7320, 0x60a00127, 0x13130d60, 0x253a826d, 0x380d1a13, 0x0c82e028, 0x44820d20, 0x8200ff21, 0x422f233b, 0x18841101, 0x67183320, 0xed660ad1, 0x84ad2005, 0x00002311, 0xa3580002, 0x00c72a05, 0x002a0003, 0x21351700, 0x9b941815, 0x573b200e, 0x27210534, 0x2ff68226, 0x17011e17, 0x1d060716, 0x33161401, 0x40c00120, 0xfe20ac83, 0x3838bb82, 0x110c4328, 0x2d440917, 0x05062b1d, 0x0c11150f, 0x01404040, 0x20283800, 0x20368d83, 0x0c113828, 0x13322801, 0x083a2c15, 0x201d2b05, 0x0a242a1c, 0x7b82110c, 0xfffbff31, 0x011d02c0, 0x001c00c0, 0x01000027, 0x820f011e, 0x2306245e, 0x44012f22, 0x5d08069e, 0x3f362627, 0x1f323602, 0x032f3702, 0x2f011f11, 0x13fd0101, 0x196a0f0d, 0x080e1403, 0x07838307, 0x03140e08, 0x0d0f6a19, 0x09419313, 0x19410928, 0x0b197252, 0x13661633, 0x02140104, 0x92670e26, 0x4404160f, 0x0f160444, 0x260e6792, 0x12841503, 0x51918412, 0x67170410, 0x360cc3fe, 0xc7731972, 0x0023260d, 0x003b002f, 0x77421849, 0x7242180f, 0x07774c0d, 0x83590520, 0x055a6a0a, 0x20058978, 0x071d4227, 0x011d1630, 0x50013523, 0x141c1c14, 0x20070910, 0xb0570907, 0x83102005, 0x10012310, 0x5618f008, 0xb030098f, 0x60141c30, 0x01301c14, 0xe0141c20, 0x07101c14, 0x099e4b18, 0xd8261084, 0x10080810, 0x05846808, 0x8450f021, 0x50502151, 0x240cbb53, 0x0017000f, 0x115b6e1f, 0x69076546, 0x064707c3, 0x051d6e05, 0x26344326, 0x83263426, 0x6e0bb456, 0xf0200549, 0x26221682, 0x1d428a34, 0x6b511806, 0x820a200b, 0x6a252065, 0x002a0653, 0x0f141601, 0x33371101, 0x45183236, 0x2329079e, 0x3f013e21, 0x14110301, 0x05f74606, 0x32013b23, 0x80431816, 0x1538080a, 0x15233537, 0x0909b301, 0x09014bd3, 0x0d88091a, 0xfe0d1313, 0x010501d4, 0x5038b5ba, 0x800d1338, 0x146a130d, 0x0e140e0e, 0x40404038, 0x1b091801, 0x0f01d309, 0xf309094c, 0x012c1a84, 0x01bb0103, 0x2880fe20, 0x01283838, 0x13222a82, 0x2a825bfe, 0xaa140e28, 0x40804040, 0x00820040, 0x03820320, 0x80022037, 0x1f006801, 0x5c005400, 0x26370000, 0x3f363727, 0x011f3601, 0x0733441e, 0x07061729, 0x26272206, 0x8222012b, 0x4d052007, 0x272008c8, 0x02831482, 0x26241782, 0x3634013d, 0x3720b982, 0x17220483, 0x078e3216, 0x22243322, 0x08054a5b, 0x0907be2a, 0x50100b44, 0x13643128, 0x13220816, 0x12060764, 0x0a171b71, 0x1d190a30, 0x0a191d10, 0x07a80130, 0x10070909, 0x7426263a, 0x3a200284, 0x2805d541, 0x110f1325, 0x130f1110, 0x08078e4a, 0x31fe2529, 0x422f2f42, 0x0507892f, 0x390b1062, 0x04160a1d, 0x04162622, 0x0d040116, 0x09150250, 0x09171709, 0x20070920, 0x84200907, 0x230a8400, 0x120e0e12, 0x60200387, 0x2f243b82, 0x00020042, 0x24079b48, 0x006a0034, 0x09f35f00, 0x2527e1aa, 0x27262722, 0x41363435, 0x2629081d, 0x2634013d, 0x011d0622, 0x25159433, 0x23060706, 0x704b2335, 0x27efaa05, 0x0e0a1880, 0x38503810, 0x1323ca84, 0x8ac0131a, 0x0e10240b, 0x9cc0180a, 0x092028ef, 0x28e4060d, 0x41283838, 0x0d250556, 0x600d1313, 0x080f8d60, 0x0d05e53e, 0x00006009, 0xf9ff0200, 0x8702b9ff, 0x1800c701, 0x00002000, 0x010f1605, 0x26012706, 0x1f36013f, 0x36373601, 0x031e1732, 0x25071415, 0x06053734, 0x02262223, 0x14090c7a, 0xb3fd0c0a, 0xbb340684, 0x2d071328, 0x2c361006, 0xa1fe0121, 0x32110113, 0x0a674942, 0x0be26018, 0x403e9131, 0x5f341616, 0x06264936, 0x2628110b, 0x43682dd3, 0x16200c97, 0x200d376c, 0x1a1f6905, 0x06221626, 0x011e0607, 0x16239083, 0x69262736, 0xb12e1f20, 0x01054d52, 0x29040905, 0x0b072982, 0xf0510501, 0x1b216906, 0x2d3e803a, 0x02050b06, 0x0d031111, 0x00002d0a, 0xf5ff0100, 0xcb01c0ff, 0x3300c901, 0x16210c82, 0x2d7e8207, 0x010e010f, 0x012e2223, 0x012e012f, 0x0d830622, 0x2f262222, 0x2105a85e, 0x9a823e37, 0x16011f27, 0x2f363736, 0x3e048201, 0x01011e17, 0x1e250fbc, 0x080d0806, 0x070a1102, 0x2202090c, 0x161c1604, 0x10032204, 0x82021115, 0x065d0815, 0x080f251e, 0x23202232, 0x030d0664, 0x0a1d0d09, 0x22293001, 0x3e600132, 0x53432831, 0x0d0b2239, 0x8b070a06, 0x0d12120d, 0x0d0d0a8b, 0x5339220b, 0x3d322843, 0x09083322, 0x03044013, 0x13080e05, 0x0b230104, 0x04003308, 0xc0ff0000, 0xc4018202, 0x12000900, 0x31001d00, 0x2e130000, 0x268f8201, 0x07010e17, 0x52013e17, 0x37250527, 0x1407011e, 0x229a8206, 0x42132627, 0x8d4705b9, 0x3b280807, 0x07173701, 0x05050773, 0x2747842d, 0x211f1b49, 0x0a0d2b60, 0x231b182e, 0x0e023f3a, 0x081b6608, 0x09071d04, 0xe0fd0709, 0x25080583, 0x413c49ed, 0x10033701, 0x033b3806, 0x0b3d5a17, 0x11045f4c, 0x2cd45b92, 0x09084882, 0x4a5d2503, 0x0996fe1e, 0x29832007, 0xc8230482, 0x4500b216, 0x2f300b1f, 0x37003300, 0x3f003b00, 0x00005700, 0x23061401, 0x210a2a52, 0xdc602335, 0x36342407, 0x44223533, 0x162e0766, 0x36343315, 0x1632013b, 0x33150715, 0x03822135, 0x23351124, 0x03822115, 0x23013d22, 0x21097846, 0xd3833315, 0x82353321, 0x00022b3b, 0x130d0d13, 0x0d600d13, 0x0584c013, 0x60260e8e, 0x2080fe20, 0x03820120, 0x20212084, 0x21068420, 0x2e964001, 0x20203d85, 0x37830083, 0x60202022, 0x34865582, 0xa3470683, 0x01053607, 0x001c00c0, 0x25000024, 0x21230616, 0x13372622, 0x013b013e, 0x26918326, 0x15011e32, 0x82330714, 0x5b172006, 0x2d0807b3, 0x1d07fe01, 0x1860fe18, 0x0349071d, 0x063c0b11, 0x2c1a2838, 0x083c061a, 0xc202090c, 0x1a13131a, 0x29190213, 0x24011929, 0x10100e0c, 0x1b823828, 0x06110f25, 0x461a080c, 0x02200873, 0x0ad38618, 0x00002222, 0x1ed58618, 0x33070325, 0x1811d827, 0x2414d986, 0x07b20772, 0x05bc7410, 0x86187520, 0x012b0ddd, 0x005050a0, 0xfffcff03, 0x828401c0, 0x002f24db, 0x843b0037, 0x012b21dd, 0x53056d41, 0x0e46054c, 0x23352505, 0x013f2622, 0x43180484, 0x16230937, 0x59012b06, 0x133007b4, 0x01331523, 0x0e0c097b, 0x0907708a, 0xe0fe0709, 0x70350583, 0x090c0e8a, 0x0a0b315e, 0x1c067207, 0x72061c28, 0x310b0a07, 0x05145356, 0x7fe0e028, 0x0920150a, 0x767d6007, 0x15203306, 0x0913610a, 0x140b0b7e, 0x0b141c1c, 0x13097e0b, 0x298309c0, 0x2079fe26, 0x02000000, 0xbf22a782, 0xa782c401, 0x35002224, 0x00740000, 0x06072105, 0x2005ca4d, 0x23068522, 0x36372627, 0x17220183, 0x07821716, 0x1c832720, 0x333c1287, 0x0714011f, 0x275f0106, 0x07081619, 0x2b240c08, 0x0d131041, 0x10130d20, 0x0c242b41, 0x16331182, 0x2a182719, 0x24191924, 0x170e1f2a, 0x020f1310, 0x84130402, 0x012a0808, 0x3f010605, 0x2f1f2307, 0x30472b2b, 0x08080a3a, 0x47303a0a, 0x1f2f2b2b, 0x0b040723, 0x0a0e0e0a, 0x060d250b, 0x120e0105, 0x07831324, 0x10130f2b, 0xff090017, 0x01c0ffec, 0x28ab82d4, 0x00200007, 0x00330028, 0x06394b3a, 0x18005c21, 0x2508af6f, 0x16071637, 0x95460607, 0x012e2105, 0xbc82a782, 0x3236172c, 0x16013617, 0x26272637, 0xc9820627, 0x23262222, 0x1724da82, 0x0722013e, 0x0221d283, 0x21198232, 0xcb480706, 0x36172107, 0x0724e283, 0x27362716, 0x06392782, 0x16171623, 0x13131ad3, 0x1ef6131a, 0x1d1e3737, 0x247c2457, 0x2228150b, 0x380d880a, 0x07a6fe57, 0x0b020525, 0x032c160b, 0x01040104, 0x1607071f, 0x1220970b, 0x20008211, 0x26068532, 0x2f2f4201, 0x82f12f42, 0x020b2817, 0x16082505, 0x821f0707, 0x03042328, 0x5782e00b, 0x731a132e, 0x354b4b35, 0x56560a34, 0x12150401, 0x0a390b87, 0x010cecfe, 0x0a091216, 0x14149623, 0x230d0c01, 0x0625860a, 0xfe060707, 0x200684a5, 0x2250824b, 0x823f422f, 0x13092c16, 0x239c0115, 0x14010c0d, 0x82000914, 0x48012000, 0x602606af, 0x00004f00, 0x5f610625, 0x23062e06, 0x34272622, 0x2123042e, 0x07060e22, 0xb288180e, 0x34363908, 0x3d012e27, 0x33363401, 0x17011e32, 0x33041e14, 0x053e3221, 0x33013e35, 0x3705ed44, 0x07075702, 0x1e2c1613, 0x06082718, 0x0a070602, 0x05eefe07, 0x04050608, 0x0826e983, 0x2c1e1827, 0x20851316, 0x151d1023, 0x28218505, 0x09051201, 0x01050507, 0x081f8506, 0x1003cb21, 0x15240a03, 0x1c2c1e08, 0x05110117, 0x0205040d, 0x0a040703, 0x17020c05, 0x081e2c1c, 0x880a2415, 0x170d2220, 0x2521860f, 0x040c0406, 0x20860110, 0x2a054b58, 0x010102be, 0x000700c0, 0x822b0018, 0x06142ee1, 0x36342622, 0x1d160732, 0x27061401, 0x22c48626, 0x82251617, 0x231283c6, 0x06070607, 0x2308d884, 0x60013637, 0x38385038, 0x0d063e50, 0x0b7c4607, 0x880c120f, 0x0e083c01, 0x7c0b0f08, 0x060a0545, 0x88014406, 0x2b081e83, 0x0804f138, 0x040807f6, 0x0f010623, 0x100cdf0b, 0x07080801, 0x0bdf080c, 0x2207010f, 0x04080203, 0x290408f6, 0x00000200, 0x4002c0ff, 0x25238782, 0x18004b00, 0x23075db8, 0x27262223, 0x2905ca7b, 0x35012e37, 0x35263734, 0x04843634, 0x32303325, 0x82013e31, 0x160723a0, 0x21821415, 0x010e2722, 0x35272b82, 0x33363411, 0x82171632, 0x8232201c, 0x07420817, 0x1415011e, 0x1ad01607, 0x171e2a26, 0x05070726, 0x16012a1e, 0x1b08281b, 0x1a260217, 0x01220602, 0x01161b86, 0x07051e2a, 0x1e172607, 0x161a262a, 0x1a020622, 0x1b170226, 0xc0012808, 0x88fe1a26, 0x20842a1e, 0x09070733, 0x172e1928, 0x28191211, 0x1a070709, 0xfe1b1526, 0x840a84d0, 0x1e2a2b4f, 0x251b7801, 0x1a26151b, 0x27820806, 0x17111223, 0x20008200, 0x2d038204, 0x01e00100, 0x002b0080, 0x00480035, 0x3c190059, 0x022a2047, 0x013b033e, 0x011f1632, 0x3d190725, 0x23270f42, 0x15020e22, 0x7b211614, 0xd682067a, 0x3a031e27, 0x12b70101, 0x05164417, 0x4400ff21, 0x1735051d, 0x06140c12, 0x11201b15, 0x0c392280, 0x14d9fe14, 0x05140001, 0x393d1919, 0x070e3e0c, 0x1205080c, 0x120e4e01, 0x17090e12, 0x06070310, 0xec0d060b, 0x30142107, 0x0d361218, 0x20478213, 0x08058320, 0x18123621, 0x07211430, 0x1b0f321c, 0x20260a12, 0x32321a32, 0xaf11110d, 0x06030201, 0x05210f04, 0x82070c08, 0x121c2c40, 0x04091710, 0x01020306, 0x82000300, 0x00022900, 0x23008001, 0x4b002f00, 0x109d4a18, 0x4f013b21, 0x16200581, 0x8305944a, 0x011d21e8, 0x220b914d, 0x18343525, 0x20101f9e, 0x25268214, 0x3233013d, 0x9283e001, 0x8440fe21, 0x0709259e, 0x80090760, 0xff210584, 0x05976600, 0x08000125, 0x82100828, 0x21068603, 0x8f4f4001, 0x05016a05, 0x92183020, 0x302309b3, 0x82081088, 0x3d2b8b28, 0x05002808, 0xbbfffeff, 0xc2018402, 0x66002a00, 0x87007a00, 0x00009900, 0x17060737, 0xb1500607, 0x012e2105, 0x210bb850, 0xbf50013e, 0x010f2b06, 0x0e020f06, 0x06070501, 0x0b820607, 0x2f060723, 0x27298301, 0x010e0727, 0x2726012f, 0x04843b82, 0x36373624, 0x0482023f, 0x8205ec45, 0x1617253b, 0x021f1617, 0x25310482, 0x07020e26, 0x17011e06, 0x023e031e, 0x05263637, 0x82308227, 0x22232e3a, 0x1617010f, 0x16070626, 0x17041e06, 0x081b8316, 0x050c8f20, 0x0b052302, 0x0a020f02, 0x0503064e, 0x32070941, 0x4d060704, 0x0107010a, 0x062b040c, 0x1b823d07, 0x050b7208, 0x180b2003, 0x0de80125, 0x05040d04, 0x0d04020e, 0x0d0d1f14, 0x08f80903, 0x1f0d1703, 0x01010215, 0x0502020e, 0x1d080c05, 0x20120a09, 0x0f0c0605, 0x110f0807, 0x117b1011, 0x0d0e150e, 0x10030703, 0x7dfe0707, 0x080a0d07, 0x0c040202, 0x070c0209, 0x0507070a, 0x01180301, 0x03010615, 0x067b1609, 0x200e1807, 0x291c6cac, 0x08020104, 0x0d050c03, 0x262c8302, 0x2ee30401, 0x901d1310, 0x37aa8d8e, 0x2b030738, 0x9d24070e, 0x040c112f, 0x05073403, 0x04080510, 0x431e0d17, 0x3308a183, 0x06150608, 0x05053407, 0x1e2e1112, 0x1801040c, 0x0c06072b, 0x05030407, 0x21050101, 0x150e0904, 0x1e351a15, 0x6413120c, 0x0a060202, 0x0b100907, 0x02030103, 0x053acd82, 0x19290e04, 0x15070736, 0x13022105, 0x084f2e2b, 0x06040e18, 0x01040306, 0x29840103, 0x00000e24, 0x5f4d0500, 0x00232a08, 0x002f002b, 0x003b0033, 0x08656c00, 0x2b0dfa55, 0x3634013d, 0x013e013f, 0x1f32013b, 0x08bba618, 0x23353726, 0x27013b07, 0x26080b56, 0x38282002, 0x55300709, 0x303b06fc, 0x151b0907, 0x13210730, 0x6d131fd6, 0x1c287cfe, 0x781c281c, 0xa6a3264d, 0x84b4594d, 0x0001270c, 0x07502838, 0xff552809, 0x07092a06, 0x06221670, 0x1816127a, 0x07f75588, 0x0b566020, 0x03002107, 0x25080345, 0x0051000f, 0xd5590068, 0x073a4610, 0x14150723, 0x55741806, 0x3e37251a, 0x2e013d01, 0x34220382, 0x66183b36, 0x352b08c4, 0x16323634, 0x26360515, 0x8337012b, 0x0f222d04, 0x3b160601, 0x16060701, 0x01373233, 0x2c08a282, 0xc0fe0709, 0x07090907, 0x07101002, 0x32191f09, 0x17271d22, 0xe0fe0811, 0x1ba01b25, 0x34240825, 0x0d0a0d14, 0x07091f19, 0x090e0910, 0x26038220, 0x0704e4fe, 0x820c3a07, 0x0b442841, 0x08011001, 0x82173b05, 0x0307210b, 0x21096d4b, 0x0b824001, 0x2a1a2408, 0x2e217808, 0x1e2e0303, 0x70171119, 0x251b6001, 0x34c01b25, 0x110d1c24, 0x0b110202, 0x1a2a0876, 0x43090720, 0x603c0aa2, 0x05330b05, 0x056b0908, 0x08055307, 0x00020005, 0x02bfff00, 0x00c00100, 0x0027000f, 0x0d634318, 0x1f323622, 0x082b4818, 0x51062221, 0x3d2f05cc, 0x14153301, 0xf7013716, 0x0ae00909, 0x85e00a1a, 0x067b2f06, 0x0a035506, 0x08130d70, 0x0a600820, 0x1989d703, 0xed322082, 0x034e0606, 0x13360504, 0x0808500d, 0x04053640, 0x7a180003, 0x272c0b57, 0x40003800, 0x50004800, 0x60005800, 0x32278182, 0x23061416, 0x46232722, 0x35200697, 0x2305514b, 0x33363317, 0x30371984, 0x14160723, 0x05321707, 0x27331716, 0x26223122, 0x013b3634, 0x82062337, 0x05dc5115, 0x22055258, 0x59243216, 0x02210608, 0x21178514, 0x19853204, 0x1b800129, 0x251b2525, 0x8212d212, 0x20202105, 0x252e0a88, 0x0827011b, 0xfe012708, 0xd0080fe0, 0x24830126, 0xd026012b, 0x09b00f08, 0x0e09090e, 0x21058477, 0x0b83c0fe, 0x84200921, 0x4001210c, 0x60230c84, 0x8a253625, 0x2a0a8246, 0x0f412536, 0x09410f20, 0x82400f08, 0x0f40231b, 0x28846208, 0x3b8a8920, 0x0020488c, 0x2b0c6b6a, 0x001f000f, 0x00410037, 0x25000045, 0x09f35618, 0x0f161726, 0x26370601, 0x08f84418, 0x27200e83, 0x0ed76118, 0x14013b2b, 0x32013b16, 0x11133736, 0x05655921, 0x82031621, 0xff002c09, 0x3a0c0c3a, 0x0b0b0c0b, 0x8224240b, 0x550c2104, 0x0b200887, 0x01251885, 0x26090706, 0xc87a191a, 0x3bba2318, 0x02820b0b, 0x3e833f82, 0x170b0c22, 0x0f823e85, 0x9a311885, 0x1a100709, 0x101a2626, 0x150b0907, 0x70010f11, 0xe87a19fe, 0xff032a0e, 0x02bdffff, 0x00c00101, 0x23db820e, 0x13000030, 0x2107005e, 0xd5821416, 0x84252721, 0x05b87e06, 0x32161725, 0x8f17013f, 0x0c0c2710, 0x0c05e90c, 0x0682e905, 0x000b0b23, 0x820684ff, 0xa13b250c, 0xa20c180c, 0xe922c482, 0x0e820b0b, 0x83a23a21, 0x2c01280e, 0x6a061c06, 0x836a0202, 0x05052706, 0x051d0612, 0x0282056a, 0x1a061d27, 0x49050549, 0x8316859a, 0x290f841d, 0x01000000, 0xb6ff0000, 0x9f828002, 0x0000582c, 0x14151625, 0x2e012f06, 0x86823d01, 0x8c823320, 0x3435362b, 0x0607012f, 0x011f1415, 0x820f8316, 0x2eb4821e, 0x37343526, 0x083e3736, 0x1d163233, 0x4d363701, 0x0b830514, 0x024e2682, 0x17073705, 0x047c0216, 0x1f3c2f4e, 0x02025628, 0x01090205, 0x03a8a803, 0x0a820901, 0x2856023a, 0x4e2f3c1f, 0x01452104, 0x040b020c, 0x0d0b080b, 0x21291d07, 0x10070907, 0x21240382, 0x0d071d29, 0x04341382, 0x010c020b, 0x0f0f3a45, 0x100d372e, 0x581f3108, 0x0d04013a, 0x70214983, 0x08438370, 0x01040d2e, 0x311f583a, 0x370d1008, 0x7a0f0f2e, 0x0412026d, 0x030a040f, 0x1c260205, 0x0805163c, 0x090907ab, 0x0508ab07, 0x261c3c16, 0x0a030502, 0x12221c82, 0x03456d02, 0x82002006, 0x002124eb, 0x6647003b, 0x332008e3, 0x84083e48, 0x2b0622c4, 0x53e78201, 0x052205fd, 0x0b821632, 0x22212322, 0x3621f382, 0x05234933, 0x13833520, 0x22250722, 0x3b30f782, 0x011d3201, 0x0da02314, 0x090d1313, 0x09074007, 0x27080883, 0x2807090c, 0x24010907, 0x07091c14, 0x090720fe, 0x1001141c, 0x354b4b35, 0xfe31714f, 0xd0080899, 0x13800808, 0x130de00d, 0xf482ef82, 0x80230a8a, 0x8207141c, 0x1c142ab8, 0x404b6a4b, 0x37494f71, 0x054f4820, 0xcf540020, 0x00602b0a, 0x00360032, 0x01000041, 0x7a821636, 0x06010f22, 0x4505d950, 0x3e2205b2, 0x77183301, 0xc6730b7b, 0x83152009, 0x35052817, 0x34051527, 0x83013f36, 0x262238d3, 0x06047602, 0x0d09d502, 0x130dedfe, 0x090f0b46, 0x0303090e, 0x8338388a, 0x83a02082, 0x38280804, 0x320e0f39, 0x0130c0fe, 0x0b0a16f5, 0x1924192b, 0x05012001, 0x03031204, 0x0d130ad6, 0x12020c2f, 0x0f085f0c, 0x30190109, 0x09435618, 0x19073031, 0x3e083f41, 0x102b0a5d, 0x12173e10, 0x18001919, 0x24093350, 0x25000030, 0x1d4e181e, 0x066b4b08, 0x82053450, 0x353621a7, 0x137ddf18, 0xc3012308, 0x1e2a231a, 0x2a1e90fe, 0x2a1d1a23, 0x25160e1e, 0x2f21101b, 0x28050a0f, 0x1b060638, 0x1e0e1625, 0xdf184f2a, 0x1b210f48, 0x48df1825, 0x1b252608, 0x1e2a131d, 0x063f4123, 0x02c0ff2b, 0x00c10106, 0x00150007, 0x097b4e25, 0x0616252c, 0x2e22012b, 0x36013f02, 0xe0681732, 0x05925108, 0x6a4b3323, 0x3402824b, 0x160bfb01, 0x120ad615, 0x6b060208, 0x500b2a0b, 0x0d13130d, 0x200483a0, 0x2b1f84c0, 0x0a251282, 0xb7091410, 0xf2fe1212, 0x1d821886, 0x012a7482, 0xc0fffeff, 0xc001e201, 0xfb843700, 0x0e010f24, 0x5b422f01, 0x06072209, 0xff791826, 0x4a1f200c, 0x1e2206c6, 0x0a6d1d02, 0x06163505, 0xd801010f, 0x20030306, 0x88060d03, 0x07400709, 0x0d068809, 0x03230d82, 0x8a888806, 0x06032316, 0x18880304, 0x0d047231, 0x04053805, 0x079d4f03, 0x9d070909, 0x8204034f, 0x040d230e, 0x178a4e4e, 0x06040323, 0x22198903, 0x6f000900, 0x0f3007eb, 0x2b001d00, 0x47003900, 0x63005500, 0x7f007100, 0x21106b4b, 0xf4651333, 0x0522710a, 0x1d062222, 0x20067c45, 0x271bd217, 0x38282002, 0x40fe2838, 0x40280583, 0x07400709, 0x1c281c09, 0x0a840282, 0x07099028, 0x21090750, 0x0282212e, 0x10900a84, 0x328f8020, 0x82c00121, 0x83c0204d, 0x8201204d, 0x90fe2153, 0x22825082, 0x1c1c1424, 0x04824094, 0x0e831420, 0x0738712b, 0x38070909, 0x8f212117, 0x21048258, 0x0e825817, 0x79201393, 0x00203b92, 0x0a200082, 0x29124f41, 0x00650057, 0x00810073, 0x214a008f, 0x081f5c07, 0x87611720, 0x06c04606, 0x15200da8, 0x200dd954, 0x0d7d4133, 0x0b755718, 0x9b363221, 0x20022c0d, 0x1b253828, 0x251b00fe, 0x41402838, 0x51410859, 0x20088708, 0x831a8780, 0x40fe2127, 0x60203383, 0x41075c41, 0x08880876, 0x21087741, 0x5582c001, 0x25251b23, 0x2631821b, 0x1c1420b0, 0x4120141c, 0x1720075d, 0x85086741, 0x221d8809, 0x821b2589, 0x28382593, 0x50251b20, 0x19832d84, 0x83181c21, 0x17182437, 0x88172121, 0x880f2009, 0x8200201d, 0x07260800, 0xbbfffdff, 0xc0018202, 0x28000600, 0x48003600, 0x5c005400, 0x00006a00, 0x07060737, 0x07013e26, 0x1617011e, 0xd3560617, 0x36262505, 0x32333637, 0x1c820f83, 0x012a2a08, 0x30072223, 0x16171514, 0x0607010e, 0x35262726, 0x16373616, 0x0f021e25, 0x2e020e01, 0x3e013f02, 0x07363701, 0x16361506, 0x26368217, 0x1e06012e, 0x82373601, 0x37062127, 0x4e080e84, 0x07062627, 0x16361706, 0x122008cf, 0x5d1b0e01, 0x0d264604, 0x2303071a, 0x20064a59, 0x67121204, 0x1a242475, 0x1e192010, 0x01030116, 0x02815964, 0x100b1007, 0x1201021c, 0x01030d2c, 0x06100c9f, 0x53072002, 0x364f4161, 0x1d042007, 0x85889b15, 0x13032e18, 0x531b1c20, 0x832e0a46, 0x03de0322, 0x08348701, 0x2c110143, 0x140b2bcb, 0x2d171e10, 0x230b3218, 0x44240120, 0x2715b326, 0x0406390a, 0x05040117, 0x01013115, 0x0e140a2b, 0x11130302, 0x07090705, 0x071f060f, 0xb40d1c15, 0x0b214829, 0xb3296041, 0x19031e15, 0x361885ad, 0x061b1105, 0x2c0fd013, 0x2a171c27, 0x05064f28, 0x010e140b, 0x82101303, 0x00083c1c, 0x00000400, 0x8001c0ff, 0x2e00c001, 0x3e003600, 0x00004600, 0x030e1401, 0x82331507, 0x0e072a25, 0x27262201, 0x3335012e, 0x21048935, 0x6e463634, 0x21208405, 0x714a0615, 0x12851806, 0x8001340f, 0x140f0c06, 0x1f11400b, 0x5c460913, 0x251e0946, 0x83241c40, 0x0d132b02, 0x40130dc0, 0x94131d10, 0xa3181c28, 0x0b830a22, 0x0c000137, 0x0d111418, 0x25152604, 0x392c061b, 0x32092c39, 0x310a2620, 0x2603831f, 0x13130d20, 0x8214200d, 0xe0262118, 0x64203684, 0x8f57058a, 0x2bc78308, 0x00340030, 0x008e0086, 0x00e700df, 0x62090b5b, 0x2325051f, 0x0622012e, 0x82a01807, 0x0514480d, 0x174d1f20, 0x33253005, 0x32012327, 0x011d021e, 0x012b0614, 0x65170706, 0x062105ea, 0x08294807, 0x6d272621, 0x26210619, 0x21478827, 0xc44a3736, 0x37362106, 0x20086248, 0x05026616, 0x16010f23, 0xab881817, 0x63322008, 0x58d0058e, 0x0805865b, 0x270e112d, 0x43261a30, 0x43164216, 0x1116434c, 0x07090907, 0xb0070910, 0x1f710d13, 0x0d4a5313, 0x84c0fe13, 0x30015133, 0x03040603, 0x82050709, 0x0b0b2f06, 0x040b0b17, 0x07090b0a, 0x0b090720, 0x0f85040a, 0x05040522, 0x209b3a83, 0x1c287f2b, 0xa01c281c, 0x08040907, 0xa6279b04, 0x84e02048, 0x1c142880, 0x1e1e2210, 0x841e2222, 0x0750320d, 0x130d6009, 0x0d136818, 0xfe406040, 0x060403e0, 0x90a4ae03, 0x8250207c, 0x281c22b3, 0x825e8234, 0x21ee90b6, 0xff860504, 0x85220f41, 0x04002149, 0x20081750, 0xd5671836, 0x16322108, 0x49053a42, 0x3971057a, 0x05424b0f, 0x4f343521, 0x3b220553, 0x76423201, 0x33152207, 0x07345f27, 0x4107c34d, 0x322605d4, 0x425c4202, 0x05844402, 0x09073238, 0x13100709, 0x0d13a00d, 0x6d131f71, 0xfe130d30, 0xd54d9ec0, 0xd8821c28, 0x843c0121, 0x82a02006, 0x090729dd, 0x422e050b, 0x0b052e42, 0x14840787, 0x130d402f, 0x18130d80, 0x400d1388, 0xfe6060c0, 0x0a7c43c0, 0x35059b4d, 0x00020000, 0x02008001, 0x1a000a00, 0x48003000, 0x013f0000, 0xac623617, 0x6c372006, 0x13220e69, 0x4b183632, 0x1620084e, 0x3f25c882, 0x16173301, 0x097e4633, 0x22232628, 0x33161406, 0x1c833732, 0x129e3630, 0x0e149412, 0x880e140e, 0x141c1c14, 0x058360fe, 0x0908cb36, 0x11063602, 0x3606111a, 0x11080902, 0x4608030c, 0xbe0c0308, 0x0732e182, 0x1e0c0c09, 0x0f1e2a2a, 0x1007050d, 0x35b00907, 0x3a821035, 0xce140e22, 0xe0203a82, 0x20083a83, 0x1c142001, 0x080de0fe, 0x9b10109b, 0x150b0d08, 0xa0100b15, 0x07090907, 0x3c2a0424, 0x0906062a, 0x2aca8300, 0x01c0ff00, 0x00c00140, 0x442f0023, 0xc7430a07, 0x08bc4308, 0xd5502620, 0x07143905, 0x15062226, 0x3e171614, 0x01343502, 0x0e0e0a28, 0x0a0e600a, 0x600e0a20, 0x2d2e0a83, 0x4a6c4a25, 0x1a2c4525, 0x150b121e, 0x1884c010, 0x18839820, 0x0a849820, 0x41353b32, 0x35414f4f, 0x1e22b03b, 0x0c143918, 0x1e102821, 0x8205cb4b, 0x82c02083, 0x00162483, 0x8242003a, 0xd1691885, 0x82052015, 0x65541876, 0x4933200a, 0x2b20056e, 0x0cf35918, 0x2135132c, 0x16140622, 0x0ac00133, 0x69180202, 0xfe260bc9, 0x300709d0, 0x00510709, 0x270a8708, 0x0de3feed, 0x5a0e1213, 0x10bb6918, 0x2a827620, 0x09077025, 0x8b700709, 0xc9fe2835, 0x121c1240, 0x18050000, 0x220cf79f, 0x8333002f, 0x422420b7, 0x17200604, 0x270a5f55, 0x32013b14, 0x21072227, 0x210acc42, 0x44451d16, 0x27262c05, 0x17152335, 0x17141506, 0x51262221, 0x3320054c, 0x0f08a018, 0x2e37403c, 0x131d75fe, 0xa0131d50, 0x13501d13, 0x80b7091d, 0xfe130787, 0xc01d13dd, 0xa0180709, 0xc0210d0e, 0x381f8220, 0x1d1d1330, 0x131d3013, 0x20600131, 0x1818e020, 0x131d262a, 0x09073090, 0x20008200, 0x36b3880c, 0x0039002d, 0x00510045, 0x0069005d, 0x00810075, 0x0099008d, 0x4ab100a5, 0x495610dd, 0x091e4e14, 0x6317e563, 0xc0180bf1, 0x23af178f, 0x18351321, 0x3215dbc6, 0x0e0a6802, 0xc0fd0d13, 0x0a0e130d, 0x10070928, 0x85400907, 0x0a0e2505, 0xfe0e0a90, 0x0ca2c018, 0x0c280c22, 0x80200282, 0x058b0685, 0x128c2592, 0x0e00012a, 0x0df8fe0a, 0x010d1313, 0x50256e82, 0x07090907, 0x26058550, 0x0e0e0a48, 0x84d4a80a, 0x8a6c2058, 0x90b42005, 0x90542011, 0xecfe2111, 0x8b43128a, 0x02e02906, 0x00a00100, 0x00540014, 0x3605c56b, 0x06272223, 0x34352223, 0x37023e37, 0x05343526, 0x2e27013e, 0x82012f01, 0x023b2b0a, 0x3f161732, 0x27263601, 0x674c2726, 0x020e3208, 0x1f011e17, 0x14151601, 0x2722012b, 0x06010f26, 0xc4b21816, 0x35300809, 0x9696d496, 0x4133386a, 0x0502084c, 0x39061d0f, 0x1d171801, 0x11180203, 0x20090632, 0x08050501, 0x01041106, 0x09120e04, 0x09071007, 0x020c180f, 0x06201a86, 0x013d198d, 0x7aac7aa0, 0x03083313, 0x32130403, 0x564a3916, 0x182502b4, 0x0f051911, 0x02080701, 0x2d438204, 0x0209030c, 0x09090712, 0x12011207, 0x1994101c, 0x00030027, 0x02e0ff00, 0x24eb8242, 0x004f0012, 0x20fd8267, 0x86e78214, 0x05775aeb, 0x58033221, 0x3e250593, 0x2e343501, 0x23f38402, 0x013b013e, 0x8018f585, 0x05201fc9, 0x5086f782, 0x1627262c, 0x35363233, 0x011e2734, 0xbc821415, 0x3c562008, 0x082e2b33, 0x260e1602, 0x0866ac7a, 0x19120810, 0x070c0805, 0x0603092d, 0x06071c03, 0x180c0406, 0x0818be80, 0x0e5a0136, 0x05040316, 0x3c332b2e, 0x12186840, 0x018d630e, 0x42014839, 0x19195e84, 0x17030308, 0x4233291f, 0x0800ff5e, 0x1a011008, 0x0b0e0812, 0x030d0209, 0x0406030a, 0x1ec08018, 0x171f8c33, 0x19190a04, 0x71022c36, 0x120a0a4f, 0x00333250, 0x05275000, 0x01800123, 0x5b6a18c0, 0x51142008, 0x9a490b87, 0x16322f0d, 0x6001011d, 0x0d13130d, 0x400d1360, 0x0a8a130d, 0x84400121, 0x83e02011, 0x8ae0201c, 0x2762821c, 0x00000a00, 0x0102c0ff, 0x57326382, 0x63005d00, 0x6f006900, 0x7d007500, 0x89008300, 0x0b468f00, 0x27232c08, 0x1e170706, 0x06010f01, 0x82012f22, 0x05a9610a, 0x26373524, 0x11830727, 0x3f342623, 0x500a8201, 0x17210620, 0x09d17136, 0x034b0a82, 0x07152f05, 0x36371716, 0x16011f32, 0x16010f14, 0x0e832717, 0x55832620, 0x23373622, 0x36215082, 0x20108537, 0x20528317, 0x09c15e16, 0x22823720, 0x44823320, 0x84070621, 0x16280861, 0x0a07ef01, 0x0811070a, 0x01050d24, 0x0e041605, 0x3b2f0b05, 0x1e070901, 0x3b010907, 0x0e050b2f, 0x05041604, 0x1108240d, 0x10822588, 0xc4382497, 0x2b0d0f04, 0x1e25591e, 0x6c0f0d2b, 0x03400615, 0x15064c09, 0x43030931, 0x32261784, 0x1a13131a, 0x1d8a3a13, 0x83400c21, 0xb6df201e, 0x2092916d, 0x2271827f, 0x84061531, 0x251e2173, 0x4c207482, 0x87206c84, 0x77201684, 0x13227c82, 0x1c89901a, 0x83044821, 0x05834c1d, 0x0100022b, 0x000f00c1, 0x002d001f, 0x08b15354, 0x2305694c, 0x07230614, 0x4108574b, 0x162205a6, 0x62523f32, 0x013d2e07, 0x1d162517, 0x21350701, 0x34352715, 0x06824b37, 0x33053e28, 0x17041e32, 0x1a823233, 0x52b01621, 0xb02308eb, 0x86a00709, 0x3446230c, 0x8b48d115, 0x01d13805, 0xfe60121d, 0x101260c0, 0x4e141c0e, 0x1c010701, 0x0808170e, 0x821c0e17, 0x144e270a, 0x09e80e1c, 0x34831007, 0x50200482, 0x23080887, 0x970f7209, 0x1c1c14d5, 0xef97d514, 0x460a180e, 0x0a46b9b9, 0x0a0d0e18, 0x011c142c, 0x09150105, 0x15090b0b, 0x1c240882, 0x000b2c14, 0x09db6918, 0x21001123, 0x0b175000, 0x34113526, 0x1f013b36, 0x5009e947, 0x0120051b, 0x0a97fb18, 0x6040a023, 0x85cf1809, 0x40012308, 0x0149141c, 0xa8402108, 0x00208c88, 0x3520638c, 0x50456399, 0x993b1908, 0x25778d14, 0x40060a58, 0x6382060a, 0x2705fe50, 0x06100709, 0x0a06400a, 0x1f888391, 0x86090721, 0x0000300a, 0xfffaff03, 0x018002bc, 0x001400c0, 0x825a001c, 0x010e3491, 0x0e171415, 0x26012f01, 0x2627013d, 0x32213336, 0x48060716, 0x3e200758, 0x0c85b818, 0x0e306018, 0x2605b85e, 0x1516011f, 0x45020e14, 0x230807ff, 0x15171617, 0x32013b14, 0x3fb10135, 0x23083b52, 0xb7105010, 0x0115110f, 0x0f1115e0, 0x5e5e8479, 0x12b05e84, 0x13a78518, 0x0b10092b, 0x2d0e1207, 0x05030209, 0x0c164502, 0x101a0133, 0x39514367, 0x3c0b0910, 0xca9c140c, 0x0f27270f, 0x2245828a, 0x1892845e, 0x31120d60, 0x10080810, 0x09100c08, 0x0d05180f, 0x05020a03, 0x0c450204, 0x0987540a, 0xff820020, 0x6f006524, 0x75447900, 0x012b2308, 0x01832335, 0x82331521, 0xe97e1801, 0x3335210a, 0x23210182, 0x18018415, 0x480ada6e, 0x352006a8, 0x69059869, 0x0790078a, 0x7a493220, 0x15272107, 0x26241b82, 0x0622012b, 0x27092552, 0x0907f001, 0x20500709, 0x50250083, 0x07400709, 0x830b8609, 0x09102216, 0x23028407, 0x0940090e, 0x10220389, 0x02820907, 0x8230f821, 0x0907331c, 0x20070938, 0x09600907, 0x09078007, 0x606080a0, 0x2248a080, 0x840b8505, 0x82702016, 0x09072153, 0x78180582, 0x9a420861, 0x20058405, 0x257c8270, 0xb0700709, 0x70823030, 0x2142b720, 0x0aa35705, 0x3f00312a, 0x00004700, 0x14151625, 0x23058b45, 0x37343526, 0x4709745c, 0xff85052b, 0x332e0b8b, 0x36320432, 0x022e013f, 0x010f0622, 0xa74c011e, 0xfd013307, 0x38660903, 0x096638b2, 0x40150803, 0x0a182018, 0x05880a14, 0xfe15402a, 0x0c3030f3, 0x3211050c, 0x3d3c0685, 0x1a13131a, 0x07068d13, 0x3c6e090d, 0x0d096e3c, 0xd0130607, 0x10181810, 0xae0a0a86, 0xae230783, 0x83860a0a, 0x80d02707, 0x07101020, 0x05842415, 0x33823c20, 0x001a1324, 0xd37c0200, 0x00322208, 0x6ec18244, 0x2f2306c7, 0x6e141701, 0x352a09cc, 0x23220737, 0x013f2622, 0xae822627, 0x1f240482, 0x32363701, 0x95080483, 0x27020f16, 0x07372737, 0x17270727, 0x37071707, 0x27173707, 0x050df001, 0x094b620c, 0x046c0d0e, 0x0608080b, 0x08064444, 0x6c040b08, 0x0a0c0202, 0x0c624b08, 0x2a6e0d05, 0x5e0c1405, 0x041a0422, 0x140c5e22, 0x242f2a05, 0x2d14352f, 0x142d1010, 0x34242f35, 0x02212102, 0x061b01f5, 0x180a5335, 0x08711803, 0x5959070b, 0x71080b07, 0x530a1518, 0x011b0635, 0x110d6810, 0x0d6b3c07, 0x073c6b0d, 0x7d680d11, 0x32081928, 0x1d33331d, 0x28190832, 0x2a2a360c, 0x00820036, 0x1000012a, 0x3002c0ff, 0x8200c001, 0x0e32d582, 0x23222301, 0x3327012e, 0x34272627, 0x33373435, 0x51533627, 0x14152705, 0x14150607, 0x07851617, 0x37171622, 0x21059166, 0xeb833435, 0x35220484, 0xe9823334, 0x33341326, 0x13153231, 0x0f243487, 0x14161701, 0x37830483, 0x2f22232c, 0x013e1701, 0x34353637, 0x5c822627, 0x33280788, 0x17161732, 0x31163307, 0x37082a82, 0x86211802, 0x4d070651, 0x3b281f7f, 0x2f010104, 0x04561629, 0x03050805, 0x073a0a01, 0x2b392906, 0x02021b02, 0x01020204, 0x07072a14, 0x0801142a, 0x0c1e0202, 0x1f0b0808, 0x0c84158c, 0x021b3d08, 0x02083525, 0x3a070629, 0x0403010a, 0x56040509, 0x012f2916, 0x48603b05, 0x45570458, 0x0514133b, 0x290a0906, 0x07033c66, 0x03030504, 0x2b471a19, 0x05070805, 0x442d3725, 0x01124109, 0x21324284, 0x010e0109, 0x02022109, 0x01150108, 0xfe080820, 0x188e15e0, 0x123d8a83, 0x25350741, 0x25370d0c, 0x05080705, 0x181b472b, 0x04050303, 0x663d0207, 0x1a1a1129, 0x0e1b4e3b, 0x98001e25, 0x18250000, 0x2213eb77, 0x4d071411, 0x213005f6, 0x15143003, 0x14151617, 0x012f2223, 0x3632011e, 0x2e0a6c41, 0x3431013c, 0x23060727, 0x3f343522, 0x82272601, 0x82072024, 0x06270803, 0x16172707, 0x35323133, 0x37273534, 0x012f3436, 0x34353437, 0x07232223, 0x15223427, 0x23222707, 0x1f141522, 0x84060701, 0x14152d04, 0x3f323316, 0x012e0701, 0x26373435, 0x06210382, 0x226c8707, 0x4eb60106, 0x43200d70, 0x3005584e, 0x25fd1d01, 0x02030803, 0x4e3d0918, 0x0218093d, 0x08f68203, 0x05250322, 0x08030315, 0x1f101b02, 0x1910180a, 0x010d0213, 0x12090401, 0x09120303, 0x0e010104, 0x0c050805, 0x01211082, 0x36118308, 0x01030108, 0x020b0101, 0x18101913, 0x1b101f0a, 0x03030802, 0x18460515, 0x370e6878, 0x0b0fb4fe, 0x01121c12, 0x20010110, 0x02080402, 0x31312615, 0x03021526, 0x20206e83, 0x12225282, 0x37820216, 0x11201a2e, 0x131e120f, 0x1f141611, 0x01092304, 0x0f266b82, 0x01060103, 0x6d820e04, 0x04700a24, 0x7e846f04, 0x12820420, 0x820f0321, 0x01032f74, 0x1f042107, 0x13111614, 0x110f121e, 0xb2831a20, 0x0012162b, 0x00000600, 0x4102bfff, 0x05c35d01, 0x3c002d3e, 0x58004a00, 0x16010000, 0x2625011d, 0x34350507, 0x3236013f, 0x17360717, 0x06141505, 0x2705ab44, 0x013d012e, 0x26343517, 0x1d230d82, 0x82161401, 0x88372020, 0x011e330d, 0x17363733, 0x011f1415, 0x013d3616, 0x26012f34, 0x0d8c2706, 0x2a022008, 0x17f7fe16, 0x16f7fe17, 0x0e200eec, 0x010e0e2c, 0xf20b0e12, 0xf20a160a, 0x06800e0b, 0x83065004, 0x06902e03, 0x03066004, 0x06600205, 0x045006b0, 0x22038306, 0x82600690, 0x08038208, 0x076c0127, 0x07503117, 0x17315007, 0x05054f07, 0x5204046d, 0x03110be5, 0x36020236, 0xe50b1103, 0x05041022, 0x06011601, 0x21068311, 0x06822d02, 0x821a0221, 0x04032e0d, 0x11021a01, 0x16020610, 0x11040501, 0x23218206, 0x06112405, 0x0d841a82, 0x05021a23, 0x34008200, 0xfff3ff03, 0x010b02bf, 0x006e00c0, 0x007e0076, 0x011e0100, 0x32f48307, 0x1707012f, 0x16323136, 0x010e1415, 0x022e2223, 0x52152735, 0x352108eb, 0x29138307, 0x33363426, 0x27371730, 0xf2820607, 0x36262736, 0x16173637, 0x14150607, 0x35011f16, 0x013f2627, 0x3435012e, 0x22053155, 0x820f1617, 0x14152156, 0x22056755, 0x823e3715, 0x05064419, 0x82340721, 0x1f44083e, 0x14273601, 0x2f363717, 0xa0010601, 0x0a103238, 0x0b08351f, 0x052f1d50, 0x0b060e0a, 0x07080407, 0x13102904, 0x2910131a, 0x0a090d01, 0x050a0e0e, 0x0b501d2f, 0x0a153808, 0x0b3c2f19, 0x19070909, 0x2c4d2126, 0x4e082782, 0x191e1f1a, 0x3b080406, 0x0504073b, 0x1a1f1e19, 0x2c060308, 0x1926224c, 0x55090403, 0x0d0d081b, 0x1d801d06, 0x070e0e05, 0x1e7e011b, 0x24273f73, 0x2a060a3d, 0x0e012114, 0x060b070a, 0x05070603, 0x12091e1c, 0x0d13130d, 0x1c1e0912, 0x820e0c09, 0x213508f8, 0x0a062a14, 0x45191841, 0x09072080, 0x2f280a0a, 0x36164628, 0x09072414, 0x1f330f11, 0x0b0f331e, 0x35350709, 0x0f0b0907, 0x331f1e33, 0x0709110f, 0x16361424, 0x34268246, 0x05060504, 0x14207409, 0x0c262611, 0x13222213, 0x1126260c, 0x0d2f4814, 0x27001127, 0x00003700, 0xf87b1801, 0x013d2108, 0x23067842, 0x35331533, 0x32200386, 0x7a511d82, 0x5a052005, 0x01250e1d, 0x07090af6, 0x269683fe, 0x050c05eb, 0x826040cb, 0x07102701, 0x0940fe09, 0x51781007, 0x321c8305, 0x64010709, 0x07250b04, 0x25070909, 0x025a040b, 0x83a0be02, 0x07092600, 0x09073030, 0x097e6360, 0x0f520020, 0x63402005, 0x392c063b, 0x4c003d00, 0x013a0000, 0x15373637, 0x22072a6d, 0x83371716, 0x020e2f83, 0x23062207, 0x27012e22, 0x3527022e, 0x52183634, 0x3524097b, 0x012b012e, 0x05261183, 0x25152335, 0x0a832315, 0x32832120, 0x06222327, 0x202b2a8b, 0x05696740, 0x20402708, 0x07130dc0, 0x02292c17, 0x11070922, 0x2c290114, 0x0d130717, 0x130d0002, 0x03c00d13, 0x13601924, 0x4020010d, 0x0783e0fe, 0x130d4029, 0x20261ae0, 0x83863016, 0x3086351d, 0x0d13a016, 0x21120613, 0x1009161e, 0x12221d01, 0x130d1005, 0x50822782, 0x21198629, 0x80130d20, 0x83604040, 0x0d13265e, 0x0c002660, 0x07075d00, 0x13000928, 0x27001d00, 0xd7823200, 0x5300482d, 0x69005e00, 0xb2007400, 0x84130000, 0x08744c9e, 0x8b4cb283, 0x23098d05, 0x26223633, 0x695f2482, 0x200abe07, 0x0ce44c05, 0x61158f6e, 0x16200a84, 0x280bc552, 0x07903632, 0x07094009, 0x20058480, 0x270b8ae0, 0x10131a7d, 0x73200808, 0x023006a8, 0x20070900, 0x28380907, 0x0907b0c0, 0x60fe0709, 0xb0230583, 0x843828c0, 0x0d132216, 0x230784c0, 0x01130dc0, 0x90206f82, 0x09217682, 0x2a058f07, 0x080d1320, 0x2e0c0c20, 0xba130d12, 0x85d32009, 0x3828215b, 0x005c6782, 0x21d68205, 0x15852838, 0x84130d21, 0x13b0229d, 0x063f4e00, 0xc001802d, 0x18000900, 0x50004300, 0x18150000, 0x2e088986, 0x35262125, 0x3f363734, 0x17161701, 0x71141516, 0x9518089c, 0x2f250adb, 0x1d020e01, 0xe5951801, 0x057e4b08, 0x1e033323, 0x21148404, 0xa7793736, 0x43022c05, 0x581d9afe, 0x08082b45, 0x8358452b, 0x13202bd7, 0x1840131a, 0x10050c0c, 0x0a82401b, 0x13832020, 0x0803802d, 0x800e1116, 0x01201020, 0x82c0fe40, 0x1ccd3111, 0x2b38431f, 0x350a0a35, 0x1f43382b, 0x800d133c, 0x0727d418, 0x2415482a, 0x0a030807, 0x40481526, 0x0d212782, 0x2d1a8440, 0x05014001, 0x12211512, 0x301c2020, 0x0082000a, 0xffff0337, 0x0002c0ff, 0x0e00c501, 0x84006800, 0x27010000, 0x013f3426, 0x05745036, 0x16220622, 0x2a06fe43, 0x35022e22, 0x36343527, 0x56331617, 0x2225053e, 0x2b06010f, 0x21f18201, 0x1b832306, 0x17221983, 0x1c82031e, 0x2b26342a, 0x012f2601, 0x013b3626, 0x21050a6c, 0x0d820607, 0x36373433, 0x17021e17, 0x32330716, 0x1636023f, 0x0e14011d, 0x22388204, 0x82262705, 0x36032917, 0x03166901, 0x07071603, 0x59080583, 0x52070803, 0x1b253b3b, 0x010a1327, 0x2f23030b, 0x1e15150b, 0x291d190a, 0x354b1216, 0x1124412a, 0x0301040b, 0x3121100b, 0x26261a20, 0x0409211a, 0x09090410, 0x1c1c1420, 0x0a0d1114, 0x05061a0a, 0x25163828, 0x1109051a, 0x180a0f2f, 0x03120871, 0x25150f05, 0x161f1016, 0x39820d15, 0x0b13062c, 0x27260e04, 0x16830135, 0x71850803, 0x03350682, 0x64293b80, 0x130d3424, 0x26070613, 0x2b040306, 0x0f64090f, 0x08748215, 0x35211f48, 0x31301f4b, 0x06050617, 0x15140402, 0x34260e1f, 0x20080126, 0x281c0f08, 0x07070b1c, 0x060f0414, 0x17030a26, 0x24271524, 0x069a190a, 0x03240a09, 0x090c0706, 0x100c0807, 0x02060f0d, 0x0408110c, 0x0d050f08, 0x67410000, 0x82210805, 0xa500c001, 0xb500ad00, 0x1e240000, 0x26010e01, 0x22230607, 0x2627032e, 0x1e070627, 0x16323301, 0x2f0f8314, 0x22062702, 0x23030e27, 0x36342622, 0x37363233, 0x0e211d83, 0x05fd4a02, 0x2726062f, 0x013e3426, 0x1e013e37, 0x36161702, 0x821d8437, 0x27012243, 0x252f8626, 0x1617011e, 0x22823233, 0x692e2721, 0x15310558, 0x36170714, 0x26371732, 0x32363435, 0x06141516, 0x243b820f, 0x3e373233, 0x24708602, 0x23020e07, 0x22818222, 0x821e1716, 0x02032158, 0x2006f467, 0x08078624, 0x13670227, 0x13120708, 0x0c151f16, 0x050a1017, 0x1c030303, 0x13200921, 0x0a0e0e0a, 0x0e192817, 0x0d100d05, 0x28190e05, 0x08108317, 0x0920132b, 0x03031c21, 0x0f150604, 0x1f150c0b, 0x03121316, 0x04070402, 0x110e130a, 0x13160808, 0x040a0806, 0x10171302, 0x0e080c1a, 0x852f8308, 0x17073009, 0x1911192a, 0x25362523, 0x3a1b130b, 0x820b131b, 0x82232009, 0x172a2211, 0x22278207, 0x83101a0c, 0x3409852a, 0x04021218, 0x1306080a, 0x11080816, 0x090e8d0e, 0xfe090e09, 0x200684f7, 0x3ba38268, 0x150f0708, 0x0d140e09, 0x17060d0b, 0x0e38230b, 0x2d1c0e14, 0x01011325, 0x1c2d2513, 0x26080c82, 0x170b2338, 0x110f0d06, 0x15050519, 0x0908070f, 0x07080a05, 0x03010401, 0x0f050508, 0x0e1d1a07, 0x10110305, 0x82150d0e, 0x0f103629, 0x3421150c, 0x25022211, 0x25251b19, 0x2510131b, 0x10250808, 0x2a0b8313, 0x22022519, 0x15213411, 0x82100e0d, 0x2d068328, 0x0e050311, 0x0f071a1d, 0x03080505, 0x91822701, 0x00210287, 0x67421800, 0x000e260c, 0x00160012, 0x09517b1e, 0x26340535, 0x36171527, 0x16073507, 0x37361537, 0x15020e03, 0x77371714, 0xb03206a4, 0x17814157, 0x732659d8, 0x2b992633, 0x81172845, 0x1984b801, 0x6743673a, 0x2967a60b, 0x22477286, 0x22097269, 0x33083f01, 0x292f2c4e, 0x03000067, 0x26067746, 0x000800c7, 0x182c0011, 0x25093d42, 0x3f340535, 0xa9181501, 0x884407ba, 0x82352008, 0x08038315, 0x011f3633, 0x02011d16, 0x0709136d, 0x1300fe70, 0x0907706d, 0x6010d001, 0x60253625, 0x4c093010, 0x094c0b0b, 0x64150851, 0x4cc00907, 0xc02f0815, 0x09f90709, 0xcfa91812, 0x731d2a09, 0x0c4b090e, 0x0e094b0c, 0x20ef8273, 0x22838204, 0x18c001e0, 0x200a6359, 0x73a61800, 0x0bf9630f, 0x62013b21, 0x0f930d53, 0x14900127, 0xfe141c1c, 0x200583a0, 0x093a4870, 0x8a0a4548, 0xa001210a, 0x0b52e018, 0x80b0fe26, 0x07090907, 0xe0210484, 0x84098207, 0x05225004, 0xaf950e82, 0x78482520, 0x69352005, 0x152106fe, 0x06f14405, 0x22012b28, 0x14011d06, 0x0f9e1716, 0xaac00121, 0x05b87d82, 0xdba46020, 0x003dae82, 0xff000002, 0x018201c0, 0x000700c0, 0x00000028, 0x36342622, 0x07141632, 0x16170727, 0x82a18206, 0x3b3d080e, 0x012e2701, 0x3736013f, 0x37011f36, 0x06011e36, 0x2606010f, 0x25361b01, 0x5f253625, 0x136e2318, 0x11d01a15, 0x5c111717, 0x1214202d, 0x28261231, 0x0c3a2718, 0x0d031521, 0x01210c58, 0x08248240, 0xcf362528, 0x136e411d, 0x17221731, 0x21471423, 0x0404215c, 0x0a2f2e1e, 0x0b211903, 0x00030a48, 0xffff0200, 0x8002c0ff, 0x8182c201, 0x83825120, 0x82052246, 0x055d5765, 0x35013f29, 0x30013f34, 0x56013e33, 0x1d2905fe, 0x32161401, 0x34013d36, 0x05724a05, 0x196a2220, 0x06725105, 0x2f221a85, 0xaf822601, 0x32171624, 0x24821731, 0x03012708, 0x262f131a, 0x100404b3, 0x105a1610, 0x19070175, 0x07060c0a, 0x0e090e4d, 0x167a0109, 0x04041010, 0x132f26b3, 0x0f82131a, 0x4d0e3f08, 0x0a0c0607, 0x75010719, 0x13000110, 0x3f27800d, 0x15012f0a, 0x0717600b, 0x181d511e, 0x06050bb0, 0x820b1a07, 0x074d1a17, 0x50070909, 0x17078f0d, 0x01150b60, 0x273f0a2f, 0x13130d80, 0x1683500d, 0x171a4d2c, 0x061a0b82, 0xb00a0607, 0xd0821d18, 0x00000425, 0x8201c0ff, 0x16002701, 0x4e003100, 0x595d5600, 0x020f3518, 0x011f0622, 0x32330607, 0x32173733, 0x012f3233, 0x23263637, 0x222ecc82, 0x14062227, 0x37323316, 0x23343536, 0x9a452230, 0x013a2205, 0x22128231, 0x5d262334, 0x932e186c, 0x0102190b, 0x01041201, 0x16010104, 0x06820116, 0x0112043f, 0x0b190201, 0x2f3b0401, 0x152f4444, 0x03070513, 0x38382701, 0x01030127, 0x14060602, 0x17855d75, 0x16782108, 0x11020404, 0x0c0c0419, 0x02111904, 0x02160404, 0x43604343, 0x06050207, 0x01384e38, 0x8dfe070e, 0x44058f5d, 0x01280533, 0x1900c001, 0x5f002400, 0x1625e982, 0x06010f14, 0x22c38222, 0x8406013d, 0x163229b7, 0x33071415, 0x32041732, 0x2e22cc82, 0xd9822301, 0x011e372d, 0x07061415, 0x012b1415, 0x72013d22, 0x17210541, 0x057e6916, 0x2e012f2a, 0x3e343501, 0x34353301, 0x1d241082, 0x16171601, 0x27215082, 0x242a8226, 0x17141506, 0x17111a01, 0xfe230813, 0x275478ff, 0x543c2742, 0x19120eab, 0x08100812, 0x07080e11, 0x0606040c, 0x07051c07, 0x120e2d09, 0x8f0c130c, 0x05330815, 0x1c071407, 0x07640707, 0x7a2c100a, 0x567a7aac, 0x09073848, 0x43273c54, 0x45785426, 0x120f1805, 0x0810011a, 0x0b011008, 0x040b0705, 0x05080403, 0x820d030a, 0x140c2216, 0x20168f0d, 0x06074400, 0x2605d359, 0x00240019, 0x413b0030, 0x362c2609, 0x14151632, 0x27220607, 0x17343526, 0x2305ab64, 0x011e1415, 0x712fe59d, 0x03432b3e, 0x4a430308, 0x140e0e0a, 0x9b0c060e, 0x2b9c2aca, 0x034f241f, 0x1f244f03, 0x242b8235, 0x0b070a0e, 0x08af8406, 0xfffaff24, 0x010002c0, 0x001000c0, 0x0025001b, 0x37000034, 0x0717010e, 0x26222306, 0x3f362627, 0x15333501, 0x4d4c1535, 0x06172206, 0x076f4c37, 0x82033321, 0x43142018, 0x278205ab, 0xd7372008, 0x15161628, 0x2e19201a, 0x1e11120d, 0x13a0a057, 0x0602800d, 0x130dc008, 0x200d13c0, 0x827333c0, 0x832d201a, 0x1e89351a, 0x1311295e, 0x48211719, 0xa0b04116, 0x0d2020e0, 0x100e0213, 0x26058975, 0xd0b0f0fe, 0x85572640, 0x234d181d, 0x82472008, 0x411b209b, 0x0f210547, 0xd24a1801, 0x3f26270e, 0x011f3601, 0xd94d3637, 0x06142905, 0x0e03012b, 0x2f222301, 0x263b0382, 0x3634013d, 0x1f32013b, 0x013e1301, 0x0c3b0233, 0x0c2e2e0c, 0x0b0c160c, 0x820b2e2e, 0x2d0d8b06, 0x0e0e0a03, 0x0662c30a, 0x121f1020, 0x0c832c58, 0x0a135128, 0x1202553a, 0x2e93c50b, 0x4a851620, 0x0a0ee52b, 0xfe0e0a30, 0x1c141589, 0x250a84a4, 0x43016a11, 0xb7880d0b, 0xb7820220, 0x39001c25, 0x41050000, 0x232d05da, 0x36342622, 0x16173233, 0x30230607, 0x06766226, 0x18373621, 0x08195444, 0x5401014e, 0x2b0b0907, 0x96966a2e, 0x0c2c2e6a, 0x070d0203, 0x7c7c5702, 0xa3070257, 0x37040307, 0x0407010d, 0x44440302, 0x07040203, 0x04370d01, 0x224c0703, 0x22030c03, 0x0b060912, 0xd4961004, 0x0d051096, 0xae7c010c, 0x01fc017c, 0x4c36040c, 0x242e2582, 0x05060124, 0x0c04364c, 0x06450b01, 0xaa824506, 0xff080027, 0x01c0fffa, 0x38ab82d6, 0x0020001d, 0x00290026, 0x002f002c, 0x00350032, 0x16172500, 0x07012b06, 0x054e4106, 0x27013f28, 0x013b3626, 0x0b643637, 0x0f290805, 0x07172301, 0x17072327, 0x33070333, 0x07371707, 0x37172733, 0x27333723, 0x0b359601, 0x386b1516, 0x380b2a0b, 0x0b16156b, 0x080e8d35, 0x14284222, 0x35703520, 0x17387035, 0x1414b82e, 0x8d142828, 0x28902e17, 0x1359c014, 0x12125e24, 0x5913245e, 0x012e0988, 0x58583721, 0x260e0158, 0xb0212138, 0x06827f21, 0x2709434d, 0x000900c9, 0x00270013, 0x9284c482, 0x3523112a, 0x16213734, 0x1123011d, 0x17240f82, 0x15161727, 0x26231283, 0x83010e07, 0x3f342913, 0x27173601, 0x2b263637, 0x2220c682, 0x6f45bc82, 0x3b163605, 0x32161701, 0x3233013f, 0x0c044636, 0x07802604, 0x80077202, 0x3b0a8226, 0x600c80e6, 0x1e171e2d, 0x14800c60, 0x02131348, 0x19270303, 0x19010601, 0x02030327, 0x2f080e8d, 0x2b0505fb, 0x0ae2f0fe, 0xe20a0808, 0x052b1001, 0x0a66be05, 0x6086fe0f, 0x0405271d, 0x015d1826, 0x660a0f7a, 0x1f1fe810, 0x02280502, 0x02052802, 0x00210988, 0x08df4f0b, 0x0500022a, 0x14001100, 0x1b001700, 0x512fd182, 0x57005400, 0x00005d00, 0x37332725, 0x64242707, 0x222f05d2, 0x34113526, 0x33173713, 0x11051737, 0x55011121, 0xc3830811, 0xc4843320, 0x35363725, 0x83012f34, 0x21e78405, 0xe9843123, 0x36083f8b, 0x0f231707, 0x27172701, 0x07173337, 0x24124001, 0xfe131251, 0x1c1c289e, 0x12dd1c28, 0x12137c13, 0x8001ddfe, 0x0303c3fe, 0x0c031d1d, 0x061d3c09, 0x1d060c0c, 0x8f060c3c, 0x73012110, 0xe0283384, 0x132c2412, 0x21214212, 0x52330282, 0x1f1f891d, 0xfe0d13c8, 0x13130d40, 0x0dc0010d, 0x821fdbfe, 0x01983700, 0x0160fea0, 0x050b0516, 0x06053131, 0x0a310d08, 0x050b310a, 0x0e8a0605, 0x348aaf20, 0x1a1d7f26, 0x386f1e1e, 0x00210082, 0x0a7b5900, 0x3900352c, 0x00003d00, 0x15373201, 0x027f0614, 0x0a187109, 0x30652120, 0x23353911, 0x013d2622, 0x15073316, 0x35173533, 0x78011523, 0x0d134048, 0x09073020, 0x20078964, 0x054150ff, 0x202c1185, 0x4840130d, 0x60a06008, 0x6020a001, 0x09250b82, 0x09072007, 0x202c83f0, 0x840585f0, 0x23418210, 0x40602060, 0x00360083, 0xfffeff03, 0x018202c0, 0x004000c0, 0x00480044, 0x07162500, 0x506f0f06, 0x704f1809, 0x193d2007, 0x2b08ac7b, 0x2627013d, 0x013f2627, 0x34262735, 0x36210584, 0x05dc483f, 0x16171523, 0x20398214, 0x2aaa8225, 0x21352105, 0x01087902, 0x84370801, 0x052a6771, 0x37200585, 0x21081683, 0x09093759, 0x03061b77, 0x07b7b707, 0x771b0603, 0xfe370909, 0x00ffc0c0, 0xc0fe4001, 0x080a052f, 0xd0851404, 0x1433058b, 0x050a0804, 0x04124031, 0x40320414, 0x04100610, 0x82045656, 0x32402106, 0x12231082, 0x8240e040, 0x00003702, 0xff000002, 0x010702fb, 0x00110085, 0x1300002d, 0x11151636, 0x4c450614, 0x4505200a, 0x1f3f167e, 0xd7071601, 0x0b1e1e0b, 0x0e0a6659, 0x01660a0e, 0x0c0c2d50, 0x2e0b0b17, 0x170b0b2e, 0x8c2d0c0c, 0x7901300d, 0xfe100c0b, 0x0b0c10b0, 0x900a0e59, 0x93600e0a, 0x18328624, 0x230d9356, 0x001d000f, 0x0a7b5c18, 0x26471620, 0x26142105, 0x4f450783, 0x3d771805, 0xce91220a, 0x2f028291, 0x13131aeb, 0x5008131a, 0x50283838, 0x28507070, 0x0d1fb518, 0x1b82e720, 0x6d1a132b, 0x70385038, 0x503870a0, 0x820e84b8, 0xffff3773, 0x4002c0ff, 0x1b00c201, 0x44003400, 0x00004c00, 0x011d2201, 0xba183b14, 0x112f12b7, 0x16010721, 0x2606010f, 0x37012e27, 0x841f013e, 0x012f260c, 0x36371706, 0x0ff25417, 0x0121b087, 0xcbba1888, 0xfe2b080d, 0x118001e0, 0x0c0570fe, 0x07190a27, 0x08460246, 0x0c270b19, 0x0c051a05, 0x2d1b1b2d, 0x5b01050c, 0x0d13251b, 0x130da0fe, 0x84831b25, 0x800125cf, 0x40081008, 0x013d0387, 0xf1fe4060, 0x0618070d, 0xcf4d0803, 0x0705094e, 0x3f0d0718, 0x4a05010c, 0x0c01054a, 0x17bb1870, 0x5800200f, 0x974a053f, 0x00072405, 0x8230001e, 0x005422df, 0x09034c5c, 0xfd671720, 0x22062515, 0x17141506, 0x08956218, 0x34353626, 0x011f0607, 0x16230383, 0x8217013f, 0x2f362303, 0x03823701, 0x010f2626, 0x17072627, 0x20060768, 0x06924112, 0x0e170127, 0x090e0909, 0x0e1568a0, 0x2f42af30, 0x40070920, 0xc3200907, 0x47470703, 0xc4820307, 0x08626222, 0x07220682, 0x0d884646, 0x9d4afa20, 0x84772005, 0x38012142, 0x09224782, 0x3068e70e, 0x261e3910, 0x0d13201a, 0x07090907, 0x1a20130d, 0x1e030881, 0x0e08031e, 0x2b2b0308, 0x0d860684, 0x032a2a28, 0x1240ef08, 0x4786121c, 0x2708af47, 0x00c70180, 0x00230020, 0x250f897a, 0x2713013b, 0x67483f26, 0x011f2a05, 0x13010f16, 0x02330725, 0x21678370, 0x0583a0fd, 0x35ef192a, 0x0d190d09, 0x0a29290a, 0x09270682, 0xe9feef35, 0x1809e874, 0x29088745, 0x0d4a4a01, 0x0d091309, 0x06843838, 0xb6fe4a24, 0xcf6ea0a0, 0x00022706, 0x2d00a001, 0x595e3700, 0x1e012305, 0xe0443303, 0x26222506, 0x3307013d, 0x09e34818, 0x34113527, 0x34262226, 0x26128436, 0x013f033e, 0x83061415, 0x08b26d23, 0x27085a42, 0x21170423, 0x110f172a, 0x20087f84, 0x130d2080, 0x1ab00709, 0x131a1326, 0x38280d13, 0x1c333313, 0x503840ab, 0x0e0f4038, 0x090e0909, 0x27058459, 0x26160001, 0xce040f1b, 0x902ccb83, 0x100d1360, 0x1a260907, 0x130d0001, 0x38303582, 0x271d5628, 0x4060040e, 0x38382886, 0x50408628, 0x2a0b9550, 0xfffcff02, 0x01c401c0, 0x821700c0, 0x794e18c3, 0x1d162a09, 0x34352301, 0x35231527, 0x23038223, 0x06160106, 0x45090945, 0x223a09a7, 0x36013f26, 0x17322133, 0x354b3070, 0x304b3540, 0x30303028, 0x054e0128, 0xbc841013, 0x3f069c45, 0x0a061410, 0x6a011708, 0x40010817, 0x4b358080, 0x8080354b, 0xd0c5172e, 0xfe17c5d0, 0x701b0ffc, 0x7020b583, 0x1b240585, 0x1616200f, 0x2008cf41, 0x23978242, 0x003c001c, 0x2806e575, 0x2622012b, 0x37363435, 0x24058334, 0x17163233, 0x2f048236, 0x36371415, 0x07060716, 0x35362726, 0x22232634, 0x1e850882, 0x1e172508, 0x010e0701, 0x01161415, 0x2f2a1f57, 0x3828f021, 0x38011d24, 0x0d2c1b28, 0x261a1a12, 0x040706d5, 0x25115435, 0x40081182, 0x0a071113, 0x114f7102, 0x05020612, 0x5f6d2923, 0x211f2e02, 0x1f28382f, 0x04010a31, 0x1b382801, 0x1a261217, 0x0b012711, 0x24054105, 0x28050610, 0x07070738, 0x70500c0d, 0x030d0103, 0x46294614, 0x26af825b, 0xff000003, 0x828002bf, 0x001e24af, 0x76510044, 0x34220f97, 0xb8823426, 0x0628b289, 0x06171625, 0x2606010f, 0x2108bf5e, 0xab5f1f36, 0x83012009, 0x222625cd, 0x34371406, 0x1721e183, 0x28de8206, 0x3f02012e, 0x2838241d, 0x08c782fe, 0x01253426, 0x36222e42, 0x1a12100e, 0x52fe0126, 0x090f150f, 0x030d094c, 0x0808531d, 0x0d031d53, 0x05295809, 0x58290512, 0x31081282, 0x090d111e, 0x425c210e, 0x1923311c, 0x083b0a29, 0x271d0d0c, 0x1f310a7a, 0x28383828, 0x01033626, 0x2e010304, 0x0a1e2442, 0x04011a26, 0x0f081016, 0x3e8c1913, 0x593b5188, 0x0d140602, 0x2e5c4221, 0x171b3123, 0x08044424, 0x00002f05, 0xfffeff0a, 0x82e201be, 0x000538f3, 0x0017000e, 0x00270020, 0x003a0030, 0x004b0045, 0x3700004f, 0x82222717, 0x260624df, 0x8234013d, 0x260735dd, 0x15173336, 0x03270614, 0x3f342627, 0x07163601, 0x36372317, 0x08059d60, 0x14011d40, 0x26032f06, 0x011f013e, 0x03071416, 0x010f1632, 0x012e2206, 0x1737013d, 0x07230616, 0x27073327, 0x04d06c6b, 0x01060204, 0x4d020406, 0x03020341, 0x720407cc, 0x97020251, 0x3d040905, 0xef825f6d, 0x7d5f2808, 0x01060402, 0x0250104c, 0x97030702, 0x03020202, 0x02c30302, 0x75020304, 0x0404026a, 0x646419d0, 0x16bee964, 0x82380408, 0x03a23f17, 0xe72e0102, 0x42160602, 0x01020504, 0x04013159, 0x09036202, 0x08a89905, 0x011da808, 0x1f820302, 0x7a032908, 0x07048f1b, 0x02620202, 0xd5fe0104, 0x01570206, 0x42020402, 0x08049cdf, 0xb0b0c516, 0x00000300, 0xc001bdff, 0x0b00cb01, 0x2326f982, 0x16010000, 0x2f570f14, 0x79362008, 0xfa820647, 0xfb832720, 0x2408f682, 0x3526012f, 0x0404a601, 0x0404c6c6, 0xb42020a6, 0x98200804, 0x08f01008, 0x0810c404, 0x52012098, 0x77020a02, 0x3b048277, 0x92141465, 0xc6050503, 0x055d1326, 0x6de00a0a, 0x74030505, 0x050a0ae0, 0x0026135d, 0x03320082, 0xc0ff2000, 0xa3012002, 0x34001e00, 0x00003c00, 0x35491725, 0x55098809, 0x142306ed, 0x84253316, 0x27152213, 0x39868335, 0x011e3233, 0x3233011f, 0x26340616, 0x16140622, 0x962a0132, 0x07400709, 0x0584a009, 0x13241c34, 0x0d13131a, 0x1a26a001, 0x07148020, 0x0b06351c, 0x1e830309, 0x0e097028, 0xe00e0909, 0xa843da36, 0x0ad62509, 0x130d1f31, 0x70302f82, 0x24261a20, 0x080b962e, 0x08051b08, 0x0e090e05, 0x09382a83, 0xfcff0300, 0x8202bfff, 0x1000c001, 0x47004100, 0x06370000, 0x3e013f26, 0x15247e82, 0x22231714, 0x052f0b82, 0x0e07011e, 0x22212301, 0x37343526, 0x1837023e, 0x210857b4, 0xf34d2627, 0x05a46305, 0x22012b25, 0x8223012f, 0x06373034, 0x37161716, 0x09090c12, 0x122a1175, 0x82df0f78, 0x5b7f0872, 0x23207f01, 0x30480302, 0x0a080dfe, 0xbc55470e, 0x3c332d5a, 0x3e3c0404, 0xed050403, 0x064b0a10, 0x13090f03, 0x1c090e1f, 0x030e1b40, 0x05130b0e, 0x071601c0, 0x0c020e75, 0x292a2b57, 0x42450714, 0x2f233c10, 0x0e080a40, 0x19111003, 0x365f1e03, 0x0a02196d, 0x04321902, 0x09630d0a, 0x1c07080a, 0x25170912, 0x0cae0e1d, 0x13010111, 0x00000100, 0x0302bfff, 0x2800c101, 0x16010000, 0x82062607, 0x061728c0, 0x012b2223, 0x82170607, 0x220627ae, 0x06372627, 0x234e2627, 0x013f2105, 0x4c08d882, 0xcf013236, 0x481f0233, 0x1e011e1a, 0x01011f1d, 0x090f2856, 0x12322304, 0x16220817, 0x0c192312, 0x280f160b, 0x018c323f, 0x1149338e, 0x581e1909, 0x0e290a21, 0x190c0b16, 0x22161223, 0x31121708, 0x0f090424, 0x3f4f5628, 0x00000032, 0x4f7f820c, 0x2a0807e7, 0x00300020, 0x00500040, 0x00700060, 0x00900080, 0x00a3009a, 0x370000ac, 0x07060716, 0x22012b06, 0x3637012e, 0x17013e37, 0x18011e25, 0x2408907c, 0x32363736, 0x744f1803, 0x3336220c, 0x200f8e17, 0x21408413, 0x3f84012f, 0x1f163623, 0x26d28201, 0x013f2627, 0x82171636, 0x23062401, 0x82061627, 0x05014b4f, 0x16205e82, 0x0f8f3f8f, 0x32362725, 0x82141117, 0x27352390, 0x08853736, 0x17161323, 0x08118415, 0x050b8125, 0x0d020105, 0x05070561, 0x03130301, 0x1101060e, 0x25030607, 0x0b2a0b04, 0x06032504, 0xb0401f07, 0x18090907, 0x8608c04a, 0x05ad3509, 0x0908090b, 0x0306530b, 0x062a1e05, 0x0df5030d, 0x05050102, 0x0e200f82, 0x01274382, 0x052a070a, 0x84530603, 0x24052622, 0x2a060d03, 0x29439249, 0x0a0c0aa0, 0x40081008, 0x0582140c, 0x0c148022, 0xfd250582, 0x0e0d0d07, 0x348a820e, 0x04062b2e, 0x0d028804, 0x0b0b6806, 0x020d0668, 0x09e0fe08, 0x07265607, 0x0a898020, 0x0c1c0135, 0x09080608, 0x0e043307, 0x03182406, 0x0ed60705, 0x820d0d0e, 0x06042c0e, 0x0a072e2b, 0x040e06a3, 0x82090733, 0x5a0c2622, 0x18030507, 0x354494e7, 0xfe0202ee, 0xfd0808da, 0xe5fe0c12, 0x1b010808, 0x08fd120c, 0x89180008, 0x11280c1f, 0x4f002d00, 0x71006800, 0x13fd8718, 0x34350322, 0x0a2a6c18, 0x20050f70, 0x06355126, 0x36321729, 0x012f3435, 0x18343526, 0x24085b91, 0x1f141506, 0x05d86e01, 0x14011d24, 0x3c833733, 0x17240882, 0x36373216, 0x0d823c85, 0x35260722, 0x157c8618, 0x08086027, 0x141c1c14, 0x30008208, 0x07090907, 0x122c0808, 0x02160e19, 0x08080c0b, 0x2809880c, 0x08100860, 0x050e0524, 0x22078224, 0x18791010, 0x2713118c, 0x1c0810e8, 0x1c142014, 0x092d2182, 0x09072007, 0x10101760, 0x0201130c, 0x8a108207, 0x08782a0a, 0x27371508, 0x37270505, 0x08098215, 0x1a1a1f22, 0x0a07b41f, 0x00078006, 0xff000005, 0x018001c0, 0x000b00c0, 0x004f0043, 0x006f005f, 0x22230100, 0x2d07b86b, 0x14151715, 0x2115010f, 0x3d262735, 0xfc821601, 0x04853720, 0x0f061723, 0x05014101, 0x3f323327, 0x37023e01, 0x23f38532, 0x36343526, 0x16232582, 0x7d2b2627, 0x1622062e, 0x4f180515, 0x1d250940, 0x23061401, 0x240f8e33, 0x08300001, 0x08bd8408, 0x241c802f, 0x251b00ff, 0x12200808, 0x20120e0e, 0x1b0c0b0b, 0x01061b15, 0x02020e03, 0x12060304, 0x08162018, 0x1c14230d, 0x1a700709, 0x0f112026, 0x23348420, 0x0907b0fe, 0x15420884, 0x83202006, 0x2001230e, 0x07839303, 0x58f02a08, 0x40241c28, 0x35251b40, 0x0c0c034e, 0x12091a06, 0x03020928, 0x02080304, 0x1b1b0904, 0x10080112, 0x07141c08, 0x063f2509, 0x202e8370, 0x06d458b0, 0x6c6c8020, 0x07092206, 0x05ab72a0, 0x0000032e, 0x8001b9ff, 0x1e00c301, 0x2e002600, 0x270a0d4e, 0x06010f26, 0x2226012f, 0x05820685, 0x11352624, 0x64183634, 0xba3f0f72, 0x07147452, 0x2b0a0c19, 0x05290b0b, 0x0b29050e, 0x0c0a2b0b, 0x6c140719, 0x13131a07, 0x8493131a, 0x01210805, 0x517102c0, 0x080bf0fe, 0x0b091208, 0x2e0c0c30, 0x0c2e0505, 0x090b300c, 0x0b080812, 0x76500801, 0x872a82de, 0x00003202, 0xffffff02, 0x014702bf, 0x001b00c0, 0x25000027, 0x22828516, 0x8327013f, 0x3d420890, 0x32362701, 0x0716011f, 0x17363717, 0x17161705, 0x26220607, 0x16253734, 0x0c0c3b02, 0x160c0b5a, 0x1d0b0c0c, 0x13311a24, 0x2f842f5a, 0x1d091a2d, 0xfe0c0b0b, 0x070431f8, 0x253412ee, 0x05ff0014, 0x26820bfe, 0x82170b21, 0x091c2116, 0x1a232682, 0x822f2d13, 0x1d243427, 0x080b0b0c, 0xff050431, 0x12342514, 0x000007ee, 0x61001000, 0x07260797, 0x17000f00, 0x8d821f00, 0x6d002f3f, 0x83007800, 0x9b009000, 0xb300a800, 0xc900be00, 0x0000d600, 0x1d323313, 0x34352301, 0x21078623, 0x0f85013b, 0x17210787, 0x821c8215, 0x8621200c, 0x1821201f, 0x2008f141, 0x0d2f6333, 0x64183b20, 0xdf610853, 0x61142005, 0x3d230e55, 0x61363401, 0x04210be5, 0x08f06122, 0x2e222523, 0x07f16101, 0x054b0e20, 0x013f2505, 0x17141516, 0x0e222289, 0x0c893201, 0x0a941620, 0xe8242d8c, 0x38200810, 0x07830382, 0x07824820, 0x08206025, 0x83fe0810, 0x10022109, 0x2a239161, 0x141a0709, 0x06060c0e, 0x85b2fd18, 0x08012407, 0x83060b07, 0xd00e2110, 0x28211085, 0x221f840a, 0x85430b06, 0x8592200f, 0x8e322006, 0x2001251d, 0x08787808, 0x09220393, 0x90617007, 0x0770220f, 0x22158209, 0x83c0130d, 0x13c02207, 0x2a0f820d, 0x060b1020, 0x270a0a1b, 0x88100b0e, 0x07202309, 0x1487080c, 0x1f913020, 0x070c0822, 0x3e8a1491, 0x28824888, 0x240bc352, 0x0023000f, 0x105d4e2b, 0x17373338, 0x3f363723, 0x15060701, 0x23011f14, 0x012f013f, 0x0737010f, 0x0983011f, 0x83f00121, 0x20fe21a9, 0xb0360583, 0x116f9010, 0x0438bc24, 0x10d05606, 0x20204040, 0x20208040, 0x03821010, 0x82060b44, 0x20402c25, 0x6b1526fa, 0x0d0a0aa9, 0x8220ca0c, 0x20402221, 0x282184c0, 0x04002010, 0xbfffffff, 0x05f74401, 0x4a001b33, 0x00005200, 0x07173717, 0x2223010e, 0x37022e27, 0x2a77820e, 0x013f022e, 0x1e17013e, 0x19170701, 0x210cbf06, 0x9d822f22, 0x16173124, 0x744e011d, 0x26272305, 0x29833435, 0x1f32332a, 0x34353301, 0x22263336, 0x3c053c5c, 0x19342351, 0x040b1103, 0x050c0804, 0x070b0211, 0x03060440, 0x3a081a01, 0x02070721, 0x08c383e7, 0x0907103f, 0x160a0d30, 0x132f0114, 0x57131a13, 0x051b0109, 0x11181420, 0x0709232f, 0x1c1c285c, 0x8a181c28, 0x0d0b6535, 0x100c0201, 0x010706cd, 0x08060110, 0x221f6204, 0x060b0208, 0xfe07092b, 0x234383c0, 0x501709f0, 0x1a303f82, 0x13130d53, 0x0a56530d, 0x6b04040d, 0x2f111914, 0x40205b82, 0x1c224182, 0x58180028, 0x3e280a67, 0x00004600, 0x011e3201, 0x844ebb83, 0x22098909, 0x4a272206, 0xc98208f8, 0x64173221, 0x362108da, 0x23368233, 0x06023e17, 0x2b066552, 0x1b114502, 0x090d130f, 0x09072007, 0x0805c947, 0x337a3327, 0x07400709, 0x49507009, 0x100a0e37, 0x0f110e0a, 0x081a2314, 0x801a1f07, 0x0e09090e, 0x14600109, 0x0d5c111f, 0x82308213, 0x07b02835, 0x47070909, 0x84471717, 0x5e422fc4, 0x0e0a3129, 0x060e0a0e, 0x03111b0f, 0x574f090f, 0x08bb4e05, 0xc0014126, 0x51004900, 0x152cbb82, 0x06010f14, 0x15022f26, 0x07141530, 0xa55daa88, 0x012f2507, 0x3f343526, 0x35220483, 0xd07b0637, 0x056b4605, 0x36153323, 0x05ff583b, 0x06071626, 0x16171607, 0x4027c688, 0x180b2114, 0x51101305, 0x25080576, 0x021a1886, 0x0c420809, 0x04021903, 0x11011f1a, 0x07100709, 0x1d243409, 0x354ba02b, 0x01050478, 0x06071204, 0xce854709, 0x164d732e, 0x09050d08, 0x6607260b, 0xb2212d01, 0x9634c783, 0x08694017, 0x07640c0c, 0x440b0c08, 0x0302291d, 0x38130d03, 0x382f1883, 0x21013424, 0x04064b35, 0x07080b13, 0x83092009, 0x02002d41, 0xc0fff9ff, 0xc1014702, 0x34001700, 0x1723db82, 0x8433011e, 0x372726d2, 0x17071727, 0x22ba8323, 0x45353632, 0xdd4507d7, 0x25372405, 0x181f3236, 0x0809504f, 0xdb20012c, 0x09010301, 0x6828b007, 0x25683c94, 0x01090795, 0x0cf60104, 0x0c0b150b, 0xe50b0be5, 0x0b160a0c, 0x0c00010c, 0x09650c1e, 0x1c824007, 0x01c14d3b, 0x0907b902, 0x77894037, 0x07094940, 0x480102b9, 0x0c180c0b, 0x0a0aca0b, 0x240884ca, 0x5a0a0ae2, 0x30b28334, 0x00010088, 0x01e0ff00, 0x00a00180, 0x2500005a, 0x09805123, 0x15060731, 0x013b1614, 0x36013f32, 0x16011f16, 0x4b010f06, 0x27220526, 0xb4843726, 0x3b363423, 0x26098a01, 0x26343536, 0x8222012b, 0x2f262625, 0x3f362601, 0x231e8201, 0x16171632, 0x01245087, 0x86226470, 0xcc3a7283, 0x090c071d, 0x0c060954, 0x14071308, 0x0c080207, 0x134f251d, 0x1b091d23, 0x1e832a17, 0x1c22259a, 0x24850e32, 0x1348d020, 0x821b2005, 0x060c222f, 0x2f438209, 0x06140818, 0x170b180a, 0x09302e10, 0x09072007, 0x1a211f95, 0x201e8618, 0x32008200, 0x00f1ff03, 0x01950200, 0x00170080, 0x002b0021, 0x82320100, 0x070624ac, 0x47222306, 0xe58206e8, 0x3736372e, 0x37320636, 0x22262736, 0x04170607, 0x013e0988, 0x324ad741, 0x1d3f1b1f, 0x1a263f1f, 0x190c270c, 0x614f4026, 0x4a721713, 0x09215e4f, 0x04832109, 0x89310121, 0x6d80360a, 0x1e485749, 0x1126380d, 0x88382611, 0x1c2c6050, 0x0b0b29f4, 0x82038a29, 0x085f478a, 0x91821220, 0x16050024, 0x8b821415, 0x22212d08, 0x35262726, 0x36013734, 0x010f1732, 0x02333717, 0x0904057b, 0x09c0fd13, 0x0504040f, 0x220a2001, 0x26661b0a, 0x080f5540, 0x11070809, 0x07820382, 0x0fc00127, 0x269f4c0f, 0x09375a40, 0x4b00c02b, 0x53004f00, 0x00005700, 0x0d4a5825, 0x23053843, 0x2135013b, 0x2107d168, 0x1388012b, 0x08bc7718, 0x49055458, 0x704305f3, 0x21152d05, 0x25151632, 0x03233533, 0x21152335, 0x02250382, 0x68070980, 0x94471838, 0xfe382208, 0x270c8ad0, 0x09090768, 0x48180107, 0xc0201e83, 0x48310483, 0x09071801, 0x808080fe, 0xc0016040, 0x0907b860, 0x766b1828, 0x8b282009, 0x0709220b, 0x261c8d10, 0x40780709, 0x824080fe, 0x00003300, 0xf9ff0300, 0x8002c0ff, 0x3e00c101, 0x4e004600, 0x4f180000, 0x072108f7, 0x064a4817, 0x27012b22, 0x2409d242, 0x16140622, 0x2123823b, 0xe5830614, 0x37262723, 0x05f94b36, 0x3b363727, 0x011f3202, 0x3c1f8306, 0x17343632, 0x23373632, 0x02371707, 0x38130d60, 0x375c1728, 0x09130d1c, 0x954b5007, 0x20078340, 0x065047e0, 0x0d132c08, 0x05301e6c, 0x70281e07, 0x0f993850, 0x1a011411, 0x0e390d13, 0x090e0909, 0x05190f10, 0x660e774d, 0x0d13a001, 0x32382820, 0x820d136e, 0x509021c5, 0x1f820684, 0x131a132d, 0x1e2a1d25, 0x50022e26, 0x82085870, 0x29138215, 0x12570e09, 0x371c3b0e, 0xd7820300, 0x0002002c, 0x0b008001, 0x1d001700, 0xfa180000, 0x41080b05, 0x15062224, 0x32361714, 0x34353617, 0x37321605, 0xda932226, 0x96d49693, 0x70a05001, 0x49d8490b, 0x39b8fe0b, 0x9c3a399e, 0x3e528001, 0x53533b62, 0x123e623b, 0x0d0d212f, 0x0d0d2a2a, 0x17175a21, 0x5f830019, 0x01c0ff2c, 0x00c001a0, 0x00150007, 0x05630042, 0x1f162409, 0x63060701, 0x25230705, 0x83141632, 0x012f210c, 0x25068779, 0x2e272223, 0x1d633f01, 0x26272505, 0x2e06010f, 0x0976a018, 0x28240135, 0x1c281c1c, 0x0a1a0cce, 0x4d200d08, 0x0d13130d, 0x831d0143, 0x36280806, 0x20140d1e, 0x050c0e3e, 0x0518071f, 0x030c0c05, 0x0f15551c, 0x0d0f250a, 0x1a0a280c, 0x270b0310, 0x2a472c25, 0x60011a14, 0x1c2b3e82, 0x0f1cf928, 0x131d1506, 0x8280131a, 0x1b220803, 0x09244e29, 0x16660f1e, 0x0d180302, 0x2e0d3257, 0x03055716, 0x03081e0a, 0x1e081b15, 0x0b150b1c, 0xbc823528, 0x2708b765, 0x000a00c0, 0x0026001a, 0x42052f41, 0x013005ba, 0x06070614, 0x34113526, 0x16322127, 0x17211115, 0x14260683, 0x32212306, 0x70823536, 0x09075031, 0x171e0001, 0x01102d1e, 0xfe382850, 0x820120e0, 0x42320811, 0x28b0fe2e, 0x1cc00138, 0x07095014, 0x7ffe1440, 0x05042618, 0x70011d27, 0x2838161a, 0x092000ff, 0x38422e07, 0x04000028, 0xbefffeff, 0xc001c201, 0xcb562300, 0x1e052807, 0x0e010f01, 0x18012f01, 0x2011544a, 0x07434537, 0x012e2722, 0x085b1119, 0x74641720, 0x36372105, 0x20067742, 0x2c078626, 0x0406b701, 0x0d030e03, 0x05bbbb05, 0x2308820d, 0x8e8e0604, 0x93351190, 0x78542620, 0x06202654, 0x7e080b02, 0x94020a08, 0x1a13131a, 0x052a5913, 0x0d030524, 0x31821c06, 0x035a5a23, 0x23088204, 0x4545030d, 0x93301190, 0x35223a11, 0x22354b4b, 0x0a1a113a, 0x970a0f0f, 0x220c754c, 0x18010000, 0x3908a35f, 0x0500000b, 0x013f2601, 0x16011736, 0x0206010f, 0x0cb3fd53, 0x0c0a1409, 0x06834d02, 0xc7013d29, 0x0c190d0a, 0x8339fe09, 0x43002006, 0x472b0693, 0x1300c201, 0x84006f00, 0x49130000, 0x1f2b073a, 0x0f011e01, 0x0f061701, 0x83052301, 0x012f2248, 0x055f4923, 0x20057244, 0x08a97027, 0x2609f247, 0x23013f34, 0x842f0607, 0x013b237d, 0x09852627, 0x33021f2b, 0x32033e37, 0x011f021e, 0x20968233, 0x2496841f, 0x3233010f, 0x06794617, 0x08068d7e, 0x23020f2e, 0x97272627, 0x1a01031b, 0x10060c02, 0x18020606, 0x05010214, 0x098c0105, 0x090e0d0d, 0x053d2f30, 0x07100709, 0x37024a09, 0x4a023752, 0x26080b84, 0x302f3d05, 0x0d0d0e09, 0x110a3409, 0x070a454e, 0x0e0d0935, 0x3d32090d, 0x07020a24, 0x1c241c0f, 0x0a02070f, 0x84323d24, 0x07353515, 0x114e450a, 0x0218730a, 0x04100606, 0x1a020608, 0x1a1b0301, 0x02285f82, 0x07361901, 0x4e050507, 0x05207282, 0x483f7a82, 0x1a060628, 0x08090ead, 0x61480d09, 0x074e0908, 0x49070909, 0x280d1e77, 0x0e283d3d, 0x8349771d, 0x094e250f, 0x0d486108, 0x0e262282, 0x04180e4f, 0x2d845009, 0x34144c2d, 0x0f171006, 0x0610170f, 0x844c1434, 0x502e081d, 0x0e180409, 0x0c0648ac, 0x01010502, 0x044e0406, 0x36070706, 0x06061a09, 0x07000000, 0xc0fffeff, 0xc0014002, 0x24001c00, 0x34002c00, 0xc95b3c00, 0x21132805, 0x011d020e, 0x46010e14, 0x37240552, 0x013d073e, 0x4e11be4e, 0x36270fce, 0x06141632, 0x87342622, 0x01803f17, 0x0f1b121c, 0x07090808, 0x08e7fe17, 0x0903030a, 0x03030604, 0x01380102, 0x0e09090e, 0x05904909, 0x1850a821, 0x390a9dd1, 0x4a3a13c0, 0x3119ac29, 0x0d161a1a, 0x0d1a0908, 0x0c0f0b13, 0x50ac080e, 0x3b82e070, 0xd72c0293, 0x7070a070, 0x362590a0, 0x00362525, 0x3005c350, 0xc1018002, 0x0f000700, 0x73006b00, 0x00007800, 0x22a18e24, 0x82163213, 0x010f25e6, 0x07222326, 0x2205ef4a, 0x65170706, 0x06200793, 0x21095742, 0x467e2726, 0x08cd480a, 0x4b07467e, 0x1f25060f, 0x34353301, 0x055e4f37, 0x011d0623, 0x06134b00, 0x33373808, 0x01152327, 0x343448ec, 0x144e3448, 0x0e140e0e, 0x09130d68, 0x3b1b1933, 0x090d5124, 0x05070507, 0x071f0606, 0x0e050612, 0x2c090d0f, 0x0e0f0d09, 0x07120605, 0x8206061f, 0x09072219, 0x3c22880d, 0x141c0f0e, 0x380d2085, 0x0f041e66, 0x08091605, 0x426ffe0d, 0x2f422f2f, 0x6b296e66, 0x225b8270, 0x823c4834, 0x140e2c5b, 0x0d131201, 0x33090d33, 0x9906300c, 0x336f914c, 0x14930c0d, 0x28831d1c, 0x0506242e, 0x110a0a18, 0x00ff2816, 0x2f255d82, 0x6060d142, 0x25008200, 0xff000007, 0x018201c0, 0x06002a08, 0x14000a00, 0x20001900, 0x3c002800, 0x07010000, 0x33013e23, 0x37231732, 0x26220616, 0x33373435, 0x05141516, 0x23173736, 0x220c8227, 0x46262215, 0x2723061a, 0x48163237, 0xfa49050c, 0x27630805, 0x37321633, 0x525a1501, 0x1b28400f, 0x1942675c, 0x024b6a36, 0xf0fe02fc, 0x8062100e, 0x1c143050, 0x1c140001, 0x2a0d141c, 0x1c4f3771, 0x2f105014, 0x072a4621, 0x01234c23, 0x2c2444b4, 0xcd153250, 0x0d03354b, 0x7735030d, 0x30de0307, 0xc0293d2a, 0x281c441c, 0x4f80601c, 0x1c142a37, 0x2f211a16, 0x82101060, 0x051f47b7, 0x80018022, 0x1906e342, 0x2209a558, 0x49012e22, 0x0e2305b9, 0x82012b01, 0x341122b9, 0x25928236, 0x22263436, 0x47181406, 0x602008b7, 0x2b05a248, 0x1b061117, 0x1b0d3a0d, 0xa0132008, 0x65261183, 0x36252536, 0x06860125, 0x0d138036, 0x130dc0fe, 0x3d0c1109, 0x113d1d1d, 0x010d1315, 0xf0130d40, 0x02872182, 0x0300003a, 0xd9ff0000, 0xa4010a02, 0x41002000, 0x00005b00, 0x17163237, 0x22230616, 0x082e8218, 0x3e323325, 0x842e2701, 0x013d218b, 0x35208b82, 0x29055849, 0x36322133, 0x23263637, 0x4f4b0722, 0x3e372405, 0x83011e02, 0x32172739, 0x010e0716, 0x408a0607, 0x2108bc82, 0x2726012b, 0x0439259d, 0x232b3a06, 0x0a020635, 0x040c2008, 0x0f0a1707, 0x14020108, 0x09078e0c, 0x03830709, 0x0c4e0131, 0x13020214, 0x0407170f, 0x0805200c, 0x82050104, 0x282d0865, 0x2d3a0906, 0x0d443630, 0x2b1f2f07, 0x0a030e48, 0x040a2208, 0x1c141c0e, 0x0b74141c, 0x242fc01d, 0x222c412c, 0x160a0b07, 0x0c09120a, 0x0a384b0f, 0x0c0f2408, 0x0a16170e, 0x19040905, 0x280b1127, 0x20472e1b, 0x2e1e3754, 0x272b0a06, 0x18080d08, 0x261c281c, 0x8202001a, 0x02c032ff, 0x00c70107, 0x001f001b, 0x0f160100, 0x07270601, 0x067a7716, 0x3f342627, 0x17013e01, 0x05364637, 0x27372508, 0x0cfb0107, 0x0b0c160c, 0x1c0f104d, 0x1335139e, 0x9e13135a, 0x4c234e1c, 0x0b170b0b, 0x7afcfe0b, 0x77017a5a, 0x4c220b84, 0x20824e23, 0x35201f82, 0x0f232082, 0x820b4d10, 0xfe0c2235, 0x6820825e, 0x002b0867, 0x0700c001, 0x2d000f00, 0x18005700, 0x4408bd60, 0x27240709, 0x16071416, 0x08a1b918, 0x22232608, 0x26372627, 0x36263734, 0x17323617, 0x14361636, 0x26012b06, 0x26232627, 0x07220722, 0x22230706, 0x36343526, 0x0d1d5d37, 0x013a0724, 0xe4823231, 0x01230282, 0x821c28bc, 0x17473106, 0x0c120817, 0x0c080511, 0x06070c32, 0x08120c11, 0x24211082, 0x2b0d8218, 0x389f2319, 0x09062b28, 0x3c151e15, 0x09350382, 0x38282b06, 0x42021d25, 0x0e35202e, 0x2f212518, 0x28010102, 0x844b8560, 0x83112005, 0x0d112733, 0x03171703, 0x4085120d, 0x9b254b84, 0x0a0c3850, 0x31008215, 0x28380d09, 0x0b0a321f, 0x21422e0a, 0x212f1d1c, 0x4d180709, 0x4220083f, 0x192af782, 0x45003800, 0x5f005200, 0x315d6c00, 0x013c250f, 0x33363431, 0x3322e582, 0xea821632, 0x82060721, 0x272228dc, 0x2627022e, 0x82013e27, 0x011e2c17, 0x15010e07, 0x07021e14, 0x82010f16, 0x2627251c, 0x013e013f, 0x3e080ca6, 0x251d5e01, 0x00ff212f, 0x1b252f21, 0x1d312838, 0x2c1d1210, 0x030405df, 0x0503452b, 0x13030206, 0x2b10131d, 0x0d3a5403, 0x0502050d, 0x25161f1a, 0x080eb232, 0x04090524, 0x25080e04, 0xa55b0d03, 0xde31080c, 0x211d2c05, 0x1d212f2f, 0x0101052c, 0x08283828, 0x08011b25, 0x01013504, 0x07192313, 0x503a132b, 0x020a0102, 0x1a1e350f, 0xbd0e1e2e, 0x08400e08, 0x22048202, 0x9f030306, 0x0400360a, 0xc0ff0000, 0xc0010002, 0x2b001d00, 0x4a003b00, 0x32010000, 0x06a96e16, 0x2413ff41, 0x17323605, 0x056f601e, 0x1f823520, 0x0e210d86, 0x062f4201, 0x3e291d8b, 0x28a00101, 0xfe283838, 0x10f941c0, 0x02b8fe2b, 0x2206020c, 0x221c281c, 0x230984a6, 0x140d160d, 0x15820b87, 0x01150e25, 0x82503840, 0x0df0413b, 0x0606f62c, 0x15113215, 0x10151d1d, 0x0b841533, 0x0d170e22, 0x18830c89, 0x20190d23, 0x22008200, 0x86feff06, 0x000d2fd7, 0x0029001b, 0x00450037, 0x36000063, 0xe141011e, 0x012e2105, 0x08a9f518, 0x2106be4b, 0x1b8b2636, 0x8c243621, 0x201b8d0d, 0x1c214137, 0x030cb229, 0x09054003, 0x82060404, 0x6d032107, 0xb3200d8c, 0x01210d8c, 0x200e8c8d, 0x200d8c53, 0x163a413b, 0x0d065127, 0x02087006, 0x21058203, 0x0bae0306, 0x5341f220, 0x00003812, 0xffffff07, 0x014002c0, 0x001a00c1, 0x00500045, 0x006a005d, 0x43840077, 0x1e2a1a45, 0x17160501, 0x16141506, 0x76600731, 0x22302c17, 0x26072231, 0x14060706, 0x44070637, 0x17220545, 0x5f430506, 0x43fe2033, 0x2421075f, 0x055f431c, 0x1622133c, 0x070381fe, 0x083b0106, 0x4719020b, 0x19470707, 0x4b080b02, 0x04100423, 0x12824b23, 0x25020932, 0x1a491c20, 0x121b621c, 0x121a2615, 0x44011a10, 0x43256543, 0x72430c8c, 0x1e112910, 0x12060235, 0x14050212, 0x80886d8c, 0x17151a30, 0x501c1a04, 0x13190c1e, 0x0a261a1c, 0x7c43fc1c, 0x0a9d431f, 0x05002208, 0xc0fffaff, 0xc5018702, 0x4a003100, 0x7c006300, 0x00009000, 0x010f1625, 0x072e2706, 0x27211527, 0x05724e07, 0x013f2628, 0x27263736, 0x8571012e, 0x17162b05, 0x17070616, 0x17163233, 0x20703605, 0x020f2f05, 0x011f0622, 0x3f161407, 0x36161701, 0x38702735, 0x2217a707, 0x60213505, 0x42081004, 0x0d097d02, 0x03090d1b, 0x03060408, 0x03050404, 0x2636a0fe, 0x131f0d0a, 0x0b080f09, 0x0805014b, 0x09030c03, 0x2a2b0705, 0x0c020a03, 0xec510f04, 0xfe154326, 0x030102be, 0x06020a17, 0x03160b01, 0x82100202, 0x14142535, 0x80040503, 0xfe2416ac, 0x096001c8, 0x2a095460, 0x12090dbf, 0x0d040e09, 0x82030905, 0x4e032a88, 0x1209236c, 0x6310121c, 0x235d8201, 0x090d230c, 0x012d8283, 0x0f2a1104, 0x0f202451, 0x15030602, 0x2d028203, 0x17100206, 0x0a020403, 0x0304020a, 0x15aa1017, 0x9090ed28, 0x07090907, 0x05825050, 0x45080021, 0xc5330627, 0x1f000d00, 0x55003100, 0x65005d00, 0x79006d00, 0x57120000, 0x3535091d, 0x16013411, 0x15373233, 0x010e0714, 0x0706012e, 0x16013e35, 0x23118437, 0x2726010e, 0x26241188, 0x17161527, 0x1e29168f, 0x36373602, 0x0e011d16, 0x4b278202, 0xaf180651, 0x37200ffc, 0x39080a70, 0x131a1302, 0x07200709, 0x3e2c0109, 0x123d3326, 0x413f5331, 0x4f2b3357, 0x0e83252d, 0x26230783, 0x822c542e, 0x0c2e2807, 0x35070509, 0x87483621, 0x4e313013, 0x4128312e, 0x1f201128, 0x16292434, 0x4c090eb1, 0xa64c0861, 0x82102005, 0x090e2aef, 0x01060403, 0xfe0d13c0, 0x310d8230, 0x0dd00107, 0x1810e3fe, 0x15081524, 0x0a111303, 0x7a824519, 0x18105638, 0x0709123e, 0x08080a09, 0x09133d11, 0x02047407, 0x10020121, 0x1487451f, 0x0d169831, 0x0b0d0f0b, 0x13110915, 0x05100e1f, 0x84280504, 0x092f2668, 0x0d0a0a0d, 0x84058439, 0x0406250b, 0x00020406, 0x042a0082, 0xbfff0000, 0xc0010002, 0x05672500, 0x01003606, 0x17160706, 0x07141516, 0x010e0706, 0x26220615, 0x36323734, 0x24018237, 0x16173233, 0x82078417, 0x3402211d, 0x21051f50, 0x21831427, 0x16323623, 0x059d4d15, 0x32362908, 0x201dff01, 0x020b040f, 0x0201424c, 0x3972a239, 0x44010201, 0x0c040392, 0x5b040104, 0x07030261, 0x6a4bc009, 0x356a4b4b, 0x2005e14f, 0x23a08420, 0x5b61ab01, 0x0b241f82, 0x44920404, 0x39332f82, 0x0239a272, 0x024c4201, 0x2010030b, 0x060a011d, 0x839efe03, 0xa04b2333, 0x3683130d, 0x35410d20, 0x088b4805, 0xbf824020, 0x3500092f, 0x52003d00, 0x66005900, 0x35170000, 0x06514333, 0x39521320, 0x4f152008, 0x232905de, 0x3d012e22, 0x26302701, 0x84218235, 0x3402280c, 0x32013b36, 0x8226011f, 0x24c882ea, 0x33353714, 0x26d58311, 0x23061435, 0x83272622, 0x013f2204, 0x21248327, 0xc6182315, 0x22240856, 0xc0113526, 0x20056c7c, 0x2d948220, 0x0e133a0d, 0x13072915, 0x080f090d, 0x0682021e, 0x26090e23, 0x28aa821a, 0x1c28592d, 0xb01c281c, 0x30b684c0, 0x0601120d, 0x04150e1a, 0x0d13801f, 0x60014020, 0x054e420d, 0xb0b03027, 0x01090907, 0x26238217, 0x3d51150e, 0x8238100d, 0x090e2618, 0x01012b38, 0x25098465, 0x261a60a0, 0xb9492d13, 0x20442205, 0x2d3782fe, 0x130d0d13, 0x171e0c12, 0x0ddf9b0f, 0x3442c013, 0x18f02009, 0x2a08cf52, 0x00c001c0, 0x004d0017, 0x46322500, 0x26220501, 0xee83013f, 0x83373521, 0x731282ed, 0x2b2405f8, 0x27363701, 0x08a46318, 0x780f0621, 0x8548055b, 0x013b2306, 0x5d183632, 0x01330e84, 0x04070734, 0x06070358, 0x3b170107, 0x10030504, 0x82440a02, 0x7c123b0b, 0x212f2b1f, 0x0d0d081e, 0x0610190d, 0x44161a06, 0x10031910, 0x2b2f2130, 0x3d190a1f, 0x35080d02, 0x98060c70, 0x61060906, 0x78040604, 0x4106090a, 0x1f2e026f, 0x160e2f21, 0x15191616, 0x78101622, 0x1f212f02, 0x1110022e, 0x212f261a, 0x38021519, 0x26110f28, 0xd682111a, 0x00030033, 0x02e0ff00, 0x00a50140, 0x003c001e, 0x0100005a, 0x05555a36, 0x2305b151, 0x26272634, 0x220c8059, 0x59163617, 0x1d910a8f, 0x22203c8d, 0x012d3b8c, 0x538e530c, 0x07200709, 0x66536f09, 0x23088498, 0x82576c9b, 0x42230884, 0x84543931, 0x4e5f2308, 0xdb57351e, 0x07184405, 0x9f012b32, 0x51894b06, 0x09090790, 0x85568807, 0x65860d0b, 0x86260b84, 0x0c5aae74, 0x0b845674, 0x4e338a26, 0x384d0604, 0x89270b84, 0x0657724a, 0x841d3017, 0x0d90240c, 0x840d1313, 0x238c2209, 0x20f08239, 0x2eef8205, 0x018002de, 0x000900a0, 0x003b0022, 0x82800054, 0x211521f3, 0x20061f5b, 0xf7841805, 0x8b991815, 0x18022007, 0x960d7499, 0x32172d16, 0x14011d16, 0x2e27010e, 0x23013d01, 0x23108546, 0x1521013d, 0x0806f177, 0x02333625, 0x5ee0fd20, 0x5e42e042, 0x020390fe, 0x010d1b04, 0x1b0d0108, 0x14030204, 0x04060105, 0x06041818, 0xb0a40501, 0x07b42e18, 0x17291809, 0x0920291f, 0x09076007, 0x080584c0, 0x09200226, 0x0709090e, 0x40400001, 0x2c5e5e42, 0x04010702, 0x19030319, 0x02070104, 0x04041b14, 0x020d0d02, 0x141b0404, 0x822c17ae, 0x17400709, 0x04021427, 0x702b2031, 0x21086546, 0x0b84b007, 0x09074022, 0x2d06974b, 0x00c00180, 0x001f000f, 0x0047002f, 0x01602500, 0x106e650d, 0x1f8e2120, 0x26222722, 0x200af54c, 0x057b4433, 0x18220621, 0x7a070281, 0x802009b2, 0x02218083, 0x62058320, 0x5037054b, 0x3c54543c, 0x3d2b2b3d, 0x18124428, 0x42422e1a, 0x5e253c2e, 0x18095025, 0x20084e4e, 0x890a8960, 0x54b02d09, 0x2d2d5478, 0x420c222a, 0x2020425c, 0x08376518, 0x8307934e, 0x824120c5, 0x0e975215, 0x45180720, 0x34330a86, 0x02163236, 0x34353632, 0x26343527, 0x011d0622, 0x44141506, 0x8c4e0519, 0x051e5605, 0x53780121, 0x80210a3b, 0x20758220, 0x2a718220, 0x202f4291, 0x201c281c, 0x82120e60, 0x0e122706, 0x01090e09, 0x298338c0, 0x1a134829, 0x031a1313, 0x833228a6, 0x293122d6, 0x32d082a6, 0x212f82fe, 0x14c01828, 0xc0141c1c, 0x4e212818, 0x830f1905, 0x190f270b, 0x0907d305, 0x53530709, 0xaebb4007, 0xbb851320, 0x28059b44, 0x00a00180, 0x002b001f, 0x1039423b, 0x15013b29, 0x011d2223, 0x64213314, 0x352605b4, 0x34112107, 0x0e82023e, 0x05151625, 0x6f011f06, 0x262d05bb, 0x2627010f, 0x0d600207, 0xfd0d1313, 0x080583c0, 0x0a164027, 0x0aec010a, 0xfe20160a, 0x0c090580, 0x0d400106, 0x07d3fe13, 0x07084a07, 0x19080881, 0x295f0808, 0x13800708, 0x8232840d, 0x08402304, 0x02820810, 0x40402908, 0x0c064001, 0x0d130509, 0x4b07088a, 0x087f0808, 0x08081a07, 0x0808295e, 0x03000000, 0xffff0000, 0x81014002, 0x58002c00, 0x8206734c, 0x010e269a, 0x06272623, 0x22028322, 0x5207010e, 0x3727051d, 0x013e3736, 0x86011e17, 0x32362605, 0x1e371617, 0x202c8d01, 0x2b2bc506, 0x08063202, 0x2b050705, 0x2b6c2924, 0x112f0282, 0x0a071529, 0x18210608, 0x1d0a1a0b, 0x820a1d58, 0x1c592605, 0x190a1b0b, 0x21268c21, 0x25ba2c23, 0x0140182b, 0x04200609, 0x16040408, 0x3100821a, 0x09020d0b, 0x09062007, 0x09120401, 0x01170902, 0x05850817, 0x8c130822, 0x1621278c, 0x2026bd04, 0x32008200, 0xfffdff04, 0x018301c0, 0x000700c0, 0x00250016, 0x7100003d, 0x033207a6, 0x07061617, 0x2f222306, 0x3f342601, 0x17371701, 0x3f4f1416, 0x36272309, 0x0d820616, 0x15072c08, 0x2f263523, 0x3e012e01, 0x16011f01, 0x36013f32, 0x2f2f42e1, 0x1d852f42, 0x0b0d050a, 0x300c140d, 0x3d2e0908, 0x08092e75, 0x82140c30, 0x0a053b10, 0x1393191d, 0x17290e05, 0x171fa01f, 0x13050e29, 0x27290e20, 0x0e292762, 0x36822001, 0xfe422f31, 0x210d27d8, 0x4010080a, 0x390b1b0b, 0x82393333, 0x10403d06, 0x0d210a08, 0x1cf62027, 0x111c0a20, 0x0b1f1f0b, 0x200a1c11, 0x1d09051c, 0x091d1b1b, 0x200aff52, 0x2fc382c3, 0x003a0032, 0x13000042, 0x36342117, 0x05163637, 0x24051745, 0x1415012b, 0x08b95007, 0x22063722, 0x29085559, 0x2637013e, 0x34352135, 0xc8563336, 0x34202107, 0x3105504a, 0x00ff6f91, 0x210c2b30, 0x09076801, 0x3c300709, 0xa082221a, 0x46210424, 0x07820421, 0x111b1028, 0x2680013c, 0x595afe1a, 0x01240805, 0x131a1360, 0xaf011a13, 0x226036af, 0x095c060a, 0x09072007, 0x06384b40, 0x2f211c2b, 0x0d0c212f, 0x0c0d0909, 0x122a0983, 0x38041621, 0x261a404b, 0x318490fe, 0x13203583, 0x2c08c282, 0xfeff0500, 0x4202b6ff, 0x0a00c301, 0x20001500, 0x6f006700, 0x22010000, 0x36272607, 0x07061732, 0x012e0326, 0x32333627, 0x06171617, 0x82d88237, 0x010e2e09, 0x16372607, 0x27061617, 0x0e262726, 0x23098201, 0x07141617, 0x06200d83, 0x34200583, 0x3e242682, 0x07012e01, 0x26200d82, 0x36200b82, 0x1382e782, 0x06071633, 0x33161415, 0x35013e32, 0x36262734, 0x14151617, 0x08106207, 0x20014e08, 0x09141c19, 0x09275627, 0x25951c14, 0x0c0b032c, 0x35060e0c, 0x0634ce06, 0x0b0b0c0f, 0x12242c03, 0x0314366b, 0x0f0e040c, 0x1a32602b, 0x07140f2b, 0x19363d07, 0x36191414, 0x1506063e, 0x321a2b0f, 0x0e0f2b60, 0x15020c04, 0x0a1f1836, 0x08088229, 0x32460749, 0x07203721, 0x29040c02, 0x28d11f0a, 0x1c281c1c, 0x100a5001, 0x19111119, 0xb9fe0a10, 0x032f501b, 0x192a4305, 0x05432a19, 0x1b502f03, 0x3d20e612, 0x10050706, 0x581b1a09, 0x04091a62, 0x0c010e01, 0x19190f20, 0x820c200f, 0x0528080a, 0x58621a08, 0x11081a1b, 0x3d060705, 0x1d060e20, 0x05313f1b, 0x12140706, 0x38214833, 0x07141222, 0x40300506, 0x8f061d1b, 0x1c216582, 0x055f4428, 0x0102b42f, 0x2000c001, 0x49003400, 0x1e370000, 0x054a5601, 0x5f013d21, 0x162808b5, 0x34353632, 0x2627012e, 0x20821383, 0x06141727, 0x2622012b, 0x21128235, 0x1383012e, 0x011e1722, 0x2220138a, 0xac2d1485, 0x090d443a, 0x6a45293c, 0x0a300a0e, 0x366f820e, 0x11090e08, 0xaf7a3011, 0x20070906, 0x8a060907, 0x0a090661, 0x85765307, 0x0531080e, 0x07043953, 0x0bdd0a04, 0x3c293d64, 0x44570e09, 0x0e0e0af8, 0x1c14f80a, 0x120a141c, 0x1006030e, 0xe10e0c32, 0x077aaf06, 0x6106090a, 0x0901058b, 0x32438206, 0x53760660, 0x07080a07, 0x0505523a, 0x07200407, 0x5803000a, 0x092a089b, 0x37001900, 0x11150000, 0xae531121, 0x75372005, 0x3421088b, 0x22be8226, 0x18322506, 0x64086c4b, 0x332008c5, 0x42180988, 0x4025074d, 0x07600709, 0x28048409, 0x1c145001, 0x141c40fe, 0x20bf8430, 0x24058480, 0xfe100110, 0x20a482f0, 0x212487d4, 0x2082c909, 0x1c143022, 0x200b4d78, 0x05674100, 0x94053359, 0x21332a97, 0x013d3632, 0x21232634, 0x2097a922, 0x05924801, 0x0907e022, 0x4318999c, 0x99930876, 0xfdff073d, 0x0c02c0ff, 0x2200c001, 0x2d002900, 0x35003100, 0x43003b00, 0x16010000, 0x44050706, 0x362a05d9, 0x013e2537, 0x22232627, 0x1086010f, 0x36013f32, 0x07163233, 0x06273736, 0x37031707, 0x013f0727, 0x37260385, 0x26371716, 0x18821727, 0x0607143d, 0x1af20107, 0xa4fe3629, 0x0a120808, 0x0c060720, 0x060c6101, 0x09120907, 0x82081b08, 0x07213805, 0x251c0b07, 0x9d4f2e2c, 0x1015100c, 0x1fab140e, 0x1fa81f3d, 0x82ab1f3c, 0x51350803, 0x0a2d090e, 0x0307240c, 0x0602013d, 0x77396401, 0x1004cf21, 0x061a0c36, 0x0b1a07d2, 0x04110410, 0x1a0b370f, 0x31171007, 0x3e010738, 0xfe3d0703, 0x122712ba, 0x35038219, 0x1327121b, 0x2e0e089f, 0x0e99090d, 0x07071410, 0x00000908, 0xe3820200, 0x0002be22, 0x1d2ae382, 0x00002a00, 0x07011e01, 0xd0820f06, 0x127c0720, 0x26710805, 0x13372627, 0x37321617, 0x3e012f36, 0x16363701, 0x2f010e17, 0x37362601, 0x2a01011e, 0x1217222e, 0x0b396627, 0x3105050b, 0x04120886, 0x33800404, 0x0c050d04, 0x531b370c, 0x18441e84, 0x0821581f, 0x1d260422, 0x16230110, 0x13262e62, 0x0c0c3932, 0x31040e04, 0x09060442, 0x07010a09, 0x0b050532, 0x1320380b, 0x1d100f10, 0x08220426, 0x181f5821, 0x26938244, 0xffffff0a, 0x820102c0, 0x2b230893, 0x4b003b00, 0x5f005b00, 0x7f006f00, 0x9b008b00, 0x0000ab00, 0x011d1625, 0x23020e14, 0x3d262221, 0x823f3401, 0x09d06a97, 0xf46a3320, 0x0717210c, 0x220ed642, 0x18062207, 0x2507cf69, 0x2634013d, 0x58182723, 0x62420812, 0x33272305, 0x9b182335, 0x1423101c, 0x85013b16, 0x012b271e, 0x17150622, 0x07823435, 0x15824682, 0x0ffebf18, 0x01370f8f, 0x090501ff, 0x40fe060c, 0x1b01130d, 0x550c1201, 0x09090760, 0x83000107, 0xf5602505, 0xcc02110c, 0x2009024b, 0x06d56820, 0x30070923, 0x230a8710, 0x28c0c08f, 0x20201688, 0xd8232b89, 0x8208b008, 0x89182002, 0x89302011, 0x05452f0a, 0x0b075b05, 0x0d130509, 0xa005055b, 0xa5430f0c, 0x0f40230a, 0x5c881d0c, 0x32894720, 0x210a9e4b, 0x59182098, 0x40200afa, 0x80267c88, 0x10080810, 0x3c887808, 0x09885720, 0x04000034, 0xb9ff0000, 0xc0010002, 0x2b001500, 0x56004000, 0xc45c0000, 0x012f2106, 0x2c08105e, 0x33362627, 0x3d262237, 0x1f363401, 0x05fe5d01, 0x010f1426, 0x23061617, 0x83064a5e, 0x251e842b, 0x1632013b, 0xf34e0107, 0x743f2009, 0x323506ce, 0x0ac8011f, 0x1f0b1e0e, 0x050d0563, 0x63050519, 0x100c0b21, 0x321190e0, 0x05056310, 0x630c0b19, 0x0e1e0b1f, 0x0c10700a, 0x87fefe0b, 0x83212009, 0x213c821a, 0x1985a063, 0x2b820f88, 0x12914020, 0x68848820, 0x840c0c21, 0x83702068, 0x02012168, 0x09847282, 0x003b8488, 0xff050000, 0x02e0fffe, 0x00a00142, 0x000c0008, 0x00190010, 0x01000043, 0x82332723, 0x061632b1, 0x37231525, 0x35231733, 0x3f262205, 0x013b3601, 0x08534807, 0x5509385f, 0x27200936, 0x0808365f, 0x0721272c, 0x1a613002, 0x18040c63, 0xd8fe0901, 0x1ae81a7e, 0x08e0fe7e, 0x04180109, 0x011a630c, 0x090907bf, 0x09141c07, 0x09072007, 0x0684c0fe, 0x831c1421, 0x04142c13, 0x01040002, 0x600c8020, 0x84800c08, 0x080c2400, 0x51800c60, 0xa02005e2, 0x8505b641, 0x84a02005, 0x20202135, 0x0021c282, 0x30c38407, 0x00a10180, 0x00090005, 0x0025001c, 0x004e003f, 0x25c7825e, 0x35230706, 0xc4822333, 0x012f0522, 0x322bd183, 0x27303106, 0x07012f26, 0x88260706, 0x061724d3, 0x4f171415, 0xc58a0976, 0x36492520, 0x36260808, 0x36171637, 0x27013e17, 0x26072726, 0x15010e27, 0x32331614, 0x191da301, 0x7e84643d, 0x0c21011a, 0x020d630c, 0x00830118, 0x07151526, 0x27fe170b, 0xe423ec87, 0x8dd13135, 0x25073ce1, 0x5e845e34, 0x1f283444, 0x0c190213, 0x2705030e, 0x161b053f, 0x011d2633, 0x821f1958, 0x0a4825f4, 0x02600c3e, 0x132f4a82, 0x1b0b0613, 0x60080c1f, 0x4b20800c, 0x8c364837, 0x211d3cf9, 0x5d411e60, 0x6d26415d, 0x1628242f, 0x1b3f12d3, 0x532f0707, 0x13282105, 0x82003127, 0x260382fa, 0x01000200, 0x67330080, 0x35230a03, 0x8b231523, 0x08d76703, 0x3b363422, 0x24095b6a, 0x1d163233, 0x05736d01, 0x40205022, 0x50250184, 0x07090907, 0x29028430, 0x300907e0, 0x00010907, 0x09820709, 0x0284ae82, 0x16820c84, 0x82051d47, 0x54002027, 0x80380817, 0x3700c201, 0x45003e00, 0x6f006500, 0x00007900, 0x1d030e37, 0x23171401, 0x27058f5f, 0x2627013b, 0x1f36013f, 0x36200682, 0x2205576a, 0x64013e37, 0x21650517, 0x32332708, 0x35030617, 0x32821533, 0x21055454, 0xa2831123, 0x2b352323, 0x83cf8203, 0x066859bb, 0x2b05cb7a, 0x26332307, 0x15062223, 0x37161714, 0x0806cf7a, 0xf1363320, 0x070d120b, 0x130da909, 0x1e1d0d13, 0x0909090d, 0x020c200e, 0x06100605, 0x1414020c, 0x08820c02, 0x0c02053f, 0x040d0620, 0x06020409, 0x09141d1e, 0xa0c01429, 0xc0e0130d, 0x130d0d13, 0x01010fc0, 0x0809820f, 0x28041431, 0x21213720, 0x04282037, 0x181535fc, 0x03090c0c, 0x0c0c09cb, 0x04351518, 0x100b03fe, 0x11e00b15, 0x010d130f, 0x16130d60, 0x0d0d0d09, 0x821f1709, 0x8206205e, 0x36362566, 0x06020506, 0x1f216682, 0x2d5e8217, 0x040d050d, 0xfe1d1216, 0x138060af, 0x2d828013, 0x13200125, 0x8380600d, 0x0c270809, 0x4b2c1c0c, 0x0b1c2c4b, 0x090f300d, 0x0303080b, 0x0f090b08, 0x03000230, 0xbdfffdff, 0xc3018302, 0x3d003900, 0x59004100, 0x262a0623, 0x27013f36, 0x26222306, 0xc36e012f, 0x17072e05, 0x0607011e, 0x3726012f, 0x011f013e, 0x05ee5b37, 0x6c660882, 0x17072705, 0x01163637, 0x07822737, 0x07275d08, 0x07037f02, 0x060308a2, 0x27160f0d, 0x3f28010c, 0x0b14140b, 0x0c01283f, 0x0d0f1627, 0xa2080306, 0x1e060307, 0x25271610, 0x06571614, 0x72720b17, 0x5706170b, 0x27251416, 0xfe1e1016, 0x245f139b, 0x5f2470c8, 0x4303070e, 0x1f0f0804, 0x01680906, 0x4b4b272e, 0x68012e27, 0x0f1f0609, 0x77081682, 0x0c100703, 0x1a660906, 0x0a962857, 0x30300408, 0x960a0804, 0x661a5728, 0x010c0609, 0x40274700, 0x27402e2e, 0xff020000, 0x02e0fffe, 0x00a00102, 0x00150011, 0x16320100, 0x020e0307, 0x2e222123, 0x26032701, 0x21053336, 0xe0012117, 0x3802130f, 0x0f1c1202, 0x1c10effe, 0x02380311, 0x9b010f13, 0x011f8afe, 0x16a00139, 0x109bfe0e, 0x190e0e19, 0x0e650110, 0x00c04016, 0x0d2b4118, 0x73006327, 0x00009100, 0x067d5112, 0x26340522, 0x47056a78, 0x3d230503, 0x82333701, 0x010f2219, 0x21028206, 0x04821415, 0x26066247, 0x3b36013f, 0x82143201, 0x013d2203, 0x4b0c8234, 0x06230a34, 0x8222012b, 0x16142128, 0x1f261c82, 0x011d1601, 0x06820607, 0x36013b23, 0x85128424, 0x8226202c, 0x3e132b22, 0x22233701, 0x2b26012f, 0xb7182701, 0x2b84094a, 0x15163225, 0x8291ce91, 0x01220802, 0x015375c0, 0x031d0203, 0x10081008, 0x03070415, 0x2802021b, 0x05140706, 0x0a160709, 0x05020a04, 0x19820803, 0x0b1f0631, 0x04250709, 0x20040707, 0x030a0305, 0x83100407, 0x090c2906, 0x07042009, 0xc2fe0b14, 0x073f1086, 0x7d1a0309, 0x0d195735, 0x09120508, 0x0c2b130d, 0x0b0c2011, 0x1612162b, 0x07141410, 0x84b80109, 0x53672772, 0x04021675, 0x57820814, 0x09072708, 0x01021a04, 0x0a06020d, 0x07041408, 0x08090719, 0x08100513, 0x0b010602, 0x06050b04, 0x0905070a, 0x09040605, 0x04830a03, 0x0c09052d, 0x04210809, 0x060a911f, 0x82040903, 0x07270880, 0xc5fe1904, 0x052d3803, 0x0b250a11, 0x1a0d1a07, 0x110e1618, 0x00060a0b, 0x00020000, 0x02600000, 0x00200100, 0x511f000f, 0x33201085, 0x440fcf53, 0xdd710569, 0xe0012105, 0x4509e971, 0x934b05e2, 0x820a840a, 0x0002275b, 0x00c0ff20, 0x235401e0, 0x4c002005, 0x112007a1, 0x2105d74c, 0xc54c1315, 0x200f8706, 0x8f378460, 0x83302047, 0x856e8b68, 0x255e820b, 0xfbff0200, 0xbf82bbff, 0x2b00c136, 0x00003300, 0x0f141601, 0x020f0601, 0x07161716, 0x010e0706, 0x06270482, 0x3637022e, 0x82013e37, 0x17362604, 0x013f1716, 0x21028236, 0x464f1732, 0x012d0807, 0x2f0909f7, 0x4c240806, 0x230d050e, 0x140d140e, 0x23180401, 0x230b536b, 0x180e2618, 0x220f0604, 0x4c151437, 0x2f05030c, 0xfe091b09, 0x05194ee3, 0x0b829920, 0x052f2908, 0x154c0c03, 0x0f223714, 0x0e180406, 0x0b221926, 0x18236b53, 0x0e130104, 0x0d230e14, 0x254c0e05, 0x092f0607, 0x1ca9fe09, 0x002b3383, 0xfffeff01, 0x010202df, 0x821800a4, 0x011e21a5, 0x2220a582, 0x0805ee68, 0x1f013e4b, 0x27170701, 0x16362737, 0x24da0117, 0x06d42104, 0x21d4050f, 0x22032404, 0x601d2662, 0x22603090, 0x01226126, 0x28692576, 0xdb0505db, 0x03256928, 0x571c0723, 0x40809040, 0x23071b68, 0x05000000, 0xbcffffff, 0xc001c201, 0x05db7500, 0x6a004022, 0x27091d51, 0x32363432, 0x22061416, 0x2b07ac59, 0x16170607, 0x07060706, 0x1617010e, 0x06310985, 0x27343526, 0x33013e26, 0x013e3736, 0x26272627, 0x82098236, 0x1632268c, 0x14150607, 0x32118206, 0x3637012e, 0x27263637, 0x27362722, 0x013c3526, 0x82363435, 0x011e213c, 0x06204682, 0xa4204482, 0x1c21e183, 0x20e88440, 0x390b8528, 0x08031801, 0x0b161707, 0x0905030c, 0x37070703, 0x17130932, 0x05070202, 0x12871716, 0x0834392c, 0x0807e310, 0x09131604, 0x07823732, 0x03050930, 0x0e010b0c, 0x1014090a, 0x07393408, 0x10840307, 0x00011722, 0x1c205685, 0xcf590682, 0xa7440805, 0x0d07333d, 0x03070201, 0x15170c14, 0x05010d06, 0x0a0b051d, 0x0805323a, 0x04070207, 0x14180b14, 0x1f060d07, 0x0d8c0904, 0x0b3a3107, 0x051c060b, 0x15070d01, 0x04140c16, 0x2b131403, 0x01030133, 0x1f050a09, 0x03231487, 0x65000007, 0x0627060b, 0x2f00c301, 0x45003700, 0x2b3405ad, 0x012f2201, 0x26222306, 0x0f012e27, 0x1e170601, 0x17151701, 0x0805f06b, 0x34013d71, 0x013f023e, 0x07161736, 0x0617021e, 0x26343632, 0x01140622, 0x2e0e07fe, 0x10330d09, 0x18162e0a, 0x010c2f1d, 0x040c0309, 0x22370f03, 0x12130829, 0x10130dec, 0xca304225, 0x300e020a, 0x071c2515, 0x0e0e147a, 0x14740e14, 0x0d09280f, 0x19200d40, 0x0c030204, 0x261d0505, 0x10520102, 0x510d131e, 0x3b55623f, 0x0a044b12, 0x16041c36, 0x82381421, 0x140e2e2b, 0xff010000, 0x02bffffc, 0x00c00103, 0x260c821a, 0x27220603, 0x82060703, 0x330487a6, 0x36260327, 0x16322133, 0x0157ff01, 0x2e42010e, 0x22020c02, 0x2c210483, 0x08098224, 0x1304573b, 0x0fc00110, 0xfe9a0113, 0x0106062c, 0x0606ac6c, 0x0606c585, 0x05057dbc, 0x1a0f1201, 0x00000017, 0xff000008, 0x014002e0, 0x000600a0, 0x000f000b, 0x001d0014, 0x00300027, 0x086d8238, 0x3e211530, 0x07323301, 0x37342315, 0x23171625, 0x16333517, 0x27340715, 0x06141533, 0x1513012b, 0x22012e23, 0x35230706, 0x06333503, 0x2223011d, 0xf4473626, 0x34610805, 0xf1fe4001, 0x0f4a7e27, 0x011e60cf, 0xaf3f7042, 0xa01e4280, 0x0d13a404, 0x11322080, 0x113a463a, 0x04a48032, 0xf8130d80, 0x01c03850, 0x453b7e9e, 0x3d4380a0, 0xa05f1a99, 0x40433d80, 0x0d60120e, 0x80200113, 0x1d23231d, 0x6000ff80, 0x13600e12, 0x602838ad, 0x00002860, 0xfff6ff02, 0x01c301c0, 0x20a782ca, 0x11b7441e, 0x011e2432, 0x2721010f, 0x16013e26, 0x3637011f, 0x09077001, 0x30078c75, 0x05286501, 0xcbfe4811, 0x74400e30, 0x151e0d65, 0x05557411, 0x40070933, 0x22e20907, 0xd0571435, 0x401b653a, 0x1419803a, 0x069f4600, 0x0002c028, 0x1300c001, 0xb3532800, 0x67aa1806, 0x83372012, 0x3e342713, 0x32013b01, 0x01831617, 0x012b0624, 0xce581722, 0xa68a1805, 0x3205350a, 0x2b263436, 0x047f1501, 0x01062312, 0x0e11070a, 0x1f160402, 0x6e200985, 0x04221383, 0x138b0408, 0x2e9f2008, 0x102e4242, 0x28c02838, 0x010d1338, 0x1c1c1470, 0x2e011014, 0x31231319, 0x1f0e0b07, 0x822c1f16, 0x220d8306, 0x86050805, 0x4220250e, 0x3828425c, 0x0d263182, 0x281ca013, 0xc384601c, 0xffffff37, 0x01f101c8, 0x000c008e, 0x0022001a, 0x2500002f, 0x3e372734, 0x05325201, 0x17072326, 0x06070616, 0x21052070, 0x28443216, 0x25290807, 0x3e352622, 0x16363701, 0x1506011f, 0x51264801, 0x2c060e03, 0x07090436, 0x030351be, 0x377c3706, 0x51030306, 0x28032d14, 0x0867821c, 0x07e8fe24, 0x2c360409, 0x51030e06, 0x182cc026, 0x04030680, 0x07386020, 0x0680440a, 0x1e1e030d, 0x80060d03, 0x2782200c, 0x14281c2d, 0x6038070a, 0x06030420, 0x822c1880, 0x0006289c, 0x01c8ff00, 0x84b801f0, 0x0026269b, 0x0036002e, 0x299f883e, 0x0e161716, 0x16072301, 0xa2883732, 0x22273725, 0x86363726, 0x22162f96, 0x32363426, 0x22021416, 0x32161406, 0x5a5f3436, 0x01143206, 0x032a1e38, 0x0734060f, 0x05070501, 0x102410b1, 0x22b2822a, 0x82224822, 0x432508b2, 0x07010a07, 0x030f0634, 0xcea71e2a, 0x91ce9191, 0x6c6c98ac, 0x1aab6c98, 0x131a1313, 0x431323c0, 0x2a040206, 0x37368242, 0x430a0a36, 0x10040d06, 0x060d0410, 0x42070a79, 0x0602042a, 0xf8231343, 0x91233282, 0x821f01ce, 0x82028233, 0x1a132133, 0x0026c682, 0xff200005, 0x9f5602c0, 0x000f2605, 0x00390029, 0x09834556, 0xa6860420, 0x06161322, 0x0afe4b18, 0x26222326, 0x3736013f, 0x1621dc82, 0x0c265f17, 0x33363428, 0x1d021e07, 0x2d8e1401, 0x34013d22, 0x9a272e83, 0x34262634, 0x845a0126, 0x033f3706, 0x0e370c0f, 0x0e0a300a, 0x020f0c37, 0x1818062e, 0x06181838, 0x6e7dfefe, 0x0c7c3408, 0x0a0e0c14, 0x500a0e08, 0x0a080e0a, 0x1813190e, 0x82400138, 0x3502873f, 0x120cf8fe, 0x0e0e0a68, 0x0c12680a, 0x100316b9, 0xa9160310, 0xe1470709, 0x01902709, 0x880c150e, 0x02820e0a, 0x880a0e22, 0x13370282, 0x0010021b, 0xffff0300, 0x0102bfff, 0x3b00c101, 0x43003f00, 0x44250000, 0x16280585, 0x0e071415, 0x07012f01, 0x82050e70, 0x173224ca, 0x56262737, 0x0882050a, 0xf2823420, 0x32013b22, 0x080c9a4f, 0x3725145c, 0x27050727, 0xf7011707, 0x091b0961, 0x17110a50, 0x6b050f03, 0x1b120112, 0x020d1313, 0x056c1206, 0x302a0602, 0x510a2629, 0x09610909, 0x090d010d, 0x1c0a3050, 0x0a0a2f0a, 0xfe095130, 0x494549dc, 0x49453201, 0x09618a44, 0x260a5109, 0x062a3029, 0x126c0502, 0x130d0206, 0x45821b13, 0x0f056b27, 0x09111703, 0x835b8251, 0x0a302121, 0x1c2d3982, 0x0950300a, 0x4549681b, 0x49459f4a, 0x22cf8345, 0x82b8fff8, 0x00c02fcf, 0x0036001d, 0x05000051, 0x06070616, 0x9a4b022e, 0x3e5a1805, 0x030e2907, 0x07272223, 0x14311425, 0x5505fc6b, 0x3327097d, 0x011e3132, 0x85153007, 0x83032018, 0x05b04d18, 0x01361884, 0x07020631, 0x12628839, 0x0510041f, 0x13021c75, 0x0603131a, 0xd6820a08, 0x43011b33, 0x04200709, 0x8a060507, 0x09090661, 0xaf7a0107, 0x2710825a, 0x03040403, 0x39530502, 0x532f1284, 0x10050f76, 0x62132004, 0x02073988, 0x841b7406, 0x050d2ed8, 0x0306080a, 0x012b1b01, 0x07040907, 0x088e5504, 0x7aaf0622, 0x01201182, 0x3a224083, 0x4a820552, 0x06090738, 0x04000076, 0xc0ff0000, 0xc0018001, 0x11000d00, 0x19001500, 0x58180000, 0x37250c9b, 0x15233517, 0x2d038633, 0x261a4001, 0x00ff1a26, 0x2080261a, 0x01828030, 0x26c00125, 0x8380fe1a, 0x40012414, 0x8460a080, 0x052f4600, 0x18335389, 0x23001f00, 0x2e002a00, 0x00003500, 0x3b363411, 0x55111701, 0x352105f4, 0x2a578437, 0x012b2634, 0x3233021d, 0x85013d36, 0x1614296a, 0x2735013b, 0x25352115, 0x22257983, 0xc01a2606, 0x29768580, 0x13a040e0, 0x0d20200d, 0x0884a013, 0x00014025, 0x824000ff, 0x8201200e, 0xfe802283, 0x218883c0, 0x108340c0, 0x40804025, 0x85200d13, 0x4060210a, 0x40260782, 0x05000013, 0xeb82f9ff, 0xeb82c020, 0x18000728, 0x32002800, 0xd35d4f00, 0x32122209, 0x05a44116, 0xa2832620, 0x34363236, 0x16173621, 0x22060714, 0x3626012f, 0x3216011f, 0x011f1637, 0x26240e82, 0x22013f34, 0x16252385, 0x0622010f, 0x0b4c7c31, 0x013f3633, 0x1c287c01, 0x291c281c, 0x141c090e, 0x09090760, 0x08048207, 0x0bf6fe30, 0x0e05050b, 0x0c440e27, 0x05440b17, 0x07063d0d, 0x1a095c1e, 0x0d300913, 0xcd0d1313, 0x5213151a, 0x0e3d0101, 0x4e131a13, 0x15150214, 0x4082c001, 0xfe281c3c, 0x1407095c, 0x090e091c, 0x0c0c0e09, 0x0e040e04, 0x170b440e, 0xb804440c, 0x3d820809, 0x0a1a1323, 0x223082d2, 0x82531331, 0x59142139, 0x532d4883, 0x1238144e, 0x03000011, 0xc0fffeff, 0x05ff5d02, 0x43002422, 0x6744e382, 0x83122006, 0x222323d0, 0xef5a2527, 0x27372405, 0x731f3726, 0x162305bd, 0x82013637, 0x38e8820d, 0x17151637, 0x1f163637, 0x0e011e02, 0x26012f01, 0x2f07012f, 0x01270601, 0x08d684c4, 0x070e123c, 0x1114251a, 0x060978fe, 0xc6091309, 0x05174b2e, 0x030d286b, 0x1988310a, 0x9afe0714, 0x0203041a, 0x150b2303, 0x301d523e, 0x0c341107, 0x0c190c09, 0x0706123a, 0x132f7320, 0xa7490118, 0xfe3b0805, 0x07140e87, 0x04cb081a, 0x05061213, 0x174b4566, 0x0c28351f, 0x464a0e23, 0x0107140b, 0x04041761, 0x15060102, 0x201f180b, 0x33161d0c, 0x1819061a, 0x091d0609, 0x390d1313, 0x420c1118, 0x022b06af, 0x00c00140, 0x002e0007, 0x8a4e0042, 0x163222dd, 0x05584215, 0x3b36342b, 0x26301301, 0x3f362635, 0x23d28201, 0x33011f16, 0x0f201b83, 0x36230682, 0x76370734, 0x262705f1, 0x0706010f, 0x82373303, 0x3307241d, 0x77222337, 0x01210712, 0x31e98464, 0x2a0e149e, 0x0a20fe1e, 0x2b0a0e0e, 0x03080236, 0xd376280a, 0x2c260805, 0x1a14130d, 0xec0e0a46, 0x0f155519, 0x0d0f250a, 0x0606270c, 0x0c3e1834, 0xcf2b1612, 0x0d1e2119, 0x0f3d2014, 0xed88050c, 0x0a0ea42c, 0x140e2a1e, 0x010f010e, 0xe2760a01, 0x0d132808, 0x0eb20816, 0x77512214, 0x042a0800, 0x84fbfe02, 0x5b0d0a12, 0x21771bb0, 0x004c2a05, 0xff000002, 0x018302e0, 0x05d153a0, 0x07162525, 0x5623010e, 0x36290575, 0x36322133, 0x012f3435, 0x22e18226, 0x42352517, 0x1e240691, 0x021e1703, 0x82052d56, 0x061423f1, 0x03831523, 0x35233408, 0x35231523, 0x6502012e, 0x2c02021d, 0x07fcfd1e, 0x02070909, 0x090e0b07, 0x0a0a0c0a, 0xc5fd0c0a, 0x0d13130d, 0x22261315, 0x0f09181f, 0x15203d2f, 0x8360261a, 0x382a0812, 0x40c04028, 0x1761362a, 0x09271d26, 0x09071007, 0x080b0b0e, 0x0c0d0a07, 0x80770a0d, 0x09131a13, 0x111f1710, 0x26172c1d, 0x0d82401a, 0x38286029, 0x34303030, 0x8200450b, 0xff042200, 0x20bb82fe, 0x24bb8200, 0x00360014, 0x066b6857, 0x222d8d82, 0x22230627, 0x3e262726, 0x35263702, 0x9b451834, 0x34352122, 0x2005784f, 0x20068327, 0x07f34f06, 0x32161726, 0x1415013f, 0x3320eb82, 0x18060841, 0x1819de45, 0x2a08aa74, 0x02010402, 0x061c1107, 0x18128039, 0x2011b045, 0x25e182cc, 0x1212040a, 0xe8820a04, 0x08100827, 0x020a0219, 0x20078219, 0x312b9230, 0xac7aa001, 0x0333137a, 0x15070502, 0x4a391631, 0x45189656, 0x11220cba, 0x6882130b, 0x08333b82, 0x09090768, 0x09092323, 0x08086807, 0x04043844, 0x95084438, 0x82002029, 0x05b74300, 0xc3010228, 0x45000700, 0x5c185100, 0x0f280ec9, 0x17070601, 0x1e363716, 0x062e0782, 0x25272223, 0x3e262726, 0x16171601, 0x0982011f, 0x013f3625, 0x773f3435, 0x1582054b, 0x82021f21, 0x011e2216, 0x24288207, 0x14152707, 0x213c8406, 0xc5433726, 0x13460806, 0x19344254, 0x0e041507, 0x090e105a, 0x09070813, 0x0f0f1311, 0x102193fe, 0x13120704, 0x260f0704, 0x0c050206, 0x2a234a0d, 0x1d091311, 0x19180906, 0x193f1a06, 0x040b6f15, 0x0b100a08, 0x0f123c99, 0xaa060255, 0xd0430205, 0x3fb62b06, 0x1e13271e, 0x22060f66, 0x40840705, 0x05083408, 0x09210c85, 0x09070912, 0x060e050f, 0x04170d07, 0x11283519, 0x12060615, 0x0b1a0b3a, 0x15340c08, 0x08531008, 0x2d0d0a1b, 0x1910142d, 0x01011c05, 0x820a0a3d, 0xff073aed, 0x02c0ffff, 0x00c10102, 0x005c0054, 0x006c0064, 0x007f0074, 0x01000087, 0x25c08216, 0x15141614, 0x9b4e0714, 0x012b2405, 0x822e2722, 0x26372cf0, 0x27373035, 0x013f022e, 0x821f013e, 0x023e220f, 0x052b7c3b, 0x17153123, 0x231c8236, 0x16323634, 0x37223484, 0xfe513430, 0x36372409, 0x4d241716, 0x1220069e, 0x200eac6a, 0x2a0f8636, 0x34353637, 0x15062226, 0x87171614, 0x01300812, 0x060502ff, 0x21040187, 0x25230908, 0x12631510, 0x2c26210d, 0x04870104, 0x06010105, 0x1c060c03, 0x03060403, 0x38090710, 0x38160d09, 0x0d163850, 0x07200982, 0x1c2b0f82, 0xfe020d06, 0x09090ee0, 0x8429090e, 0x88088205, 0x10102102, 0x08220a82, 0x18841d04, 0x28014908, 0x37030c06, 0x02040501, 0x2d22100d, 0x0c19512e, 0x28431508, 0x0d102c3f, 0x0702370c, 0x060e0408, 0x1d0c0205, 0x02050504, 0x012e0709, 0x0c0f1701, 0x3828211b, 0x1a222838, 0x01170f0c, 0x09072e01, 0x0c1d0709, 0x2a060502, 0xfe215f84, 0x200684e7, 0x22058a37, 0x8309174f, 0x10042324, 0x15843206, 0x00070022, 0x0fff4518, 0x60005b24, 0x81736c00, 0x50362009, 0x34200525, 0x0520078f, 0x23088077, 0x23013d26, 0x24077945, 0x013e3435, 0x6b7d1837, 0x1d162a0c, 0x34353301, 0x3236013f, 0x0584511f, 0x14011d2a, 0x33171501, 0x36321327, 0x2905535d, 0x6e331614, 0x140e0e14, 0x05905e0e, 0x07012208, 0x16050524, 0x25050d05, 0x420b2b29, 0x2e00ff2e, 0x131d1042, 0x1c10141c, 0x0c209014, 0x2940054f, 0x301c8225, 0x24050516, 0x4080fe17, 0x143a447a, 0xff141c1c, 0x20058300, 0x93508248, 0x87232002, 0x3a2a3a31, 0x2e191713, 0x162e4242, 0x5b091e28, 0x14701c14, 0x0cb71d1c, 0x3a13330d, 0x2d74872a, 0x20662016, 0x40605301, 0x1c80fea0, 0x02821c28, 0x93450020, 0x80012b05, 0x1300a001, 0x00001f00, 0xce823201, 0x15012b29, 0x22012b14, 0x8223013d, 0x33342203, 0x21138325, 0x0b842123, 0x0c740126, 0x380c8c0c, 0x0c2a0382, 0x0c0c6801, 0x0c0c98fe, 0x0f822001, 0x0c0ce423, 0x200682e4, 0x82038280, 0x08835e02, 0xc0018028, 0x31002500, 0x59823900, 0x16152327, 0x07061415, 0x055c5017, 0x2e013f27, 0x37343501, 0x069e5935, 0x675c3320, 0x15052106, 0x8206df54, 0x3753187f, 0x10703708, 0x16282f20, 0xc0101304, 0x16041310, 0x10202f28, 0x07090907, 0x05826001, 0x08d9fe24, 0x02820830, 0x5274363a, 0x01527452, 0x13109d90, 0x471a5432, 0x0f1a1a0f, 0x32541a47, 0x099d1013, 0x26082867, 0x08081018, 0x4cd00810, 0x042c05ca, 0xbfffffff, 0xc5010502, 0x2f001500, 0x412a9f82, 0x16250000, 0x06010f14, 0x99822f22, 0x2327373a, 0x15173727, 0x17163617, 0x27072227, 0x013e3726, 0x0f011e17, 0x37011f01, 0x16231282, 0x82060706, 0x06072214, 0x063f4917, 0x08081b51, 0x0b0bf542, 0x0b1f0a35, 0x0b081175, 0x40603e6b, 0x30146b80, 0x0c0d3411, 0x1b2a0152, 0x03072549, 0x440b4a05, 0x020d054b, 0x131b1409, 0x941f1319, 0x137c0c07, 0x98132535, 0x0e0e1475, 0x0b340e14, 0x0b350b1e, 0x2d083c82, 0x806b1430, 0x6b3e6040, 0x3611080b, 0x2b3d5203, 0x0209141b, 0x444b040e, 0x03054a0b, 0x1b4a2407, 0x1f130b12, 0x7b201f52, 0x13352513, 0x3982de99, 0x00140e22, 0x24056373, 0x00c00102, 0x085b5f07, 0x71453d20, 0x16322309, 0x98180f06, 0x0732139d, 0x27222322, 0x25373626, 0x23350136, 0x33152515, 0x26822b35, 0x4e220221, 0x0132056e, 0x13131a2d, 0x03be131a, 0xb0e40706, 0x0d13130d, 0x058380fe, 0x02dcb035, 0x02030c02, 0xe0010607, 0x60befe06, 0x80600001, 0x84636060, 0x8001212a, 0x13292f82, 0x020c0d1a, 0x0d135c3c, 0x822d83e0, 0x3b532a04, 0x010c060c, 0xa7fe0280, 0x21008460, 0x25842001, 0x00229e82, 0xdf790002, 0x000e2507, 0x0100001f, 0x200ddd5a, 0x08dd5a13, 0xdd5a0220, 0x44380805, 0xba834834, 0x39495f83, 0x240a1b2a, 0x06061513, 0x1b075c3a, 0x384b121c, 0x308d012b, 0x875f2b8c, 0xa0365f87, 0x203a3544, 0x591ac7fe, 0x430b0927, 0x28200875, 0x45381328, 0xff336b84, 0x02c0ffff, 0x00c00141, 0x0058002c, 0x030e3700, 0x83070607, 0x373626fd, 0x37363730, 0x06c9633e, 0x06011f2b, 0x07050e07, 0x1625020e, 0x20208206, 0x21038222, 0x0482040e, 0x22230624, 0x2682012f, 0x3e370426, 0x053e3702, 0x2d083182, 0x18160ddb, 0x23350d0e, 0x0a010924, 0x45023724, 0x1203041c, 0x33232010, 0x080e1b1e, 0x25090d0a, 0x16132e1e, 0x0a1a2526, 0x17080707, 0x24844c01, 0x45010129, 0x2007061c, 0x88284325, 0x0c0c2623, 0x0c171116, 0x08268212, 0x17090633, 0x11142120, 0x0d702335, 0x04070c12, 0x0a232114, 0x151e081b, 0x0b4a1701, 0x27182408, 0x0a0b1f1c, 0x2509060a, 0x0a07121c, 0x1526251a, 0x21131213, 0x252187d8, 0x2736120f, 0x1f860f2f, 0x0b050426, 0x130b130b, 0x21252285, 0x14060916, 0x08934321, 0xff82c020, 0x32001624, 0x62183a00, 0x052318f1, 0x483b1415, 0x3d22058b, 0x96683301, 0x2b342706, 0x011d2201, 0x62182223, 0xfe2518d6, 0x083808d0, 0x86038230, 0x18ed2006, 0x2017b562, 0x30248a8e, 0xe0fe3808, 0x121c1240, 0x00010000, 0x02c0ff00, 0x209b8240, 0x260c8218, 0x15021e32, 0x4d230614, 0x2f080757, 0x022e2211, 0x01363435, 0x486f4120, 0x151d2328, 0x0f88fe0f, 0x10180f15, 0xc001a109, 0x1d3b321f, 0x00ff1f18, 0x0d13130d, 0x0f090001, 0x6b3e0b14, 0x6b4aeb82, 0x01002505, 0x000900a1, 0x35215e82, 0x064a4b21, 0x1e01353d, 0x25211501, 0x02303336, 0xfe0d1300, 0x01130d40, 0xfe7b592c, 0x08170100, 0x84a0a00c, 0x05a02b44, 0x07d95a81, 0x03000000, 0x9384ffff, 0x1000c126, 0x48002c00, 0x17239782, 0x8633011e, 0x013d2948, 0x05353632, 0x012b3435, 0x22230383, 0x8223011d, 0x0b374103, 0x15163722, 0x22059f67, 0x6226012f, 0x352608cd, 0x36253734, 0x47181732, 0xfe270729, 0x01090760, 0x413b0104, 0xbb2d0d3a, 0x05150405, 0xe5040707, 0xe5050c05, 0x35088204, 0x01050416, 0x0c1e0c00, 0x01c14d01, 0x0907b902, 0x02b90709, 0x47414401, 0x0594290c, 0x18050607, 0x04ca0405, 0x08820282, 0x05070625, 0x450a0ae2, 0x023106df, 0x00a00100, 0x00320016, 0x16321200, 0x22230614, 0x397f1831, 0x32c69a0e, 0x9696d496, 0x3337016a, 0x02084c41, 0x061c1104, 0x8d600139, 0xf27e18ad, 0x15032709, 0x493a1631, 0x988c6e56, 0x47410020, 0x82bf2005, 0x00c02783, 0x0025000f, 0xbd58002e, 0x68222006, 0x362a05c8, 0x37011f32, 0x0f060717, 0x11850602, 0x3f360228, 0x17071701, 0x13822737, 0x36370124, 0x3247fb01, 0x05b52e05, 0x0e041705, 0x2d370204, 0x781b136e, 0x05274766, 0x071b6631, 0x372d6e13, 0x0a440a0d, 0x50130206, 0x82060109, 0x05172322, 0x1e85b505, 0x2c83f720, 0x661b0722, 0x66224185, 0x2c831b78, 0x2c837b20, 0x13500924, 0x00820002, 0xf4ff0422, 0x0827a818, 0x15432a20, 0x011e2306, 0xa818010f, 0x04201d2d, 0x18065549, 0x220f26a5, 0x1825d801, 0x260745a8, 0x2019371d, 0x18332646, 0x211145a8, 0x4f18fefe, 0x40490a65, 0x0cfc3305, 0x0f1f1243, 0x1a223e1c, 0x07132916, 0x1f34090f, 0xa8181a39, 0x53210e58, 0x20358313, 0x20058473, 0x05ea486d, 0x29053343, 0xc0018001, 0x00000b00, 0x3a453212, 0x628f3209, 0xa070325d, 0xc0013270, 0x50379475, 0x37507070, 0x23ea8294, 0x00000600, 0x2f06c34c, 0x001b000b, 0x002f0027, 0x003f0037, 0x16322500, 0x2007664e, 0x064b6133, 0x2c08954d, 0x37262237, 0x1632013e, 0x23061617, 0xff431826, 0x8606200e, 0xd001270f, 0x141c1c14, 0x058360fe, 0x07b0013a, 0xfe1a2609, 0x09261aa0, 0x181a1b07, 0x967e1f0f, 0x180f1f7e, 0x090e3e1a, 0x8920b482, 0x1350058a, 0x801c3505, 0x1a100709, 0x101a2626, 0x34a00907, 0x42423218, 0x70341832, 0x2920df84, 0x17200584, 0x00200584, 0x2028eb82, 0xe001c0ff, 0x3e00c101, 0xd950b182, 0x012f2a05, 0x34013d26, 0x1415013f, 0x28078232, 0x3733033e, 0x1d011e36, 0x230d8401, 0x31323336, 0x33080c89, 0x031e011f, 0x1e17011d, 0x42e00102, 0x212ed72e, 0x1b150b1f, 0x08050310, 0x081f050a, 0x1c100a10, 0x1b140114, 0x270d1510, 0x03070805, 0x070d0824, 0x422e5383, 0x0f282482, 0x0f0a174a, 0x9308084c, 0x24081782, 0x01060506, 0x20070c06, 0x14c80808, 0x141d011c, 0x200808c6, 0x07020f0b, 0x08060401, 0x02093204, 0x0200100a, 0x27008200, 0x80010002, 0x23001300, 0x2125a583, 0x37363435, 0x4b048217, 0x372205c5, 0x5671011e, 0x41062005, 0x012f085f, 0x4240fee0, 0x07092935, 0x29090760, 0x5c104235, 0x40260a69, 0x16613b40, 0x11837052, 0x16527024, 0x315c9b61, 0x82002009, 0x00083b00, 0x02c0ff00, 0x00c00181, 0x001f0007, 0x004a003e, 0x00720056, 0x008a007e, 0xbd472400, 0x32072306, 0xa8531516, 0x35262206, 0x28858230, 0x16173233, 0x07363732, 0x20168306, 0x77df1817, 0x269f8808, 0x1d163233, 0x65070601, 0x3d210a8f, 0x0b9b6501, 0x210f0b46, 0xef44011d, 0x65e38207, 0x338b08c3, 0x08022d08, 0x50383850, 0x422e3038, 0x14e0141c, 0x042e421c, 0x142a1403, 0x102ac203, 0x0907e0fe, 0x13200d13, 0x130da00d, 0x0c130d20, 0x0c280cc4, 0x30260288, 0x1a06061a, 0x03821406, 0x50200684, 0x08821888, 0x4f828020, 0x50382708, 0x012e4258, 0x131c1c13, 0x01422e01, 0x0a010707, 0x1a013c2a, 0x01070915, 0x40130d70, 0x0d13130d, 0xd90d1340, 0x52843407, 0x05848c20, 0x4f8a8620, 0xf4061a22, 0x2c08198a, 0xff040000, 0x02befffe, 0x00c20102, 0x0037000d, 0x004b0041, 0x14160000, 0x23060107, 0x34352622, 0x17360137, 0x22263436, 0x0e070607, 0x2a028901, 0x14060706, 0x36373216, 0x89013e37, 0x362c0802, 0x012e2705, 0x1636013f, 0x011e031f, 0x2606010f, 0xd101012f, 0xa0fe172f, 0x2f212218, 0x18600118, 0x0d090428, 0x20170c05, 0x18040627, 0x14200587, 0xfe2b1392, 0x02130b7c, 0x3311d011, 0x889f0b13, 0xc0012409, 0x8218422f, 0x212f224b, 0x2c4b8222, 0x0d057717, 0x040c050a, 0x17202706, 0x20058718, 0x23139213, 0x33130bb8, 0x02204a82, 0x09864a84, 0x0002002d, 0x01bfff20, 0x00c101a0, 0x7e1b0015, 0xb8620a67, 0x16322e07, 0x03071415, 0x06072127, 0x14700122, 0x3589181c, 0x54012c08, 0xac015478, 0x63000163, 0x58012809, 0x1c2f05e9, 0x553b0908, 0x08093b55, 0xceceb2fe, 0x55000012, 0x02230583, 0x82c00180, 0x00252e59, 0x00410029, 0x3d223700, 0x013b3401, 0x23038235, 0x33011d32, 0x220c654c, 0x18211125, 0x440a8597, 0x3b2a0e81, 0x3b161401, 0x37363201, 0x764608e8, 0x20012e0b, 0x141c00fe, 0x1c14a001, 0x0180fe40, 0x979718f0, 0x48e02010, 0x08260b8a, 0xb0feb038, 0xc5825001, 0x01dcfe26, 0x6000ff00, 0x23097344, 0x0f11150b, 0x002caf83, 0x01000200, 0x000f0080, 0x00230019, 0x18059d64, 0x210c14b7, 0xd9683513, 0x37332a06, 0x2b263435, 0x32331501, 0x21098336, 0x01692123, 0x21332905, 0xc0013632, 0x1a26261a, 0x26053e56, 0x09075060, 0x7ad00709, 0xa02d05b1, 0xc0fe0d13, 0x0d13130d, 0x130d4001, 0x06fa5501, 0x011a2627, 0xfe261a00, 0x056868d0, 0x07101026, 0x87093009, 0x8205bb42, 0x05174b2a, 0xc02a9382, 0x30001500, 0x33250000, 0x72180e17, 0x3e37072c, 0x37173705, 0x07141516, 0x27352327, 0x17323336, 0x35262736, 0x83013f34, 0x1e4e080a, 0x4b010601, 0x4b13256b, 0x174c8f6a, 0x1d172121, 0x181d2431, 0x350b1814, 0x36063283, 0x28244b59, 0x14151c1e, 0x02170302, 0x0a030403, 0x27b9040c, 0x29404722, 0x14212e21, 0x2d322b23, 0x26180e2c, 0x1611442e, 0x17224e39, 0x021d2b0c, 0x28830303, 0x37240d22, 0x27083f74, 0x00c10101, 0x001e0011, 0x3005bf5a, 0x021e1300, 0x010e1617, 0x022e010f, 0x023e3727, 0x200e8207, 0x06344305, 0x7b076450, 0x24080f34, 0x629a5a9f, 0x0b06010b, 0x52043908, 0x020f5d8f, 0x58330f0a, 0xfe034b86, 0x06020385, 0x1a72010a, 0x131a1313, 0x20058443, 0x3e05847b, 0x5f09c001, 0x0f085999, 0x5d10020b, 0x3902508e, 0x71060c07, 0x56854a01, 0x060a0169, 0x824c0202, 0x1a13222d, 0x20058485, 0x08534c7b, 0x00000326, 0xc001c0ff, 0x0923ab82, 0x82001f00, 0x03172bbd, 0x010e0321, 0x2622012b, 0xdf180637, 0x33280b8b, 0x012f3632, 0x37072226, 0x080dad75, 0x37013b2c, 0x32013b36, 0x1535011f, 0x01158001, 0x13f6131c, 0x0807451c, 0x0709390b, 0x39090720, 0x5a07080b, 0xdb040e04, 0x07090907, 0x058360fe, 0x07097832, 0x070f720f, 0x53011309, 0x1a13adfe, 0x1508c31a, 0x2505b745, 0x055e0815, 0xb945a505, 0x0d132309, 0x9f6d130d, 0x00c12109, 0x376e9f87, 0x229fac09, 0x43800120, 0x5b200598, 0x10289da3, 0xb0fe5001, 0xc11c1c14, 0xbf439d9d, 0xc0012706, 0x0e00c001, 0x0b5e1e00, 0x05756805, 0x75212321, 0x172205fb, 0x79472236, 0x32362805, 0x1d16011f, 0x4c271401, 0x23081a31, 0x16141507, 0x013d3632, 0x4b363f01, 0xb4fe1822, 0x364b2218, 0x4b6a355f, 0x180a5515, 0xa815550a, 0x10051605, 0x06860382, 0x422f283e, 0x4e02802f, 0x22221836, 0x024e3618, 0x354b6f5f, 0x2008166e, 0x08200404, 0x9d356e16, 0x0538298a, 0x21105d16, 0x10212f2f, 0x00000100, 0x8002e0ff, 0x2d00a001, 0x23050000, 0x1121a382, 0x05214823, 0x4606ff6a, 0x152106e1, 0x09726f11, 0x2b061423, 0x2f238201, 0x0f98dc01, 0x0f156015, 0x0909078c, 0x0f157007, 0x202c0d8c, 0x5c010f15, 0x09150f9c, 0x09072007, 0x15230782, 0x8aa4fe0f, 0x0600210e, 0x490a6b52, 0x4720074d, 0x180ee554, 0x250d9855, 0x1f323336, 0x2e5f3301, 0x16222105, 0x180e7d77, 0x200f254a, 0x056f6201, 0x29342508, 0x130e2a3b, 0x0e52131a, 0x0c09700b, 0x3547090b, 0x0d13130d, 0x6a360b40, 0x4b6a4b4b, 0x26263466, 0x8bfe2634, 0xc6540c8a, 0x21952606, 0x110a1b32, 0x292c8380, 0x110a366f, 0x0860090f, 0x47823907, 0x35822020, 0x756a4b22, 0x26223582, 0x0b8a9a34, 0x19000021, 0x260ba719, 0x00170013, 0x5b1f001b, 0x34270e3d, 0x23053336, 0x82273315, 0x33072403, 0x82172335, 0xa0012103, 0x25091850, 0x80806001, 0x008380c0, 0x01210582, 0x072f50a0, 0x84820120, 0x15824020, 0x80211482, 0x24008200, 0xff000015, 0x3f7418e0, 0x4f21080c, 0x6f005f00, 0x8f007f00, 0xaf009f00, 0xcf00bf00, 0xef00df00, 0x0f01ff00, 0x2f011f01, 0x4f013f01, 0x07016d00, 0x09f75118, 0x0de05e18, 0x60056149, 0x21200a82, 0xa1791f8d, 0x8f2f8f0f, 0x1833200f, 0x2308364a, 0x013d2622, 0x0f8ff782, 0x5f8e0720, 0x03201f8f, 0x13201f8e, 0x6f8f0f8d, 0x894b0f8f, 0x8fef8707, 0x8e9fa0bf, 0x205f908f, 0x08395ff0, 0x09928020, 0x9200ff21, 0x20289314, 0x89278820, 0x92a02009, 0xa6402013, 0x93fe204f, 0x8964933c, 0x20968913, 0x096945e0, 0xc020099d, 0x60201e9d, 0x298a1e89, 0xfe200a95, 0x0121748a, 0x95579d80, 0x8a6d9541, 0x22548915, 0x43080000, 0x8420163b, 0x21102143, 0x71422333, 0x1041421d, 0x42069b4c, 0xc1421871, 0x223f870e, 0x43112123, 0x35240576, 0x33363411, 0x41095642, 0xe02009f1, 0x4112fb41, 0x1d841dd2, 0x8490fe21, 0x0d1322f8, 0x28554120, 0x8a0a3441, 0x8a01200a, 0x21168540, 0x928390fe, 0x0d900124, 0x00820013, 0xffff0222, 0x2406e361, 0x002c0024, 0x05ee4e00, 0x16012f3f, 0x010e1415, 0x3f260607, 0x22230601, 0x36262726, 0x3526011f, 0x36373634, 0x36010f16, 0x06015006, 0x3d610132, 0x0b01085a, 0x250d7b08, 0x0c082741, 0x2a230c01, 0x51211087, 0x200f843c, 0x05c74844, 0x0e864020, 0x45282a24, 0x3084052d, 0x2f871087, 0xc048a020, 0xff053407, 0x02c0fffe, 0x00c20102, 0x002b0012, 0x00490033, 0x62000067, 0x1621055c, 0x06727b1f, 0x06010f29, 0x1e321722, 0x44011d01, 0xb74809f3, 0x219c8708, 0xaa823225, 0x82220621, 0x23c082c1, 0x3b36013f, 0x0f22da82, 0x0a721301, 0x26222a05, 0x32333634, 0x15073517, 0x85228214, 0x08dd820b, 0x1561754d, 0x35151802, 0x130a0a13, 0x02181535, 0x0e046115, 0x070d078c, 0x0bea0b10, 0x300b1010, 0x48130707, 0x5b080613, 0x2c1e1e2c, 0x0897011e, 0x045c0407, 0x1802080d, 0x0108063e, 0x4c0b0111, 0x16020806, 0x26140e27, 0x1b252535, 0x86700808, 0x0b0f3407, 0x3e1663e5, 0x13051214, 0x05130b0b, 0x163e1412, 0x82600563, 0x838a2055, 0x24048253, 0x0e12120e, 0x3f508294, 0x0b562c1e, 0x08058b05, 0x05075305, 0x0508096b, 0x02600133, 0x14900f13, 0x1c281c1c, 0x6c123002, 0x6b240885, 0x0002120c, 0x012b0082, 0xc0ff0000, 0xc1010002, 0x18001e00, 0x2207fb89, 0x4b002223, 0x1f29060b, 0x14151601, 0x1716010f, 0x08e68337, 0x0ff10135, 0x13041801, 0x13f0fec0, 0x10030268, 0x09023006, 0x3179383c, 0x04050b08, 0x03100656, 0x01136802, 0x0413c010, 0x700f0118, 0x080b0504, 0x3c387931, 0x59000209, 0xc026071f, 0x0f00a001, 0x0d472e00, 0x34012d11, 0x012f3435, 0x0f222326, 0x37272601, 0x2305c15e, 0x07232223, 0x2005d479, 0xd67a1837, 0x5001380b, 0x03034609, 0x4b1f0507, 0x01052623, 0x020a041e, 0xaa0c4101, 0x18030c78, 0x370ece7a, 0x0a0201cd, 0x05011e04, 0x1f4b2326, 0x03030705, 0x030f0946, 0x0caa780c, 0x3405fb43, 0x018002c0, 0x001000c0, 0x0028001c, 0x00400034, 0x00580050, 0x2997885f, 0x2311012b, 0x34352315, 0x914f3336, 0x4f05200b, 0xa94f16d1, 0x3207220b, 0x0cf04c16, 0xdc511620, 0x35053506, 0x07270727, 0x0d600215, 0x800d1313, 0x0d13a0c0, 0x091e0948, 0x01210282, 0x8b078560, 0x48a82005, 0x4d20090a, 0x2605f542, 0x20806000, 0x4dc00140, 0x01220500, 0x46824040, 0x3e846720, 0x0584c720, 0x058a7120, 0x24823020, 0x4083e020, 0x0d20012b, 0x1a134013, 0xcd1a1313, 0x213e8360, 0xbb560020, 0x22fb8407, 0x523b0013, 0xfb4206b5, 0x0717230e, 0x72551605, 0x01272106, 0x2407114d, 0x3435011f, 0x075d5a36, 0x2705da44, 0x37270723, 0x50011523, 0x08357c18, 0x431b202e, 0x06350109, 0x08051403, 0xb3fd0405, 0x73230886, 0x46010709, 0x7624078c, 0x76204331, 0x230a4544, 0x2a1c3450, 0x05252c82, 0x01030619, 0x210886c7, 0x50832c59, 0x04836020, 0x3494203a, 0x00001d60, 0xfffdff04, 0x01c001df, 0x001500a0, 0x004f0035, 0x37000052, 0x27059143, 0x3626012f, 0x3411013b, 0x32230482, 0x75111516, 0x3f2005c7, 0x0a197718, 0xdb821620, 0x33010f22, 0x2105c145, 0xca631723, 0x012f2406, 0x83060723, 0x663520c4, 0x1735065e, 0xb0273307, 0x5008080b, 0x50040e04, 0x300b0808, 0x07200709, 0x20b58209, 0xe2ff190b, 0x011f290f, 0x0c190709, 0x04470503, 0x1fe2ff19, 0x07098026, 0x460a0e12, 0x0a8a4984, 0x0302eb31, 0x0d0b0907, 0x07090b0d, 0x0ba00203, 0x9330650b, 0x221323df, 0x1a5d3f26, 0x46a78205, 0x17210817, 0x052e4c22, 0x84088b75, 0x20dfa6d7, 0x20df9010, 0xa88882e0, 0x200132df, 0x05600714, 0x14076005, 0x0907d0fe, 0x30010709, 0x25e0a840, 0x05000000, 0x3355fdff, 0x000f2b06, 0x002f001f, 0x0055003f, 0xcf841300, 0x53493620, 0x07232107, 0xe5530f8e, 0x8e35200f, 0x4221201f, 0xf0201405, 0x407b9e83, 0x18072008, 0x4909d57e, 0x0720058c, 0xc020bc82, 0xff210483, 0x10114100, 0x4f700120, 0x0a6f4815, 0x2405ae76, 0x07200709, 0x070f4109, 0x83300121, 0xd0fe214d, 0x2520e3d5, 0xa7140942, 0x60fe21e3, 0xc020e3bd, 0x200ff441, 0x2e008200, 0xfffdff04, 0x01b101e0, 0x001500a8, 0x434a0035, 0x5178198f, 0x07b74108, 0x22233522, 0x41055044, 0x032005f2, 0x2d054147, 0x2f260607, 0x36372601, 0x37012e37, 0x0b58013e, 0x118f4307, 0x44100121, 0x10200819, 0x023f0a82, 0x300a0410, 0x28360907, 0x062c2a3e, 0x050a020d, 0x24090c0d, 0x1d060a2b, 0x0c0c1022, 0x41600c10, 0xba410f9f, 0x3d0a820a, 0x09200304, 0x01700709, 0x27310b7d, 0x133e330b, 0x14060602, 0x0805050f, 0x14263d04, 0x3f825c1d, 0x82100c21, 0x920020ea, 0x171322eb, 0x0b944316, 0x20051248, 0x055f6232, 0xebb31882, 0x74446b20, 0x41302009, 0x012105b0, 0x21ebab29, 0x97439b01, 0x20f7830a, 0x0a414bfe, 0x0637eca8, 0xbfff0000, 0xc0014102, 0x1e001600, 0x40002600, 0x58004300, 0x43250000, 0x17340975, 0x07141514, 0x15141516, 0x2723010e, 0x36323315, 0x07232634, 0x27200786, 0x23185d45, 0x05273307, 0x21071360, 0xd7443426, 0x36372305, 0xcf411732, 0x204b3005, 0x19090332, 0x33213202, 0x0e0e0a28, 0x8338280a, 0x44d52105, 0x08056745, 0x0c580c3c, 0x07190c03, 0x07440109, 0x3b171a17, 0xcb01172e, 0x04d00505, 0x0570040e, 0x0d052d05, 0x04983705, 0x09c0050d, 0x0907e007, 0x04031f2a, 0x23171214, 0x2b200302, 0x140e30c8, 0x0483600e, 0x02d68232, 0x0c090702, 0x090c2424, 0xd6020207, 0xc9459016, 0xd0233682, 0x82700505, 0x052d2706, 0x05983805, 0x00820005, 0xffff032e, 0x80022000, 0x13004001, 0x23001b00, 0x2306ff69, 0x26222123, 0x25062b64, 0x34352633, 0x9c421404, 0xdaad1805, 0x78b43708, 0xfe3c5454, 0x54543ca0, 0x70185478, 0x2fe0fe18, 0x422f2f42, 0x05836001, 0x40012f22, 0x542a1582, 0x3b555577, 0x2c24242c, 0x14841b3c, 0x2184a020, 0x02000023, 0x056b5100, 0x0d00802c, 0x00003500, 0x27220625, 0x57583336, 0x28068305, 0x0e071415, 0x032e2204, 0x06fc7827, 0x33061e26, 0x37033e32, 0x49082282, 0xc647ea01, 0x123b2747, 0x0f280f13, 0xb63b1213, 0x0e030107, 0x88744234, 0x0e344274, 0x07090103, 0x08020506, 0x3734211d, 0x6436274b, 0x0411373f, 0x97050605, 0x0ee91717, 0xc40e0c0c, 0x03030904, 0x35441e07, 0x44352b2b, 0x0b82071e, 0x0204092f, 0x15111307, 0x18130a0f, 0x04040d1f, 0x2b978200, 0xe0fffbff, 0x81018002, 0x2d000f00, 0x17339782, 0x2133031e, 0x37262722, 0x3233013e, 0x15031e05, 0x82230614, 0x012f2597, 0x07222326, 0x3f211482, 0x08938201, 0x01171653, 0x2d216205, 0xfd263c39, 0x0e0e16de, 0x3a5a0f05, 0x29160135, 0x1c0e1d3d, 0x24311d14, 0x62191e2b, 0x10044036, 0x141c0306, 0x180706bf, 0x559d0423, 0x0c1f211c, 0x461a1515, 0x20031156, 0x140c242c, 0x1c0e091c, 0x2b541717, 0x1f154102, 0x1e012904, 0x2d8b8217, 0xff000003, 0x018001c0, 0x000900c0, 0x11820010, 0x7c013d21, 0x13220790, 0x6e592315, 0x35232a08, 0x425e8001, 0xb05e4240, 0x290685b0, 0x42808060, 0xa2015e5e, 0x068220c0, 0xc0204222, 0x002b4a82, 0xff080004, 0x01f801c8, 0x820700b8, 0x001721d9, 0x0babc118, 0x2006824c, 0x0e475202, 0x3d56d525, 0x643d563d, 0x4f2d057c, 0xce9191ce, 0x4b6ac391, 0x014b6a4b, 0x29168228, 0x0e43563d, 0x140e0e14, 0x17820201, 0xe7ce9122, 0x4b211782, 0x2068826a, 0x21b38205, 0xb38302e0, 0x22000728, 0x3a002a00, 0x5c184400, 0xcf4609b7, 0x06142508, 0x23352622, 0x4905247b, 0x52420554, 0x0fa97f07, 0x0a3a9618, 0x0e992108, 0x090e0909, 0x090907e0, 0x38b0fe07, 0x1a203850, 0x011a2626, 0xfe5e4260, 0x1c1c286c, 0x13701c28, 0x08cbce18, 0x0d13c026, 0xf0130d40, 0x092b2e82, 0x0709670e, 0x28090720, 0x82283838, 0x1a00262d, 0xa0425e26, 0x222d8270, 0x57d4281c, 0x73260825, 0x13130dc0, 0xbe82c00d, 0x1c240282, 0x01005601, 0x02830782, 0x36001a22, 0x01240b86, 0x85001900, 0x02240b86, 0xab000500, 0x03240b86, 0xf3002000, 0x04240b86, 0x48011900, 0x05240b86, 0xb0012600, 0x06240b86, 0x05021600, 0x0a240b86, 0x76022c00, 0x0b240b86, 0xd3021700, 0x10240b86, 0x13031300, 0x11240b86, 0x33030500, 0x12240b86, 0x6d031900, 0x15200b86, 0xaf202382, 0x16200b86, 0xcf262382, 0x01000300, 0xa8820904, 0x03823420, 0x01240b85, 0x51003200, 0x02241786, 0x9f000a00, 0x03240b86, 0xb1004000, 0x04240b86, 0x14013200, 0x05240b86, 0x62014c00, 0x06240b86, 0xd7012c00, 0x0a240b86, 0x1c025800, 0x0b240b86, 0xa3022e00, 0x10240b86, 0xeb022600, 0x11240b86, 0x27030a00, 0x12240b86, 0x39033200, 0x15240b86, 0x87032600, 0x16200b86, 0xc33a2382, 0x6f004300, 0x79007000, 0x69007200, 0x68006700, 0x20007400, 0x63002800, 0x07822900, 0x1b824620, 0x11846e20, 0x77004126, 0x73006500, 0x6d200f82, 0x003c0782, 0x79706f43, 0x68676972, 0x63282074, 0x6f462029, 0x4120746e, 0x6f736577, 0x0000656d, 0x20223497, 0x52843500, 0x40827220, 0x09826520, 0x4c825320, 0x74826c20, 0x32826420, 0x202b408a, 0x72462035, 0x53206565, 0x82696c6f, 0x86258a1a, 0x205fb111, 0x2279822d, 0x8431002e, 0x9a322005, 0x352d256d, 0x2e35312e, 0xf7962183, 0x3322c2b5, 0x7c823300, 0x7e822e20, 0x32003222, 0x2820f882, 0x281a2241, 0x00650076, 0x00730072, 0x20818469, 0x212d823a, 0xba890035, 0x0000292b, 0x2e313333, 0x20323235, 0x0b744128, 0x65762029, 0x6f697372, 0x85203a6e, 0x412782c1, 0xb8410725, 0x8235200d, 0x057f417a, 0x41002d21, 0xbf410e7f, 0x46352506, 0x2d656572, 0x22066a41, 0x82680054, 0x0020228f, 0x22058277, 0x82270062, 0x00202297, 0x2299826d, 0x82740073, 0x82702099, 0x00702609, 0x006c0075, 0x20b38261, 0x20b38220, 0x20b58463, 0x20278220, 0x24218465, 0x006e0061, 0x20298264, 0x20178274, 0x2027826f, 0x2023826b, 0x08cf8274, 0x6854002d, 0x65772065, 0x20732762, 0x74736f6d, 0x706f7020, 0x72616c75, 0x6f636920, 0x6573206e, 0x6e612074, 0x6f742064, 0x696b6c6f, 0x82002e74, 0x82742084, 0x8270204e, 0x003a2256, 0x2001822f, 0x20668466, 0x42768274, 0x2e220b94, 0x17826300, 0x2e826d20, 0x7074742b, 0x2f2f3a73, 0x746e6f66, 0x05954261, 0x6f632e22, 0x39421882, 0x41002025, 0x8d420c59, 0x41002005, 0x87420b2d, 0x42599338, 0x9bcd07e7, 0x00020022, 0xff230084, 0x841900db, 0x21048e08, 0x1082ec03, 0x0001ed0f, 0x01020102, 0x01040103, 0x01060105, 0x01080107, 0x010a0109, 0x010c010b, 0x010e010d, 0x0110010f, 0x01120111, 0x01140113, 0x01160115, 0x01180117, 0x011a0119, 0x011c011b, 0x011e011d, 0x0120011f, 0x01220121, 0x01240123, 0x01260125, 0x01280127, 0x012a0129, 0x012c012b, 0x012e012d, 0x0130012f, 0x01320131, 0x01340133, 0x01360135, 0x01380137, 0x013a0139, 0x013c013b, 0x013e013d, 0x0140013f, 0x01420141, 0x01440143, 0x01460145, 0x01480147, 0x014a0149, 0x014c014b, 0x014e014d, 0x0150014f, 0x01520151, 0x01540153, 0x01560155, 0x01580157, 0x015a0159, 0x015c015b, 0x015e015d, 0x0160015f, 0x01620161, 0x01640163, 0x01660165, 0x01680167, 0x016a0169, 0x016c016b, 0x016e016d, 0x0170016f, 0x01720171, 0x01740173, 0x01760175, 0x000e0077, 0x010d00ef, 0x01790178, 0x017b017a, 0x017d017c, 0x017f017e, 0x01810180, 0x01830182, 0x01850184, 0x01870186, 0x01890188, 0x018b018a, 0x018d018c, 0x018f018e, 0x01910190, 0x01930192, 0x01950194, 0x01970196, 0x01990198, 0x019b019a, 0x019d019c, 0x019f019e, 0x01a101a0, 0x01a301a2, 0x01a501a4, 0x01a701a6, 0x01a901a8, 0x01ab01aa, 0x01ad01ac, 0x01af01ae, 0x01b101b0, 0x01b301b2, 0x01b501b4, 0x01b701b6, 0x01b901b8, 0x01bb01ba, 0x01bd01bc, 0x01bf01be, 0x01c101c0, 0x01c301c2, 0x01c501c4, 0x01c701c6, 0x01c901c8, 0x01cb01ca, 0x01cd01cc, 0x01cf01ce, 0x01d101d0, 0x01d301d2, 0x01d501d4, 0x01d701d6, 0x01d901d8, 0x01db01da, 0x01dd01dc, 0x01df01de, 0x01e101e0, 0x01e301e2, 0x01e501e4, 0x01e701e6, 0x01e901e8, 0x01eb01ea, 0x01ed01ec, 0x01ef01ee, 0x01f101f0, 0x01f301f2, 0x012200f4, 0x01f601f5, 0x01f801f7, 0x01fa01f9, 0x01fc01fb, 0x01fe01fd, 0x020002ff, 0x02020201, 0x02040203, 0x02060205, 0x02080207, 0x020a0209, 0x020c020b, 0x020e020d, 0x0210020f, 0x02120211, 0x02140213, 0x02160215, 0x02180217, 0x021a0219, 0x021c021b, 0x021e021d, 0x0220021f, 0x02220221, 0x02240223, 0x02260225, 0x02280227, 0x022a0229, 0x022c022b, 0x022e022d, 0x0230022f, 0x02320231, 0x02340233, 0x02360235, 0x02380237, 0x023a0239, 0x023c023b, 0x023e023d, 0x0240023f, 0x02420241, 0x02440243, 0x02460245, 0x02480247, 0x024a0249, 0x0288004b, 0x024d024c, 0x024f024e, 0x02510250, 0x02530252, 0x02550254, 0x02570256, 0x008b0058, 0x02590223, 0x025b025a, 0x025d025c, 0x025f025e, 0x02610260, 0x02630262, 0x02650264, 0x02670266, 0x02690268, 0x026b026a, 0x026d026c, 0x026f026e, 0x02710270, 0x02730272, 0x02750274, 0x02770276, 0x02790278, 0x027b027a, 0x027d027c, 0x027f027e, 0x02810280, 0x02830282, 0x02850284, 0x02870286, 0x02890288, 0x028b028a, 0x028d028c, 0x028f028e, 0x02910290, 0x02930292, 0x00950294, 0x028a008c, 0x02970296, 0x02990298, 0x029b029a, 0x029d029c, 0x029f029e, 0x02a102a0, 0x02a302a2, 0x020800a4, 0x02a602a5, 0x02a802a7, 0x02aa02a9, 0x02ac02ab, 0x02ae02ad, 0x02b002af, 0x02b202b1, 0x02b402b3, 0x02b602b5, 0x02b802b7, 0x02ba02b9, 0x02bc02bb, 0x02be02bd, 0x02c002bf, 0x02c202c1, 0x02c402c3, 0x02c602c5, 0x02c802c7, 0x02ca02c9, 0x02cc02cb, 0x02ce02cd, 0x02d002cf, 0x02d202d1, 0x02d402d3, 0x02d602d5, 0x02d802d7, 0x02da02d9, 0x02dc02db, 0x02de02dd, 0x02e002df, 0x02e202e1, 0x02e402e3, 0x02e602e5, 0x02e802e7, 0x02ea02e9, 0x02ec02eb, 0x02ee02ed, 0x02f002ef, 0x02f202f1, 0x02f402f3, 0x02f602f5, 0x02f802f7, 0x02fa02f9, 0x02fc02fb, 0x02fe02fd, 0x030003ff, 0x03020301, 0x03040303, 0x03060305, 0x03080307, 0x030a0309, 0x030c030b, 0x030e030d, 0x0310030f, 0x03120311, 0x03140313, 0x03160315, 0x03180317, 0x031a0319, 0x031c031b, 0x031e031d, 0x0320031f, 0x03220321, 0x03240323, 0x03260325, 0x03280327, 0x032a0329, 0x032c032b, 0x032e032d, 0x0330032f, 0x03320331, 0x03340333, 0x03360335, 0x03380337, 0x033a0339, 0x033c033b, 0x033e033d, 0x0340033f, 0x03420341, 0x03440343, 0x03460345, 0x03480347, 0x034a0349, 0x034c034b, 0x034e034d, 0x0350034f, 0x03520351, 0x03540353, 0x03560355, 0x03580357, 0x035a0359, 0x035c035b, 0x035e035d, 0x0360035f, 0x03620361, 0x03640363, 0x03660365, 0x03b80067, 0x03690368, 0x036b036a, 0x036d036c, 0x036f036e, 0x00710370, 0x03720392, 0x03740373, 0x03760375, 0x03780377, 0x037a0379, 0x037c037b, 0x037e037d, 0x0380037f, 0x03820381, 0x03840383, 0x03860385, 0x03880387, 0x038a0389, 0x038c038b, 0x038e038d, 0x0390038f, 0x03920391, 0x03940393, 0x03960395, 0x03980397, 0x039a0399, 0x039c039b, 0x039e039d, 0x03a0039f, 0x03a203a1, 0x03a403a3, 0x03a603a5, 0x03a803a7, 0x03aa03a9, 0x03ac03ab, 0x03ae03ad, 0x03b003af, 0x03b203b1, 0x03b403b3, 0x03b603b5, 0x03b803b7, 0x03ba03b9, 0x03bc03bb, 0x03be03bd, 0x03c003bf, 0x03c203c1, 0x03c403c3, 0x03c603c5, 0x03c803c7, 0x03ca03c9, 0x03cc03cb, 0x03ce03cd, 0x03d003cf, 0x03d203d1, 0x03d403d3, 0x03d603d5, 0x03d803d7, 0x03da03d9, 0x03dc03db, 0x03de03dd, 0x03e003df, 0x03e203e1, 0x03e403e3, 0x03e603e5, 0x03e803e7, 0x03ea03e9, 0x03ec03eb, 0x03ee03ed, 0x03f003ef, 0x03f203f1, 0x03f403f3, 0x03f603f5, 0x03f803f7, 0x03fa03f9, 0x03fc03fb, 0x03fe03fd, 0x040004ff, 0x04020401, 0x04040403, 0x04060405, 0x04080407, 0x040a0409, 0x040c040b, 0x040e040d, 0x0410040f, 0x04120411, 0x04140413, 0x04160415, 0x04180417, 0x041a0419, 0x041c041b, 0x041e041d, 0x0420041f, 0x04220421, 0x04240423, 0x04260425, 0x04280427, 0x042a0429, 0x042c042b, 0x042e042d, 0x0430042f, 0x04320431, 0x04340433, 0x04360435, 0x04380437, 0x043a0439, 0x043c043b, 0x043e043d, 0x0440043f, 0x04420441, 0x04440443, 0x04460445, 0x04480447, 0x044a0449, 0x044c044b, 0x044e044d, 0x0450044f, 0x04520451, 0x04540453, 0x04560455, 0x04580457, 0x045a0459, 0x045c045b, 0x045e045d, 0x0460045f, 0x04620461, 0x00640463, 0x046504dd, 0x00670466, 0x04680412, 0x046a0469, 0x046c046b, 0x046e046d, 0x0470046f, 0x04720471, 0x04740473, 0x04760475, 0x04780477, 0x047a0479, 0x047c047b, 0x047e047d, 0x0480047f, 0x04820481, 0x04840483, 0x04860485, 0x04880487, 0x048a0489, 0x048c048b, 0x048e048d, 0x0490048f, 0x04920491, 0x04940493, 0x04960495, 0x04980497, 0x049a0499, 0x049c049b, 0x049e049d, 0x04a0049f, 0x04a204a1, 0x04a404a3, 0x04a604a5, 0x04a804a7, 0x04aa04a9, 0x04ac04ab, 0x04ae04ad, 0x04b004af, 0x04b204b1, 0x04b404b3, 0x04b604b5, 0x04b804b7, 0x04ba04b9, 0x04bc04bb, 0x04be04bd, 0x04c004bf, 0x04c204c1, 0x04c404c3, 0x04c604c5, 0x04c804c7, 0x04ca04c9, 0x04cc04cb, 0x04ce04cd, 0x04d004cf, 0x04d204d1, 0x04d404d3, 0x04d604d5, 0x04d804d7, 0x04da04d9, 0x06dc04db, 0x63756166, 0x74077465, 0x6c696172, 0x62087265, 0x65746361, 0x09616972, 0x22080886, 0x620a6d75, 0x742d786f, 0x75737369, 0x61681465, 0x682d646e, 0x69646c6f, 0x6d2d676e, 0x63696465, 0x840d6c61, 0x70732814, 0x6c6b7261, 0x830a7365, 0x2d73260d, 0x68736177, 0x2a0a8413, 0x656b6168, 0x746c612d, 0x826c732d, 0x890f2013, 0x2f0f8613, 0x2d646165, 0x65646973, 0x756f632d, 0x68156867, 0x35850f8d, 0x15890e20, 0x73616d24, 0x0e890f6b, 0x72697623, 0x24738275, 0x6573756f, 0x2703822d, 0x616c0c72, 0x706f7470, 0x0d82a382, 0x756c0b26, 0x2d73676e, 0x0d252384, 0x706f6570, 0x2a89826c, 0x776f7272, 0x6c700b73, 0x85656e61, 0x700c245c, 0x87706d75, 0x840920cc, 0x6f732a0c, 0x730c7061, 0x6c656968, 0x253d8564, 0x6e697304, 0x1685046b, 0x772c5e82, 0x68637461, 0x0f30322d, 0x726f7473, 0x0b20dd8a, 0xd9840f85, 0x6f74122c, 0x74656c69, 0x7061702d, 0x69857265, 0x93820b20, 0x85737221, 0x8405200b, 0x840b2095, 0x20118505, 0x270b8407, 0x76047365, 0x0c747365, 0x3b820483, 0x653e6782, 0x6c670d73, 0x2d737361, 0x7472616d, 0x05696e69, 0x6973756d, 0x65730663, 0x68637261, 0x06826805, 0x73047426, 0x04726174, 0x04315d83, 0x6d6c6966, 0x2d687408, 0x6772616c, 0x68740265, 0x2f0b8307, 0x05747369, 0x63656863, 0x6974056b, 0x0b73656d, 0x2d253b85, 0x73756c70, 0x280b860c, 0x756e696d, 0x6f700973, 0x08ac8277, 0x66666f23, 0x67697306, 0x036c616e, 0x04676f63, 0x656d6f68, 0x6f6c6305, 0x72046b63, 0x0864616f, 0x6e776f64, 0x3108826c, 0x626e6905, 0x7204786f, 0x046f6465, 0x636e7973, 0x67826c08, 0x6c612d24, 0x2b840474, 0x616c6624, 0x9e820a67, 0x6870642e, 0x73656e6f, 0x6c6f760a, 0x2d656d75, 0x0b205c82, 0x64200a86, 0x09204882, 0x752a0b86, 0x72710670, 0x65646f63, 0xd7826207, 0x03240782, 0x04676174, 0x73260382, 0x6f6f6204, 0x0483086b, 0x72616d35, 0x7270056b, 0x06746e69, 0x656d6163, 0x66046172, 0x82746e6f, 0x646c351f, 0x61746906, 0x0b63696c, 0x74786574, 0x6965682d, 0x0a746867, 0x77250b84, 0x68746469, 0x271b820a, 0x6c2d6e67, 0x0c746665, 0x63260a85, 0x65746e65, 0x0c850b72, 0x2e837220, 0x0b850d20, 0x73756a27, 0x79666974, 0x24cb8304, 0x74756f07, 0x22288264, 0x836e6906, 0x76053006, 0x6f656469, 0x616d6905, 0x6d0a6567, 0x832d7061, 0x7265248f, 0x83646106, 0x74042134, 0x04379782, 0x74696465, 0x6574730d, 0x61622d70, 0x61776b63, 0x660d6472, 0x88747361, 0x8708200d, 0x70043316, 0x0579616c, 0x73756170, 0x74730465, 0x6607706f, 0x2e83726f, 0x2e840c20, 0x49840c87, 0x052c0c86, 0x63656a65, 0x68630c74, 0x6f727665, 0x0d20cc85, 0xc1840c87, 0x6c700b2f, 0x632d7375, 0x6c637269, 0x696d0c65, 0x230c896e, 0x656d6974, 0x33821988, 0x866b6321, 0x710f2326, 0xef826575, 0x36854e82, 0x6e690b24, 0x1b866f66, 0x72630a3a, 0x6873736f, 0x73726961, 0x6e616203, 0x7272610a, 0x6c2d776f, 0x0b746665, 0x74840a85, 0x0b850820, 0x86707521, 0x6f64241f, 0x82056e77, 0x65723b35, 0x70786506, 0x08646e61, 0x706d6f63, 0x73736572, 0x63786512, 0x616d616c, 0x6e886974, 0x69670433, 0x6c047466, 0x04666165, 0x65726966, 0x65796503, 0x26038209, 0x616c732d, 0x8b146873, 0x72743c2f, 0x676e6169, 0x7005656c, 0x656e616c, 0x6c61630c, 0x61646e65, 0x6c612d72, 0x82720674, 0x6d6f2265, 0x2b678207, 0x746e656d, 0x67616d06, 0x0a74656e, 0x21071a41, 0x32417075, 0x3d9b8308, 0x74657207, 0x74656577, 0x6f68730d, 0x6e697070, 0x61632d67, 0x66067472, 0x65646c6f, 0x06850b72, 0x706f2d27, 0x63096e65, 0x23188268, 0x7261622d, 0x6d326d82, 0x2d617265, 0x72746572, 0x656b036f, 0x6f630479, 0xd7837367, 0x73236f83, 0x82747309, 0x61682e88, 0x7409666c, 0x626d7568, 0x6b636174, 0x33298206, 0x06796870, 0x6f6c7075, 0x6c056461, 0x6e6f6d65, 0x6f687005, 0x0584ba82, 0x71732d34, 0x65726175, 0x6c6e7506, 0x0b6b636f, 0x64657263, 0x89837469, 0x7203643f, 0x68037373, 0x62086464, 0x686c6c75, 0x0b6e726f, 0x74726563, 0x63696669, 0x10657461, 0x2cea8268, 0x696f702d, 0x722d746e, 0x74686769, 0x23108a0f, 0x7466656c, 0x85058b45, 0x70752120, 0xfb831d8b, 0xab411120, 0x05ea4105, 0x2f832d20, 0x118c1220, 0x128c5285, 0x8d707521, 0x08468334, 0x6c670523, 0x0665626f, 0x6e657277, 0x74056863, 0x736b7361, 0x6c696606, 0x09726574, 0x65697262, 0x73616366, 0x050d4265, 0x612d7338, 0x7505746c, 0x73726573, 0x6e696c04, 0x6c63056b, 0x0564756f, 0x33826c66, 0x75630338, 0x6f630474, 0x70097970, 0x72657061, 0x70696c63, 0x76617304, 0x1a410665, 0x62042c05, 0x07737261, 0x7473696c, 0x856c752d, 0x6c6f3507, 0x7274730d, 0x74656b69, 0x756f7268, 0x75096867, 0x7265646e, 0x65205782, 0x25088482, 0x05656c62, 0x6967616d, 0x72740563, 0x0a6b6375, 0x656e6f6d, 0x69622d79, 0x630a6c6c, 0x74657261, 0x776f642d, 0x0a85086e, 0x86707521, 0x656c2413, 0x850b7466, 0x2dfb8413, 0x6c6f6307, 0x736e6d75, 0x726f7304, 0x04830974, 0x07203684, 0x752b0984, 0x6e650870, 0x6f6c6576, 0x82046570, 0x056f2279, 0x08ad8267, 0x62046c2f, 0x07746c6f, 0x65746973, 0x0870616d, 0x72626d75, 0x616c6c65, 0x73617005, 0x6c096574, 0x74686769, 0x626c7562, 0x65737507, 0x646d2d72, 0x2315820b, 0x736f6874, 0x652bf782, 0x69757308, 0x73616374, 0x82620465, 0x63062732, 0x6566666f, 0x1c820865, 0x74697027, 0x61096c61, 0x2c38826d, 0x65636e61, 0x64656d06, 0x0b74696b, 0x824c8366, 0x656a2245, 0x23318274, 0x68087265, 0x43064542, 0x364105f7, 0x61112505, 0x656c676e, 0x7521b582, 0x41068262, 0x118b05e2, 0x0f20e684, 0x7521248c, 0x24348d70, 0x6e776f64, 0x8321850a, 0x850b203f, 0x2038840a, 0x210b8508, 0x1f867075, 0x07282a83, 0x6b736564, 0x06706f74, 0x22057947, 0x82617406, 0x06742e79, 0x69626f6d, 0x710a656c, 0x65746f75, 0x8547842d, 0x2847840a, 0x69707307, 0x72656e6e, 0x058a4206, 0x6d730522, 0x05222b82, 0x79827266, 0x6d033f08, 0x67076865, 0x70656d61, 0x6b086461, 0x6f627965, 0x0e647261, 0x67616c66, 0x6568632d, 0x72656b63, 0x74086465, 0x696d7265, 0x046c616e, 0x65646f63, 0x70657209, 0x612d796c, 0x6c0e6c6c, 0x5e44636f, 0x72612105, 0x04254b82, 0x706f7263, 0x3322830b, 0x6172622d, 0x0668636e, 0x696c6e75, 0x69046b6e, 0x0b6f666e, 0x2f0a5d44, 0x7075730b, 0x63737265, 0x74706972, 0x62757309, 0x06360985, 0x73617265, 0x700c7265, 0x6c7a7a75, 0x69702d65, 0x0a656365, 0x5483696d, 0x6e6f6824, 0x0a891065, 0x2005af44, 0x07944408, 0x6966112f, 0x652d6572, 0x6e697478, 0x73697567, 0x21e78268, 0xb9826f72, 0x44137421, 0x81430793, 0x8e14200a, 0x69722513, 0x11746867, 0x7521148e, 0x243a8f70, 0x6e776f64, 0x22d38306, 0x440a726f, 0x2d370544, 0x08746c61, 0x6c6c7562, 0x65796573, 0x6c6c650a, 0x69737069, 0x89682d73, 0x0a76240a, 0x42737372, 0x61210933, 0x0d2b4679, 0x20054042, 0x217a820c, 0x25866b63, 0x65700a23, 0x230a866e, 0x6168730c, 0x2485d582, 0x6f630728, 0x7361706d, 0x3b431173, 0x20148505, 0x2093832d, 0x22118c0f, 0x8c127075, 0x2fdc840f, 0x72756509, 0x69732d6f, 0x700a6e67, 0x646e756f, 0x0b260a84, 0x6c6c6f64, 0x0b847261, 0x75720a25, 0x84656570, 0x7908210a, 0x2a838083, 0x62757223, 0x2113866c, 0x94826f77, 0x04251382, 0x656c6966, 0x83048308, 0x730f24fb, 0x8274726f, 0x68702208, 0x20898461, 0x220f8a0d, 0x85107075, 0x826d200d, 0x050a4470, 0x108b0e20, 0x11707522, 0x6e260e84, 0x72656d75, 0x3f846369, 0x11874f85, 0x45707521, 0x732a05dc, 0x0b70752d, 0x6d756874, 0x25847362, 0x65660627, 0x656c616d, 0x34048304, 0x6e757303, 0x6f6f6d04, 0x7261076e, 0x76696863, 0x75620365, 0x0d224167, 0x66656c27, 0x6f640a74, 0x06794174, 0x68770a2f, 0x636c6565, 0x72696168, 0x72696c09, 0x24f38461, 0x6170730d, 0x26ea8263, 0x74747568, 0x440f656c, 0x87410773, 0x750a2206, 0x2a59826e, 0x74697372, 0x72670e79, 0x42756461, 0x633905f0, 0x6c087061, 0x75676e61, 0x03656761, 0x08786166, 0x6c697562, 0x676e6964, 0x2b898205, 0x7003646c, 0x63047761, 0x05656275, 0x733e0483, 0x63657207, 0x656c6379, 0x72616303, 0x78617404, 0x72740469, 0x64086565, 0x62617461, 0x53417361, 0x64702d06, 0x69660966, 0x772d656c, 0x0a64726f, 0x65250984, 0x6c656378, 0x290a840f, 0x65776f70, 0x696f7072, 0x1a85746e, 0x826d6921, 0x840c2079, 0x85fd861a, 0x75612417, 0x856f6964, 0x6976240a, 0x856f6564, 0x6f632352, 0xf1826564, 0x2d656623, 0x20a38272, 0x060f430c, 0x746f6e2c, 0x700b6863, 0x72657061, 0xcd82702d, 0x6807652c, 0x6f747369, 0x68077972, 0xcc836165, 0x6c730922, 0x72244382, 0x09682d73, 0x23058e42, 0x10746c61, 0x21410988, 0x04240806, 0x626d6f62, 0x74756606, 0x036c6f62, 0x0a797474, 0x6f6e6962, 0x616c7563, 0x70047372, 0x0967756c, 0x7377656e, 0x04286484, 0x69666977, 0x6c61630a, 0x67821d83, 0x65620a24, 0xcc436c6c, 0x74052e05, 0x68736172, 0x6579650b, 0x6f72642d, 0x82918270, 0x34ec8297, 0x7572622d, 0x620d6873, 0x68747269, 0x2d796164, 0x656b6163, 0x0529480a, 0x65726123, 0x06344861, 0x87697021, 0x696c2f14, 0x740a656e, 0x6c67676f, 0x666f2d65, 0x0a870966, 0x62076e23, 0x05824169, 0x73756229, 0x6f6c6311, 0x82646573, 0x74702d4c, 0x696e6f69, 0x730b676e, 0x656b6568, 0x69288b82, 0x63096e67, 0x2d747261, 0x7321b982, 0x3d09840f, 0x6f727261, 0x6f642d77, 0x73046e77, 0x0b706968, 0x72657375, 0x6365732d, 0x0a746572, 0xc6826f6d, 0x0b2e5784, 0x65727473, 0x762d7465, 0x09776569, 0x42826568, 0x61656237, 0x65760574, 0x0473756e, 0x7372616d, 0x72656d07, 0x79727563, 0x28e9820b, 0x6567736e, 0x7265646e, 0x240b8a0f, 0x746c612d, 0x462e840c, 0x0b20064d, 0x0b863583, 0x18850a20, 0x16851183, 0x6f236d82, 0x840d656b, 0x210b8522, 0x0d8c762d, 0x6e066828, 0x65747565, 0x69850a72, 0x73656c24, 0xb8820673, 0x72657623, 0x83c08409, 0x840a20df, 0x69742909, 0x0373656d, 0x05646562, 0x69368d82, 0x7573066e, 0x79617762, 0x7461620c, 0x79726574, 0x6c75662d, 0x0c87166c, 0x82687421, 0x712d22e4, 0x22de8275, 0x88737265, 0x61682423, 0x870f666c, 0x201d8623, 0x270f870d, 0x74706d65, 0x6f6d0d79, 0x4a496c82, 0x72653805, 0x632d6908, 0x6f737275, 0x626f0c72, 0x7463656a, 0x6f72672d, 0x860e7075, 0x6e75210c, 0x0b310e84, 0x63697473, 0x6e2d796b, 0x0565746f, 0x6e6f6c63, 0x2f528265, 0x636e616c, 0x63732d65, 0x0f656c61, 0x72756f68, 0x2505a94d, 0x72617473, 0x0f890e74, 0x0d208f83, 0x65230e89, 0x8809646e, 0x68092a0d, 0x2d646e61, 0x6b636f72, 0x2409840a, 0x65706170, 0x05c74972, 0x69637323, 0x21948273, 0x18840b73, 0x7a696c25, 0x85647261, 0x70732124, 0x0c202f82, 0x2109fc49, 0x17857265, 0x61657028, 0x74026563, 0x204b0d76, 0x6c702408, 0x880e7375, 0x696d220d, 0x230e8b6e, 0x656d6974, 0x63361d8a, 0x6b636568, 0x646e6908, 0x72747375, 0x616d0779, 0x69702d70, 0x0783096e, 0x67697325, 0x8203736e, 0x4b0b2009, 0x2d290666, 0x0c746c61, 0x73756170, 0x06cb4465, 0x74730b24, 0x0b86706f, 0x5c4b0c20, 0x61622308, 0x0c8a0f67, 0x656b732c, 0x61680774, 0x61746873, 0xc9441067, 0x6c612b06, 0x6363612d, 0x05737365, 0x7b826c62, 0x75611128, 0x2d6f6964, 0x85476564, 0x6f692305, 0x324b0c6e, 0x05284e05, 0x72620733, 0x6c6c6961, 0x73611b65, 0x74736973, 0x2d657669, 0x3407826c, 0x6e696e65, 0x79732d67, 0x6d657473, 0x6d612373, 0x63697265, 0x05264661, 0x17452d20, 0x692d2907, 0x7265746e, 0x74657270, 0x04252b82, 0x66616564, 0x88d6830d, 0x6c0a271f, 0x762d776f, 0x72827369, 0xa6500920, 0x450d2008, 0x6f28087f, 0x0c6e6570, 0x72646461, 0x2d24aa82, 0x6b6f6f62, 0x63230c88, 0x43647261, 0xc8440586, 0x69082905, 0x61622d64, 0x07656764, 0x1c830882, 0x68741031, 0x6f6d7265, 0x6574656d, 0x75662d72, 0x8b1a6c6c, 0x0dc44210, 0x68242b8c, 0x13666c61, 0xcc422b8b, 0x8b112006, 0x6d653d13, 0x06797470, 0x776f6873, 0x62047265, 0x07687461, 0x63646f70, 0x0f747361, 0x646e6977, 0x6d27d382, 0x6d697861, 0x88657a69, 0x6e69210f, 0x0e200f84, 0x29081f86, 0x74736572, 0x0965726f, 0x7263696d, 0x6968636f, 0x6e730970, 0x6c66776f, 0x0d656b61, 0x6e657475, 0x2d6c6973, 0x6f6f7073, 0x0d86086e, 0x75087322, 0x2d295882, 0x09746c61, 0x73617274, 0x24098368, 0x6e797308, 0x82128463, 0x77702e4c, 0x68637461, 0x6769730c, 0x756f2d6e, 0x20168374, 0x210c840b, 0x2b846e69, 0x64657223, 0x2008836f, 0x2b558203, 0x616d6906, 0x0a736567, 0x636e6570, 0x54826882, 0x0a820320, 0x03820720, 0x13252183, 0x676e6f6c, 0x05f3442d, 0x2d201a82, 0x6e20cf82, 0x6c24138f, 0x14746665, 0x7225278e, 0x74686769, 0x22148e11, 0x4e117075, 0x50850594, 0xae847320, 0x696c6329, 0x616f6270, 0x840c6472, 0x21148465, 0x0c8b682d, 0x89157621, 0x05e1417f, 0x15918684, 0x16208883, 0x8a842b90, 0x16901320, 0x742b8c84, 0x616e7265, 0x696c2d6c, 0x822d6b6e, 0x651822de, 0x49118b78, 0x18820658, 0x78650c28, 0x6e616863, 0x25836567, 0x6c631225, 0x8464756f, 0x6f6c2383, 0x12836461, 0x12851020, 0x83056f4e, 0x67032910, 0x6c0e6d65, 0x6c657665, 0x12832784, 0x0e850c20, 0x84707521, 0x6f6c29f6, 0x6f2d6b63, 0x0e6e6570, 0x8309ca50, 0x4a0e2018, 0x78820ad7, 0xc84b0a20, 0x4d198505, 0x0e830853, 0x96430b20, 0x6c733505, 0x08687361, 0x74726f70, 0x74696172, 0x70657205, 0x730a796c, 0x83053b53, 0x050f4c3f, 0x74233f84, 0x43686361, 0x19840604, 0x6b636924, 0x19837465, 0x73750824, 0xa2847265, 0x82069142, 0x657322cd, 0x0739500c, 0x0a201983, 0x2b07b841, 0x620d746c, 0x62657361, 0x2d6c6c61, 0x0f200483, 0x6b220d82, 0x0f887465, 0x6f620c27, 0x6e696c77, 0x261c8467, 0x65686305, 0x840c7373, 0x622d2705, 0x6f687369, 0x0c860b70, 0x72616f24, 0x0b850a64, 0x2e826b20, 0x6b252386, 0x6867696e, 0x23178674, 0x6e776170, 0x71242e86, 0x6e656575, 0x72301686, 0x086b6f6f, 0x626d7564, 0x6c6c6562, 0x6f6f660d, 0x09247c89, 0x666c6f67, 0x0b227984, 0xdd826f68, 0x702d7930, 0x096b6375, 0x64697571, 0x63746964, 0xd1410b68, 0x75663706, 0x740c6c6c, 0x656c6261, 0x6e65742d, 0x0f73696e, 0x6c6c6f76, 0xc5887965, 0xde820920, 0x67726533, 0x08736569, 0x646e6162, 0x6469612d, 0x786f6203, 0x22038205, 0x4f117365, 0xb6540866, 0x62042e07, 0x086e7275, 0x73706163, 0x73656c75, 0x08d2420f, 0x2005334d, 0x330f890e, 0x7473696c, 0x61696409, 0x736f6e67, 0x64037365, 0x6405616e, 0x79217982, 0x2705840d, 0x616c662d, 0x64656274, 0x2005c749, 0x05df556d, 0x69661022, 0x0c86a682, 0x6c612d29, 0x69660974, 0x83747372, 0x4e0c2092, 0x168307ad, 0x0c880f20, 0x6d797326, 0x0b6c6f62, 0x8306fc44, 0x6e0d251b, 0x7365746f, 0x0621ad87, 0x29dd8370, 0x69700574, 0x13736c6c, 0xea457270, 0x622d2709, 0x6c74746f, 0x13921765, 0x0a274683, 0x636f7270, 0x82756465, 0x730d2331, 0xbf516968, 0x61662f05, 0x73077473, 0x696b6f6d, 0x7307676e, 0x06827279, 0x74076529, 0x656c6261, 0x450b7374, 0x04250a27, 0x6c616976, 0x08048305, 0x7709732e, 0x68657261, 0x6573756f, 0x69657706, 0x05746867, 0x61722d78, 0x6f620879, 0x706f2d78, 0x630c6e65, 0x656d6d6f, 0x642d746e, 0x0d73746f, 0x73360c87, 0x6873616c, 0x756f6305, 0x64066863, 0x74616e6f, 0x6f640465, 0x86476576, 0x06145705, 0x21571220, 0x6568240c, 0x51747261, 0x1f8605b4, 0x73752d23, 0x20238d64, 0x21478277, 0x36830572, 0x840d7321, 0x682d2405, 0x82706c65, 0x700d2ac4, 0x63617261, 0x65747568, 0x2097822d, 0x06bf560c, 0x72616339, 0x700a7972, 0x79676769, 0x6e61622d, 0x6972066b, 0x6e6f6262, 0x826f7205, 0x73082528, 0x6c646565, 0x043f3b82, 0x6e676973, 0x696d730a, 0x772d656c, 0x046b6e69, 0x65706174, 0x7572740d, 0x6c2d6b63, 0x8264616f, 0x850c2022, 0x6f6d220d, 0x250c8276, 0x6469760b, 0xfa4a6f65, 0x820a2005, 0x2d652730, 0x73616c67, 0x97430e73, 0x86198507, 0x7473220e, 0x21fd8272, 0xae497475, 0x68632405, 0x866b6365, 0x6f6c230a, 0xcb436b63, 0x6f632305, 0x3c840967, 0x69646524, 0x09840c74, 0x69726627, 0x73646e65, 0x4c0c840d, 0x652006ba, 0x37832485, 0x6d244285, 0x73756e69, 0x6e240a85, 0x616a6e69, 0x44055647, 0x1685054e, 0x98827320, 0x64856820, 0x67617422, 0x69200886, 0x73214885, 0x2277822d, 0x49616212, 0x2d250a95, 0x7466656c, 0x27128d13, 0x68676972, 0x6c620774, 0x65258e82, 0x6f620972, 0x0508456f, 0x72620f30, 0x6364616f, 0x2d747361, 0x65776f74, 0x0f820572, 0x0a6d6f2d, 0x6c616863, 0x616f626b, 0x89126472, 0x742d230a, 0xf9826165, 0x06722008, 0x72756863, 0x63056863, 0x736e696f, 0x6d6f630c, 0x74636170, 0x7369642d, 0x72630463, 0x8305776f, 0x046e2604, 0x65636964, 0x23048309, 0x7669662d, 0x6f230987, 0x84087275, 0x6e6f2213, 0x23088565, 0x0a786973, 0x74231184, 0x86657268, 0x77742f13, 0x6f640b6f, 0x632d726f, 0x65736f6c, 0x0b840964, 0x706f2b08, 0x65066e65, 0x6c617571, 0x65660773, 0x65687461, 0x72660472, 0x6708676f, 0x702d7361, 0x07706d75, 0x73616c67, 0x0c736573, 0x1e827267, 0x2d726527, 0x6e616874, 0x200c8b12, 0x393e842d, 0x6c65680a, 0x706f6369, 0x09726574, 0x6977696b, 0x7269622d, 0x656c0964, 0x31847373, 0x09880f20, 0x06272e85, 0x6f6d656d, 0x46147972, 0x1c420d22, 0x530f2005, 0x2d250971, 0x65766177, 0x240f8e13, 0x746c612d, 0x2413850b, 0x63656863, 0x842f866b, 0x231b830b, 0x746f6e09, 0x07276585, 0x656c6170, 0x82657474, 0x722c0807, 0x676e696b, 0x7265700a, 0x746e6563, 0x0f656761, 0x6a6f7270, 0x2d746365, 0x67616964, 0x076d6172, 0x65636572, 0x05747069, 0x6f626f72, 0x75250582, 0x0e72656c, 0x29058372, 0x6d6f632d, 0x656e6962, 0x0e851064, 0x726f6825, 0x826f7a69, 0x866c2044, 0x6576371f, 0x63697472, 0x73066c61, 0x6f6f6863, 0x63730b6c, 0x64776572, 0x17826972, 0x68730b30, 0x702d656f, 0x746e6972, 0x6b730573, 0x1d826c75, 0x2a055f44, 0x6e61622d, 0x6f747305, 0x84096572, 0x27b88305, 0x72747306, 0x0b6d6165, 0x6f290682, 0x6177706f, 0x076c6566, 0x2d518274, 0x06786f62, 0x69687374, 0x77077472, 0xc8836c61, 0x07820620, 0x656c4208, 0x6e610574, 0x07797267, 0x68637261, 0x05796177, 0x616c7461, 0x77610573, 0x09647261, 0x6b636162, 0x63617073, 0x65620c65, 0x7265697a, 0x7275632d, 0x62046576, 0x05676e6f, 0x73757262, 0x75620768, 0x28748373, 0x6e616308, 0x6962616e, 0x06af5173, 0x756f6433, 0x08656c62, 0x6b636f63, 0x6c696174, 0x6e6f630e, 0x233f8263, 0x622d6567, 0x26055c54, 0x65696b6f, 0x836f630b, 0x622d2306, 0x2a827469, 0x706f7222, 0x23084983, 0x67696412, 0x6c617469, 0x6361742d, 0x72676f68, 0x05687061, 0x7a7a6964, 0x72641079, 0x69746661, 0x632d676e, 0x2505ed51, 0x75726404, 0x04830d6d, 0x74732d29, 0x706c6565, 0x420b6e61, 0x4883067d, 0x69660d24, 0x2b82656c, 0x72746e25, 0x85746361, 0x072a5a0d, 0x1b840b20, 0x70786525, 0x8574726f, 0x6d69210b, 0x68460b83, 0x6e692705, 0x63696f76, 0x24841365, 0x2d200c86, 0x20051052, 0x46138411, 0x0e200b0e, 0x73281184, 0x616e6769, 0x65727574, 0xf7484d85, 0x82042005, 0x096c211a, 0x2d260483, 0x70697264, 0xbc82660b, 0x70726526, 0x746e6972, 0x73361a82, 0x6c660768, 0x65687375, 0x72660a64, 0x2d6e776f, 0x6e65706f, 0x5a5b6711, 0x2dc6830b, 0x6f6c670c, 0x612d6562, 0x63697266, 0x0c860e61, 0x21054f4c, 0x0e860a73, 0x6169732b, 0x69726707, 0x6563616d, 0x21078204, 0x0483086e, 0x09203c83, 0x62240884, 0x0f6d6165, 0x2d260988, 0x61657773, 0x0f840b74, 0x61656825, 0x85737472, 0x7173220b, 0x20988275, 0x85178411, 0x742d210b, 0x64821e82, 0x2d24b082, 0x72617473, 0x15840a86, 0x74263385, 0x75676e6f, 0x33841265, 0x2d200b85, 0x10203a85, 0x7723128b, 0x856b6e69, 0x83098389, 0x2d702189, 0x2009ff42, 0x212a820d, 0xfe422d70, 0x5b0e2007, 0xc08309a1, 0x0e830720, 0x74657328, 0x6769680b, 0x71566c68, 0x68072805, 0x742d746f, 0x82056275, 0x6c652407, 0x826f6a05, 0x6b0425b6, 0x09737369, 0x2d200483, 0x0984ed84, 0x2d206d83, 0x0526e284, 0x6775616c, 0x05840a68, 0x0c202084, 0xac850a85, 0x2e831786, 0x756c0c2c, 0x67616767, 0x61632d65, 0x545b7472, 0x4a642009, 0x64200994, 0x06209683, 0x30056a5b, 0x64656d05, 0x6d096c61, 0x622d6865, 0x6b6e616c, 0x08098310, 0x6c6f7225, 0x676e696c, 0x6579652d, 0x6f6d0873, 0x656d756e, 0x6d0d746e, 0x6174726f, 0x65702d72, 0x656c7473, 0x8261700c, 0x832d20b3, 0x72652729, 0x73617008, 0x1e827073, 0x6570092a, 0x61662d6e, 0x0779636e, 0x6e230983, 0x4c0c6269, 0x72260683, 0x72656c75, 0x6282700d, 0x612d6529, 0x76697272, 0x850f6c61, 0x6564220d, 0x21a88270, 0x52827275, 0x280ab648, 0x64617307, 0x7972632d, 0x28078308, 0x72616574, 0x7568730b, 0x24788274, 0x6e61762d, 0x08ab4209, 0x27069047, 0x6d616562, 0x6c6f730b, 0x20089e83, 0x6c656e61, 0x61707303, 0x6c707307, 0x6863746f, 0x72707309, 0x632d7961, 0x73056e61, 0x706d6174, 0x085c5a0d, 0x6c612d25, 0x58731074, 0xca840632, 0x082cf482, 0x70727573, 0x65736972, 0x6177730a, 0x62293e82, 0x076b6f6f, 0x6d697773, 0x84bf826d, 0x28248207, 0x6f6f702d, 0x69740a6c, 0x06835f6e, 0x6974052c, 0x05646572, 0x746f6f74, 0xb1580e68, 0x822d2007, 0x68632895, 0x6365760d, 0x53726f74, 0x0e200649, 0x24051c49, 0x6e61682d, 0x20478267, 0x0918480e, 0x0d338c83, 0x2d726961, 0x73657266, 0x656e6568, 0x70610972, 0x83656c70, 0x61042a17, 0x046d6f74, 0x656e6f62, 0x2e8e830b, 0x6165722d, 0x05726564, 0x69617262, 0x5b63076e, 0x0b2005b3, 0x90510783, 0x83092006, 0x7263250b, 0x08687361, 0x73280983, 0x10656469, 0x72616863, 0x2d207283, 0x7427fe82, 0x0a6e6f69, 0x82726964, 0x25098299, 0x72640c73, 0xd2827761, 0x67796c25, 0x580b6e6f, 0x2d240574, 0x65646f63, 0x79220b82, 0xba517265, 0x6c052505, 0x73676e75, 0x3905ad57, 0x706f6373, 0x696f0765, 0x61632d6c, 0x6f70046e, 0x7306706f, 0x65706168, 0x5c820c73, 0x6f2d722f, 0x696c2d66, 0x74056566, 0x68746565, 0x2005840a, 0x2330822d, 0x68740d6e, 0x2c053a47, 0x6b73616d, 0x72740d73, 0x69666661, 0x222b8263, 0x49746867, 0x6d260649, 0x74736e6f, 0x49497265, 0x70270806, 0x756b6369, 0x64610270, 0x6b6e6104, 0x69620568, 0x0d656c62, 0x69737562, 0x7373656e, 0x6d69742d, 0x69630465, 0x4a0e7974, 0x6c24095b, 0x0f72616c, 0x73200e86, 0x2406f044, 0x6f726305, 0x2be48273, 0x6d726168, 0x61686361, 0x1261726b, 0x290c8250, 0x7865742d, 0x6f660c74, 0xec82646c, 0x6e696d24, 0xb55c7375, 0x6c702a07, 0x660d7375, 0x656e6e75, 0x084c866c, 0x6f670736, 0x61727570, 0x6168056d, 0x0561736d, 0x61686162, 0x656a0469, 0x6a0e6964, 0x6e72756f, 0x772d6c61, 0x6c6c6968, 0x616b0573, 0x06616261, 0x6e61686b, 0x6c086164, 0x37080582, 0x6b72616d, 0x69616d09, 0x75622d6c, 0x6d076b6c, 0x726f6e65, 0x6d066861, 0x7571736f, 0x6d6f0265, 0x7361700e, 0x61666174, 0x6e616972, 0x056d7369, 0x63616570, 0x6c701065, 0x2d300582, 0x772d666f, 0x6873726f, 0x70047069, 0x066c6c6f, 0x2d270483, 0x72700468, 0x830d7961, 0x6e692304, 0x69832d67, 0x71057322, 0x6e219c82, 0x0681600d, 0x2005f045, 0x2e0d860f, 0x61636f6c, 0x6e6f6974, 0x636f7305, 0x820f736b, 0x72612c76, 0x6f722d65, 0x612d746f, 0x8211746c, 0x2d72217c, 0x2d28a782, 0x73657263, 0x746e6563, 0x82052843, 0x6164307a, 0x09646976, 0x616e7973, 0x75676f67, 0x83740565, 0x820a20b8, 0x69692e05, 0x7461672d, 0x69760665, 0x61726168, 0x054e520b, 0x756d2d2e, 0x79086574, 0x792d6e69, 0x0d676e61, 0x2506134a, 0x6f68702d, 0x194a656e, 0x64240805, 0x0a646165, 0x706d6163, 0x756f7267, 0x6303646e, 0x63057461, 0x72696168, 0x6f6c630a, 0x6d2d6475, 0x096e6f6f, 0x732c0a85, 0x64086e75, 0x2d656369, 0x07303264, 0x36270885, 0x676f6403, 0x82726406, 0x0e6e378c, 0x6d757264, 0x63697473, 0x69622d6b, 0x64076574, 0x65676e75, 0xc1586e6f, 0x63470805, 0x660b7673, 0x2d747369, 0x73696172, 0x67056465, 0x74736f68, 0x6d616806, 0x0872656d, 0x756e6168, 0x6861696b, 0x7461680a, 0x7a69772d, 0x06647261, 0x696b6968, 0x6805676e, 0x6f707069, 0x726f6805, 0x680c6573, 0x8273756f, 0x6122087c, 0x6567616d, 0x79726807, 0x61696e76, 0x73616d04, 0x6f6d086b, 0x61746e75, 0x6e0d6e69, 0x6f777465, 0x44826b72, 0x64827220, 0x74746f29, 0x72077265, 0x826e6e75, 0x73062d4a, 0x6c6f7263, 0x6b73106c, 0x2d6c6c75, 0x732e0b82, 0x6e6f6273, 0x73067365, 0x65646970, 0xcf620c72, 0x7407270b, 0x74636172, 0xd94b726f, 0x6e692305, 0x4e82756a, 0x72760c24, 0x9a82632d, 0x826f6221, 0x77042504, 0x0b646e69, 0x65200482, 0x2006d34d, 0x0523410e, 0x61656d28, 0x6c616274, 0x3d410f6c, 0x20f28309, 0x064d416e, 0x6e21fd82, 0x521a8513, 0x732605d0, 0x6165682d, 0x3d867976, 0x6e757322, 0x08362d84, 0x6f6d6564, 0x74617263, 0x616c6608, 0x73752d67, 0x656d0661, 0x90826574, 0x72657025, 0x826e6f73, 0x746f2d73, 0x6f700968, 0x74732d6f, 0x076d726f, 0x62365783, 0x720a776f, 0x62757065, 0x6163696c, 0x6d73046e, 0x7410676f, 0x31826d65, 0x82746121, 0x682d25bf, 0x0f686769, 0x6c37108b, 0x7608776f, 0x2d65746f, 0x05616579, 0x65746177, 0x61620472, 0x830d7962, 0x2be98304, 0x67616972, 0x69620965, 0x7a61686f, 0x6223f283, 0x60676f6c, 0x6422099a, 0x86557961, 0x65772409, 0x820a6b65, 0x79642175, 0x6e283882, 0x61630665, 0x746f7272, 0x73271f82, 0x65722d68, 0x82736967, 0x5013205c, 0x1c8209ef, 0xe7497720, 0x75642305, 0x1c83706d, 0x08870d20, 0x69662d34, 0x65086572, 0x72656874, 0x0574656e, 0x74666967, 0xc5480c73, 0x68632205, 0x64fd8265, 0x7726062d, 0x6b736968, 0xce487965, 0x75653106, 0x65706f72, 0x6972670a, 0x696c2d70, 0x1373656e, 0x0b480a89, 0x06260808, 0x74697567, 0x680c7261, 0x74726165, 0x6f72622d, 0x0b6e656b, 0x6c6c6f68, 0x65622d79, 0x0a797272, 0x73726f68, 0x1e822d65, 0x07642808, 0x63696369, 0x0573656c, 0x6f6c6769, 0x696d066f, 0x6e657474, 0x67756d07, 0x746f682d, 0x64617209, 0x69746169, 0x880d6e6f, 0x612d3709, 0x7208746c, 0x72747365, 0x096d6f6f, 0x65746173, 0x74696c6c, 0x09880e65, 0x69642d30, 0x73076873, 0x61632d64, 0x73086472, 0x08846d69, 0x6b730722, 0x6e294882, 0x6b730667, 0x676e6969, 0x3806850d, 0x726f6e2d, 0x06636964, 0x69656c73, 0x73036867, 0x730c736d, 0x62776f6e, 0x823a826f, 0x83072025, 0x616d230c, 0x0783086e, 0x6f6c7024, 0x9c820577, 0x06656722, 0x2f05c142, 0x6f6f7405, 0x7404736c, 0x086d6172, 0x65726966, 0x052a9983, 0x6f636162, 0x6f620c6e, 0xa4506b6f, 0x620b3907, 0x64616572, 0x696c732d, 0x63066563, 0x73656568, 0x6c630e65, 0x63696e69, 0xba452187, 0x270f8707, 0x75726306, 0x07686374, 0x6531c882, 0x03657361, 0x09676765, 0x626d6168, 0x65677275, 0x05f44f72, 0x64696d26, 0x2d656c64, 0x2105984a, 0xae826808, 0x61682d24, 0x39510d74, 0x73752b08, 0x68067265, 0x6f64746f, 0x77820967, 0x82632d21, 0x0e6d2183, 0x2106e446, 0xf382656d, 0x056c6124, 0x4f826170, 0x65700a27, 0x72657070, 0x252c822d, 0x7a69700b, 0xa985617a, 0xd6820d20, 0x2d687322, 0x2006d155, 0x830d8c11, 0x05434fe8, 0x72756e29, 0x770b6573, 0x47657661, 0x062b06e9, 0x696b6962, 0x620a676e, 0x8264726f, 0x6c612354, 0x0a860b6c, 0x6e6f6e24, 0x0b860c65, 0x79747331, 0x6603656c, 0x69056e61, 0x736e6f63, 0x82687009, 0x2055831c, 0x0bd46210, 0x0b201083, 0x742c1082, 0x69762d6f, 0x0d6f6564, 0x6f6d6572, 0x66266982, 0x616d726f, 0xa65d1374, 0x05cd450e, 0x5409ba5d, 0x1420059d, 0x830fae5d, 0x5d122026, 0x12830db2, 0xb65d1520, 0x85158310, 0x09ba5d63, 0x20089184, 0x6c657073, 0x68632d6c, 0x096b6365, 0x63696f76, 0x69616d65, 0x61680a6c, 0x6f632d74, 0x796f6277, 0x210a890f, 0xb782732d, 0x6f6d052c, 0x0c657375, 0x6f636572, 0xc9826472, 0x6c796e2b, 0x72616307, 0x6e617661, 0x26008300, 0x00ffff01, 0x82010002, 0x820c200a, 0x82162003, 0x260d8303, 0x00eb0303, 0x84040002, 0x8204820d, 0x82012002, 0xda002403, 0x83d7feea, 0x24dc2b07, 0x0000a2e4, 0x24dc0000, 0xfa05aae4, 0x84e1297b, };
the_stack_data/151704522.c
#include <string.h> #include <stdio.h> #include <stdlib.h> #include <stdbool.h> /** https://projecteuler.net/problem=104 * Fibonacci sequence * the first number which first 9 digits & last digits is pandigital */ #define MAX(a, b) ((a) > (b) ? (a) : (b)) #define MIN(a, b) ((a) < (b) ? (a) : (b)) char *add(char *xs, int n, char *ys, int m, int *out_l) { int l = MAX(n, m); int nm = MIN(n, m); char *zs = malloc(sizeof(char) * (l + 1)); int i, c; for (i = c = 0; i < nm; i++) { c += xs[i] + ys[i], zs[i] = c % 10, c /= 10; } for (; i < n; i++) { c += xs[i], zs[i] = c % 10, c /= 10; } for (; i < m; i++) { c += ys[i], zs[i] = c % 10, c /= 10; } zs[i] = c; *out_l = c == 0 ? l : l + 1; return zs; } void show(char *xs, int n) { for (int i = 0; i != n; i++) { printf("%d", xs[i]); } printf("\n"); } #define DIGIT_N 9 bool isPand(char *xs, int len) { if (len < DIGIT_N) { return false; } // show(xs, len); char d[DIGIT_N + 1]; memset(d, 0, DIGIT_N + 1); int i; for (i = 0; i != DIGIT_N; i++) { int idx = xs[i]; d[idx]++; if (d[idx] > 1 || d[0] == 1) { return false; } } // show(d, DIGIT_N); return true; // Pand is [1..9], without 0 } int main() { char *f0 = malloc(sizeof(char) * 1), *f1 = malloc(sizeof(char) * 1); char *f2 = NULL; int n0 = 1, n1 = 1, n2; f0[0] = 1, f1[0] = 1; int i; for (i = 0; i != 3000; i++) { f2 = add(f0, n0, f1, n1, &n2); // printf("%d ", i + 3), show(f2, n2); bool cond1 = isPand(f2, n2); bool cond2 = false; if (n2 >= 9) { cond2 = isPand(f2 + n2 - 9, 9); } if (cond1 && cond2) { printf("%d ", i + 3), show(f2, n2); break; } free(f0), f0 = f1, f1 = f2, n0 = n1, n1 = n2, f2 = NULL; } /** ans: 329468, cost 59s */ free(f0), free(f1); if (f2) { free(f2); } return 0; }
the_stack_data/7951210.c
#include <stdio.h> #include <stdlib.h> #include <string.h> int main() { int size = 256 * 1024 * 1024; int *a = NULL; a = (int *)malloc(size); if (a == NULL) { return 1; } else { memset(a, 1, size); free(a); return 0; } }
the_stack_data/15761845.c
//Count set bits in an integer #include<stdio.h> int main(){ int n,num; printf("Enter n:"); scanf("%d",&num); n=num; int count=0; while(n){ if(n&1){ count++; } n=n>>1; } printf("Number of bits set in %d are:%d",num,count); }
the_stack_data/1239664.c
/******************************* ASA - Grupo 3 ********************************* ** António Sarmento - 77906 ** Marta Simões - 81947 *******************************************************************************/ /* C Libraries. Only the bare minimum, no need for clutter */ #include <stdio.h> #include <stdlib.h> /*************************** Auxiliary functions ******************************/ #define get_number(a) scanf("%d", a) #define get_numbers(a, b) scanf("%d %d", a, b) #define max(a, b) (a < b ? b : a) #define min(a, b) (a > b ? b : a) /******************** Data structures and their "methods" *********************/ /* Fake boolean */ typedef unsigned char bool; #define false 0 #define true 1 /* Vertex Structure */ typedef int Vertex; #define vertex_new(a) a #define vertex_next(a) a + 1 #define vertex_root(a) 1 #define vertex_end(GRAPH, a) a <= GRAPH->nr_vertices int cmp_vertex(const void *a, const void *b) { return ( *(const Vertex*)a - *(const Vertex*)b ); } /* Edge Structure */ typedef int Edge; /* Stack structure */ typedef struct stack { size_t idx; Vertex *data; /* data[idx] = Vertex */ bool *in_stack; /* in_stack[Vertex] = boolean */ } Stack; void stack_new(Stack *st, size_t size) { st->idx = 0; st->data = malloc(size* sizeof(st->data)); st->in_stack = calloc(size, sizeof(st->in_stack)); } void stack_push(Stack *st, Vertex u) { st->data[++st->idx] = u; st->in_stack[u] = 1; } int stack_pop(Stack *st) { Vertex u = st->data[st->idx--]; st->in_stack[u] = 0; return u; } int stack_contains(Stack *st, Vertex u) { return st->in_stack[u]; } int stack_is_empty(Stack *st) { return st->idx == 0; } void stack_destroy(Stack *st) { free(st->data); st->data = NULL; free(st->in_stack); st->in_stack = NULL; } /* Graph Structure */ typedef struct graph { /* Core graph data */ int nr_vertices; int nr_edges; /* Graph composition, represented as an Edge array */ Edge *first; /* first[Vertex] = Edge */ Vertex *vertex; /* vertex[Edge] = Vertex */ Edge *next; /* next[Edge] = Edge */ } Graph; /* Connects two Vertices */ void graph_connect(Graph *g, Vertex u, Vertex v) { g->nr_edges++; g->vertex[g->nr_edges] = v; if (g->first[u] == 0) { g->first[u] = g->nr_edges; } else { Edge adj; for (adj = g->first[u]; g->next[adj] != 0 && g->vertex[adj] != v; adj = g->next[adj]); /* if Vertex v is already in here, stop everything */ if (g->vertex[adj] == v) { g->vertex[g->nr_edges--] = 0; return; } g->next[adj] = g->nr_edges; } } /* Creates a new Graph */ void graph_new(Graph *g, int num_v, int num_e) { g->nr_vertices = num_v; g->nr_edges = 0; g->first = calloc((num_v+1), sizeof(g->first)); g->vertex = calloc((num_e+1), sizeof(g->vertex)); g->next = calloc((num_e+1), sizeof(g->next)); } /* Initializes Graph with input data */ void graph_init(Graph *g, int num_e) { while (num_e-- > 0) { int num1, num2; Vertex u, v; /* Grab two numbers from input & convert them to Vertex */ get_numbers(&num1, &num2); u = vertex_new(num1); v = vertex_new(num2); /* Connect them to the graph */ graph_connect(g, u, v); } } void graph_destroy(Graph *g) { free(g->first); g->first = NULL; free(g->vertex); g->vertex = NULL; free(g->next); g->next = NULL; } void graph_sort(Graph *g) { int idx = 0; Vertex u; Vertex *temp = calloc(g->nr_vertices, sizeof(*temp)); for (u = vertex_root(); idx < g->nr_edges; u = vertex_next(u)) { size_t count = 0; Edge adj; /* Retrieving adjacency list */ for (adj = g->first[u]; adj != 0; adj = g->next[adj]) { temp[count++] = g->vertex[adj]; } /* Sorting */ qsort(temp, count, sizeof(Vertex), cmp_vertex); /* Putting adjacency list back */ count = 0; for (adj = g->first[u]; adj != 0; adj = g->next[adj]) { g->vertex[adj] = temp[count++]; } idx += count; } free(temp); } void graph_print(Graph *g) { int idx = 0; Vertex u; printf("%d\n%d\n", g->nr_vertices, g->nr_edges); for (u = vertex_root(); idx < g->nr_edges; u = vertex_next(u)) { Edge adj; for (adj = g->first[u]; adj != 0; adj = g->next[adj]) { Vertex v = g->vertex[adj]; printf("%d %d\n", u, v); idx++; } } } /****************** Finding Strongly Connected Components *********************/ /* Apply Tarjan's algorithm to find SCCs */ void graph_SCC_find_aux( Graph *g, Graph *scc, Vertex *head, Stack *st, Stack *st_temp, Vertex u, int *disc, int *low, int *disc_time ) { Edge adj; disc[u] = low[u] = ++(*disc_time); stack_push(st, u); for (adj = g->first[u]; adj != 0; adj = g->next[adj]) { Vertex v = g->vertex[adj]; /* If v is not visited yet, recur for it */ if (disc[v] == 0) { graph_SCC_find_aux(g, scc, head, st, st_temp, v, disc, low, disc_time); low[u] = min(low[u], low[v]); } /* Update low value of 'u' only if 'v' is still in stack */ else if (stack_contains(st, v)) { low[u] = min(low[u], disc[v]); } } /* head node found; so it's an SCC. Popping stack until we reach head node. */ if (low[u] == disc[u]) { Vertex v, root = u; scc->nr_vertices++; stack_push(st_temp, u); while ((v = stack_pop(st)) != u) { root = min(root, v); stack_push(st_temp, v); } head[u] = root; while ((v = stack_pop(st_temp)) != u) { head[v] = root; } } } void graph_SCC_find(Graph *g, Graph *scc) { int *disc = calloc(g->nr_vertices+1, sizeof(*disc)); int *low = calloc(g->nr_vertices+1, sizeof(*low)); Vertex *head = calloc(g->nr_vertices+1, sizeof(*head)); int disc_time = 0; Vertex u; Stack st, st_temp; /* Initializing data */ stack_new(&st, g->nr_vertices); stack_new(&st_temp, g->nr_vertices); scc->nr_vertices = 0; /* Performing first DFS with Tarjan */ for (u = vertex_root(); vertex_end(g, u); u = vertex_next(u)) { if (disc[u] == 0) { graph_SCC_find_aux(g, scc, head, &st, &st_temp, u, disc, low, &disc_time); } } /* Scouring through Graph for SCC connections */ for (u = vertex_root(); vertex_end(g, u); u = vertex_next(u)) { Edge adj; for (adj = g->first[u]; adj != 0; adj = g->next[adj]) { Vertex v = g->vertex[adj]; /* Found connection between SCCs */ if (head[u] != head[v]) { graph_connect(scc, head[u], head[v]); } } } /* Freeing data */ stack_destroy(&st); stack_destroy(&st_temp); free(disc); free(low); free(head); } /***************************** MAIN function **********************************/ int main(void) { int num_v, num_e; Graph g, scc; /* Grabbing input */ get_number(&num_v); /* Grabbing number of vertices */ get_number(&num_e); /* Grabbing number of edges */ /* Instancing graphs */ graph_new(&g, num_v, num_e); graph_new(&scc, num_v, num_e); graph_init(&g, num_e); /* Initializing Graph from input */ /* Apply this project's magic */ graph_SCC_find(&g, &scc); graph_sort(&scc); graph_print(&scc); /* Freeing data */ graph_destroy(&scc); graph_destroy(&g); return 0; }
the_stack_data/136198.c
#include <stdio.h> int main() { int sum = 0, a = 3036 % 7, num[4]; // printf("%d\n",a); FILE *fp = fopen("finalinput.txt", "w"); //creating a file name input.txt in write mode fprintf(fp, "% s\n", "Good Morning"); //print Good Morning and a new line in input.txt for (int i = 0; i < 5; i++) { num[i] = 2 * i + a; //in num array sending value for 5 time and each time with different value as num[0]=5 //num[1]= 7 //num[2]= 9 //num[3]= 11 //num[4]= 13 } for (int i = 0; i < 4; i++) { sum += num[i]; //sum = sum+num[0] //sum =0+5=5 //sum = 5+7=12 //sum = 12+9=21 //sum = 21+11=32 fprintf(fp, "% d\n", num[i]); //printing sum value in input.txt file } fprintf(fp, "% d", sum); //printing the sum value after calculating the array num values for 4 time sum =32 fclose(fp); //closing file return 0; }
the_stack_data/36075195.c
// // Book: Programming in C, Prog. 2.1, p.111 // #include <stdio.h> int main (void) { printf ("Programming is fun.\n"); return 0; }
the_stack_data/14201401.c
//////////////////////////////////////////////////////////////////////////////// // Author: Christian Jungreuthmayer // Email: [email protected] // Company: Austrian Centre of Industrial Biotechnology (ACIB) // Web: http://www.acib.at // Copyright (C) 2012, 2013 // Published unter GNU Public License V3 (http://www.gnu.org/licenses/gpl.html) //////////////////////////////////////////////////////////////////////////////// // Basic Permissions. // // All rights granted under this License are granted for the term of copyright // on the Program, and are irrevocable provided the stated conditions are met. // This License explicitly affirms your unlimited permission to run the // unmodified Program. The output from running a covered work is covered by // this License only if the output, given its content, constitutes a covered // work. This License acknowledges your rights of fair use or other equivalent, // as provided by copyright law. // // You may make, run and propagate covered works that you do not convey, without // conditions so long as your license otherwise remains in force. You may convey // covered works to others for the sole purpose of having them make modifications // exclusively for you, or provide you with facilities for running those works, // provided that you comply with the terms of this License in conveying all // material for which you do not control copyright. Those thus making or running // the covered works for you must do so exclusively on your behalf, under your // direction and control, on terms that prohibit them from making any copies of // your copyrighted material outside their relationship with you. // // Disclaimer of Warranty. // // THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE // LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR // OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, // EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. // SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY // SERVICING, REPAIR OR CORRECTION. // // Limitation of Liability. // // IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL // ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE // PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, // SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR // INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR // DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR // A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH // HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. //////////////////////////////////////////////////////////////////////////////// #include <stdio.h> #include <stdlib.h> #include <sys/file.h> #include <sys/time.h> #include <errno.h> #include <string.h> #include <unistd.h> #include <math.h> #define VERSION "1.0" #define YEARS "2012, 2013" #define AUTHORS "Christian Jungreuthmayer" #define COMPANY "Austrian Centre of Industrial Biotechnology (ACIB)" #define CONSIDERED_ZERO 1.0e-07 #define LINE_BUFFER_INCREMENT 2048 //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// char **g_reactions; unsigned long long int *g_modes_bin; unsigned int g_num_reactions = 0; int g_len_elem_reac_name = 0; FILE *g_fho; long int g_num_modes = 0; int g_output_format = 0; unsigned int g_num_unit_size = 0; char *o_filename = NULL; char *r_filename = NULL; char *m_filename = NULL; //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// void usage(char *); int get_next_reaction(char **str_start_inout, char *reac); FILE* open_outputfile(char *filename); void readin_reactions_file(char *filename); void read_efm_file(char *filename); void print_modes(); void handle_arguments(int largc, char **largv, char **lm_filename, char **lr_filename, char **lo_filename); void allocate_misc_mem(); char *get_line(FILE * f, char *filename); //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// int main(int argc, char **argv) { printf("program '%s' started.\n",argv[0]); //////////////////////////////////////////////////////////////////////////// // deal with input arguments //////////////////////////////////////////////////////////////////////////// handle_arguments(argc, argv, &m_filename, &r_filename, &o_filename); //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// // open output file handle -> this is done here in order to avoid aborting // the execution after reading all the modes because of an invalid output // file name //////////////////////////////////////////////////////////////////////////// g_fho = open_outputfile(o_filename); //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// readin_reactions_file(r_filename); //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// // read in file containing modes //////////////////////////////////////////////////////////////////////////// read_efm_file(m_filename); //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// // write sorted modes to file //////////////////////////////////////////////////////////////////////////// printf("INFO: going to write converted modes back to file '%s'\n",o_filename); fflush(g_fho); print_modes(); //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// // clean up //////////////////////////////////////////////////////////////////////////// fclose(g_fho); //////////////////////////////////////////////////////////////////////////// printf("program '%s' stopped.\n",argv[0]); return(0); } //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// void do_frees() { int i; free(g_modes_bin); for( i = 0; i < g_num_reactions; i++ ) { free(g_reactions[i]); } free(g_reactions); } //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// void print_modes() { long int r; struct timeval t_start_time; struct timeval t_stop_time; unsigned long long int t_diff_time_usec = 0; gettimeofday(&t_start_time,NULL); fwrite(&g_num_modes, 1, sizeof(g_num_modes), g_fho); fwrite(&g_num_reactions, 1, sizeof(g_num_reactions), g_fho); printf("INFO: print_modes(): going to write %lu modes\n",g_num_modes); for( r = 0; r < g_num_modes; r++ ) { fwrite(&g_modes_bin[r*g_num_unit_size], g_num_unit_size, sizeof(unsigned long long int), g_fho); if( (r+1)%10000 == 0 ) { gettimeofday(&t_stop_time,NULL); t_diff_time_usec = (t_stop_time.tv_sec - t_start_time.tv_sec)*1000000 + (t_stop_time.tv_usec - t_start_time.tv_usec); printf("wrote line %ld of %ld = %ld%% runtime=%llus exp. total runtime=%llus still to go=%llus\n", r,g_num_modes,100*r/g_num_modes,t_diff_time_usec/1000000,t_diff_time_usec/1000000*g_num_modes/r, t_diff_time_usec/1000000*(g_num_modes-r)/r); } } } //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// void read_efm_file(char *filename) { int r; long int l_read; FILE *mode_stream; long int num_bytes; int ret; char *mode_line; char *str_start; struct timeval t_start_time; struct timeval t_stop_time; unsigned long long int t_diff_time_usec = 0; double val; unsigned long long int tmp_unit = 1; int bit_cnt = 0; unsigned long int unit_cnt = 0; g_num_unit_size = ceil(((float)g_num_reactions)/(8*sizeof(unsigned long long int))); num_bytes = g_num_modes*g_num_unit_size*sizeof(unsigned long long int); printf("INFO: g_num_unit_size=%u\n",g_num_unit_size); printf("DEBUG: going to allocate %ld bytes = %ld Megabytes = %ld Gigabytes\n",num_bytes,num_bytes/1024/1024,num_bytes/1024/1024/1024); g_modes_bin = (unsigned long long int *) calloc((size_t) (g_num_modes*g_num_unit_size), sizeof(unsigned long long int)); if( g_modes_bin == NULL ) { printf("FATAL ERROR: couldn't allocate memory for mode values\n"); printf(" execution aborted.\n"); exit(EXIT_FAILURE); } printf("DEBUG: going to open file '%s'\n",filename); if( (mode_stream = fopen(filename,"r")) == (FILE *)0 ) { printf("FATAL ERROR: open file '%s' for reading failed: %s\n",filename,strerror(errno)); exit(EXIT_FAILURE); } gettimeofday(&t_start_time,NULL); l_read = 0; while( l_read < g_num_modes && (mode_line = get_line(mode_stream,filename)) != NULL ) { // printf("DEBUG: line read: %ld\n",l_read); str_start = mode_line; l_read++; tmp_unit = 1; bit_cnt = 0; for( r = 0; r < g_num_reactions; r++ ) { // get rid of leading space and tabulator characters while( str_start[0] == 9 || str_start[0] == 32 ) { str_start++; } ret = sscanf(str_start,"%le",&val); if( ret != 1 || ret == EOF) { printf("FATAL ERROR: couldn't read carbon flux value #%d in line %ld: rest of line '%s': %s\n",r,l_read,str_start,strerror(errno)); printf(" execution aborted.\n"); exit(EXIT_FAILURE); } // printf("val(r=%d)=%le ",r,val); // move forward to next white space character while( str_start[0] != 9 && str_start[0] != 32 && str_start[0] != 0 ) { str_start++; } if( fabs(val) > CONSIDERED_ZERO ) { if( unit_cnt >= g_num_unit_size*g_num_modes ) { printf("FATAL ERROR: number of stored flux value (%lu) exceeds number of expected flux values (%lu)\n",unit_cnt,g_num_unit_size*g_num_modes); printf(" unit_cnt=%lu bit_cnt=%d val=%f r=%d g_num_unit_size=%d g_num_modes=%lu\n",unit_cnt,bit_cnt,val,r,g_num_unit_size,g_num_modes); exit(EXIT_FAILURE); } g_modes_bin[unit_cnt] |= tmp_unit; } tmp_unit <<= 1; bit_cnt++; if( bit_cnt%(8*sizeof(unsigned long long)) == 0 ) { unit_cnt++; bit_cnt = 0; tmp_unit = 1; } } unit_cnt = l_read*g_num_unit_size; // printf("\n"); if( l_read%10000 == 0 ) { gettimeofday(&t_stop_time,NULL); t_diff_time_usec = (t_stop_time.tv_sec - t_start_time.tv_sec)*1000000 + (t_stop_time.tv_usec - t_start_time.tv_usec); printf("processed line %ld of %ld = %ld%% runtime=%llus exp. total runtime=%llus still to go=%llus\n", l_read,g_num_modes,100*l_read/g_num_modes,t_diff_time_usec/1000000,t_diff_time_usec/1000000*g_num_modes/l_read, t_diff_time_usec/1000000*(g_num_modes-l_read)/l_read); } free(mode_line); } if( l_read != g_num_modes ) { printf("ERROR: number of lines read (%ld) is not equal to number of modes (%ld)\n",l_read,g_num_modes); printf(" execution aborted.\n"); exit(EXIT_FAILURE); } printf("INFO: number of loaded modes: %ld\n",g_num_modes); fclose(mode_stream); } //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// FILE* open_outputfile(char *filename) { FILE *fh; printf("INFO: open_outputfile(): going to open output file '%s'\n",filename); fh = fopen(filename, "we"); if( fh == (FILE *)0 ) { printf("FATAL ERROR: open_outputfile(): couldn't open file '%s' for writing: %s\n",filename,strerror(errno)); printf(" execution aborted.\n"); exit(EXIT_FAILURE); } return(fh); } //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// void usage(char *message) { printf("%s",message); printf("usage: convert_text_to_bin -m in_modes.txt -o out_modes.bin -n number_of_modes -r rfile\n"); exit(EXIT_FAILURE); } //////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// int get_next_reaction(char **str_start_inout, char *reac) { char *str_dblquote_start; char *str_dblquote_stop; char *str_start; str_start = *str_start_inout; str_dblquote_start = strstr(str_start,"\""); if( str_dblquote_start == NULL ) { // it seems there are no reactions left return(-1); } str_dblquote_stop = strstr(str_dblquote_start + 1,"\""); if( str_dblquote_stop == NULL ) { printf("FATAL ERROR: invalid syntax in reaction file: missing double quote\n"); exit(EXIT_FAILURE); } if( str_dblquote_stop == str_dblquote_start + 1 ) { printf("FATAL ERROR: invalid syntax in reaction file: reaction name with length 0\n"); exit(EXIT_FAILURE); } //if( ((str_dblquote_stop - 1) - (str_dblquote_start + 1) + 1) > MAX_LEN_REACTION_NAME ) //{ // printf("FATAL ERROR: invalid syntax in reaction file: reaction name is too long: ...'%s'\n",str_dblquote_start + 1); // exit(EXIT_FAILURE); //} strncpy(reac, str_dblquote_start + 1, str_dblquote_stop - str_dblquote_start - 1); reac[str_dblquote_stop - str_dblquote_start -1] = '\0'; *str_start_inout = str_dblquote_stop + 1; return(0); } /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// void handle_arguments(int largc, char **largv, char **lm_filename, char **lr_filename, char **lo_filename) { int r_opt; int i; char *num_modes = NULL; char *endpointer; printf("convert_text_to_bin Version: %s\n",VERSION); printf("Copyright (C) %s %s %s\n",YEARS, AUTHORS, COMPANY); printf("Executed command: %s\n",largv[0]); printf("Options:"); for(i = 1; i < largc; i++ ) { printf(" %s",largv[i]); } printf("\n"); while(( r_opt = getopt(largc, largv, "hm:r:o:n:")) != -1 ) { switch(r_opt) { case 'h': usage(""); break; case 'm': *lm_filename = optarg; break; case 'r': *lr_filename = optarg; break; case 'o': *lo_filename = optarg; break; case 'n': num_modes = optarg; break; case '?': usage("ERROR: invalid arguments\n"); break; default: usage("ERROR: invalid arguments\n"); } } //////////////////////////////////////////////////////////////////////////// // file names //////////////////////////////////////////////////////////////////////////// if( *lm_filename == NULL ) { usage("ERROR: name of file containing modes (in text form) not provided\n"); } if( *lr_filename == NULL ) { usage("ERROR: name of file containing reaction names not provided\n"); } if( num_modes == NULL ) { usage("ERROR: number of modes not defined\n"); } //////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// // number of 'good' efms //////////////////////////////////////////////////////////////////////////// g_num_modes = strtol(num_modes, &endpointer, 10); if( endpointer == num_modes || errno == EINVAL || errno == ERANGE ) { printf("FATAL ERROR: error while converting number of modes (-n %s)\n",num_modes); printf(" execution aborted.\n"); exit(EXIT_FAILURE); } printf("INFO: number of expected modes: %ld\n",g_num_modes); //////////////////////////////////////////////////////////////////////////// return; } ////////////////////////////////////////////////////// ////////////////////////////////////////////////////// ////////////////////////////////////////////////////// void readin_reactions_file(char *filename) { FILE *reac_stream; char *line = NULL; char *str_start = NULL; char *reac; int num_reacs = 0; int max_len_reaction_name = 0; str_start = line; /////////////////////////////////////////////////// // open file for reading // /////////////////////////////////////////////////// printf("DEBUG: going to open file '%s' ...\n",filename); if( (reac_stream = fopen(filename,"r")) == (FILE *)0 ) { printf("FATAL ERROR: open file '%s' for reading failed: %s\n",filename,strerror(errno)); exit(EXIT_FAILURE); } line = get_line(reac_stream,filename); str_start = line; if( (reac = (char *) malloc( (size_t) (sizeof(char)*(strlen(line)+1)))) == NULL ) { printf("FATAL ERROR: readin_reactions_file(): couldn't allocate memory for reac container\n"); exit(EXIT_FAILURE); } // determine number of reactions // maximum length of reaction name while( get_next_reaction(&str_start,reac) >= 0 ) { num_reacs++; // printf("DEBUG: Analyzing reaction '%s', length: %d\n",reac,(int)strlen(reac)); if( (int)strlen(reac) > max_len_reaction_name ) { max_len_reaction_name = (int)strlen(reac); } } g_num_reactions = num_reacs; g_len_elem_reac_name = max_len_reaction_name + 1; printf("DEBUG: readin_reactions_file(): g_num_reactions=%u\n",g_num_reactions); printf("INFO: found %d reactions in reaction file '%s'\n",num_reacs,filename); printf("INFO: maximum length of reaction name: %d\n",max_len_reaction_name); allocate_misc_mem(); str_start = line; num_reacs = 0; while( get_next_reaction(&str_start,reac) >= 0 ) { printf("DEBUG: found reaction number %d: %s\n",num_reacs,reac); if( num_reacs >= g_num_reactions ) { printf("FATAL ERROR: Race condition occurred? Has reaction file '%s' changed during read process?\n",filename); printf(" Number of reactions found in reactions is different to previous read process!\n"); exit(EXIT_FAILURE); } strcpy(g_reactions[num_reacs],reac); num_reacs++; } fclose(reac_stream); free(line); free(reac); printf("DEBUG: finished processing file '%s'.\n",filename); return; } ////////////////////////////////////////////////////// ////////////////////////////////////////////////////// // Code from http://sucs.org/Knowledge/Help/Program%20Advisory/Reading%20an%20arbitrarily%20long%20line%20in%20C ////////////////////////////////////////////////////// char *get_line(FILE * f, char *filename) { size_t size = 0; size_t len = 0; size_t last = 0; char * buf = NULL; // printf("DEBUG: entered get_line()\n"); do { size += LINE_BUFFER_INCREMENT; buf = realloc(buf,size); if( buf == NULL ) { printf("FATAL ERROR: get_line: couldn't allocate %lu butes for buf\n",size); exit(EXIT_FAILURE); } if( fgets(buf+len,LINE_BUFFER_INCREMENT,f) == (char *)0 ) { printf("FATAL ERROR: get_line failed to read line from file '%s': %s\n",filename,strerror(errno)); exit(EXIT_FAILURE); } len = strlen(buf); last = len - 1; } while (!feof(f) && buf[last]!='\n'); // printf("DEBUG: leaving get_line(): read '%s'\n",buf); return buf; } ////////////////////////////////////////////////////// ////////////////////////////////////////////////////// ////////////////////////////////////////////////////// void allocate_misc_mem() { int i; g_reactions = (char **) malloc((size_t) sizeof(char *)*g_num_reactions); if( g_reactions == NULL ) { printf("FATAL ERROR: allocate_misc_mem(): couldn't allocate %lu bytes for g_reactions\n",sizeof(char *)*g_num_reactions); exit(EXIT_FAILURE); } for( i = 0; i < g_num_reactions; i++ ) { g_reactions[i] = (char *) malloc((size_t) sizeof(char)*g_len_elem_reac_name); if( g_reactions[i] == NULL ) { printf("FATAL ERROR: allocate_misc_mem(): couldn't allocate %lu bytes for g_reactions[%d]\n",sizeof(char)*g_len_elem_reac_name,i); exit(EXIT_FAILURE); } } } //////////////////////////////////////////////////////
the_stack_data/110556.c
/* PR target/79197 */ unsigned long b; unsigned long foo (float *a, float *x) { __builtin_memcpy (a, x, sizeof (float)); return *a; }
the_stack_data/100139852.c
// Modifies the volume of an audio file #include <stdint.h> #include <stdio.h> #include <stdlib.h> // Number of bytes in .wav header const int HEADER_SIZE = 44; typedef uint8_t BYTE; typedef int16_t SAMPLE_AUDIO; int main(int argc, char *argv[]) { // Check command-line arguments if (argc != 4) { printf("Usage: ./volume input.wav output.wav factor\n"); return 1; } // Open files and determine scaling factor FILE *input = fopen(argv[1], "r"); if (input == NULL) { printf("Could not open file.\n"); return 1; } FILE *output = fopen(argv[2], "w"); if (output == NULL) { printf("Could not open file.\n"); return 1; } float factor = atof(argv[3]); BYTE headerBuffer[HEADER_SIZE]; // TODO: Copy header from input file to output file fread(headerBuffer, sizeof(BYTE), HEADER_SIZE, input); fwrite(headerBuffer, sizeof(BYTE), HEADER_SIZE, output); // TODO: Read samples from input file and write updated data to output file SAMPLE_AUDIO buffer; while (fread(&buffer, sizeof(SAMPLE_AUDIO), 1, input) == 1) { buffer = buffer * factor; fwrite(&buffer, sizeof(SAMPLE_AUDIO), 1, output); } // Close files fclose(input); fclose(output); }
the_stack_data/137210.c
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> //#include "my_functions.h" //#include "my_structures.h" ////#include "my_macros.h" // path //#include "my_headers\my_macros.h" ////#include "D:\git-repo\TBC\Chapter16\06_Include\my_headers\my_macros.h" extern int status; int main() { return 0; }
the_stack_data/499187.c
//Classification: p/ZD/aS/A(v,c)/rc/rp //Written by: Sergey Pomelov int recursion(int argr) { if (argr > 1) { return (argr); } argr++; return (recursion(argr)); } int main(void) { int a = 1,b; a = 0; while ((a < 4)) { a++; b = 1 / (recursion(a)) ; } return 0; }
the_stack_data/478749.c
const char* __my_module__my_sub(void) { return "INFO:symbol[__my_module__my_sub]"; }
the_stack_data/103264532.c
void test() {}
the_stack_data/350704.c
#define STB_TRUETYPE_IMPLEMENTATION
the_stack_data/14200789.c
// File: 9.10.c // Author: iBug #include <stdio.h> #include <stdlib.h> typedef struct _Node { struct _Node *prev; struct _Node *next; int number; int score; } Node; void inputChain(Node **phead, const char* name){ Node *s, *t; int number, score; printf("Enter chain %s: ", name); while (1){ // Enter -1 for number to stop scanf("%d", &number); if (number == -1) break; scanf("%d", &score); t = malloc(sizeof *t); t->next = NULL; t->number = number; t->score = score; if (*phead == NULL){ *phead = t; t->prev = NULL; } else { s->next = t; t->prev = s; } s = t; } } void sortChain(Node **phead){ Node *p, *s, *m, *head = *phead; *phead = s = NULL; while (head != NULL){ m = head; for (p = head; p != NULL; p = p->next) if (p->score < m->score) m = p; // Remove m from chain if (m->prev == NULL){ head = m->next; if (head != NULL) head->prev = NULL; } else { m->prev->next = m->next; } if (m->next != NULL) m->next->prev = m->prev; // Insert into new chain if (*phead == NULL){ *phead = m; } m->prev = s; m->next = NULL; if (s != NULL) s->next = m; s = m; // 's' is last node } } int main(){ Node *a = NULL, *b = NULL, *s, *t; inputChain(&a, "A"); inputChain(&b, "B"); // Merge B to A for (t = a; t->next != NULL; t = t->next); t->next = b; b->prev = t; b = NULL; sortChain(&a); for (t = a; t != NULL; t = t->next) printf("Number:%10d\tScore:%6d\n", t->number, t->score); for (t = a; t != NULL;){ s = t->next; free(t); t = s; } // It's always a good practice to set to NULL a = NULL; return 0; }
the_stack_data/248579610.c
// Load the OpenMP functions library #include<omp.h> int main() { // Set variables int num_threads=0, tnum=0, i=0, total=0; // Create parallel block //#pragma omp parallel // { //Create a section block //#pragma omp sections private(tnum, i) nowait // { // Ask an available thread to print out the thread number. //#pragma omp section // { tnum = omp_get_thread_num(); printf("I am thread number %d\n", tnum); // } // Ask another section to add up the thread numbers //#pragma omp section // { num_threads = omp_get_num_threads(); tnum = omp_get_thread_num(); total = 0; for (i=1; i<=num_threads; i++) total = total + i; printf("thread number %d says total = %d\n", tnum, total); // } // Close the section block. Normally this sets a barrier that requires all // the threads to have completed processing by this point, but we've // bypassed it with the "nowait" argument. // } // Print out the fact that the section block has finished. How many threads // are still functional at this point? printf("Finished sections block\n"); // We only want one thread to operate here. //#pragma omp single // { tnum = omp_get_thread_num(); printf("Single thread = %d\n", tnum); // } // End parallel block // } return 0; }
the_stack_data/716228.c
#include <stdio.h> int main() { int contador; for (contador = 20; contador <= 50; contador ++) { printf("%d\n", contador); } return(0); }
the_stack_data/156394332.c
// this is a test of extracting a large expression (not a sensible way to find primes) #define check(v, n) ( ((v) == (n)) || ((v) % (n) != 0) ) #define check10(v, n) \ (check(v, n) && \ check(v, n + 1) && \ check(v, n + 2) && \ check(v, n + 3) && \ check(v, n + 4) && \ check(v, n + 5) && \ check(v, n + 6) && \ check(v, n + 7) && \ check(v, n + 8) && \ check(v, n + 9)) #define check100(v, n) \ (check10(v, n) && \ check10(v, n + 10) && \ check10(v, n + 20) && \ check10(v, n + 30) && \ check10(v, n + 40) && \ check10(v, n + 50) && \ check10(v, n + 60) && \ check10(v, n + 70) && \ check10(v, n + 80) && \ check10(v, n + 90)) #define check1000(v, n) \ (check100(v, n) && \ check100(v, n + 100) && \ check100(v, n + 200) && \ check100(v, n + 300) && \ check100(v, n + 400) && \ check100(v, n + 500) && \ check100(v, n + 600) && \ check100(v, n + 700) && \ check100(v, n + 800) && \ check100(v, n + 900)) #define check3000(v, n) \ (check1000(v, n) && \ check1000(v, n + 1000) && \ check1000(v, n + 2000)) int main() { int i; for (i = 2; i < 3000; i++) { if check3000(i, 2) { // ... i is prime ... } } return 0; }
the_stack_data/93138.c
/* * MIT License * Copyright (c) 2020 Kutlay KIZIL * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include <stdio.h> int main(void) { float fahr[121], step = 1.0, celsius=0.0; int i=0; while (celsius < 30.0) { fahr[i] = (celsius) * (9.0/5.0) + 32; printf("Celsius=%.1f Fahrenheit=%f\n",celsius, fahr[i]); celsius = celsius + step; i++; } while (celsius >= 30.0 && celsius <50.0) { fahr[i] = (celsius) * (9.0/5.0) + 32; printf("Celsius=%.1f Fahrenheit=%f\n",celsius, fahr[i]); celsius = celsius + (step/2); i++; } while (celsius >= 50.0 && celsius <= 100.0) { fahr[i] = (celsius) * (9.0/5.0) + 32; printf("Celsius=%.1f Fahrenheit=%f\n",celsius, fahr[i]); celsius = celsius + step; i++; } return 0; }
the_stack_data/987420.c
//file: _insn_test_fsingle_addsub2_X0.c //op=103 #include <stdio.h> #include <stdlib.h> void func_exit(void) { printf("%s\n", __func__); exit(0); } void func_call(void) { printf("%s\n", __func__); exit(0); } unsigned long mem[2] = { 0x2c24dd020e9fa33f, 0xc279be840ee86dea }; int main(void) { unsigned long a[4] = { 0, 0 }; asm __volatile__ ( "moveli r16, -8392\n" "shl16insli r16, r16, -23005\n" "shl16insli r16, r16, -28857\n" "shl16insli r16, r16, -4517\n" "moveli r18, -23753\n" "shl16insli r18, r18, -24851\n" "shl16insli r18, r18, 4221\n" "shl16insli r18, r18, 16539\n" "moveli r13, -2884\n" "shl16insli r13, r13, 28785\n" "shl16insli r13, r13, 7136\n" "shl16insli r13, r13, 32281\n" "{ fsingle_addsub2 r16, r18, r13 ; fnop }\n" "move %0, r16\n" "move %1, r18\n" "move %2, r13\n" :"=r"(a[0]),"=r"(a[1]),"=r"(a[2])); printf("%016lx\n", a[0]); printf("%016lx\n", a[1]); printf("%016lx\n", a[2]); return 0; }
the_stack_data/176704746.c
/** * @file main.c * * @section License * Copyright (C) 2015-2016, Erik Moqvist * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * This file is part of the Pumbaa project. */ /* * This file is required by PlatformIO, but is unused in Pumbaa. */
the_stack_data/54338.c
/* guess.c -- 一个猜数程序 */ #include <stdio.h> int main(int argc, const char * argv[]) { int guess = 1; char response; printf("Pick an integer from 1 to 100. I will try to guess "); printf("it.\n Respond with a y if my guess is right and with"); printf("\nan n if it is wrong.\n"); printf("Uh...is your number %d?\n",guess); while ((response = getchar()) != 'y') { if(response == 'n'){ printf("Well, then, is it %d?\n", ++guess); }else{ printf("Sorry, I understand only y or n.\n"); } while (getchar() != '\n') { continue; } } printf("I knew I could do it!\n"); return 0; }
the_stack_data/12637780.c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward declarations */ typedef struct TYPE_4__ TYPE_2__ ; typedef struct TYPE_3__ TYPE_1__ ; /* Type definitions */ typedef scalar_t__ u64 ; struct ixl_vsi {TYPE_2__* shared; } ; struct ixl_vf {int vf_flags; int /*<<< orphan*/ vsi; } ; struct TYPE_3__ {scalar_t__ rx_discards; int /*<<< orphan*/ tx_broadcast; int /*<<< orphan*/ rx_broadcast; int /*<<< orphan*/ tx_multicast; int /*<<< orphan*/ rx_multicast; int /*<<< orphan*/ tx_unicast; int /*<<< orphan*/ rx_unicast; int /*<<< orphan*/ tx_bytes; int /*<<< orphan*/ rx_bytes; } ; struct i40e_hw_port_stats {scalar_t__ link_xoff_rx; scalar_t__ crc_errors; scalar_t__ illegal_bytes; scalar_t__ tx_dropped_link_down; scalar_t__ mac_local_faults; scalar_t__ mac_remote_faults; scalar_t__ rx_length_errors; scalar_t__ link_xon_rx; scalar_t__ link_xon_tx; scalar_t__ link_xoff_tx; scalar_t__ rx_undersize; scalar_t__ rx_fragments; scalar_t__ rx_oversize; scalar_t__ rx_jabber; int /*<<< orphan*/ tx_size_big; int /*<<< orphan*/ tx_size_1522; int /*<<< orphan*/ tx_size_1023; int /*<<< orphan*/ tx_size_511; int /*<<< orphan*/ tx_size_255; int /*<<< orphan*/ tx_size_127; int /*<<< orphan*/ tx_size_64; int /*<<< orphan*/ rx_size_big; int /*<<< orphan*/ rx_size_1522; int /*<<< orphan*/ rx_size_1023; int /*<<< orphan*/ rx_size_511; int /*<<< orphan*/ rx_size_255; int /*<<< orphan*/ rx_size_127; int /*<<< orphan*/ rx_size_64; TYPE_1__ eth; } ; struct i40e_hw {int /*<<< orphan*/ port; } ; struct ixl_pf {int stat_offsets_loaded; int num_vfs; struct ixl_vf* vfs; struct i40e_hw_port_stats stats; struct i40e_hw_port_stats stats_offsets; struct ixl_vsi vsi; struct i40e_hw hw; } ; struct TYPE_4__ {int isc_pause_frames; } ; /* Variables and functions */ int /*<<< orphan*/ I40E_GLPRT_BPRCH (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_BPRCL (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_BPTCH (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_BPTCL (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_CRCERRS (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_GORCH (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_GORCL (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_GOTCH (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_GOTCL (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_ILLERRC (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_LXOFFRXC (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_LXOFFTXC (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_LXONRXC (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_LXONTXC (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_MLFC (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_MPRCH (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_MPRCL (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_MPTCH (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_MPTCL (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_MRFC (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PRC1023H (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PRC1023L (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PRC127H (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PRC127L (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PRC1522H (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PRC1522L (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PRC255H (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PRC255L (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PRC511H (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PRC511L (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PRC64H (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PRC64L (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PRC9522H (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PRC9522L (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PTC1023H (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PTC1023L (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PTC127H (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PTC127L (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PTC1522H (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PTC1522L (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PTC255H (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PTC255L (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PTC511H (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PTC511L (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PTC64H (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PTC64L (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PTC9522H (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_PTC9522L (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_RDPC (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_RFC (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_RJC (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_RLEC (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_ROC (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_RUC (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_TDOLD (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_UPRCH (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_UPRCL (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_UPTCH (int /*<<< orphan*/ ) ; int /*<<< orphan*/ I40E_GLPRT_UPTCL (int /*<<< orphan*/ ) ; int VF_FLAG_ENABLED ; int /*<<< orphan*/ ixl_stat_update32 (struct i40e_hw*,int /*<<< orphan*/ ,int,scalar_t__*,scalar_t__*) ; int /*<<< orphan*/ ixl_stat_update48 (struct i40e_hw*,int /*<<< orphan*/ ,int /*<<< orphan*/ ,int,int /*<<< orphan*/ *,int /*<<< orphan*/ *) ; int /*<<< orphan*/ ixl_update_eth_stats (int /*<<< orphan*/ *) ; int /*<<< orphan*/ ixl_update_vsi_stats (struct ixl_vsi*) ; void ixl_update_stats_counters(struct ixl_pf *pf) { struct i40e_hw *hw = &pf->hw; struct ixl_vsi *vsi = &pf->vsi; struct ixl_vf *vf; u64 prev_link_xoff_rx = pf->stats.link_xoff_rx; struct i40e_hw_port_stats *nsd = &pf->stats; struct i40e_hw_port_stats *osd = &pf->stats_offsets; /* Update hw stats */ ixl_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port), pf->stat_offsets_loaded, &osd->crc_errors, &nsd->crc_errors); ixl_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port), pf->stat_offsets_loaded, &osd->illegal_bytes, &nsd->illegal_bytes); ixl_stat_update48(hw, I40E_GLPRT_GORCH(hw->port), I40E_GLPRT_GORCL(hw->port), pf->stat_offsets_loaded, &osd->eth.rx_bytes, &nsd->eth.rx_bytes); ixl_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port), I40E_GLPRT_GOTCL(hw->port), pf->stat_offsets_loaded, &osd->eth.tx_bytes, &nsd->eth.tx_bytes); ixl_stat_update32(hw, I40E_GLPRT_RDPC(hw->port), pf->stat_offsets_loaded, &osd->eth.rx_discards, &nsd->eth.rx_discards); ixl_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port), I40E_GLPRT_UPRCL(hw->port), pf->stat_offsets_loaded, &osd->eth.rx_unicast, &nsd->eth.rx_unicast); ixl_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port), I40E_GLPRT_UPTCL(hw->port), pf->stat_offsets_loaded, &osd->eth.tx_unicast, &nsd->eth.tx_unicast); ixl_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port), I40E_GLPRT_MPRCL(hw->port), pf->stat_offsets_loaded, &osd->eth.rx_multicast, &nsd->eth.rx_multicast); ixl_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port), I40E_GLPRT_MPTCL(hw->port), pf->stat_offsets_loaded, &osd->eth.tx_multicast, &nsd->eth.tx_multicast); ixl_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port), I40E_GLPRT_BPRCL(hw->port), pf->stat_offsets_loaded, &osd->eth.rx_broadcast, &nsd->eth.rx_broadcast); ixl_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port), I40E_GLPRT_BPTCL(hw->port), pf->stat_offsets_loaded, &osd->eth.tx_broadcast, &nsd->eth.tx_broadcast); ixl_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port), pf->stat_offsets_loaded, &osd->tx_dropped_link_down, &nsd->tx_dropped_link_down); ixl_stat_update32(hw, I40E_GLPRT_MLFC(hw->port), pf->stat_offsets_loaded, &osd->mac_local_faults, &nsd->mac_local_faults); ixl_stat_update32(hw, I40E_GLPRT_MRFC(hw->port), pf->stat_offsets_loaded, &osd->mac_remote_faults, &nsd->mac_remote_faults); ixl_stat_update32(hw, I40E_GLPRT_RLEC(hw->port), pf->stat_offsets_loaded, &osd->rx_length_errors, &nsd->rx_length_errors); /* Flow control (LFC) stats */ ixl_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port), pf->stat_offsets_loaded, &osd->link_xon_rx, &nsd->link_xon_rx); ixl_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port), pf->stat_offsets_loaded, &osd->link_xon_tx, &nsd->link_xon_tx); ixl_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port), pf->stat_offsets_loaded, &osd->link_xoff_rx, &nsd->link_xoff_rx); ixl_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port), pf->stat_offsets_loaded, &osd->link_xoff_tx, &nsd->link_xoff_tx); /* * For watchdog management we need to know if we have been paused * during the last interval, so capture that here. */ if (pf->stats.link_xoff_rx != prev_link_xoff_rx) vsi->shared->isc_pause_frames = 1; /* Packet size stats rx */ ixl_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port), I40E_GLPRT_PRC64L(hw->port), pf->stat_offsets_loaded, &osd->rx_size_64, &nsd->rx_size_64); ixl_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port), I40E_GLPRT_PRC127L(hw->port), pf->stat_offsets_loaded, &osd->rx_size_127, &nsd->rx_size_127); ixl_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port), I40E_GLPRT_PRC255L(hw->port), pf->stat_offsets_loaded, &osd->rx_size_255, &nsd->rx_size_255); ixl_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port), I40E_GLPRT_PRC511L(hw->port), pf->stat_offsets_loaded, &osd->rx_size_511, &nsd->rx_size_511); ixl_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port), I40E_GLPRT_PRC1023L(hw->port), pf->stat_offsets_loaded, &osd->rx_size_1023, &nsd->rx_size_1023); ixl_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port), I40E_GLPRT_PRC1522L(hw->port), pf->stat_offsets_loaded, &osd->rx_size_1522, &nsd->rx_size_1522); ixl_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port), I40E_GLPRT_PRC9522L(hw->port), pf->stat_offsets_loaded, &osd->rx_size_big, &nsd->rx_size_big); /* Packet size stats tx */ ixl_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port), I40E_GLPRT_PTC64L(hw->port), pf->stat_offsets_loaded, &osd->tx_size_64, &nsd->tx_size_64); ixl_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port), I40E_GLPRT_PTC127L(hw->port), pf->stat_offsets_loaded, &osd->tx_size_127, &nsd->tx_size_127); ixl_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port), I40E_GLPRT_PTC255L(hw->port), pf->stat_offsets_loaded, &osd->tx_size_255, &nsd->tx_size_255); ixl_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port), I40E_GLPRT_PTC511L(hw->port), pf->stat_offsets_loaded, &osd->tx_size_511, &nsd->tx_size_511); ixl_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port), I40E_GLPRT_PTC1023L(hw->port), pf->stat_offsets_loaded, &osd->tx_size_1023, &nsd->tx_size_1023); ixl_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port), I40E_GLPRT_PTC1522L(hw->port), pf->stat_offsets_loaded, &osd->tx_size_1522, &nsd->tx_size_1522); ixl_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port), I40E_GLPRT_PTC9522L(hw->port), pf->stat_offsets_loaded, &osd->tx_size_big, &nsd->tx_size_big); ixl_stat_update32(hw, I40E_GLPRT_RUC(hw->port), pf->stat_offsets_loaded, &osd->rx_undersize, &nsd->rx_undersize); ixl_stat_update32(hw, I40E_GLPRT_RFC(hw->port), pf->stat_offsets_loaded, &osd->rx_fragments, &nsd->rx_fragments); ixl_stat_update32(hw, I40E_GLPRT_ROC(hw->port), pf->stat_offsets_loaded, &osd->rx_oversize, &nsd->rx_oversize); ixl_stat_update32(hw, I40E_GLPRT_RJC(hw->port), pf->stat_offsets_loaded, &osd->rx_jabber, &nsd->rx_jabber); pf->stat_offsets_loaded = true; /* End hw stats */ /* Update vsi stats */ ixl_update_vsi_stats(vsi); for (int i = 0; i < pf->num_vfs; i++) { vf = &pf->vfs[i]; if (vf->vf_flags & VF_FLAG_ENABLED) ixl_update_eth_stats(&pf->vfs[i].vsi); } }
the_stack_data/112805.c
// RUN: %clam -O0 --crab-dom=int --crab-check=assert --crab-sanity-checks "%s" 2>&1 | OutputCheck -l debug %s // CHECK: ^1 Number of total safe checks$ // CHECK: ^0 Number of total error checks$ // CHECK: ^0 Number of total warning checks$ extern void __CRAB_assert(int); // program nested2 from Scozzari SAS'13 int main(void) { int i,j; i=0; while (1) { __CRAB_assert(i>=0); j=0; while (j < 10) { j++; } i = i+11-j; } return 0; }
the_stack_data/1104196.c
char popSndData[30332]={ 0xd4, 0xff, 0xd4, 0xff, 0xc7, 0xff, 0xc7, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xa3, 0xff, 0xa3, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xaa, 0xff, 0xaa, 0xff, 0x95, 0xff, 0x95, 0xff, 0xd3, 0xff, 0xd3, 0xff, 0x16, 0x0, 0x16, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x63, 0x0, 0x63, 0x0, 0x9f, 0x0, 0x9f, 0x0, 0x97, 0x0, 0x97, 0x0, 0xa8, 0x0, 0xa8, 0x0, 0xfa, 0x0, 0xfa, 0x0, 0x17, 0x1, 0x17, 0x1, 0xaf, 0x0, 0xaf, 0x0, 0x98, 0x0, 0x98, 0x0, 0xed, 0x0, 0xed, 0x0, 0xe7, 0x0, 0xe7, 0x0, 0x87, 0x0, 0x87, 0x0, 0x74, 0x0, 0x74, 0x0, 0x76, 0x0, 0x76, 0x0, 0x4e, 0x0, 0x4e, 0x0, 0xe3, 0xff, 0xe3, 0xff, 0x9b, 0xfe, 0x9b, 0xfe, 0x5f, 0xfe, 0x5f, 0xfe, 0xb3, 0xfe, 0xb3, 0xfe, 0xc6, 0xfe, 0xc6, 0xfe, 0x8, 0x0, 0x8, 0x0, 0x53, 0xfd, 0x53, 0xfd, 0xea, 0xf4, 0xea, 0xf4, 0x42, 0xf5, 0x42, 0xf5, 0xf2, 0xfd, 0xf2, 0xfd, 0x2, 0x1, 0x2, 0x1, 0x7f, 0xfc, 0x7f, 0xfc, 0xbc, 0xf7, 0xbc, 0xf7, 0x8f, 0xf6, 0x8f, 0xf6, 0xbc, 0xf7, 0xbc, 0xf7, 0x76, 0x1, 0x76, 0x1, 0xbe, 0x6, 0xbe, 0x6, 0x89, 0x3, 0x89, 0x3, 0x3c, 0x5, 0x3c, 0x5, 0x8d, 0x5, 0x8d, 0x5, 0x46, 0x2, 0x46, 0x2, 0x40, 0x2, 0x40, 0x2, 0xce, 0x3, 0xce, 0x3, 0xe7, 0x1, 0xe7, 0x1, 0x3d, 0xfe, 0x3d, 0xfe, 0x66, 0xfe, 0x66, 0xfe, 0xf1, 0x1, 0xf1, 0x1, 0x4c, 0x2, 0x4c, 0x2, 0xe7, 0x1, 0xe7, 0x1, 0x21, 0x3, 0x21, 0x3, 0xe, 0x2, 0xe, 0x2, 0xc9, 0xff, 0xc9, 0xff, 0x30, 0xff, 0x30, 0xff, 0x4b, 0x0, 0x4b, 0x0, 0x18, 0x0, 0x18, 0x0, 0x38, 0xfe, 0x38, 0xfe, 0x74, 0xfe, 0x74, 0xfe, 0xe5, 0x0, 0xe5, 0x0, 0x74, 0x1, 0x74, 0x1, 0xf4, 0xff, 0xf4, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0x47, 0x0, 0x47, 0x0, 0xcd, 0xff, 0xcd, 0xff, 0x3d, 0xff, 0x3d, 0xff, 0x20, 0x0, 0x20, 0x0, 0x2, 0x1, 0x2, 0x1, 0x6b, 0x0, 0x6b, 0x0, 0x27, 0x0, 0x27, 0x0, 0xfc, 0x0, 0xfc, 0x0, 0x7d, 0x1, 0x7d, 0x1, 0xc, 0x1, 0xc, 0x1, 0xe9, 0x0, 0xe9, 0x0, 0x86, 0x1, 0x86, 0x1, 0xf1, 0x1, 0xf1, 0x1, 0xe9, 0x1, 0xe9, 0x1, 0xcb, 0x1, 0xcb, 0x1, 0xfb, 0x1, 0xfb, 0x1, 0x11, 0x2, 0x11, 0x2, 0xf0, 0x1, 0xf0, 0x1, 0x18, 0x2, 0x18, 0x2, 0x34, 0x2, 0x34, 0x2, 0xda, 0x1, 0xda, 0x1, 0x43, 0x1, 0x43, 0x1, 0xbc, 0x0, 0xbc, 0x0, 0x95, 0x0, 0x95, 0x0, 0xd2, 0x0, 0xd2, 0x0, 0x81, 0x0, 0x81, 0x0, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xeb, 0xff, 0xeb, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xa6, 0xff, 0xa6, 0xff, 0xac, 0xff, 0xac, 0xff, 0x88, 0xff, 0x88, 0xff, 0x5a, 0xff, 0x5a, 0xff, 0x56, 0xff, 0x56, 0xff, 0x5f, 0xff, 0x5f, 0xff, 0x62, 0xff, 0x62, 0xff, 0x74, 0xff, 0x74, 0xff, 0x99, 0xff, 0x99, 0xff, 0xc4, 0xff, 0xc4, 0xff, 0xeb, 0xff, 0xeb, 0xff, 0x15, 0x0, 0x15, 0x0, 0x39, 0x0, 0x39, 0x0, 0x43, 0x0, 0x43, 0x0, 0x3d, 0x0, 0x3d, 0x0, 0x3d, 0x0, 0x3d, 0x0, 0x40, 0x0, 0x40, 0x0, 0x3b, 0x0, 0x3b, 0x0, 0x31, 0x0, 0x31, 0x0, 0x33, 0x0, 0x33, 0x0, 0x35, 0x0, 0x35, 0x0, 0x36, 0x0, 0x36, 0x0, 0x40, 0x0, 0x40, 0x0, 0x3b, 0x0, 0x3b, 0x0, 0x1b, 0x0, 0x1b, 0x0, 0xfb, 0xff, 0xfb, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xe2, 0xff, 0xe2, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xea, 0xff, 0xea, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0x1, 0x0, 0x1, 0x0, 0xd, 0x0, 0xd, 0x0, 0xff, 0xff, 0xff, 0xff, 0x3, 0x0, 0x3, 0x0, 0x1d, 0x0, 0x1d, 0x0, 0x1c, 0x0, 0x1c, 0x0, 0x8, 0x0, 0x8, 0x0, 0xb, 0x0, 0xb, 0x0, 0x1d, 0x0, 0x1d, 0x0, 0x1c, 0x0, 0x1c, 0x0, 0x17, 0x0, 0x17, 0x0, 0x1d, 0x0, 0x1d, 0x0, 0x1c, 0x0, 0x1c, 0x0, 0xf, 0x0, 0xf, 0x0, 0x10, 0x0, 0x10, 0x0, 0x1a, 0x0, 0x1a, 0x0, 0x14, 0x0, 0x14, 0x0, 0x1, 0x0, 0x1, 0x0, 0xf3, 0xff, 0xf3, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xef, 0xff, 0xef, 0xff, 0xe8, 0xff, 0xe8, 0xff, 0xed, 0xff, 0xed, 0xff, 0xef, 0xff, 0xef, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xd9, 0xff, 0xd9, 0xff, 0xdc, 0xff, 0xdc, 0xff, 0xe7, 0xff, 0xe7, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0x0, 0x0, 0x0, 0x0, 0x9, 0x0, 0x9, 0x0, 0xc, 0x0, 0xc, 0x0, 0xd, 0x0, 0xd, 0x0, 0x14, 0x0, 0x14, 0x0, 0x1a, 0x0, 0x1a, 0x0, 0x1b, 0x0, 0x1b, 0x0, 0x19, 0x0, 0x19, 0x0, 0x1c, 0x0, 0x1c, 0x0, 0x1c, 0x0, 0x1c, 0x0, 0x16, 0x0, 0x16, 0x0, 0x12, 0x0, 0x12, 0x0, 0xf, 0x0, 0xf, 0x0, 0xd, 0x0, 0xd, 0x0, 0xf, 0x0, 0xf, 0x0, 0x13, 0x0, 0x13, 0x0, 0x10, 0x0, 0x10, 0x0, 0x6, 0x0, 0x6, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xef, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xed, 0xff, 0xed, 0xff, 0xee, 0xff, 0xee, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xf3, 0xff, 0xf3, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0xff, 0xff, 0xff, 0xff, 0x3, 0x0, 0x3, 0x0, 0x7, 0x0, 0x7, 0x0, 0x7, 0x0, 0x7, 0x0, 0x8, 0x0, 0x8, 0x0, 0xa, 0x0, 0xa, 0x0, 0xe, 0x0, 0xe, 0x0, 0xa, 0x0, 0xa, 0x0, 0x7, 0x0, 0x7, 0x0, 0xa, 0x0, 0xa, 0x0, 0xc, 0x0, 0xc, 0x0, 0x8, 0x0, 0x8, 0x0, 0x5, 0x0, 0x5, 0x0, 0x6, 0x0, 0x6, 0x0, 0x4, 0x0, 0x4, 0x0, 0x1, 0x0, 0x1, 0x0, 0xf4, 0xff, 0xf4, 0xff, 0xeb, 0xff, 0xeb, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0x96, 0xff, 0x96, 0xff, 0x6f, 0xff, 0x6f, 0xff, 0xcd, 0xff, 0xcd, 0xff, 0xc, 0x0, 0xc, 0x0, 0xec, 0xff, 0xec, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0x57, 0x0, 0x57, 0x0, 0x34, 0x0, 0x34, 0x0, 0x35, 0x0, 0x35, 0x0, 0x49, 0x0, 0x49, 0x0, 0x25, 0x0, 0x25, 0x0, 0x15, 0x0, 0x15, 0x0, 0x2d, 0x0, 0x2d, 0x0, 0x23, 0x0, 0x23, 0x0, 0xf5, 0xff, 0xf5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xf, 0x0, 0xf, 0x0, 0x21, 0x0, 0x21, 0x0, 0x17, 0x0, 0x17, 0x0, 0x24, 0x0, 0x24, 0x0, 0x21, 0x0, 0x21, 0x0, 0x4, 0x0, 0x4, 0x0, 0xf5, 0xff, 0xf5, 0xff, 0x0, 0x0, 0x0, 0x0, 0x5, 0x0, 0x5, 0x0, 0xf0, 0xff, 0xf0, 0xff, 0xe8, 0xff, 0xe8, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xe, 0x0, 0xe, 0x0, 0x5, 0x0, 0x5, 0x0, 0xfb, 0xff, 0xfb, 0xff, 0x2, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0xff, 0xf8, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xb, 0x0, 0xb, 0x0, 0x7, 0x0, 0x7, 0x0, 0x1, 0x0, 0x1, 0x0, 0x9, 0x0, 0x9, 0x0, 0x12, 0x0, 0x12, 0x0, 0xf, 0x0, 0xf, 0x0, 0xa, 0x0, 0xa, 0x0, 0x10, 0x0, 0x10, 0x0, 0x17, 0x0, 0x17, 0x0, 0x18, 0x0, 0x18, 0x0, 0x16, 0x0, 0x16, 0x0, 0x17, 0x0, 0x17, 0x0, 0x19, 0x0, 0x19, 0x0, 0x18, 0x0, 0x18, 0x0, 0x19, 0x0, 0x19, 0x0, 0x1b, 0x0, 0x1b, 0x0, 0x18, 0x0, 0x18, 0x0, 0x11, 0x0, 0x11, 0x0, 0xa, 0x0, 0xa, 0x0, 0x7, 0x0, 0x7, 0x0, 0x9, 0x0, 0x9, 0x0, 0x8, 0x0, 0x8, 0x0, 0x1, 0x0, 0x1, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0x0, 0x1, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x2, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x3, 0x0, 0x3, 0x0, 0x4, 0x0, 0x4, 0x0, 0x3, 0x0, 0x3, 0x0, 0x2, 0x0, 0x2, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x2, 0x0, 0x2, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xfc, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xe1, 0xff, 0xe1, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xef, 0xff, 0xef, 0xff, 0x3, 0x0, 0x3, 0x0, 0xfb, 0xff, 0xfb, 0xff, 0xe6, 0xff, 0xe6, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0x1a, 0x0, 0x1a, 0x0, 0x10, 0x0, 0x10, 0x0, 0xf, 0x0, 0xf, 0x0, 0x16, 0x0, 0x16, 0x0, 0xb, 0x0, 0xb, 0x0, 0x6, 0x0, 0x6, 0x0, 0xe, 0x0, 0xe, 0x0, 0xb, 0x0, 0xb, 0x0, 0xfd, 0xff, 0xfd, 0xff, 0xf8, 0xff, 0xf8, 0xff, 0x4, 0x0, 0x4, 0x0, 0xa, 0x0, 0xa, 0x0, 0x7, 0x0, 0x7, 0x0, 0xb, 0x0, 0xb, 0x0, 0xa, 0x0, 0xa, 0x0, 0x1, 0x0, 0x1, 0x0, 0xfd, 0xff, 0xfd, 0xff, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x2, 0x0, 0xfb, 0xff, 0xfb, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x6, 0x0, 0x2, 0x0, 0x2, 0x0, 0xff, 0xff, 0xff, 0xff, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, 0x0, 0x3, 0x0, 0x2, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x3, 0x0, 0x5, 0x0, 0x5, 0x0, 0x5, 0x0, 0x5, 0x0, 0x3, 0x0, 0x3, 0x0, 0x5, 0x0, 0x5, 0x0, 0x7, 0x0, 0x7, 0x0, 0x7, 0x0, 0x7, 0x0, 0x7, 0x0, 0x7, 0x0, 0x7, 0x0, 0x7, 0x0, 0x8, 0x0, 0x8, 0x0, 0x7, 0x0, 0x7, 0x0, 0x7, 0x0, 0x7, 0x0, 0x8, 0x0, 0x8, 0x0, 0x7, 0x0, 0x7, 0x0, 0x5, 0x0, 0x5, 0x0, 0x3, 0x0, 0x3, 0x0, 0x2, 0x0, 0x2, 0x0, 0x3, 0x0, 0x3, 0x0, 0x2, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf9, 0xff, 0xf9, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf9, 0xff, 0xf9, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xfa, 0xff, 0xfa, 0xff, 0x6, 0x0, 0x6, 0x0, 0x6, 0x0, 0x6, 0x0, 0x4, 0x0, 0x4, 0x0, 0x7, 0x0, 0x7, 0x0, 0x5, 0x0, 0x5, 0x0, 0x2, 0x0, 0x2, 0x0, 0x3, 0x0, 0x3, 0x0, 0x4, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfd, 0xff, 0xfd, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x3, 0x0, 0x2, 0x0, 0x2, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x3, 0x0, 0x1, 0x0, 0x1, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0xff, 0xfe, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0xfc, 0xff, 0xfc, 0xff, 0xfd, 0xff, 0xfd, 0xff, 0x1, 0x0, 0x1, 0x0, 0x2, 0x0, 0x2, 0x0, 0x1, 0x0, 0x1, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x2, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, };
the_stack_data/23836.c
/* See problem.c for problem solution. The problem specifies a min heap be used, this is my implementation of a max heap, which I then turned into a min heap implementation. maxheap_sort.c is an implementation of the "heap sort" algorithm, which is based on the idea sorting by placing items into a max heap and then removing the root node 1 at a time until the max heap is empty. */ #include <stdio.h> #include <assert.h> /* Notes from Carrano on "using a heap to sort an array", a.k.a. heap sort. Algorithm v0: Place all array entries into the heap. Remove the root 1 at a time. Algorithm v1: The sorting can be done with less memory and less operations if we don't use the heap ADT. We want to sort a given array in place, without using an extra array inside the heap ADT. Also sorting algorithms in general always sort in place. Also, our heap ADT uses 1 based indexing, but for sorting in place we need to adapt our heap code to use 0 based indexing. We want to mimic the max heap's array based implementation. 1. Call reheap repeatedly on the array, like our heap_create(a[]). */ #define ROOT_INDEX 0 // Returns the index of the parent of node i. int parent_i(int i) { assert(i >= 0); if (i == 0) // The root node has no parent, indicate this with a negative index. return -1; // assert: i > 0 if (i % 2 == 0) // Since i > 0 at this point, and the smallest even number is 2, the return value will never be negative. return i / 2 - 1; else return i / 2; } int left_child_i(int i) { assert(i >= 0); return i * 2 + 1; } int right_child_i(int i) { assert(i >= 0); return i * 2 + 2; } #define HEAP_SIZE 64 typedef struct _heap_t { int heap[HEAP_SIZE]; int num_entries; // ! We are using 0 indexing, so the last leaf node is at position num_entries - 1. Valid node indexes are defined by i < num_entries. } heap_t; // If i has children, returns the index of the larger child. int larger_child_i(heap_t * const h, int i) { int l, r; assert(h != NULL); assert(i >= 0); l = left_child_i(i); r = right_child_i(i); if (l < h->num_entries && r < h->num_entries) { if (h->heap[l] > h->heap[r]) return l; else return r; } else if (l < h->num_entries) { return l; // Only a left child. } else if (r < h->num_entries) { return r; // Only a right child. } else { return -1; // Node i has no children. } } void reheap(heap_t * const h, int i, int v) { int largerc_i; // assert: The root node has been removed and the last leaf value has been copied the root node. A reheap transforms a heap in which only the root node is out of place (a.k.a a semiheap) into a heap. OR, we are creating a heap from a given array. assert(h != NULL); assert(i >= 0); largerc_i = larger_child_i(h, i); if (largerc_i == -1) { // Node i has no children, no work to do. h->heap[i] = v; return; } // Swap the larger child value up towards the root. if (h->heap[largerc_i] > v) { h->heap[i] = h->heap[largerc_i]; reheap(h, largerc_i, v); } else { h->heap[i] = v; } } int last_leaf_i(heap_t * const h) { assert(h != NULL); assert(h->num_entries > 0); return h->num_entries - 1; } void heap_create(heap_t * const h, int a[], int l) { int i = 0; assert(h != NULL); assert(a != NULL); assert(l >= 0); assert (h->num_entries == 0); // heap_create() is only valid if the heap is empty. if (l == 0) // Nothing to do. return; // Init. heap with array in the given order. for (i = 0; i < l; i++) { h->heap[i] = a[i]; h->num_entries++; } i = parent_i(last_leaf_i(h)); if (i == -1) // The last leaf is also the root node, i.e. l = 1. return; // Reheap starting at the parent of the last leaf node and ending at the root node (i.e. reverse level order). while (i >= 0) { reheap(h, i, h->heap[i]); i--; } } // Print each level of the heap on a separate line. void _print_heap(heap_t * const h, int n, int start_i) { int i; assert(h != NULL); if (h->num_entries == 0) { printf("Heap is empty.\n"); return; } for (i = start_i; i < (start_i + n) && i < h->num_entries; i++) { printf("%d ", h->heap[i]); } printf("\n"); if (i >= h->num_entries) // Done printing. return; n *= 2; // Each level has 2x the number of nodes as the previous level. _print_heap (h, n, i); } void print_heap(heap_t * const h) { assert(h != NULL); _print_heap(h, 1, 0); } void print_heap_array (heap_t * const h) { assert(h != NULL); if (h->num_entries == 0) { printf("Heap is empty.\n"); return; } for (int i = 0; i < h->num_entries; i++) { printf("%d ", h->heap[i]); } printf("\n"); } void max_heap_sort (heap_t * const h, int a[], int l) { int v; assert(h != NULL); assert(l >= 0); assert(a != NULL); assert(h->num_entries > 0); // assert: a is a max heap. /* "The largest item in the array is now first in the array, so we swap it with the last item in the array, The array is now partitioned into a tree region and a sorted region." */ // Swap root with last. Array is now partitioned. v = h->heap[last_leaf_i(h)]; h->heap[last_leaf_i(h)] = h->heap[ROOT_INDEX]; h->heap[ROOT_INDEX] = v; a[last_leaf_i(h)] = h->heap[last_leaf_i(h)]; // Return next sorted value. h->num_entries--; reheap(h, ROOT_INDEX, h->heap[ROOT_INDEX]); } void print_array(int a[], int l) { while (l-- > 0) printf("%d ", *a++); printf("\n"); } int main(void) { heap_t h; int a[] = {20, 40, 30, 10, 90, 70}; int a2[64]; int l = sizeof(a)/sizeof(*a); h.num_entries = 0; heap_create(&h, a, l); print_heap_array(&h); print_heap(&h); while (h.num_entries > 0) max_heap_sort (&h, a2, 64); print_array(a2, l); return 0; }
the_stack_data/890691.c
/* Faça um programa para ler a nota da prova de 15 alunos e armazene num vetor, calcule e imprima a média geral. */ #include <stdio.h> int main(void){ float vetor[15]; float nota = 0; float soma = 0; int divi = 0; system("cls"); for( int i = 1; i < 70; i++) putchar('='); putchar('\n'); printf("Informe 15 notas, por gentileza( use PONTO para numeros fracionarios. ).:\n"); for( int i = 0; i < 15; i++ ){ scanf("%f", &nota ); if( nota > 0 && nota < 10 ){ soma = soma + nota; vetor[i] = nota; divi++; }else{ i--; } } system("cls"); for( int i = 1; i < 70; i++) putchar('='); putchar('\n'); for( int i = 0; i < 15; i++ ){ printf("nota aluno[%i]~[%.1f]\n", i + 1, vetor[i]); } printf("A soma das notas dos %d alunos, eh: [%.1f];\nA media geral, eh.: [%.1f]\n", divi, soma, soma / divi); for( int i = 0; i < 70; i++ ) putchar('='); putchar('\n'); return 0 ; }
the_stack_data/15763516.c
#include <stdio.h> int main() { int x = 2; int y = 3; printf("The value of 3*x - 8*y is %d \n", 3*x - 8*y); printf("The value of 8*y / 3*x is %d \n", 8 * y / 3 * x); // 8*3 /3*x = 24/6 will give wrong answer // 24/3*2 // 8*2 // 16 return 0; }
the_stack_data/151706871.c
/* Kilo -- A very simple editor in less than 1-kilo lines of code (as counted * by "cloc"). Does not depend on libcurses, directly emits VT100 * escapes on the terminal. * * ----------------------------------------------------------------------- * * Copyright (C) 2016 Salvatore Sanfilippo <antirez at gmail dot com> * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #define KILO_VERSION "0.0.1" #ifdef __linux__ #define _POSIX_C_SOURCE 200809L #endif #include <termios.h> #include <stdlib.h> #include <stdio.h> #include <stdint.h> #include <errno.h> #include <string.h> #include <ctype.h> #include <time.h> #include <sys/types.h> #include <sys/ioctl.h> #include <sys/time.h> #include <unistd.h> #include <stdarg.h> #include <fcntl.h> #include <signal.h> /* Syntax highlight types */ #define HL_NORMAL 0 #define HL_NONPRINT 1 #define HL_COMMENT 2 /* Single line comment. */ #define HL_MLCOMMENT 3 /* Multi-line comment. */ #define HL_KEYWORD1 4 #define HL_KEYWORD2 5 #define HL_STRING 6 #define HL_NUMBER 7 #define HL_MATCH 8 /* Search match. */ #define HL_HIGHLIGHT_STRINGS (1<<0) #define HL_HIGHLIGHT_NUMBERS (1<<1) struct editorSyntax { char **filematch; char **keywords; char singleline_comment_start[2]; char multiline_comment_start[3]; char multiline_comment_end[3]; int flags; }; /* This structure represents a single line of the file we are editing. */ typedef struct erow { int idx; /* Row index in the file, zero-based. */ int size; /* Size of the row, excluding the null term. */ int rsize; /* Size of the rendered row. */ char *chars; /* Row content. */ char *render; /* Row content "rendered" for screen (for TABs). */ unsigned char *hl; /* Syntax highlight type for each character in render.*/ int hl_oc; /* Row had open comment at end in last syntax highlight check. */ } erow; typedef struct hlcolor { int r,g,b; } hlcolor; struct editorConfig { int cx,cy; /* Cursor x and y position in characters */ int rowoff; /* Offset of row displayed. */ int coloff; /* Offset of column displayed. */ int screenrows; /* Number of rows that we can show */ int screencols; /* Number of cols that we can show */ int numrows; /* Number of rows */ int rawmode; /* Is terminal raw mode enabled? */ erow *row; /* Rows */ int dirty; /* File modified but not saved. */ char *filename; /* Currently open filename */ char statusmsg[80]; time_t statusmsg_time; struct editorSyntax *syntax; /* Current syntax highlight, or NULL. */ }; static struct editorConfig E; enum KEY_ACTION{ KEY_NULL = 0, /* NULL */ CTRL_C = 3, /* Ctrl-c */ CTRL_D = 4, /* Ctrl-d */ CTRL_F = 6, /* Ctrl-f */ CTRL_H = 8, /* Ctrl-h */ TAB = 9, /* Tab */ CTRL_L = 12, /* Ctrl+l */ ENTER = 13, /* Enter */ CTRL_Q = 17, /* Ctrl-q */ CTRL_S = 19, /* Ctrl-s */ CTRL_U = 21, /* Ctrl-u */ ESC = 27, /* Escape */ BACKSPACE = 127, /* Backspace */ /* The following are just soft codes, not really reported by the * terminal directly. */ ARROW_LEFT = 1000, ARROW_RIGHT, ARROW_UP, ARROW_DOWN, DEL_KEY, HOME_KEY, END_KEY, PAGE_UP, PAGE_DOWN }; void editorSetStatusMessage(const char *fmt, ...); /* =========================== Syntax highlights DB ========================= * * In order to add a new syntax, define two arrays with a list of file name * matches and keywords. The file name matches are used in order to match * a given syntax with a given file name: if a match pattern starts with a * dot, it is matched as the last past of the filename, for example ".c". * Otherwise the pattern is just searched inside the filenme, like "Makefile"). * * The list of keywords to highlight is just a list of words, however if they * a trailing '|' character is added at the end, they are highlighted in * a different color, so that you can have two different sets of keywords. * * Finally add a stanza in the HLDB global variable with two two arrays * of strings, and a set of flags in order to enable highlighting of * comments and numbers. * * The characters for single and multi line comments must be exactly two * and must be provided as well (see the C language example). * * There is no support to highlight patterns currently. */ /* C / C++ */ char *C_HL_extensions[] = {".c",".h",".cpp",".hpp",".cc",NULL}; char *C_HL_keywords[] = { /* C Keywords */ "auto","break","case","continue","default","do","else","enum", "extern","for","goto","if","register","return","sizeof","static", "struct","switch","typedef","union","volatile","while","NULL", /* C++ Keywords */ "alignas","alignof","and","and_eq","asm","bitand","bitor","class", "compl","constexpr","const_cast","deltype","delete","dynamic_cast", "explicit","export","false","friend","inline","mutable","namespace", "new","noexcept","not","not_eq","nullptr","operator","or","or_eq", "private","protected","public","reinterpret_cast","static_assert", "static_cast","template","this","thread_local","throw","true","try", "typeid","typename","virtual","xor","xor_eq", /* C types */ "int|","long|","double|","float|","char|","unsigned|","signed|", "void|","short|","auto|","const|","bool|",NULL }; /* Here we define an array of syntax highlights by extensions, keywords, * comments delimiters and flags. */ struct editorSyntax HLDB[] = { { /* C / C++ */ C_HL_extensions, C_HL_keywords, "//","/*","*/", HL_HIGHLIGHT_STRINGS | HL_HIGHLIGHT_NUMBERS } }; #define HLDB_ENTRIES (sizeof(HLDB)/sizeof(HLDB[0])) /* ======================= Low level terminal handling ====================== */ static struct termios orig_termios; /* In order to restore at exit.*/ void disableRawMode(int fd) { /* Don't even check the return value as it's too late. */ if (E.rawmode) { tcsetattr(fd,TCSAFLUSH,&orig_termios); E.rawmode = 0; } } /* Called at exit to avoid remaining in raw mode. */ void editorAtExit(void) { disableRawMode(STDIN_FILENO); } /* Raw mode: 1960 magic shit. */ int enableRawMode(int fd) { struct termios raw; if (E.rawmode) return 0; /* Already enabled. */ if (!isatty(STDIN_FILENO)) goto fatal; atexit(editorAtExit); if (tcgetattr(fd,&orig_termios) == -1) goto fatal; raw = orig_termios; /* modify the original mode */ /* input modes: no break, no CR to NL, no parity check, no strip char, * no start/stop output control. */ raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON); /* output modes - disable post processing */ raw.c_oflag &= ~(OPOST); /* control modes - set 8 bit chars */ raw.c_cflag |= (CS8); /* local modes - choing off, canonical off, no extended functions, * no signal chars (^Z,^C) */ raw.c_lflag &= ~(ECHO | ICANON | IEXTEN | ISIG); /* control chars - set return condition: min number of bytes and timer. */ raw.c_cc[VMIN] = 0; /* Return each byte, or zero for timeout. */ raw.c_cc[VTIME] = 1; /* 100 ms timeout (unit is tens of second). */ /* put terminal in raw mode after flushing */ if (tcsetattr(fd,TCSAFLUSH,&raw) < 0) goto fatal; E.rawmode = 1; return 0; fatal: errno = ENOTTY; return -1; } /* Read a key from the terminal put in raw mode, trying to handle * escape sequences. */ int editorReadKey(int fd) { int nread; char c, seq[3]; while ((nread = read(fd,&c,1)) == 0); if (nread == -1) exit(1); while(1) { switch(c) { case ESC: /* escape sequence */ /* If this is just an ESC, we'll timeout here. */ if (read(fd,seq,1) == 0) return ESC; if (read(fd,seq+1,1) == 0) return ESC; /* ESC [ sequences. */ if (seq[0] == '[') { if (seq[1] >= '0' && seq[1] <= '9') { /* Extended escape, read additional byte. */ if (read(fd,seq+2,1) == 0) return ESC; if (seq[2] == '~') { switch(seq[1]) { case '3': return DEL_KEY; case '5': return PAGE_UP; case '6': return PAGE_DOWN; } } } else { switch(seq[1]) { case 'A': return ARROW_UP; case 'B': return ARROW_DOWN; case 'C': return ARROW_RIGHT; case 'D': return ARROW_LEFT; case 'H': return HOME_KEY; case 'F': return END_KEY; } } } /* ESC O sequences. */ else if (seq[0] == 'O') { switch(seq[1]) { case 'H': return HOME_KEY; case 'F': return END_KEY; } } break; default: return c; } } } /* Use the ESC [6n escape sequence to query the horizontal cursor position * and return it. On error -1 is returned, on success the position of the * cursor is stored at *rows and *cols and 0 is returned. */ int getCursorPosition(int ifd, int ofd, int *rows, int *cols) { char buf[32]; unsigned int i = 0; /* Report cursor location */ if (write(ofd, "\x1b[6n", 4) != 4) return -1; /* Read the response: ESC [ rows ; cols R */ while (i < sizeof(buf)-1) { if (read(ifd,buf+i,1) != 1) break; if (buf[i] == 'R') break; i++; } buf[i] = '\0'; /* Parse it. */ if (buf[0] != ESC || buf[1] != '[') return -1; if (sscanf(buf+2,"%d;%d",rows,cols) != 2) return -1; return 0; } /* Try to get the number of columns in the current terminal. If the ioctl() * call fails the function will try to query the terminal itself. * Returns 0 on success, -1 on error. */ int getWindowSize(int ifd, int ofd, int *rows, int *cols) { struct winsize ws; if (ioctl(1, TIOCGWINSZ, &ws) == -1 || ws.ws_col == 0) { /* ioctl() failed. Try to query the terminal itself. */ int orig_row, orig_col, retval; /* Get the initial position so we can restore it later. */ retval = getCursorPosition(ifd,ofd,&orig_row,&orig_col); if (retval == -1) goto failed; /* Go to right/bottom margin and get position. */ if (write(ofd,"\x1b[999C\x1b[999B",12) != 12) goto failed; retval = getCursorPosition(ifd,ofd,rows,cols); if (retval == -1) goto failed; /* Restore position. */ char seq[32]; snprintf(seq,32,"\x1b[%d;%dH",orig_row,orig_col); if (write(ofd,seq,strlen(seq)) == -1) { /* Can't recover... */ } return 0; } else { *cols = ws.ws_col; *rows = ws.ws_row; return 0; } failed: return -1; } /* ====================== Syntax highlight color scheme ==================== */ int is_separator(int c) { return c == '\0' || isspace(c) || strchr(",.()+-/*=~%[];",c) != NULL; } /* Return true if the specified row last char is part of a multi line comment * that starts at this row or at one before, and does not end at the end * of the row but spawns to the next row. */ int editorRowHasOpenComment(erow *row) { if (row->hl && row->rsize && row->hl[row->rsize-1] == HL_MLCOMMENT && (row->rsize < 2 || (row->render[row->rsize-2] != '*' || row->render[row->rsize-1] != '/'))) return 1; return 0; } /* Set every byte of row->hl (that corresponds to every character in the line) * to the right syntax highlight type (HL_* defines). */ void editorUpdateSyntax(erow *row) { row->hl = realloc(row->hl,row->rsize); memset(row->hl,HL_NORMAL,row->rsize); if (E.syntax == NULL) return; /* No syntax, everything is HL_NORMAL. */ int i, prev_sep, in_string, in_comment; char *p; char **keywords = E.syntax->keywords; char *scs = E.syntax->singleline_comment_start; char *mcs = E.syntax->multiline_comment_start; char *mce = E.syntax->multiline_comment_end; /* Point to the first non-space char. */ p = row->render; i = 0; /* Current char offset */ while(*p && isspace(*p)) { p++; i++; } prev_sep = 1; /* Tell the parser if 'i' points to start of word. */ in_string = 0; /* Are we inside "" or '' ? */ in_comment = 0; /* Are we inside multi-line comment? */ /* If the previous line has an open comment, this line starts * with an open comment state. */ if (row->idx > 0 && editorRowHasOpenComment(&E.row[row->idx-1])) in_comment = 1; while(*p) { /* Handle // comments. */ if (prev_sep && *p == scs[0] && *(p+1) == scs[1]) { /* From here to end is a comment */ memset(row->hl+i,HL_COMMENT,row->size-i); return; } /* Handle multi line comments. */ if (in_comment) { row->hl[i] = HL_MLCOMMENT; if (*p == mce[0] && *(p+1) == mce[1]) { row->hl[i+1] = HL_MLCOMMENT; p += 2; i += 2; in_comment = 0; prev_sep = 1; continue; } else { prev_sep = 0; p++; i++; continue; } } else if (*p == mcs[0] && *(p+1) == mcs[1]) { row->hl[i] = HL_MLCOMMENT; row->hl[i+1] = HL_MLCOMMENT; p += 2; i += 2; in_comment = 1; prev_sep = 0; continue; } /* Handle "" and '' */ if (in_string) { row->hl[i] = HL_STRING; if (*p == '\\') { row->hl[i+1] = HL_STRING; p += 2; i += 2; prev_sep = 0; continue; } if (*p == in_string) in_string = 0; p++; i++; continue; } else { if (*p == '"' || *p == '\'') { in_string = *p; row->hl[i] = HL_STRING; p++; i++; prev_sep = 0; continue; } } /* Handle non printable chars. */ if (!isprint(*p)) { row->hl[i] = HL_NONPRINT; p++; i++; prev_sep = 0; continue; } /* Handle numbers */ if ((isdigit(*p) && (prev_sep || row->hl[i-1] == HL_NUMBER)) || (*p == '.' && i >0 && row->hl[i-1] == HL_NUMBER)) { row->hl[i] = HL_NUMBER; p++; i++; prev_sep = 0; continue; } /* Handle keywords and lib calls */ if (prev_sep) { int j; for (j = 0; keywords[j]; j++) { int klen = strlen(keywords[j]); int kw2 = keywords[j][klen-1] == '|'; if (kw2) klen--; if (!memcmp(p,keywords[j],klen) && is_separator(*(p+klen))) { /* Keyword */ memset(row->hl+i,kw2 ? HL_KEYWORD2 : HL_KEYWORD1,klen); p += klen; i += klen; break; } } if (keywords[j] != NULL) { prev_sep = 0; continue; /* We had a keyword match */ } } /* Not special chars */ prev_sep = is_separator(*p); p++; i++; } /* Propagate syntax change to the next row if the open commen * state changed. This may recursively affect all the following rows * in the file. */ int oc = editorRowHasOpenComment(row); if (row->hl_oc != oc && row->idx+1 < E.numrows) editorUpdateSyntax(&E.row[row->idx+1]); row->hl_oc = oc; } /* Maps syntax highlight token types to terminal colors. */ int editorSyntaxToColor(int hl) { switch(hl) { case HL_COMMENT: case HL_MLCOMMENT: return 36; /* cyan */ case HL_KEYWORD1: return 33; /* yellow */ case HL_KEYWORD2: return 32; /* green */ case HL_STRING: return 35; /* magenta */ case HL_NUMBER: return 31; /* red */ case HL_MATCH: return 34; /* blu */ default: return 37; /* white */ } } /* Select the syntax highlight scheme depending on the filename, * setting it in the global state E.syntax. */ void editorSelectSyntaxHighlight(char *filename) { for (unsigned int j = 0; j < HLDB_ENTRIES; j++) { struct editorSyntax *s = HLDB+j; unsigned int i = 0; while(s->filematch[i]) { char *p; int patlen = strlen(s->filematch[i]); if ((p = strstr(filename,s->filematch[i])) != NULL) { if (s->filematch[i][0] != '.' || p[patlen] == '\0') { E.syntax = s; return; } } i++; } } } /* ======================= Editor rows implementation ======================= */ /* Update the rendered version and the syntax highlight of a row. */ void editorUpdateRow(erow *row) { unsigned int tabs = 0, nonprint = 0; int j, idx; /* Create a version of the row we can directly print on the screen, * respecting tabs, substituting non printable characters with '?'. */ free(row->render); for (j = 0; j < row->size; j++) if (row->chars[j] == TAB) tabs++; unsigned long long allocsize = (unsigned long long) row->size + tabs*8 + nonprint*9 + 1; if (allocsize > UINT32_MAX) { printf("Some line of the edited file is too long for kilo\n"); exit(1); } row->render = malloc(row->size + tabs*8 + nonprint*9 + 1); idx = 0; for (j = 0; j < row->size; j++) { if (row->chars[j] == TAB) { row->render[idx++] = ' '; while((idx+1) % 8 != 0) row->render[idx++] = ' '; } else { row->render[idx++] = row->chars[j]; } } row->rsize = idx; row->render[idx] = '\0'; /* Update the syntax highlighting attributes of the row. */ editorUpdateSyntax(row); } /* Insert a row at the specified position, shifting the other rows on the bottom * if required. */ void editorInsertRow(int at, char *s, size_t len) { if (at > E.numrows) return; E.row = realloc(E.row,sizeof(erow)*(E.numrows+1)); if (at != E.numrows) { memmove(E.row+at+1,E.row+at,sizeof(E.row[0])*(E.numrows-at)); for (int j = at+1; j <= E.numrows; j++) E.row[j].idx++; } E.row[at].size = len; E.row[at].chars = malloc(len+1); memcpy(E.row[at].chars,s,len+1); E.row[at].hl = NULL; E.row[at].hl_oc = 0; E.row[at].render = NULL; E.row[at].rsize = 0; E.row[at].idx = at; editorUpdateRow(E.row+at); E.numrows++; E.dirty++; } /* Free row's heap allocated stuff. */ void editorFreeRow(erow *row) { free(row->render); free(row->chars); free(row->hl); } /* Remove the row at the specified position, shifting the remainign on the * top. */ void editorDelRow(int at) { erow *row; if (at >= E.numrows) return; row = E.row+at; editorFreeRow(row); memmove(E.row+at,E.row+at+1,sizeof(E.row[0])*(E.numrows-at-1)); for (int j = at; j < E.numrows-1; j++) E.row[j].idx++; E.numrows--; E.dirty++; } /* Turn the editor rows into a single heap-allocated string. * Returns the pointer to the heap-allocated string and populate the * integer pointed by 'buflen' with the size of the string, escluding * the final nulterm. */ char *editorRowsToString(int *buflen) { char *buf = NULL, *p; int totlen = 0; int j; /* Compute count of bytes */ for (j = 0; j < E.numrows; j++) totlen += E.row[j].size+1; /* +1 is for "\n" at end of every row */ *buflen = totlen; totlen++; /* Also make space for nulterm */ p = buf = malloc(totlen); for (j = 0; j < E.numrows; j++) { memcpy(p,E.row[j].chars,E.row[j].size); p += E.row[j].size; *p = '\n'; p++; } *p = '\0'; return buf; } /* Insert a character at the specified position in a row, moving the remaining * chars on the right if needed. */ void editorRowInsertChar(erow *row, int at, int c) { if (at > row->size) { /* Pad the string with spaces if the insert location is outside the * current length by more than a single character. */ int padlen = at-row->size; /* In the next line +2 means: new char and null term. */ row->chars = realloc(row->chars,row->size+padlen+2); memset(row->chars+row->size,' ',padlen); row->chars[row->size+padlen+1] = '\0'; row->size += padlen+1; } else { /* If we are in the middle of the string just make space for 1 new * char plus the (already existing) null term. */ row->chars = realloc(row->chars,row->size+2); memmove(row->chars+at+1,row->chars+at,row->size-at+1); row->size++; } row->chars[at] = c; editorUpdateRow(row); E.dirty++; } /* Append the string 's' at the end of a row */ void editorRowAppendString(erow *row, char *s, size_t len) { row->chars = realloc(row->chars,row->size+len+1); memcpy(row->chars+row->size,s,len); row->size += len; row->chars[row->size] = '\0'; editorUpdateRow(row); E.dirty++; } /* Delete the character at offset 'at' from the specified row. */ void editorRowDelChar(erow *row, int at) { if (row->size <= at) return; memmove(row->chars+at,row->chars+at+1,row->size-at); editorUpdateRow(row); row->size--; E.dirty++; } /* Insert the specified char at the current prompt position. */ void editorInsertChar(int c) { int filerow = E.rowoff+E.cy; int filecol = E.coloff+E.cx; erow *row = (filerow >= E.numrows) ? NULL : &E.row[filerow]; /* If the row where the cursor is currently located does not exist in our * logical representaion of the file, add enough empty rows as needed. */ if (!row) { while(E.numrows <= filerow) editorInsertRow(E.numrows,"",0); } row = &E.row[filerow]; editorRowInsertChar(row,filecol,c); if (E.cx == E.screencols-1) E.coloff++; else E.cx++; E.dirty++; } /* Inserting a newline is slightly complex as we have to handle inserting a * newline in the middle of a line, splitting the line as needed. */ void editorInsertNewline(void) { int filerow = E.rowoff+E.cy; int filecol = E.coloff+E.cx; erow *row = (filerow >= E.numrows) ? NULL : &E.row[filerow]; if (!row) { if (filerow == E.numrows) { editorInsertRow(filerow,"",0); goto fixcursor; } return; } /* If the cursor is over the current line size, we want to conceptually * think it's just over the last character. */ if (filecol >= row->size) filecol = row->size; if (filecol == 0) { editorInsertRow(filerow,"",0); } else { /* We are in the middle of a line. Split it between two rows. */ editorInsertRow(filerow+1,row->chars+filecol,row->size-filecol); row = &E.row[filerow]; row->chars[filecol] = '\0'; row->size = filecol; editorUpdateRow(row); } fixcursor: if (E.cy == E.screenrows-1) { E.rowoff++; } else { E.cy++; } E.cx = 0; E.coloff = 0; } /* Delete the char at the current prompt position. */ void editorDelChar() { int filerow = E.rowoff+E.cy; int filecol = E.coloff+E.cx; erow *row = (filerow >= E.numrows) ? NULL : &E.row[filerow]; if (!row || (filecol == 0 && filerow == 0)) return; if (filecol == 0) { /* Handle the case of column 0, we need to move the current line * on the right of the previous one. */ filecol = E.row[filerow-1].size; editorRowAppendString(&E.row[filerow-1],row->chars,row->size); editorDelRow(filerow); row = NULL; if (E.cy == 0) E.rowoff--; else E.cy--; E.cx = filecol; if (E.cx >= E.screencols) { int shift = (E.screencols-E.cx)+1; E.cx -= shift; E.coloff += shift; } } else { editorRowDelChar(row,filecol-1); if (E.cx == 0 && E.coloff) E.coloff--; else E.cx--; } if (row) editorUpdateRow(row); E.dirty++; } /* Load the specified program in the editor memory and returns 0 on success * or 1 on error. */ int editorOpen(char *filename) { FILE *fp; E.dirty = 0; free(E.filename); size_t fnlen = strlen(filename)+1; E.filename = malloc(fnlen); memcpy(E.filename,filename,fnlen); fp = fopen(filename,"r"); if (!fp) { if (errno != ENOENT) { perror("Opening file"); exit(1); } return 1; } char *line = NULL; size_t linecap = 0; ssize_t linelen; while((linelen = getline(&line,&linecap,fp)) != -1) { if (linelen && (line[linelen-1] == '\n' || line[linelen-1] == '\r')) line[--linelen] = '\0'; editorInsertRow(E.numrows,line,linelen); } free(line); fclose(fp); E.dirty = 0; return 0; } /* Save the current file on disk. Return 0 on success, 1 on error. */ int editorSave(void) { int len; char *buf = editorRowsToString(&len); int fd = open(E.filename,O_RDWR|O_CREAT,0644); if (fd == -1) goto writeerr; /* Use truncate + a single write(2) call in order to make saving * a bit safer, under the limits of what we can do in a small editor. */ if (ftruncate(fd,len) == -1) goto writeerr; if (write(fd,buf,len) != len) goto writeerr; close(fd); free(buf); E.dirty = 0; editorSetStatusMessage("%d bytes written on disk", len); return 0; writeerr: free(buf); if (fd != -1) close(fd); editorSetStatusMessage("Can't save! I/O error: %s",strerror(errno)); return 1; } /* ============================= Terminal update ============================ */ /* We define a very simple "append buffer" structure, that is an heap * allocated string where we can append to. This is useful in order to * write all the escape sequences in a buffer and flush them to the standard * output in a single call, to avoid flickering effects. */ struct abuf { char *b; int len; }; #define ABUF_INIT {NULL,0} void abAppend(struct abuf *ab, const char *s, int len) { char *new = realloc(ab->b,ab->len+len); if (new == NULL) return; memcpy(new+ab->len,s,len); ab->b = new; ab->len += len; } void abFree(struct abuf *ab) { free(ab->b); } /* This function writes the whole screen using VT100 escape characters * starting from the logical state of the editor in the global state 'E'. */ void editorRefreshScreen(void) { int y; erow *r; char buf[32]; struct abuf ab = ABUF_INIT; abAppend(&ab,"\x1b[?25l",6); /* Hide cursor. */ abAppend(&ab,"\x1b[H",3); /* Go home. */ for (y = 0; y < E.screenrows; y++) { int filerow = E.rowoff+y; if (filerow >= E.numrows) { if (E.numrows == 0 && y == E.screenrows/3) { char welcome[80]; int welcomelen = snprintf(welcome,sizeof(welcome), "Kilo editor -- verison %s\x1b[0K\r\n", KILO_VERSION); int padding = (E.screencols-welcomelen)/2; if (padding) { abAppend(&ab,"~",1); padding--; } while(padding--) abAppend(&ab," ",1); abAppend(&ab,welcome,welcomelen); } else { abAppend(&ab,"~\x1b[0K\r\n",7); } continue; } r = &E.row[filerow]; int len = r->rsize - E.coloff; int current_color = -1; if (len > 0) { if (len > E.screencols) len = E.screencols; char *c = r->render+E.coloff; unsigned char *hl = r->hl+E.coloff; int j; for (j = 0; j < len; j++) { if (hl[j] == HL_NONPRINT) { char sym; abAppend(&ab,"\x1b[7m",4); if (c[j] <= 26) sym = '@'+c[j]; else sym = '?'; abAppend(&ab,&sym,1); abAppend(&ab,"\x1b[0m",4); } else if (hl[j] == HL_NORMAL) { if (current_color != -1) { abAppend(&ab,"\x1b[39m",5); current_color = -1; } abAppend(&ab,c+j,1); } else { int color = editorSyntaxToColor(hl[j]); if (color != current_color) { char buf[16]; int clen = snprintf(buf,sizeof(buf),"\x1b[%dm",color); current_color = color; abAppend(&ab,buf,clen); } abAppend(&ab,c+j,1); } } } abAppend(&ab,"\x1b[39m",5); abAppend(&ab,"\x1b[0K",4); abAppend(&ab,"\r\n",2); } /* Create a two rows status. First row: */ abAppend(&ab,"\x1b[0K",4); abAppend(&ab,"\x1b[7m",4); char status[80], rstatus[80]; int len = snprintf(status, sizeof(status), "%.20s - %d lines %s", E.filename, E.numrows, E.dirty ? "(modified)" : ""); int rlen = snprintf(rstatus, sizeof(rstatus), "%d/%d",E.rowoff+E.cy+1,E.numrows); if (len > E.screencols) len = E.screencols; abAppend(&ab,status,len); while(len < E.screencols) { if (E.screencols - len == rlen) { abAppend(&ab,rstatus,rlen); break; } else { abAppend(&ab," ",1); len++; } } abAppend(&ab,"\x1b[0m\r\n",6); /* Second row depends on E.statusmsg and the status message update time. */ abAppend(&ab,"\x1b[0K",4); int msglen = strlen(E.statusmsg); if (msglen && time(NULL)-E.statusmsg_time < 5) abAppend(&ab,E.statusmsg,msglen <= E.screencols ? msglen : E.screencols); /* Put cursor at its current position. Note that the horizontal position * at which the cursor is displayed may be different compared to 'E.cx' * because of TABs. */ int j; int cx = 1; int filerow = E.rowoff+E.cy; erow *row = (filerow >= E.numrows) ? NULL : &E.row[filerow]; if (row) { for (j = E.coloff; j < (E.cx+E.coloff); j++) { if (j < row->size && row->chars[j] == TAB) cx += 7-((cx)%8); cx++; } } snprintf(buf,sizeof(buf),"\x1b[%d;%dH",E.cy+1,cx); abAppend(&ab,buf,strlen(buf)); abAppend(&ab,"\x1b[?25h",6); /* Show cursor. */ write(STDOUT_FILENO,ab.b,ab.len); abFree(&ab); } /* Set an editor status message for the second line of the status, at the * end of the screen. */ void editorSetStatusMessage(const char *fmt, ...) { va_list ap; va_start(ap,fmt); vsnprintf(E.statusmsg,sizeof(E.statusmsg),fmt,ap); va_end(ap); E.statusmsg_time = time(NULL); } /* =============================== Find mode ================================ */ #define KILO_QUERY_LEN 256 void editorFind(int fd) { char query[KILO_QUERY_LEN+1] = {0}; int qlen = 0; int last_match = -1; /* Last line where a match was found. -1 for none. */ int find_next = 0; /* if 1 search next, if -1 search prev. */ int saved_hl_line = -1; /* No saved HL */ char *saved_hl = NULL; #define FIND_RESTORE_HL do { \ if (saved_hl) { \ memcpy(E.row[saved_hl_line].hl,saved_hl, E.row[saved_hl_line].rsize); \ free(saved_hl); \ saved_hl = NULL; \ } \ } while (0) /* Save the cursor position in order to restore it later. */ int saved_cx = E.cx, saved_cy = E.cy; int saved_coloff = E.coloff, saved_rowoff = E.rowoff; while(1) { editorSetStatusMessage( "Search: %s (Use ESC/Arrows/Enter)", query); editorRefreshScreen(); int c = editorReadKey(fd); if (c == DEL_KEY || c == CTRL_H || c == BACKSPACE) { if (qlen != 0) query[--qlen] = '\0'; last_match = -1; } else if (c == ESC || c == ENTER) { if (c == ESC) { E.cx = saved_cx; E.cy = saved_cy; E.coloff = saved_coloff; E.rowoff = saved_rowoff; } FIND_RESTORE_HL; editorSetStatusMessage(""); return; } else if (c == ARROW_RIGHT || c == ARROW_DOWN) { find_next = 1; } else if (c == ARROW_LEFT || c == ARROW_UP) { find_next = -1; } else if (isprint(c)) { if (qlen < KILO_QUERY_LEN) { query[qlen++] = c; query[qlen] = '\0'; last_match = -1; } } /* Search occurrence. */ if (last_match == -1) find_next = 1; if (find_next) { char *match = NULL; int match_offset = 0; int i, current = last_match; for (i = 0; i < E.numrows; i++) { current += find_next; if (current == -1) current = E.numrows-1; else if (current == E.numrows) current = 0; match = strstr(E.row[current].render,query); if (match) { match_offset = match-E.row[current].render; break; } } find_next = 0; /* Highlight */ FIND_RESTORE_HL; if (match) { erow *row = &E.row[current]; last_match = current; if (row->hl) { saved_hl_line = current; saved_hl = malloc(row->rsize); memcpy(saved_hl,row->hl,row->rsize); memset(row->hl+match_offset,HL_MATCH,qlen); } E.cy = 0; E.cx = match_offset; E.rowoff = current; E.coloff = 0; /* Scroll horizontally as needed. */ if (E.cx > E.screencols) { int diff = E.cx - E.screencols; E.cx -= diff; E.coloff += diff; } } } } } /* ========================= Editor events handling ======================== */ /* Handle cursor position change because arrow keys were pressed. */ void editorMoveCursor(int key) { int filerow = E.rowoff+E.cy; int filecol = E.coloff+E.cx; int rowlen; erow *row = (filerow >= E.numrows) ? NULL : &E.row[filerow]; switch(key) { case ARROW_LEFT: if (E.cx == 0) { if (E.coloff) { E.coloff--; } else { if (filerow > 0) { E.cy--; E.cx = E.row[filerow-1].size; if (E.cx > E.screencols-1) { E.coloff = E.cx-E.screencols+1; E.cx = E.screencols-1; } } } } else { E.cx -= 1; } break; case ARROW_RIGHT: if (row && filecol < row->size) { if (E.cx == E.screencols-1) { E.coloff++; } else { E.cx += 1; } } else if (row && filecol == row->size) { E.cx = 0; E.coloff = 0; if (E.cy == E.screenrows-1) { E.rowoff++; } else { E.cy += 1; } } break; case ARROW_UP: if (E.cy == 0) { if (E.rowoff) E.rowoff--; } else { E.cy -= 1; } break; case ARROW_DOWN: if (filerow < E.numrows) { if (E.cy == E.screenrows-1) { E.rowoff++; } else { E.cy += 1; } } break; } /* Fix cx if the current line has not enough chars. */ filerow = E.rowoff+E.cy; filecol = E.coloff+E.cx; row = (filerow >= E.numrows) ? NULL : &E.row[filerow]; rowlen = row ? row->size : 0; if (filecol > rowlen) { E.cx -= filecol-rowlen; if (E.cx < 0) { E.coloff += E.cx; E.cx = 0; } } } /* Process events arriving from the standard input, which is, the user * is typing stuff on the terminal. */ #define KILO_QUIT_TIMES 3 void editorProcessKeypress(int fd) { /* When the file is modified, requires Ctrl-q to be pressed N times * before actually quitting. */ static int quit_times = KILO_QUIT_TIMES; int c = editorReadKey(fd); switch(c) { case ENTER: /* Enter */ editorInsertNewline(); break; case CTRL_C: /* Ctrl-c */ /* We ignore ctrl-c, it can't be so simple to lose the changes * to the edited file. */ break; case CTRL_Q: /* Ctrl-q */ /* Quit if the file was already saved. */ if (E.dirty && quit_times) { editorSetStatusMessage("WARNING!!! File has unsaved changes. " "Press Ctrl-Q %d more times to quit.", quit_times); quit_times--; return; } exit(0); break; case CTRL_S: /* Ctrl-s */ editorSave(); break; case CTRL_F: editorFind(fd); break; case BACKSPACE: /* Backspace */ case CTRL_H: /* Ctrl-h */ case DEL_KEY: editorDelChar(); break; case PAGE_UP: case PAGE_DOWN: if (c == PAGE_UP && E.cy != 0) E.cy = 0; else if (c == PAGE_DOWN && E.cy != E.screenrows-1) E.cy = E.screenrows-1; { int times = E.screenrows; while(times--) editorMoveCursor(c == PAGE_UP ? ARROW_UP: ARROW_DOWN); } break; case ARROW_UP: case ARROW_DOWN: case ARROW_LEFT: case ARROW_RIGHT: editorMoveCursor(c); break; case CTRL_L: /* ctrl+l, clear screen */ /* Just refresht the line as side effect. */ break; case ESC: /* Nothing to do for ESC in this mode. */ break; default: editorInsertChar(c); break; } quit_times = KILO_QUIT_TIMES; /* Reset it to the original value. */ } int editorFileWasModified(void) { return E.dirty; } void updateWindowSize(void) { if (getWindowSize(STDIN_FILENO,STDOUT_FILENO, &E.screenrows,&E.screencols) == -1) { perror("Unable to query the screen for size (columns / rows)"); exit(1); } E.screenrows -= 2; /* Get room for status bar. */ } void handleSigWinCh(int unused __attribute__((unused))) { updateWindowSize(); if (E.cy > E.screenrows) E.cy = E.screenrows - 1; if (E.cx > E.screencols) E.cx = E.screencols - 1; editorRefreshScreen(); } void initEditor(void) { E.cx = 0; E.cy = 0; E.rowoff = 0; E.coloff = 0; E.numrows = 0; E.row = NULL; E.dirty = 0; E.filename = NULL; E.syntax = NULL; updateWindowSize(); signal(SIGWINCH, handleSigWinCh); } int main(int argc, char **argv) { if (argc != 2) { fprintf(stderr,"Usage: kilo <filename>\n"); exit(1); } initEditor(); editorSelectSyntaxHighlight(argv[1]); editorOpen(argv[1]); enableRawMode(STDIN_FILENO); editorSetStatusMessage( "HELP: Ctrl-S = save | Ctrl-Q = quit | Ctrl-F = find"); while(1) { editorRefreshScreen(); editorProcessKeypress(STDIN_FILENO); } return 0; }
the_stack_data/11074079.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #define USERNAME "admin" #define PASSWORD "NO321" #define MAX 50 typedef struct items { char product_code[MAX]; char product_name[MAX]; int rate; int quantity; float weight; char description[MAX]; } ITEM; ITEM item; // start main funcion int main() { login(); return 0; } //Login Function void login() { printf("\t\t\t\tLogin \n"); printf("\t\t\t*************************\n"); char username[15], password[10]; printf("\t\t\tEnter username: "); scanf("%s", username); printf("\t\t\tEnter password: "); scanf("%s", password); while (1) { if ((strcmp(USERNAME, username)) == 0 && (strcmp(PASSWORD, password)) == 0) { printf("\n\t\t\t\t\tLogin successfully!!"); options(); } else { printf("\n\t\t\tsorry you enter the worng information.\n"); printf("\n\t\t\tPlease try again.\n"); login(); break; } } } //function to insert the product to the file-1 void addProduct() { printf("\t\t\t\t\t\t\tAdd Product\n"); printf("\t\t\t\t\t\t************************\n"); FILE *file; char code[MAX]; char x[4] = {0}; int a; file = fopen("Record.txt", "ab"); printf("\n\t\t\t\t\tEnter the \" end \" to exit for here"); printf("\n\t\t\t\t\tEnter Product code: "); scanf("%s", code); if (strcmp(code, "end") == 0) { options(); } int available; available = isCodeAvailable(code); // return 1 if code id found and return 0 if the code is not available. if (available == 1) { printf("\n\t\t\t\t\t\t* Product is already there.\n"); options(); } strcpy(item.product_code, code); // copy the code to the structure item printf("\t\t\t\t\tEnter Product Name: "); scanf("%s", item.product_name); printf("\n\t\t\t\t\tEnter Product Rate: "); a = check_rate(); item.rate = a; printf("\n\t\t\t\t\tEnter Quantity: "); scanf("%d", &item.quantity); printf("\n\t\t\t\t\tEnter product Weight(in gram): "); scanf("%f", &item.weight); printf("\n\t\t\t\t\tEnter product descriptions: "); scanf(" %s", item.description); fwrite(&item, sizeof(item), 1, file); fclose(file); } // End of addproduct function void display() { printf("\t\t\t\t\t\t\tAvailable Products\n"); printf("\t\t\t\t\t\t***************************\n"); FILE *file; int count = 0; file = fopen("Record.txt", "rb"); printf("\t\t\t--------------------------------------------------------------------------------\n"); printf("\t\t\tCODE\t||\tNAME\t||\tRATE\t||\tQUANTITY\t||\tWEIGHT\t||\tDESCRIPTION\n"); printf("\t\t\t---------------------------------------------------------------------------------\n"); if (file == NULL) { printf("\t\t\t\tNo Product is inserted."); options(); } while (fread(&item, sizeof(item), 1, file)) { printf("\t\t\t%s\t||\t%s\t||\t%d\t||\t %d\t\t||\t%.2f\t||\t%s \n", item.product_code, item.product_name, item.rate, item.quantity, item.weight, item.description); count++; } printf("\t\t\t------------------------------------------------------------------------------------------------------\n"); if (count == 0) { printf("\n\t\t\t\t\t\t* Product is not available.\n"); } fclose(file); } // search function start void search() { FILE *file; char code[MAX], product[MAX]; int available; printf("\t\t\t\t\tEnter \"end\" for back to menu.\n"); printf("\t\t\t\t\tEnter the Product code to search: "); scanf("%s", code); if (strcmp(code, "end") == 0) { options(); } printf("\t\t\t\t\t\tProduct information\n"); printf("\t\t\t\t\t\t**********************\n"); available = isCodeAvailable(code); if (available == 0) { printf("\n\t\t\t\t\t\tProduct code is not found.\n"); } else { file = fopen("Record.txt", "rb"); while (fread(&item, sizeof(item), 1, file)) { strcpy(product, item.product_code); if (strcmp(product, code) == 0) { printf("\n\t\t\t\t\t\tProduct Code: %s", item.product_code); printf("\n\t\t\t\t\t\tName of Product: %s", item.product_name); printf("\n\t\t\t\t\t\tRate of Product: %d", item.rate); printf("\n\t\t\t\t\t\tProduct Weight: %.2f", item.weight); printf("\n\t\t\t\t\t\tProduct Description: %s\n", item.description); } } fclose(file); } } // function to check if the given product code is available int isCodeAvailable(char code[]) { FILE *file; file = fopen("Record.txt", "r"); while (!feof(file)) { fread(&item, sizeof(item), 1, file); if (strcmp(code, item.product_code) == 0) { fclose(file); return 1; } } fclose(file); return 0; } // check the quentity during the sale product. int isProductAvailable(int quantity) { FILE *file; file = fopen("Record.txt", "r"); while (!feof(file)) { fread(&item, sizeof(item), 1, file); if (item.quantity >= quantity) { fclose(file); return 1; } } fclose(file); return 0; } // function to check the choice is integer or not int get_int(int input) { char ch; while (scanf("%d", &input) != 1) { while ((ch = getchar()) != '\n') { } printf("\n\t\t\t\t\t\tMust be positive integer.\n"); printf("\t\t\t\t\tEnter Positive integer value, such as 1,2,3,4: "); } return input; } int check_rate() { int input; char ch; while (scanf("%d", &input) != 1) { while ((ch = getchar()) != '\n') { } printf("\n\t\t\t\t\t\tRate be positive Integer.\n"); printf("\t\t\t\t\tEnter rate of the product in positive integer: "); } return input; } // Delete function start void deleteRecord() { FILE *file1, *file2; char code[MAX], product[MAX]; int available; file1 = fopen("Record.txt", "rb"); display(); printf("\n\t\t\t\t\t\tEnter the Product code to delete: "); scanf("%s", code); available = isCodeAvailable(code); if (available == 0) { printf("\n\t\t\t\t\t\t* Product is not available.\n"); } else { file2 = fopen("tempfile.txt", "wb"); while (fread(&item, sizeof(item), 1, file1)) { strcpy(product, item.product_code); if (strcmp(product, code) != 0) { fwrite(&item, sizeof(item), 1, file2); } } fclose(file1); fclose(file2); file1 = fopen("Record.txt", "wb"); file2 = fopen("tempfile.txt", "rb"); while (fread(&item, sizeof(item), 1, file2)) { fwrite(&item, sizeof(item), 1, file1); } printf("\n\t\t\t\t\t\tProduct deleted sucessfully!!\n\n"); fclose(file1); fclose(file2); } } // Function to delete the Products. void updateProduct() { printf("\t\t\t\t\t\t\tUpdate Product\n"); printf("\t\t\t\t\t\t************************\n"); FILE *file1, *file2; char code[MAX], product[MAX]; int available; printf("enter the Product code to update the record:"); scanf("%s", code); available = isCodeAvailable(code); if (available == 0) { printf("\n\t\t\t\t\t\t* no Product is found for update.\n"); } else { file1 = fopen("Record.txt", "rb"); file2 = fopen("tempfile.txt", "wb"); while (fread(&item, sizeof(item), 1, file1)) { strcpy(product, item.product_code); if (strcmp(product, code) != 0) { fwrite(&item, sizeof(item), 1, file2); } else { printf("\n Updating data for the privious product %s\n", code); printf("enter Product Name: "); scanf("%s", item.product_name); printf("Enter Product Rate: "); scanf("%d", &item.rate); printf("Enter Quantity: "); scanf("%d", &item.quantity); printf("Enter weight: "); scanf("%f", item.weight); printf("enter product descriptions: "); scanf("%s", item.description); printf("\n\n"); fwrite(&item, sizeof(item), 1, file2); } } fclose(file1); fclose(file2); file1 = fopen("Record.txt", "wb"); file2 = fopen("tempfile.txt", "rb"); while (fread(&item, sizeof(item), 1, file2)) { fwrite(&item, sizeof(item), 1, file1); } fclose(file1); fclose(file2); } } //close function void close_app() { char choice; printf("\n Do you want to close the applications?(Y/y)"); scanf("%s", &choice); if (choice == 'Y' || choice == 'y') { exit(0); } } //Sale function void saleProduct() { printf("\t\t\t\t\t\t\tSale Product\n"); printf("\t\t\t\t\t\t************************\n"); char x[4] = {0}; // for item code int q = 0, size = 0, i = 1; int total = 0, gtotal = 0; FILE *file; file = fopen("Record.txt", "r+b"); rewind(file); int availableC, availableQ; printf("\t\t\t\t\tEnter \" end \" to finish input"); int qty = item.quantity; while (1) { printf(" "); printf(" "); printf("\n\t\t\t\tEnter Item Code:"); scanf("%s", x); if (strcmp(x, "end") == 0) { system("clear"); break; } availableC = isCodeAvailable(x); if (availableC == 0) { printf("\n\t\t\t\t\t\t* no Product is found.\n"); options(); } printf("\t\t\t\tEnter Quantity:"); scanf("%d", &q); qty = qty - q; if (qty < 0) { printf("\n\t\t\t\t\t\t* Out of stock.\n"); break; } rewind(file); while (fread(&item, sizeof(item), 1, file)) { if ((strcmp(item.product_code, x) == 0)) { total = item.rate * q; printf("\n\t\t\t%d ", i); printf("\t\t\t%s ", item.product_name); printf("\t\t\t%d ", q); printf("\t\t\t%d ", item.rate); printf("\t\t\t%d ", total); gtotal = gtotal + total; size = sizeof(item); item.quantity = item.quantity - q; i++; fseek(file, -size, SEEK_CUR); fwrite(&item, sizeof(item), 1, file); break; } } } if (gtotal != 0) { printf("\n\t\t\t\t\t\tTOTAL AMOUNT = NRs. %d", gtotal); } fclose(file); // options(); } void options() { printf("\n\n\t\t\t--SPL Departmental Store Mangaement PROJECT--\n"); int num, choice; while (1) { printf("\n\t\t\t1. Insert\n\t\t\t2. Display"); printf("\n\t\t\t3. Search\n\t\t\t4. Delete\n\t\t\t5. Update"); printf("\n\t\t\t6. close\n\t\t\t7. Sale product\n\n"); printf("\t\t\t\tEnter your choice: "); choice = get_int(num); switch (choice) { case 1: addProduct(); break; case 2: display(); break; case 3: search(); break; case 4: deleteRecord(); break; case 5: updateProduct(); break; case 6: close_app(); break; case 7: saleProduct(); break; default: printf("\t\t* Invalid choice.\n"); break; } } }
the_stack_data/723967.c
#include<stdio.h> int a[1300001]={0}; int main() { int n,temp,i,count=0,max=0; scanf("%d",&n); for(i=0;i<n;i++) { scanf("%d",&temp); a[temp]++; } for(i=0;i<1300000;i++) { if(max<a[i]) { max=a[i]; count=i; } } printf("%d\n%d\n",count,max); return 0; }
the_stack_data/63524.c
// -*- C++ -*- The GNU C++ exception personality routine. // Copyright (C) 2001-2015 Free Software Foundation, Inc. // // This file is part of GCC. // // GCC is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 3, or (at your option) // any later version. // // GCC is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // Under Section 7 of GPL version 3, you are granted additional // permissions described in the GCC Runtime Library Exception, version // 3.1, as published by the Free Software Foundation. // You should have received a copy of the GNU General Public License and // a copy of the GCC Runtime Library Exception along with this program; // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see // <http://www.gnu.org/licenses/>. // Cobbled together by djc from different files: // * gcc/libstdc++-v3/libsupc++/eh_personality.cc // * gcc/libgcc/unwind-pe.h // ... and probably a few others? #include <limits.h> #include <stdint.h> #include <stdbool.h> #include <float.h> #include <stdlib.h> #include <stdio.h> #include "unwind.h" /* * Pointer encodings documented at: * http://refspecs.freestandards.org/LSB_1.3.0/gLSB/gLSB/ehframehdr.html */ #define DW_EH_PE_omit 0xff /* no data follows */ #define DW_EH_PE_absptr 0x00 #define DW_EH_PE_uleb128 0x01 #define DW_EH_PE_udata2 0x02 #define DW_EH_PE_udata4 0x03 #define DW_EH_PE_udata8 0x04 #define DW_EH_PE_sleb128 0x09 #define DW_EH_PE_sdata2 0x0A #define DW_EH_PE_sdata4 0x0B #define DW_EH_PE_sdata8 0x0C #define DW_EH_PE_pcrel 0x10 #define DW_EH_PE_textrel 0x20 #define DW_EH_PE_datarel 0x30 #define DW_EH_PE_funcrel 0x40 #define DW_EH_PE_aligned 0x50 #define DW_EH_PE_indirect 0x80 /* gcc extension */ typedef unsigned _Unwind_Ptr __attribute__((__mode__(__pointer__))); typedef unsigned _Unwind_Internal_Ptr __attribute__((__mode__(__pointer__))); typedef unsigned _Unwind_Exception_Class __attribute__((__mode__(__DI__))); #if __SIZEOF_LONG__ >= __SIZEOF_POINTER__ typedef long _sleb128_t; typedef unsigned long _uleb128_t; #elif __SIZEOF_LONG_LONG__ >= __SIZEOF_POINTER__ typedef long long _sleb128_t; typedef unsigned long long _uleb128_t; #else # error "What type shall we use for _sleb128_t?" #endif static _Unwind_Ptr base_of_encoded_value(unsigned char encoding, struct _Unwind_Context *context) { if (encoding == DW_EH_PE_omit) return 0; switch (encoding & 0x70) { case DW_EH_PE_absptr: case DW_EH_PE_pcrel: case DW_EH_PE_aligned: return 0; // No support for textrel or datarel, apparently? #if 0 case DW_EH_PE_textrel: return _Unwind_GetTextRelBase(context); case DW_EH_PE_datarel: return _Unwind_GetDataRelBase(context); #endif case DW_EH_PE_funcrel: return _Unwind_GetRegionStart(context); } abort(); } static const unsigned char * read_uleb128(const unsigned char *p, _uleb128_t *val) { unsigned int shift = 0; unsigned char byte; _uleb128_t result; result = 0; do { byte = *p++; result |= ((_uleb128_t)byte & 0x7f) << shift; shift += 7; } while (byte & 0x80); *val = result; return p; } static const unsigned char * read_sleb128(const unsigned char *p, _sleb128_t *val) { unsigned int shift = 0; unsigned char byte; _uleb128_t result; result = 0; do { byte = *p++; result |= ((_uleb128_t)byte & 0x7f) << shift; shift += 7; } while (byte & 0x80); /* Sign-extend a negative value. */ if (shift < 8 * sizeof(result) && (byte & 0x40) != 0) result |= -(((_uleb128_t) 1L) << shift); *val = (_sleb128_t) result; return p; } static const unsigned char * read_encoded_value_with_base(unsigned char encoding, _Unwind_Ptr base, const unsigned char *p, _Unwind_Ptr *val) { union unaligned { void *ptr; unsigned u2 __attribute__ ((mode (HI))); unsigned u4 __attribute__ ((mode (SI))); unsigned u8 __attribute__ ((mode (DI))); signed s2 __attribute__ ((mode (HI))); signed s4 __attribute__ ((mode (SI))); signed s8 __attribute__ ((mode (DI))); } __attribute__((__packed__)); const union unaligned *u = (const union unaligned *) p; _Unwind_Internal_Ptr result; if (encoding == DW_EH_PE_aligned) { _Unwind_Internal_Ptr a = (_Unwind_Internal_Ptr) p; a = (a + sizeof (void *) - 1) & - sizeof(void *); result = *(_Unwind_Internal_Ptr *) a; p = (const unsigned char *) (_Unwind_Internal_Ptr) (a + sizeof (void *)); } else { switch (encoding & 0x0f) { case DW_EH_PE_absptr: result = (_Unwind_Internal_Ptr) u->ptr; p += sizeof (void *); break; case DW_EH_PE_uleb128: { _uleb128_t tmp; p = read_uleb128(p, &tmp); result = (_Unwind_Internal_Ptr) tmp; } break; case DW_EH_PE_sleb128: { _sleb128_t tmp; p = read_sleb128 (p, &tmp); result = (_Unwind_Internal_Ptr) tmp; } break; case DW_EH_PE_udata2: result = u->u2; p += 2; break; case DW_EH_PE_udata4: result = u->u4; p += 4; break; case DW_EH_PE_udata8: result = u->u8; p += 8; break; case DW_EH_PE_sdata2: result = u->s2; p += 2; break; case DW_EH_PE_sdata4: result = u->s4; p += 4; break; case DW_EH_PE_sdata8: result = u->s8; p += 8; break; default: abort(); } if (result != 0) { result += ((encoding & 0x70) == DW_EH_PE_pcrel ? (_Unwind_Internal_Ptr) u : base); if (encoding & DW_EH_PE_indirect) result = *(_Unwind_Internal_Ptr*) result; } } *val = result; return p; } static inline const unsigned char * read_encoded_value(struct _Unwind_Context *context, unsigned char encoding, const unsigned char *p, _Unwind_Ptr *val) { return read_encoded_value_with_base(encoding, base_of_encoded_value(encoding, context), p, val); } /* read a uleb128 encoded value and advance pointer */ static uintptr_t readULEB128(const uint8_t** data) { uintptr_t result = 0; uintptr_t shift = 0; unsigned char byte; const uint8_t* p = *data; do { byte = *p++; result |= (byte & 0x7f) << shift; shift += 7; } while (byte & 0x80); *data = p; return result; } /* read a pointer encoded value and advance pointer */ static uintptr_t readEncodedPointer(const uint8_t** data, uint8_t encoding) { const uint8_t* p = *data; uintptr_t result = 0; if (encoding == DW_EH_PE_omit) return 0; /* first get value */ switch (encoding & 0x0F) { case DW_EH_PE_absptr: result = *((const uintptr_t*) p); p += sizeof(uintptr_t); break; case DW_EH_PE_uleb128: result = readULEB128(&p); break; case DW_EH_PE_udata2: result = *((const uint16_t*) p); p += sizeof(uint16_t); break; case DW_EH_PE_udata4: result = *((const uint32_t*) p); p += sizeof(uint32_t); break; case DW_EH_PE_udata8: result = *((const uint64_t*) p); p += sizeof(uint64_t); break; case DW_EH_PE_sdata2: result = *((const int16_t*) p); p += sizeof(int16_t); break; case DW_EH_PE_sdata4: result = *((const int32_t*) p); p += sizeof(int32_t); break; case DW_EH_PE_sdata8: result = *((const int64_t*) p); p += sizeof(int64_t); break; case DW_EH_PE_sleb128: default: /* not supported */ abort(); break; } /* then add relative offset */ switch (encoding & 0x70) { case DW_EH_PE_absptr: /* do nothing */ break; case DW_EH_PE_pcrel: result += (uintptr_t)(*data); break; case DW_EH_PE_textrel: case DW_EH_PE_datarel: case DW_EH_PE_funcrel: case DW_EH_PE_aligned: default: /* not supported */ abort(); break; } /* then apply indirection */ if (encoding & DW_EH_PE_indirect) { result = *((const uintptr_t*) result); } *data = p; return result; } struct lsda_header_info { _Unwind_Ptr Start; _Unwind_Ptr LPStart; _Unwind_Ptr ttype_base; const unsigned char *TType; const unsigned char *action_table; unsigned char ttype_encoding; unsigned char call_site_encoding; }; static const unsigned char * parse_lsda_header(struct _Unwind_Context *context, const unsigned char *p, struct lsda_header_info *info) { _uleb128_t tmp; unsigned char lpstart_encoding; info->Start = (context ? _Unwind_GetRegionStart(context) : 0); // Find @LPStart, the base to which landing pad offsets are relative. lpstart_encoding = *p++; if (lpstart_encoding != DW_EH_PE_omit) p = read_encoded_value(context, lpstart_encoding, p, &info->LPStart); else info->LPStart = info->Start; // Find @TType, the base of the handler and exception spec type data. info->ttype_encoding = *p++; if (info->ttype_encoding != DW_EH_PE_omit) { p = read_uleb128 (p, &tmp); info->TType = p + tmp; } else { info->TType = 0; } // The encoding and length of the call-site table; the action table // immediately follows. info->call_site_encoding = *p++; p = read_uleb128 (p, &tmp); info->action_table = p + tmp; return p; } // Runa-specific parts start here! // Keep in sync with Exception class in core/eh.rns struct RunaException { struct _Unwind_Exception header; int switch_value; const unsigned char* lsda; _Unwind_Ptr lpad; }; static inline void save_caught_exception(struct _Unwind_Exception* ue_header, int handler_switch_value, const unsigned char* lsda, _Unwind_Ptr landing_pad) { struct RunaException* exc = (struct RunaException*) ue_header; exc->switch_value = handler_switch_value; exc->lsda = lsda; exc->lpad = landing_pad; } static inline void restore_caught_exception(struct _Unwind_Exception* ue_header, int* handler_switch_value, const unsigned char** lsda, _Unwind_Ptr* landing_pad) { struct RunaException* exc = (struct RunaException*) ue_header; *handler_switch_value = exc->switch_value; *lsda = exc->lsda; *landing_pad = exc->lpad; } #define RUNA_CLASS 19507889121949010 _Unwind_Reason_Code __runa_personality(int version, _Unwind_Action actions, _Unwind_Exception_Class exception_class, struct _Unwind_Exception *ue_header, struct _Unwind_Context *context) { enum found_handler_type { found_nothing, found_terminate, found_cleanup, found_handler } found_type; struct lsda_header_info info; const unsigned char *language_specific_data; const unsigned char *action_record; const unsigned char *p; _Unwind_Ptr landing_pad, ip; int handler_switch_value; void* thrown_ptr = 0; bool foreign_exception; int ip_before_insn = 0; //__cxa_exception* xh = __get_exception_header_from_ue(ue_header); // Interface version check. if (version != 1) return _URC_FATAL_PHASE1_ERROR; foreign_exception = exception_class != RUNA_CLASS; // Shortcut for phase 2 found handler for domestic exception. if (actions == (_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME) && !foreign_exception) { restore_caught_exception(ue_header, &handler_switch_value, &language_specific_data, &landing_pad); found_type = (landing_pad == 0 ? found_terminate : found_handler); goto install_context; } language_specific_data = (const unsigned char *) _Unwind_GetLanguageSpecificData(context); // If no LSDA, then there are no handlers or cleanups. if (!language_specific_data) return _URC_CONTINUE_UNWIND; // Parse the LSDA header. p = parse_lsda_header(context, language_specific_data, &info); info.ttype_base = base_of_encoded_value(info.ttype_encoding, context); ip = _Unwind_GetIPInfo(context, &ip_before_insn); //ip = _Unwind_GetIP(context); if (!ip_before_insn) --ip; landing_pad = 0; action_record = 0; handler_switch_value = 0; // Search the call-site table for the action associated with this IP. while (p < info.action_table) { _Unwind_Ptr cs_start, cs_len, cs_lp; _uleb128_t cs_action; // Note that all call-site encodings are "absolute" displacements. p = read_encoded_value(0, info.call_site_encoding, p, &cs_start); p = read_encoded_value(0, info.call_site_encoding, p, &cs_len); p = read_encoded_value(0, info.call_site_encoding, p, &cs_lp); p = read_uleb128(p, &cs_action); // The table is sorted, so if we've passed the ip, stop. if (ip < info.Start + cs_start) { p = info.action_table; } else if (ip < info.Start + cs_start + cs_len) { if (cs_lp) landing_pad = info.LPStart + cs_lp; if (cs_action) action_record = info.action_table + cs_action - 1; goto found_something; } } // If ip is not present in the table, call terminate. This is for // a destructor inside a cleanup, or a library routine the compiler // was not expecting to throw. found_type = found_terminate; goto do_something; found_something: if (landing_pad == 0) { // If ip is present, and has a null landing pad, there are // no cleanups or handlers to be run. found_type = found_nothing; } else if (action_record == 0) { // If ip is present, has a non-null landing pad, and a null // action table offset, then there are only cleanups present. // Cleanups use a zero switch value, as set above. found_type = found_cleanup; } else { // Otherwise we have a catch handler or exception specification. _sleb128_t ar_filter, ar_disp; //const std::type_info* catch_type; //_throw_typet* throw_type; bool saw_cleanup = false; bool saw_handler = false; { //thrown_ptr = __get_object_from_ue(ue_header); //throw_type = __get_exception_header_from_obj(thrown_ptr)->exceptionType; } while (1) { p = action_record; p = read_sleb128(p, &ar_filter); read_sleb128(p, &ar_disp); if (ar_filter == 0) { // Zero filter values are cleanups. saw_cleanup = true; } else if (ar_filter > 0) { // Positive filter values are handlers. //catch_type = get_ttype_entry(&info, ar_filter); //printf("positive filter value -- handler found\n"); saw_handler = true; break; // Null catch type is a catch-all handler; we can catch foreign // exceptions with this. Otherwise we must match types. //if (!catch_type || (throw_type && // get_adjusted_ptr(catch_type, throw_type, &thrown_ptr))) { // saw_handler = true; // break; //} } else { printf("negative filter value -- exception spec\n"); // Negative filter values are exception specifications. // ??? How do foreign exceptions fit in? As far as I can // see we can't match because there's no __cxa_exception // object to stuff bits in for __cxa_call_unexpected to use. // Allow them iff the exception spec is non-empty. I.e. // a throw() specification results in __unexpected. //if ((throw_type && !(actions & _UA_FORCE_UNWIND) && !foreign_exception) ? // !check_exception_spec(&info, throw_type, thrown_ptr, ar_filter) : // empty_exception_spec(&info, ar_filter)) { // saw_handler = true; // break; //} } if (ar_disp == 0) break; action_record = p + ar_disp; } if (saw_handler) { handler_switch_value = ar_filter; found_type = found_handler; } else { found_type = (saw_cleanup ? found_cleanup : found_nothing); } } do_something: if (found_type == found_nothing) return _URC_CONTINUE_UNWIND; if (actions & _UA_SEARCH_PHASE) { if (found_type == found_cleanup) return _URC_CONTINUE_UNWIND; // For domestic exceptions, we cache data from phase 1 for phase 2. if (!foreign_exception) { save_caught_exception(ue_header, handler_switch_value, language_specific_data, landing_pad); } return _URC_HANDLER_FOUND; } install_context: // We can't use any of the cxa routines with foreign exceptions, // because they all expect ue_header to be a struct __cxa_exception. // So in that case, call terminate or unexpected directly. if ((actions & _UA_FORCE_UNWIND) || foreign_exception) { if (found_type == found_terminate) abort(); // std::terminate(); else if (handler_switch_value < 0) { printf("WTF\n"); //__try // { std::unexpected (); } //__catch(...) // { std::terminate (); } } } else { if (found_type == found_terminate) abort(); //__cxa_call_terminate(ue_header); // Cache the TType base value for __cxa_call_unexpected, as we won't // have an _Unwind_Context then. if (handler_switch_value < 0) { parse_lsda_header(context, language_specific_data, &info); info.ttype_base = base_of_encoded_value(info.ttype_encoding, context); //xh->catchTemp = base_of_encoded_value (info.ttype_encoding, context); } } /* For targets with pointers smaller than the word size, we must extend the pointer, and this extension is target dependent. */ _Unwind_SetGR(context, __builtin_eh_return_data_regno(0), __builtin_extend_pointer(ue_header)); _Unwind_SetGR(context, __builtin_eh_return_data_regno(1), handler_switch_value); _Unwind_SetIP(context, landing_pad); return _URC_INSTALL_CONTEXT; }
the_stack_data/126701687.c
#include <sys/utsname.h> #include <stdio.h> #include <errno.h> #include <unistd.h> #include <string.h> #include <stdlib.h> #include <sys/types.h> int main (int argc, char *argv[]){ printf("ID real: %d\n", getuid()); printf("ID efectivo: %d\n", geteuid()); return 0; }
the_stack_data/44262.c
#ifndef lint static char *rcsid = "$Id: setenv.c,v 1.1 2003/06/04 00:27:01 marka Exp $"; #endif /* * Copyright (c) 2002 Japan Network Information Center. * All rights reserved. * * By using this file, you agree to the terms and conditions set forth bellow. * * LICENSE TERMS AND CONDITIONS * * The following License Terms and Conditions apply, unless a different * license is obtained from Japan Network Information Center ("JPNIC"), * a Japanese association, Kokusai-Kougyou-Kanda Bldg 6F, 2-3-4 Uchi-Kanda, * Chiyoda-ku, Tokyo 101-0047, Japan. * * 1. Use, Modification and Redistribution (including distribution of any * modified or derived work) in source and/or binary forms is permitted * under this License Terms and Conditions. * * 2. Redistribution of source code must retain the copyright notices as they * appear in each source code file, this License Terms and Conditions. * * 3. Redistribution in binary form must reproduce the Copyright Notice, * this License Terms and Conditions, in the documentation and/or other * materials provided with the distribution. For the purposes of binary * distribution the "Copyright Notice" refers to the following language: * "Copyright (c) 2000-2002 Japan Network Information Center. All rights reserved." * * 4. The name of JPNIC may not be used to endorse or promote products * derived from this Software without specific prior written approval of * JPNIC. * * 5. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY JPNIC * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JPNIC BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. */ #include <stddef.h> #include <string.h> /* * We don't include <stdlib.h> here. * Also <stdlib.h> may declare `environ' and its type might be different * from ours. */ extern char **environ; typedef struct myenv myenv_t; struct myenv { char *pointer; myenv_t *next; myenv_t *prev; }; static myenv_t *myenvs = NULL; void myunsetenv(const char *name) { char **e; myenv_t *mye; size_t namelen; extern void free(void *); namelen = strlen(name); for (e = environ; *e != NULL; e++) { if (strncmp(*e, name, namelen) == 0 && (*e)[namelen] == '=') break; } if (*e == NULL) return; for (mye = myenvs; mye != NULL; mye = mye->next) { if (mye->pointer == *e) { if (mye->next != NULL) mye->next->prev = mye->prev; if (mye->prev != NULL) mye->prev->next = mye->next; if (mye->next == NULL && mye->prev == NULL) myenvs = NULL; free(mye); free(*e); break; } } for ( ; *e != NULL; e++) *e = *(e + 1); } #include <stdlib.h> int mysetenv(const char *name, const char *value, int overwrite) { myenv_t *mye; char *buffer; int result; if (getenv(name) != NULL && !overwrite) return 0; buffer = (char *) malloc(strlen(name) + strlen(value) + 2); if (buffer == NULL) return -1; strcpy(buffer, name); strcat(buffer, "="); strcat(buffer, value); myunsetenv(name); mye = (myenv_t *) malloc(sizeof(myenv_t)); if (mye == NULL) return -1; mye->pointer = buffer; mye->next = myenvs; mye->prev = NULL; if (myenvs != NULL) myenvs->prev = mye; myenvs = mye; result = putenv(buffer); return result; }
the_stack_data/50136582.c
// // main.c // CSE 173 T - 03 // // Created by Nafiur Rahman Dhrubo on 5/19/21. // #include <stdio.h> int main() { int A[8] = {1, 1, 1, 1, 0, 0, 0, 0}; int B[8] = {1, 1, 0, 0, 1, 1, 0, 0}; int C[8] = {1, 0, 1, 0, 1, 0, 1, 0}; int i; printf("\n\t\(P ^ Q\) v R\n\n\n"); for(i = 0; i < 8; i++) { printf("\n\t%d %d %d\n", A[i], B[i], C[i]); if(A[i] == 1 && B[i] == 1) printf("1"); else printf("0"); if((A[i] == 1 && B[i] == 1) || C[i] == 1) printf("1"); else printf("0"); } }
the_stack_data/115764442.c
/* Link in this file for random number generation with rand() and seeding from the clock */ #include <stdio.h> #include <stdlib.h> double ran1() { int rand(); return( rand()/(RAND_MAX+1.0) ); } void seedit( const char *flag) { FILE *fopen(), *pfseed; unsigned int seed2 ; if( flag[0] == 's' ) { srand( seed2 = time(NULL) ) ; printf("\n%d\n", seed2 ); } } int commandlineseed( char **seeds) { unsigned int seed2 ; void srand(unsigned int seed); seed2 = atoi( seeds[0] ); printf("\n%d\n", seed2 ); srand(seed2) ; return(1); }
the_stack_data/83062.c
/* ----------------------------------------------------------------------- ffi.c - Copyright (c) 1996, 1998, 1999, 2001 Red Hat, Inc. Copyright (c) 2002 Ranjit Mathew Copyright (c) 2002 Bo Thorsen Copyright (c) 2002 Roger Sayle x86 Foreign Function Interface Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ``Software''), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL CYGNUS SOLUTIONS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----------------------------------------------------------------------- */ #ifndef __x86_64__ #include <ffi.h> #include <ffi_common.h> #include <stdlib.h> /* ffi_prep_args is called by the assembly routine once stack space has been allocated for the function's arguments */ void ffi_prep_args(char *stack, extended_cif *ecif) { register unsigned int i; register void **p_argv; register char *argp; register ffi_type **p_arg; argp = stack; if (ecif->cif->flags == FFI_TYPE_STRUCT) { *(void **) argp = ecif->rvalue; argp += 4; } p_argv = ecif->avalue; for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types; i != 0; i--, p_arg++) { size_t z; /* Align if necessary */ if ((sizeof(int) - 1) & (unsigned) argp) argp = (char *) ALIGN(argp, sizeof(int)); z = (*p_arg)->size; if (z < sizeof(int)) { z = sizeof(int); switch ((*p_arg)->type) { case FFI_TYPE_SINT8: *(signed int *) argp = (signed int)*(SINT8 *)(* p_argv); break; case FFI_TYPE_UINT8: *(unsigned int *) argp = (unsigned int)*(UINT8 *)(* p_argv); break; case FFI_TYPE_SINT16: *(signed int *) argp = (signed int)*(SINT16 *)(* p_argv); break; case FFI_TYPE_UINT16: *(unsigned int *) argp = (unsigned int)*(UINT16 *)(* p_argv); break; case FFI_TYPE_SINT32: *(signed int *) argp = (signed int)*(SINT32 *)(* p_argv); break; case FFI_TYPE_UINT32: *(unsigned int *) argp = (unsigned int)*(UINT32 *)(* p_argv); break; case FFI_TYPE_STRUCT: *(unsigned int *) argp = (unsigned int)*(UINT32 *)(* p_argv); break; default: FFI_ASSERT(0); } } else { memcpy(argp, *p_argv, z); } p_argv++; argp += z; } return; } /* Perform machine dependent cif processing */ ffi_status ffi_prep_cif_machdep(ffi_cif *cif) { /* Set the return type flag */ switch (cif->rtype->type) { case FFI_TYPE_VOID: #ifdef X86 case FFI_TYPE_STRUCT: #endif case FFI_TYPE_SINT64: case FFI_TYPE_FLOAT: case FFI_TYPE_DOUBLE: case FFI_TYPE_LONGDOUBLE: cif->flags = (unsigned) cif->rtype->type; break; case FFI_TYPE_UINT64: cif->flags = FFI_TYPE_SINT64; break; #ifndef X86 case FFI_TYPE_STRUCT: if (cif->rtype->size == 1) { cif->flags = FFI_TYPE_SINT8; /* same as char size */ } else if (cif->rtype->size == 2) { cif->flags = FFI_TYPE_SINT16; /* same as short size */ } else if (cif->rtype->size == 4) { cif->flags = FFI_TYPE_INT; /* same as int type */ } else if (cif->rtype->size == 8) { cif->flags = FFI_TYPE_SINT64; /* same as int64 type */ } else { cif->flags = FFI_TYPE_STRUCT; } break; #endif default: cif->flags = FFI_TYPE_INT; break; } #ifdef X86_DARWIN cif->bytes = (cif->bytes + 15) & ~0xF; #endif return FFI_OK; } extern void ffi_call_SYSV(void (*)(char *, extended_cif *), extended_cif *, unsigned, unsigned, unsigned *, void (*fn)()); #ifdef X86_WIN32 extern void ffi_call_STDCALL(void (*)(char *, extended_cif *), extended_cif *, unsigned, unsigned, unsigned *, void (*fn)()); #endif /* X86_WIN32 */ void ffi_call(ffi_cif *cif, void (*fn)(), void *rvalue, void **avalue) { extended_cif ecif; ecif.cif = cif; ecif.avalue = avalue; /* If the return value is a struct and we don't have a return */ /* value address then we need to make one */ if ((rvalue == NULL) && (cif->flags == FFI_TYPE_STRUCT)) { ecif.rvalue = alloca(cif->rtype->size); } else ecif.rvalue = rvalue; switch (cif->abi) { case FFI_SYSV: ffi_call_SYSV(ffi_prep_args, &ecif, cif->bytes, cif->flags, ecif.rvalue, fn); break; #ifdef X86_WIN32 case FFI_STDCALL: ffi_call_STDCALL(ffi_prep_args, &ecif, cif->bytes, cif->flags, ecif.rvalue, fn); break; #endif /* X86_WIN32 */ default: FFI_ASSERT(0); break; } } /** private members **/ static void ffi_prep_incoming_args_SYSV (char *stack, void **ret, void** args, ffi_cif* cif); void FFI_HIDDEN ffi_closure_SYSV (ffi_closure *) __attribute__ ((regparm(1))); unsigned int FFI_HIDDEN ffi_closure_SYSV_inner (ffi_closure *, void **, void *) __attribute__ ((regparm(1))); void FFI_HIDDEN ffi_closure_raw_SYSV (ffi_raw_closure *) __attribute__ ((regparm(1))); /* This function is jumped to by the trampoline */ unsigned int FFI_HIDDEN ffi_closure_SYSV_inner (closure, respp, args) ffi_closure *closure; void **respp; void *args; { // our various things... ffi_cif *cif; void **arg_area; cif = closure->cif; arg_area = (void**) alloca (cif->nargs * sizeof (void*)); /* this call will initialize ARG_AREA, such that each * element in that array points to the corresponding * value on the stack; and if the function returns * a structure, it will re-set RESP to point to the * structure return address. */ ffi_prep_incoming_args_SYSV(args, respp, arg_area, cif); (closure->fun) (cif, *respp, arg_area, closure->user_data); return cif->flags; } static void ffi_prep_incoming_args_SYSV(char *stack, void **rvalue, void **avalue, ffi_cif *cif) { register unsigned int i; register void **p_argv; register char *argp; register ffi_type **p_arg; argp = stack; if ( cif->flags == FFI_TYPE_STRUCT ) { *rvalue = *(void **) argp; argp += 4; } p_argv = avalue; for (i = cif->nargs, p_arg = cif->arg_types; (i != 0); i--, p_arg++) { size_t z; /* Align if necessary */ if ((sizeof(int) - 1) & (unsigned) argp) { argp = (char *) ALIGN(argp, sizeof(int)); } z = (*p_arg)->size; /* because we're little endian, this is what it turns into. */ *p_argv = (void*) argp; p_argv++; argp += z; } return; } /* How to make a trampoline. Derived from gcc/config/i386/i386.c. */ #define FFI_INIT_TRAMPOLINE(TRAMP,FUN,CTX) \ ({ unsigned char *__tramp = (unsigned char*)(TRAMP); \ unsigned int __fun = (unsigned int)(FUN); \ unsigned int __ctx = (unsigned int)(CTX); \ unsigned int __dis = __fun - ((unsigned int) __tramp + FFI_TRAMPOLINE_SIZE); \ *(unsigned char*) &__tramp[0] = 0xb8; \ *(unsigned int*) &__tramp[1] = __ctx; /* movl __ctx, %eax */ \ *(unsigned char *) &__tramp[5] = 0xe9; \ *(unsigned int*) &__tramp[6] = __dis; /* jmp __fun */ \ }) /* the cif must already be prep'ed */ ffi_status ffi_prep_closure (ffi_closure* closure, ffi_cif* cif, void (*fun)(ffi_cif*,void*,void**,void*), void *user_data) { FFI_ASSERT (cif->abi == FFI_SYSV); FFI_INIT_TRAMPOLINE (&closure->tramp[0], \ &ffi_closure_SYSV, \ (void*)closure); closure->cif = cif; closure->user_data = user_data; closure->fun = fun; return FFI_OK; } /* ------- Native raw API support -------------------------------- */ #if !FFI_NO_RAW_API ffi_status ffi_prep_raw_closure (ffi_raw_closure* closure, ffi_cif* cif, void (*fun)(ffi_cif*,void*,ffi_raw*,void*), void *user_data) { int i; FFI_ASSERT (cif->abi == FFI_SYSV); // we currently don't support certain kinds of arguments for raw // closures. This should be implemented by a separate assembly language // routine, since it would require argument processing, something we // don't do now for performance. for (i = cif->nargs-1; i >= 0; i--) { FFI_ASSERT (cif->arg_types[i]->type != FFI_TYPE_STRUCT); FFI_ASSERT (cif->arg_types[i]->type != FFI_TYPE_LONGDOUBLE); } FFI_INIT_TRAMPOLINE (&closure->tramp[0], &ffi_closure_raw_SYSV, (void*)closure); closure->cif = cif; closure->user_data = user_data; closure->fun = fun; return FFI_OK; } static void ffi_prep_args_raw(char *stack, extended_cif *ecif) { memcpy (stack, ecif->avalue, ecif->cif->bytes); } /* we borrow this routine from libffi (it must be changed, though, to * actually call the function passed in the first argument. as of * libffi-1.20, this is not the case.) */ extern void ffi_call_SYSV(void (*)(char *, extended_cif *), extended_cif *, unsigned, unsigned, unsigned *, void (*fn)()); #ifdef X86_WIN32 extern void ffi_call_STDCALL(void (*)(char *, extended_cif *), extended_cif *, unsigned, unsigned, unsigned *, void (*fn)()); #endif /* X86_WIN32 */ void ffi_raw_call(ffi_cif *cif, void (*fn)(), void *rvalue, ffi_raw *fake_avalue) { extended_cif ecif; void **avalue = (void **)fake_avalue; ecif.cif = cif; ecif.avalue = avalue; /* If the return value is a struct and we don't have a return */ /* value address then we need to make one */ if ((rvalue == NULL) && (cif->rtype->type == FFI_TYPE_STRUCT)) { ecif.rvalue = alloca(cif->rtype->size); } else ecif.rvalue = rvalue; switch (cif->abi) { case FFI_SYSV: ffi_call_SYSV(ffi_prep_args_raw, &ecif, cif->bytes, cif->flags, ecif.rvalue, fn); break; #ifdef X86_WIN32 case FFI_STDCALL: ffi_call_STDCALL(ffi_prep_args_raw, &ecif, cif->bytes, cif->flags, ecif.rvalue, fn); break; #endif /* X86_WIN32 */ default: FFI_ASSERT(0); break; } } #endif #endif /* __x86_64__ */
the_stack_data/107953393.c
#include <sys/timex.h> #include <time.h> #include <errno.h> #include "syscall.h" #define IS32BIT(x) !((x)+0x80000000ULL>>32) struct ktimex64 { unsigned modes; int :32; long long offset, freq, maxerror, esterror; int status; int :32; long long constant, precision, tolerance; long long time_sec, time_usec; long long tick, ppsfreq, jitter; int shift; int :32; long long stabil, jitcnt, calcnt, errcnt, stbcnt; int tai; int __padding[11]; }; struct ktimex { unsigned modes; long offset, freq, maxerror, esterror; int status; long constant, precision, tolerance; long time_sec, time_usec; long tick, ppsfreq, jitter; int shift; long stabil, jitcnt, calcnt, errcnt, stbcnt; int tai; int __padding[11]; }; int clock_adjtime (clockid_t clock_id, struct timex *utx) { int r = -ENOSYS; #ifdef SYS_clock_adjtime64 if (SYS_clock_adjtime == SYS_clock_adjtime64 || (utx->modes & ADJ_SETOFFSET) && !IS32BIT(utx->time.tv_sec)) { struct ktimex64 ktx = { .modes = utx->modes, .offset = utx->offset, .freq = utx->freq, .maxerror = utx->maxerror, .esterror = utx->esterror, .status = utx->status, .constant = utx->constant, .precision = utx->precision, .tolerance = utx->tolerance, .time_sec = utx->time.tv_sec, .time_usec = utx->time.tv_usec, .tick = utx->tick, .ppsfreq = utx->ppsfreq, .jitter = utx->jitter, .shift = utx->shift, .stabil = utx->stabil, .jitcnt = utx->jitcnt, .calcnt = utx->calcnt, .errcnt = utx->errcnt, .stbcnt = utx->stbcnt, .tai = utx->tai, }; r = __syscall(SYS_clock_adjtime, clock_id, &ktx); if (r>=0) { utx->modes = ktx.modes; utx->offset = ktx.offset; utx->freq = ktx.freq; utx->maxerror = ktx.maxerror; utx->esterror = ktx.esterror; utx->status = ktx.status; utx->constant = ktx.constant; utx->precision = ktx.precision; utx->tolerance = ktx.tolerance; utx->time.tv_sec = ktx.time_sec; utx->time.tv_usec = ktx.time_usec; utx->tick = ktx.tick; utx->ppsfreq = ktx.ppsfreq; utx->jitter = ktx.jitter; utx->shift = ktx.shift; utx->stabil = ktx.stabil; utx->jitcnt = ktx.jitcnt; utx->calcnt = ktx.calcnt; utx->errcnt = ktx.errcnt; utx->stbcnt = ktx.stbcnt; utx->tai = ktx.tai; } } if (SYS_clock_adjtime == SYS_clock_adjtime64 || r!=-ENOSYS) return __syscall_ret(r); if ((utx->modes & ADJ_SETOFFSET) && !IS32BIT(utx->time.tv_sec)) return __syscall_ret(-ENOTSUP); #endif if (sizeof(time_t) > sizeof(long)) { struct ktimex ktx = { .modes = utx->modes, .offset = utx->offset, .freq = utx->freq, .maxerror = utx->maxerror, .esterror = utx->esterror, .status = utx->status, .constant = utx->constant, .precision = utx->precision, .tolerance = utx->tolerance, .time_sec = utx->time.tv_sec, .time_usec = utx->time.tv_usec, .tick = utx->tick, .ppsfreq = utx->ppsfreq, .jitter = utx->jitter, .shift = utx->shift, .stabil = utx->stabil, .jitcnt = utx->jitcnt, .calcnt = utx->calcnt, .errcnt = utx->errcnt, .stbcnt = utx->stbcnt, .tai = utx->tai, }; #ifdef SYS_adjtimex if (clock_id==CLOCK_REALTIME) r = __syscall(SYS_adjtimex, &ktx); else #endif #ifndef PS4 r = __syscall(SYS_clock_adjtime, clock_id, &ktx); if (r>=0) { utx->modes = ktx.modes; utx->offset = ktx.offset; utx->freq = ktx.freq; utx->maxerror = ktx.maxerror; utx->esterror = ktx.esterror; utx->status = ktx.status; utx->constant = ktx.constant; utx->precision = ktx.precision; utx->tolerance = ktx.tolerance; utx->time.tv_sec = ktx.time_sec; utx->time.tv_usec = ktx.time_usec; utx->tick = ktx.tick; utx->ppsfreq = ktx.ppsfreq; utx->jitter = ktx.jitter; utx->shift = ktx.shift; utx->stabil = ktx.stabil; utx->jitcnt = ktx.jitcnt; utx->calcnt = ktx.calcnt; utx->errcnt = ktx.errcnt; utx->stbcnt = ktx.stbcnt; utx->tai = ktx.tai; } return __syscall_ret(r); #else errno = ENOSYS; return -1; #endif } #ifdef SYS_adjtimex if (clock_id==CLOCK_REALTIME) return syscall(SYS_adjtimex, utx); #endif #ifndef PS4 return syscall(SYS_clock_adjtime, clock_id, utx); #else errno = ENOSYS; return -1; #endif }
the_stack_data/57951306.c
#include <stdio.h> #include <string.h> #define MAX_TEAMS 4 struct player { char name[20]; int age; int number; }; struct team { int size; struct player play[11]; char name[20]; int flag_match; }; struct ranking { struct team *t[MAX_TEAMS]; int score[MAX_TEAMS]; int goals[MAX_TEAMS]; int size; }; struct time { int hour,minutes; int d,m,y; }; struct match { char location[20]; struct team *team1, *team2; int score1, score2; char *status; struct time t; }; void display(struct team *t); void display_without(struct team *t); int search(char* s,struct team *t1,struct team *t2,struct team *t3,struct team *t4); void set_ranking(struct ranking *theRanking, struct match *theMatch); void sort(struct ranking *theRanking); void display_ranking(struct ranking *theRanking); void swap_struct(struct team *A, struct team *B); void swap_int(int *A, int *B); void menu(void); int main() { struct team t1 = {11,{ {"Drew",25,1},{"Jack",26,2},{"Luke",21,3}, {"Max",24,4},{"Tom",23,5},{"Cole",30,6}, {"Finn",25,7},{"Jake",20,8},{"Jude",28,9}, {"Nate",27,10},{"Ace",29,11} },"Zimbabwe",0 }; struct team t2 = {11,{ {"Drew",25,1},{"Jack",26,2},{"Luke",21,3}, {"Max",24,4},{"Tom",23,5},{"Cole",30,6}, {"Finn",25,7},{"Jake",20,8},{"Jude",28,9}, {"Nate",27,10},{"Ace",29,11} },"Congo" ,0}; struct team t3 = {11,{ {"Drew",25,1},{"Jack",26,2},{"Luke",21,3}, {"Max",24,4},{"Tom",23,5},{"Cole",30,6}, {"Finn",25,7},{"Jake",20,8},{"Jude",28,9}, {"Nate",27,10},{"Ace",29,11} },"Madagascar",0 }; struct team t4 = {11,{ {"Drew",25,1},{"Jack",26,2},{"Luke",21,3}, {"Max",24,4},{"Tom",23,5},{"Cole",30,6}, {"Finn",25,7},{"Jake",20,8},{"Jude",28,9}, {"Nate",27,10},{"Ace",29,11} },"Namibia" ,0}; struct match matches[MAX_TEAMS/2] = {}; struct ranking theRanking; theRanking.size = 0; theRanking.t[0] = &t1; theRanking.score[0] = 0; theRanking.goals[0] = 0; theRanking.size = 1; theRanking.t[1] = &t2; theRanking.score[1] = 0; theRanking.goals[1] = 0; theRanking.size = 2; theRanking.t[2] = &t3; theRanking.score[2] = 0; theRanking.goals[2] = 0; theRanking.size = 3; theRanking.t[3] = &t4; theRanking.score[3] = 0; theRanking.goals[3] = 0; theRanking.size = 4; int i,b,cntmatch=0,play; char junk,s1[20],s2[20],s[20],choice; int flag_rank=0; int flag_playedmatches=0; while(1){ menu(); scanf(" %c",&choice); switch(choice){ case '1': printf("\n\t\tDo you also want to display the players? \n\t\t(y for yes,n for no): "); scanf(" %s",s); if(strcasecmp(s,"y")==0){ for(i=0;i<MAX_TEAMS;i++){ display(theRanking.t[i]); } } else if(strcasecmp(s,"n")==0){ for(i=0;i<MAX_TEAMS;i++){ display_without(theRanking.t[i]); } } else printf("\n\t\tInvalid Choice! "); break; case '2': if(cntmatch!=2){ printf("\n\t\tWho is the first team? "); scanf(" %s",s1); b=search(s1,&t1,&t2,&t3,&t4); switch(b){ case 0: if(t1.flag_match==0) { matches[cntmatch].team1=&t1; t1.flag_match=1; } else { printf("\n\t\tERROR! Team already in a match! "); return 1; } break; case 1: if(t2.flag_match==0) { matches[cntmatch].team1=&t2; t2.flag_match=1; } else { printf("\n\t\tERROR! Team already in a match! "); return 1; } break; case 2: if(t3.flag_match==0) { matches[cntmatch].team1=&t3; t3.flag_match=1; } else { printf("\n\t\tERROR! Team already in a match! "); return 1; } break; case 3: if(t4.flag_match==0) { matches[cntmatch].team1=&t4; t4.flag_match=1; } else { printf("\n\t\tERROR! Team already in a match! "); return 1; } break; case -1: printf("\n\t\tERROR! "); return 1; break; } printf("\n\t\tWho is the second team? "); scanf(" %s",s2); b=search(s2,&t1,&t2,&t3,&t4); switch(b){ case 0: if(t1.flag_match==0) { matches[cntmatch].team2=&t1; t1.flag_match=1; } else { printf("\n\t\tERROR! Team already in a match! "); return 1; } break; case 1: if(t2.flag_match==0) { matches[cntmatch].team2=&t2; t2.flag_match=1; } else { printf("\n\t\tERROR! Team already in a match! "); return 1; } break; case 2: if(t3.flag_match==0) { matches[cntmatch].team2=&t3; t3.flag_match=1; } else { printf("\n\t\tERROR! Team already in a match! "); return 1; } break; case 3: if(t4.flag_match==0) { matches[cntmatch].team2=&t4; t4.flag_match=1; } else { printf("\n\t\tERROR! Team already in a match! "); return 1; } break; case -1: printf("\n\t\tERROR! "); return 1; break; } matches[cntmatch].status = "Not yet played"; printf("\n\t\tWhere is this match happening? : "); scanf(" %s",matches[cntmatch].location); printf("\n\t\tWrite the date in this format? dd/mm/yy : "); scanf("%d/%d/%d",&matches[cntmatch].t.d,&matches[cntmatch].t.m,&matches[cntmatch].t.y); printf("\n\t\tWrite the time in this format? hh:mm : "); scanf("%d:%d",&matches[cntmatch].t.hour,&matches[cntmatch].t.minutes); cntmatch++; } else printf("\n\t\tThere are already two planned matches!"); break; case '3': if(cntmatch!=2) printf("\n\t\tYou should plan two matches before playing them! "); else{ if(strcmp(matches[0].status,"Played")==0 && strcmp(matches[1].status,"Played")==0) printf("\n\t\tBoth matches are played!"); else { printf("\n\t\t[%d] %s \tvs.\t %s\t- %s",1,matches[0].team1->name,matches[0].team2->name,matches[0].status); printf("\n\t\t[%d] %s \tvs.\t %s\t- %s",2,matches[1].team1->name,matches[1].team2->name,matches[1].status); printf("\n\t\tWhich match do you want to play? "); scanf("%d",&play); if(play-1>=MAX_TEAMS/2 || play-1<0) printf("\n\t\tInvalid Choice! "); else if(strcmp(matches[play-1].status,"Played")==0) printf("\n\t\tMatch already played! "); else { printf("\n\t\tWhat is the score of %s? ",matches[play-1].team1->name); scanf("%d",&matches[play-1].score1); printf("\n\t\tWhat is the score of %s? ",matches[play-1].team2->name); scanf("%d",&matches[play-1].score2); matches[play-1].status = "Played"; set_ranking(&theRanking,&matches[play-1]); flag_playedmatches++; } } } break; case '4': if(cntmatch<2) printf("\n\t\tYou should plan both matches before displaying the info! "); else if(flag_rank==1) printf("\n\t\tBoth matches have already happened! "); else { for(i=0;i<MAX_TEAMS/2;i++){ printf("\n\t\t[%d] %s \tvs.\t %s\t- %s",i+1,matches[i].team1->name,matches[i].team2->name,matches[i].status); printf("\n\t\tLocation : %s\t Date : %d/%d/%d\t Time : %d:%d",matches[i].location,matches[i].t.d,matches[i].t.m,matches[i].t.y,matches[i].t.hour,matches[i].t.minutes); } } break; case '5': if(cntmatch<2) printf("\n\t\tYou should plan both matches before displaying the ranking! "); else if (flag_playedmatches!=2) printf("\n\t\tYou should play both matches before displaying the ranking! "); else { sort(&theRanking); display_ranking(&theRanking); flag_rank=1; } break; case '6': printf("\n\t\tGoodbye! "); return 0; break; default: printf("\n\t\tInvalid Choice! "); } } } void display(struct team *t){ int i; printf("\n\n\t\t%25s",t->name); printf("\n\t\t Country : %s ",t->name); for(i=0;i<11;i++){ printf("\n\t\t Player #%d : %s\tAge: %d\tNumber: %d",i+1,t->play[i].name,t->play[i].age,t->play[i].number); } } void display_without(struct team *t){ printf("\n\t\t Country : %s ",t->name); } void menu(void){ printf("\n\n\t\t******* AFRICA CUP *******"); printf("\n\t\t[1] Display teams ........."); printf("\n\t\t[2] Plan a match .........."); printf("\n\t\t[3] Play a match .........."); printf("\n\t\t[4] Display match info ...."); printf("\n\t\t[5] Display ranking ......."); printf("\n\t\t[6] Quit .................."); printf("\n\t\t... Please make a choice ...\n"); printf("\n\t\t"); } int search(char* s,struct team *t1,struct team *t2,struct team *t3,struct team *t4){ if(strcasecmp(t1->name,s)==0) return 0; if(strcasecmp(t2->name,s)==0) return 1; if(strcasecmp(t3->name,s)==0) return 2; if(strcasecmp(t4->name,s)==0) return 3; return -1; } void set_ranking(struct ranking *theRanking, struct match *theMatch) { struct team *t1, *t2; int t1num, t2num; t1 = (*theMatch).team1; t2 = theMatch->team2; for(t1num = 0; t1num < MAX_TEAMS && theRanking->t[t1num]!= t1; t1num++); for(t2num = 0; t2num < MAX_TEAMS && theRanking->t[t2num]!= t2; t2num++); if(theMatch->score1 > theMatch->score2) theRanking->score[t1num] += 3; else if(theMatch->score2 > theMatch->score1) theRanking->score[t2num] += 3; else { theRanking->score[t1num] ++; theRanking->score[t2num] ++; } theRanking->goals[t1num] += theMatch->score1; theRanking->goals[t2num] += theMatch->score2; } void sort(struct ranking *theRanking) { int i,j; for (i = 0; i < MAX_TEAMS-1; i++) { for (j = 0; j < MAX_TEAMS - i -1; j++) { if (theRanking->score[j] < theRanking->score[j+1]) { swap_struct(theRanking->t[j],theRanking->t[j + 1]); swap_int(&theRanking->score[j],&theRanking->score[j + 1]); swap_int(&theRanking->goals[j],&theRanking->goals[j + 1]); } } } } void display_ranking(struct ranking *theRanking){ int i; printf("\n\tTEAM NAME\tSCORE\tGOALS"); for(i=0;i<MAX_TEAMS;i++){ printf("\n\t%10s\t%d\t%d",theRanking->t[i]->name,theRanking->score[i],theRanking->goals[i]); } } void swap_struct(struct team *A, struct team *B){ struct team temp = *A; *A = *B; *B = temp; } void swap_int(int *A, int *B){ int temp = *A; *A = *B; *B = temp; }
the_stack_data/3229.c
/* Exercise 1 - Calculations Write a C program to input marks of two subjects. Calculate and print the average of the two marks. */ #include <stdio.h> int main() { int num1, num2; float avg = 0.0; printf("Enter two marks : \n"); scanf("%d %d", &num1, &num2); printf("Average = %.2f", (num1 + num2) / 2.0); return 0; }
the_stack_data/12638796.c
#include <stdio.h> int main() { int i; printf("Enter a number: "); scanf("%d", &i); if(i % 2 == 0) printf("Number is even"); else if(i % 2 == 1) printf("Number is odd"); return 0; }
the_stack_data/54824676.c
#pragma clang __debug parser_crash
the_stack_data/193893522.c
#include <stdio.h> int main(int argc, char * argv[]) { printf("%s : welcome to github actions\n", argv[0]); return 0; }
the_stack_data/175251.c
/* * xterm scrolling marquee */ #include <sys/types.h> #include <unistd.h> #include <stdio.h> #include <errno.h> #include <string.h> #include <stdlib.h> int main(int, char **); int main(int argc, char *argv[]) { char *buff; int i,c,l,p; if (argc < 2) return(0); p = fork(); switch(p) { case -1: perror("fork(): "); return(1); case 0: break; default: fprintf(stderr, "running as %i\n", p); return(0); }; c = 0; while (c < 1000) { l = strlen(argv[1]); buff = (char *) malloc(l+10); strncpy(buff, argv[1], l); for(i = l; i < (l+10); i++) buff[i] = ' '; l += 10; for (c = 0; c < l+1; c ++) { for(i = 0; i < l; i++) { if (i == c) { fprintf(stdout, "\a"); fflush(stdout); fprintf(stdout, "]2;"); }; fprintf(stdout, "%c", buff[i]); }; usleep(80000); //sleep(1); }; }; printf("\a"); fflush(stdout); return(0); }
the_stack_data/70450589.c
#include <stdio.h> int sub(int a, int b); int main(){ int x,y; x = 5; y = 7; int *z = &x; printf("x, y\n"); printf(" %d \n\n", sub(x, y)); printf("x, *z\n"); printf(" %d \n\n", sub(x, *z)); z--; printf("Before x %d\n", *z); z+=2; printf("After x %d\n", *z); z = &x - 5; while(z - &x <10){ printf("At %p %d\n", z, *z); printf("At %p %p\n", &z, z); z++; } return 0; } int sub(int a, int b){ int *p = &a; p--; printf("Before a %d\n", *p); p++; printf("At a %d\n", *p); p++; printf("After a %d\n", *p); return b-a; }
the_stack_data/152517.c
#include <stdio.h> #include <string.h> #include <unistd.h> #include <fcntl.h> #include <sys/socket.h> #include <sys/types.h> #include <sys/ioctl.h> #include <linux/if.h> #include <linux/if_tun.h> int umip_open_tap(char *ifname) { struct ifreq ifr; int fd, err; char *tundev = "/dev/net/tun"; if((fd = open(tundev, O_RDWR)) < 0) { perror("tap interface open failed"); return fd; } memset(&ifr, 0, sizeof(ifr)); ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if((err = ioctl(fd, TUNSETIFF, (void*) &ifr)) < 0) { perror("tap interface setiff failed"); close(fd); return err; } strcpy(ifname, ifr.ifr_name); return fd; }
the_stack_data/138206.c
/* * Mach Operating System * Copyright (c) 1992,1991,1990,1989 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or [email protected] * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* * File: limach/strlen.c * Author: Robert V. Baron at Carnegie Mellon * Date: Oct 13, 1992 * Abstract: * strlen returns the number of characters in "string" preceeding * the terminating null character. */ int strlen(string) register char *string; { register char *ret = string; while (*string++); return string - 1 - ret; }
the_stack_data/18886932.c
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <stdint.h> #include <time.h> #include <string.h> bool fields_build = false; #define MAX_SOLUTIONS 10000 int positions[MAX_SOLUTIONS]; uint64_t fields[64] = {0}; char letters[] = "abcdefgh"; int build_fields(void){ uint64_t pattern = 1, pattern2; uint64_t rows[8] = {0}; uint64_t lines[8] = {0}; uint64_t diagonal_elements[8] = {0}; uint64_t r_diagonal_vector = 0, l_diagonal_vector = 0; int i, j, count; const int LEFT = 7; const int RIGHT = 9; if(fields_build) return -1; /* build the row vectors*/ for(uint64_t row = 0xff, i = 0; i < 8; i++){ rows[i] = row; row <<= 8; } /* build the line vectors */ for(uint64_t line = 0, i = 0; i < 8; i++){ line = pattern; for(int j = 0; j < 7; j++){ line <<= 8; line |= pattern; } pattern <<= 1; lines[i] = line; } /* build the diagonals */ /* firstly build the list of fields and bitpattern r_diagonal_vector contains the bitpattern of the diagonal A1-H8 l_diagonal_vector the same of diagonal H1-A8 */ diagonal_elements[0] = 0, r_diagonal_vector = 1, pattern = 1, l_diagonal_vector = 128, pattern2 = 128; for(i = 1; i < 8; i++){ diagonal_elements[i] = diagonal_elements[i-1] + 9; pattern <<= 9, pattern2 <<= 7; r_diagonal_vector |= pattern; l_diagonal_vector |= pattern2; } /* And now set the pattern in the table of fields diagonal_elements contain the fields of the diagonal A1-H8 the correspomdig fields of the diagonal H8-A1 are computed by the formula 56 - diagonal_elements[i] + 2*i with i in [0..7] */ for(i = 0; i < 8; i++){ fields[diagonal_elements[i]] |= r_diagonal_vector; fields[56 - diagonal_elements[i] + 2*i] |= l_diagonal_vector; } /* And now all the other diagonals! Starting with B1-A2 (corresponding H7-G8) B1-H7 (A2-G8), C1-A3 ... and so on til G1-A7 */ for(i = 1; i < 7; i++){ diagonal_elements[7] = 0, l_diagonal_vector=0, r_diagonal_vector = 0, pattern = 0; int end = i; for(int k = 0, offset = LEFT; k < 2; ++k, offset = RIGHT, end = 7 -i){ diagonal_elements[0] = i; l_diagonal_vector |= (1 << i), pattern |= (1 << i); for(count = 1, j = end;j > 0;j--, count++){ diagonal_elements[count] = diagonal_elements[count - 1] + offset; l_diagonal_vector |= (pattern <<= offset); } diagonal_elements[count] = 0; r_diagonal_vector = l_diagonal_vector << (63 - diagonal_elements[count - 1] - diagonal_elements[0]); /* And now set the fields in the table with the bitpattern */ for(j = 0; j < count; j++){ fields[diagonal_elements[j]] |= l_diagonal_vector; fields[63 - diagonal_elements[j]] |= r_diagonal_vector; } l_diagonal_vector = r_diagonal_vector = pattern = 0; } } /* Finally set the bitpatterns for rows and lines */ for(i = 0; i < 64; i++){ fields[i] |= (lines[(i & 7)]|rows[(i >> 3)]); } fields_build = true; return 0; } bool check_board(int a, int b, int c, int d, int e){ bool res = false; if(fields_build == false) build_fields(); if((fields[a] | fields[b] | fields[c] | fields[d] | fields[e]) == UINT64_MAX) res = true; return res; } char *toBinaryString(uint64_t n, char *s) { uint64_t p = 1; int i; char *t = s; p <<= 63; for(i = 0; i < 64; i++){ *s = (n & p) ? '1' : '0'; s++, p >>= 1; if(7 == (i & 7)){ *s++ = '-'; } } return (s = t); } int print_board(int from, int til){ int i, j; char header[] ={"| A | B | C | D | E | F | G | H |"}; char *line = "____________________________________"; char s[80] = {0}; union { uint64_t t; char a[8]; } z; for(i = 0; i < 64; i++){ z.t = fields[i]; printf("Feld: %c%d\n", letters[(i & 7)], (i>>3) + 1) ; printf("%2d= %s\n", i, toBinaryString(fields[i], (char *) &s)); printf(" %s \n", header); printf("%s\n", line); for(j = 7; j >= 0; j--){ printf("%d | ", j + 1); printf("%c | %c | %c | %c | %c | %c | %c | %c |\n", z.a[j] & 0x01 ? ((((j<<3)) == i) ? 'D' :'x') : ' ', z.a[j] & 0x02 ? ((((j<<3) + 1) == i) ? 'D' :'x') : ' ', z.a[j] & 0x04 ? ((((j<<3) + 2) == i) ? 'D' :'x') : ' ', z.a[j] & 0x08 ? ((((j<<3) + 3) == i) ? 'D' :'x') : ' ', z.a[j] & 0x10 ? ((((j<<3) + 4) == i) ? 'D' :'x') : ' ', z.a[j] & 0x20 ? ((((j<<3) + 5) == i) ? 'D' :'x') : ' ', z.a[j] & 0x40 ? ((((j<<3) + 6) == i) ? 'D' :'x') : ' ', z.a[j] & 0x80 ? ((((j<<3) + 7) == i) ? 'D' :'x') : ' '); printf("%s\n", line); } printf(" %s \n", header); /* getchar(); */ } return 0; } char *extract_position(int p, char *buf) { int res[5] = {0}, i, j; char *s = buf; char temp[5][3] = {0}; char t[3] = {0}; static int count = 0; ++count; for(i = 4; i >= 0; --i){ res[i] = p & 63; p >>= 6; if(count == 1){ printf("%d ", res[i]); } } for(i = 0; i < 5; ++i){ // s += sprintf(s, "%c%d ", letters[res[i]&7], (res[i]>>3) + 1); sprintf(temp[i], "%c%d", letters[res[i]&7], (res[i]>>3) + 1); } /* sort the entries in temp[] */ for(i = 0; i < 4; i++){ for(j = i + 1; j < 5; j++){ if(strcmp(temp[i], temp[j]) > 0){ /* swap */ strcpy(t, temp[i]); strcpy(temp[i], temp[j]); strcpy(temp[j], t); } } } for(i = 0; i < 5; i++){ if(count == 1) printf("temp[%d] = %s ", i, temp[i]); s += sprintf(s, "%s ", temp[i]); } if(count == 1){ printf("Feldnr: %d -> buf = %s - s = %s len(buf) = %lu - len(s) = %lu\n", res[1], buf, s, strlen(buf), strlen(s)); } if(count == 1){ printf("Puffer = %s\n", buf); } *(buf + strlen(buf) - 1) = 0; return buf; } int main(int argc, char *argv[]) { int count = 0; int hit = 0; int res, i; int hit_array[10000]; clock_t start, end; double time_taken; FILE *fp; char buf[20] = {0}; start = clock(); build_fields(); for(int d1 = 0;d1 < 60; d1++){ for(int d2 = d1 + 1; d2 < 61; d2++){ for(int d3 = d2 + 1; d3 < 62; d3++){ for(int d4 = d3 +1; d4 < 63; d4++){ for(int d5 = d4 + 1;d5 < 64; d5++){ count++; if(check_board(d1, d2, d3, d4, d5)){ hit_array[hit] = count; if(hit == 0){ printf("%d %d %d %d %d\n", d5, d4, d3, d2, d1); } if(hit < MAX_SOLUTIONS){ res = d1; res <<= 6; res += d2; res <<= 6; res += d3; res <<= 6; res += d4; res <<= 6; res += d5; positions[hit] = res; } hit++; } } } } } } /* Dump the positions vector into file */ if((fp = fopen("positions.txt", "w")) == NULL){ printf("Kann Datei nicht zum Schreiben öffnen!\n"); } else{ printf("Speichere den Ergebnisvektor unter positions.txt\n"); for(i = 0; i < ((hit < MAX_SOLUTIONS) ? hit : (hit + 1)); ++i){ /* printf("%s\n", extract_position(positions[i], (char *) &buf)); */ fprintf(fp, "%s\n", extract_position(positions[i], (char *) &buf)); } fclose(fp); } printf("Zahl der Durchläufe: %d\nZahl der Treffer: %d\n", count, hit); end = clock(); time_taken = ((double) end - (double) start)/CLOCKS_PER_SEC; printf("Gesamtlaufzeit: %f Sekunden\n", time_taken); exit(0); }
the_stack_data/95450186.c
a, k, l, m, n, o, p; struct b { int c; int d; int e; int aa; int f; int ab; struct g **ac; void *h; int *i; int j }; void *q(); r() { struct b *b; unsigned c = l; b = b = q(); for (; p;) { b->j = b; b->i[0] = b; } n ? b : a; b->c = b->h = b->d; b->e = b->aa; if (b->ac) for (; c;) { b->ac[0] = b; for (; o;) ; } for (; m;) { b; s(b); b->ab = b; for (;;) ; } b->f = k; b; }
the_stack_data/16379.c
/* This testcase is part of GDB, the GNU debugger. Copyright 1997-2019 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <stdio.h> #include <unistd.h> #include <limits.h> #include <string.h> int main (int argc, char ** argv) { int pid; /* A statement before vfork to make sure a breakpoint on main isn't set on vfork below. */ pid = 1 + argc; pid = vfork (); /* VFORK */ if (pid == 0) { char prog[PATH_MAX]; int len; strcpy (prog, argv[0]); len = strlen (prog); /* Replace "foll-vfork" with "vforked-prog". */ memcpy (prog + len - 10, "vforked-prog", 12); prog[len + 2] = 0; printf ("I'm the child!\n"); execlp (prog, prog, (char *) 0); perror ("exec failed"); _exit (1); } else { printf ("I'm the proud parent of child #%d!\n", pid); } }
the_stack_data/247018508.c
#define _GNU_SOURCE #include <stdlib.h> #include <pthread.h> #include <stdio.h> #include <string.h> #include <time.h> #include <sched.h> #define TIME_MS(t) (((float) t.tv_sec) * 1000.f + ((float) t.tv_nsec) / 1e6f) #define NDEBUG struct mm_info { float *A; float *B; int n, m, k; float *out; }; // do matmul store in out void *mm(void *info) { struct mm_info *pinfo = (struct mm_info *)info; float *A = pinfo->A; float *B = pinfo->B; int n = pinfo->n, m = pinfo->m, k = pinfo->k; float *C = pinfo->out; #ifndef NDEBUG printf("[Info] I'm going to do matmul...\n"); printf("\tMat A: address = %p\n", A); printf("\tMat B: address = %p\n", B); printf("\tMat C: address = %p\n", C); printf("\tn, m, k = %d, %d, %d\n", n, m, k); #endif for (int i = 0; i < n * k; ++i) C[i] = 0.0f; for (int i = 0; i < n; ++i) { for (int k_ = 0; k_ < m; ++k_) { for (int j = 0; j < k; ++j) { C[i * k + j] += A[i * m + k_] * B[k_ * k + j]; } } } } // read from text float *read_matrix(int *m, int *n, char *fn) { FILE *file = fopen(fn, "r"); if (file == NULL) { printf("[Error] I cannot read file %s.\n", fn); } fscanf(file, "%d", n); fscanf(file, "%d", m); float *mat = (float *)malloc(sizeof(float) * (*n) * (*m)); for (int i = 0; i < (*n) * (*m); ++i) { fscanf(file, "%f", &(mat[i])); } fclose(file); return mat; } // write to text void write_matrix(float *mat, int *m, int *n, char *fn) { FILE *file = fopen(fn, "w"); fprintf(file, "%d %d\n", *m, *n); for (int i = 0; i < *n; ++i) { for (int j = 0; j < *m; ++j) { fprintf(file, "%f ", mat[i * (*m) + j]); } fprintf(file, "\n"); } fclose(file); } int main(int argc, char **argv) { // mm -a mata.txt -b matb.txt -t nthreads if (argc != 7) { printf("[Error] Illegal Param For matmul."); return 1; } int m_A, m_B, n_A, n_B; float *A, *B, *C; float start, mm_start, end; struct timespec t; clock_gettime(CLOCK_MONOTONIC, &t); start = TIME_MS(t); #ifndef NDEBUG printf("[Info] I wanna read A from %s and B from %s...\n", argv[2], argv[4]); #endif A = read_matrix(&m_A, &n_A, argv[2]); B = read_matrix(&m_B, &n_B, argv[4]); #ifndef NDEBUG printf("[Info] I got mat A <at %p> and mat B <at %p>\n", A, B); #endif int nthread = atoi(argv[6]); if (m_A != n_B) { printf("[Error] Illegal shape For matmul, got m1, m2 = [%d, %d]", m_A, n_B); } int m_C = m_B, n_C = n_A; C = (float *)malloc(sizeof(float) * n_C * m_C); int rows_each_thread = n_A / nthread; int extra_rows_to_assign = nthread - n_A + rows_each_thread * nthread; struct mm_info *t_info = malloc(sizeof(struct mm_info) * nthread); pthread_t *tid = malloc(sizeof(pthread_t) * nthread); clock_gettime(CLOCK_MONOTONIC, &t); mm_start = TIME_MS(t); printf("[Info] Done IO in %lf ms\n", (((double) (mm_start - start)))); for (int it = 0; it < nthread; ++it) { cpu_set_t cpu; CPU_ZERO(&cpu); int start = rows_each_thread * it; if (it >= extra_rows_to_assign) start += it - extra_rows_to_assign; int end = start + rows_each_thread; if (it >= extra_rows_to_assign) end += 1; if (end > n_A) end = n_A; CPU_SET(it % 8, &cpu); t_info[it].A = A + start * m_A; t_info[it].B = B; t_info[it].n = end - start; t_info[it].m = m_A; t_info[it].k = m_B; t_info[it].out = C + start * m_C; #ifndef NDEBUG printf("n, m, k = %d, %d, %d\n", t_info[it].n, t_info[it].m, t_info[it].k); #endif pthread_create(tid + it, NULL, mm, t_info + it); pthread_setaffinity_np(tid[it], sizeof(cpu_set_t), &cpu); } for (int it = 0; it < nthread; ++it){ pthread_join(tid[it], NULL); } clock_gettime(CLOCK_MONOTONIC, &t); end = TIME_MS(t); printf("[Info] Done MM in %lf ms...\n", (((double) (end - mm_start)))); write_matrix(C, &m_C, &n_C, "result.txt"); clock_gettime(CLOCK_MONOTONIC, &t); end = TIME_MS(t); printf("[Info] Done in %lf ms...\n", ((double) (end - start))); free(A); A = NULL; free(B); B = NULL; free(C); C = NULL; free(tid); tid = NULL; free(t_info); t_info = NULL; return 0; }
the_stack_data/150844.c
// RUN: %clang -target arm-eabi -mfpu=none -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FP // RUN: %clang -target armv4-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FP // RUN: %clang -target armv5-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FP // RUN: %clang -target armv6m-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FP // RUN: %clang -target armv7r-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FP // RUN: %clang -target armv7m-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FP // CHECK-NO-FP-NOT: __ARM_FP 0x{{.*}} // RUN: %clang -target arm-eabi -mfpu=vfpv3xd -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-ONLY // CHECK-SP-ONLY: __ARM_FP 0x4 // RUN: %clang -target arm-eabi -mfpu=vfpv3xd-fp16 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-HP // RUN: %clang -target arm-eabi -mfpu=fpv4-sp-d16 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-HP // RUN: %clang -target arm-eabi -mfpu=fpv5-sp-d16 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-HP // CHECK-SP-HP: __ARM_FP 0x6 // RUN: %clang -target arm-eabi -mfpu=vfp -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP // RUN: %clang -target arm-eabi -mfpu=vfpv2 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP // RUN: %clang -target arm-eabi -mfpu=vfpv3 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP // RUN: %clang -target arm-eabi -mfpu=vfp3-d16 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP // RUN: %clang -target arm-eabi -mfpu=neon -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP // RUN: %clang -target armv6-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP // RUN: %clang -target armv7a-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP // RUN: %clang -target armv7ve-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP // CHECK-SP-DP: __ARM_FP 0xc // RUN: %clang -target arm-eabi -mfpu=vfpv3-fp16 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP-HP // RUN: %clang -target arm-eabi -mfpu=vfpv3-d16-fp16 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP-HP // RUN: %clang -target arm-eabi -mfpu=vfpv4 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP-HP // RUN: %clang -target arm-eabi -mfpu=vfpv4-d16 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP-HP // RUN: %clang -target arm-eabi -mfpu=fpv5-d16 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP-HP // RUN: %clang -target arm-eabi -mfpu=fp-armv8 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP-HP // RUN: %clang -target arm-eabi -mfpu=neon-fp16 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP-HP // RUN: %clang -target arm-eabi -mfpu=neon-vfpv4 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP-HP // RUN: %clang -target arm-eabi -mfpu=neon-fp-armv8 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP-HP // RUN: %clang -target arm-eabi -mfpu=crypto-neon-fp-armv8 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP-HP // RUN: %clang -target armv8-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-SP-DP-HP // CHECK-SP-DP-HP: __ARM_FP 0xe // RUN: %clang -target armv4-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FMA // RUN: %clang -target armv5-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FMA // RUN: %clang -target armv6-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FMA // RUN: %clang -target armv6m-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FMA // RUN: %clang -target armv7m-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FMA // CHECK-NO-FMA-NOT: __ARM_FEATURE_FMA // RUN: %clang -target armv7a-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FMA // RUN: %clang -target armv7a-eabi -mfpu=vfpv4 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-FMA // RUN: %clang -target armv7ve-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FMA // RUN: %clang -target armv7ve-eabi -mfpu=vfpv4 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-FMA // RUN: %clang -target armv7r-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FMA // RUN: %clang -target armv7r-eabi -mfpu=vfpv4 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-FMA // RUN: %clang -target armv7em-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-FMA // (armv8 defaults to fp-armv8 > vfpv4, so we *should* expect FMA unless we downgrade to pre-vfpv4) // RUN: %clang -target armv8-eabi -mfpu=vfpv3 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-FMA // RUN: %clang -target armv8-eabi -mfpu=vfpv4 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-FMA // RUN: %clang -target armv8-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-FMA // CHECK-FMA: __ARM_FEATURE_FMA 1 // RUN: %clang -target armv4-eabi -mfpu=neon -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-NEON // RUN: %clang -target armv5-eabi -mfpu=neon -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-NEON // RUN: %clang -target armv6-eabi -mfpu=neon -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-NEON // CHECK-NO-NEON-NOT: __ARM_NEON // CHECK-NO-NEON-NOT: __ARM_NEON_FP 0x{{.*}} // RUN: %clang -target armv7-eabi -mfpu=neon -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NEON-SP // CHECK-NEON-SP: __ARM_NEON 1 // CHECK-NEON-SP: __ARM_NEON_FP 0x4 // RUN: %clang -target armv7-eabi -mfpu=neon-fp16 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NEON-SP-HP // RUN: %clang -target armv7-eabi -mfpu=neon-vfpv4 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NEON-SP-HP // RUN: %clang -target armv7-eabi -mfpu=neon-fp-armv8 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NEON-SP-HP // RUN: %clang -target armv7-eabi -mfpu=crypto-neon-fp-armv8 -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NEON-SP-HP // CHECK-NEON-SP-HP: __ARM_NEON 1 // CHECK-NEON-SP-HP: __ARM_NEON_FP 0x6 // RUN: %clang -target armv4-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-EXTENSIONS // RUN: %clang -target armv5-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-EXTENSIONS // RUN: %clang -target armv6-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-EXTENSIONS // RUN: %clang -target armv7-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-NO-EXTENSIONS // CHECK-NO-EXTENSIONS-NOT: __ARM_FEATURE_CRC32 // CHECK-NO-EXTENSIONS-NOT: __ARM_FEATURE_CRYPTO // CHECK-NO-EXTENSIONS-NOT: __ARM_FEATURE_DIRECTED_ROUNDING // CHECK-NO-EXTENSIONS-NOT: __ARM_FEATURE_NUMERIC_MAXMIN // RUN: %clang -target armv8-eabi -x c -E -dM %s -o - | FileCheck %s -check-prefix CHECK-EXTENSIONS // CHECK-EXTENSIONS: __ARM_FEATURE_CRC32 1 // CHECK-EXTENSIONS: __ARM_FEATURE_CRYPTO 1 // CHECK-EXTENSIONS: __ARM_FEATURE_DIRECTED_ROUNDING 1 // CHECK-EXTENSIONS: __ARM_FEATURE_NUMERIC_MAXMIN 1
the_stack_data/82949341.c
#include<stdio.h> #include<stdlib.h> #include<sys/types.h> #include<sys/stat.h> #include<unistd.h> #include<fcntl.h> #include<time.h> char on[2] = "1"; char off[2] = "0"; int count = 10; int main(int argc,char *argv[]){ int led0 = open("/dev/myLED0",O_RDWR); int led1 = open("/dev/myLED1",O_RDWR); while(count--){ printf("%d: LEDs are blinking....\n",count); write(led0,on,2); write(led1,off,2); usleep(500000); write(led0,off,2); write(led1,on,2); usleep(500000); } write(led0,off,2); write(led1,off,2); close(led0); close(led1); return 0; }
the_stack_data/193891871.c
#include<stdio.h> #include<string.h> int main() { int T,i,j,count; char ch; char s[10001]; scanf("%d", &T); for(i=1; i<=2*T; i++) { gets(s); scanf("%c",&ch); count = 0; for(j=0; j<strlen(s); j++) { if(ch == s[j]) { count++; } else{ continue; } } printf("%d\n",count); printf("\n"); } return 0; }
the_stack_data/1026868.c
#include<stdio.h> int main(){ int a = 5; void *p = &a; printf("The pointer p points at address %p and value %d\n", p, *((int *)p)); return 0; }
the_stack_data/61877.c
// KMSAN: uninit-value in native_apic_mem_read // https://syzkaller.appspot.com/bug?id=b2aafe337dc5a8a0cda9575fd53ba960ad614c31 // status:invalid // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include <arpa/inet.h> #include <dirent.h> #include <endian.h> #include <errno.h> #include <fcntl.h> #include <net/if_arp.h> #include <netinet/in.h> #include <pthread.h> #include <sched.h> #include <setjmp.h> #include <signal.h> #include <stdarg.h> #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/ioctl.h> #include <sys/mman.h> #include <sys/mount.h> #include <sys/prctl.h> #include <sys/resource.h> #include <sys/socket.h> #include <sys/stat.h> #include <sys/syscall.h> #include <sys/time.h> #include <sys/types.h> #include <sys/uio.h> #include <sys/wait.h> #include <time.h> #include <unistd.h> #include <linux/capability.h> #include <linux/futex.h> #include <linux/if.h> #include <linux/if_ether.h> #include <linux/if_tun.h> #include <linux/ip.h> #include <linux/kvm.h> #include <linux/net.h> #include <linux/tcp.h> unsigned long long procid; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; if (__atomic_load_n(&skip_segv, __ATOMIC_RELAXED) && (addr < prog_start || addr > prog_end)) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ { \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ } static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); if (pthread_create(&th, &attr, fn, arg)) exit(1); pthread_attr_destroy(&attr); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_RELAXED)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static void vsnprintf_check(char* str, size_t size, const char* format, va_list args) { int rv; rv = vsnprintf(str, size, format, args); if (rv < 0) exit(1); if ((size_t)rv >= size) exit(1); } #define COMMAND_MAX_LEN 128 #define PATH_PREFIX \ "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin " #define PATH_PREFIX_LEN (sizeof(PATH_PREFIX) - 1) static void execute_command(bool panic, const char* format, ...) { va_list args; char command[PATH_PREFIX_LEN + COMMAND_MAX_LEN]; int rv; va_start(args, format); memcpy(command, PATH_PREFIX, PATH_PREFIX_LEN); vsnprintf_check(command + PATH_PREFIX_LEN, COMMAND_MAX_LEN, format, args); va_end(args); rv = system(command); if (rv) { if (panic) exit(1); } } static int tunfd = -1; static int tun_frags_enabled; #define SYZ_TUN_MAX_PACKET_SIZE 1000 #define TUN_IFACE "syz_tun" #define LOCAL_MAC "aa:aa:aa:aa:aa:aa" #define REMOTE_MAC "aa:aa:aa:aa:aa:bb" #define LOCAL_IPV4 "172.20.20.170" #define REMOTE_IPV4 "172.20.20.187" #define LOCAL_IPV6 "fe80::aa" #define REMOTE_IPV6 "fe80::bb" #define IFF_NAPI 0x0010 #define IFF_NAPI_FRAGS 0x0020 static void initialize_tun(void) { tunfd = open("/dev/net/tun", O_RDWR | O_NONBLOCK); if (tunfd == -1) { printf("tun: can't open /dev/net/tun: please enable CONFIG_TUN=y\n"); printf("otherwise fuzzing or reproducing might not work as intended\n"); return; } const int kTunFd = 240; if (dup2(tunfd, kTunFd) < 0) exit(1); close(tunfd); tunfd = kTunFd; struct ifreq ifr; memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, TUN_IFACE, IFNAMSIZ); ifr.ifr_flags = IFF_TAP | IFF_NO_PI | IFF_NAPI | IFF_NAPI_FRAGS; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) { ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) exit(1); } if (ioctl(tunfd, TUNGETIFF, (void*)&ifr) < 0) exit(1); tun_frags_enabled = (ifr.ifr_flags & IFF_NAPI_FRAGS) != 0; execute_command(0, "sysctl -w net.ipv6.conf.%s.accept_dad=0", TUN_IFACE); execute_command(0, "sysctl -w net.ipv6.conf.%s.router_solicitations=0", TUN_IFACE); execute_command(1, "ip link set dev %s address %s", TUN_IFACE, LOCAL_MAC); execute_command(1, "ip addr add %s/24 dev %s", LOCAL_IPV4, TUN_IFACE); execute_command(1, "ip neigh add %s lladdr %s dev %s nud permanent", REMOTE_IPV4, REMOTE_MAC, TUN_IFACE); execute_command(0, "ip -6 addr add %s/120 dev %s", LOCAL_IPV6, TUN_IFACE); execute_command(0, "ip -6 neigh add %s lladdr %s dev %s nud permanent", REMOTE_IPV6, REMOTE_MAC, TUN_IFACE); execute_command(1, "ip link set dev %s up", TUN_IFACE); } #define DEV_IPV4 "172.20.20.%d" #define DEV_IPV6 "fe80::%02hx" #define DEV_MAC "aa:aa:aa:aa:aa:%02hx" static void snprintf_check(char* str, size_t size, const char* format, ...) { va_list args; va_start(args, format); vsnprintf_check(str, size, format, args); va_end(args); } static void initialize_netdevices(void) { unsigned i; const char* devtypes[] = {"ip6gretap", "bridge", "vcan", "bond", "team"}; const char* devnames[] = {"lo", "sit0", "bridge0", "vcan0", "tunl0", "gre0", "gretap0", "ip_vti0", "ip6_vti0", "ip6tnl0", "ip6gre0", "ip6gretap0", "erspan0", "bond0", "veth0", "veth1", "team0", "veth0_to_bridge", "veth1_to_bridge", "veth0_to_bond", "veth1_to_bond", "veth0_to_team", "veth1_to_team"}; const char* devmasters[] = {"bridge", "bond", "team"}; for (i = 0; i < sizeof(devtypes) / (sizeof(devtypes[0])); i++) execute_command(0, "ip link add dev %s0 type %s", devtypes[i], devtypes[i]); execute_command(0, "ip link add type veth"); for (i = 0; i < sizeof(devmasters) / (sizeof(devmasters[0])); i++) { execute_command( 0, "ip link add name %s_slave_0 type veth peer name veth0_to_%s", devmasters[i], devmasters[i]); execute_command( 0, "ip link add name %s_slave_1 type veth peer name veth1_to_%s", devmasters[i], devmasters[i]); execute_command(0, "ip link set %s_slave_0 master %s0", devmasters[i], devmasters[i]); execute_command(0, "ip link set %s_slave_1 master %s0", devmasters[i], devmasters[i]); execute_command(0, "ip link set veth0_to_%s up", devmasters[i]); execute_command(0, "ip link set veth1_to_%s up", devmasters[i]); } execute_command(0, "ip link set bridge_slave_0 up"); execute_command(0, "ip link set bridge_slave_1 up"); for (i = 0; i < sizeof(devnames) / (sizeof(devnames[0])); i++) { char addr[32]; snprintf_check(addr, sizeof(addr), DEV_IPV4, i + 10); execute_command(0, "ip -4 addr add %s/24 dev %s", addr, devnames[i]); snprintf_check(addr, sizeof(addr), DEV_IPV6, i + 10); execute_command(0, "ip -6 addr add %s/120 dev %s", addr, devnames[i]); snprintf_check(addr, sizeof(addr), DEV_MAC, i + 10); execute_command(0, "ip link set dev %s address %s", devnames[i], addr); execute_command(0, "ip link set dev %s up", devnames[i]); } } static int read_tun(char* data, int size) { if (tunfd < 0) return -1; int rv = read(tunfd, data, size); if (rv < 0) { if (errno == EAGAIN) return -1; if (errno == EBADFD) return -1; exit(1); } return rv; } static void flush_tun() { char data[SYZ_TUN_MAX_PACKET_SIZE]; while (read_tun(&data[0], sizeof(data)) != -1) { } } static long syz_kvm_setup_cpu(long a0, long a1, long a2, long a3, long a4, long a5, long a6, long a7) { return 0; } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } #define XT_TABLE_SIZE 1536 #define XT_MAX_ENTRIES 10 struct xt_counters { uint64_t pcnt, bcnt; }; struct ipt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_entries; unsigned int size; }; struct ipt_get_entries { char name[32]; unsigned int size; void* entrytable[XT_TABLE_SIZE / sizeof(void*)]; }; struct ipt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_counters; struct xt_counters* counters; char entrytable[XT_TABLE_SIZE]; }; struct ipt_table_desc { const char* name; struct ipt_getinfo info; struct ipt_replace replace; }; static struct ipt_table_desc ipv4_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; static struct ipt_table_desc ipv6_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; #define IPT_BASE_CTL 64 #define IPT_SO_SET_REPLACE (IPT_BASE_CTL) #define IPT_SO_GET_INFO (IPT_BASE_CTL) #define IPT_SO_GET_ENTRIES (IPT_BASE_CTL + 1) struct arpt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_entries; unsigned int size; }; struct arpt_get_entries { char name[32]; unsigned int size; void* entrytable[XT_TABLE_SIZE / sizeof(void*)]; }; struct arpt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_counters; struct xt_counters* counters; char entrytable[XT_TABLE_SIZE]; }; struct arpt_table_desc { const char* name; struct arpt_getinfo info; struct arpt_replace replace; }; static struct arpt_table_desc arpt_tables[] = { {.name = "filter"}, }; #define ARPT_BASE_CTL 96 #define ARPT_SO_SET_REPLACE (ARPT_BASE_CTL) #define ARPT_SO_GET_INFO (ARPT_BASE_CTL) #define ARPT_SO_GET_ENTRIES (ARPT_BASE_CTL + 1) static void checkpoint_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { struct ipt_get_entries entries; socklen_t optlen; int fd, i; fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); optlen = sizeof(table->info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { struct xt_counters counters[XT_MAX_ENTRIES]; struct ipt_get_entries entries; struct ipt_getinfo info; socklen_t optlen; int fd, i; fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; if (table->info.valid_hooks == 0) continue; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); optlen = sizeof(info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, level, IPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_arptables(void) { struct arpt_get_entries entries; socklen_t optlen; unsigned i; int fd; fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); optlen = sizeof(table->info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_arptables() { struct xt_counters counters[XT_MAX_ENTRIES]; struct arpt_get_entries entries; struct arpt_getinfo info; socklen_t optlen; unsigned i; int fd; fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; if (table->info.valid_hooks == 0) continue; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); optlen = sizeof(info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } else { } table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, SOL_IP, ARPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } #define NF_BR_NUMHOOKS 6 #define EBT_TABLE_MAXNAMELEN 32 #define EBT_CHAIN_MAXNAMELEN 32 #define EBT_BASE_CTL 128 #define EBT_SO_SET_ENTRIES (EBT_BASE_CTL) #define EBT_SO_GET_INFO (EBT_BASE_CTL) #define EBT_SO_GET_ENTRIES (EBT_SO_GET_INFO + 1) #define EBT_SO_GET_INIT_INFO (EBT_SO_GET_ENTRIES + 1) #define EBT_SO_GET_INIT_ENTRIES (EBT_SO_GET_INIT_INFO + 1) struct ebt_replace { char name[EBT_TABLE_MAXNAMELEN]; unsigned int valid_hooks; unsigned int nentries; unsigned int entries_size; struct ebt_entries* hook_entry[NF_BR_NUMHOOKS]; unsigned int num_counters; struct ebt_counter* counters; char* entries; }; struct ebt_entries { unsigned int distinguisher; char name[EBT_CHAIN_MAXNAMELEN]; unsigned int counter_offset; int policy; unsigned int nentries; char data[0] __attribute__((aligned(__alignof__(struct ebt_replace)))); }; struct ebt_table_desc { const char* name; struct ebt_replace replace; char entrytable[XT_TABLE_SIZE]; }; static struct ebt_table_desc ebt_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "broute"}, }; static void checkpoint_ebtables(void) { socklen_t optlen; unsigned i; int fd; fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; strcpy(table->replace.name, table->name); optlen = sizeof(table->replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_INFO, &table->replace, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->replace.entries_size > sizeof(table->entrytable)) exit(1); table->replace.num_counters = 0; table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_ENTRIES, &table->replace, &optlen)) exit(1); } close(fd); } static void reset_ebtables() { struct ebt_replace replace; char entrytable[XT_TABLE_SIZE]; socklen_t optlen; unsigned i, j, h; int fd; fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; if (table->replace.valid_hooks == 0) continue; memset(&replace, 0, sizeof(replace)); strcpy(replace.name, table->name); optlen = sizeof(replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INFO, &replace, &optlen)) exit(1); replace.num_counters = 0; table->replace.entries = 0; for (h = 0; h < NF_BR_NUMHOOKS; h++) table->replace.hook_entry[h] = 0; if (memcmp(&table->replace, &replace, sizeof(table->replace)) == 0) { memset(&entrytable, 0, sizeof(entrytable)); replace.entries = entrytable; optlen = sizeof(replace) + replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_ENTRIES, &replace, &optlen)) exit(1); if (memcmp(table->entrytable, entrytable, replace.entries_size) == 0) continue; } for (j = 0, h = 0; h < NF_BR_NUMHOOKS; h++) { if (table->replace.valid_hooks & (1 << h)) { table->replace.hook_entry[h] = (struct ebt_entries*)table->entrytable + j; j++; } } table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (setsockopt(fd, SOL_IP, EBT_SO_SET_ENTRIES, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_net_namespace(void) { checkpoint_ebtables(); checkpoint_arptables(); checkpoint_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); checkpoint_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void reset_net_namespace(void) { reset_ebtables(); reset_arptables(); reset_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); reset_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void setup_cgroups() { if (mkdir("/syzcgroup", 0777)) { } if (mkdir("/syzcgroup/unified", 0777)) { } if (mount("none", "/syzcgroup/unified", "cgroup2", 0, NULL)) { } if (chmod("/syzcgroup/unified", 0777)) { } if (!write_file("/syzcgroup/unified/cgroup.subtree_control", "+cpu +memory +io +pids +rdma")) { } if (mkdir("/syzcgroup/cpu", 0777)) { } if (mount("none", "/syzcgroup/cpu", "cgroup", 0, "cpuset,cpuacct,perf_event,hugetlb")) { } if (!write_file("/syzcgroup/cpu/cgroup.clone_children", "1")) { } if (chmod("/syzcgroup/cpu", 0777)) { } if (mkdir("/syzcgroup/net", 0777)) { } if (mount("none", "/syzcgroup/net", "cgroup", 0, "net_cls,net_prio,devices,freezer")) { } if (chmod("/syzcgroup/net", 0777)) { } } static void setup_binfmt_misc() { if (mount(0, "/proc/sys/fs/binfmt_misc", "binfmt_misc", 0, 0)) { } if (!write_file("/proc/sys/fs/binfmt_misc/register", ":syz0:M:0:\x01::./file0:")) { } if (!write_file("/proc/sys/fs/binfmt_misc/register", ":syz1:M:1:\x02::./file0:POC")) { } } static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } setup_cgroups(); setup_binfmt_misc(); } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); setsid(); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = 200 << 20; setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 0; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } } int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static int real_uid; static int real_gid; __attribute__((aligned(64 << 10))) static char sandbox_stack[1 << 20]; static int namespace_sandbox_proc(void* arg) { sandbox_common(); write_file("/proc/self/setgroups", "deny"); if (!write_file("/proc/self/uid_map", "0 %d 1\n", real_uid)) exit(1); if (!write_file("/proc/self/gid_map", "0 %d 1\n", real_gid)) exit(1); if (unshare(CLONE_NEWNET)) exit(1); initialize_tun(); initialize_netdevices(); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount(NULL, "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/unified", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/cpu", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/net", 0700)) exit(1); if (mount("/syzcgroup/unified", "./syz-tmp/newroot/syzcgroup/unified", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/cpu", "./syz-tmp/newroot/syzcgroup/cpu", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/net", "./syz-tmp/newroot/syzcgroup/net", NULL, bind_mount_flags, NULL)) { } if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); cap_data[0].effective &= ~(1 << CAP_SYS_PTRACE); cap_data[0].permitted &= ~(1 << CAP_SYS_PTRACE); cap_data[0].inheritable &= ~(1 << CAP_SYS_PTRACE); if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); loop(); exit(1); } #define SYZ_HAVE_SANDBOX_NAMESPACE 1 static int do_sandbox_namespace(void) { int pid; setup_common(); real_uid = getuid(); real_gid = getgid(); mprotect(sandbox_stack, 4096, PROT_NONE); pid = clone(namespace_sandbox_proc, &sandbox_stack[sizeof(sandbox_stack) - 64], CLONE_NEWUSER | CLONE_NEWPID, 0); return wait_for_loop(pid); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { DIR* dp; struct dirent* ep; int iter = 0; retry: while (umount2(dir, MNT_DETACH) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, MNT_DETACH) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, MNT_DETACH)) exit(1); } } closedir(dp); int i; for (i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, MNT_DETACH)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); int i; for (i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } #define SYZ_HAVE_SETUP_LOOP 1 static void setup_loop() { int pid = getpid(); char cgroupdir[64]; char file[128]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/pids.max", cgroupdir); if (!write_file(file, "32")) { } snprintf(file, sizeof(file), "%s/memory.low", cgroupdir); if (!write_file(file, "%d", 298 << 20)) { } snprintf(file, sizeof(file), "%s/memory.high", cgroupdir); if (!write_file(file, "%d", 299 << 20)) { } snprintf(file, sizeof(file), "%s/memory.max", cgroupdir); if (!write_file(file, "%d", 300 << 20)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); if (!write_file(file, "%d", pid)) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); if (!write_file(file, "%d", pid)) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); if (!write_file(file, "%d", pid)) { } checkpoint_net_namespace(); } #define SYZ_HAVE_RESET_LOOP 1 static void reset_loop() { reset_net_namespace(); } #define SYZ_HAVE_SETUP_TEST 1 static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (symlink(cgroupdir, "./cgroup")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.cpu")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.net")) { } if (!write_file("/proc/self/oom_score_adj", "1000")) { } flush_tun(); } #define SYZ_HAVE_RESET_TEST 1 static void reset_test() { int fd; for (fd = 3; fd < 30; fd++) close(fd); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { int i, call, thread; int collide = 0; again: for (call = 0; call < 8; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); if (collide && (call % 2) == 0) break; event_timedwait(&th->done, 45); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); if (!collide) { collide = 1; goto again; } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { setup_loop(); int iter; for (iter = 0;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); reset_test(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5 * 1000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { long res; switch (call) { case 0: syscall(__NR_ioctl, -1, 0x8912, 0x400200); break; case 1: NONFAILING(memcpy((void*)0x200007c0, "/dev/kvm", 9)); res = syscall(__NR_openat, 0xffffffffffffff9c, 0x200007c0, 0, 0); if (res != -1) r[0] = res; break; case 2: res = syscall(__NR_ioctl, r[0], 0xae01, 0); if (res != -1) r[1] = res; break; case 3: NONFAILING(*(uint64_t*)0x20000080 = 0x20); NONFAILING(*(uint64_t*)0x20000088 = 0x20000540); NONFAILING( memcpy((void*)0x20000540, "\xc4\xc1\x40\x16\x16\x66\xb8\x33\x00\x0f\x00\xd8\x0f\xc7\x9d" "\x04\x00\x00\x00\x44\x0f\x20\xc0\x35\x05\x00\x00\x00\x44\x0f" "\x22\xc0\x0f\x01\xc9\xc4\xe2\x79\x13\xcc\xb9\x80\x00\x00\xc0" "\x0f\x32\x35\x00\x04\x00\x00\x0f\x30\x66\xb8\x6e\x00\x0f\x00" "\xd0\x66\xb8\xe4\x00\x8e\xe8\x0f\xc7\xab\x42\x43\x00\x00", 74)); NONFAILING(*(uint64_t*)0x20000090 = 0x4a); syz_kvm_setup_cpu(r[1], -1, 0x2002b000, 0x20000080, 1, 0, 0x20000280, 0); break; case 4: res = syscall(__NR_ioctl, r[1], 0xae41, 0); if (res != -1) r[2] = res; break; case 5: NONFAILING(*(uint32_t*)0x20000000 = 0x24); syscall(__NR_ioctl, r[2], 0x4004ae86, 0x20000000); break; case 6: NONFAILING(*(uint64_t*)0x200002c0 = 8); NONFAILING(*(uint64_t*)0x200002c8 = 0x200001c0); NONFAILING( memcpy((void*)0x200001c0, "\x64\x65\x0f\x01\xd1\x0f\x21\xc1\x3e\x0f\xc7\x1e\xe4\xe5\x64" "\x26\x05\x33\x09\x2e\x0f\x08\x3e\x36\x36\x65\x0f\x18\x11\x65" "\x0f\x01\xcf\x0f\x20\xd8\x66\x35\x20\x00\x00\x00\x0f\x22\xd8" "\x0f\x01\x38\xba\xf8\x0c\x66\xb8\xd0\xff\xdb\x85\x66\xef\xba" "\xfc\x0c\x66\xb8\x09\x00\x00\x00\x66\xef", 70)); NONFAILING(*(uint64_t*)0x200002d0 = 0x46); NONFAILING(*(uint64_t*)0x20000300 = 1); NONFAILING(*(uint64_t*)0x20000308 = 0x40220); syz_kvm_setup_cpu(-1, r[2], 0x20026000, 0x200002c0, 1, 0, 0x20000300, 1); break; case 7: syscall(__NR_ioctl, r[2], 0xae80, 0); break; } } int main(void) { syscall(__NR_mmap, 0x20000000, 0x1000000, 3, 0x32, -1, 0); install_segv_handler(); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_namespace(); } } sleep(1000000); return 0; }
the_stack_data/1076420.c
/* File generated automatically by the QuickJS compiler. */ #include <inttypes.h> const uint32_t jslib_network_size = 3795; const uint8_t jslib_network[3795] = { 0x01, 0x52, 0x1c, 0x73, 0x72, 0x63, 0x2f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2e, 0x6a, 0x73, 0x06, 0x73, 0x74, 0x64, 0x0c, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x0e, 0x4e, 0x45, 0x54, 0x57, 0x4f, 0x52, 0x4b, 0x22, 0x6f, 0x70, 0x65, 0x6e, 0x4e, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x0e, 0x6e, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x0e, 0x64, 0x65, 0x76, 0x54, 0x79, 0x70, 0x65, 0x18, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x45, 0x6d, 0x69, 0x74, 0x74, 0x65, 0x72, 0x16, 0x5f, 0x6e, 0x65, 0x74, 0x6d, 0x67, 0x72, 0x49, 0x6e, 0x69, 0x74, 0x1a, 0x5f, 0x6e, 0x65, 0x74, 0x6d, 0x67, 0x72, 0x47, 0x65, 0x74, 0x44, 0x65, 0x76, 0x14, 0x5f, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x0e, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x0e, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x14, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x0e, 0x67, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x67, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x14, 0x73, 0x61, 0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x16, 0x73, 0x65, 0x74, 0x49, 0x66, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x16, 0x67, 0x65, 0x74, 0x49, 0x66, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x08, 0x77, 0x69, 0x66, 0x69, 0x10, 0x63, 0x65, 0x6c, 0x6c, 0x75, 0x6c, 0x61, 0x72, 0x0c, 0x65, 0x74, 0x68, 0x6e, 0x65, 0x74, 0x7c, 0x64, 0x65, 0x76, 0x54, 0x79, 0x70, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x75, 0x6c, 0x61, 0x72, 0x2f, 0x77, 0x69, 0x66, 0x69, 0x2f, 0x65, 0x74, 0x68, 0x6e, 0x65, 0x74, 0x2c, 0x20, 0x70, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x20, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x20, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x21, 0x0e, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x06, 0x6c, 0x6f, 0x67, 0x16, 0x64, 0x65, 0x76, 0x54, 0x79, 0x70, 0x65, 0x20, 0x69, 0x73, 0x20, 0x78, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x20, 0x2a, 0x20, 0x61, 0x73, 0x20, 0x4e, 0x45, 0x54, 0x4d, 0x47, 0x52, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x27, 0x4e, 0x45, 0x54, 0x4d, 0x47, 0x52, 0x27, 0x3b, 0x20, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x54, 0x68, 0x69, 0x73, 0x2e, 0x4e, 0x45, 0x54, 0x4d, 0x47, 0x52, 0x20, 0x3d, 0x20, 0x4e, 0x45, 0x54, 0x4d, 0x47, 0x52, 0x14, 0x2f, 0x64, 0x65, 0x76, 0x2f, 0x77, 0x69, 0x66, 0x69, 0x30, 0x16, 0x64, 0x65, 0x76, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x12, 0x2f, 0x64, 0x65, 0x76, 0x2f, 0x65, 0x74, 0x68, 0x30, 0x88, 0x01, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x20, 0x2a, 0x20, 0x61, 0x73, 0x20, 0x43, 0x45, 0x4c, 0x4c, 0x55, 0x4c, 0x41, 0x52, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x27, 0x43, 0x45, 0x4c, 0x4c, 0x55, 0x4c, 0x41, 0x52, 0x27, 0x3b, 0x20, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x54, 0x68, 0x69, 0x73, 0x2e, 0x43, 0x45, 0x4c, 0x4c, 0x55, 0x4c, 0x41, 0x52, 0x20, 0x3d, 0x20, 0x43, 0x45, 0x4c, 0x4c, 0x55, 0x4c, 0x41, 0x52, 0x0c, 0x4e, 0x45, 0x54, 0x4d, 0x47, 0x52, 0x16, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x69, 0x74, 0x08, 0x65, 0x6d, 0x69, 0x74, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x6e, 0x65, 0x74, 0x6d, 0x67, 0x72, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x20, 0x6e, 0x65, 0x74, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x0c, 0x67, 0x65, 0x74, 0x44, 0x65, 0x76, 0x3a, 0x6e, 0x65, 0x74, 0x6d, 0x67, 0x72, 0x20, 0x67, 0x65, 0x74, 0x20, 0x64, 0x65, 0x76, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x3a, 0x20, 0x04, 0x63, 0x62, 0x06, 0x63, 0x62, 0x5f, 0x10, 0x43, 0x45, 0x4c, 0x4c, 0x55, 0x4c, 0x41, 0x52, 0x12, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x08, 0x62, 0x69, 0x6e, 0x64, 0x40, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x6f, 0x6e, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x75, 0x6c, 0x61, 0x72, 0x20, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x3c, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x20, 0x6f, 0x6e, 0x20, 0x65, 0x74, 0x68, 0x6e, 0x65, 0x74, 0x20, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x14, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x4e, 0x4e, 0x45, 0x43, 0x54, 0x24, 0x65, 0x74, 0x68, 0x6e, 0x65, 0x74, 0x20, 0x20, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x1e, 0x65, 0x74, 0x68, 0x6e, 0x65, 0x74, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x08, 0x74, 0x79, 0x70, 0x65, 0x0c, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x36, 0x4e, 0x6f, 0x74, 0x20, 0x77, 0x69, 0x66, 0x69, 0x20, 0x64, 0x65, 0x76, 0x2c, 0x20, 0x63, 0x61, 0x6e, 0x27, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x08, 0x73, 0x73, 0x69, 0x64, 0x10, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x0a, 0x62, 0x73, 0x73, 0x69, 0x64, 0x14, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x6d, 0x73, 0x06, 0x72, 0x65, 0x74, 0x3c, 0x4e, 0x6f, 0x74, 0x20, 0x77, 0x69, 0x66, 0x69, 0x20, 0x64, 0x65, 0x76, 0x2c, 0x20, 0x63, 0x61, 0x6e, 0x27, 0x74, 0x20, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x2e, 0x6e, 0x65, 0x74, 0x6d, 0x67, 0x72, 0x20, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x08, 0x69, 0x6e, 0x66, 0x6f, 0x0e, 0x73, 0x69, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x16, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x0e, 0x6e, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x14, 0x67, 0x65, 0x74, 0x53, 0x69, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x1c, 0x67, 0x65, 0x74, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x20, 0x6e, 0x65, 0x74, 0x20, 0x6d, 0x6f, 0x64, 0x65, 0x20, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x10, 0x67, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x63, 0x65, 0x6c, 0x6c, 0x75, 0x6c, 0x61, 0x72, 0x20, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x20, 0x69, 0x73, 0x6e, 0x27, 0x74, 0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x20, 0x73, 0x61, 0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x21, 0x30, 0x6e, 0x65, 0x74, 0x6d, 0x67, 0x72, 0x20, 0x73, 0x61, 0x76, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x56, 0x73, 0x65, 0x74, 0x49, 0x66, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x75, 0x6c, 0x61, 0x72, 0x20, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x20, 0x69, 0x73, 0x6e, 0x27, 0x74, 0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x21, 0x1c, 0x68, 0x61, 0x73, 0x4f, 0x77, 0x6e, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x0e, 0x64, 0x68, 0x63, 0x70, 0x5f, 0x65, 0x6e, 0x80, 0x01, 0x73, 0x65, 0x74, 0x49, 0x66, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x20, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x64, 0x68, 0x63, 0x70, 0x5f, 0x65, 0x6e, 0x20, 0x75, 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x20, 0x62, 0x6f, 0x6f, 0x6c, 0x20, 0x74, 0x79, 0x70, 0x65, 0x21, 0x0e, 0x69, 0x70, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x08, 0x6d, 0x61, 0x73, 0x6b, 0x04, 0x67, 0x77, 0x14, 0x64, 0x6e, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x30, 0x73, 0x65, 0x74, 0x49, 0x66, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x20, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x64, 0x68, 0x63, 0x70, 0x0c, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54, 0x63, 0x65, 0x6c, 0x6c, 0x75, 0x6c, 0x61, 0x72, 0x20, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x20, 0x69, 0x73, 0x6e, 0x27, 0x74, 0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x20, 0x67, 0x65, 0x74, 0x49, 0x66, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x21, 0x26, 0x67, 0x65, 0x74, 0x20, 0x69, 0x66, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x0f, 0x9c, 0x03, 0x03, 0x9e, 0x03, 0xa0, 0x03, 0xa2, 0x03, 0x01, 0x00, 0x05, 0xa4, 0x03, 0x00, 0x03, 0x00, 0xf8, 0x01, 0x00, 0x01, 0xf8, 0x01, 0x01, 0x02, 0xf8, 0x01, 0x02, 0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01, 0x00, 0x02, 0x00, 0x03, 0x06, 0x0d, 0x80, 0x01, 0x02, 0xa6, 0x03, 0x02, 0x00, 0x60, 0xea, 0x01, 0x03, 0x01, 0xe0, 0x9e, 0x03, 0x00, 0x0d, 0xa0, 0x03, 0x01, 0x0d, 0xa2, 0x03, 0x02, 0x0d, 0xa8, 0x03, 0x00, 0x01, 0xa6, 0x03, 0x01, 0x09, 0xa4, 0x03, 0x02, 0x01, 0xbf, 0x0c, 0x5f, 0x05, 0x00, 0xb4, 0xe3, 0x61, 0x00, 0x00, 0x65, 0x01, 0x00, 0x41, 0xd5, 0x00, 0x00, 0x00, 0x61, 0x01, 0x00, 0xbe, 0x00, 0x56, 0xd3, 0x00, 0x00, 0x00, 0x01, 0xbf, 0x01, 0x54, 0xd6, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x02, 0x54, 0xd7, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x03, 0x54, 0xd8, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x04, 0x54, 0xd9, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x05, 0x54, 0xda, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x06, 0x54, 0xdb, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x07, 0x54, 0xdc, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x08, 0x54, 0xdd, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x09, 0x54, 0xde, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x0a, 0x54, 0xdf, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x0b, 0x54, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x06, 0xc9, 0x0e, 0xcc, 0x68, 0x01, 0x00, 0x5f, 0x04, 0x00, 0x29, 0x9c, 0x03, 0x01, 0x2a, 0x01, 0x00, 0x05, 0x0c, 0x0d, 0x00, 0x16, 0x52, 0x00, 0x08, 0x16, 0x00, 0x08, 0x44, 0x00, 0x08, 0x2c, 0x00, 0x08, 0x32, 0x00, 0x08, 0x22, 0x00, 0x08, 0x2a, 0x00, 0x08, 0x24, 0x00, 0x08, 0x18, 0x00, 0x08, 0x3e, 0x00, 0x08, 0x1a, 0x2b, 0x00, 0x0a, 0x08, 0x0e, 0xc6, 0x07, 0x01, 0x00, 0x01, 0x03, 0x01, 0x04, 0x03, 0x00, 0xba, 0x02, 0x04, 0xc2, 0x03, 0x00, 0x01, 0x00, 0xe2, 0x01, 0x00, 0x01, 0x00, 0xe0, 0x01, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x40, 0xea, 0x01, 0x01, 0x0d, 0xa8, 0x03, 0x03, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0x0c, 0x02, 0xc8, 0x0c, 0x03, 0xc9, 0x61, 0x02, 0x00, 0x2b, 0xc4, 0x34, 0xc5, 0x21, 0x00, 0x00, 0x11, 0x64, 0x02, 0x00, 0x65, 0x00, 0x00, 0x11, 0xe9, 0x08, 0x62, 0x02, 0x00, 0x1b, 0x24, 0x00, 0x00, 0x0e, 0x0e, 0xd0, 0x41, 0xd4, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x0f, 0x62, 0x02, 0x00, 0x42, 0xd9, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xe1, 0xeb, 0x08, 0xd0, 0x41, 0xd4, 0x00, 0x00, 0x00, 0xe1, 0xdd, 0x04, 0xe2, 0x00, 0x00, 0x00, 0xab, 0xe9, 0x22, 0xdd, 0x04, 0xe3, 0x00, 0x00, 0x00, 0xab, 0xe9, 0x19, 0xdd, 0x04, 0xe4, 0x00, 0x00, 0x00, 0xab, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xe5, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xe7, 0x00, 0x00, 0x00, 0x04, 0xe8, 0x00, 0x00, 0x00, 0xdd, 0x9e, 0x24, 0x01, 0x00, 0x0e, 0xdd, 0x04, 0xe2, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x40, 0x65, 0x02, 0x00, 0x42, 0x3a, 0x00, 0x00, 0x00, 0x04, 0xe9, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x62, 0x02, 0x00, 0x04, 0xea, 0x00, 0x00, 0x00, 0x43, 0x36, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0x42, 0xd6, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0x62, 0x02, 0x00, 0x62, 0x02, 0x00, 0x42, 0xd7, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x43, 0xeb, 0x00, 0x00, 0x00, 0xeb, 0x6f, 0xdd, 0x04, 0xe4, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x40, 0x65, 0x02, 0x00, 0x42, 0x3a, 0x00, 0x00, 0x00, 0x04, 0xe9, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x62, 0x02, 0x00, 0x04, 0xec, 0x00, 0x00, 0x00, 0x43, 0x36, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0x42, 0xd6, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0x62, 0x02, 0x00, 0x62, 0x02, 0x00, 0x42, 0xd7, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x43, 0xeb, 0x00, 0x00, 0x00, 0xeb, 0x27, 0xdd, 0x04, 0xe3, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x1e, 0x65, 0x02, 0x00, 0x42, 0x3a, 0x00, 0x00, 0x00, 0x04, 0xed, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x62, 0x02, 0x00, 0x42, 0xd8, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0x62, 0x02, 0x00, 0x28, 0x9c, 0x03, 0x08, 0x19, 0x35, 0x81, 0x30, 0x3f, 0x0e, 0x28, 0x8a, 0x4a, 0x09, 0x6c, 0x30, 0x58, 0x44, 0x3f, 0x62, 0x0d, 0x30, 0x58, 0x44, 0x3f, 0x64, 0x0d, 0x30, 0x58, 0x40, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x28, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0x38, 0xee, 0x00, 0x00, 0x00, 0x42, 0xef, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xb4, 0xad, 0xe9, 0x15, 0xc4, 0x42, 0xf0, 0x00, 0x00, 0x00, 0x04, 0xf1, 0x00, 0x00, 0x00, 0x04, 0xf2, 0x00, 0x00, 0x00, 0x24, 0x02, 0x00, 0x0e, 0x29, 0x9c, 0x03, 0x2c, 0x03, 0x0d, 0x58, 0x68, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x50, 0x02, 0xd6, 0x03, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xe7, 0x00, 0x00, 0x00, 0x04, 0xf3, 0x00, 0x00, 0x00, 0xc5, 0x41, 0x36, 0x00, 0x00, 0x00, 0x9e, 0x24, 0x01, 0x00, 0x0e, 0x38, 0xee, 0x00, 0x00, 0x00, 0x42, 0xf4, 0x00, 0x00, 0x00, 0xc5, 0x41, 0x36, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcc, 0xb3, 0xaa, 0xe9, 0x1b, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xe7, 0x00, 0x00, 0x00, 0x04, 0xf5, 0x00, 0x00, 0x00, 0xc5, 0x41, 0x36, 0x00, 0x00, 0x00, 0x9e, 0x24, 0x01, 0x00, 0x29, 0xc4, 0x28, 0x9c, 0x03, 0x32, 0x06, 0x0d, 0x85, 0x67, 0x17, 0x81, 0x09, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x03, 0x00, 0x06, 0x01, 0x02, 0x8b, 0x01, 0x03, 0xec, 0x03, 0x00, 0x00, 0x00, 0xee, 0x03, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0xa8, 0x03, 0x03, 0x00, 0x08, 0xca, 0xdc, 0x04, 0xe3, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x39, 0xbf, 0x00, 0x4d, 0xf6, 0x00, 0x00, 0x00, 0xc8, 0x38, 0xf8, 0x00, 0x00, 0x00, 0x42, 0xf9, 0x00, 0x00, 0x00, 0xc4, 0x42, 0xfa, 0x00, 0x00, 0x00, 0xc6, 0x24, 0x01, 0x00, 0x24, 0x01, 0x00, 0xb4, 0xad, 0xe9, 0x15, 0xc6, 0x42, 0xf0, 0x00, 0x00, 0x00, 0x04, 0xf1, 0x00, 0x00, 0x00, 0x04, 0xfb, 0x00, 0x00, 0x00, 0x24, 0x02, 0x00, 0x0e, 0x29, 0xdc, 0x04, 0xe4, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x3f, 0xbf, 0x01, 0x4d, 0xf7, 0x00, 0x00, 0x00, 0xc9, 0x38, 0xee, 0x00, 0x00, 0x00, 0x42, 0xda, 0x00, 0x00, 0x00, 0xc6, 0x41, 0xeb, 0x00, 0x00, 0x00, 0xc5, 0x42, 0xfa, 0x00, 0x00, 0x00, 0xc6, 0x24, 0x01, 0x00, 0x24, 0x02, 0x00, 0xb4, 0xad, 0xe9, 0x15, 0xc6, 0x42, 0xf0, 0x00, 0x00, 0x00, 0x04, 0xf1, 0x00, 0x00, 0x00, 0x04, 0xfc, 0x00, 0x00, 0x00, 0x24, 0x02, 0x00, 0x0e, 0x29, 0x29, 0x9c, 0x03, 0x3d, 0x0f, 0x0d, 0x00, 0x09, 0x0e, 0x2c, 0x8a, 0x69, 0x09, 0x00, 0x09, 0x12, 0x2c, 0xa8, 0x69, 0x08, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x01, 0x01, 0x01, 0x03, 0x00, 0x00, 0x27, 0x02, 0x8e, 0x02, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xd0, 0xb5, 0xac, 0xe9, 0x11, 0xc4, 0x42, 0xf0, 0x00, 0x00, 0x00, 0x04, 0xda, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x29, 0xc4, 0x42, 0xf0, 0x00, 0x00, 0x00, 0x04, 0xdb, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x29, 0x9c, 0x03, 0x3f, 0x05, 0x0d, 0x1c, 0x4e, 0x08, 0x4f, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x01, 0x01, 0x01, 0x03, 0x00, 0x00, 0x51, 0x02, 0x8e, 0x02, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xd0, 0x04, 0xfd, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x24, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xe7, 0x00, 0x00, 0x00, 0x04, 0xfe, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0xc4, 0x42, 0xf0, 0x00, 0x00, 0x00, 0x04, 0xdb, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x29, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xe7, 0x00, 0x00, 0x00, 0x04, 0xff, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0xc4, 0x42, 0xf0, 0x00, 0x00, 0x00, 0x04, 0xda, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x29, 0x9c, 0x03, 0x4e, 0x07, 0x0d, 0x30, 0x62, 0x4e, 0x08, 0x62, 0x4f, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x01, 0x00, 0x03, 0x02, 0x00, 0x43, 0x01, 0x80, 0x04, 0x00, 0x00, 0x00, 0xa8, 0x03, 0x03, 0x00, 0xa2, 0x03, 0x02, 0x0c, 0xdc, 0xb4, 0xaa, 0xe9, 0x3d, 0x65, 0x01, 0x00, 0x42, 0xd9, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xcc, 0x11, 0xb4, 0xac, 0xe9, 0x09, 0x04, 0xe2, 0x00, 0x00, 0x00, 0xc8, 0xeb, 0x21, 0x11, 0xb5, 0xac, 0xe9, 0x09, 0x04, 0xe3, 0x00, 0x00, 0x00, 0xc8, 0xeb, 0x14, 0x11, 0xb6, 0xac, 0xe9, 0x09, 0x04, 0xe4, 0x00, 0x00, 0x00, 0xc8, 0xeb, 0x07, 0x04, 0x01, 0x01, 0x00, 0x00, 0xc8, 0x0e, 0xc4, 0x28, 0xdc, 0x28, 0x9c, 0x03, 0x62, 0x0d, 0x03, 0x1c, 0x40, 0x1c, 0x2b, 0x1c, 0x2b, 0x1c, 0x2c, 0x21, 0x08, 0x08, 0x08, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x01, 0x01, 0x01, 0x07, 0x01, 0x01, 0x78, 0x02, 0xc2, 0x03, 0x00, 0x01, 0x80, 0x10, 0x00, 0x01, 0x00, 0xa8, 0x03, 0x03, 0x00, 0x08, 0xc8, 0xdc, 0x04, 0xe2, 0x00, 0x00, 0x00, 0xab, 0xe9, 0x14, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xe7, 0x00, 0x00, 0x00, 0x04, 0x02, 0x01, 0x00, 0x00, 0x24, 0x01, 0x00, 0x29, 0x0b, 0xd0, 0x41, 0x03, 0x01, 0x00, 0x00, 0x4c, 0x03, 0x01, 0x00, 0x00, 0xd0, 0x41, 0x04, 0x01, 0x00, 0x00, 0x4c, 0x04, 0x01, 0x00, 0x00, 0xd0, 0x41, 0x05, 0x01, 0x00, 0x00, 0x11, 0xea, 0x03, 0x0e, 0xc0, 0x4c, 0x05, 0x01, 0x00, 0x00, 0xd0, 0x41, 0x06, 0x01, 0x00, 0x00, 0x11, 0xea, 0x05, 0x0e, 0xbd, 0x50, 0x46, 0x4c, 0x06, 0x01, 0x00, 0x00, 0xd4, 0x38, 0xee, 0x00, 0x00, 0x00, 0x42, 0xda, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xeb, 0x00, 0x00, 0x00, 0xd0, 0xbf, 0x00, 0x42, 0xfa, 0x00, 0x00, 0x00, 0xc4, 0x24, 0x01, 0x00, 0x24, 0x03, 0x00, 0x29, 0x9c, 0x03, 0x78, 0x0e, 0x0d, 0x30, 0x5e, 0x09, 0x08, 0x3a, 0x3a, 0x53, 0x5d, 0x09, 0x00, 0x11, 0x0c, 0x49, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x01, 0x01, 0x01, 0x04, 0x01, 0x00, 0x35, 0x02, 0x8e, 0x02, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0xc2, 0x03, 0x00, 0x03, 0x08, 0xc8, 0xd0, 0x04, 0xfd, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x16, 0xc4, 0x42, 0xf0, 0x00, 0x00, 0x00, 0x04, 0xdb, 0x00, 0x00, 0x00, 0xdc, 0x41, 0x03, 0x01, 0x00, 0x00, 0x24, 0x02, 0x00, 0x29, 0xc4, 0x42, 0xf0, 0x00, 0x00, 0x00, 0x04, 0xda, 0x00, 0x00, 0x00, 0xdc, 0x41, 0x03, 0x01, 0x00, 0x00, 0x24, 0x02, 0x00, 0x29, 0x9c, 0x03, 0x85, 0x01, 0x05, 0x0d, 0x30, 0x68, 0x08, 0x67, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x02, 0x00, 0x04, 0x01, 0x00, 0x5e, 0x02, 0x8e, 0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0xa8, 0x03, 0x03, 0x00, 0x08, 0xc9, 0xdc, 0x04, 0xe2, 0x00, 0x00, 0x00, 0xab, 0xe9, 0x14, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xe7, 0x00, 0x00, 0x00, 0x04, 0x08, 0x01, 0x00, 0x00, 0x24, 0x01, 0x00, 0x29, 0x38, 0xee, 0x00, 0x00, 0x00, 0x42, 0xdb, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xeb, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcc, 0xb4, 0xad, 0xe9, 0x15, 0xc5, 0x42, 0xf0, 0x00, 0x00, 0x00, 0x04, 0xf1, 0x00, 0x00, 0x00, 0x04, 0x09, 0x01, 0x00, 0x00, 0x24, 0x02, 0x00, 0x29, 0xc5, 0x42, 0xf0, 0x00, 0x00, 0x00, 0x04, 0xdb, 0x00, 0x00, 0x00, 0x38, 0x03, 0x01, 0x00, 0x00, 0x24, 0x02, 0x00, 0x29, 0x9c, 0x03, 0x91, 0x01, 0x09, 0x0d, 0x30, 0x5e, 0x09, 0x67, 0x17, 0x63, 0x08, 0x62, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x03, 0x00, 0x03, 0x01, 0x00, 0x80, 0x01, 0x03, 0x94, 0x04, 0x00, 0x00, 0x00, 0x80, 0x04, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0xa8, 0x03, 0x03, 0x00, 0x08, 0xca, 0x0b, 0x07, 0x4c, 0x0b, 0x01, 0x00, 0x00, 0x07, 0x4c, 0x0c, 0x01, 0x00, 0x00, 0x07, 0x4c, 0x0d, 0x01, 0x00, 0x00, 0xc8, 0xdc, 0xcd, 0x04, 0xe2, 0x00, 0x00, 0x00, 0xaa, 0x11, 0xea, 0x09, 0x0e, 0xc5, 0x04, 0xe4, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x12, 0xc4, 0xc6, 0x42, 0xe0, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x43, 0x0d, 0x01, 0x00, 0x00, 0xc4, 0x28, 0xc5, 0x04, 0xe3, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x29, 0xc4, 0x38, 0xf8, 0x00, 0x00, 0x00, 0x42, 0x0e, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0x43, 0x0b, 0x01, 0x00, 0x00, 0xc4, 0x38, 0xf8, 0x00, 0x00, 0x00, 0x42, 0x0f, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0x43, 0x0c, 0x01, 0x00, 0x00, 0xc4, 0x28, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xe7, 0x00, 0x00, 0x00, 0x04, 0x10, 0x01, 0x00, 0x00, 0x24, 0x01, 0x00, 0x29, 0x9c, 0x03, 0x9f, 0x01, 0x11, 0x0d, 0x08, 0x21, 0x21, 0x21, 0x08, 0x0d, 0x62, 0x4e, 0x08, 0x09, 0x30, 0x62, 0x62, 0x08, 0x08, 0x5d, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x03, 0x00, 0x03, 0x01, 0x00, 0x62, 0x03, 0x80, 0x04, 0x00, 0x00, 0x00, 0x8e, 0x04, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0xa8, 0x03, 0x03, 0x00, 0x08, 0xca, 0xdc, 0xcc, 0x04, 0xe2, 0x00, 0x00, 0x00, 0xaa, 0x11, 0xea, 0x09, 0x0e, 0xc4, 0x04, 0xe4, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x25, 0x38, 0xee, 0x00, 0x00, 0x00, 0x42, 0x11, 0x01, 0x00, 0x00, 0xc6, 0x41, 0xeb, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcd, 0xb9, 0xaa, 0xe9, 0x07, 0x04, 0xda, 0x00, 0x00, 0x00, 0x28, 0x04, 0xdb, 0x00, 0x00, 0x00, 0x28, 0xc4, 0x04, 0xe3, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x1e, 0x38, 0xf8, 0x00, 0x00, 0x00, 0x42, 0xdd, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xb5, 0xab, 0xe9, 0x07, 0x04, 0xdb, 0x00, 0x00, 0x00, 0x28, 0x04, 0xda, 0x00, 0x00, 0x00, 0x28, 0x29, 0x9c, 0x03, 0xb4, 0x01, 0x0f, 0x0d, 0x0d, 0x62, 0x67, 0x17, 0x1c, 0x08, 0x1d, 0x08, 0x30, 0x58, 0x1c, 0x08, 0x1c, 0x08, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x02, 0x00, 0x03, 0x01, 0x00, 0x42, 0x02, 0x8e, 0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0xa8, 0x03, 0x03, 0x00, 0x08, 0xc9, 0xdc, 0x04, 0xe3, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0x12, 0x01, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x38, 0xee, 0x00, 0x00, 0x00, 0x42, 0xde, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xeb, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcc, 0xb4, 0xad, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0x13, 0x01, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x29, 0x9c, 0x03, 0xc6, 0x01, 0x08, 0x0d, 0x30, 0x4a, 0x09, 0x67, 0x17, 0x49, 0x08, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x01, 0x02, 0x01, 0x04, 0x01, 0x00, 0xd3, 0x01, 0x03, 0xc2, 0x03, 0x00, 0x01, 0x00, 0x8e, 0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0xa8, 0x03, 0x03, 0x00, 0x08, 0xc9, 0xdc, 0x04, 0xe3, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0x14, 0x01, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xd0, 0x42, 0x15, 0x01, 0x00, 0x00, 0x04, 0x16, 0x01, 0x00, 0x00, 0x24, 0x01, 0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0x17, 0x01, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x0b, 0xd0, 0x41, 0x16, 0x01, 0x00, 0x00, 0x4c, 0x16, 0x01, 0x00, 0x00, 0xd0, 0x41, 0x18, 0x01, 0x00, 0x00, 0x11, 0xea, 0x03, 0x0e, 0xc0, 0x4c, 0x18, 0x01, 0x00, 0x00, 0xd0, 0x41, 0x19, 0x01, 0x00, 0x00, 0x11, 0xea, 0x03, 0x0e, 0xc0, 0x4c, 0x19, 0x01, 0x00, 0x00, 0xd0, 0x41, 0x1a, 0x01, 0x00, 0x00, 0x11, 0xea, 0x03, 0x0e, 0xc0, 0x4c, 0x1a, 0x01, 0x00, 0x00, 0xd0, 0x41, 0x1b, 0x01, 0x00, 0x00, 0x11, 0xea, 0x03, 0x0e, 0xc0, 0x4c, 0x1b, 0x01, 0x00, 0x00, 0xd8, 0x41, 0x16, 0x01, 0x00, 0x00, 0xe9, 0x14, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xe7, 0x00, 0x00, 0x00, 0x04, 0x1c, 0x01, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x38, 0xee, 0x00, 0x00, 0x00, 0x42, 0xdf, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xeb, 0x00, 0x00, 0x00, 0xd0, 0x24, 0x02, 0x00, 0xcc, 0xb4, 0xad, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0x13, 0x01, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc5, 0x42, 0xd8, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x29, 0x9c, 0x03, 0xd2, 0x01, 0x15, 0x0d, 0x30, 0x4a, 0x09, 0x58, 0x4a, 0x09, 0x08, 0x3a, 0x53, 0x53, 0x53, 0x53, 0x09, 0x26, 0x64, 0x6c, 0x17, 0x49, 0x09, 0x30, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x02, 0x00, 0x03, 0x01, 0x00, 0x42, 0x02, 0xba, 0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0xa8, 0x03, 0x03, 0x00, 0x08, 0xc9, 0xdc, 0x04, 0xe3, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0x1e, 0x01, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x38, 0xee, 0x00, 0x00, 0x00, 0x42, 0xe0, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xeb, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcc, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0x1f, 0x01, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x28, 0x9c, 0x03, 0xf1, 0x01, 0x08, 0x0d, 0x30, 0x4a, 0x09, 0x67, 0x12, 0x49, 0x08, 0x0e, 0x43, 0x06, 0x01, 0xa4, 0x03, 0x01, 0x00, 0x01, 0x03, 0x01, 0x00, 0x09, 0x01, 0xc2, 0x03, 0x00, 0x01, 0x00, 0xa6, 0x03, 0x04, 0x08, 0x65, 0x00, 0x00, 0x11, 0xd0, 0x21, 0x01, 0x00, 0x28, 0x9c, 0x03, 0xff, 0x01, 0x01, 0x03, };
the_stack_data/101784.c
#define _XOPEN_SOURCE 500 #include <sys/types.h> #include <sys/stat.h> #include <libgen.h> #include <limits.h> #include <errno.h> #include <stdlib.h> #include <stdio.h> #include <string.h> static const char* argv0; static int do_realpath(const char* path) { char buf[PATH_MAX]; if(!realpath(path, buf)) { fprintf(stderr, "%s: %s: %s\n", argv0, path, strerror(errno)); return -1; } puts(buf); return 0; } /* Usage: realpath [FILE...] */ int main(int argc, const char* argv[]) { int i, ret; argv0 = argv[0]; for(i = 1; i < argc; i++) { if(argv[i][0] != '-') { break; } else { fprintf(stderr, "%s: invalid argument: %s\n", argv[0], argv[i]); return 1; } } ret = 0; for(; i < argc; i++) { if(do_realpath(argv[i])) ret = 1; } return ret; }
the_stack_data/148578415.c
#include <stdio.h> #include <stdlib.h> int main() { int towns; scanf("%d", &towns); int *numBuff; numBuff = (int *) malloc(towns * sizeof(int)); int profit; for (int i = 0; i < towns; i++) { scanf(" %d", &profit); numBuff[i] = profit; } long long int sumNow = 0; long long int maxSum = 0; for(int j = 0; j < towns; j++){ if(sumNow + numBuff[j] > 0) sumNow += numBuff[j]; else sumNow = 0; if(maxSum >= sumNow) maxSum = maxSum; else maxSum = sumNow; } printf("%llu\n", maxSum); free(numBuff); return 0; }
the_stack_data/190768716.c
/* gcc -Wall ./memory.c -o memory */ #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include<math.h> /* * System used: Arch Linux, 64bit, x86 * Linux loisoh 4.10.6-1-ARCH #1 SMP PREEMPT Mon Mar 27 08:28:22 CEST 2017 x86_64 GNU/Linux */ #define PAGE_SIZE 4096; /* * Calculate virtual page of virtual address. */ int calculate_page (uint32_t address) { return address / PAGE_SIZE; } /* * Calculate page offset of virtual address. */ int calculate_offset (uint32_t address) { return address % PAGE_SIZE; } int main(int argc, char *argv[]) { long long_input; uint32_t address; int offset, page; if (argc != 2) { printf("You must provide a parameter as input!\n"); return -1; } else { long_input = atol(argv[1]); /* sizeof returns size in bytes, hence *8. */ long supremum = pow(2 , 8 * sizeof(uint32_t)); if (long_input < 0 || long_input >= supremum) { printf("You must enter a valid 32bit address as parameter!\n"); return -1; } else { address = (uint32_t) long_input; } } page = calculate_page(address); offset = calculate_offset(address); printf("The address %u contains:\n", address); printf("Page number: %i\n", page); printf("Offset: %i\n", offset); return 0; }
the_stack_data/92325328.c
/********WAP to find the greatest of three number using pointer && function****************/ int lar(int *ptr1,int *ptr2, int *ptr3) { if((*ptr1 >=*ptr2) && (*ptr1 >= *ptr3)){return *ptr1;} else if ((*ptr2 >=*ptr1) && (*ptr2>=*ptr3)){return *ptr2;} else {return *ptr3;} } #include<stdio.h> main() { printf("Enter three numbers\n"); int a,b,c,largest; scanf("%d",&a); scanf("%d",&b); scanf("%d",&c); int y =lar(&a,&b,&c); printf("Largest is \n %d",y); }
the_stack_data/115766911.c
int f(int x) { return x + 5; } int main(void) { return f(7); }
the_stack_data/145453267.c
#include <stdio.h> #include <stdlib.h> struct Node { int data; struct Node *next; } *first = NULL; void display(struct Node *p, int n) { for (int i = 0; i < n; i++) { printf("%d\t", p->data); p = p->next; } } void duplicates(struct Node *p) { struct Node *pre,*q; pre = first; while(pre!=NULL && pre->next!=NULL){ q = pre; while(q->next !=NULL){ if(pre->data ==q->next->data ){ struct Node*n = q->next; q->next = q->next->next; free(n); } else{ q=q->next; } } pre=pre->next; } } int main() { int n, element; printf("Enter no of nodes"); scanf("%d", &n); struct Node *t, *last; printf("enter data of 1 node"); scanf("%d", &element); first = (struct Node *)malloc(sizeof(struct Node)); first->data = element; first->next = NULL; last = first; for (int i = 2; i <= n; i++) { printf("enter data of %d node", i); scanf("%d", &element); t = (struct Node *)malloc(sizeof(struct Node)); t->data = element; t->next = NULL; last->next = t; last = t; } display(first, n); duplicates(first); printf("\nAfter removing duplicates\n"); display(first, n); }
the_stack_data/104827420.c
#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct { int numero; } Estrutura; int main(int argc, char *argv[]){ Estrutura *i = malloc(sizeof(Estrutura)); Estrutura *d = malloc(sizeof(Estrutura)); i->numero = 5; memcpy(d, i, sizeof(Estrutura)); i->numero = 6; printf("%d", d->numero); printf("%d", i->numero); } //https://pt.stackoverflow.com/q/450547/101
the_stack_data/385846.c
/* sctracer.c * purpose: trace system calls using ptrace and * save into a givin file path. * * * */ #include <stdio.h> #include <stdlib.h> #include <time.h> #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> #include <sys/ptrace.h> #include <fcntl.h> #include <string.h> #include <sys/user.h> #include <sys/reg.h> #include <signal.h> #define MAXSIZE 1000 /* write_to_file: write sys calls info into given path * input : table of sys calls, output file path. * no return val. * */ void write_to_file(long system_call_table[MAXSIZE], char* output_file); int main(int argc, char **argv) { /* Split command in " ". */ char*ptr = strtok(argv[1]," "); char* cmd[MAXSIZE] ={NULL}; char* output_file = argv[2]; int len = 0; long current_call; long last_call; int status = 0; long system_call_table[MAXSIZE]= {(long)0}; pid_t child; /* split the second arg */ while(ptr!=NULL){ cmd[len++] = ptr; ptr = strtok(NULL," "); } cmd[len] = NULL; len++; child = fork(); if(child==0){ ptrace(PTRACE_TRACEME,getpid(),NULL,NULL); execvp(cmd[0],cmd); } else{ //Note: call ptrace; // ptrace(PTRACE_TRACEME); // ptrace(PTRACE_SYSCALL); // ptrace(PTRACE_PEEKUSER); // ptrace(PTRACE_SETOPTIONS); // wait pid // getpid. //Distinguish between sigtop and other system call. //ptrace(PTRACE_SETOPTIONS,child,0,PTRACE_O_TRACESYSGOOD); ptrace(PTRACE_SETOPTIONS,child,0,PTRACE_O_EXITKILL); while(1){ //wait(&status); waitpid(child,&status,0); if(WIFEXITED(status) || WIFSIGNALED(status)){ break; } if(WIFSTOPPED(status) && WSTOPSIG(status)==SIGTRAP){ current_call = ptrace(PTRACE_PEEKUSER, child,sizeof(long)*ORIG_RAX,NULL); system_call_table[(int)current_call]++; } ptrace(PTRACE_SYSCALL,child,0,0); } } /* clean duplicated info */ last_call = current_call; for(int i=0;i < MAXSIZE;i++){ if(system_call_table[i]!=0 && i!=last_call){ system_call_table[i]/=(long)2; } } /* write to file*/ write_to_file(system_call_table,output_file); return 0; } void write_to_file(long table[MAXSIZE], char* file_path){ int File; //chmod 666: All user can read and write if(File<0) perror("err open file"); File = open(file_path,O_CREAT|O_RDWR,0666); //Not a Magic number. char info[MAXSIZE]; for(int i=0;i < MAXSIZE;i++){ if(table[i]!=0){ sprintf(info,"%d\t%ld\n",i,table[i]); write(File,info,strlen(info)); } } close(File); }
the_stack_data/83129.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_foreach.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: thbernar <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/08/20 21:42:50 by thbernar #+# #+# */ /* Updated: 2017/08/20 21:55:41 by thbernar ### ########.fr */ /* */ /* ************************************************************************** */ void ft_foreach(int *tab, int lengh, void (*f)(int)) { int i; i = 0; while (i < lengh) { (*f)(tab[i]); i++; } }
the_stack_data/115764509.c
#include <stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); a=a^b; b=a^b; a=a^b; printf("%d %d\n",a,b); }
the_stack_data/107952150.c
// WAP to add two sparse matrixes.
the_stack_data/102814.c
//+doc set the current brk // wrapper for brk(), with type of brk changed to long //+depends brk //+def static int setbrk(long addr){ return(brk((void*)addr)); }
the_stack_data/44329.c
/* * Copyright (C) 2009, 2010 Nick Johnson <nickbjohnson4224 at gmail.com> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include <math.h> #include <float.h> float log10f(float x) { return (logf(x) / M_LN10); } double log10(double x) { return (log(x) / M_LN10); } long double log10l(long double x) { return (logl(x) / M_LN10); }