serial_no
int64
1
24.2k
cuda_source
stringlengths
11
9.01M
19,401
#include <cuda_runtime.h> #define REGISTER_BLOCKING 4 #define BLOCK_SIZE 64 __global__ void matmult_gpu4Kernel(int m, int n, int k, double * d_A, double * d_B, double * d_C); // REGISTER BLOCKING ALONG THE ROWS OF C /* extern "C" { void matmult_gpu4(int m, int n, int k, double * A, double * B, double * C){ double * d_A, * d_B, * d_C; cudaMalloc((void **)&d_A, m * k * sizeof(double *)); cudaMalloc((void **)&d_B, k * n * sizeof(double *)); cudaMalloc((void **)&d_C, m * n * sizeof(double *)); cudaMemcpy(d_A, A, m * k * sizeof(double *), cudaMemcpyHostToDevice); cudaMemcpy(d_B, B, k * n * sizeof(double *), cudaMemcpyHostToDevice); //kernel block and grid size dim3 dimBlock(BLOCK_SIZE/REGISTER_BLOCKING,BLOCK_SIZE,1); dim3 dimGrid((int)ceil(((double)n)/(BLOCKSIZE)), (int)ceil(((double)m)/(BLOCKSIZE))); matmult_gpu4Kernel<<<dimGrid,dimBlock>>>(m, n, k, d_A, d_B, d_C); cudaMemcpy(C, d_C, m * n * sizeof(double *), cudaMemcpyDeviceToHost); cudaFree(d_A); cudaFree(d_B); cudaFree(d_C); } } __global__ void matmult_gpu4Kernel(int m, int n, int k, double * d_A, double * d_B, double * d_C){ int i, j, l, e; i = blockIdx.y * blockDim.y + threadIdx.y; j = REGISTER_BLOCKING*(blockIdx.x * blockDim.x + threadIdx.x); double C_reg[REGISTER_BLOCKING] = {0}; if(i < m && j < n){ for(l=0;l < k;l++){ C_reg[0] += d_A[i*k + l] * d_B[l*n + j]; for(e = 1; e < REGISTER_BLOCKING; e++){ if(j + e < n) C_reg[e] += d_A[i*k + l] * d_B[l*n + j + e]; } } d_C[i*n + j] = C_reg[0]; for(e = 1; e < REGISTER_BLOCKING; e++){ if(j + e < n) d_C[i*n + j + e] = C_reg[e]; } } } */ // REGISTER BLOCKING ALONG THE COLUMNS OF C extern "C" { void matmult_gpu4(int m, int n, int k, double * A, double * B, double * C){ double * d_A, * d_B, * d_C; cudaMalloc((void **)&d_A, m * k * sizeof(double *)); cudaMalloc((void **)&d_B, k * n * sizeof(double *)); cudaMalloc((void **)&d_C, m * n * sizeof(double *)); cudaMemcpy(d_A, A, m * k * sizeof(double *), cudaMemcpyHostToDevice); cudaMemcpy(d_B, B, k * n * sizeof(double *), cudaMemcpyHostToDevice); //kernel block and grid size dim3 dimBlock(BLOCK_SIZE,BLOCK_SIZE/REGISTER_BLOCKING,1); dim3 dimGrid((int)ceil(((double)n)/(BLOCK_SIZE)), (int)ceil(((double)m)/(BLOCK_SIZE))); matmult_gpu4Kernel<<<dimGrid,dimBlock>>>(m, n, k, d_A, d_B, d_C); cudaMemcpy(C, d_C, m * n * sizeof(double *), cudaMemcpyDeviceToHost); cudaFree(d_A); cudaFree(d_B); cudaFree(d_C); } } __global__ void matmult_gpu4Kernel(int m, int n, int k, double * d_A, double * d_B, double * d_C){ int i, j, l, e; i = REGISTER_BLOCKING*(blockIdx.y * blockDim.y + threadIdx.y); j = (blockIdx.x * blockDim.x + threadIdx.x); double C_reg[REGISTER_BLOCKING] = {0}; if(i < m && j < n){ for(l=0;l < k;l++){ C_reg[0] += d_A[i*k + l] * d_B[l*n + j]; for(e = 1; e < REGISTER_BLOCKING; e++){ if(i + e < m) C_reg[e] += d_A[(i+e)*k + l] * d_B[l*n + j]; } } d_C[i*n + j] = C_reg[0]; for(e = 1; e < REGISTER_BLOCKING; e++){ if(i + e < m) d_C[(i+e)*n + j] = C_reg[e]; } } }
19,402
#include<iostream> #include<ctime> #define exp 20 #define Size 512 using namespace std; struct AoS{ float x,y; }; void __global__ AoS(AoS* data,unsigned int n) { unsigned int idx = threadIdx.x + blockDim.x * blockIdx.x; if (idx < n) { data[idx].x += 1.0f; data[idx].y += 2.0f; } } int main() { int dev = 0; cudaDeviceProp deviceProp; cudaGetDeviceProperties(&deviceProp, dev); cout << "device " << dev << ": " << deviceProp.name << endl; int N = 1 << 18; dim3 block(Size,1); dim3 grid((Size + N - 1) / Size, 1); struct AoS a[N],*a_dev; cudaMalloc((void**)&a_dev, sizeof(struct AoS)*N); cudaMemcpy(a_dev, a, sizeof(a), cudaMemcpyHostToDevice); clock_t start ,end; start = clock(); AoS<<<grid, block>>>(a_dev, N); cudaDeviceSynchronize(); end = clock(); cout << "sum time in gpu compute:" << end - start << "ms" << endl; cudaFree(a_dev); cudaDeviceReset(); return 0; }
19,403
#include <iostream> #include "cuda_runtime_api.h" int main(int argc, char* argv[]) { (void)argc; (void)argv; cudaSetDevice(0); cudaEvent_t start; cudaEvent_t end; cudaEventCreate(&start); cudaEventCreate(&end); cudaEventRecord(start); cudaEventRecord(end); cudaEventSynchronize(end); float elapsed_time; cudaEventElapsedTime(&elapsed_time, start, end); std::cout << "elapsed_time: " << elapsed_time << std::endl; }
19,404
#include "includes.h" __global__ void MatrixMulKernel(float *d_M, float *d_N, float *d_P,int width){ int Row = blockIdx.y*blockDim.y + threadIdx.y; int Col = blockIdx.x*blockDim.x + threadIdx.x; if ((Row < width)&&(Col < width)){ float Pvalue = 0; for (int i = 0; i < width; ++i){ Pvalue += d_M[Row*width+i]*d_N[i*width+Col]; } d_P[Row*width + Col] = Pvalue; } }
19,405
#include "includes.h" __device__ void recover_deleted_rows(short *deleted_rows, const int search_depth, const int total_dl_matrix_row_num) { for (int i = threadIdx.x; i < total_dl_matrix_row_num; i = i + blockDim.x) { if (abs(deleted_rows[i]) > search_depth || deleted_rows[i] == search_depth) { deleted_rows[i] = 0; } } } __global__ void recover_deleted_rows(int *deleted_rows, const int search_depth, const int total_dl_matrix_row_num) { for (int i = threadIdx.x; i < total_dl_matrix_row_num; i = i + blockDim.x) { if (abs(deleted_rows[i]) > search_depth || deleted_rows[i] == search_depth) { deleted_rows[i] = 0; } } }
19,406
__global__ void test_input_args(int* buffer_arg, int x) { int val = buffer_arg[1]; buffer_arg[2] = 42; buffer_arg[x] = 42; buffer_arg[x + 1] = 42; x = 1; buffer_arg[x] = 42; }
19,407
#include "includes.h" using namespace std; #define ULL unsigned long long const long MAXDIM = 10; const double RMIN = 2.0; const double RMAX = 7.0; #define MAX_THREADS 1024 #define MAX_BLOCKS 65535 //Global kernel code that runs on the device __global__ void count_in(ULL *dev_count, long dev_ntotal,long dev_ndim, long dev_halfb, double dev_rsquare, long dev_base){ //Calculate the position of this kernel in the data ULL blockID = (blockIdx.y * gridDim.x) + blockIdx.x; ULL pos = (blockID * blockDim.x) + threadIdx.x; //If this threads position in the data is further than we need to calculate //Then we return if(pos >= dev_ntotal) return; double rtestsq = 0; long idx = 0; long index[MAXDIM+1]; for (long i = 0; i < dev_ndim; ++i) index[i] = 0; //Convert the decimal number into another base system while (pos != 0) { long rem = pos % dev_base; pos = pos / dev_base; index[idx] = rem; ++idx; } for(long k = 0; k < dev_ndim; ++k){ double xk = index[k] - dev_halfb; rtestsq += xk * xk; } //If the value is inside the sphere //Atomically add 1 to the count if(rtestsq < dev_rsquare){ atomicAdd(dev_count, 1); } }
19,408
#include <iostream> #include <cstdlib> #include <ctime> #include <string> #include <cuda_runtime.h> #include <chrono> using namespace std; using namespace chrono; const int MAX_TRIES = 5; #define WORD_SIZE 1048576 void init_zero(int* a, int n) { for (int i = 0; i < n; i++) a[i] = 0; } void init_null(char* a, int n) { for (int i = 0; i < n; i++) a[i] = '\0'; } int letterFill(char, string, string&); void reportTime(const char* msg, steady_clock::duration span) { double nsecs = double(span.count()) * steady_clock::period::num / steady_clock::period::den; std::cout << std::fixed; std::cout << msg << " - took - " << nsecs << " secs" << std::endl; } //gets matches, and edits strings.. __global__ void searchLetter(char* empty, char* word, char* guess, int* count, int* fcount, int n) { int i = blockIdx.x * blockDim.x + threadIdx.x; //if guessed letter is the letter at word[i] if (guess[0] == word[i]){ //Add to count count[i] = 1; //Edit empty to have letter filled in. empty[i] = word[i]; } else{ count[i] = 0; } __syncthreads(); for (int stride = 1; stride < n; stride *= 2) { if (i % (2 * stride) == 0) count[i] += count[i + stride]; __syncthreads(); } if (threadIdx.x == 0) fcount[blockIdx.x] = count[i]; } __global__ void count_final(int* fcount, int n) { int i = threadIdx.x; for (int stride = 1; i + stride < n; stride *= 2) { if (i % (2 * stride) == 0) fcount[i] += fcount[i + stride]; __syncthreads(); } } int main() { string name; char letter; int num_of_wrong_guesses = 0; string word; //choose and copy a word from array of words randomly srand(time(NULL)); int n = rand() % 10; //test data to make load slow. word = ""; int l; int fail1 = rand() % 26; int fail2 = rand() % 26; int fail3 = rand() % 26; int fail4 = rand() % 26; int super = rand() % 26; for (l = 0; l<WORD_SIZE; l++){ int ran = rand() % 26; if (ran == fail1 || ran == fail2 || ran == fail3 || ran == fail4){ } else if (ran == super){ char cch = 'a' + ran; word += cch; word += cch; word += cch; } else{ char cch = 'a' + ran; word += cch; } } int d; cudaDeviceProp prop; cudaGetDevice(&d); cudaGetDeviceProperties(&prop, d); int ntpb_x = prop.maxThreadsDim[0]; cout << prop.major << prop.minor << endl; int nblks = (WORD_SIZE + ntpb_x - 1) / ntpb_x; // number of blocks // Initialize the secret word with the * character. string unknown(word.length(), '*'); // welcome the user cout << "\n\nWelcome to Letter Search...Guess a Letter!"; cout << "\n\nEach letter is represented by a star."; cout << "\n\nYou have to type only one letter in one try"; cout << "\n\nYou have " << MAX_TRIES << " tries to try and guess the word."; cout << "\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"; // Loop until the guesses are used up while (num_of_wrong_guesses < MAX_TRIES) { //Uncomment below for better game play. //cout << "\n\n" << unknown; cout << "\n\nGuess a letter: "; cin >> letter; // Fill secret word with letter if the guess is correct, // otherwise increment the number of wrong guesses. //TODO steady_clock::time_point ts, te; std::srand(std::time(nullptr)); ts = steady_clock::now(); int n = word.length(); //MEMaloc d_empty, d_word, d_guess, d_count char* d_empty; cudaMalloc((void**)&d_empty, nblks * ntpb_x*sizeof(char)); char*d_word; cudaMalloc((void**)&d_word, nblks * ntpb_x*sizeof(char)); char* d_guess; cudaMalloc((void**)&d_guess, sizeof(char)); int* d_count; cudaMalloc((void**)&d_count, nblks * ntpb_x*sizeof(int)); int* d_fcount; cudaMalloc((void**)&d_fcount, nblks*sizeof(int)); char* wordchar = new char[nblks * ntpb_x]; init_null( wordchar, nblks * ntpb_x); char* emptychar = new char[nblks * ntpb_x]; init_null( emptychar, nblks * ntpb_x); char* guesschar = new char[sizeof(char)]; int * h_count = new int[nblks * ntpb_x]; init_zero(h_count, nblks * ntpb_x); int * h_fcount = new int[nblks]; //int lets = 0; not needed //this should go to kernal. //lets = letterFill(letter, word, unknown); //End going to kernel. //TODO //MEMCPY all above to device //first put stings into char array memcpy(wordchar, word.c_str(), word.length() + 1); memcpy(emptychar, unknown.c_str(), unknown.length() + 1); guesschar = &letter; //Copy char arrays into cuda. cudaMemcpy(d_empty, emptychar, nblks * ntpb_x * sizeof(char), cudaMemcpyHostToDevice); cudaMemcpy(d_word, wordchar, nblks * ntpb_x * sizeof(char), cudaMemcpyHostToDevice); cudaMemcpy(d_guess, guesschar, sizeof(char), cudaMemcpyHostToDevice); cudaMemcpy(d_count, h_count, nblks * ntpb_x * sizeof(int), cudaMemcpyHostToDevice); cudaMemcpy(d_fcount, h_count, nblks * sizeof(int), cudaMemcpyHostToDevice); searchLetter <<<nblks, ntpb_x>>>(d_empty, d_word, d_guess, d_count, d_fcount, ntpb_x); count_final <<<1, nblks>>>(d_fcount, nblks); //reverse above steps. cudaMemcpy(emptychar, d_empty, n * sizeof(char), cudaMemcpyDeviceToHost); cudaMemcpy(wordchar, d_word, n * sizeof(char), cudaMemcpyDeviceToHost); cudaMemcpy(guesschar, d_guess, sizeof(char), cudaMemcpyDeviceToHost); cudaMemcpy(h_count, d_fcount, nblks*sizeof(int), cudaMemcpyDeviceToHost); //copied back to chars, now copy to strings unknown = emptychar; te = steady_clock::now(); reportTime("Search Time: ", te - ts); int final_count = h_count[0]; if (final_count == 0) { cout << endl << "Whoops! That letter isn't in there!" << endl; num_of_wrong_guesses++; } else { cout << endl << "You found " << final_count << " letters! Isn't that exciting!" << endl; } // Tell user how many guesses has left. cout << "You have " << MAX_TRIES - num_of_wrong_guesses; cout << " guesses left." << endl; // Check if user guessed the word. if (word == unknown) { cout << word << endl; cout << "Yeah! You got it!"; break; } // TODO // cuda free var's cudaFree(d_empty); cudaFree(d_word); cudaFree(d_guess); cudaFree(d_count); } if (num_of_wrong_guesses == MAX_TRIES) { cout << "\nSorry, you lose...you've been hanged." << endl; cout << "The word was : " << word << endl; } cin.ignore(); cin.get(); return 0; } /* Take a one character guess and the secret word, and fill in the unfinished guessword. Returns number of characters matched. Also, returns zero if the character is already guessed. */ int letterFill(char guess, string secretword, string &guessword) { int i; int matches = 0; int len = secretword.length(); for (i = 0; i< len; i++) { // Did we already match this letter in a previous guess? if (guess == guessword[i]) return 0; // Is the guess in the secret word? if (guess == secretword[i]) { guessword[i] = guess; matches++; } } return matches; }
19,409
#include "includes.h" __device__ __forceinline__ size_t gpu_scalar_index(unsigned int x, unsigned int y) { return NX*y+x; } __global__ void gpu_efield(double *fi, double *ex, double *ey){ unsigned int y = blockIdx.y; unsigned int x = blockIdx.x*blockDim.x + threadIdx.x; unsigned int xp1 = (x + 1) % NX; unsigned int yp1 = (y + 1) % NY; unsigned int xm1 = (NX + x - 1) % NX; unsigned int ym1 = (NY + y - 1) % NY; double phi = fi[gpu_scalar_index(x, y)]; double phiL = fi[gpu_scalar_index(xm1, y)]; double phiR = fi[gpu_scalar_index(xp1, y)]; double phiU = fi[gpu_scalar_index(x, yp1)]; double phiD = fi[gpu_scalar_index(x, ym1)]; ex[gpu_scalar_index(x, y)] = 0.5*(phiL - phiR) / dx; ey[gpu_scalar_index(x, y)] = 0.5*(phiD - phiU) / dy; }
19,410
#include <cuda_runtime.h> //uchar4 __global__ void split_channels(uchar4 *input_image, unsigned char *red, unsigned char *green, unsigned char *blue){ int row = threadIdx.x; int col = blockIdx.x; int idx = col + row*360; red[idx] = input_image[idx].x; green[idx] = input_image[idx].y; blue[idx] = input_image[idx].z; } __global__ void blur_channel(unsigned char *channel_in, unsigned char *channel_out, float *filter, int filter_size){ int row = threadIdx.x; int col = blockIdx.x; int idx = col + row*360; int sum = 0; int cnt = 0; if (row >= 0){ sum += channel_in[col + (row-1)*360] * filter[1]; cnt++; } if (col >= 0){ sum += channel_in[idx-1] * filter[3]; cnt++; } if (col <= 360){ sum += channel_in[idx+1] * filter[5]; cnt++; } if (row <= 480){ sum += channel_in[col + (row+1)*360] * filter[7]; cnt++; } channel_out[idx] = sum / cnt; } __global__ void combine_channels(uchar4 *output_image, unsigned char *red, unsigned char *green, unsigned char *blue){ int row = threadIdx.x; int col = blockIdx.x; int idx = col + row*360; output_image[idx] = make_uchar4(red[idx], green[idx], blue[idx], 255); } void blur_image(uchar4 *input_image, uchar4 *output_image, unsigned char *red_in, unsigned char *red_out, unsigned char *green_in, unsigned char * green_out, unsigned char *blue_in, unsigned char *blue_out, float * filter, int filter_size){ dim3 blockSize(360,1,1); dim3 threadSize(480,1,1); split_channels<<<blockSize, threadSize>>>(input_image, red_in, green_in, blue_in); blur_channel<<<blockSize, threadSize>>>(red_in, red_out, filter, filter_size); blur_channel<<<blockSize, threadSize>>>(green_in, green_out, filter, filter_size); blur_channel<<<blockSize, threadSize>>>(blue_in, blue_out, filter, filter_size); combine_channels<<<blockSize, threadSize>>>(output_image, red_out, green_out, blue_out); }
19,411
#include "cuda_runtime.h" void initialize_cuda_runtime(void) { cudaSetDevice(0); cudaFree(0); }
19,412
#include <iomanip> #include <iostream> #include <string> const long int GLOBAL_SIZE = 1024; const int TILE_DIM = 32; const int BLOCK_ROWS = 8; const int NUM_ITERS = 100; __global__ void copy(float* A, float* B) { int row = blockIdx.y * blockDim.x + threadIdx.y; int col = blockIdx.x * blockDim.x + threadIdx.x; for (int i = 0; i < blockDim.x; i += blockDim.y) B[(row + i) * GLOBAL_SIZE + col] = A[(row + i) * GLOBAL_SIZE + col]; } __global__ void transposeNaive(float* A, float* B) { int row = blockIdx.y * blockDim.x + threadIdx.y; int col = blockIdx.x * blockDim.x + threadIdx.x; for (int i = 0; i < blockDim.x; i += blockDim.y) B[col * GLOBAL_SIZE + row + i] = A[(row + i) * GLOBAL_SIZE + col]; } __global__ void transposeCoalescedOutput(float* A, float* B) { int row = blockIdx.y * blockDim.x + threadIdx.y; int col = blockIdx.x * blockDim.x + threadIdx.x; for (int i = 0; i < blockDim.x; i += blockDim.y) B[(row + i) * GLOBAL_SIZE + col] = A[col * GLOBAL_SIZE + row + i]; } __global__ void transposeCoalescedSHM(float* A, float* B) { int row = blockIdx.y * blockDim.x + threadIdx.y; int col = blockIdx.x * blockDim.x + threadIdx.x; __shared__ float tile[TILE_DIM][TILE_DIM]; for (int i = 0; i < blockDim.x; i += blockDim.y) tile[threadIdx.y + i][threadIdx.x] = A[(row + i) * GLOBAL_SIZE + col]; __syncthreads(); row = blockIdx.x * blockDim.x + threadIdx.y; col = blockIdx.y * blockDim.x + threadIdx.x; for (int i = 0; i < blockDim.x; i += blockDim.y) B[(row + i) * GLOBAL_SIZE + col] = tile[threadIdx.x][threadIdx.y + i]; } __global__ void transposeCoalescedOptimal(float* A, float* B) { int row = blockIdx.y * blockDim.x + threadIdx.y; int col = blockIdx.x * blockDim.x + threadIdx.x; __shared__ float tile[TILE_DIM][TILE_DIM + 1]; for (int i = 0; i < blockDim.x; i += blockDim.y) tile[threadIdx.y + i][threadIdx.x] = A[(row + i) * GLOBAL_SIZE + col]; __syncthreads(); row = blockIdx.x * blockDim.x + threadIdx.y; col = blockIdx.y * blockDim.x + threadIdx.x; for (int i = 0; i < blockDim.x; i += blockDim.y) B[(row + i) * GLOBAL_SIZE + col] = tile[threadIdx.x][threadIdx.y + i]; } void initArray(float* A) { for (int i = 0; i < GLOBAL_SIZE * GLOBAL_SIZE; i++) A[i] = static_cast<float>(i); } void printtArray(float* A) { for (int i = 0; i < GLOBAL_SIZE; i++) { for (int j = 0; j < GLOBAL_SIZE; j++) std::cout << std::left << std::setw(10) << A[i * GLOBAL_SIZE + j]; std::cout << "\n"; } } void printSummary(std::string& s, cudaEvent_t& start, cudaEvent_t& stop) { float milliseconds = 0.f; cudaEventElapsedTime(&milliseconds, start, stop); std::cout << std::left << std::setw(30) << s; std::cout << 2 * GLOBAL_SIZE * GLOBAL_SIZE * sizeof(float) * NUM_ITERS / (milliseconds * 1e6); std::cout << "\n"; } int main() { float *A, *A_d, *B, *B_d; const int data_size = GLOBAL_SIZE * GLOBAL_SIZE * sizeof(float); cudaMallocHost(&A, data_size); cudaMallocHost(&B, data_size); cudaMalloc(&A_d, data_size); cudaMalloc(&B_d, data_size); const int grid_size = GLOBAL_SIZE / TILE_DIM; // 1024 / 32 = 32 dim3 grid(grid_size, grid_size); // 32 * 32 dim3 block(TILE_DIM, BLOCK_ROWS); // 32 x 8 = 256 cudaEvent_t start, stop; cudaEventCreate(&start); cudaEventCreate(&stop); // matrix copy initArray(A); cudaMemcpy(A_d, A, data_size, cudaMemcpyHostToDevice); cudaEventRecord(start); for (int i = 0; i < NUM_ITERS; i++) copy<<<grid, block>>>(A_d, B_d); cudaEventRecord(stop); cudaMemcpy(B, B_d, data_size, cudaMemcpyDeviceToHost); cudaEventSynchronize(stop); std::string s = "copy"; printSummary(s, start, stop); // naive transpose initArray(A); cudaMemcpy(A_d, A, data_size, cudaMemcpyHostToDevice); cudaEventRecord(start); for (int i = 0; i < NUM_ITERS; i++) transposeNaive<<<grid, block>>>(A_d, B_d); cudaEventRecord(stop); cudaMemcpy(B, B_d, data_size, cudaMemcpyDeviceToHost); cudaEventSynchronize(stop); s = "transposeNaive"; printSummary(s, start, stop); // transpose with coalesced memory access for output only initArray(A); cudaMemcpy(A_d, A, data_size, cudaMemcpyHostToDevice); cudaEventRecord(start); for (int i = 0; i < NUM_ITERS; i++) transposeCoalescedOutput<<<grid, block>>>(A_d, B_d); cudaEventRecord(stop); cudaMemcpy(B, B_d, data_size, cudaMemcpyDeviceToHost); cudaEventSynchronize(stop); s = "transposeCoalescedOutput"; printSummary(s, start, stop); // transpose with coalesced memory access for both input and output + shared // memory initArray(A); cudaMemcpy(A_d, A, data_size, cudaMemcpyHostToDevice); cudaEventRecord(start); for (int i = 0; i < NUM_ITERS; i++) transposeCoalescedSHM<<<grid, block>>>(A_d, B_d); cudaEventRecord(stop); cudaMemcpy(B, B_d, data_size, cudaMemcpyDeviceToHost); cudaEventSynchronize(stop); s = "transposeCoalescedSHM"; printSummary(s, start, stop); // transpose with optimal coalesced memory access (no bank conflict) initArray(A); cudaMemcpy(A_d, A, data_size, cudaMemcpyHostToDevice); cudaEventRecord(start); for (int i = 0; i < NUM_ITERS; i++) transposeCoalescedOptimal<<<grid, block>>>(A_d, B_d); cudaEventRecord(stop); cudaMemcpy(B, B_d, data_size, cudaMemcpyDeviceToHost); cudaEventSynchronize(stop); s = "transposeCoalescedOptimal"; printSummary(s, start, stop); // Free cudaFree(A_d); cudaFree(B_d); cudaFreeHost(A); cudaFreeHost(B); }
19,413
#include "includes.h" __global__ void cuArraysCopyToBatch_kernel(const float2 *imageIn, const int inNX, const int inNY, float2 *imageOut, const int outNX, const int outNY, const int nImagesX, const int nImagesY, const int strideX, const int strideY) { int idxImage = blockIdx.z; int outx = threadIdx.x + blockDim.x*blockIdx.x; int outy = threadIdx.y + blockDim.y*blockIdx.y; if(idxImage >=nImagesX*nImagesY|| outx >= outNX || outy >= outNY) return; int idxOut = idxImage*outNX*outNY + outx*outNY + outy; int idxImageX = idxImage/nImagesY; int idxImageY = idxImage%nImagesY; int idxIn = (idxImageX*strideX+outx)*inNY + idxImageY*strideY+outy; imageOut[idxOut] = imageIn[idxIn]; }
19,414
#include <stdio.h> #include <cuda.h> #include<sys/time.h> #include <time.h> #include<math.h> // Kernel that executes on the CUDA device __global__ void square_array(float *a, int N) { int idx = blockIdx.x * blockDim.x + threadIdx.x; if (idx<N) a[idx] = sqrtf(powf(2,a[idx]) + powf(a[idx],3)); } // main routine that executes on the host int main(void) { struct timeval iniciototal, finaltotal; gettimeofday(&iniciototal, NULL); int N, exec; // Number of elements in arrays struct timeval inicio, final; int tmili,tmilifim; float media, soma ; int tam; for (N = 10; N <= 18; N++) { soma=0; tam = pow(2,N); for(exec =1; exec <= 10; exec++) { clock_t start, end; double cpu_time_used; start = clock(); gettimeofday(&inicio, NULL); float *a_h, *a_d; // Pointer to host & device arrays size_t size = tam * sizeof(float); a_h = (float *)malloc(size); // Allocate array on host cudaMalloc((void **) &a_d, size); // Allocate array on device // Initialize host array and copy it to CUDA device for (int i=0; i<tam; i++) a_h[i] = (float)i; cudaMemcpy(a_d, a_h, size, cudaMemcpyHostToDevice); // Do calculation on device: int block_size = 32; int n_blocks = tam/block_size + (tam%block_size == 0 ? 0:1); square_array <<< n_blocks, block_size >>> (a_d, tam); // Retrieve result from device and store it in host array cudaMemcpy(a_h, a_d, sizeof(float)*tam, cudaMemcpyDeviceToHost); //printf("%d\n", n_blocks); // Print results //for (int i=0; i<N; i++) printf("%d %f\n", i, a_h[i]); // Cleanup free(a_h); cudaFree(a_d); end = clock(); cpu_time_used = ((double) (end - start)) / CLOCKS_PER_SEC; printf("\nTempo Clock: %f secs", cpu_time_used); gettimeofday(&final, NULL); tmili = (int) (1000 * (final.tv_sec - inicio.tv_sec) + (final.tv_usec - inicio.tv_usec) / 1000); soma+=tmili; } media = soma/10; printf("tamanho: %d \t tempo decorrido: %f\n", tam, media); } gettimeofday(&finaltotal, NULL); tmilifim = (int) (1000 * (finaltotal.tv_sec - iniciototal.tv_sec) + (finaltotal.tv_usec - iniciototal.tv_usec) / 1000); printf("tempo total decorrido: %d\n", tmilifim); }
19,415
#include "includes.h" // ERROR CHECKING MACROS ////////////////////////////////////////////////////// __global__ void computeStateMinMax(int noControls, int noDims, int noPaths, int* dataPoints, float* xvals, float* xmins, float* xmaxes) { for (int ii = 0; ii < noControls; ii++) { float *xmin, *xmax; xmin = (float*)malloc(noDims*sizeof(float)); xmax = (float*)malloc(noDims*sizeof(float)); if (ii == 0 || dataPoints[ii] > (noDims+1)) { for (int jj = 0; jj < noDims; jj++) { xmin[jj] = xvals[ii*noDims*noPaths + jj*noPaths]; xmax[jj] = xmin[jj]; } for (int jj = 0; jj < noDims; jj++) { for (int kk = 0; kk < dataPoints[ii]; kk++) { float xtemp = xvals[ii*noDims*noPaths + jj*noPaths + kk]; if (xmin[jj] > xtemp) { xmin[jj] = xtemp; } else if (xmax[jj] < xtemp) { xmax[jj] = xtemp; } } } // for (int jj = 0; jj < noDims; jj++) { // xmin[jj] = xvals[ii*noDims*noPaths + jj]; // xmax[jj] = xmin[jj]; // } // for (int jj = 0; jj < dataPoints[ii]; jj++) { // for (int kk = 0; kk < noDims; kk ++) { // float xtemp = xvals[ii*noDims*noPaths + jj*noDims + kk]; // if (xmin[kk] > xtemp) { // xmin[kk] = xtemp; // } else if (xmax[kk] < xtemp) { // xmax[kk] = xtemp; // } // } // } for (int jj = 0; jj < noDims; jj++) { xmins[ii*noDims + jj] = xmin[jj]; xmaxes[ii*noDims + jj] = xmax[jj]; // printf("Control %d: Xmin = %f Xmax = %f\n",ii,xmin[jj],xmax[jj]); } } else { for (int jj = 0; jj < noDims; jj++) { xmins[ii*noDims + jj] = xmins[jj]; xmaxes[ii*noDims + jj] = xmaxes[jj]; } } free(xmin); free(xmax); } for (int ii = 0; ii < noDims; ii++) { xmins[noControls*noDims + ii] = xmins[ii]; xmaxes[noControls*noDims + ii] = xmaxes[ii]; } for (int ii = 1; ii < noControls; ii++) { for (int jj = 0; jj < noDims; jj++) { float xtemp = xmins[ii*noDims + jj]; if (xmins[noControls*noDims + jj] > xtemp) { xmins[noControls*noDims + jj] = xtemp; } xtemp = xmaxes[ii*noDims + jj]; if (xmaxes[noControls*noDims + jj] < xtemp) { xmaxes[noControls*noDims + jj] = xtemp; } } } }
19,416
#include<stdlib.h> #include<stdio.h> #include<unistd.h> #include<sys/time.h> #include<math.h> #include<iostream> struct Particle{ float px; float py; float pz; float vx; float vy; float vz; }; typedef struct timeval tval; double get_elapsed(tval t0, tval t1); void get_input_data(struct Particle **particles, int N, const int seed); void kernel(struct Particle *particles, int N, int n_steps, const double delta_t, const int seed); __global__ void kernel_cuda(struct Particle *particles, int N, int n_steps, const double delta_t, const int seed); __host__ __device__ float rand_float(const int seed, int particle, int iter, int N); #define HLINE "-------------------------------------------------------------\n" int main(int argc, char *argv[]) { int c; int N=1000; int n_threads=256; int n_steps=100; const int seed=2020; const double delta_t=0.05; tval t[2] = {0}; double elapsed[2] = {0}; while ((c = getopt(argc, argv, "n:p:s:h")) != -1) switch (c) { case 'n': N = atoi(optarg); break; case 'p': n_threads = atoi(optarg); break; case 's': n_steps = atoi(optarg); break; case 'h': printf( "Options:\n-n SIZE\t\tNum Particle\n-s ITERS\tNum Iters\n-p NTHREAD\tNumber of threads\n"); exit(1); case '?': break; } struct Particle* particles; struct Particle* d_particles; get_input_data(&particles, N, seed); cudaMalloc(&d_particles, N*sizeof(struct Particle)); // For storing the final result copied from Device to Host struct Particle* particles_=(struct Particle*)malloc(N*sizeof(struct Particle)); cudaMemcpy(d_particles, particles, N*sizeof(struct Particle), cudaMemcpyHostToDevice); int n_blocks = (N + n_threads - 1) / n_threads; printf(HLINE); printf(" N\tNum steps\tNum Threads\tNum Blocks\n"); printf("%4d %8d %14d %16d\n", N, n_steps, n_threads, n_blocks); printf(HLINE); // Launch the CPU version printf("Running particle simulation on the CPU..."); gettimeofday(&t[0], NULL); kernel(particles, N, n_steps, delta_t, seed); gettimeofday(&t[1], NULL); elapsed[0] = get_elapsed(t[0], t[1]); printf("Done!\n"); // Launch the GPU version printf("Running particle simulation on the GPU..."); gettimeofday(&t[0], NULL); for (int iter = 1; iter <= n_steps; iter++) kernel_cuda<<<n_blocks, n_threads>>>(d_particles, N, iter, delta_t, seed); cudaMemcpy(particles_, d_particles, N*sizeof(struct Particle), cudaMemcpyDeviceToHost); gettimeofday(&t[1], NULL); elapsed[1] = get_elapsed(t[0], t[1]); printf("Done!\n"); printf("Comparing the output for each implementation..."); float error = 0.0f; for (int i = 0; i < N; i++) error = fmax(error, fabs(particles[i].px - particles_[i].px)); if (error < 1e-8){ printf("Correct!\n"); } else{ printf("Not correct!\n"); } printf("Elapsed CPU (ms): %f / Elapsed GPU (ms): %f\n", elapsed[0], elapsed[1]); printf(HLINE); free(particles); free(particles_); cudaFree(d_particles); return 0; } __host__ __device__ float rand_float(const int seed, int particle, int iter, int N) { float result = (seed * particle + iter) % N; return result; } __global__ void kernel_cuda(struct Particle *particles, int N, int iter, const double delta_t, const int seed) { int q = blockIdx.x * blockDim.x + threadIdx.x; if(q < N){ // particles[q].vx = (rand() / (double)(RAND_MAX)) * 2 - 1; // particles[q].vy = (rand() / (double)(RAND_MAX)) * 2 - 1; // particles[q].vz = (rand() / (double)(RAND_MAX)) * 2 - 1; particles[q].vx = rand_float(seed, q, iter, N) + 0.0f; particles[q].vy = rand_float(seed, q, iter, N) + 0.1f; particles[q].vz = rand_float(seed, q, iter, N) + 0.2f; particles[q].px += delta_t * particles[q].vx; particles[q].py += delta_t * particles[q].vy; particles[q].pz += delta_t * particles[q].vz; } } void kernel(struct Particle *particles, int N, int n_steps, const double delta_t, const int seed) { for (int iter = 1; iter <= n_steps; iter++) { for (int q = 0; q < N; q++) { // particles[q].vx = (rand() / (double)(RAND_MAX)) * 2 - 1; // particles[q].vy = (rand() / (double)(RAND_MAX)) * 2 - 1; // particles[q].vz = (rand() / (double)(RAND_MAX)) * 2 - 1; particles[q].vx = rand_float(seed, q, iter, N) + 0.0f; particles[q].vy = rand_float(seed, q, iter, N) + 0.1f; particles[q].vz = rand_float(seed, q, iter, N) + 0.2f; particles[q].px += delta_t * particles[q].vx; particles[q].py += delta_t * particles[q].vy; particles[q].pz += delta_t * particles[q].vz; } } } void get_input_data(struct Particle **particles, int N, const int seed ) { struct Particle* particle_t = (struct Particle*)malloc(N*sizeof(struct Particle)); srand(seed); for(int q=0; q < N; q++) { particle_t[q].px = (rand() / (double)(RAND_MAX)) * 2 - 1; particle_t[q].py = (rand() / (double)(RAND_MAX)) * 2 - 1; particle_t[q].pz = (rand() / (double)(RAND_MAX)) * 2 - 1; particle_t[q].vx = (rand() / (double)(RAND_MAX)) * 2 - 1; particle_t[q].vy = (rand() / (double)(RAND_MAX)) * 2 - 1; particle_t[q].vz = (rand() / (double)(RAND_MAX)) * 2 - 1; } *particles = particle_t; } double get_elapsed(tval t0, tval t1) { return (double)(t1.tv_sec - t0.tv_sec) * 1000.0L + (double)(t1.tv_usec - t0.tv_usec) / 1000.0L; }
19,417
#include <stdlib.h> #include <stdio.h> #include <string.h> #include <math.h> #include <cuda.h> #include <cuda_runtime.h> #include <cuda.h> #include <device_launch_parameters.h> #define LIST_SIZE_GLOBAL 3000000 #define LIST_SIZE 10000 extern "C" __device__ unsigned long long load_store_index[LIST_SIZE]; extern "C" __device__ unsigned long long load_store_address[LIST_SIZE]; extern "C" __device__ unsigned long long load_store_check[LIST_SIZE]; extern "C" __device__ unsigned long long record_flag; extern "C" __device__ unsigned long long call_count; int memPro_kernel = 0; void bambooLogRecordOff(){ long long local_record = 0; cudaMemcpyToSymbol(record_flag, &local_record, sizeof(long long), 0, cudaMemcpyHostToDevice); } void bambooLogKernelBegin(long long i) { cudaMemcpyToSymbol(call_count, &i, sizeof(long long), 0, cudaMemcpyHostToDevice); i = 1; cudaMemcpyToSymbol(record_flag, &i, sizeof(long long), 0, cudaMemcpyHostToDevice); } void bambooLogKernelEnd() { unsigned long long loadStoreIndex[LIST_SIZE] = {0}; unsigned long long loadStoreAddress[LIST_SIZE] = {0}; unsigned long long loadStoreCheck[LIST_SIZE] = {0}; FILE *profileFile = fopen("profile_mem_result.txt", "a"); for (int j=0; j < LIST_SIZE_GLOBAL; j+=LIST_SIZE) { cudaMemcpyFromSymbol(loadStoreIndex, load_store_index, LIST_SIZE * sizeof(long long), j*sizeof(long long), cudaMemcpyDeviceToHost); cudaMemcpyFromSymbol(loadStoreAddress, load_store_address, LIST_SIZE * sizeof(long long), j*sizeof(long long), cudaMemcpyDeviceToHost); cudaMemcpyFromSymbol(loadStoreCheck, load_store_check, LIST_SIZE * sizeof(long long), j*sizeof(long long), cudaMemcpyDeviceToHost); for(long long i=0; i < LIST_SIZE; i++) { if(loadStoreIndex[i] != 0) { if (loadStoreCheck[i] == 0) { fprintf(profileFile, "L %lld %p\n", loadStoreIndex[i], (void*)loadStoreAddress[i]); } else { fprintf(profileFile, "S %lld %p\n", loadStoreIndex[i], (void*)loadStoreAddress[i]); } } } } fclose(profileFile); }
19,418
#include <iostream> using namespace std; __global__ void SumaColMatrizKernel(int f,int c,float*Md,float*Nd){ float Pvalue=0; for(int k=threadIdx.x;k<f*c;k+=c){ Pvalue=Pvalue+Md[k]; } Nd[threadIdx.x]=Pvalue; } void SumaColMatrizHost(int f,int c,float*Mh){ float *P; P=new float[c]; for (int j=0;j<c;j++){ P[j]=0; for (int i=0;i<f;i++){ P[j]+=Mh[i*c+j]; } } cout<<"\nResultados HOST:"<<endl; for (int j=0;j<c;j++) cout<<P[j]<<" "; } int main(){ int f=10,c=2; cout<<"Filas: "<<f<<endl; cout<<"Columnas: "<<c<<endl; int size=f*c*sizeof(float); int size2=c*sizeof(float); //Guardando memoria en el host float *Mh=(float*)malloc(size); float *Nh=(float*)malloc(size2); cout<<"Matriz: "; for (int i=0;i<f*c;i++){ Mh[i]=i+1; cout<<Mh[i]<<" "; } //Guardando memoria en el GPU float *Md,*Nd; cudaMalloc(&Md,size); cudaMalloc(&Nd,size2); cudaMemcpy(Md, Mh, size, cudaMemcpyHostToDevice); cudaMemset(Nd, 0, size2); //Suma columnas en GPU int bloques=f/128+1; dim3 tamGrid(bloques,1); dim3 tamBlock(128,1,1); SumaColMatrizKernel<<<tamGrid, tamBlock>>>(f,c,Md,Nd); cudaMemcpy(Nh, Nd, size2, cudaMemcpyDeviceToHost); //Suma columnas en HOST SumaColMatrizHost(f,c,Mh); cudaFree(Md); cudaFree(Nd); cout<<"\nResultados GPU: "<<endl; for(int i=0;i<c;i++){ cout<<Nh[i]<<" "; } }
19,419
// Jin Pyo Jeon // Assign 7 #include <cuda.h> #include <stdlib.h> #include <time.h> #include <stdio.h> #include <math.h> #include <assert.h> #define T 1024 // Shared needs to be known at compile time?? #define B 65536 #define TB (B / T) #define N (134217728) // Times for Reduced and non-reduced dot product // N Reduced Non-reduced Thread Count // 2^27 8.95 8.91 1024 // 2^26 4.49 4.46 1024 // 2^20 0.072 0.072 1024 #define gpuErrCheck(ans) { gpuAssert((ans), __FILE__, __LINE__); } inline void gpuAssert(cudaError_t e, const char *file, int line) { if (e != cudaSuccess) { fprintf(stderr, "GPU Assert: %s: %s %d\n", cudaGetErrorString(e), file, line); } } __global__ void generate_partials(int* X, int* Y, int *S) { __shared__ int XY[T]; int i = blockIdx.x * blockDim.x + threadIdx.x; if (i < N) { XY[threadIdx.x] = X[i]; } for (int stride = 1; stride <= threadIdx.x; stride *= 2) { __syncthreads(); int in1 = XY[threadIdx.x - stride]; __syncthreads(); XY[threadIdx.x] += in1; } __syncthreads(); if (i < N) { Y[i] = XY[threadIdx.x]; } if (threadIdx.x == blockDim.x - 1) { S[blockIdx.x] = XY[threadIdx.x]; } } __global__ void add_partials(int *S) { __shared__ int PS[T]; int i = blockIdx.x * blockDim.x + threadIdx.x; if (i < B) { PS[threadIdx.x] = S[i]; } for (int stride = 1; stride <= threadIdx.x; stride *= 2) { __syncthreads(); int in1 = PS[threadIdx.x - stride]; __syncthreads(); PS[threadIdx.x] += in1; } __syncthreads(); if (i < B) { S[i] = PS[threadIdx.x]; } } __global__ void apply_partials(int *S, int *Y) { int i = blockIdx.x * blockDim.x + threadIdx.x; if (i < N) { Y[i] += S[blockIdx.x]; } } void random_ints(int * arr, size_t size){ int i = 0; for (i = 0; i < size; i++) { arr[i] = rand() % 2 ; } } void printVec(int *vec, size_t width) { for (int i = 0; i < width; i++) { printf("%d ", vec[i]); } printf("\n"); } void printVec(int *vec, long begin, long end) { printf("[START: %ld] ", begin); for (long i = begin; i < end; i++) { printf("%d ", vec[i]); } printf("[END: %ld] \n", end); } void printVecElement(int *vec, long index) { printf("%d ", vec[index]); } long addVec(int *vec, long begin, long end) { long sum = 0; for (long i = begin; i < end; i++) { sum += vec[i]; } return sum; } int main(int argc, char**argv) { srand(time(NULL)); cudaEvent_t start, stop; cudaEventCreate(&start); cudaEventCreate(&stop); cudaEventRecord(start, 0); int *X, *Y, *S; int *d_X, *d_Y, *d_S; unsigned long long int size = N * sizeof(int); gpuErrCheck( cudaMalloc((void**)&d_X, size) ); gpuErrCheck( cudaMalloc((void**)&d_Y, size) ); cudaMalloc((void**)&d_S, B * sizeof(int)); X = (int *)malloc(size); Y = (int *)malloc(size); S = (int *)malloc(sizeof(int) * B); random_ints(X, N); gpuErrCheck( cudaMemcpy(d_X, X, size, cudaMemcpyHostToDevice) ); dim3 threadDims(T, 1, 1); dim3 blockDims(B, 1, 1); generate_partials<<<blockDims, threadDims>>>(d_X, d_Y, d_S); gpuErrCheck( cudaPeekAtLastError() ); gpuErrCheck( cudaDeviceSynchronize() ); // Test gpuErrCheck( cudaMemcpy(Y, d_Y, size, cudaMemcpyDeviceToHost) ); gpuErrCheck( cudaMemcpy(S, d_S, sizeof(int) * B, cudaMemcpyDeviceToHost) ); for (long i = 0; i < 10; i++) { printVecElement(S, i); printVecElement(Y, ((i + 1) * T - 1)); printf("\n"); } printVec(S, 20); // add_partials<<<TB, T>>>(d_S); gpuErrCheck( cudaPeekAtLastError() ); gpuErrCheck( cudaDeviceSynchronize() ); // Test gpuErrCheck( cudaMemcpy(S, d_S, sizeof(int) * B, cudaMemcpyDeviceToHost) ); printVec(S, 20); for (long i = 0; i < 10; i++) { printVec(Y, i * T, i * T + 10); } // apply_partials<<<blockDims, threadDims>>>(d_S, d_Y); gpuErrCheck( cudaPeekAtLastError() ); gpuErrCheck( cudaDeviceSynchronize() ); gpuErrCheck( cudaMemcpy(Y, d_Y, size, cudaMemcpyDeviceToHost) ); // Test for (long i = 0; i < 10; i++) { printVecElement(S, i); printVec(Y, i * T, i * T + 10); } // cudaEventRecord(stop, 0); cudaEventSynchronize(stop); float elapsedTime; cudaEventElapsedTime(&elapsedTime, start, stop); cudaEventDestroy(start); cudaEventDestroy(stop); printf("The elapsed time of %f s\n", elapsedTime / 1000.0); free(X); free(Y); free(S); cudaFree(d_X); cudaFree(d_Y); cudaFree(d_S); return 0; }
19,420
#include <math.h> __device__ size_t calculateGlobalIndex() { // Which block are we? size_t const globalBlockIndex = blockIdx.x + blockIdx.y * gridDim.x; // Which thread are we within the block? size_t const localThreadIdx = threadIdx.x + blockDim.x * blockIdx.y; // How big is each block? size_t const threadsPerBlock = blockDim.x * blockDim.y; // Which thread are we overall? return localThreadIdx + globalBlockIndex*threadsPerBlock; } __global__ void closestPoint(double *corrBdy, double *dist, double *bdy, double *mask, int height, int width) { // Calculate pixel's location int x = (blockIdx.x * blockDim.x) + threadIdx.x; int y = (blockIdx.y * blockDim.y) + threadIdx.y; // Only execut valid pixels if (x>=width || y>=height || mask[y*width+x]==0 || bdy[y*width+x]==1) { return; } double min_dist = max(height, width); double cur_dist = 0.0; for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { if (bdy[i*width+j] == 0) continue; cur_dist = sqrt(double((x-j)*(x-j))+double((y-i)*(y-i))); if (cur_dist < min_dist) { min_dist = cur_dist; corrBdy[y*width+x] = j*height+i+1; if (min_dist < 1.1) break; } } } /*int bdyx = corrx[y*width+x]; int bdyy = corry[y*width+x]; if (x-bdyx != 0 || y-bdyy != 0) { double angle = (double(x-bdyx) * gx[bdyy*width+bdyx] + double(y-bdyy) * gy[bdyy*width+bdyx])/sqrt(double((x-bdyx)*(x-bdyx))+double((y-bdyy)*(y-bdyy))); if (angle < 0) dist[y*width+x] = 100; else dist[y*width+x] = min_dist; }*/ dist[y*width+x] = min_dist; __syncthreads(); }
19,421
// // Created by Anikait Singh on 2019-08-01. // for interpolation // //arr[i][j] to arr[j][i] //r is rows //c is columns //static double transposeLookup2D(double *arr, int i, int j, int r, int c) { // return arr[j * r + i]; //} //arr[i][j][k][l] to arr[l][k][j][i] //s1,s2,s3,s4 is size of i, j, k, l respetively #ifdef __NVCC__ __device__ #endif double transposeLookup4D(double *arr, int i, int j, int k, int l, int s1, int s2, int s3, int s4) { //j, k, l are one based j = j - 1; k = k - 1; l = l - 1; return arr[l * s3 * s2 * s1 + k * s2 * s1 + j * s1 + i]; } //ivec = 1 #ifdef __NVCC__ __global__ #endif void r8herm3fcn(int ivec, int ivecd, double *fval, int i, int j, int k, double xp, double yp, double zp, double hx, double hxi, double hy, double hyi, double hz, double hzi, double *fin, int inf2, int inf3, int nz) { int iadr; double xpi, xp2, xpi2, ax, axbar, bx, bxbar, ypi, yp2, ypi2, ay; double aybar, by, bybar, zpi, zp2, zpi2, az, azbar, bz, bzbar, axp; double axbarp, bxp, bxbarp, ayp, aybarp, byp, bybarp, azp, azbarp, bzp; double bzbarp; double sum = 0; int ict[8] = {1,1,1,1,0,0,0,0}; //x xpi = 1.0 - xp; xp2 = xp * xp; xpi2 = xpi * xpi; ax = xp2 * (3.0 - 2.0 * xp); axbar = 1.0 - ax; bx = -xp2 * xpi; bxbar = xpi2 * xp; //y ypi = 1.0 - yp; yp2 = yp * yp; ypi2 = ypi * ypi; ay = yp2 * (3.0 - 2.0 * yp); aybar = 1.0 - ay; by = -yp2 * ypi; bybar = ypi2 * yp; //z zpi = 1.0 - zp; zp2 = zp * zp; zpi2 = zpi * zpi; az = zp2 * (3.0 - 2.0 * zp); azbar = 1.0 - az; bz = -zp2 * zpi; bzbar = zpi2 * zp; iadr = 0; //derivatives axp = 6.0 * xp * xpi; axbarp = -axp; bxp = xp * (3.0 * xp - 2.0); bxbarp = xpi * (3.0 * xpi - 2.0); ayp = 6.0 * yp * ypi; aybarp = -ayp; byp = yp * (3.0 * yp - 2.0); bybarp = ypi * (3.0 * ypi - 2.0); azp = 6.0 * zp * zpi; azbarp = -azp; bzp = zp * (3.0 * zp - 2.0); bzbarp = zpi * (3.0 * zpi - 2.0); int s1 = 8; if (ict[0] == 1) { // iadr = iadr + 1; sum = azbar * ( axbar * (aybar * transposeLookup4D(fin, 0, i, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 0, i, j + 1, k, s1, inf2, inf3, nz)) + ax * (aybar * transposeLookup4D(fin, 0, i + 1, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 0, i + 1, j + 1, k, s1, inf2, inf3, nz))) + az * ( axbar * (aybar * transposeLookup4D(fin, 0, i, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 0, i, j + 1, k + 1, s1, inf2, inf3, nz)) + ax * (aybar * transposeLookup4D(fin, 0, i + 1, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 0, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))); sum = sum + hx * ( azbar * ( bxbar * (aybar * transposeLookup4D(fin, 1, i, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 1, i, j + 1, k, s1, inf2, inf3, nz)) + bx * (aybar * transposeLookup4D(fin, 1, i + 1, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 1, i + 1, j + 1, k, s1, inf2, inf3, nz))) + az * ( bxbar * (aybar * transposeLookup4D(fin, 1, i, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 1, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bx * (aybar * transposeLookup4D(fin, 1, i + 1, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 1, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hy * ( azbar * ( axbar * (bybar * transposeLookup4D(fin, 2, i, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 2, i, j + 1, k, s1, inf2, inf3, nz)) + ax * (bybar * transposeLookup4D(fin, 2, i + 1, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 2, i + 1, j + 1, k, s1, inf2, inf3, nz))) + az * ( axbar * (bybar * transposeLookup4D(fin, 2, i, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 2, i, j + 1, k + 1, s1, inf2, inf3, nz)) + ax * (bybar * transposeLookup4D(fin, 2, i + 1, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 2, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hz * ( bzbar * ( axbar * (aybar * transposeLookup4D(fin, 3, i, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 3, i, j + 1, k, s1, inf2, inf3, nz)) + ax * (aybar * transposeLookup4D(fin, 3, i + 1, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 3, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bz * ( axbar * (aybar * transposeLookup4D(fin, 3, i, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 3, i, j + 1, k + 1, s1, inf2, inf3, nz)) + ax * (aybar * transposeLookup4D(fin, 3, i + 1, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 3, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hx * hy * ( azbar * ( bxbar * (bybar * transposeLookup4D(fin, 4, i, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 4, i, j + 1, k, s1, inf2, inf3, nz)) + bx * (bybar * transposeLookup4D(fin, 4, i + 1, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 4, i + 1, j + 1, k, s1, inf2, inf3, nz))) + az * ( bxbar * (bybar * transposeLookup4D(fin, 4, i, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 4, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bx * (bybar * transposeLookup4D(fin, 4, i + 1, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 4, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hx * hz * ( bzbar * ( bxbar * (aybar * transposeLookup4D(fin, 5, i, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 5, i, j + 1, k, s1, inf2, inf3, nz)) + bx * (aybar * transposeLookup4D(fin, 5, i + 1, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 5, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bz * ( bxbar * (aybar * transposeLookup4D(fin, 5, i, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 5, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bx * (aybar * transposeLookup4D(fin, 5, i + 1, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 5, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hy * hz * ( bzbar * ( axbar * (bybar * transposeLookup4D(fin, 6, i, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 6, i, j + 1, k, s1, inf2, inf3, nz)) + ax * (bybar * transposeLookup4D(fin, 6, i + 1, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 6, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bz * ( axbar * (bybar * transposeLookup4D(fin, 6, i, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 6, i, j + 1, k + 1, s1, inf2, inf3, nz)) + ax * (bybar * transposeLookup4D(fin, 6, i + 1, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 6, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hx * hy * hz * ( bzbar * ( bxbar * (bybar * transposeLookup4D(fin, 7, i, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 7, i, j + 1, k, s1, inf2, inf3, nz)) + bx * (bybar * transposeLookup4D(fin, 7, i + 1, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 7, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bz * ( bxbar * (bybar * transposeLookup4D(fin, 7, i, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 7, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bx * (bybar * transposeLookup4D(fin, 7, i + 1, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 7, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); //v is 0 so ignore fval[iadr] = sum; } if (ict[1] == 1) { iadr = iadr + 1; sum = hxi * ( azbar * ( axbarp * (aybar * transposeLookup4D(fin, 0, i, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 0, i, j + 1, k, s1, inf2, inf3, nz)) + axp * (aybar * transposeLookup4D(fin, 0, i + 1, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 0, i + 1, j + 1, k, s1, inf2, inf3, nz))) + az * ( axbarp * (aybar * transposeLookup4D(fin, 0, i, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 0, i, j + 1, k + 1, s1, inf2, inf3, nz)) + axp * (aybar * transposeLookup4D(fin, 0, i + 1, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 0, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + ( azbar * ( bxbarp * (aybar * transposeLookup4D(fin, 1, i, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 1, i, j + 1, k, s1, inf2, inf3, nz)) + bxp * (aybar * transposeLookup4D(fin, 1, i + 1, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 1, i + 1, j + 1, k, s1, inf2, inf3, nz))) + az * ( bxbarp * (aybar * transposeLookup4D(fin, 1, i, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 1, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bxp * (aybar * transposeLookup4D(fin, 1, i + 1, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 1, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hxi * hy * ( azbar * ( axbarp * (bybar * transposeLookup4D(fin, 2, i, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 2, i, j + 1, k, s1, inf2, inf3, nz)) + axp * (bybar * transposeLookup4D(fin, 2, i + 1, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 2, i + 1, j + 1, k, s1, inf2, inf3, nz))) + az * ( axbarp * (bybar * transposeLookup4D(fin, 2, i, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 2, i, j + 1, k + 1, s1, inf2, inf3, nz)) + axp * (bybar * transposeLookup4D(fin, 2, i + 1, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 2, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hxi * hz * ( bzbar * ( axbarp * (aybar * transposeLookup4D(fin, 3, i, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 3, i, j + 1, k, s1, inf2, inf3, nz)) + axp * (aybar * transposeLookup4D(fin, 3, i + 1, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 3, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bz * ( axbarp * (aybar * transposeLookup4D(fin, 3, i, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 3, i, j + 1, k + 1, s1, inf2, inf3, nz)) + axp * (aybar * transposeLookup4D(fin, 3, i + 1, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 3, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hy * ( azbar * ( bxbarp * (bybar * transposeLookup4D(fin, 4, i, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 4, i, j + 1, k, s1, inf2, inf3, nz)) + bxp * (bybar * transposeLookup4D(fin, 4, i + 1, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 4, i + 1, j + 1, k, s1, inf2, inf3, nz))) + az * ( bxbarp * (bybar * transposeLookup4D(fin, 4, i, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 4, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bxp * (bybar * transposeLookup4D(fin, 4, i + 1, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 4, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hz * ( bzbar * ( bxbarp * (aybar * transposeLookup4D(fin, 5, i, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 5, i, j + 1, k, s1, inf2, inf3, nz)) + bxp * (aybar * transposeLookup4D(fin, 5, i + 1, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 5, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bz * ( bxbarp * (aybar * transposeLookup4D(fin, 5, i, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 5, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bxp * (aybar * transposeLookup4D(fin, 5, i + 1, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 5, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hxi * hy * hz * ( bzbar * ( axbarp * (bybar * transposeLookup4D(fin, 6, i, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 6, i, j + 1, k, s1, inf2, inf3, nz)) + axp * (bybar * transposeLookup4D(fin, 6, i + 1, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 6, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bz * ( axbarp * (bybar * transposeLookup4D(fin, 6, i, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 6, i, j + 1, k + 1, s1, inf2, inf3, nz)) + axp * (bybar * transposeLookup4D(fin, 6, i + 1, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 6, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hy * hz * ( bzbar * ( bxbarp * (bybar * transposeLookup4D(fin, 7, i, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 7, i, j + 1, k, s1, inf2, inf3, nz)) + bxp * (bybar * transposeLookup4D(fin, 7, i + 1, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 7, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bz * ( bxbarp * (bybar * transposeLookup4D(fin, 7, i, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 7, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bxp * (bybar * transposeLookup4D(fin, 7, i + 1, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 7, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); fval[iadr] = sum; } if (ict[2] == 1) { iadr = iadr + 1; sum = hyi * ( azbar * ( axbar * (aybarp * transposeLookup4D(fin, 0, i, j, k, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 0, i, j + 1, k, s1, inf2, inf3, nz)) + ax * (aybarp * transposeLookup4D(fin, 0, i + 1, j, k, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 0, i + 1, j + 1, k, s1, inf2, inf3, nz))) + az * ( axbar * (aybarp * transposeLookup4D(fin, 0, i, j, k + 1, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 0, i, j + 1, k + 1, s1, inf2, inf3, nz)) + ax * (aybarp * transposeLookup4D(fin, 0, i + 1, j, k + 1, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 0, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hyi * hx * ( azbar * ( bxbar * (aybarp * transposeLookup4D(fin, 1, i, j, k, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 1, i, j + 1, k, s1, inf2, inf3, nz)) + bx * (aybarp * transposeLookup4D(fin, 1, i + 1, j, k, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 1, i + 1, j + 1, k, s1, inf2, inf3, nz))) + az * ( bxbar * (aybarp * transposeLookup4D(fin, 1, i, j, k + 1, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 1, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bx * (aybarp * transposeLookup4D(fin, 1, i + 1, j, k + 1, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 1, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + ( azbar * ( axbar * (bybarp * transposeLookup4D(fin, 2, i, j, k, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 2, i, j + 1, k, s1, inf2, inf3, nz)) + ax * (bybarp * transposeLookup4D(fin, 2, i + 1, j, k, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 2, i + 1, j + 1, k, s1, inf2, inf3, nz))) + az * ( axbar * (bybarp * transposeLookup4D(fin, 2, i, j, k + 1, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 2, i, j + 1, k + 1, s1, inf2, inf3, nz)) + ax * (bybarp * transposeLookup4D(fin, 2, i + 1, j, k + 1, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 2, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hyi * hz * ( bzbar * ( axbar * (aybarp * transposeLookup4D(fin, 3, i, j, k, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 3, i, j + 1, k, s1, inf2, inf3, nz)) + ax * (aybarp * transposeLookup4D(fin, 3, i + 1, j, k, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 3, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bz * ( axbar * (aybarp * transposeLookup4D(fin, 3, i, j, k + 1, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 3, i, j + 1, k + 1, s1, inf2, inf3, nz)) + ax * (aybarp * transposeLookup4D(fin, 3, i + 1, j, k + 1, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 3, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hx * ( azbar * ( bxbar * (bybarp * transposeLookup4D(fin, 4, i, j, k, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 4, i, j + 1, k, s1, inf2, inf3, nz)) + bx * (bybarp * transposeLookup4D(fin, 4, i + 1, j, k, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 4, i + 1, j + 1, k, s1, inf2, inf3, nz))) + az * ( bxbar * (bybarp * transposeLookup4D(fin, 4, i, j, k + 1, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 4, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bx * (bybarp * transposeLookup4D(fin, 4, i + 1, j, k + 1, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 4, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hx * hyi * hz * ( bzbar * ( bxbar * (aybarp * transposeLookup4D(fin, 5, i, j, k, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 5, i, j + 1, k, s1, inf2, inf3, nz)) + bx * (aybarp * transposeLookup4D(fin, 5, i + 1, j, k, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 5, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bz * ( bxbar * (aybarp * transposeLookup4D(fin, 5, i, j, k + 1, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 5, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bx * (aybarp * transposeLookup4D(fin, 5, i + 1, j, k + 1, s1, inf2, inf3, nz) + ayp * transposeLookup4D(fin, 5, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hz * ( bzbar * ( axbar * (bybarp * transposeLookup4D(fin, 6, i, j, k, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 6, i, j + 1, k, s1, inf2, inf3, nz)) + ax * (bybarp * transposeLookup4D(fin, 6, i + 1, j, k, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 6, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bz * ( axbar * (bybarp * transposeLookup4D(fin, 6, i, j, k + 1, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 6, i, j + 1, k + 1, s1, inf2, inf3, nz)) + ax * (bybarp * transposeLookup4D(fin, 6, i + 1, j, k + 1, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 6, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hx * hz * ( bzbar * ( bxbar * (bybarp * transposeLookup4D(fin, 7, i, j, k, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 7, i, j + 1, k, s1, inf2, inf3, nz)) + bx * (bybarp * transposeLookup4D(fin, 7, i + 1, j, k, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 7, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bz * ( bxbar * (bybarp * transposeLookup4D(fin, 7, i, j, k + 1, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 7, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bx * (bybarp * transposeLookup4D(fin, 7, i + 1, j, k + 1, s1, inf2, inf3, nz) + byp * transposeLookup4D(fin, 7, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); fval[iadr] = sum; } if (ict[3] == 1) { iadr = iadr + 1; sum = hzi * ( azbarp * ( axbar * (aybar * transposeLookup4D(fin, 0, i, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 0, i, j + 1, k, s1, inf2, inf3, nz)) + ax * (aybar * transposeLookup4D(fin, 0, i + 1, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 0, i + 1, j + 1, k, s1, inf2, inf3, nz))) + azp * ( axbar * (aybar * transposeLookup4D(fin, 0, i, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 0, i, j + 1, k + 1, s1, inf2, inf3, nz)) + ax * (aybar * transposeLookup4D(fin, 0, i + 1, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 0, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hzi * hx * ( azbarp * ( bxbar * (aybar * transposeLookup4D(fin, 1, i, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 1, i, j + 1, k, s1, inf2, inf3, nz)) + bx * (aybar * transposeLookup4D(fin, 1, i + 1, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 1, i + 1, j + 1, k, s1, inf2, inf3, nz))) + azp * ( bxbar * (aybar * transposeLookup4D(fin, 1, i, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 1, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bx * (aybar * transposeLookup4D(fin, 1, i + 1, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 1, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hzi * hy * ( azbarp * ( axbar * (bybar * transposeLookup4D(fin, 2, i, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 2, i, j + 1, k, s1, inf2, inf3, nz)) + ax * (bybar * transposeLookup4D(fin, 2, i + 1, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 2, i + 1, j + 1, k, s1, inf2, inf3, nz))) + azp * ( axbar * (bybar * transposeLookup4D(fin, 2, i, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 2, i, j + 1, k + 1, s1, inf2, inf3, nz)) + ax * (bybar * transposeLookup4D(fin, 2, i + 1, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 2, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + ( bzbarp * ( axbar * (aybar * transposeLookup4D(fin, 3, i, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 3, i, j + 1, k, s1, inf2, inf3, nz)) + ax * (aybar * transposeLookup4D(fin, 3, i + 1, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 3, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bzp * ( axbar * (aybar * transposeLookup4D(fin, 3, i, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 3, i, j + 1, k + 1, s1, inf2, inf3, nz)) + ax * (aybar * transposeLookup4D(fin, 3, i + 1, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 3, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hzi * hx * hy * ( azbarp * ( bxbar * (bybar * transposeLookup4D(fin, 4, i, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 4, i, j + 1, k, s1, inf2, inf3, nz)) + bx * (bybar * transposeLookup4D(fin, 4, i + 1, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 4, i + 1, j + 1, k, s1, inf2, inf3, nz))) + azp * ( bxbar * (bybar * transposeLookup4D(fin, 4, i, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 4, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bx * (bybar * transposeLookup4D(fin, 4, i + 1, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 4, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hx * ( bzbarp * ( bxbar * (aybar * transposeLookup4D(fin, 5, i, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 5, i, j + 1, k, s1, inf2, inf3, nz)) + bx * (aybar * transposeLookup4D(fin, 5, i + 1, j, k, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 5, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bzp * ( bxbar * (aybar * transposeLookup4D(fin, 5, i, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 5, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bx * (aybar * transposeLookup4D(fin, 5, i + 1, j, k + 1, s1, inf2, inf3, nz) + ay * transposeLookup4D(fin, 5, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hy * ( bzbarp * ( axbar * (bybar * transposeLookup4D(fin, 6, i, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 6, i, j + 1, k, s1, inf2, inf3, nz)) + ax * (bybar * transposeLookup4D(fin, 6, i + 1, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 6, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bzp * ( axbar * (bybar * transposeLookup4D(fin, 6, i, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 6, i, j + 1, k + 1, s1, inf2, inf3, nz)) + ax * (bybar * transposeLookup4D(fin, 6, i + 1, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 6, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); sum = sum + hx * hy * ( bzbarp * ( bxbar * (bybar * transposeLookup4D(fin, 7, i, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 7, i, j + 1, k, s1, inf2, inf3, nz)) + bx * (bybar * transposeLookup4D(fin, 7, i + 1, j, k, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 7, i + 1, j + 1, k, s1, inf2, inf3, nz))) + bzp * ( bxbar * (bybar * transposeLookup4D(fin, 7, i, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 7, i, j + 1, k + 1, s1, inf2, inf3, nz)) + bx * (bybar * transposeLookup4D(fin, 7, i + 1, j, k + 1, s1, inf2, inf3, nz) + by * transposeLookup4D(fin, 7, i + 1, j + 1, k + 1, s1, inf2, inf3, nz))) ); fval[iadr] = sum; } }
19,422
#include "includes.h" __global__ void transpose(int N, double *A) { int row,col,k; double temp; k = (blockIdx.y*gridDim.x+blockIdx.x)*(blockDim.x*blockDim.y)+(threadIdx.y*blockDim.x+threadIdx.x); row = k/N; col = k - row*N; if(row<col){ temp = A[row*N+col]; A[row*N+col] = A[col*N+row]; A[col*N+row] = temp; } }
19,423
#include <stdio.h> #include <stdlib.h> #define N 10 // ( N )x( N ) matrix containing data // The idea with an aligned array is that the GPU will perform better if you pad // it's data array so that it can fit better in cache. CUDA accomplishes this // with the cudaMallocPitch() call. pitch (of type size_t) is the number of bytes // per row in the array on the device. This is equivilent to // sizeof(arraytype)*(columns + paddingColumns) OR sizeof(arraytype)*numDeviceColumns // // This does mean that care must be taken when copying data to and from the device // because the array is no longer completely linear (it has padding). // CUDA offers a convenience function called cudaMemcpy2D() which allows you to specify // the array rows/cols as well as the pitch for the source and the destination __global__ void kernel(float *A, float *B, int devWidth) { int i = blockDim.x * blockIdx.x + threadIdx.x; int j = blockDim.y * blockIdx.y + threadIdx.y; int o = i+devWidth*j; B[o] = A[o]; //B[o] = o; // uncomment to print the indexes } void print(float *A, int nx, int ny) { for (int j = 0; j < ny; j++) { for (int i = 0; i < nx; i++) { printf("%4.0f ",A[i+nx*j]); } printf("\n"); } printf("\n"); } int main(int argc, char * argv[]) { // Allocate on host float *h_A, *h_B; float *d_A, *d_B; h_A = (float*)malloc(sizeof(float)*N*N); h_B = (float*)malloc(sizeof(float)*N*N); size_t h_pitch=sizeof(float)*N; // Initialize Array h_A for (int i = 0; i < N*N; i++) h_A[i]=i; //h_A[i]=0; <-- use to print the padded indexes // Allocate pictched memory for padded arrays d_A and d_B size_t d_pitch; // actual number of columns in the device array cudaMallocPitch((void**)&d_A,&d_pitch,sizeof(float)*N,N); cudaMallocPitch((void**)&d_B,&d_pitch,sizeof(float)*N,N); int devWidth = d_pitch/sizeof(float); // Copy memory from unpadded array A to padded array B cudaMemcpy2D(d_A,d_pitch,h_A,h_pitch,sizeof(float)*N,N,cudaMemcpyHostToDevice); dim3 threads = dim3(16,16); dim3 blocks = dim3((N+16-1)/16,(N+16-1)/16); kernel<<<blocks,threads>>>(d_A,d_B,devWidth); // Copy memory from padded array B to unpadded array A cudaMemcpy2D(h_B,h_pitch,d_B,d_pitch,sizeof(float)*N,N,cudaMemcpyDeviceToHost); // Are they the same? print(h_A,N,N); print(h_B,N,N); // Release Arrays cudaFree(d_A); cudaFree(d_B); free(h_A); free(h_B); }
19,424
#include <stdio.h> #define N 10 __global__ void add(int *a, int *b) { int i = blockIdx.x; printf("Hello cuda from thread %d\n", i); b[i] = 2*a[i]; } int main() { int ha[N], hb[N]; int *da, *db; cudaMalloc((void **)&da, N*sizeof(int)); cudaMalloc((void **)&db, N*sizeof(int)); for (int i = 0; i<N; ++i) { ha[i] = i; } cudaMemcpy(da, ha, N*sizeof(int), cudaMemcpyHostToDevice); add<<<N, 1>>>(da, db); cudaMemcpy(hb, db, N*sizeof(int), cudaMemcpyDeviceToHost); for (int i = 0; i<N; ++i) { printf("%d\n", hb[i]); } cudaFree(da); cudaFree(db); return 0; }
19,425
// file esempio sommavettore_gpu with herror handling #include "stdio.h" #define N 32 // 100 #define NumThPerBlock 32 //256 #define NumBlocks 1 static void HandleError( cudaError_t err, const char *file, int line) { if (err != cudaSuccess) { printf("%s in %s at line %d\n", cudaGetErrorString( err ), file, line); exit(EXIT_FAILURE); } } #define HANDLE_ERROR(err)(HandleError(err, __FILE__, __LINE__)) __global__ void add(int *d_a, int *d_b, int *d_c) { int tid = blockIdx.x * blockDim.x + threadIdx.x; if (tid < N) d_c[tid] = d_a[tid] + d_b[tid]; } int main( void ) { int a[N], b[N], c[N]; // host variables containing host pointers int *dev_a, *dev_b, *dev_c; // host variables containing device pointers // static allocation on device memory HANDLE_ERROR(cudaMalloc((void**)&dev_a, N*sizeof(int))); HANDLE_ERROR(cudaMalloc((void**)&dev_b, N*sizeof(int))); HANDLE_ERROR(cudaMalloc((void**)&dev_c, N*sizeof(int))); // host initializes arrays for (int i=0; i<N; i++) { a[i] = -i; b[i] = i * i; } // copy arrays from host to device HANDLE_ERROR(cudaMemcpy(dev_a, a, N*sizeof(int), cudaMemcpyHostToDevice)); HANDLE_ERROR(cudaMemcpy(dev_b, b, N*sizeof(int), cudaMemcpyHostToDevice)); add<<<NumBlocks, NumThPerBlock>>>(dev_a, dev_b, dev_c); // TODO wait threads completion //HANDLE_ERROR(cudaDeviceSynchronize()); //retrieve the result from device dev_c into c HANDLE_ERROR(cudaMemcpy(c, dev_c, N*sizeof(int), cudaMemcpyDeviceToHost)); //show results for (int i=0; i<N; i++) { printf("%d + %d = %d\n", a[i], b[i], c[i]); } //free device memory cudaFree(dev_a); cudaFree(dev_b); cudaFree(dev_c); return 0; }
19,426
#include <stdio.h> #include <stdlib.h> #include <time.h> __device__ float ed1D(float *x, float *y, int K){ int i; float d=0; for(i=0;i<K;i++) d += pow((x[i] - y[i]), 2); return sqrt(d); } __device__ float ed2D(float *x, float *y, int T, int K){ int i; float d=0; for (i =0; i < T; i++){ d += ed1D(&x[i*K], &y[i*K], K); } return d; } #define R 10 __device__ float DTW(float *x, float *y, int T, int K){ int i, j; float dd[2*R+1][2]; // use this to walk through the dtw matrix one column at a time (only for values within constraint) float n1, n2, n3, min; // dtw neighbours // first column is just distances (between first R+1 of x-series and first frame of y) dd[0][0] = ed1D(x, y, K); for(j=1;j<R+1;j++){ dd[j][0] = ed1D(&x[j*K], y, K) + dd[j-1][0]; } // now we step across the y-series. for each frame, we compute the next column of the dtw matrix, alternating its placement in the one of two columns on dd int v = 1; // the next column of dtw-matrix is written into this column of dd int w = 0; for(i=1;i<T;i++){ // the diagonal of the dtw matrix in (i, j) is (i, 0). i+j takes values from R below to R above the diagonal (indexing the rows (frames of x-series) in DTW matrix). j+R indexes dd. for(j= -R ;j< R+1 ;j++){ // bottom row is just the distancess (between first R+1 of y-series and first frame of x) if (i+j==0){ dd[j+R][v] = ed1D(x, &y[i*K], K) + dd[0][w]; } else if (i+j > 0 && i+j < T){ n1 = dd[j+R+1][w]; n2 = dd[j+R][w]; n3 = dd[j+R-1][v]; min = fminf(n1, n2); min = fminf(min, n3); dd[j][v] = ed1D(&x[(i+j)*K], &y[i*K], K) + min; } } v = (v+1)%2; w = (w+1)%2; } return dd[2*R][w]; } /* KNN */ __global__ void knn(float *train, float *test, float *dist, size_t N_train, size_t T, size_t K, size_t d_mode) { /* each block processes an instance of test (load it into shared) each thread loads a few elements of the test instance into shared memory each thread computes the distance between the test instance and a train instance, until all train instances have been seen. Assumptions: - NUM_THREADS = N_TRAIN (so a single block can process the whole train set). */ extern __shared__ float Q[]; // query (test instance); int NUM_THREADS = N_train; int bx = blockIdx.x; // indexes the test instance (we have as many blocks as test instances) int tx = threadIdx.x; // indexes the train instance int M = T*K; // size of a test instance (to load into shared memory) int S = (T + NUM_THREADS-1) / NUM_THREADS; //number of frames in time series loaded by each thread int rr = S*K; // num elements each thread must load float d; int i; // load test instance into shared (each thread loads R elements of test instance, corresponding to S rows of Q) for (i=0; i < rr; i++){ int frame_num = tx*S + i/K; if (frame_num < T) Q[(tx*S + i/K)*K + (i%K)] = test[bx * M + tx * rr + i]; } __syncthreads(); // compute distance between test instance (Q) and a train instance if (d_mode == 0) d = ed2D(Q, &train[tx*M], T, K); else d = DTW(Q, &train[tx*M], T, K); dist[bx*N_train + tx] = d; __syncthreads(); } extern "C"{ void launch_kernel_knn(void *train, void *test, void *dist, size_t N_train, size_t N_test, size_t T, size_t K, size_t mode) { // for nuw, num_threads and n_train are the same (so we can use a single block to process a test case against the full training set). Relieve this limitation by looping over the kernel... int M = T*K; // for shared memory int NUM_THREADS = N_train; knn<<<N_test, NUM_THREADS, M*sizeof(float)>>>((float*)train, (float*)test, (float*)dist, N_train, T, K, mode); }} __global__ void dtw_kern(float *Q, float *S, float *D, size_t T, size_t K){ *D = DTW(Q, S, T, K); } extern "C"{ void launch_kernel_dtw(void *Q, void *S, void *D, size_t T, size_t K) { dtw_kern<<<1, 1>>>((float*)Q, (float*)S, (float*)D,T, K); }} /* Vector Addition */ __global__ void add_0(float *a, float *b, float *c, size_t N){ int tid = blockIdx.x; if (tid < N) c[tid] = a[tid] + b[tid]; } __global__ void add_1(float *a, float *b, float *c, size_t N){ int tid = threadIdx.x; if (tid < N) c[tid] = a[tid] + b[tid]; } __global__ void add_2(float *a, float *b, float *c, size_t N){ int tid = threadIdx.x + blockIdx.x * blockDim.x; if (tid < N) c[tid] = a[tid] + b[tid]; } extern "C"{ void launch_kernel_add(void *d_a, void *d_b, void *d_c, size_t N, int mode) { // launch kernel if (mode == 0) add_0<<<N, 1>>>((float*)d_a, (float*)d_b, (float *)d_c, N); else if (mode == 1) add_1<<<1, N>>>((float*)d_a, (float*)d_b, (float *)d_c, N); else add_2<<<(N + mode-1)/mode, mode>>>((float *)d_a, (float *)d_b, (float *)d_c, N); }} /* Vector Multiplication */ __global__ void multiply_0(float *a, float *b, float *c, size_t N){ extern __shared__ float temp[]; int tid = threadIdx.x; if (tid < N) temp[tid] = a[tid] * b[tid]; __syncthreads(); // thread 0 sums pairwise products if ( tid == 0){ float sum = 0; for (int i =0; i < N; i++) sum += temp[i]; c[0] = sum; } } __global__ void multiply_1(float *a, float *b, float *c, size_t N, size_t M){ c[0] = 0.0; // necessary to initialize since malloc doesn't clear memory extern __shared__ float temp[]; int tid = threadIdx.x + blockIdx.x * blockDim.x; if (tid < N) temp[threadIdx.x] = a[tid] * b[tid]; __syncthreads(); if (0 == threadIdx.x){ float sum = 0; for (int i=0; i < M; i++) sum += temp[i]; // now we add sum to c. but since different blocks are doing this potentially simultaneous (read-modify-write), one might read before another writes and hence over write eachother. so we need to use atomic operations - then read-modify-write is uninteruptable atomicAdd(c, sum); } } extern "C"{ void launch_kernel_multiply(void *d_a, void *d_b, void *d_c, size_t N, size_t M) { printf("%ld, %ld\n", N, M); if (M==0) multiply_0<<<1, N, N*sizeof(float)>>>((float*)d_a, (float*)d_b, (float *)d_c, N); else multiply_1<<<(N + M-1)/M, M, M*sizeof(float)>>>((float*)d_a, (float*)d_b, (float *)d_c, N, M); printf("%s\n", cudaGetErrorString(cudaGetLastError())); }} /* Matrix Multiplication */ __global__ void matmult_0(float *a, float *b, float *c, size_t W1, size_t W2, size_t W3){ float cval = 0; int col = threadIdx.x + blockIdx.x * blockDim.x; int row = threadIdx.y + blockIdx.y * blockDim.y; if (row < W1 && col < W3){ for (int i=0; i<W2; i++) cval += a[row*W2 + i] * b[i*W3 + col]; c[row*W3 + col] = cval; } } #define TILE_WIDTH 32 __global__ void matmult_1(float *a, float *b, float *c, size_t W1, size_t W2, size_t W3){ __shared__ float as[TILE_WIDTH][TILE_WIDTH]; __shared__ float bs[TILE_WIDTH][TILE_WIDTH]; int bx = blockIdx.x, by = blockIdx.y, tx = threadIdx.x, ty = threadIdx.y; int row = by * TILE_WIDTH + ty; int col = bx * TILE_WIDTH + tx; float cval =0; for (int i =0; i < (W2-1)/TILE_WIDTH+1; ++i){ if (row < W1 && i*TILE_WIDTH + tx < W2) as[ty][tx] = a[row*W2 + i*TILE_WIDTH + tx]; else as[ty][tx] = 0; if (col < W3 && i*TILE_WIDTH+ty < W2) bs[ty][tx] = b[(i*TILE_WIDTH+ty)*W3 + col]; else bs[ty][tx] = 0; __syncthreads(); for(int k=0; k <TILE_WIDTH; ++k) cval += as[ty][k] * bs[k][tx]; __syncthreads(); } if (row < W1 && col < W3) c[row*W3 + col] = cval; } extern "C"{ void launch_kernel_matmul(void *da, void *db, void *dc, size_t W1, size_t W2, size_t W3, size_t mode){ if (mode == 0){ dim3 dimBlock(16, 16); dim3 dimGrid((W3 + dimBlock.x - 1)/dimBlock.x, (W1 + dimBlock.y - 1)/dimBlock.y); matmult_0<<<dimGrid, dimBlock>>>((float*)da, (float*)db, (float*)dc, W1, W2, W3); } else{ dim3 dimBlock(TILE_WIDTH, TILE_WIDTH); dim3 dimGrid((W3-1)/TILE_WIDTH+1, (W1-1)/TILE_WIDTH+1); matmult_1<<<dimGrid, dimBlock>>>((float*)da, (float*)db, (float*)dc, W1, W2, W3); } }} /* __global__ void stencil_1d(int *in, int *out, int RADIUS){ __shared__ int temp[BLOCK_SIZE + 2*RADIUS]; int gindex = threadIdx.x + blockIdx.x*blockDim.x; int lindex = threadIdx.x + RADIUS; // read input into shared temp[lindex] = in[gindex]; if (threadIdx.x < RADIUS){ temp[lindex - RADIUS] = in[gindex - RADIUS]; temp[lindex + BLOCK_SIZE] = in[gindex + BLOCK_SIZE]; } __syncthreads(); int result = 0; for (int offset = -RADIUS ; offset <= RADIUS ; offset ++) result += temp[lindex + offset]; out[gindex] = result; } */
19,427
#include "cuda_runtime.h" #include "device_launch_parameters.h" #include <stdio.h> int main() { cudaDeviceProp deviceProp; cudaGetDeviceProperties(&deviceProp, 0); printf("Device name : %s\n", deviceProp.name); printf("Total global memory : %d MB\n",deviceProp.totalGlobalMem / 1024 / 1024); printf("Shared memory per block : %d\n",deviceProp.sharedMemPerBlock); printf("Registers per block : %d\n",deviceProp.regsPerBlock); printf("Warp size : %d\n", deviceProp.warpSize); printf("Memory pitch : %d\n", deviceProp.memPitch); printf("Max threads per block : %d\n",deviceProp.maxThreadsPerBlock); printf("Max threads dimensions : x = %d, y = %d, z = % d\n", deviceProp.maxThreadsDim[0],deviceProp.maxThreadsDim[1],deviceProp.maxThreadsDim[2]); printf("Max grid size: x = %d, y = %d, z = %d\n",deviceProp.maxGridSize[0], deviceProp.maxGridSize[1],deviceProp.maxGridSize[2]); printf("Clock rate: %d\n", deviceProp.clockRate); printf("Total constant memory: %d\n",deviceProp.totalConstMem); printf("Compute capability: %d.%d\n",deviceProp.major, deviceProp.minor); printf("Texture alignment: %d\n",deviceProp.textureAlignment); printf("Device overlap: %d\n",deviceProp.deviceOverlap); printf("Multiprocessor count: %d\n",deviceProp.multiProcessorCount); printf("Kernel execution timeout enabled: %s\n", deviceProp.kernelExecTimeoutEnabled ? "true" :"false"); return 0; }
19,428
#include <iostream> #include <cuda.h> #include <cuda_runtime.h> typedef unsigned int uint; // O kernel processará o espaço do bloco, eliminando todos os múltiplos de k __global__ void sieve(uint* d_array, uint k) { int idx = threadIdx.x + (32 * blockIdx.x); if ( (d_array[idx] % k) == 0) { d_array[idx] = 0; } __syncthreads(); } extern "C++" void onDevice(uint *ptrK, uint block_size, uint n, uint *h_array) { uint k = *ptrK; // Alocando os espaços na GPU para processamento. uint* d_array; // Allocando memória na GPU. cudaMalloc((void**)&d_array, (block_size) * sizeof(uint)); // Copiando conteudo para a GPU. cudaMemcpy(d_array, h_array, (block_size) * sizeof(uint), cudaMemcpyHostToDevice); dim3 threadsPorBloco(32, 1, 1); dim3 blocosPorGrid(ceil( (double)block_size/32), 1, 1); // Uso da GPU para eliminar os múltiplos do bloco // Invoka o kernel para operações de mod sieve<<<blocosPorGrid, threadsPorBloco>>>(d_array, k); // Detecção de erro caso o kernel apresente algum... cudaError_t err = cudaGetLastError(); if (err != cudaSuccess) printf("Error: %s\n", cudaGetErrorString(err)); // Atualiza o array presente na CPU depois do resultado. cudaMemcpy(h_array, d_array, block_size * sizeof(uint), cudaMemcpyDeviceToHost); // Desaloca os espaços alocados. cudaFree(d_array); }
19,429
float h_A[]= { 0.9082878423605707, 0.689461402011782, 0.5463360405647449, 0.505607877073731, 0.7714555565241021, 0.7929819094507726, 0.6788033919030121, 0.5687240568421572, 0.8389623664839443, 0.634043583652253, 0.9457857509154202, 0.7519147147958488, 0.9843117506047065, 0.9676874072673204, 0.798158570093222, 0.9318072733451459, 0.7439244467681311, 0.9593856458178559, 0.5373705836989602, 0.6402254105908144, 0.7372196215076794, 0.6082568212678618, 0.6979426932104127, 0.7283842025429055, 0.9584905996605753, 0.5195155554982327, 0.975419587161416, 0.8096049813459658, 0.8383877189642344, 0.815163207043546, 0.9962296424815029, 0.8257100526244328, 0.7458081348791421, 0.8030882184553869, 0.5967364634067177, 0.9303342059438153, 0.7517915734760934, 0.8618913509260577, 0.6526211302888955, 0.8740412379001925, 0.9313006338700538, 0.9699971646917169, 0.8654325496479509, 0.6484988032489198, 0.9012295545964255, 0.8404307733332576, 0.5724524195941496, 0.7504545061224357, 0.9800762559127139, 0.6702715507227748, 0.9171044139131168, 0.7822184970721757, 0.8122396737793942, 0.7738198950889448, 0.7995687552098456, 0.998014937760773, 0.6557444679341392, 0.9737466545929512, 0.8573762861913232, 0.7235132768856634, 0.819484714941106, 0.5028266081567522, 0.6443833537471696, 0.7438185172172388, 0.6676246406348593, 0.5785496889988642, 0.9663132118586415, 0.9799734728777658, 0.7347309272468305, 0.5012577124571183, 0.7480357094701159, 0.83065157071153, 0.5495105239440944, 0.7742378113848907, 0.5297156277290647, 0.8405015409194474, 0.9870850031095237, 0.7183063739998541, 0.7003071457566671, 0.5878437627980221, 0.8382888149934464, 0.8263031847594484, 0.5501921078972174, 0.638697356392512, 0.6710087556650692, 0.9666158068402364, 0.566651830047104, 0.6899588664208733, 0.6460717393412477, 0.7291311807530819, 0.7224906851104436, 0.9844710627243523, 0.5086825869074691, 0.7090734870987312, 0.8297137648073487, 0.5500526905376764, 0.7123279180391103, 0.9305503256742669, 0.5488463249341886, 0.6092389446505548, 0.8643744864371559, 0.8549461149920099, 0.560488164313971, 0.6595018767619195, 0.6010501134011093, 0.9468472372814916, 0.9731044885171675, 0.8958118139219222, 0.9497959839954313, 0.5525867013495501, 0.5680263727795365, 0.6876072324079898, 0.7762832990785185, 0.8642705608498813, 0.5298976451365529, 0.605447857535641, 0.9948505555852337, 0.7781071765988862, 0.5203101401015189, 0.5471855442069545, 0.9303722262905725, 0.8487271068794108, 0.5089992288929608, 0.5699395327114334, 0.605145739718695, 0.6678086186557685, 0.6884732870439316, 0.9617180925598288, 0.7279632945162432, 0.6127210742184934, 0.7815049978335249, 0.7868464525148042, 0.8765095786499839, 0.664500504370235, 0.8577437865710569, 0.6532079349161648, 0.6534916056466487, 0.7171843587449118, 0.7621912793732784, 0.572076745492104, 0.7977747209929116, 0.7647082383559652, 0.9478102769183364, 0.9772570941244937, 0.8131091269744608, 0.6436331232327142, 0.7965748232282563, 0.6577843752933865, 0.7746790823670306, 0.9370317427408532, 0.7948643667715087, 0.7477002468282741, 0.8243730847671513, 0.5974622938077707, 0.8372200656105012, 0.6555293608299542, 0.8409164608668007, 0.9839838532225667, 0.7332559960252518, 0.9291392931291063, 0.9456571252968435, 0.7932413357679133, 0.693810632981536, 0.5198212506522079, 0.6076737470680571, 0.9259256031842424, 0.6968259351426311, 0.7224277792094516, 0.675160024153632, 0.5253118336028796, 0.7379302818186566, 0.9634115033012517, 0.6187461977387153, 0.5075698238411877, 0.8304608266281814, 0.9680937184172465, 0.9216584474114582, 0.577102163584859, 0.9444654772619816, 0.6542510822903571, 0.9420931373052908, 0.7649540465762221, 0.7391290580199563, 0.7798337612716988, 0.5577399167495917, 0.5733736445912001, 0.8672435721086805, 0.6550718957452499, 0.7343787791913701, 0.8286090363881562, 0.9874391614319419, 0.6317174927286415, 0.9991818265547765, 0.8882882165082715, 0.7865034733678209, 0.9754850091083322, 0.7883052334448991, 0.6053331540391218, 0.7381300336993806, 0.5614202557288888, 0.6055179557374848, 0.8551360852576411, 0.8664296368013171, 0.5669369122418195, 0.8612613902124622, 0.9308738987091685, 0.7082305956767609, 0.9059876316512645, 0.7141225708042331, 0.5983977032912194, 0.832108200624676, 0.7102909332116345, 0.8701113270819587, 0.6172341761198135, 0.5499460005149649, 0.8217479675970876, 0.980397487524319, 0.7339616077701528, 0.8944438943149617, 0.8824476610480294, 0.9448839365945957, 0.611293609696064, 0.6202127155281614, 0.8982133628146343, 0.9959880857911522, 0.7749987208553435, 0.8404221536619295, 0.5355160001825691, 0.8312896242843753, 0.6710963564461283, 0.6757778649882356, 0.9450591609527955, 0.7960770326073398, 0.7388337694250741, 0.5097990426205785, 0.617665105190204, 0.6491148352416893, 0.6680035091881055, 0.915146896528442, 0.8526611525364447, 0.8433234599750767, 0.779861781124638, 0.7587100807600625, 0.7084898047926786, 0.7109206823340974, 0.7914737203988049, 0.8327485312652257, 0.8994487364271566, 0.9435130477429098, 0.7943053647334768, 0.6493790432720916, 0.5780312623722645, 0.8959978348428679, 0.6784904510102145, 0.9396971164367234, 0.7492180506543771, 0.8131125420733959, 0.521781354983252, 0.9750428789018397, 0.7310365674974546, 0.5993537952006589, 0.8726455896068224, 0.7819331738029656, 0.6421887465079975, 0.6674999451602143, 0.5319971037910738, 0.852022593506808, 0.5446034241601883, 0.9504448229552447, 0.8207629928044318, 0.9422319176831089, 0.9158816268975133, 0.9259598936146547, 0.8107352797786818, 0.5128802465392901, 0.5569836938081356, 0.7710003412286411, 0.6807902564653832, 0.8074504373673679, 0.8605365138324785, 0.7205481352043726, 0.7071270841127113, 0.9789630898384751, 0.572000247690236, 0.9236598670633295, 0.7289016881238359, 0.6503267593640145, 0.7248816820644711, 0.9813099299336776, 0.5250299309234707, 0.5926874889658209, 0.848866338628683, 0.9537216699727843, 0.7506749287998197, 0.7870097033219563, 0.6370012865666241, 0.6911264063172331, 0.6461537466213743, 0.5472501634129935, 0.9706748703009256, 0.9750735726021467, 0.833838398315583, 0.7870068246408313, 0.5672666412997371, 0.7621597478957183, 0.6412523950240999, 0.9533626172329719, 0.9285077025186779, 0.9085561584524972, 0.9797735405031338, 0.6527782031717836, 0.7764494743905886, 0.7340597144688839, 0.6371944941542568, 0.9303288261846399, 0.7909196434669774, 0.6101772670989659, 0.8725237343461679, 0.7771588858663292, 0.8031843697809086, 0.7166049073677778, 0.8440435183372049, 0.6231208790809557, 0.6824566738446276, 0.6249253706778888, 0.6001319052590866, 0.8423979278754339, 0.9804912799166953, 0.533352790625, 0.9955194247841975, 0.8562691265351794, 0.7159805159468932, 0.848377286181451, 0.6874202044851473, 0.5296038989284669, 0.8881984978738485, 0.6128150491015979, 0.9118226540767179, 0.9264667046169273, 0.7007533887482096, 0.9456723551848253, 0.8842081250207321, 0.6188212346050516, 0.8632155132829304, 0.7960087145580457, 0.9376249517463054, 0.657711559847133, 0.8665043783490352, 0.8213535321636006, 0.8595132628598157, 0.5290955844346499, 0.7569463835834859, 0.8595107248093607, 0.7116230681634043, 0.8019263710483158, 0.5886840501554704, 0.5853636156105402, 0.8313542593139549, 0.9195630185044495, 0.8664108518571536, 0.8072808475125368, 0.7209969240077091, 0.9042605253119455, 0.6856525843280643, 0.5789925183558848, 0.5529231707683319, 0.6455244251596519, 0.6309951453562814, 0.8484892500188466, 0.5717063598026898, 0.543578485924304, 0.6482772987788462, 0.8808136933791948, 0.5500201867550136, 0.7162674501989618, 0.8446995144144044, 0.6258657921604354, 0.7889274548192431, 0.6926220623884864, 0.5869117708787261, 0.6049806958837627, 0.5544634417312186, 0.6803917209752559, 0.5329256947938479, 0.6251831028765815, 0.9686255487476989, 0.6693161272515193, 0.6018045002391936, 0.6136470647073029, 0.7006761698417143, 0.9560500202518736, 0.9082327996500732, 0.7149784609158061, 0.8535215404317731, 0.5762375704318814, 0.7295963980633104, 0.8164091337431321, 0.9298864868947626, 0.5719543554507007, 0.7245213540635813, 0.6397133863695404, 0.5113598148484136, 0.9796105495284875, 0.755777012760537, 0.6441523644223616, 0.5211088161337902, 0.7823077186881309, 0.6014077753033269, 0.5174382185526643, 0.7794087005265369, 0.8158853329183986, 0.8051218807143782, 0.8344496628081393, 0.7799038204848311, 0.7007343849256948, 0.5789651399775446, 0.9186939121254118, 0.5800649224972613, 0.997940792911789, 0.5076154260060124, 0.9114643288322005, 0.6168902101547552, 0.6879034339784261, 0.7885181098875279, 0.8478032667829125, 0.8471035604429518, 0.7830964701891708, 0.5834035994473403, 0.5912846408862826, 0.6126327910445984, 0.7113104378192491, 0.7623346088368388, 0.9544598356468286, 0.6368023913392699, 0.7839299049080267, 0.5157603849254793, 0.7707112601657498, 0.6200738627250632, 0.6860756384291924, 0.6971147194176204, 0.8992718498492973, 0.6200716542226198, 0.8235958992734276, 0.7105513978051694, 0.8308607940147007, 0.5009449724397756, 0.8404152443022201, 0.9271554334298377, 0.7615001160541264, 0.665795427599405, 0.7576434921462787, 0.677666528692124, 0.6153544761835656, 0.6599806758984768, 0.5549028258454989, 0.537087034381724, 0.9059423590846216, 0.6364919486632519, 0.8535692674336279, 0.8194822022406671, 0.732703036845648, 0.6408959353882342, 0.979134649001633, 0.8446012706391948, 0.727537959751966, 0.8992071757369342, 0.773033991078701, 0.6912035636680639, 0.6678239513620563, 0.579112166076426, 0.5246311471905317, 0.9247041272231906, 0.6219166314420218, 0.8966048768284001, 0.753449396196942, 0.825216094887963, 0.8966924548860679, 0.772027133798461, 0.6305688871119586, 0.6138557318036646, 0.8377193575618891, 0.575220792061786, 0.6811658955620439, 0.8063325675854576, 0.6024894409737116, 0.8321565863137921, 0.5853723971011682, 0.8211784462497813, 0.5621405057904378, 0.8060243555198678, 0.7615044568558158, 0.749418615771406, 0.9882220842117067, 0.5473214405997162, 0.9394105144036239, 0.9940938074739658, 0.844247121298296, 0.7104797988984898, 0.6194320807267331, 0.9744735968605656, 0.7159678852753074, 0.686481606445342, 0.7309094290988748, 0.7697582007653805, 0.9641044829530394, 0.6495325860132362, 0.8477250158522804, 0.8031072821919533, 0.733212344797883, 0.7040279272680836, 0.8333788219820861, 0.7106192911484892, 0.6054341860385409, 0.6645145929803637, 0.6749436215604394, 0.7342329016647018, 0.7487611514291992, 0.7341853173193882, 0.8319120463629286, 0.8471065816777889, 0.5450602752088898, 0.588963920357326, 0.9634946038397014, 0.5275860021549643, 0.6131238617233276, 0.9026521979716229, 0.8649774042461855, 0.6254856567851594, 0.587585401841259, 0.8702427455852668, 0.9734038850652624, 0.6907389234247403, 0.6742848406792503, 0.8892310557838489, 0.7005429100889178, 0.6323093396099213, 0.6629025660883385, 0.8097239561486289, 0.827971540355219, 0.9483600549325943, 0.7096273182420537, 0.6186179143139622, 0.869593638141843, 0.589465010335807, 0.8437662173288232, 0.6860581451873626, 0.6997440197245475, 0.7950864998630973, 0.6002173651070569, 0.5072396491933654, 0.5687157981012682, 0.8328051767954174, 0.6151009718360505, 0.5131032541978355, 0.9547384677445773, 0.8628382300004067, 0.8573698257063507, 0.5968707959804591, 0.9111539725677904, 0.6952103207359548, 0.9668626553945241, 0.6951090243475937, 0.7881437296558504, 0.6886910010927544, 0.9240602200264298, 0.5110176933860936, 0.6298130729260677, 0.7829937448417085, 0.6441845485354231, 0.8963213253725464, 0.9166886615283922, 0.6075291794609559, 0.8028977059410873, 0.9171693181925586, 0.6477863898916207, 0.5471484145923962, 0.6302032521165666, 0.6683021898564758, 0.7340124672781195, 0.5426796906112303, 0.8757562100828133, 0.8171621627299078, 0.8365153218732406, 0.8609893530223891, 0.9707393155196433, 0.7666186376531046, 0.9965525256324854, 0.5147487497819987, 0.9311713013883948, 0.7119007450065112, 0.9213851603626304, 0.5340260511161686, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0, 50000.0}; int h_B[]= { 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 97, 99, 101, 103, 106, 108, 111, 113, 117, 119, 121, 123, 125, 127, 129, 131, 133, 135, 137, 139, 142, 144, 146, 148, 150, 152, 158, 160, 163, 165, 168, 170, 173, 175, 177, 179, 181, 183, 185, 187, 189, 191, 199, 201, 204, 206, 209, 211, 198, 116, 203, 198, 116, 198, 116, 203, 193, 215, 116, 156, 156, 193, 196, 196, 198, 215, 587, 589, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 162, 157, 162, 157, 167, 141, 105, 141, 110, 213, 208, 162, 157, 162, 157, 162, 157, 167, 141, 110, 105, 777, 784, 203, 213, 208, 162, 157, 141, 110, 105, 213, 208, 213, 208, 787, 162, 157, 141, 771, 162, 157, 172, 777, 208, 162, 157, 141, 771, 162, 157, 172, 777, 213, 162, 157, 162, 157, 162, 157, 167, 141, 110, 105, 162, 157, 172, 777, 213, 208, 162, 157, 162, 157, 167, 141, 105, 141, 110, 213, 208, 162, 157, 162, 157, 167, 141, 748, 162, 157, 172, 777, 203, 213, 208, 162, 157, 162, 157, 162, 157, 167, 141, 110, 105, 162, 157, 172, 110, 105, 213, 208, 213, 208, 162, 157, 141, 110, 105, 213, 208, 213, 208, 162, 157, 162, 157, 162, 157, 167, 141, 110, 105, 162, 157, 172, 777, 213, 208, 162, 157, 162, 157, 162, 157, 167, 141, 771, 162, 157, 162, 157, 167, 172, 777, 203, 213, 208, 203, 213, 208, 798, 786, 798, 786, 798, 799, 798, 799, 798, 799, 798, 799, 798, 799, 798, 791, 799, 799, 799, 798, 799, 798, 7, 8, 9, 10, 11, 12, 13, 14, 15, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 799, 798, 799, 798, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 9, 10, 11, 12, 13, 14, 15, 1008, 1010, 1017, 1019, 1021, 1023, 1027, 1031, 1033, 1036, 1038, 1040, 1042, 1046, 1051, 1055, 1060, 1062, 1064, 1068, 1070, 1074, 1076, 1078, 1085, 1087, 1089, 1094, 1099, 1101, 1103, 1105, 1109, 1111, 1114, 1116, 1118, 1120, 1123, 1125, 1127, 1129, 1131, 1133, 1137, 1139, 1143, 1145, 1147, 1149, 1154, 1156, 1162, 1165, 1016, 1014, 1029, 1030, 1164, 1168, 1170, 1153, 1161, 1172, 1173, 1164, 1174, 1175, 1045, 1049, 1164, 801, 1054, 1058, 1164, 801, 1073, 1180, 1182, 1084, 1082, 1093, 1097, 1098, 1186, 1142, 1153, 1160, 1161, 1164, 10, 11, 12, 13, 14, 15, 1012, 796, 795, 1254, 1255, 797, 1025, 796, 795, 1206, 1256, 1257, 797, 1258, 1151, 796, 795, 1209, 792, 793, 1261, 1262, 1265, 1151, 796, 795, 1268, 1158, 796, 795, 1269, 1270, 1271, 1151, 796, 795, 1272, 1158, 796, 795, 1273, 1274, 1275, 1066, 796, 795, 1219, 1158, 796, 795, 1276, 797, 1080, 796, 795, 1279, 1280, 797, 1091, 796, 795, 1281, 1158, 796, 795, 1282, 1283, 797, 1107, 796, 795, 1232, 1158, 796, 795, 1234, 797, 801, 1151, 796, 795, 1238, 792, 793, 1135, 796, 795, 1244, 1158, 796, 795, 1285, 797, 1151, 796, 795, 1286, 1158, 796, 795, 1287, 1288, 797, 1289, 801, 9, 10, 11, 12, 13, 14, 15, 1296, 1297, 1298, 1299, 1301, 1302, 1303, 1304, 1305, 1308, 1310, 1311, 1312, 1313, 1314, 1315, 1317, 1318, 1319, 1320, 1321, 1323, 1324, 1325, 1327, 1329, 1330, 1331, 1333, 1334, 1335, 1337, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1347, 1348, 1349, 1350, 1351, 1353, 1354, 1355, 1356, 1358, 1359, 1360, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1388, 1389, 1390, 1391, 1393, 1394, 1395, 1397, 1398, 1399, 1400, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1408, 1413, 1418, 1424, 1425, 1426, 1429, 1432, 1433, 1436, 1439, 1440, 1444, 1448, 1453, 1456, 1460, 1464, 1470, 1476, 1480, 1484, 1487, 1490, 1492, 1412, 1493, 1417, 1423, 1422, 1493, 1447, 1452, 1459, 1469, 1468, 1475, 1474, 1493, 1483, 8, 9, 10, 11, 12, 13, 14, 15, 1504, 1505, 1506, 1509, 1510, 1512, 1513, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1529, 1530, 1531, 1532, 1533, 1475, 1474, 1328, 1338, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1475, 1474, 1542, 1543, 1493, 1491, 10, 11, 12, 13, 14, 15, 1396, 1411, 1306, 1416, 1572, 1396, 1421, 1574, 1396, 1316, 1576, 1577, 1326, 1322, 1578, 1336, 1332, 1579, 1346, 1443, 1580, 1396, 1451, 1361, 1357, 1467, 1463, 1584, 1586, 1396, 1473, 1588, 1589, 1387, 1479, 1590, 1396, 1392, 1592, 1593, 8, 9, 10, 11, 12, 13, 14, 15, 1600, 1601, 1602, 1603, 1605, 1606, 1608, 1609, 1610, 1612, 1613, 1615, 1616, 1618, 1619, 1621, 1622, 1623, 1624, 1625, 1626, 1629, 1630, 1631, 1633, 1634, 1636, 1637, 1638, 13, 14, 15, 1648, 1650, 1652, 1654, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1672, 1674, 13, 14, 15, 1628, 1676, 1583, 1617, 1620, 1571, 1604, 1656, 1582, 1607, 1614, 1627, 1635, 1671, 14, 15, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 14, 15, 1712, 1714, 1716, 1718, 1720, 1722, 1724, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1728, 1730, 1732, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1744, 1746, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1760, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 802, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1792, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; int h_C[]= { 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 95, 98, 100, 102, 104, 107, 109, 112, 114, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 143, 145, 147, 149, 151, 153, 159, 161, 164, 166, 169, 171, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 200, 202, 205, 207, 210, 212, 115, 115, 194, 115, 115, 115, 197, 195, 96, 96, 115, 154, 155, 214, 194, 195, 197, 214, 588, 590, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 609, 611, 613, 615, 617, 619, 621, 623, 625, 627, 629, 631, 633, 635, 637, 639, 641, 643, 645, 647, 649, 651, 653, 655, 657, 659, 661, 663, 665, 667, 669, 671, 673, 675, 677, 679, 681, 683, 685, 687, 689, 691, 693, 695, 697, 699, 701, 703, 238, 239, 250, 253, 254, 289, 334, 335, 343, 346, 363, 375, 376, 385, 386, 387, 388, 392, 723, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 765, 746, 773, 767, 768, 742, 736, 744, 745, 780, 779, 765, 764, 773, 766, 773, 767, 768, 760, 755, 737, 763, 785, 778, 780, 779, 765, 753, 760, 755, 754, 757, 756, 759, 758, 788, 765, 738, 769, 770, 773, 772, 775, 776, 782, 765, 739, 769, 770, 773, 772, 775, 776, 783, 765, 764, 773, 766, 773, 767, 768, 740, 762, 741, 773, 772, 775, 763, 780, 779, 765, 746, 773, 767, 768, 742, 743, 744, 745, 780, 779, 765, 746, 773, 767, 768, 747, 770, 773, 772, 775, 776, 778, 780, 749, 765, 764, 773, 766, 773, 767, 768, 760, 762, 750, 773, 772, 775, 752, 751, 780, 779, 783, 782, 765, 753, 760, 755, 754, 757, 756, 759, 758, 765, 764, 773, 766, 773, 767, 768, 760, 762, 761, 773, 772, 775, 763, 780, 779, 765, 764, 773, 766, 773, 767, 768, 769, 770, 773, 772, 773, 773, 774, 775, 776, 778, 780, 779, 781, 783, 782, 790, 790, 790, 790, 790, 790, 790, 790, 790, 789, 789, 789, 789, 790, 794, 790, 790, 794, 800, 800, 800, 800, 7, 8, 9, 10, 11, 12, 13, 14, 15, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 336, 337, 338, 339, 340, 341, 342, 344, 345, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 377, 378, 379, 380, 381, 382, 383, 384, 389, 390, 391, 398, 412, 413, 415, 416, 851, 851, 851, 851, 434, 435, 446, 447, 457, 458, 460, 461, 467, 488, 490, 491, 507, 517, 518, 521, 522, 9, 10, 11, 12, 13, 14, 15, 1009, 1011, 1018, 1020, 1022, 1024, 1028, 1032, 1034, 1037, 1039, 1041, 1043, 1047, 1052, 1056, 1061, 1063, 1065, 1069, 1071, 1075, 1077, 1079, 1086, 1088, 1090, 1095, 1100, 1102, 1104, 1106, 1110, 1112, 1115, 1117, 1119, 1121, 1124, 1126, 1128, 1130, 1132, 1134, 1138, 1140, 1144, 1146, 1148, 1150, 1155, 1157, 1163, 1166, 1015, 1013, 1159, 838, 851, 1169, 1171, 1122, 851, 420, 421, 851, 423, 424, 1044, 1048, 790, 1050, 1053, 1057, 790, 1059, 1072, 1181, 1183, 1083, 1081, 1092, 1096, 790, 1187, 1141, 1152, 1159, 800, 800, 10, 11, 12, 13, 14, 15, 1201, 1248, 1200, 396, 397, 1202, 1205, 1204, 1203, 1026, 404, 405, 1207, 407, 1249, 1248, 1208, 1035, 1210, 1211, 418, 419, 422, 1249, 1248, 1212, 428, 1251, 1251, 1213, 432, 433, 436, 1249, 1248, 1214, 440, 1251, 1251, 1215, 444, 445, 448, 1218, 1217, 1216, 1067, 1251, 1251, 1220, 456, 1221, 1223, 1248, 1222, 465, 466, 1224, 1226, 1248, 1225, 472, 1251, 1251, 1227, 476, 477, 1228, 1231, 1230, 1229, 1108, 1251, 1251, 1233, 1113, 1235, 1236, 1249, 1248, 1237, 1122, 1239, 1240, 1243, 1242, 1241, 1136, 1251, 1251, 1245, 505, 1246, 1249, 1248, 1247, 511, 1251, 1251, 1250, 515, 516, 1252, 520, 1253, 9, 10, 11, 12, 13, 14, 15, 393, 394, 395, 1300, 399, 400, 401, 402, 403, 406, 408, 409, 410, 411, 414, 417, 1263, 1266, 425, 426, 427, 429, 430, 431, 1176, 437, 438, 439, 441, 442, 443, 1178, 449, 450, 451, 452, 453, 454, 455, 459, 462, 463, 464, 1352, 468, 469, 470, 471, 473, 474, 475, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 489, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 506, 508, 509, 510, 512, 513, 514, 1189, 519, 1191, 523, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1409, 1414, 1419, 1264, 1267, 1427, 1430, 1177, 1434, 1437, 1179, 1441, 1445, 1449, 1454, 1457, 1461, 1465, 1471, 1477, 1481, 1485, 1488, 1190, 1192, 1167, 1309, 1307, 1260, 1259, 1278, 1277, 1184, 1362, 1185, 1185, 1284, 1284, 1188, 1188, 8, 9, 10, 11, 12, 13, 14, 15, 1410, 1415, 1420, 1428, 1431, 1435, 1438, 1442, 1446, 1450, 1455, 1458, 1462, 1466, 1472, 1478, 1482, 1486, 1489, 526, 529, 530, 533, 534, 1508, 1507, 1511, 1514, 547, 548, 551, 554, 557, 558, 559, 560, 1528, 1527, 567, 568, 1528, 1527, 10, 11, 12, 13, 14, 15, 1570, 1552, 1570, 1553, 1573, 1570, 1554, 1575, 1570, 1566, 537, 538, 1556, 1555, 541, 1558, 1557, 544, 1560, 1559, 1581, 1570, 1561, 1563, 1562, 1565, 1564, 1585, 1587, 1570, 1566, 563, 564, 1568, 1567, 1591, 1570, 1569, 571, 572, 8, 9, 10, 11, 12, 13, 14, 15, 524, 525, 527, 528, 531, 532, 535, 536, 1611, 539, 540, 542, 543, 545, 546, 549, 550, 552, 553, 555, 556, 561, 562, 1632, 565, 566, 569, 570, 1639, 13, 14, 15, 1649, 1651, 1653, 1655, 1658, 1660, 1662, 1664, 1666, 1668, 1670, 1673, 1675, 13, 14, 15, 1690, 1692, 1688, 1685, 1686, 1680, 1681, 1683, 1687, 1682, 1684, 1689, 1691, 1690, 14, 15, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 14, 15, 1713, 1715, 1717, 1719, 1721, 1723, 1725, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1729, 1731, 1733, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1745, 1734, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1761, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1776, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 591, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; bool h_Op[]= { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; #define THREADS_PER_BLOCK 16 #define BLOCKS_PER_GRID 1 #define SIZE_OF_IN 608 #define SIZE_OF_AC 1216 __device__ void ac(float *A, const int *B, const int *C, const bool *Op, int n_iter) { int i= blockDim.x * blockIdx.x + threadIdx.x; __shared__ float R[114*THREADS_PER_BLOCK]; const int t= THREADS_PER_BLOCK; __shared__ float final; final=0; R[i + 0*t] = A[i + 0*t]; R[i + 1*t] = A[i + 1*t]; R[i + 2*t] = A[i + 2*t]; R[i + 3*t] = A[i + 3*t]; R[i + 4*t] = A[i + 4*t]; R[i + 5*t] = A[i + 5*t]; R[i + 6*t] = A[i + 6*t]; R[i + 7*t] = A[i + 7*t]; R[i + 8*t] = A[i + 8*t]; R[i + 9*t] = A[i + 9*t]; R[i + 10*t] = A[i + 10*t]; R[i + 11*t] = A[i + 11*t]; R[i + 12*t] = A[i + 12*t]; R[i + 13*t] = A[i + 13*t]; R[i + 14*t] = A[i + 14*t]; R[i + 15*t] = A[i + 15*t]; R[i + 16*t] = A[i + 16*t]; R[i + 17*t] = A[i + 17*t]; R[i + 18*t] = A[i + 18*t]; R[i + 19*t] = A[i + 19*t]; R[i + 20*t] = A[i + 20*t]; R[i + 21*t] = A[i + 21*t]; R[i + 22*t] = A[i + 22*t]; R[i + 23*t] = A[i + 23*t]; R[i + 24*t] = A[i + 24*t]; R[i + 25*t] = A[i + 25*t]; R[i + 26*t] = A[i + 26*t]; R[i + 27*t] = A[i + 27*t]; R[i + 28*t] = A[i + 28*t]; R[i + 29*t] = A[i + 29*t]; R[i + 30*t] = A[i + 30*t]; R[i + 31*t] = A[i + 31*t]; R[i + 32*t] = A[i + 32*t]; R[i + 33*t] = A[i + 33*t]; R[i + 34*t] = A[i + 34*t]; R[i + 35*t] = A[i + 35*t]; R[i + 36*t] = A[i + 36*t]; R[i + 37*t] = A[i + 37*t]; __syncthreads(); for (int iter=0; iter< n_iter; iter++) { R[i + 38*t] = Op[i + 0*t] ? R[B[i + 0*t]] * R[C[i + 0*t]] : R[B[i + 0*t]] + R[C[i + 0*t]]; R[i + 39*t] = Op[i + 1*t] ? R[B[i + 1*t]] * R[C[i + 1*t]] : R[B[i + 1*t]] + R[C[i + 1*t]]; R[i + 40*t] = Op[i + 2*t] ? R[B[i + 2*t]] * R[C[i + 2*t]] : R[B[i + 2*t]] + R[C[i + 2*t]]; R[i + 41*t] = Op[i + 3*t] ? R[B[i + 3*t]] * R[C[i + 3*t]] : R[B[i + 3*t]] + R[C[i + 3*t]]; R[i + 42*t] = Op[i + 4*t] ? R[B[i + 4*t]] * R[C[i + 4*t]] : R[B[i + 4*t]] + R[C[i + 4*t]]; R[i + 43*t] = Op[i + 5*t] ? R[B[i + 5*t]] * R[C[i + 5*t]] : R[B[i + 5*t]] + R[C[i + 5*t]]; R[i + 44*t] = Op[i + 6*t] ? R[B[i + 6*t]] * R[C[i + 6*t]] : R[B[i + 6*t]] + R[C[i + 6*t]]; R[i + 45*t] = Op[i + 7*t] ? R[B[i + 7*t]] * R[C[i + 7*t]] : R[B[i + 7*t]] + R[C[i + 7*t]]; __syncthreads(); R[i + 46*t] = Op[i + 8*t] ? R[B[i + 8*t]] * R[C[i + 8*t]] : R[B[i + 8*t]] + R[C[i + 8*t]]; R[i + 47*t] = Op[i + 9*t] ? R[B[i + 9*t]] * R[C[i + 9*t]] : R[B[i + 9*t]] + R[C[i + 9*t]]; R[i + 48*t] = Op[i + 10*t] ? R[B[i + 10*t]] * R[C[i + 10*t]] : R[B[i + 10*t]] + R[C[i + 10*t]]; R[i + 49*t] = Op[i + 11*t] ? R[B[i + 11*t]] * R[C[i + 11*t]] : R[B[i + 11*t]] + R[C[i + 11*t]]; R[i + 50*t] = Op[i + 12*t] ? R[B[i + 12*t]] * R[C[i + 12*t]] : R[B[i + 12*t]] + R[C[i + 12*t]]; __syncthreads(); R[i + 51*t] = Op[i + 13*t] ? R[B[i + 13*t]] * R[C[i + 13*t]] : R[B[i + 13*t]] + R[C[i + 13*t]]; R[i + 52*t] = Op[i + 14*t] ? R[B[i + 14*t]] * R[C[i + 14*t]] : R[B[i + 14*t]] + R[C[i + 14*t]]; R[i + 53*t] = Op[i + 15*t] ? R[B[i + 15*t]] * R[C[i + 15*t]] : R[B[i + 15*t]] + R[C[i + 15*t]]; R[i + 54*t] = Op[i + 16*t] ? R[B[i + 16*t]] * R[C[i + 16*t]] : R[B[i + 16*t]] + R[C[i + 16*t]]; R[i + 55*t] = Op[i + 17*t] ? R[B[i + 17*t]] * R[C[i + 17*t]] : R[B[i + 17*t]] + R[C[i + 17*t]]; R[i + 56*t] = Op[i + 18*t] ? R[B[i + 18*t]] * R[C[i + 18*t]] : R[B[i + 18*t]] + R[C[i + 18*t]]; R[i + 57*t] = Op[i + 19*t] ? R[B[i + 19*t]] * R[C[i + 19*t]] : R[B[i + 19*t]] + R[C[i + 19*t]]; R[i + 58*t] = Op[i + 20*t] ? R[B[i + 20*t]] * R[C[i + 20*t]] : R[B[i + 20*t]] + R[C[i + 20*t]]; R[i + 59*t] = Op[i + 21*t] ? R[B[i + 21*t]] * R[C[i + 21*t]] : R[B[i + 21*t]] + R[C[i + 21*t]]; R[i + 60*t] = Op[i + 22*t] ? R[B[i + 22*t]] * R[C[i + 22*t]] : R[B[i + 22*t]] + R[C[i + 22*t]]; R[i + 61*t] = Op[i + 23*t] ? R[B[i + 23*t]] * R[C[i + 23*t]] : R[B[i + 23*t]] + R[C[i + 23*t]]; R[i + 62*t] = Op[i + 24*t] ? R[B[i + 24*t]] * R[C[i + 24*t]] : R[B[i + 24*t]] + R[C[i + 24*t]]; __syncthreads(); R[i + 63*t] = Op[i + 25*t] ? R[B[i + 25*t]] * R[C[i + 25*t]] : R[B[i + 25*t]] + R[C[i + 25*t]]; R[i + 64*t] = Op[i + 26*t] ? R[B[i + 26*t]] * R[C[i + 26*t]] : R[B[i + 26*t]] + R[C[i + 26*t]]; R[i + 65*t] = Op[i + 27*t] ? R[B[i + 27*t]] * R[C[i + 27*t]] : R[B[i + 27*t]] + R[C[i + 27*t]]; R[i + 66*t] = Op[i + 28*t] ? R[B[i + 28*t]] * R[C[i + 28*t]] : R[B[i + 28*t]] + R[C[i + 28*t]]; R[i + 67*t] = Op[i + 29*t] ? R[B[i + 29*t]] * R[C[i + 29*t]] : R[B[i + 29*t]] + R[C[i + 29*t]]; R[i + 68*t] = Op[i + 30*t] ? R[B[i + 30*t]] * R[C[i + 30*t]] : R[B[i + 30*t]] + R[C[i + 30*t]]; R[i + 69*t] = Op[i + 31*t] ? R[B[i + 31*t]] * R[C[i + 31*t]] : R[B[i + 31*t]] + R[C[i + 31*t]]; R[i + 70*t] = Op[i + 32*t] ? R[B[i + 32*t]] * R[C[i + 32*t]] : R[B[i + 32*t]] + R[C[i + 32*t]]; R[i + 71*t] = Op[i + 33*t] ? R[B[i + 33*t]] * R[C[i + 33*t]] : R[B[i + 33*t]] + R[C[i + 33*t]]; R[i + 72*t] = Op[i + 34*t] ? R[B[i + 34*t]] * R[C[i + 34*t]] : R[B[i + 34*t]] + R[C[i + 34*t]]; R[i + 73*t] = Op[i + 35*t] ? R[B[i + 35*t]] * R[C[i + 35*t]] : R[B[i + 35*t]] + R[C[i + 35*t]]; R[i + 74*t] = Op[i + 36*t] ? R[B[i + 36*t]] * R[C[i + 36*t]] : R[B[i + 36*t]] + R[C[i + 36*t]]; __syncthreads(); R[i + 75*t] = Op[i + 37*t] ? R[B[i + 37*t]] * R[C[i + 37*t]] : R[B[i + 37*t]] + R[C[i + 37*t]]; R[i + 76*t] = Op[i + 38*t] ? R[B[i + 38*t]] * R[C[i + 38*t]] : R[B[i + 38*t]] + R[C[i + 38*t]]; R[i + 77*t] = Op[i + 39*t] ? R[B[i + 39*t]] * R[C[i + 39*t]] : R[B[i + 39*t]] + R[C[i + 39*t]]; R[i + 78*t] = Op[i + 40*t] ? R[B[i + 40*t]] * R[C[i + 40*t]] : R[B[i + 40*t]] + R[C[i + 40*t]]; R[i + 79*t] = Op[i + 41*t] ? R[B[i + 41*t]] * R[C[i + 41*t]] : R[B[i + 41*t]] + R[C[i + 41*t]]; R[i + 80*t] = Op[i + 42*t] ? R[B[i + 42*t]] * R[C[i + 42*t]] : R[B[i + 42*t]] + R[C[i + 42*t]]; __syncthreads(); R[i + 81*t] = Op[i + 43*t] ? R[B[i + 43*t]] * R[C[i + 43*t]] : R[B[i + 43*t]] + R[C[i + 43*t]]; R[i + 82*t] = Op[i + 44*t] ? R[B[i + 44*t]] * R[C[i + 44*t]] : R[B[i + 44*t]] + R[C[i + 44*t]]; R[i + 83*t] = Op[i + 45*t] ? R[B[i + 45*t]] * R[C[i + 45*t]] : R[B[i + 45*t]] + R[C[i + 45*t]]; R[i + 84*t] = Op[i + 46*t] ? R[B[i + 46*t]] * R[C[i + 46*t]] : R[B[i + 46*t]] + R[C[i + 46*t]]; R[i + 85*t] = Op[i + 47*t] ? R[B[i + 47*t]] * R[C[i + 47*t]] : R[B[i + 47*t]] + R[C[i + 47*t]]; R[i + 86*t] = Op[i + 48*t] ? R[B[i + 48*t]] * R[C[i + 48*t]] : R[B[i + 48*t]] + R[C[i + 48*t]]; R[i + 87*t] = Op[i + 49*t] ? R[B[i + 49*t]] * R[C[i + 49*t]] : R[B[i + 49*t]] + R[C[i + 49*t]]; __syncthreads(); R[i + 88*t] = Op[i + 50*t] ? R[B[i + 50*t]] * R[C[i + 50*t]] : R[B[i + 50*t]] + R[C[i + 50*t]]; R[i + 89*t] = Op[i + 51*t] ? R[B[i + 51*t]] * R[C[i + 51*t]] : R[B[i + 51*t]] + R[C[i + 51*t]]; R[i + 90*t] = Op[i + 52*t] ? R[B[i + 52*t]] * R[C[i + 52*t]] : R[B[i + 52*t]] + R[C[i + 52*t]]; R[i + 91*t] = Op[i + 53*t] ? R[B[i + 53*t]] * R[C[i + 53*t]] : R[B[i + 53*t]] + R[C[i + 53*t]]; R[i + 92*t] = Op[i + 54*t] ? R[B[i + 54*t]] * R[C[i + 54*t]] : R[B[i + 54*t]] + R[C[i + 54*t]]; R[i + 93*t] = Op[i + 55*t] ? R[B[i + 55*t]] * R[C[i + 55*t]] : R[B[i + 55*t]] + R[C[i + 55*t]]; __syncthreads(); R[i + 94*t] = Op[i + 56*t] ? R[B[i + 56*t]] * R[C[i + 56*t]] : R[B[i + 56*t]] + R[C[i + 56*t]]; R[i + 95*t] = Op[i + 57*t] ? R[B[i + 57*t]] * R[C[i + 57*t]] : R[B[i + 57*t]] + R[C[i + 57*t]]; R[i + 96*t] = Op[i + 58*t] ? R[B[i + 58*t]] * R[C[i + 58*t]] : R[B[i + 58*t]] + R[C[i + 58*t]]; __syncthreads(); R[i + 97*t] = Op[i + 59*t] ? R[B[i + 59*t]] * R[C[i + 59*t]] : R[B[i + 59*t]] + R[C[i + 59*t]]; R[i + 98*t] = Op[i + 60*t] ? R[B[i + 60*t]] * R[C[i + 60*t]] : R[B[i + 60*t]] + R[C[i + 60*t]]; R[i + 99*t] = Op[i + 61*t] ? R[B[i + 61*t]] * R[C[i + 61*t]] : R[B[i + 61*t]] + R[C[i + 61*t]]; __syncthreads(); R[i + 100*t] = Op[i + 62*t] ? R[B[i + 62*t]] * R[C[i + 62*t]] : R[B[i + 62*t]] + R[C[i + 62*t]]; R[i + 101*t] = Op[i + 63*t] ? R[B[i + 63*t]] * R[C[i + 63*t]] : R[B[i + 63*t]] + R[C[i + 63*t]]; R[i + 102*t] = Op[i + 64*t] ? R[B[i + 64*t]] * R[C[i + 64*t]] : R[B[i + 64*t]] + R[C[i + 64*t]]; __syncthreads(); R[i + 103*t] = Op[i + 65*t] ? R[B[i + 65*t]] * R[C[i + 65*t]] : R[B[i + 65*t]] + R[C[i + 65*t]]; R[i + 104*t] = Op[i + 66*t] ? R[B[i + 66*t]] * R[C[i + 66*t]] : R[B[i + 66*t]] + R[C[i + 66*t]]; __syncthreads(); R[i + 105*t] = Op[i + 67*t] ? R[B[i + 67*t]] * R[C[i + 67*t]] : R[B[i + 67*t]] + R[C[i + 67*t]]; __syncthreads(); R[i + 106*t] = Op[i + 68*t] ? R[B[i + 68*t]] * R[C[i + 68*t]] : R[B[i + 68*t]] + R[C[i + 68*t]]; __syncthreads(); R[i + 107*t] = Op[i + 69*t] ? R[B[i + 69*t]] * R[C[i + 69*t]] : R[B[i + 69*t]] + R[C[i + 69*t]]; __syncthreads(); R[i + 108*t] = Op[i + 70*t] ? R[B[i + 70*t]] * R[C[i + 70*t]] : R[B[i + 70*t]] + R[C[i + 70*t]]; __syncthreads(); R[i + 109*t] = Op[i + 71*t] ? R[B[i + 71*t]] * R[C[i + 71*t]] : R[B[i + 71*t]] + R[C[i + 71*t]]; __syncthreads(); R[i + 110*t] = Op[i + 72*t] ? R[B[i + 72*t]] * R[C[i + 72*t]] : R[B[i + 72*t]] + R[C[i + 72*t]]; __syncthreads(); R[i + 111*t] = Op[i + 73*t] ? R[B[i + 73*t]] * R[C[i + 73*t]] : R[B[i + 73*t]] + R[C[i + 73*t]]; __syncthreads(); R[i + 112*t] = Op[i + 74*t] ? R[B[i + 74*t]] * R[C[i + 74*t]] : R[B[i + 74*t]] + R[C[i + 74*t]]; __syncthreads(); R[i + 113*t] = Op[i + 75*t] ? R[B[i + 75*t]] * R[C[i + 75*t]] : R[B[i + 75*t]] + R[C[i + 75*t]]; if (i==0) { final += R[113*t]; } __syncthreads(); } if (i==0) { A[0]= final;} }
19,430
#include "includes.h" __global__ void set_with_value_util_kernel( float4 * __restrict buf, float v, int elem_count) { int elem_id = blockDim.x * blockIdx.x + threadIdx.x; if (elem_id < elem_count) { float4 val; val.x = v; val.y = v; val.z = v; val.w = v; buf[elem_id] = val; } }
19,431
//===================================================================== // MAIN FUNCTION //===================================================================== void kernel_fin(float *initvalu, int initvalu_offset_ecc, int initvalu_offset_Dyad, int initvalu_offset_SL, int initvalu_offset_Cyt, float *parameter, float *finavalu, float JCaDyad, float JCaSL, float JCaCyt) { //===================================================================== // VARIABLES //===================================================================== // decoded input parameters float BtotDyad; // float CaMKIItotDyad; // // compute variables float Vmyo; // [L] float Vdyad; // [L] float VSL; // [L] // float kDyadSL; // [L/msec] float kSLmyo; // [L/msec] float k0Boff; // [s^-1] float k0Bon; // [uM^-1 s^-1] kon = koff/Kd float k2Boff; // [s^-1] float k2Bon; // [uM^-1 s^-1] // float k4Boff; // [s^-1] float k4Bon; // [uM^-1 s^-1] float CaMtotDyad; float Bdyad; // [uM dyad] float J_cam_dyadSL; // [uM/msec dyad] float J_ca2cam_dyadSL; // [uM/msec dyad] float J_ca4cam_dyadSL; // [uM/msec dyad] float J_cam_SLmyo; // [umol/msec] float J_ca2cam_SLmyo; // [umol/msec] float J_ca4cam_SLmyo; // [umol/msec] //===================================================================== // COMPUTATION //===================================================================== // decoded input parameters BtotDyad = parameter[2]; // CaMKIItotDyad = parameter[3]; // // set variables Vmyo = 2.1454e-11; // [L] Vdyad = 1.7790e-14; // [L] VSL = 6.6013e-13; // [L] // kDyadSL = 3.6363e-16; // [L/msec] kSLmyo = 8.587e-15; // [L/msec] k0Boff = 0.0014; // [s^-1] k0Bon = k0Boff / 0.2; // [uM^-1 s^-1] kon = koff/Kd k2Boff = k0Boff / 100; // [s^-1] k2Bon = k0Bon; // [uM^-1 s^-1] // k4Boff = k2Boff; // [s^-1] k4Bon = k0Bon; // [uM^-1 s^-1] // ADJUST ECC incorporate Ca buffering from CaM, convert JCaCyt from uM/msec to mM/msec finavalu[initvalu_offset_ecc + 35] = finavalu[initvalu_offset_ecc + 35] + 1e-3 * JCaDyad; finavalu[initvalu_offset_ecc + 36] = finavalu[initvalu_offset_ecc + 36] + 1e-3 * JCaSL; finavalu[initvalu_offset_ecc + 37] = finavalu[initvalu_offset_ecc + 37] + 1e-3 * JCaCyt; // incorporate CaM diffusion between compartments CaMtotDyad = initvalu[initvalu_offset_Dyad + 0] + initvalu[initvalu_offset_Dyad + 1] + initvalu[initvalu_offset_Dyad + 2] + initvalu[initvalu_offset_Dyad + 3] + initvalu[initvalu_offset_Dyad + 4] + initvalu[initvalu_offset_Dyad + 5] + CaMKIItotDyad * (initvalu[initvalu_offset_Dyad + 6] + initvalu[initvalu_offset_Dyad + 7] + initvalu[initvalu_offset_Dyad + 8] + initvalu[initvalu_offset_Dyad + 9]) + initvalu[initvalu_offset_Dyad + 12] + initvalu[initvalu_offset_Dyad + 13] + initvalu[initvalu_offset_Dyad + 14]; Bdyad = BtotDyad - CaMtotDyad; // [uM dyad] J_cam_dyadSL = 1e-3 * (k0Boff * initvalu[initvalu_offset_Dyad + 0] - k0Bon * Bdyad * initvalu[initvalu_offset_SL + 0]); // [uM/msec dyad] J_ca2cam_dyadSL = 1e-3 * (k2Boff * initvalu[initvalu_offset_Dyad + 1] - k2Bon * Bdyad * initvalu[initvalu_offset_SL + 1]); // [uM/msec dyad] J_ca4cam_dyadSL = 1e-3 * (k2Boff * initvalu[initvalu_offset_Dyad + 2] - k4Bon * Bdyad * initvalu[initvalu_offset_SL + 2]); // [uM/msec dyad] J_cam_SLmyo = kSLmyo * (initvalu[initvalu_offset_SL + 0] - initvalu[initvalu_offset_Cyt + 0]);// [umol/msec] J_ca2cam_SLmyo = kSLmyo * (initvalu[initvalu_offset_SL + 1] - initvalu[initvalu_offset_Cyt + 1]); // [umol/msec] J_ca4cam_SLmyo = kSLmyo * (initvalu[initvalu_offset_SL + 2] - initvalu[initvalu_offset_Cyt + 2]); // [umol/msec] // ADJUST CAM Dyad finavalu[initvalu_offset_Dyad + 0] = finavalu[initvalu_offset_Dyad + 0] - J_cam_dyadSL; finavalu[initvalu_offset_Dyad + 1] = finavalu[initvalu_offset_Dyad + 1] - J_ca2cam_dyadSL; finavalu[initvalu_offset_Dyad + 2] = finavalu[initvalu_offset_Dyad + 2] - J_ca4cam_dyadSL; // ADJUST CAM Sl finavalu[initvalu_offset_SL + 0] = finavalu[initvalu_offset_SL + 0] + J_cam_dyadSL * Vdyad / VSL - J_cam_SLmyo / VSL; finavalu[initvalu_offset_SL + 1] = finavalu[initvalu_offset_SL + 1] + J_ca2cam_dyadSL * Vdyad / VSL - J_ca2cam_SLmyo / VSL; finavalu[initvalu_offset_SL + 2] = finavalu[initvalu_offset_SL + 2] + J_ca4cam_dyadSL * Vdyad / VSL - J_ca4cam_SLmyo / VSL; // ADJUST CAM Cyt finavalu[initvalu_offset_Cyt + 0] = finavalu[initvalu_offset_Cyt + 0] + J_cam_SLmyo / Vmyo; finavalu[initvalu_offset_Cyt + 1] = finavalu[initvalu_offset_Cyt + 1] + J_ca2cam_SLmyo / Vmyo; finavalu[initvalu_offset_Cyt + 2] = finavalu[initvalu_offset_Cyt + 2] + J_ca4cam_SLmyo / Vmyo; }
19,432
#include "cuda_runtime.h" #include "device_launch_parameters.h" #include <stdio.h> #include <stdlib.h> #include <math.h> __global__ void addElement(int *a,int *b,int *t) { int v = threadIdx.y; int n = v*blockDim.x+threadIdx.x; t[n] = a[n]+b[n]; } __global__ void addCol(int *a , int *b , int *t) { int lp =0; int index = threadIdx.x; for(lp = 0 ;lp<blockDim.x;lp++) { t[index] = a[index]+b[index]; index += blockDim.x; } } __global__ void addRow(int *a , int *b , int *t) { int lp =0; int index = threadIdx.x*blockDim.x; for(lp = 0 ;lp<blockDim.x;lp++) { t[index] = a[index] + b[index]; index++; } } int main(void) { int *a,*b,*t,n,i,j; int *d_a,*d_b,*d_t; printf("Enter the value of n: "); scanf("%d",&n); int size = sizeof(int)*n*n; a = (int*)malloc(n*n*sizeof(int)); b = (int*)malloc(n*n*sizeof(int)); t = (int*)malloc(n*n*sizeof(int)); printf("Enter input matrix 1 : \n"); for(i = 0;i<n*n;i++) scanf("%d",&a[i]); printf("Enter input matrix 2 : \n"); for(i = 0;i<n*n;i++) scanf("%d",&b[i]); cudaMalloc((void**)&d_a,size); cudaMalloc((void**)&d_b,size); cudaMalloc((void**)&d_t,size); cudaMemcpy(d_a,a,size,cudaMemcpyHostToDevice); cudaMemcpy(d_b,b,size,cudaMemcpyHostToDevice); printf("Enter 1 for Row \n 2 for Column \n 3 for Element \n"); int ch; scanf("%d",&ch); if(ch == 1) { dim3 block(n,1); dim3 grid(1,1); addRow<<<grid,block>>>(d_a,d_b,d_t); } if(ch == 2) { dim3 block(n,1); dim3 grid(1,1); addCol<<<grid,block>>>(d_a,d_b,d_t); } if(ch == 3) { dim3 block(n,n); dim3 grid(1,1); addElement<<<grid,block>>>(d_a,d_b,d_t); } cudaMemcpy(t,d_t,size,cudaMemcpyDeviceToHost); printf("Result vector is :\n"); for(i = 0;i<n;i++) { for(j = 0;j<n;j++) printf("%d ",t[i*n+j]); printf("\n"); } getchar(); cudaFree(d_a); cudaFree(d_t); return 0; }
19,433
#include <stdio.h> #include <stdlib.h> #include <string.h> #define BLOCKS 1024 #define THREADS 1024 #define SIZE BLOCKS*THREADS*16 void print(int *vec){ for(int i = 0; i < SIZE; i++) printf("%d ", vec[i]); printf("\n"); } int *get_vector(int n){ int *res = (int *) malloc(sizeof(int) * n); for(int i = 0; i < n; i++) res[i] = 1; return res; } __global__ void add(int *vec1, int *vec2, int times){ const int beg = threadIdx.x + blockIdx.x * blockDim.x; int i, j; for(i = beg; i < SIZE; i += blockDim.x * gridDim.x) for(j = 0; j < times; j++) vec2[i] = vec2[i] + vec1[i]; //__syncthreads(); } int main(int argc, char *argv[]){ if(SIZE > 100 * 1024 * 1024); // If over 100 megabytes printf("Size: %lf Mb\n", SIZE / (double) 1024 / (double) 1024); int *vec1 = get_vector(SIZE); int *vec2 = get_vector(SIZE); void *gpuVec1, *gpuVec2; cudaMalloc( &gpuVec1, sizeof(int) * SIZE ); cudaMalloc( &gpuVec2, sizeof(int) * SIZE ); cudaMemcpy( gpuVec1, vec1, sizeof(int) * SIZE, cudaMemcpyHostToDevice); cudaMemcpy( gpuVec2, vec2, sizeof(int) * SIZE, cudaMemcpyHostToDevice); printf("First element: %d\n", vec2[0]); add<<<BLOCKS, THREADS>>>((int*) gpuVec1, (int*) gpuVec2, 10000); cudaMemcpy( vec2, gpuVec2, sizeof(int) * SIZE, cudaMemcpyDeviceToHost); //print(vec2); printf("First element: %d\n", vec2[0]); cudaFree(gpuVec1); cudaFree(gpuVec2); free(vec1); free(vec2); return 0; }
19,434
/****************************************************************************** * * XXXII Heidelberg Physics Graduate Days - GPU Computing * * Gruppe : TODO * * File : main.cu * * Purpose : n-Body Computation * ******************************************************************************/ #include <cmath> #include <ctime> #include <iostream> #include <cstdlib> #include <cstdio> #include <iomanip> const static int DEFAULT_NUM_ELEMENTS = 1024; const static int DEFAULT_NUM_ITERATIONS = 5; const static int DEFAULT_BLOCK_DIM = 128; const static float TIMESTEP = 1e-6; // s const static float GAMMA = 6.673e-11; // (Nm^2)/(kg^2) // // Structures // // Use a SOA (Structure of Arrays) // struct Body_t { float4* posMass; /* x = x */ /* y = y */ /* z = z */ /* w = Mass */ float3* velocity; /* x = v_x*/ /* y = v_y */ /* z= v_z */ Body_t(): posMass(NULL), velocity(NULL) {} }; // // Function Prototypes // void printHelp(char *); void printElement(Body_t, int, int); // // Device Functions // // // Calculate the Distance of two points // __device__ float getDistance(float4 a, float4 b) { // TODO: Calculate distance of two particles } // // Calculate the forces between two bodies // __device__ void bodyBodyInteraction(float4 bodyA, float4 bodyB, float3& force) { float distance = getDistance(bodyA, bodyB); if (distance==0) return; // TODO: Calc Force } // // Calculate the new velocity of one particle // __device__ void calculateSpeed(float mass, float3& currentSpeed, float3 force) { // TODO: Calculate the new velocity of a particle } // // n-Body Kernel for the speed calculation // __global__ void simpleNbody_Kernel(int numElements, float4* bodyPos, float3* bodySpeed) { int elementId = blockIdx.x * blockDim.x + threadIdx.x; float4 elementPosMass; float3 elementForce; float3 elementSpeed; if (elementId < numElements) { elementPosMass = bodyPos[elementId]; elementSpeed = bodySpeed[elementId]; elementForce = make_float3(0,0,0); for (int i = 0; i < numElements; i++) { if (i != elementId) { bodyBodyInteraction(elementPosMass, bodyPos[i], elementForce); } } calculateSpeed(elementPosMass.w, elementSpeed, elementForce); bodySpeed[elementId] = elementSpeed; } } __global__ void sharedNbody_Kernel(int numElements, float4* bodyPos, float3* bodySpeed) { // Use the packed values and SOA to optimize load and store operations /*TODO Kernel Code*/ } // // n-Body Kernel to update the position // Neended to prevent write-after-read-hazards // __global__ void updatePosition_Kernel(int numElements, float4* bodyPos, float3* bodySpeed) { int elementId = blockIdx.x * blockDim.x + threadIdx.x; float4 elementPosMass; float3 elementSpeed; if (elementId < numElements) { // TODO: Update position of a particle } } // // Main // //int //main(int argc, char * argv[]) //{ // bool showHelp = chCommandLineGetBool("h", argc, argv); // if (!showHelp) { // showHelp = chCommandLineGetBool("help", argc, argv); // } // // if (showHelp) { // printHelp(argv[0]); // exit(0); // } // // std::cout << "***" << std::endl // << "*** Starting ..." << std::endl // << "***" << std::endl; // // ChTimer memCpyH2DTimer, memCpyD2HTimer; // ChTimer kernelTimer; // // // // // Allocate Memory // // // int numElements = 0; // chCommandLineGet<int>(&numElements, "s", argc, argv); // chCommandLineGet<int>(&numElements, "size", argc, argv); // numElements = numElements != 0 ? // numElements : DEFAULT_NUM_ELEMENTS; // // // // Host Memory // // // bool pinnedMemory = chCommandLineGetBool("p", argc, argv); // if (!pinnedMemory) { // pinnedMemory = chCommandLineGetBool("pinned-memory",argc,argv); // } // // Body_t h_particles; // if (!pinnedMemory) { // // Pageable // h_particles.posMass = static_cast<float4*> // (malloc(static_cast<size_t> // (numElements * sizeof(*(h_particles.posMass))))); // h_particles.velocity = static_cast<float3*> // (malloc(static_cast<size_t> // (numElements * sizeof(*(h_particles.velocity))))); // } else { // // Pinned // cudaMallocHost(&(h_particles.posMass), // static_cast<size_t> // (numElements * sizeof(*(h_particles.posMass)))); // cudaMallocHost(&(h_particles.velocity), // static_cast<size_t> // (numElements * sizeof(*(h_particles.velocity)))); // } // // // Init Particles //// srand(static_cast<unsigned>(time(0))); // srand(0); // Always the same random numbers // for (int i = 0; i < numElements; i++) { // h_particles.posMass[i].x = 1e-8*static_cast<float>(rand()); // Modify the random values to // h_particles.posMass[i].y = 1e-8*static_cast<float>(rand()); // increase the position changes // h_particles.posMass[i].z = 1e-8*static_cast<float>(rand()); // and the velocity // h_particles.posMass[i].w = 1e4*static_cast<float>(rand()); // h_particles.velocity[i].x = 0.0f; // h_particles.velocity[i].y = 0.0f; // h_particles.velocity[i].z = 0.0f; // } // // printElement(h_particles, 0, 0); // // // Device Memory // Body_t d_particles; // cudaMalloc(&(d_particles.posMass), // static_cast<size_t>(numElements * sizeof(*(d_particles.posMass)))); // cudaMalloc(&(d_particles.velocity), // static_cast<size_t>(numElements * sizeof(*(d_particles.velocity)))); // // if (h_particles.posMass == NULL || h_particles.velocity == NULL || // d_particles.posMass == NULL || d_particles.velocity == NULL) { // std::cout << "\033[31m***" << std::endl // << "*** Error - Memory allocation failed" << std::endl // << "***\033[0m" << std::endl; // // exit(-1); // } // // // // // Copy Data to the Device // // // memCpyH2DTimer.start(); // // cudaMemcpy(d_particles.posMass, h_particles.posMass, // static_cast<size_t>(numElements * sizeof(float4)), // cudaMemcpyHostToDevice); // cudaMemcpy(d_particles.velocity, h_particles.velocity, // static_cast<size_t>(numElements * sizeof(float3)), // cudaMemcpyHostToDevice); // // memCpyH2DTimer.stop(); // // // // // Get Kernel Launch Parameters // // // int blockSize = 0, // gridSize = 0, // numIterations = 0; // // // Number of Iterations // chCommandLineGet<int>(&numIterations,"i", argc, argv); // chCommandLineGet<int>(&numIterations,"num-iterations", argc, argv); // numIterations = numIterations != 0 ? numIterations : DEFAULT_NUM_ITERATIONS; // // // Block Dimension / Threads per Block // chCommandLineGet<int>(&blockSize,"t", argc, argv); // chCommandLineGet<int>(&blockSize,"threads-per-block", argc, argv); // blockSize = blockSize != 0 ? blockSize : DEFAULT_BLOCK_DIM; // // if (blockSize > 1024) { // std::cout << "\033[31m***" << std::endl // << "*** Error - The number of threads per block is too big" << std::endl // << "***\033[0m" << std::endl; // // exit(-1); // } // // gridSize = ceil(static_cast<float>(numElements) / static_cast<float>(blockSize)); // // dim3 grid_dim = dim3(gridSize); // dim3 block_dim = dim3(blockSize); // // std::cout << "***" << std::endl; // std::cout << "*** Grid: " << gridSize << std::endl; // std::cout << "*** Block: " << blockSize << std::endl; // std::cout << "***" << std::endl; // // kernelTimer.start(); // // for (int i = 0; i < numIterations; i ++) { // simpleNbody_Kernel<<<grid_dim, block_dim>>>(numElements, d_particles.posMass, // d_particles.velocity); // updatePosition_Kernel<<<grid_dim, block_dim>>>(numElements, d_particles.posMass, // d_particles.velocity); // // cudaMemcpy(h_particles.posMass, d_particles.posMass, sizeof(float4), cudaMemcpyDeviceToHost); // cudaMemcpy(h_particles.velocity, d_particles.velocity, sizeof(float3), cudaMemcpyDeviceToHost); // printElement(h_particles, 0, i+1); // } // // // Synchronize // cudaDeviceSynchronize(); // // // Check for Errors // cudaError_t cudaError = cudaGetLastError(); // if ( cudaError != cudaSuccess ) { // std::cout << "\033[31m***" << std::endl // << "***ERROR*** " << cudaError << " - " << cudaGetErrorString(cudaError) // << std::endl // << "***\033[0m" << std::endl; // // return -1; // } // // kernelTimer.stop(); // // // // // Copy Back Data // // // memCpyD2HTimer.start(); // // cudaMemcpy(h_particles.posMass, d_particles.posMass, // static_cast<size_t>(numElements * sizeof(*(h_particles.posMass))), // cudaMemcpyDeviceToHost); // cudaMemcpy(h_particles.velocity, d_particles.velocity, // static_cast<size_t>(numElements * sizeof(*(h_particles.velocity))), // cudaMemcpyDeviceToHost); // // memCpyD2HTimer.stop(); // // // Free Memory // if (!pinnedMemory) { // free(h_particles.posMass); // free(h_particles.velocity); // } else { // cudaFreeHost(h_particles.posMass); // cudaFreeHost(h_particles.velocity); // } // // cudaFree(d_particles.posMass); // cudaFree(d_particles.velocity); // // // Print Meassurement Results // std::cout << "***" << std::endl // << "*** Results:" << std::endl // << "*** Num Elements: " << numElements << std::endl // << "*** Time to Copy to Device: " << 1e3 * memCpyH2DTimer.getTime() // << " ms" << std::endl // << "*** Copy Bandwidth: " // << 1e-9 * memCpyH2DTimer.getBandwidth(numElements * sizeof(h_particles)) // << " GB/s" << std::endl // << "*** Time to Copy from Device: " << 1e3 * memCpyD2HTimer.getTime() // << " ms" << std::endl // << "*** Copy Bandwidth: " // << 1e-9 * memCpyD2HTimer.getBandwidth(numElements * sizeof(h_particles)) // << " GB/s" << std::endl // << "*** Time for n-Body Computation: " << 1e3 * kernelTimer.getTime() // << " ms" << std::endl // << "***" << std::endl; // // return 0; //} void printHelp(char * argv) { std::cout << "Help:" << std::endl << " Usage: " << std::endl << " " << argv << " [-p] [-s <num-elements>] [-t <threads_per_block>]" << std::endl << "" << std::endl << " -p|--pinned-memory" << std::endl << " Use pinned Memory instead of pageable memory" << std::endl << "" << std::endl << " -s <num-elements>|--size <num-elements>" << std::endl << " Number of elements (particles)" << std::endl << "" << std::endl << " -t <threads_per_block>|--threads-per-block <threads_per_block>" << std::endl << " The number of threads per block" << std::endl << "" << std::endl; } // // Print one element // void printElement(Body_t particles, int elementId, int iteration) { float4 posMass = particles.posMass[elementId]; float3 velocity = particles.velocity[elementId]; std::cout << "***" << std::endl << "*** Printing Element " << elementId << " in iteration " << iteration << std::endl << "***" << std::endl << "*** Position: <" << std::setw(11) << std::setprecision(9) << posMass.x << "|" << std::setw(11) << std::setprecision(9) << posMass.y << "|" << std::setw(11) << std::setprecision(9) << posMass.z << "> [m]" << std::endl << "*** velocity: <" << std::setw(11) << std::setprecision(9) << velocity.x << "|" << std::setw(11) << std::setprecision(9) << velocity.y << "|" << std::setw(11) << std::setprecision(9) << velocity.z << "> [m/s]" << std::endl << "*** Mass: " << std::setw(11) << std::setprecision(9) << posMass.w << " kg"<< std::endl << "***" << std::endl; }
19,435
#include <algorithm> #include <cassert> #include <cstdlib> #include <functional> #include <iostream> #include <vector> #include <chrono> using namespace std; const int M = 1 << 3; //8 const int N = 1 << 3; const int K = 1 << 3; const int SHMEM_SIZE = 1 << 3; //4 __global__ void matrixMul(const int *a, const int *b, int *c); void verify_result(vector<int> &a, vector<int> &b, vector<int> &c); void afficheMatrix(vector<int>& m,int line, int colone); auto get_time() { return chrono::high_resolution_clock::now(); } int main() { size_t bytes_a = M * K * sizeof(int); size_t bytes_b = K * N * sizeof(int); size_t bytes_c = M * N * sizeof(int); // CPU vector<int> h_a(M * K); vector<int> h_b(K * N); vector<int> h_c(M * N); generate(h_a.begin(), h_a.end(), []() { return rand() % 100; }); generate(h_b.begin(), h_b.end(), []() { return rand() % 100; }); // GPU int *d_a, *d_b, *d_c; cudaMalloc(&d_a, bytes_a); cudaMalloc(&d_b, bytes_b); cudaMalloc(&d_c, bytes_c); // CPU ---> GPU cudaMemcpy(d_a, h_a.data(), bytes_a, cudaMemcpyHostToDevice); cudaMemcpy(d_b, h_b.data(), bytes_b, cudaMemcpyHostToDevice); int THREADS = 1 << 1; //2^1 =2 int BLOCKS_X = N / THREADS; //4 int BLOCKS_Y = M / THREADS; //4 dim3 threads(THREADS, THREADS); dim3 blocks(BLOCKS_X, BLOCKS_Y); auto start = get_time(); matrixMul<<<blocks, threads>>>(d_a, d_b, d_c); // <<< (2,2),(4,4) >>> cudaMemcpy(h_c.data(), d_c, bytes_c, cudaMemcpyDeviceToHost); auto finish = get_time(); auto duration = chrono::duration_cast<chrono::milliseconds>(finish - start); cout << "temps écoulé en kernel = " << duration.count() << " ms\n"; afficheMatrix(h_a,M,N); afficheMatrix(h_b,M,N); afficheMatrix(h_c,M,N); verify_result(h_a, h_b, h_c); cout << "terminé avec succès"<<endl; cudaFree(d_a); cudaFree(d_b); cudaFree(d_c); return 0; } __global__ void matrixMul(const int *a, const int *b, int *c) { int row = blockIdx.y * blockDim.y + threadIdx.y; int col = blockIdx.x * blockDim.x + threadIdx.x; __shared__ int s_a[SHMEM_SIZE]; __shared__ int s_b[SHMEM_SIZE]; int tmp = 0; for (int i = 0; i < K; i += blockDim.x) { s_a[threadIdx.y * blockDim.x + threadIdx.x] = a[row * K + i + threadIdx.x]; s_b[threadIdx.y * blockDim.x + threadIdx.x] = b[i * N + threadIdx.y * N + col]; __syncthreads(); for (int j = 0; j < blockDim.x; j++) tmp += s_a[threadIdx.y * blockDim.x + j] * s_b[j * blockDim.x + threadIdx.x]; __syncthreads(); } c[row * N + col] = tmp; } void verify_result(vector<int> &a, vector<int> &b, vector<int> &c) { for (int row = 0; row < M; row++) for (int col = 0; col < N; col++) { int tmp = 0; for (int i = 0; i < K; i++) tmp += a[row * K + i] * b[i * N + col]; assert(tmp == c[row * N + col]); } } void afficheMatrix(vector<int>& m,int line, int colone) { for (int i = 0; i <line; i++) { for (int j = 0; j < colone; j++) { cout<<m[i]<<" "; } cout<<endl; } cout<<"\n_______________________________________"<<endl; }
19,436
// Ceres Solver - A fast non-linear least squares minimizer // Copyright 2022 Google Inc. All rights reserved. // http://ceres-solver.org/ // // 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. // * Neither the name of Google Inc. nor the names of its contributors may be // used to endorse or promote products derived from this software without // specific prior written permission. // // 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 OWNER 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. // // Author: joydeepb@cs.utexas.edu (Joydeep Biswas) #include "cuda_runtime.h" namespace ceres::internal { // As the CUDA Toolkit documentation says, "although arbitrary in this case, is // a common choice". This is determined by the warp size, max block size, and // multiprocessor sizes of recent GPUs. For complex kernels with significant // register usage and unusual memory patterns, the occupancy calculator API // might provide better performance. See "Occupancy Calculator" under the CUDA // toolkit documentation. constexpr int kCudaBlockSize = 256; template<typename SrcType, typename DstType> __global__ void TypeConversionKernel(const SrcType* __restrict__ input, DstType* __restrict__ output, const int size) { const int i = blockIdx.x * blockDim.x + threadIdx.x; if (i < size) { output[i] = static_cast<DstType>(input[i]); } } void CudaFP64ToFP32(const double* input, float* output, const int size, cudaStream_t stream) { const int num_blocks = (size + kCudaBlockSize - 1) / kCudaBlockSize; TypeConversionKernel<double, float> <<<num_blocks, kCudaBlockSize, 0, stream>>>(input, output, size); } void CudaFP32ToFP64(const float* input, double* output, const int size, cudaStream_t stream) { const int num_blocks = (size + kCudaBlockSize - 1) / kCudaBlockSize; TypeConversionKernel<float, double> <<<num_blocks, kCudaBlockSize, 0, stream>>>(input, output, size); } template<typename T> __global__ void SetZeroKernel(T* __restrict__ output, const int size) { const int i = blockIdx.x * blockDim.x + threadIdx.x; if (i < size) { output[i] = T(0.0); } } void CudaSetZeroFP32(float* output, const int size, cudaStream_t stream) { const int num_blocks = (size + kCudaBlockSize - 1) / kCudaBlockSize; SetZeroKernel<float><<<num_blocks, kCudaBlockSize, 0, stream>>>(output, size); } void CudaSetZeroFP64(double* output, const int size, cudaStream_t stream) { const int num_blocks = (size + kCudaBlockSize - 1) / kCudaBlockSize; SetZeroKernel<double><<<num_blocks, kCudaBlockSize, 0, stream>>>( output, size); } template <typename SrcType, typename DstType> __global__ void XPlusEqualsYKernel(DstType* __restrict__ x, const SrcType* __restrict__ y, const int size) { const int i = blockIdx.x * blockDim.x + threadIdx.x; if (i < size) { x[i] = x[i] + DstType(y[i]); } } void CudaDsxpy(double* x, float* y, const int size, cudaStream_t stream) { const int num_blocks = (size + kCudaBlockSize - 1) / kCudaBlockSize; XPlusEqualsYKernel<float, double> <<<num_blocks, kCudaBlockSize, 0, stream>>>(x, y, size); } } // namespace ceres_cuda_kernels
19,437
/* compile $ nvcc -o matrix_elementwise matrix_elementwise.cu elementwise multiplication and subtraction numpy version import numpy as np m1 = np.array(((0, 1, 2), (3, 4, 5), (6, 7, 8))) m2 = np.array(((8, 7, 6), (5, 4, 3), (2, 1, 0))) m1*m2 # or np.multiply(m1, m2) m1-m2 */ #include <stdio.h> #include <cuda.h> #include <cuda_runtime.h> #include <cuda_runtime_api.h> // kernel of elementwise multiplication of 2 arrays __global__ void kMatrixByMatrixElementwise(const int nThreads, const float *m1, const float *m2, float *output) { /* Computes the product of two arrays (elementwise multiplication). Inputs: m1: array m2: array output: array,the results of the multiplication are to be stored here */ for (int i = blockIdx.x * blockDim.x + threadIdx.x; i < nThreads; i += blockDim.x * gridDim.x) { output[i] = m1[i] * m2[i]; } } // elementwise multiplication of 2 arrays float* dMatrixByMatrixElementwise(const float *m1, const float *m2, float *output, const int width, const int height){ kMatrixByMatrixElementwise <<< width, height >>> ( width * height, m1, m2, output ); cudaDeviceSynchronize(); return output; } // kernel elementwise difference of 2 arrays __global__ void kMatrixSubstractMatrix(const int nThreads, const float *m1, const float *m2, float *output) { /* Computes the (elementwise) difference between two arrays Inputs: m1: array m2: array output: array,the results of the computation are to be stored here */ for (int i = blockIdx.x * blockDim.x + threadIdx.x; i < nThreads; i += blockDim.x * gridDim.x) { output[i] = m1[i] - m2[i]; } } // elementwise difference of 2 arrays float* dMatrixSubstractMatrix(const float *m1, const float *m2, float *output, const int width, const int height){ kMatrixSubstractMatrix <<< width, height >>> ( width * height, m1, m2, output ); cudaDeviceSynchronize(); return output; } int main(void) { // host initialization const int M_SIZE = 9; // 3x3 matrix const int M_BYTES = M_SIZE * sizeof(float); float h_m1[M_SIZE], h_m2[M_SIZE], h_out[M_SIZE]; for (int i = 0; i < M_SIZE; i++) { h_m1[i] = float(i); // 0, 1, .. 8 h_m2[i] = float(M_SIZE - 1 - i); } // GPU memory allocation and initialization float *d_m1, *d_m2, *d_out; cudaMalloc((void**) &d_m1, M_BYTES); cudaMalloc((void**) &d_m2, M_BYTES); cudaMalloc((void**) &d_out, M_BYTES); cudaMemcpy(d_m1, h_m1, M_BYTES, cudaMemcpyHostToDevice); cudaMemcpy(d_m2, h_m2, M_BYTES, cudaMemcpyHostToDevice); // elementwise subtraction dMatrixSubstractMatrix(d_m1, d_m2, d_out, 3, 3); cudaMemcpy(h_out, d_out, M_BYTES, cudaMemcpyDeviceToHost); // print result printf("elementwise subtraction\n"); for (int i = 0; i < M_SIZE; i++) { printf("h_out[%d] = %f\n", i, h_out[i]); } // elementwise multiplication dMatrixByMatrixElementwise(d_m1, d_m2, d_out, 3, 3); cudaMemcpy(h_out, d_out, M_BYTES, cudaMemcpyDeviceToHost); // print result printf("elementwise multiplication\n"); for (int i = 0; i < M_SIZE; i++) { printf("h_out[%d] = %f\n", i, h_out[i]); } // free memory cudaFree(d_m1); cudaFree(d_m2); cudaFree(d_out); // free(h_m1); // free(h_m2); // free(h_out); }
19,438
/* Mnozenie macierzy CUDA, Jakub Ciechowski GPU 2012 */ #include <cuda.h> #include <stdio.h> #include <stdlib.h> #define TILE_WIDTH 2 __global__ void sharedMul(int *M, int *N, int *P, int width) { __shared__ int Ms[TILE_WIDTH][TILE_WIDTH]; __shared__ int Ns[TILE_WIDTH][TILE_WIDTH]; int bx = blockIdx.x; int by = blockIdx.y; int tx = threadIdx.x; int ty = threadIdx.y; int row = by * TILE_WIDTH + ty; int col = bx * TILE_WIDTH + tx; int sum = 0; for(int m = 0; m < width/TILE_WIDTH; m++) { Ms[ty][tx] = M[row*width + (m*TILE_WIDTH + tx)]; Ns[ty][tx] = N[(m*TILE_WIDTH + ty)*width + col]; __syncthreads(); for(int k = 0; k < TILE_WIDTH; k++) { sum += Ms[m+ty][k] * Ns[k][m+tx]; } __syncthreads(); } P[row*width+col] = sum; } // __global__ void naiveMul(int* M, int* N, int* P, int width) { // // TODO // // mnozenie macierzy powyzej 512 elementow // int tx = threadIdx.x; // int ty = threadIdx.y; // int sum = 0; // sum += M[ty*width+k] * N[k*width+tx]; // P[ty*width+tx] = sum; // } void printMat(int *a, int width) { int i,j; for(i=0;i<width;i++) for(j=0;j<width;j++) printf("%d%c",a[i*width+j],(j == (width-1))?'\n':'\t'); printf("\n"); } int* genMatrix(int width) { int *a = (int*)calloc(width*width, sizeof(int)); int i,j; for(i=0;i<width;i++) for(j=0;j<width;j++) a[i*width+j] = rand()%10; return a; } int *matMul(int *hostA, int *hostB, int width) { int SIZE = width*width; int *hostC = (int*)calloc(SIZE,sizeof(int)); int *devA, *devB, *devC; cudaMalloc((void**) &devA, SIZE*sizeof(int)); cudaMalloc((void**) &devB, SIZE*sizeof(int)); cudaMalloc((void**) &devC, SIZE*sizeof(int)); dim3 gridDim(width/TILE_WIDTH, width/TILE_WIDTH); dim3 blockDim(TILE_WIDTH,TILE_WIDTH); // dim3 blockDim(width,width); // dim3 gridDim(1,1); cudaMemcpy(devA, hostA, SIZE*sizeof(int), cudaMemcpyHostToDevice); cudaMemcpy(devB, hostB, SIZE*sizeof(int), cudaMemcpyHostToDevice); cudaMemcpy(devC, hostC, SIZE*sizeof(int), cudaMemcpyHostToDevice); sharedMul<<<gridDim,blockDim>>>(devA, devB, devC, width); // naiveMul<<<gridDim,blockDim>>>(devA, devB, devC, width); cudaMemcpy(hostC, devC, SIZE*sizeof(int), cudaMemcpyDeviceToHost); return hostC; } int main(int argc, char** argv) { int m = 4; int *A; int *B; int *C; if(argc > 1) { m = atoi(argv[1]); } A = genMatrix(m); printMat(A,m); B = genMatrix(m); printMat(B,m); C = matMul(A,B,m); printf("TILE = %d\n",TILE_WIDTH); printMat(C,m); return 0; }
19,439
#include "cuda_runtime.h" #include "device_launch_parameters.h" #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <inttypes.h> #define ErrorCheck(ans) { CheckFun((ans), __FILE__, __LINE__); } inline void CheckFun(cudaError_t code, const char *file, int line) { if (code != cudaSuccess) { fprintf(stderr, "ERROR: %s %s %d\n", cudaGetErrorString(code), file, line); exit(0); } } __constant__ double3 centerClusters[32]; __device__ inline double calculateDistance(uchar4 &A, double3 &B) { return sqrt((double)(A.x - B.x)*(A.x - B.x) + (A.y - B.y)*(A.y - B.y) + (A.z - B.z)*(A.z - B.z)); } __global__ void KMeans(uchar4 * __restrict__ img, const uint32_t w, const uint32_t h, const uint32_t nc) { uint32_t idx = threadIdx.x + blockIdx.x * blockDim.x; uint32_t idy = threadIdx.y + blockIdx.y * blockDim.y; uint32_t offsetx = blockDim.x * gridDim.x; uint32_t offsety = blockDim.y * gridDim.y; for (uint32_t i = idx; i < w; i += offsetx) { for (uint32_t j = idy; j < h; j += offsety) { double distanceMin = calculateDistance(img[j * w + i], centerClusters[0]); uint32_t clusterNumber = 0; for (uint32_t k = 1; k < nc; ++k) { double distanceTmp = calculateDistance(img[j * w + i], centerClusters[k]); if (distanceTmp < distanceMin) { distanceMin = distanceTmp; clusterNumber = k; } } img[j * w + i].w = clusterNumber; } } } __host__ bool updateClusters(uchar4 * __restrict__ img, uchar4 * __restrict__ imgNew, double3 * __restrict__ centerClustersHost, const uint32_t w, const uint32_t h, const uint32_t nc) { uint64_t countElementOnCluster[32] = { 0 }; ulonglong3 sumElementOnCluster[32] = { make_ulonglong3(0, 0, 0) }; bool notEqual = false; for (uint32_t i = 0; i < w*h; ++i) { if (imgNew[i].w != img[i].w) notEqual = true; countElementOnCluster[imgNew[i].w]++; sumElementOnCluster[imgNew[i].w].x += imgNew[i].x; sumElementOnCluster[imgNew[i].w].y += imgNew[i].y; sumElementOnCluster[imgNew[i].w].z += imgNew[i].z; } for (uint32_t i = 0; i < nc; ++i) { centerClustersHost[i].x = (double)sumElementOnCluster[i].x / (double)countElementOnCluster[i]; centerClustersHost[i].y = (double)sumElementOnCluster[i].y / (double)countElementOnCluster[i]; centerClustersHost[i].z = (double)sumElementOnCluster[i].z / (double)countElementOnCluster[i]; } return notEqual; } __host__ void KMeans(uchar4 * __restrict__ img, uchar4 * __restrict__ imgNew, double3 * __restrict__ centerClustersHost, const uint32_t w, const uint32_t h, const uint32_t nc) { uchar4 *imgDev; ErrorCheck(cudaMalloc(&imgDev, sizeof(uchar4) * w * h)); ErrorCheck(cudaMemcpy(imgDev, img, sizeof(uchar4) * w * h, cudaMemcpyHostToDevice)); bool flag = true; while (flag) { ErrorCheck(cudaMemcpyToSymbol(centerClusters, centerClustersHost, sizeof(double3) * 32)); KMeans <<<dim3(32,32), dim3(32, 32)>>> (imgDev, w, h, nc); ErrorCheck(cudaGetLastError()); ErrorCheck(cudaMemcpy(imgNew, imgDev, sizeof(uchar4) * w * h, cudaMemcpyDeviceToHost)); flag = updateClusters(img, imgNew, centerClustersHost, w, h, nc); uchar4 * imgTmp = imgNew; imgNew = img; img = imgTmp; } ErrorCheck(cudaFree(imgDev)); } int main() { char inputFileName[256], outFileName[256]; uint32_t w, h, nc; double3 centerClustersHost[32]; scanf("%s", inputFileName); scanf("%s", outFileName); FILE *hFile = fopen(inputFileName, "rb"); fread(&w, sizeof(uint32_t), 1, hFile); fread(&h, sizeof(uint32_t), 1, hFile); uchar4 *img = (uchar4*)malloc(sizeof(uchar4) * h * w); uchar4 *imgNew = (uchar4*)malloc(sizeof(uchar4) * w * h); fread(img, sizeof(uchar4), h * w, hFile); fclose(hFile); scanf("%" SCNu32, &nc); for (uint32_t i = 0; i < nc; ++i) { int x, y; scanf("%" SCNu32 "%" SCNu32, &x, &y); centerClustersHost[i].x = img[w * y + x].x; centerClustersHost[i].y = img[w * y + x].y; centerClustersHost[i].z = img[w * y + x].z; } KMeans(img,imgNew, centerClustersHost, w, h, nc); hFile = fopen(outFileName, "wb"); fwrite(&w, sizeof(uint32_t), 1, hFile); fwrite(&h, sizeof(uint32_t), 1, hFile); fwrite(img, sizeof(uchar4), w * h, hFile); fclose(hFile); free(imgNew); free(img); return 0; }
19,440
extern "C" { __global__ void binaryentropy_32(const int lengthX, const float *x, const float *y, float *z) { int i = threadIdx.x + blockIdx.x * blockDim.x; if (i<lengthX) { z[i] = x[i]*log(x[i]/y[i])+ (1.0-x[i])*log((1.0-x[i])/(1.0-y[i])); } } }
19,441
#include <cuda.h> #include <math.h> #include <iostream> using namespace std; __global__ void convStandard(uint32_t* d_MATDIM, uint32_t* d_KERDIM, double* mat, double* ker, double* res) { uint32_t MATDIM = d_MATDIM[0]; uint32_t KERDIM = d_KERDIM[0]; uint32_t threadID = blockIdx.x * blockDim.x + threadIdx.x; if (threadID < (MATDIM-KERDIM+1)*(MATDIM-KERDIM+1)) { uint32_t index = KERDIM/2 + (KERDIM/2) * MATDIM + (threadID / (MATDIM-KERDIM+1)) * MATDIM + threadID % (MATDIM-KERDIM+1); double sum = 0.0; for(int i = -((int32_t) KERDIM)/2; i < ((int32_t) KERDIM)/2+1; i++){ for(int j = -((int32_t) KERDIM)/2; j < ((int32_t) KERDIM)/2+1; j++){ sum += mat[index + i*MATDIM + j] * ker[(i+KERDIM/2) * KERDIM + (j+KERDIM/2)]; } } res[threadID] = sum; } } __global__ void convBinW(uint32_t* d_MATDIM, uint32_t* d_KERDIM, double* mat, unsigned char* ker, double* res) { uint32_t MATDIM = d_MATDIM[0]; uint32_t KERDIM = d_KERDIM[0]; uint32_t threadID = blockIdx.x * blockDim.x + threadIdx.x; if (threadID < (MATDIM-KERDIM+1)*(MATDIM-KERDIM+1)) { uint32_t index_mat = KERDIM/2 + (KERDIM/2) * MATDIM + (threadID / (MATDIM-KERDIM+1)) * MATDIM + threadID % (MATDIM-KERDIM+1); double sum = 0.0; for(int i = -((int32_t) KERDIM)/2; i < ((int32_t) KERDIM)/2+1; i++){ for(int j = -((int32_t) KERDIM)/2; j < ((int32_t) KERDIM)/2+1; j++){ uint32_t index_ker = (i+KERDIM/2) * KERDIM + (j+KERDIM/2); if ((unsigned char)((unsigned char)(ker[index_ker/8] << (index_ker % 8)) >> 7) == 1) sum += mat[index_mat + i*MATDIM + j]; else sum -= mat[index_mat + i*MATDIM + j]; } } res[threadID] = sum; } } __global__ void convBinWBinI(uint32_t* d_MATDIM, uint32_t* d_KERDIM, unsigned char* mat, unsigned char* ker, unsigned char* res) { uint32_t MATDIM = d_MATDIM[0]; uint32_t KERDIM = d_KERDIM[0]; uint32_t xnor_number = 0; unsigned char bit_counter = 0; unsigned char pop_count = 0; uint32_t threadID = blockIdx.x * blockDim.x + threadIdx.x; if (threadID < (MATDIM-KERDIM+1)*(MATDIM-KERDIM+1)) { uint32_t index_mat = KERDIM/2 + (KERDIM/2) * MATDIM + (threadID / (MATDIM-KERDIM+1)) * MATDIM + threadID % (MATDIM-KERDIM+1); for(int i = -((int32_t) KERDIM)/2; i < ((int32_t) KERDIM)/2+1; i++){ for(int j = -((int32_t) KERDIM)/2; j < ((int32_t) KERDIM)/2+1; j++){ uint32_t index_ker = (i+(KERDIM >> 1)) * KERDIM + (j+(KERDIM >> 1)); uint32_t index_mat_bin = index_mat + i*MATDIM + j; if (bit_counter == 32) { pop_count += (unsigned char) __popc((unsigned int) xnor_number); bit_counter = 0; xnor_number = 0; } else { if (((ker[index_ker >> 3] << (index_ker % 8)) >> 7) == ((mat[index_mat_bin >> 3] << (index_mat_bin % 8)) >> 7)) xnor_number |= 1 << bit_counter; bit_counter++; } } } pop_count += (unsigned char) __popc((unsigned int) xnor_number); res[threadID] = pop_count; } } void initMat(uint32_t dim, double* mat) { for (uint32_t i = 0; i < dim; i++) { for (uint32_t j = 0; j < dim; j++) { mat[i*dim+j] = (double) rand() / RAND_MAX * 2.0 - 1.0; } } } void convertToBinary(uint32_t dim, double* mat, uint32_t size_bin, unsigned char* mat_bin) { uint32_t pos_bit = 0; uint32_t pos_byte = 0; unsigned char sum = 0; for (uint32_t i = 0; i < dim; i++) { for (uint32_t j = 0; j < dim; j++) { if (mat[i*dim+j] >= 0) { sum += pow(2, 7-pos_bit); } if (pos_bit == 7) { mat_bin[pos_byte] = sum; pos_byte++; sum = 0; pos_bit = 0; } else { pos_bit++; } } } if (dim*dim % 8 != 0) { mat_bin[pos_byte] = sum; } } void printMatrix(uint32_t dim, double* mat) { cout << "dim: " << dim << "x" << dim << "\n{\n"; for (uint32_t i = 0; i < dim; i++) { for (uint32_t j = 0; j < dim; j++) { cout << mat[i*dim+j] << ", "; } cout << '\n'; } cout << "}\n"; } void printBinary(uint32_t dim, uint32_t size_bin, unsigned char* mat) { unsigned char rest; for (uint32_t i = 0; i < size_bin; i++) { rest = mat[i]; for (uint32_t j = 0; j < 8; j++) { if (i * 8 + j == dim*dim) { cout << "\n"; break; } if(rest - pow(2,7-j) >= 0) { rest = rest - pow(2,7-j); cout << "1 "; } else { cout << "0 "; } if((i * 8 + j + 1) % dim == 0) { cout << "\n"; } } } } int main(int argc, char* argv[]) { if (argc != 4) { cout << "Usage: srun out <int: dimension of input matrix> <int: dimension of kernel> <blocksize>\n"; return 0; } uint32_t MATDIM = strtol(argv[1], NULL, 10); uint32_t KERDIM = strtol(argv[2], NULL, 10); uint32_t N = strtol(argv[3], NULL, 10); uint32_t h_MATDIM[1]; h_MATDIM[0] = MATDIM; uint32_t h_KERDIM[1]; h_KERDIM[0] = KERDIM; struct timespec tstart={0,0}, tend={0,0}; double elapsed; // Matrix (double) double h_mat[MATDIM*MATDIM]; // Kernel (double) double h_ker[KERDIM*KERDIM]; // Matrix (bits) unsigned char h_mat_bin[(uint32_t) ceil(MATDIM*MATDIM/8.0)]; // Kernel (bits) unsigned char h_ker_bin[(uint32_t) ceil(KERDIM*KERDIM/8.0)]; // Result of standard convolution double h_res_standard[(MATDIM-KERDIM+1)*(MATDIM-KERDIM+1)]; // Result of convolution with binary weights double h_res_binW[(MATDIM-KERDIM+1)*(MATDIM-KERDIM+1)]; // Result of convolution with binary weights and binary inputs unsigned char h_res_binWbinI[(MATDIM-KERDIM+1)*(MATDIM-KERDIM+1)]; uint32_t mat_size = MATDIM*MATDIM * sizeof(double); uint32_t ker_size = KERDIM*KERDIM * sizeof(double); uint32_t mat_bin_size = (uint32_t) ceil(MATDIM*MATDIM/8.0) * sizeof(unsigned char); uint32_t ker_bin_size = (uint32_t) ceil(KERDIM*KERDIM/8.0) * sizeof(unsigned char); uint32_t res_standard_size = (MATDIM-KERDIM+1)*(MATDIM-KERDIM+1) * sizeof(double); uint32_t res_binW_size = (MATDIM-KERDIM+1)*(MATDIM-KERDIM+1) * sizeof(double); uint32_t res_binWbinI_size = (MATDIM-KERDIM+1)*(MATDIM-KERDIM+1) * sizeof(unsigned char); // Pointers for allocation on device uint32_t *d_MATDIM, *d_KERDIM; double *d_mat, *d_ker, *d_res_standard, *d_res_binW; unsigned char *d_mat_bin, *d_ker_bin, *d_res_binWbinI; // Allocate all matrices on device (cudaFree later!) cudaMalloc((void**) &d_mat, mat_size); cudaMalloc((void**) &d_ker, ker_size); cudaMalloc((void**) &d_mat_bin, mat_bin_size); cudaMalloc((void**) &d_ker_bin, ker_bin_size); cudaMalloc((void**) &d_res_standard, res_standard_size); cudaMalloc((void**) &d_res_binW, res_binW_size); cudaMalloc((void**) &d_res_binWbinI, res_binWbinI_size); cudaMalloc((void**) &d_MATDIM, sizeof(uint32_t)); cudaMalloc((void**) &d_KERDIM, sizeof(uint32_t)); // Seed for random number generation srand(time(NULL)); // Randomize the values of the double matrix with values -1.0 ... 1.0 initMat(MATDIM, h_mat); // Convert the double matrix into binary (0 = -1, 1 = 1) convertToBinary(MATDIM, h_mat, (uint32_t) ceil(MATDIM*MATDIM/8.0), h_mat_bin); // TODO DEBUG: Print the double matrix. printMatrix(MATDIM, h_mat); // TODO DEBUG: Print the binary matrix. printBinary(MATDIM, (uint32_t) ceil(MATDIM*MATDIM/8.0), h_mat_bin); initMat(KERDIM, h_ker); // Convert the double matrix into binary convertToBinary(KERDIM, h_ker, (uint32_t) ceil(KERDIM*KERDIM/8.0), h_ker_bin); // TODO DEBUG: Print the double matrix. printMatrix(KERDIM, h_ker); // TODO DEBUG: Print the binary matrix. printBinary(KERDIM, (uint32_t) ceil(KERDIM*KERDIM/8.0), h_ker_bin); // Copy all the matrices to the device (except the result matrices) cudaMemcpy(d_mat, h_mat, mat_size, cudaMemcpyHostToDevice); cudaMemcpy(d_ker, h_ker, ker_size, cudaMemcpyHostToDevice); cudaMemcpy(d_mat_bin, h_mat_bin, mat_bin_size, cudaMemcpyHostToDevice); cudaMemcpy(d_ker_bin, h_ker_bin, ker_bin_size, cudaMemcpyHostToDevice); cudaMemcpy(d_MATDIM, h_MATDIM, sizeof(uint32_t), cudaMemcpyHostToDevice); cudaMemcpy(d_KERDIM, h_KERDIM, sizeof(uint32_t), cudaMemcpyHostToDevice); uint32_t grid_size = ceil((MATDIM-KERDIM+1) * (MATDIM-KERDIM+1) / ((double) N)); // Compute the different modes of convolution clock_gettime(CLOCK_MONOTONIC, &tstart); convStandard<<<grid_size, N>>>(d_MATDIM, d_KERDIM, d_mat, d_ker, d_res_standard); clock_gettime(CLOCK_MONOTONIC, &tend); elapsed = ((double)tend.tv_sec + 1.0e-9*tend.tv_nsec) - ((double)tstart.tv_sec + 1.0e-9*tstart.tv_nsec); cout << "Standard convolution took " << elapsed << " seconds.\n"; clock_gettime(CLOCK_MONOTONIC, &tstart); convBinW<<<grid_size, N>>>(d_MATDIM, d_KERDIM, d_mat, d_ker_bin, d_res_binW); clock_gettime(CLOCK_MONOTONIC, &tend); elapsed = ((double)tend.tv_sec + 1.0e-9*tend.tv_nsec) - ((double)tstart.tv_sec + 1.0e-9*tstart.tv_nsec); cout << "Binary weights took " << elapsed << " nanoseconds.\n"; clock_gettime(CLOCK_MONOTONIC, &tstart); convBinWBinI<<<grid_size, N>>>(d_MATDIM, d_KERDIM, d_mat_bin, d_ker_bin, d_res_binWbinI); clock_gettime(CLOCK_MONOTONIC, &tend); elapsed = ((double)tend.tv_sec + 1.0e-9*tend.tv_nsec) - ((double)tstart.tv_sec + 1.0e-9*tstart.tv_nsec); cout << "Binary inputs and binary weights took " << elapsed << " nanoseconds.\n"; cout << elapsed << "\n"; // Fetch the results from device cudaMemcpy(h_res_standard, d_res_standard, res_standard_size, cudaMemcpyDeviceToHost); cudaMemcpy(h_res_binW, d_res_binW, res_binW_size, cudaMemcpyDeviceToHost); cudaMemcpy(h_res_binWbinI, d_res_binWbinI, res_binWbinI_size, cudaMemcpyDeviceToHost); // TODO DEBUG: Print the results cout << "Standard convolution DOUBLExDOUBLE\n"; printMatrix(MATDIM-KERDIM+1, h_res_standard); cout << "Binary weight convolution DOUBLExBITS\n"; printMatrix(MATDIM-KERDIM+1, h_res_binW); cout << "Binary weights and binary inputs BITSxBITS\n"; printMatrix(MATDIM-KERDIM+1, (double*) h_res_binWbinI); cout << "dim: " << MATDIM-KERDIM+1 << "x" << MATDIM-KERDIM+1 << "\n{\n"; for (uint32_t i = 0; i < MATDIM-KERDIM+1; i++) { for (uint32_t j = 0; j < MATDIM-KERDIM+1; j++) { cout << (uint32_t) h_res_binWbinI[i*(MATDIM-KERDIM+1)+j] << ", "; } cout << '\n'; } cout << "}\n"; cudaFree(d_mat); cudaFree(d_ker); cudaFree(d_mat_bin); cudaFree(d_ker_bin); cudaFree(d_res_standard); cudaFree(d_res_binW); cudaFree(d_res_binWbinI); cudaFree(d_MATDIM); cudaFree(d_KERDIM); return 0; }
19,442
#include<stdio.h> #include<stdlib.h> #include<sys/time.h> #define NUM 32 #define CUDA_ERROR_EXIT(str) do{\ cudaError err = cudaGetLastError();\ if( err != cudaSuccess){\ printf("Cuda Error: '%s' for %s\n", cudaGetErrorString(err), str);\ exit(-1);\ }\ }while(0); __global__ void D_Mul(int *dA, int *dB, int *dC) { int i = threadIdx.x; // int i = blockIdx.x * blockDim.x + threadIdx.x; dC[i] = dA[i] * dB[i]; } int main(int argc, char **argv) { int ctr; int *hA, *hB, *hC; int *dA, *dB, *dC; int size = NUM * sizeof(int); /*Allocate memory on the host (CPU) */ hA = (int *) malloc(size); if(!hA){ perror("malloc"); exit(-1); } hB = (int *) malloc(size); if(!hB){ perror("malloc"); exit(-1); } hC = (int *) malloc(size); if(!hC){ perror("malloc"); exit(-1); } /*Initialize hA and hB*/ for(ctr=0; ctr < NUM; ++ctr) hA[ctr] = hB[ctr] = ctr+1; /*Allocate memory on the device (GPU) */ cudaMalloc(&dA, size); CUDA_ERROR_EXIT("cudaMalloc"); cudaMalloc(&dB, size); CUDA_ERROR_EXIT("cudaMalloc"); cudaMalloc(&dC, size); CUDA_ERROR_EXIT("cudaMalloc"); /*Copy hA --> dA and hB --> dB */ cudaMemcpy(dA, hA, size, cudaMemcpyHostToDevice); CUDA_ERROR_EXIT("memcpy1"); cudaMemcpy(dB, hB, size, cudaMemcpyHostToDevice); CUDA_ERROR_EXIT("memcpy1"); /*Invoke the kernel*/ D_Mul<<<1, NUM>>>(dA, dB, dC); //int blocks = (NUM + 1023) >> 10; //D_Mul<<<blocks, 1024>>>(dA, dB, dC); CUDA_ERROR_EXIT("kernel invocation"); printf("kernel successful\n"); /*Copy back results*/ cudaMemcpy(hC, dC, size, cudaMemcpyDeviceToHost); CUDA_ERROR_EXIT("memcpy"); for(ctr=0; ctr < NUM; ++ctr) printf("%d %d %d\n", hA[ctr], hB[ctr], hC[ctr]); free(hA); free(hB); free(hC); cudaFree(dA); cudaFree(dB); cudaFree(dC); }
19,443
#include <device_launch_parameters.h> #include <cstdio> extern "C" { // PUT YOUR KERNEL FUNCTION HERE __global__ void bfs_visit_next( int* adjacencyList, int* edgesOffset, int* edgesSize, int* distance, int* parent, int* currentQueue, int* nextQueue, int queueSize, int* nextQueueSize, int* degrees, int* incrDegrees ) { int tid = blockIdx.x * blockDim.x + threadIdx.x; if (tid < queueSize) { int v = currentQueue[tid]; for (int i = edgesOffset[v]; i < edgesOffset[v] + edgesSize[v]; i++) { int u = adjacencyList[i]; if (parent[u] == -1) // Not visited { // Visit parent[u] = v; distance[u] = distance[v] + 1; int pos = atomicAdd(nextQueueSize, 1); nextQueue[pos] = u; } } } } }
19,444
#include <iostream> #include "../include/gpu_queue.h" #include <thrust/device_vector.h> #define def_dvec(t) thrust::device_vector<t> #define to_ptr(x) thrust::raw_pointer_cast(&x[0]) using namespace std; const int MAX_QUEUE_SIZE = 50; __global__ void test(float *output){ gpu_queue<float, MAX_QUEUE_SIZE> que; for(int i=1;i<=MAX_QUEUE_SIZE;++i){ que.push(1.7*i); } int idx = 0, k = 0; while(!que.empty()){ que.pop_k(k); if(que.empty()) return; output[idx] = que.front(); idx += 1; output[idx] = que.back(); k += 1; idx += 1; } } int main(){ def_dvec(float) dev_out(40, 0); test<<<1, 1>>>(to_ptr(dev_out)); for(auto k:dev_out) cout<<k<<' '; cout<<endl; return 0; }
19,445
#include <iostream> #include <chrono> void Run(int particlesCount, int blockSize, float3 *hostPositions, float deltaTime, float softeningRate, int iterationsCount, bool validate = false); float3 *GenerateParticles(int particlesCount) { auto *positions = new float3[particlesCount]; for (int i = 0; i < particlesCount; i++) { positions[i].x = static_cast <float> (rand()) / static_cast <float> (RAND_MAX) * 0.5f + 0.25f; positions[i].y = static_cast <float> (rand()) / static_cast <float> (RAND_MAX) * 0.5f + 0.25f; positions[i].z = 1.0f; } return positions; } void Benchmark(int particlesCount, int blockSize, int iterationsCount) { float deltaTime = 0.000001; float softeningRate = 0.00001; float3 *positions = GenerateParticles(particlesCount); auto start = std::chrono::high_resolution_clock::now(); Run(particlesCount, blockSize, positions, deltaTime, softeningRate, iterationsCount); auto finish = std::chrono::high_resolution_clock::now(); std::chrono::duration<double> elapsed = finish - start; std::cout << "Time: " << elapsed.count() << std::endl; delete[] positions; } int main(int argc, char **argv) { srand(static_cast <unsigned> (time(nullptr))); int particlesCount = 8192; int blockSize = 1024; int iterationsCount = 200000; if (argc > 1) { particlesCount = std::stoi(argv[1]); } if (argc > 2) { blockSize = std::stoi(argv[2]); } if (argc > 3) { iterationsCount = std::stoi(argv[3]); } if (particlesCount % blockSize != 0) { std::cout << "Number of particles must be divisible by block size" << std::endl; return -1; } if (blockSize % 4 != 0) { std::cout << "Block size must be divisible by 4" << std::endl; return -1; } Benchmark(particlesCount, blockSize, iterationsCount); return 0; }
19,446
#include "includes.h" extern "C" { #ifndef REAL #define REAL float #endif } __global__ void ge_set (const int sd, const int fd, const REAL val, REAL* a, const int offset_a, const int ld_a) { const int gid_0 = blockIdx.x * blockDim.x + threadIdx.x; const int gid_1 = blockIdx.y * blockDim.y + threadIdx.y; const bool valid = (gid_0 < sd) && (gid_1 < fd); if (valid) { a[offset_a + gid_0 + gid_1 * ld_a] = val; } }
19,447
#include<stdio.h> #include<cuda.h> __global__ void hwkernal(){ printf("hello world\n"); } int main(){ hwkernal<<<1,5>>>(); cudaThreadSynchronize();; }
19,448
#include "includes.h" __global__ void kernelF(const float *d_xAx, const float *d_bx, const float *d_c, float *d_y) { *d_y = *d_xAx + *d_bx + *d_c; }
19,449
#include<iostream> #include<cstdlib> using namespace std; __global__ void vectorAdd(int *a, int *b, int *result, int n) { int tid = blockIdx.x*blockDim.x + threadIdx.x; if(tid <= n) { result[tid] = a[tid] + b[tid]; } } void print_array(int *a, int N) { for(int i=0; i<N; i++) { cout<<" "<<a[i]; } cout<<endl; } void init_array(int *a, int N) { for(int i=0; i<N; i++) { a[i] = rand()%10 + 1; } } int main() { int *a, *b, *c; int *a_dev, *b_dev, *c_dev; int n = 8; //24 a = (int*)malloc(n * sizeof(n)); b = (int*)malloc(n * sizeof(n)); c = (int*)malloc(n * sizeof(n)); int size = n * sizeof(int); cudaMalloc(&a_dev, size); cudaMalloc(&b_dev, size); cudaMalloc(&c_dev, size); init_array(a, n); init_array(b, n); print_array(a, n); print_array(b, n); //cudaEvent_t start, end; //cudaEventCreate(&start); //cudaEventCreate(&end); cudaMemcpy(a_dev, a, size, cudaMemcpyHostToDevice); cudaMemcpy(b_dev, b, size, cudaMemcpyHostToDevice); //int threads = 1024; //int blocks = (n+threads-1)/threads; //cudaEventRecord(start); //vectorAdd<<<blocks,threads>>>(a_dev, b_dev, c_dev, n); vectorAdd<<<1,1024>>>(a_dev, b_dev, c_dev, n); //cudaEventRecord(end); //cudaDeviceSynchronize(); //float time = 0.0; //cudaEventElapsedTime(&time, start, end); cudaMemcpy(c, c_dev, size, cudaMemcpyDeviceToHost); cout<<"Results : "<<endl; print_array(c, n); //cout<<"Time elapsed : "<<time<<endl; cudaFree(a_dev); cudaFree(b_dev); cudaFree(c_dev); return 0; }
19,450
__device__ float giveFloat(){ return 3.2;}
19,451
#include <stdio.h> #include "kernelMedianFilter.cu" #define BNX 16 #define BNY 16 #if defined Zero #define KER "kernelFilterZero" #elif defined Shrink #define KER "kernelFilterShrink" #elif defined Extend #define KER "kernelFilterExtend" #else #define KER "kernelFilterDiscard" #endif #ifdef Bubble #define MDN "medianBubble" #else #define MDN "medianNoSort" #endif #define cuCheck(arg) getCudaError(__FILE__, __LINE__, arg) inline void getCudaError(const char *file, const int line, cudaError_t cuerr) { if(cuerr != cudaSuccess) { printf("cudaError at %s(%d): %s\n", file, line, cudaGetErrorString(cuerr)); cudaDeviceReset(); exit(2); } } int main(int argc, char *argv[]) { const int nInX = 600; const int nInY = 600; size_t sizeXY = nInX*nInY*sizeof(float); float *hostInput, *hostOutput; hostInput = new float[nInX*nInY] (); hostOutput = new float[nInX*nInY] (); float *deviceInput, *deviceOutput; cudaSetDevice(0); cudaMalloc((float**) &deviceInput , sizeXY); cudaMalloc((float**) &deviceOutput, sizeXY); FILE* fp = fopen("example/data_orig.bin", "rb"); if( ! fp) { printf("Fatal error at %s(%d): fail to open file example/data_orig.bin", __FILE__, __LINE__); exit(1); } fread(hostInput, sizeXY, 1, fp); fclose(fp); cuCheck( cudaMemcpy(deviceInput, hostInput, sizeXY, cudaMemcpyHostToDevice) ); dim3 Block(BNX, BNY, 1); dim3 Grid(ceil(1.0F*nInX/BNX), ceil(1.0F*nInY/BNY), 1); float elapsedTime; cudaEvent_t startEvent, stopEvent; cudaEventCreate(&startEvent); cudaEventCreate(&stopEvent); // Warmup Launching cudaEventRecord(startEvent, 0); warmUp <<< Grid, Block >>> (nInX, nInY, deviceInput, deviceOutput); cuCheck( cudaGetLastError() ); cudaEventRecord(stopEvent, 0); cudaEventSynchronize(stopEvent); cudaEventElapsedTime(&elapsedTime, startEvent, stopEvent); // Kernel Launching cudaEventRecord(startEvent, 0); #if defined Zero kernelFilterZero <<< Grid, Block >>> (nInX, nInY, deviceInput, deviceOutput); #elif defined Shrink kernelFilterShrink <<< Grid, Block >>> (nInX, nInY, deviceInput, deviceOutput); #elif defined Extend kernelFilterExtend <<< Grid, Block >>> (nInX, nInY, deviceInput, deviceOutput); #else kernelFilterDiscard <<< Grid, Block >>> (nInX, nInY, deviceInput, deviceOutput); #endif cuCheck( cudaGetLastError() ); cudaEventRecord(stopEvent, 0); cudaEventSynchronize(stopEvent); cudaEventElapsedTime(&elapsedTime, startEvent, stopEvent); printf("Elapsed time of %s with %s @%dx%d is: %5.3f ms.\n", KER, MDN, LSM, LSM, elapsedTime); cuCheck( cudaMemcpy(hostOutput, deviceOutput, sizeXY, cudaMemcpyDeviceToHost) ); fp = fopen("example/data_filt.bin", "wb"); fwrite(hostOutput, sizeXY, 1, fp); fclose(fp); delete [] hostInput; delete [] hostOutput; cudaFree(deviceInput); cudaFree(deviceOutput); cudaDeviceReset(); return 0; }
19,452
#include <stdio.h> #include <stdlib.h> #include <time.h> #define CLOCKS_PAR_SEC 1000000l #define N 256 /************************************************************************/ /* Example */ /************************************************************************/ __global__ void matVec(float *a, float *b, float *c) { int x = threadIdx.x + blockIdx.x * blockDim.x; int index = x * N; float tmp = 0; for (int i=0; i<N; i++) { tmp += a[index + i] * b[i]; } c[x] = tmp; } /************************************************************************/ /* Main */ /************************************************************************/ int main(int argc, char* argv[]) { float *host_a, *host_b, *host_c; float *dev_a, *dev_b, *dev_c; const int size = N * sizeof(float); host_a = (float*)malloc( size * N); host_b = (float*)malloc( size); host_c = (float*)malloc( size); // cudaHostAlloc(&dev_a, size*N, cudaHostAllocDefault); cudaMalloc( (void**)&dev_a, size * N); cudaMalloc( (void**)&dev_b, size ); cudaMalloc( (void**)&dev_c, size ); for (int i = 0; i < N*N; ++i) { host_a[i] = 3.0; } for (int i = 0; i < N; ++i ) { host_b[i] = 2.0; } /* mesure du temps d'execution */ cudaEvent_t start, stop; float time; cudaEventCreate(&start); cudaEventCreate(&stop); cudaEventRecord(start, 0); /* Copie des données vers le GPU */ cudaMemcpy(dev_a, host_a, size * N, cudaMemcpyHostToDevice); cudaMemcpy(dev_b, host_b, size, cudaMemcpyHostToDevice); /* execution de l'opération sur GPU */ dim3 ThreadPerBlock ( 128 , 1 ); dim3 BlockPerGrid ( N/128 , 1 ); matVec<<<BlockPerGrid, ThreadPerBlock>>>(dev_a, dev_b, dev_c); cudaMemcpy( host_c, dev_c, size, cudaMemcpyDeviceToHost ); /* Fin de la mesure du temps d'execution du programme */ cudaEventRecord(stop, 0); cudaEventSynchronize( stop ); cudaEventElapsedTime(&time, start, stop); cudaEventDestroy(start); cudaEventDestroy(stop); cudaFree( dev_c ); /* vérification des résultats */ for (int i=0; i<N; i++) { if (host_c[i] != 6*N) { // printf("erreur à l'adresse %d \n", i); printf("c[%3d] = %5.1f \n", i, host_c[i] ); } } /* affichage du temps d'execution */ printf("temps écoule sur GPU : %f ms \n", time); /********************************************** execution de la même opération sur CPU **********************************************/ int j=0; clock_t t1, t2; double tempsCPU; t1 = clock(); /* execution de l'opération sur CPU */ for (j=0; j<1000; j++) { for (int i=0; i<N; i++) host_c[i] = host_a[i] + host_b[i]; } t2 = clock(); tempsCPU = (double)difftime(t2, t1)/(double)CLOCKS_PAR_SEC; /* affichage du temps d'execution */ printf("temps écoule sur CPU: %f ms \n", tempsCPU * 1000.0 / j); free(host_a); free(host_b); free(host_c); return EXIT_SUCCESS; }
19,453
#include <stdio.h> #include <time.h> #include <unistd.h> #include <stdlib.h> #include <math.h> __global__ void Mat_hist(int x[], int z[], int n) { int thread_id = threadIdx.x + blockIdx.x * blockDim.x; __shared__ int hist[256]; if(threadIdx.x < 256) hist[threadIdx.x]=0; __syncthreads(); if(thread_id<n) { atomicAdd(&hist[x[thread_id]],1); } __syncthreads(); if(threadIdx.x < 256) atomicAdd(&z[threadIdx.x],hist[threadIdx.x]); } /* *argumentos *1 - n_elementos *2 - threads por bloco */ int main(int argc, char* argv[]) { int n, th_p_blk; int *h_x, *h_z, *h_z_res; int *d_x, *d_z; size_t size,size_hist; th_p_blk = 1024; n = 32; if(argc > 1) n = atoi(argv[1]); if(argc > 2) th_p_blk = atoi(argv[2]); int blks = ceil((float)(n)/(float)th_p_blk); /* Define vector length */ size = n*sizeof(int); size_hist = 256*sizeof(int); // Allocate memory for the vectors on host memory. h_x = (int*) malloc(size); h_z = (int*) malloc(size_hist); h_z_res = (int*) malloc(size_hist); for (int i = 0; i < 256; i++) { h_z_res[i] = 0; h_z[i] = 0; } for (int i = 0; i < n; i++) { h_x[i] = (int)rand()%256; h_z_res[h_x[i]]++; } /* Allocate vectors in device memory */ cudaMalloc(&d_x, size); cudaMalloc(&d_z, size_hist); /* Copy vectors from host memory to device memory */ cudaMemcpy(d_x, h_x, size, cudaMemcpyHostToDevice); cudaMemcpy(d_z, h_z, size_hist, cudaMemcpyHostToDevice); cudaEvent_t start, stop; cudaEventCreate (&start); cudaEventCreate (&stop); cudaEventRecord (start, 0); // 0 is the stream number // do Work… /* Kernel Call */ Mat_hist<<<blks,th_p_blk>>>(d_x, d_z, n); cudaThreadSynchronize(); cudaEventRecord (stop, 0); cudaEventSynchronize (stop); float elapsedTime; cudaEventElapsedTime (&elapsedTime, start, stop); printf ("[%d,%.5f],\n", n,elapsedTime); cudaEventDestroy(start); cudaEventDestroy(stop); cudaMemcpy(h_z, d_z, size_hist, cudaMemcpyDeviceToHost); bool certo=true; //printf("threads/blk %d -- blocks %d\n",th_p_blk,blks); for (int i = 0; i < 256; i++){ //printf("%d - %d\n",h_z_res[i],h_z[i]); if(h_z_res[i] != h_z[i]) certo=false; } if(!certo) printf("\n*****\n certo = %s\n*****\n", certo ? "true" : "false"); /* Free device memory */ cudaFree(d_x); cudaFree(d_z); /* Free host memory */ free(h_x); free(h_z); free(h_z_res); return 0; } /* main */
19,454
#include <stdio.h> #include <assert.h> #include <pthread.h> #define THREADS 4 int intervalsT=100000000; double partialStore[]={0.0, 0.0, 0.0, 0.0}; // -:YOUR CODE HERE:- void *threadRoutine(void *param) { // -:YOUR CODE HERE:- return 0; } void calculatePIHostMultiple(){ // -:YOUR CODE HERE:- } void calculatePIHostSingle(){ int i; double height,x; double store,base; int intervals=100000000; base=(double)(1.0/intervals); for (i=0, store=0.0, x=0.0; i<intervals; i++) { x = i * base; height = 4/(1 + x * x); store += base * height; } printf("PI (single th) =%f \n",store); } int main(){ calculatePIHostSingle(); calculatePIHostMultiple(); }
19,455
#include <iostream> #include <stdio.h> #include "clahe.cuh" #define BIN_SIZE 101 __global__ void clahe(float* L, int width, int height, int threshold, float* dCdf) { __shared__ int bins[BIN_SIZE]; computeHistogram(L, width, height, bins); clipHistogram(bins, threshold); generateCdf(bins, dCdf); } __global__ void transformRgbToLab(unsigned char* pixels, int width, int height, float* L, float* A, float* B){ // pixels: length = width * height * 3 // L: length = width * height // A: length = width * height // B: length = width * height //https://stackoverflow.com/questions/49150250/convert-bgr-to-lab-without-opencv //http://www.easyrgb.com/en/math.php int i = threadIdx.x + blockDim.x * blockIdx.x; if (i < width * height) { float r = (float)pixels[3*i]/255; float g = (float)pixels[3*i+1]/255; float b = (float)pixels[3*i+2]/255; r = (r > 0.04045) ? std::pow((r + 0.055) / 1.055, 2.4) : r / 12.92; r *= 100; g = (g > 0.04045) ? std::pow((g + 0.055) / 1.055, 2.4) : g / 12.92; g *= 100; b = (b > 0.04045) ? std::pow((b + 0.055) / 1.055, 2.4) : b / 12.92; b *= 100; // reference standard sRGB float x = (r * 0.412453 + g * 0.357580 + b * 0.180423) / 95.047; float y = (r * 0.212671 + g * 0.715160 + b * 0.072169) / 100.; float z = (r * 0.019334 + g * 0.119193 + b * 0.950227) / 108.883; x = (x > 0.008856)? std::pow(x, 0.3333) : (7.787 * x) + 0.137931; y = (y > 0.008856)? std::pow(y, 0.3333) : (7.787 * y) + 0.137931; z = (z > 0.008856)? std::pow(z, 0.3333) : (7.787 * z) + 0.137931; L[i] = (116.0 * y) - 16.0; A[i] = 500.0 * (x - y); B[i] = 200.0 * (y - z); } } __global__ void transformLabToRgb(unsigned char* pixels, int width, int height, float* L, float* A, float* B) { // Reference: https://stackoverflow.com/questions/7880264/convert-lab-color-to-rgb // pixels: length = width * height * 3 // L: length = width * height // A: length = width * height // B: length = width * height int i = (threadIdx.x + blockDim.x * blockIdx.x); if (i < width * height) { float y = (L[i] + 16. ) / 116.; float x = A[i] / 500. + y; float z = y - B[i] / 200.; z = (z > 0.0) ? z : 0.0; y = (pow(y, 3) > 0.008856) ? pow(y, 3) : (y - 16. / 116.) / 7.787; x = (pow(x, 3) > 0.008856) ? pow(x, 3) : (x - 16. / 116.) / 7.787; z = (pow(z,3) > 0.008856) ? pow(z,3) : (z - 16. / 116.) / 7.787; x = 95.047 * x / 100.; y = 100.000 * y / 100.; z = 108.883 * z / 100.; float r = x * 3.2406 + y * -1.5372 + z * -0.4986; float g = x * -0.9689 + y * 1.8758 + z * 0.0415; float b = x * 0.0557 + y * -0.2040 + z * 1.0570; r = (r > 0.0031308) ? 1.055 * pow(r , (1 / 2.4)) - 0.055 : 12.92 * r; g = (g > 0.0031308) ? 1.055 * pow(g , (1 / 2.4)) - 0.055 : 12.92 * g; b = (b > 0.0031308) ? 1.055 * pow( b , (1 / 2.4)) - 0.055 : 12.92 * b; r = (r > 1) ? 1 : r; r = (r > 0) ? r : 0; g = (g > 1) ? 1 : g; g = (g > 0) ? g : 0; b = (b > 1) ? 1 : b; b = (b > 0) ? b : 0; pixels[3 * i] = (unsigned char)(r * 255.); pixels[3 * i + 1] = (unsigned char)(g * 255.); pixels[3 * i + 2] = (unsigned char)(b * 255.); } } // called by kernel<<<dimGrid, dimBlock>>>() __device__ void computeHistogram(float* L, int width, int height, int* bins) { // L: length = width * height // bins: length = BIN_SIZE int row = threadIdx.y + blockIdx.y * blockDim.y; int col = threadIdx.x + blockIdx.x * blockDim.x; int i = row * width + col; if (i < width * height) { int c = (int)L[i]; atomicAdd(&bins[c], 1); } } // called by kernel<<<dimGrid, dimBlock>>>() __device__ void clipHistogram(int* bins, int threshold) { __shared__ int count_overlimit; int i = threadIdx.x + threadIdx.y * blockDim.x; if(i == 0) count_overlimit=0; __syncthreads(); if(i < BIN_SIZE) { if(bins[i] > threshold) { atomicAdd(&count_overlimit, bins[i] - threshold); bins[i] = threshold; } } __syncthreads(); if(i < BIN_SIZE) bins[i] = bins[i] + count_overlimit/BIN_SIZE + (i < count_overlimit%BIN_SIZE); __syncthreads(); } // called by kernel<<<dimGrid, dimBlock>>>() __device__ void generateCdf(int* bins, float* dCdf) { int i = threadIdx.x + threadIdx.y * blockDim.x; // small array so here use sequential scan if (i == 0) { for(int j = 1; j < BIN_SIZE; j++) bins[j]= bins[j]+bins[j-1]; } __syncthreads(); if ( i < BIN_SIZE ) { dCdf[(blockIdx.x + blockIdx.y * gridDim.x) * BIN_SIZE + i] = (float)bins[i]/(float)bins[BIN_SIZE - 1]; } __syncthreads(); } __global__ void pixelInterpolate(float* L, int width, int height, float* dCdf) { __shared__ float topLeft[BIN_SIZE]; __shared__ float topRight[BIN_SIZE]; __shared__ float bottomLeft[BIN_SIZE]; __shared__ float bottomRight[BIN_SIZE]; int row = threadIdx.y + blockIdx.y * blockDim.y; int col = threadIdx.x + blockIdx.x * blockDim.x; int i = row * width + col; int blockId = blockIdx.x + blockIdx.y * gridDim.x; int blockCdf = blockId * BIN_SIZE; int threadI = threadIdx.x + threadIdx.y * blockDim.x; if (i < width * height) { int index = (int)L[i]; float temp = dCdf[index + blockCdf] * 100; if (threadI < BIN_SIZE) { topLeft[threadI] = dCdf[blockCdf + threadI]; } if (blockIdx.x != gridDim.x - 1 && blockIdx.y != gridDim.y - 1) { if (threadI < BIN_SIZE) { topRight[threadI] = dCdf[blockCdf + BIN_SIZE + threadI]; bottomLeft[threadI] = dCdf[blockCdf + gridDim.x * BIN_SIZE + threadI]; bottomRight[threadI] = dCdf[blockCdf + gridDim.x * BIN_SIZE + BIN_SIZE + threadI]; } __syncthreads(); temp = (blockDim.x - threadIdx.x) * (blockDim.y - threadIdx.y) * topLeft[index] + threadIdx.x * (blockDim.y - threadIdx.y) * topRight[index] + (blockDim.x - threadIdx.x) * threadIdx.y * bottomLeft[index] + threadIdx.x * threadIdx.y * bottomRight[index]; L[i] = (temp / (blockDim.x * blockDim.y)) * 100; } else if (blockIdx.x == gridDim.x - 1 && blockIdx.y != gridDim.y - 1) { if (threadI < BIN_SIZE) { bottomLeft[threadI] = dCdf[blockCdf + gridDim.x * BIN_SIZE + threadI]; } __syncthreads(); temp = (blockDim.y - threadIdx.y) * topLeft[index] + threadIdx.y * bottomLeft[index]; L[i] = (temp / blockDim.y) * 100; } else if (blockIdx.x != gridDim.x - 1 && blockIdx.y == gridDim.y - 1) { if (threadI < BIN_SIZE) { topRight[threadI] = dCdf[blockCdf + BIN_SIZE + threadI]; } __syncthreads(); temp = (blockDim.x - threadIdx.x) * topLeft[index] + threadIdx.x * topRight[index]; L[i] = (temp / blockDim.x) * 100; } else { __syncthreads(); temp = topLeft[index]; L[i] = temp * 100; } } __syncthreads(); }
19,456
#include "includes.h" __global__ void intArrayIdentity(int size, int *input, int *output, int length) { const int ix = threadIdx.x + blockIdx.x * (long)blockDim.x; if (ix < size) { // copy int array const int *inArrayBody = &input[ix * length]; int *outArrayBody = &output[ix * length]; for (long i = 0; i < length; i++) { outArrayBody[i] = inArrayBody[i]; } } }
19,457
#include <stdio.h> int main() { int nDevices; cudaGetDeviceCount(&nDevices); for (int i = 0; i < nDevices; i++) { cudaDeviceProp prop; cudaGetDeviceProperties(&prop, i); printf("Device Number: %d\n", i); printf(" Device name: %s\n", prop.name); printf(" Memory Clock Rate (KHz): %d\n", prop.memoryClockRate); printf(" Global Memory (bytes): %ld\n", prop.totalGlobalMem); printf(" Memory Bus Width (bits): %d\n", prop.memoryBusWidth); printf(" Peak Memory Bandwidth (GB/s): %f\n", 2.0*prop.memoryClockRate*(prop.memoryBusWidth/8)/1.0e6); printf(" Max Thread per block : %d \n",prop.maxThreadsPerBlock); printf(" Multiproc count : %d \n",prop.multiProcessorCount); printf(" Max Grid size : %d %d %d \n",prop.maxGridSize[0], prop.maxGridSize[1], prop.maxGridSize[2]); printf(" Max thread dim : %d %d %d \n",prop.maxThreadsDim[0], prop.maxThreadsDim[1], prop.maxThreadsDim[2]); printf(" Registres per block : %d \n",prop.regsPerBlock); printf("\n"); } }
19,458
#include <stdlib.h> #include <stdio.h> #include<math.h> #include<time.h> // row-wise nonzero counting __global__ void count_nonzero(int n, float *A, int *nz){ int row = blockIdx.x*blockDim.x + threadIdx.x; int count = 0; for (int i=0; i<n; i++) if (A[row*n+i] != 0) count += 1; nz[row] = count; } // partial sum calculation __global__ void partial_sum(int n, int *nz, int *x){ int row = blockIdx.x*blockDim.x + threadIdx.x; int sum = 0; for (int i=0; i<row+1; i++){ sum += nz[i]; } x[row+1] = sum; } // collection of nonzero value and its column index __global__ void value_colidx(int n, int *nz, float *A, int *psum, int *x, float *y){ int row = blockIdx.x*blockDim.x + threadIdx.x; int count = 0; int thread_start = psum[row]; for (int i=0; i<n; i++){ // stop if all nz are found if (count <nz[row]){ if (A[row*n+i] != 0){ x[thread_start+count] = i; y[thread_start+count] = A[row*n+i]; count += 1; } } } } int main(int argc, char **argv) { //int n=2000; int n = atoi(argv[1]); int memSize = n*sizeof(int); cudaEvent_t start, stop, start_all, stop_all; cudaEventCreate(&start); cudaEventCreate(&stop); cudaEventCreate(&start_all); cudaEventCreate(&stop_all); int *nz; int*d_nz; nz = (int*) malloc (n*sizeof(*nz)); cudaMalloc( (void**) &d_nz, memSize); float *A, *d_A; A = (float*) malloc (n*n*sizeof(*A)); cudaMalloc( (void**) &d_A, n*n*sizeof(float)); // initialize matrix for(int j=0; j<n; j++){ nz[j] = 0; for(int k=0; k<n; k++){ A[j*n+k] = 0; if ((j+k) %2 != 0) A[j*n+k] = (float) j+k; } } cudaMemcpy( d_A, A, n*memSize, cudaMemcpyHostToDevice); cudaMemcpy( d_nz, nz, n*sizeof(int), cudaMemcpyHostToDevice); dim3 block(1); dim3 grid(n); // counting number of nonzero elements from each row cudaEventRecord(start); cudaEventRecord(start_all); count_nonzero<<<grid,block>>>(n, d_A, d_nz); cudaEventRecord(stop); cudaEventSynchronize(stop); float milliseconds = 0; cudaEventElapsedTime(&milliseconds, start, stop); printf("runtime nz[s]: %f\n", milliseconds/1000.0); // calculating partial sum int *psum, *d_psum; psum = (int*) malloc ((n+1)*sizeof(*psum)); cudaMalloc( (void**) &d_psum, n*memSize); // no need nz in CPU in fact //cudaMemcpy( d_nz, nz, memSize, cudaMemcpyHostToDevice); cudaEventRecord(start); partial_sum<<<grid,block>>>(n, d_nz, d_psum); cudaEventRecord(stop); cudaEventSynchronize(stop); milliseconds = 0; cudaEventElapsedTime(&milliseconds, start, stop); printf("runtime psum[s]: %f\n", milliseconds/1000.0); // copy psum (rowptr) from GPU to CPU cudaMemcpy( psum, d_psum, (n+1)*sizeof(*psum), cudaMemcpyDeviceToHost); psum[0] = 0; // size of CSR int m = psum[n]; int *colidx, *d_colidx; colidx = (int*) calloc(m, sizeof(int)); cudaMalloc( (void**) &d_colidx, m*sizeof(int)); float *value, *d_value; value = (float*) malloc (m*sizeof(float)); cudaMalloc( (void**) &d_value, m*sizeof(float)); cudaMemcpy( d_colidx, colidx, m*sizeof(int), cudaMemcpyHostToDevice); cudaMemcpy( d_value, value, m*sizeof(float), cudaMemcpyHostToDevice); // collect value and column index based on partial sum cudaEventRecord(start); value_colidx<<<grid,block>>>(n, d_nz, d_A, d_psum, d_colidx, d_value); cudaEventRecord(stop); cudaEventSynchronize(stop); cudaEventRecord(stop_all); milliseconds = 0; cudaEventElapsedTime(&milliseconds, start, stop); printf("runtime CSR[s]: %f\n", milliseconds/1000.0); cudaEventElapsedTime(&milliseconds, start_all, stop_all); printf("runtime ALL[s]: %f\n", milliseconds/1000.0); // copy colidx, value from GPU to CPU cudaMemcpy( colidx, d_colidx, m*sizeof(int), cudaMemcpyDeviceToHost); cudaMemcpy( value, d_value, m*sizeof(float), cudaMemcpyDeviceToHost); }
19,459
#include<stdio.h> #include<stdlib.h> __global__ void mul(int *a, int *b, int *c, int n) { int row = blockIdx.y*blockDim.y + threadIdx.y; int col = blockIdx.x*blockDim.x + threadIdx.x; int sum = 0; int i; if(row < n && col < n) { for(i =0; i<n; i++) { sum += a[row*n+i]*b[i*n+col]; } c[row*n+col] = sum; } } int main(int argc, char **argv) { int N; int *a, *b, *c, *d, *da, *db, *dc; int i,j,k; scanf("%d",&N); cudaEvent_t start, stop; cudaEventCreate(&start); cudaEventCreate(&stop); a = (int *)calloc(N*N,sizeof(int)); b = (int *)calloc(N*N,sizeof(int)); c = (int *)calloc(N*N,sizeof(int)); d = (int *)calloc(N*N,sizeof(int)); for(i = 0; i < N*N; i++) { a[i] = rand()%48; b[i] = rand()%50; } int size = N*N*sizeof(int); cudaMalloc(&da,size); cudaMalloc(&db,size); cudaMalloc(&dc,size); cudaMemcpy(da,a,size,cudaMemcpyHostToDevice); cudaMemcpy(db,b,size,cudaMemcpyHostToDevice); dim3 grid((N+15)/16,(N+15)/16); dim3 block(16,16); cudaEventRecord(start); mul<<<grid,block>>>(da,db,dc,N); cudaEventRecord(stop); cudaMemcpy(c,dc,size,cudaMemcpyDeviceToHost); cudaEventSynchronize(stop); float ms; cudaEventElapsedTime(&ms,start,stop); for(i = 0; i<N; i++) for(j = 0; j<N; j++) { d[i*N+j] = 0.0; for(k = 0; k<N; k++) { d[i*N+j] += a[i*N+k]*b[k*N+j]; } if(d[i*N+j] != c[i*N+j]) { printf("Inmcoreect\n"); exit(-2); } } printf("%lf\n",ms); }
19,460
#include<iostream> #include <sys/time.h> using namespace std; const int threadsPerBlock = 256; const int N = (1 <<20) -3; const int blocksPerGrid = (N + threadsPerBlock * 2 - 1)/ (threadsPerBlock * 2); // 维持block数量不变 const int iters = 100; __global__ void kernel4(float* arr, float* out, int N){ __shared__ float s_data[threadsPerBlock]; unsigned int tid = threadIdx.x; unsigned int i = threadIdx.x + blockIdx.x * (blockDim.x * 2); // 3的第一轮迭代,有一半的线程是idle的,现在把一个block的大小缩小一半 if(i < N){ s_data[tid] = arr[i] + arr[i + blockDim.x]; // 单独执行原来的第一轮迭代,后面代码不用变 } __syncthreads(); for(int s = blockDim.x/2; s > 0; s>>=1){ if(tid < s && i + s < N){ s_data[tid] += s_data[tid + s]; } __syncthreads(); } if(tid == 0){ out[blockIdx.x] = s_data[0]; } } __device__ void warpRecude(volatile float* s_data, int tid){ // volatile 关键字很重要,保证s_data从相应的内存单元取出,这里应该指gpu内存 s_data[tid] += s_data[tid + 32]; s_data[tid] += s_data[tid + 16]; s_data[tid] += s_data[tid + 8]; s_data[tid] += s_data[tid + 4]; s_data[tid] += s_data[tid + 2]; s_data[tid] += s_data[tid + 1]; } __global__ void kernel5(float* arr, float* out, int N){ __shared__ float s_data[threadsPerBlock]; unsigned int tid = threadIdx.x; unsigned int i = threadIdx.x + blockIdx.x * (blockDim.x * 2); // 3的第一轮迭代,有一半的线程是idle的,现在把一个block的大小缩小一半 if(i < N){ s_data[tid] = arr[i] + arr[i + blockDim.x]; // 单独执行原来的第一轮迭代,后面代码不用变 }else{ s_data[tid] = 0; } __syncthreads(); for(int s = blockDim.x/2; s > 32; s>>=1){ if(tid < s && i + s < N){ s_data[tid] += s_data[tid + s]; } __syncthreads(); } if(tid < 32){ warpRecude(s_data, tid); } if(tid == 0){ out[blockIdx.x] = s_data[0]; } } template<unsigned int blockSize> __device__ void warpRecude2(volatile float* s_data, int tid){ // volatile 关键字很重要,保证s_data从相应的内存单元取出,这里应该指gpu内存 if(blockSize >= 64) s_data[tid] += s_data[tid + 32]; // if 是防止blockSize小于64,比如blockSize为16,那么会直接到下面 if(blockSize >= 32) s_data[tid] += s_data[tid + 16]; if(blockSize >= 16) s_data[tid] += s_data[tid + 8]; if(blockSize >= 8) s_data[tid] += s_data[tid + 4]; if(blockSize >= 4) s_data[tid] += s_data[tid + 2]; if(blockSize >= 2) s_data[tid] += s_data[tid + 1]; } template<unsigned int blockSize> __global__ void reduce(float* arr, float* out, int N){ __shared__ float s_data[threadsPerBlock]; unsigned int tid = threadIdx.x; unsigned int i = threadIdx.x + blockIdx.x * (blockDim.x * 2); // 3的第一轮迭代,有一半的线程是idle的,现在把一个block的大小缩小一半 if(i < N){ s_data[tid] = arr[i] + arr[i + blockDim.x]; // 单独执行原来的第一轮迭代,后面代码不用变 }else{ s_data[tid] = 0; } __syncthreads(); if(blockSize >= 1024){ if(tid < 512){ s_data[tid] += s_data[tid+512]; } __syncthreads(); } if(blockSize >= 512){ if(tid < 256){ s_data[tid] += s_data[tid+256]; } __syncthreads(); } if(blockSize >= 256){ if(tid < 128){ s_data[tid] += s_data[tid+128]; } __syncthreads(); } if(blockSize >= 128){ if(tid < 64){ s_data[tid] += s_data[tid+64]; } __syncthreads(); } if(tid < 32){ warpRecude2<blockSize>(s_data, tid); } if(tid == 0){ out[blockIdx.x] = s_data[0]; } } void kernel6(float* arr, float* out, int N, cudaStream_t &stream){ // 展开所有的循环,去除循环 switch(threadsPerBlock){ case 1024: reduce<1024><<<blocksPerGrid, threadsPerBlock, 0, stream>>>(arr, out, N);break; case 512: reduce<512><<<blocksPerGrid, threadsPerBlock, 0, stream>>>(arr, out, N);break; case 256: reduce<256><<<blocksPerGrid, threadsPerBlock, 0, stream>>>(arr, out, N);break; case 128: reduce<128><<<blocksPerGrid, threadsPerBlock, 0, stream>>>(arr, out, N);break; case 64: reduce<64><<<blocksPerGrid, threadsPerBlock, 0, stream>>>(arr, out, N);break; case 32: reduce<32><<<blocksPerGrid, threadsPerBlock, 0, stream>>>(arr, out, N);break; case 16: reduce<16><<<blocksPerGrid, threadsPerBlock, 0, stream>>>(arr, out, N);break; case 8: reduce<8><<<blocksPerGrid, threadsPerBlock, 0, stream>>>(arr, out, N);break; case 4: reduce<4><<<blocksPerGrid, threadsPerBlock, 0, stream>>>(arr, out, N);break; case 2: reduce<2><<<blocksPerGrid, threadsPerBlock, 0, stream>>>(arr, out, N);break; case 1: reduce<1><<<blocksPerGrid, threadsPerBlock, 0, stream>>>(arr, out, N);break; } } void varifyOutput(float* predict, float* arr, int N){ float pred = 0.0; for(int i=0;i<blocksPerGrid;i++){ pred += predict[i]; } float result = 0.0; struct timeval s; struct timeval e; gettimeofday(&s,NULL); for(int t=0;t<iters;t++){ result = 0.0; for(int i=0;i<N;i++){ result += arr[i]; } } gettimeofday(&e,NULL); cout << "CPU Elapse time: " << ((e.tv_sec-s.tv_sec)*1000000+(e.tv_usec-s.tv_usec)) / iters / 1000.0 << " ms" << endl; cout << "predict: " << pred << endl << "result: " << result << endl; } int main(){ float* a_host, *r_host; float* a_device, *r_device; cudaMallocHost(&a_host, N * sizeof(float)); cudaMallocHost(&r_host, blocksPerGrid * sizeof(float)); cudaMalloc(&a_device, N * sizeof(float)); cudaMalloc(&r_device, blocksPerGrid * sizeof(float)); for(int i=0;i<N;i++){ a_host[i] = 1; } for(int i=0;i<blocksPerGrid;i++){ r_host[i] = 0.0; } cudaStream_t stream; cudaStreamCreate(&stream); cudaMemcpyAsync(a_device, a_host, N * sizeof(float), cudaMemcpyHostToDevice, stream); cudaMemcpyAsync(r_device, r_host, blocksPerGrid * sizeof(float), cudaMemcpyHostToDevice, stream); cudaEvent_t start, stop; cudaEventCreate(&start); cudaEventCreate(&stop); cudaEventRecord(start, 0); for(int i=0;i<iters;i++){ // kernel5<<<blocksPerGrid, threadsPerBlock, 0, stream>>>(a_device, r_device, N); kernel6(a_device, r_device, N, stream); } cudaEventRecord(stop, 0); cudaEventSynchronize(stop); float elapsedTime; cudaEventElapsedTime(&elapsedTime, start, stop); cout << "GPU Elapse time: " << elapsedTime / iters << " ms" << endl; cudaEventDestroy(start); cudaEventDestroy(stop); cudaMemcpy(r_host, r_device, blocksPerGrid * sizeof(float), cudaMemcpyDeviceToHost); varifyOutput(r_host, a_host, N); cudaFree(r_device); cudaFree(a_device); cudaFreeHost(r_host); cudaFreeHost(a_host); return 0; }
19,461
#include <iostream> //#include "gpu.hpp" /*__global__ void filter(unsigned int *input, unsigned int *od, int w, int h, int r) { } extern "C" double boxFilterRGBA(unsigned int *d_src, unsigned int *d_temp, unsigned int *d_dest, int width, int height, int radius, int iterations, int nthreads, StopWatchInterface *timer) { checkCudaErrors(cudaBindTextureToArray(rgbaTex, d_array)); // var for kernel computation timing double dKernelTime; for (int i=0; i<iterations; i++) { // sync host and start kernel computation timer_kernel dKernelTime = 0.0; checkCudaErrors(cudaDeviceSynchronize()); sdkResetTimer(&timer); // use texture for horizontal pass d_boxfilter_rgba_x<<< height / nthreads, nthreads, 0 >>>(d_temp, width, height, radius); d_boxfilter_rgba_y<<< width / nthreads, nthreads, 0 >>>(d_temp, d_dest, width, height, radius); // sync host and stop computation timer_kernel checkCudaErrors(cudaDeviceSynchronize()); dKernelTime += sdkGetTimerValue(&timer); if (iterations > 1) { // copy result back from global memory to array checkCudaErrors(cudaMemcpyToArray(d_tempArray, 0, 0, d_dest, width * height * sizeof(float), cudaMemcpyDeviceToDevice)); checkCudaErrors(cudaBindTextureToArray(rgbaTex, d_tempArray)); } } return ((dKernelTime/1000.)/(double)iterations); }*/
19,462
// Tests CUDA compilation pipeline construction in Driver. // REQUIRES: clang-driver // REQUIRES: x86-registered-target // REQUIRES: nvptx-registered-target // Simple compilation case. Compile device-side to PTX assembly and make sure // we use it on the host side. // RUN: %clang -### -target x86_64-linux-gnu -c %s 2>&1 \ // RUN: | FileCheck -check-prefix DEVICE -check-prefix DEVICE-NOSAVE \ // RUN: -check-prefix HOST -check-prefix INCLUDES-DEVICE \ // RUN: -check-prefix NOLINK %s // Typical compilation + link case. // RUN: %clang -### -target x86_64-linux-gnu %s 2>&1 \ // RUN: | FileCheck -check-prefix DEVICE -check-prefix DEVICE-NOSAVE \ // RUN: -check-prefix HOST -check-prefix INCLUDES-DEVICE \ // RUN: -check-prefix LINK %s // Verify that --cuda-host-only disables device-side compilation, but doesn't // disable host-side compilation/linking. // RUN: %clang -### -target x86_64-linux-gnu --cuda-host-only %s 2>&1 \ // RUN: | FileCheck -check-prefix NODEVICE -check-prefix HOST \ // RUN: -check-prefix NOINCLUDES-DEVICE -check-prefix LINK %s // Same test as above, but with preceeding --cuda-device-only to make sure only // the last option has an effect. // RUN: %clang -### -target x86_64-linux-gnu --cuda-device-only --cuda-host-only %s 2>&1 \ // RUN: | FileCheck -check-prefix NODEVICE -check-prefix HOST \ // RUN: -check-prefix NOINCLUDES-DEVICE -check-prefix LINK %s // Verify that --cuda-device-only disables host-side compilation and linking. // RUN: %clang -### -target x86_64-linux-gnu --cuda-device-only %s 2>&1 \ // RUN: | FileCheck -check-prefix DEVICE -check-prefix DEVICE-NOSAVE \ // RUN: -check-prefix NOHOST -check-prefix NOLINK %s // Same test as above, but with preceeding --cuda-host-only to make sure only // the last option has an effect. // RUN: %clang -### -target x86_64-linux-gnu --cuda-host-only --cuda-device-only %s 2>&1 \ // RUN: | FileCheck -check-prefix DEVICE -check-prefix DEVICE-NOSAVE \ // RUN: -check-prefix NOHOST -check-prefix NOLINK %s // Verify that --cuda-gpu-arch option passes the correct GPU archtecture to // device compilation. // RUN: %clang -### -target x86_64-linux-gnu --cuda-gpu-arch=sm_35 -c %s 2>&1 \ // RUN: | FileCheck -check-prefix DEVICE -check-prefix DEVICE-NOSAVE \ // RUN: -check-prefix DEVICE-SM35 -check-prefix HOST \ // RUN: -check-prefix INCLUDES-DEVICE -check-prefix NOLINK %s // Verify that there is one device-side compilation per --cuda-gpu-arch args // and that all results are included on the host side. // RUN: %clang -### -target x86_64-linux-gnu \ // RUN: --cuda-gpu-arch=sm_35 --cuda-gpu-arch=sm_30 -c %s 2>&1 \ // RUN: | FileCheck -check-prefix DEVICE -check-prefix DEVICE-NOSAVE \ // RUN: -check-prefix DEVICE2 -check-prefix DEVICE-SM35 \ // RUN: -check-prefix DEVICE2-SM30 -check-prefix HOST \ // RUN: -check-prefix HOST-NOSAVE -check-prefix INCLUDES-DEVICE \ // RUN: -check-prefix NOLINK %s // Verify that device-side results are passed to the correct tool when // -save-temps is used. // RUN: %clang -### -target x86_64-linux-gnu -save-temps -c %s 2>&1 \ // RUN: | FileCheck -check-prefix DEVICE -check-prefix DEVICE-SAVE \ // RUN: -check-prefix HOST -check-prefix HOST-SAVE -check-prefix NOLINK %s // Verify that device-side results are passed to the correct tool when // -fno-integrated-as is used. // RUN: %clang -### -target x86_64-linux-gnu -fno-integrated-as -c %s 2>&1 \ // RUN: | FileCheck -check-prefix DEVICE -check-prefix DEVICE-NOSAVE \ // RUN: -check-prefix HOST -check-prefix HOST-NOSAVE \ // RUN: -check-prefix HOST-AS -check-prefix NOLINK %s // Match device-side preprocessor and compiler phases with -save-temps. // DEVICE-SAVE: "-cc1" "-triple" "nvptx64-nvidia-cuda" // DEVICE-SAVE-SAME: "-aux-triple" "x86_64--linux-gnu" // DEVICE-SAVE-SAME: "-fcuda-is-device" // DEVICE-SAVE-SAME: "-x" "cuda" // DEVICE-SAVE: "-cc1" "-triple" "nvptx64-nvidia-cuda" // DEVICE-SAVE-SAME: "-aux-triple" "x86_64--linux-gnu" // DEVICE-SAVE-SAME: "-fcuda-is-device" // DEVICE-SAVE-SAME: "-x" "cuda-cpp-output" // Match the job that produces PTX assembly. // DEVICE: "-cc1" "-triple" "nvptx64-nvidia-cuda" // DEVICE-NOSAVE-SAME: "-aux-triple" "x86_64--linux-gnu" // DEVICE-SAME: "-fcuda-is-device" // DEVICE-SM35-SAME: "-target-cpu" "sm_35" // DEVICE-SAME: "-o" "[[PTXFILE:[^"]*]]" // DEVICE-NOSAVE-SAME: "-x" "cuda" // DEVICE-SAVE-SAME: "-x" "ir" // Match the call to ptxas (which assembles PTX to SASS). // DEVICE:ptxas // DEVICE-SM35-DAG: "--gpu-name" "sm_35" // DEVICE-DAG: "--output-file" "[[CUBINFILE:[^"]*]]" // DEVICE-DAG: "[[PTXFILE]]" // Match another device-side compilation. // DEVICE2: "-cc1" "-triple" "nvptx64-nvidia-cuda" // DEVICE2-SAME: "-aux-triple" "x86_64--linux-gnu" // DEVICE2-SAME: "-fcuda-is-device" // DEVICE2-SM30-SAME: "-target-cpu" "sm_30" // DEVICE2-SAME: "-o" "[[GPUBINARY2:[^"]*]]" // DEVICE2-SAME: "-x" "cuda" // Match no device-side compilation. // NODEVICE-NOT: "-cc1" "-triple" "nvptx64-nvidia-cuda" // NODEVICE-NOT: "-fcuda-is-device" // INCLUDES-DEVICE:fatbinary // INCLUDES-DEVICE-DAG: "--create" "[[FATBINARY:[^"]*]]" // INCLUDES-DEVICE-DAG: "--image=profile=sm_{{[0-9]+}},file=[[CUBINFILE]]" // INCLUDES-DEVICE-DAG: "--image=profile=compute_{{[0-9]+}},file=[[PTXFILE]]" // Match host-side preprocessor job with -save-temps. // HOST-SAVE: "-cc1" "-triple" "x86_64--linux-gnu" // HOST-SAVE-SAME: "-aux-triple" "nvptx64-nvidia-cuda" // HOST-SAVE-NOT: "-fcuda-is-device" // HOST-SAVE-SAME: "-x" "cuda" // Match host-side compilation. // HOST: "-cc1" "-triple" "x86_64--linux-gnu" // HOST-SAME: "-aux-triple" "nvptx64-nvidia-cuda" // HOST-NOT: "-fcuda-is-device" // HOST-SAME: "-o" "[[HOSTOUTPUT:[^"]*]]" // HOST-NOSAVE-SAME: "-x" "cuda" // HOST-SAVE-SAME: "-x" "cuda-cpp-output" // INCLUDES-DEVICE-SAME: "-fcuda-include-gpubinary" "[[FATBINARY]]" // Match external assembler that uses compilation output. // HOST-AS: "-o" "{{.*}}.o" "[[HOSTOUTPUT]]" // Match no GPU code inclusion. // NOINCLUDES-DEVICE-NOT: "-fcuda-include-gpubinary" // Match no host compilation. // NOHOST-NOT: "-cc1" "-triple" // NOHOST-NOT: "-x" "cuda" // Match linker. // LINK: "{{.*}}{{ld|link}}{{(.exe)?}}" // LINK-SAME: "[[HOSTOUTPUT]]" // Match no linker. // NOLINK-NOT: "{{.*}}{{ld|link}}{{(.exe)?}}"
19,463
struct node { int items[10]; int parent[10]; }; __global__ void generate_fp_tree(unsigned int* input, node *output) { int tx = threadIdx.x; int gtx = blockIdx.x * blockDim.x + threadIdx.x; if(input[gtx]!=0) atomicAdd(&output[tx].items[input[gtx]-65],1); //output[tx].items[input[gtx]-65]+=1; //output[tx].items[0]+=input[gtx]; }
19,464
// ########################################################## // By Eugene Ch'ng | www.complexity.io // Email: genechng@gmail.com // ---------------------------------------------------------- // The ERC 'Lost Frontiers' Project // Development for the Parallelisation of ABM Simulation // ---------------------------------------------------------- // A Basic CUDA Application for ABM Development // // Filling arrays with block generated IDs // identify a specific block ID and make changes for that kernel // previously we used fillArray<<1,N>>, 1 block and N threads // we now use <<N,1>> for N blocks and 1 thread // // LIMITS OF THREADS AND BLOCKS (use 01.DeviceInfo to check your GPU) // The particular GPU used here has 1024 threads per block // This presents a limit, but we can also use blocks per grid // Each block (for this old AlienWare GPU) has 65535 blocks per grid // Blocks and Threads have 3 dimensions (type dim3) // We will explore how to combine both blocks and threads to create // arbitrarily long numbers // ---------------------------------------------------------- // How to compile: // nvcc <filename>.cu -o <outputfile> // ########################################################## #include <stdio.h> #include <iostream> using namespace std; // blockIdx is limited at 65535 #define N 10 // --------------------- CUDA KERNELS // Fill arrays with device thread IDs __global__ void fillArray(int *dev_arr) { // note that we no longer use the for loop here // blockIdx.x is a device variable - it's the ID of the block // fillArray kernel is called for each block and has its own ID int bid = blockIdx.x; // assign the dev_array element with threadIDx.x dev_arr[bid] = bid; // identifying a threads if(bid == 5) { printf("**blockIdx.x 5 is called!!\n"); dev_arr[bid] = bid + 100; } } // the main is a host code int main(int argc, const char * argv[]) { cout << "------------ initialising device and host arrays" << endl; int arr[N]; // host variable int *dev_arr; // device variable for(int i=0; i<N; i++) { arr[i] = 0; printf("host arr[%d] = %d\n", i, arr[i]); } cout << "------------ allocate device memory dev_arr" << endl; // allocating a device array to copy to // note the N * sizeof(int) cudaMalloc( (void**)&dev_arr, N * sizeof(int) ); cout << "------------ copy arr to dev_arr" << endl; // copying host array to device // note the N * sizeof(int) cudaMemcpy(dev_arr, arr, N * sizeof(int), cudaMemcpyHostToDevice); cout << "------------ calling kernel fillArray" << endl; // N block, and 1 thread // previously we used fillArray<<1,N>>, 1 block and N threads // we now use <<N,1>> for N blocks and 1 thread fillArray<<<N,1>>>(dev_arr); cout << "------------ copy dev_arr to arr" << endl; // note the N * sizeof(int) cudaMemcpy(arr, dev_arr, N * sizeof(int), cudaMemcpyDeviceToHost); cout << "------------ printing changed host array" << endl; for(int i=0; i<N; i++) { printf("** changed host arr[%d] = %d\n", i, arr[i]); } // ---- FREE ALLOCATED KERNEL MEMORY cudaFree( dev_arr ); return 0; }
19,465
#include<bits/stdc++.h> using namespace std; #define BLOCK_SIZE 256 __global__ void pegasos_per_thread(int num_samples, int num_features, double * W, double * X, double * Y, double lambda, int num_iters, double * random_arr, int k) { int index = blockIdx.x * blockDim.x + threadIdx.x; int n_samples_per_thread = num_samples / k; for(int sample=0; sample<n_samples_per_thread; sample++) { double lr = 1.0 / (lambda * (sample+1)); double pred_output = 0; for (int i=0; i<num_features; i++) pred_output += W[index * num_features + i] * X[(n_samples_per_thread * index + sample) * num_features + i]; if (Y[n_samples_per_thread * index + sample] * pred_output >= 1.0) { for (int i=0; i<num_features; i++) W[index * num_features + i] = (1.0 - lr * lambda) * W[index * num_features + i]; } else { for (int i=0; i<num_features; i++) W[index * num_features + i] = (1.0 - lr * lambda) * W[index * num_features + i] + (lr * Y[n_samples_per_thread * index + sample]) * X[(n_samples_per_thread * index + sample) * num_features + i]; } } } int main() { srand(time(NULL)); ifstream trainfile ("train.txt"); ifstream labelfile ("labels.txt"); int n_samples=20000; int n_features=500; int k = 100; int numBlocks = (k + BLOCK_SIZE - 1) / BLOCK_SIZE; int num_iters = 10; double lambda = 1.0; int n_samples_per_thread = n_samples / k; double *W, *X, *Y, *final_W, *random_arr; double *d_W, *d_X, *d_Y, *d_random_arr; W = (double *) malloc(k * n_features * sizeof(double)); final_W = (double *) malloc(n_features * sizeof(double)); X = (double *) malloc(n_samples * n_features * sizeof(double)); Y = (double *) malloc(n_samples * sizeof(double)); random_arr = (double *) malloc(num_iters * sizeof(double)); cudaMalloc(&d_W, k * n_features * sizeof(double)); cudaMalloc(&d_X, n_samples * n_features * sizeof(double)); cudaMalloc(&d_Y, n_samples * sizeof(double)); cudaMalloc(&d_random_arr, num_iters * sizeof(double)); for (int i=0;i<n_samples;i++) { for (int j=0;j<n_features;j++) trainfile >> X[i*n_features + j]; } for (int i=0;i<n_samples;i++) { labelfile >> Y[i]; if (Y[i] == 0) { Y[i] = -1; } } for (int i=0;i<k;i++) { for (int j=0;j<n_features;j++) W[i * n_features + j] = 0; } for (int i=0;i<n_features;i++) final_W[i] = 0; for (int i=0;i<num_iters;i++) random_arr[i] = rand() % n_samples_per_thread; cudaMemcpy(d_X, X, n_samples * n_features * sizeof(double), cudaMemcpyHostToDevice); cudaMemcpy(d_W, W, k * n_features * sizeof(double), cudaMemcpyHostToDevice); cudaMemcpy(d_Y, Y, n_samples * sizeof(double), cudaMemcpyHostToDevice); cudaMemcpy(d_random_arr, random_arr, num_iters * sizeof(double), cudaMemcpyHostToDevice); pegasos_per_thread<<<numBlocks, BLOCK_SIZE>>>(n_samples, n_features, d_W, d_X, d_Y, lambda, num_iters, d_random_arr, k); cudaMemcpy(W, d_W, k * n_features * sizeof(double), cudaMemcpyDeviceToHost); // for (int i=0;i<k;i++) // for (int j=0;j<n_features;j++) // cout << W[i * n_features + j] << " "; for (int i=0;i<k;i++) { for (int j=0;j<n_features;j++) final_W[j] += (W[i * n_features + j]); } for (int i=0;i<n_features;i++) final_W[i] /= k; // cout << "\nFinalW\n"; // for (int i=0;i<n_features;i++) {cout << final_W[i] << " ";} double correct = 0.0; for (int i=0;i<n_samples;i++) { double val = 0.0; for (int j=0;j<n_features;j++) val += final_W[j] * X[i * n_features + j]; if (val * Y[i] >= 0) correct += 1; } cout << "Correct " << correct << endl; printf("Accuracy %lf\n", correct / n_samples); return 0; }
19,466
#include "includes.h" __global__ void scale_values(float *num, size_t size, float abs_max) { int idx = blockIdx.x * blockDim.x + threadIdx.x; if(idx < size) num[idx] = (abs_max + abs_max) * num[idx] - abs_max; }
19,467
#include "cuda_runtime.h" #include "device_launch_parameters.h" #include <stdlib.h> #include <stdio.h> int *IntArray(int length, int first = 0, int step = 0) { int *av = (int *)malloc(sizeof(int) * length); for (int i = 0; i < length; i++) { av[i] = first + step * i; } return av; } bool CompIntArrays(int *a, int *b, int length) { for (int i = 0; i < length; i++) { if (a[i] != b[i]) return false; } return true; } bool CompFloatArrays(float *a, float *b, int length) { for (int i = 0; i < length; i++) { if (a[i] != b[i]) return false; } return true; } void PrintFloatArray(float *aa, int width, int length) { for (int i = 0; i < length; i++) { printf("%3.3f ", aa[i]); if ((i>0) && ((i + 1) % width == 0)) printf("\n"); } printf("\n"); } void PrintIntArray(int *aa, int width, int length) { for (int i = 0; i < length; i++) { printf("%d ", aa[i]); if ((i>0) && ((i + 1) % width == 0)) printf("\n"); } printf("\n"); } float *RndFloat0to1(int arraySize) { float *temp = (float*)malloc(arraySize * sizeof(float)); for (int i = 0; i<arraySize; i++) { temp[i] = (float)rand() / (float)(RAND_MAX); } return temp; }
19,468
#include <stdio.h> #include <stdlib.h> #include <stdint.h> #define BLOCKS 12 #define BLOCKSIZE 1024 //#define BSize 32 //#define QSize (BLOCKS*BLOCKSIZE)/BSize/32 #define BSize 24 #define QSize 16 struct kernel_para{ volatile int *A, *B, *C; volatile int size; volatile int block; volatile int thread; volatile int warp; volatile int req; volatile int funcId; volatile int taskId; volatile int doneHost; int doneGPU; }; struct kernel_para_GPU{ int warpId; int baseId; int queueId; int locId; int taskId; int funcId; }; typedef struct { int contents[BSize][QSize]; // body of queue int last[BSize]; // position of last element }queue; __device__ void init_queue(queue *q){ int tid = blockDim.x*blockIdx.x+threadIdx.x; if(tid < BSize){ // start form 1, since 1st warp is used in scheduling if(tid == 0){ q->last[tid] = 1; }else{ q->last[tid] = 0; } for (int i = 0; i < QSize; i++){ q->contents[tid][i] = 0; } } } __device__ void MatMul_kernel(int *A, int *B, int *C, int M_height, int M_width, int N_width, int baseTid){ #if 1 int row = baseTid + (threadIdx.x & 0x1f); if(row < M_height) { for (int j = 0; j < N_width; j++){ int sum = 0; for (int k = 0; k < M_width; k++){ int a = A[row * M_width + k]; int b = B[k * N_width + j]; sum += a * b; } C[row * N_width + j] = sum; } } #endif } __global__ void deviceRT(volatile int *done, volatile int *totalExecTasks, volatile kernel_para_GPU *warpPool, volatile struct kernel_para *taskBuffer, struct kernel_para *taskArgs, queue *warpQ){ int tid = blockIdx.x*blockDim.x + threadIdx.x; int warp; int j; if(tid < 32){ if(tid < BSize) init_queue(warpQ); warp = 0; j = 0; while(!(*done)){ if(*done) continue; if(tid < BSize){ if(taskBuffer[tid].req == 1 && !(*done)){ warp = taskBuffer[tid].warp; while(warp > 0){ if(warpQ->contents[tid][warpQ->last[tid]] == 0){ // printf("Scheduling:%d, %d\n", taskBuffer[tid].taskId, tid); warpPool[tid*QSize + warpQ->last[tid]].queueId = tid; warpPool[tid*QSize + warpQ->last[tid]].locId = warpQ->last[tid]; warpQ->contents[tid][warpQ->last[tid]] = 1; warpPool[tid*QSize + warpQ->last[tid]].baseId = j*32; warpPool[tid*QSize + warpQ->last[tid]].taskId = taskBuffer[tid].taskId; warpPool[tid*QSize + warpQ->last[tid]].warpId = 1; __threadfence(); warp--; j++; } warpQ->last[tid]++; if(warpQ->last[tid] == QSize){ if(tid == 0){ warpQ->last[tid] = 1; }else{ warpQ->last[tid] = 0; } } } taskBuffer[tid].req = 0; j = 0; } } } }else{ #if 1 int warpIdx = (blockIdx.x*blockDim.x + threadIdx.x)/32; while(!(*done)){ while(warpPool[warpIdx].warpId == 0 && !(*done)); if(*done) return; switch(taskArgs[warpPool[warpIdx].taskId].funcId){ case 1: // if((threadIdx.x & 0x1f) == 0) printf("Before:%d, %d\n", warpPool[warpIdx].taskId, warpPool[warpIdx].baseId); MatMul_kernel((int*)taskArgs[warpPool[warpIdx].taskId].A, (int*)taskArgs[warpPool[warpIdx].taskId].B, (int*)taskArgs[warpPool[warpIdx].taskId].C, taskArgs[warpPool[warpIdx].taskId].size, taskArgs[warpPool[warpIdx].taskId].size, taskArgs[warpPool[warpIdx].taskId].size, warpPool[warpIdx].baseId); // if((threadIdx.x & 0x1f) == 0) printf("After:%p\n", taskArgs[warpPool[warpIdx].taskId].C); break; default: { printf("kernel Type not found\n"); return; } } #if 1 if((threadIdx.x & 0x1f) == 0){ if((atomicSub((int*)&taskArgs[warpPool[warpIdx].taskId].doneGPU,1)) ==1){ taskArgs[warpPool[warpIdx].taskId].doneHost = 0; atomicAdd((int*)&totalExecTasks[0],1); // printf("Kernel:%d\n", *totalExecTasks); } warpPool[warpIdx].warpId = 0; warpQ->contents[warpPool[warpIdx].queueId][warpPool[warpIdx].locId] = 0; __threadfence(); } #endif } #endif } // } }
19,469
float h_A[]= { 0.6077304871894453, 0.8936961933315026, 0.7270382344822287, 0.8023482238859894, 0.6075262879503021, 0.6641276886564242, 0.6947977310727611, 0.7349836135509735, 0.9990753103838406, 0.8299995402483878, 0.7080981018287671, 0.6435698793550537, 0.5146250303212558, 0.9750651429625462, 0.7535471719286995, 0.7954907088643621, 0.5846605661119106, 0.8845511671988633, 0.8830953680301334, 0.9036883695233936, 0.7057442437551014, 0.565638704789128, 0.6650820231593992, 0.5351678685545055, 0.7225087716489379, 0.542079419224737, 0.5983154959345847, 0.5874137534100938, 0.8970822605996767, 0.988692141652958, 0.5531329424080711, 0.5746130926146933, 0.8562990410819367, 0.9958150695040241, 0.5084585076185779, 0.6929359816673681, 0.5011937999117615, 0.6262002673547813, 0.7172258979969032, 0.5384534465042494, 0.5453944073771485, 0.6334415790691448, 0.8528945650133986, 0.6484316256095004, 0.9653763238758419, 0.7115017864084678, 0.5396201432575601, 0.7314336056272668, 0.6010133901932092, 0.5546585965126516, 0.7336216444156685, 0.8594596462128925, 0.7331163390730948, 0.6804430710246299, 0.7226532403623585, 0.946262367118587, 0.8479437345681851, 0.9141256408072248, 0.93819115941898, 0.86506375015223, 0.8904104862143157, 0.7353930867562937, 0.7375363410987348, 0.5018078060009985, 0.508928556156468, 0.5030260050139146, 0.8402655670431577, 0.5015533686454323, 0.6614434965927423, 0.6551402007621985, 0.6219640392897853, 0.5246860477114734, 0.856900367576762, 0.8976724278923811, 0.7669115237418173, 0.6617684070750576, 0.7529933888713992, 0.8144209613997686, 0.541948337342274, 0.5016836700262621, 0.9904506262850501, 0.6815748475982562, 0.7326246186442684, 0.5020574384437908, 0.7872405126435797, 0.5710496422953526, 0.7548471293355141, 0.7341493124392846, 0.8772776849796255, 0.9855542906838674, 0.6984637313244942, 0.669977749083825, 0.5616871132407188, 0.7946420588754661, 0.9374900220085963, 0.9784591960699991, 0.7221325462792958, 0.7126245840259444, 0.6555488352919077, 0.7387040493774408, 0.9072064981730342, 0.5431666077070556, 0.9706588630090915, 0.5060319746036444, 0.6268872170029198, 0.5976879664135204, 0.5286812480980114, 0.8270825601034868, 0.9245840700735047, 0.8453451829768848, 0.61146716334915, 0.8072513476113714, 0.643188200140935, 0.8735995284177094, 0.5971103522106631, 0.8468741623714933, 0.9164903387492379, 0.6825003697962047, 0.9448091514164093, 0.5685283299282942, 0.7510165569715631, 0.6647751172115199, 0.671722431189447, 0.9211545810966385, 0.5067123047280512, 0.8750915076668405, 0.572982306303386, 0.8199966737644409, 0.6806268384924339, 0.8980159392737107, 0.6355438036772195, 0.8996526810150938, 0.5751380284751533, 0.7942772113956376, 0.8485144091211125, 0.9834095492546817, 0.5736684263696986, 0.9651703029465525, 0.9875424302175217, 0.6593742245842557, 0.7741512611582702, 0.558602822446158, 0.9459895739046723, 0.7843223657041642, 0.9363835667896402, 0.7610876942817715, 0.9232949959434247, 0.8078673574154356, 0.6031138388622471, 0.7475877700143339, 0.6406018518373049, 0.8057647488173008, 0.9209022625387628, 0.5716286497071721, 0.9558810461400031, 0.8733571885450973, 0.9699698786808644, 0.9790774953795842, 0.5293114293600089, 0.5372732352356515, 0.9083853698012753, 0.7806166504046719, 0.8751527996846902, 0.9776739085347852, 0.9742429724334001, 0.8953595734250159, 0.9638946624965519, 0.5160799683084616, 0.642118317037299, 0.6504606594549737, 0.5994471124532459, 0.7945800668649758, 0.8131661144748448, 0.7448749520163217, 0.8886323947614919, 0.985732770940324, 0.8406482703212617, 0.7085333511249454, 0.8494947752175452, 0.5088782239993301, 0.8140550222755774, 0.7119832091266642, 0.8480681622973415, 0.7024864070658166, 0.6295761475833481, 0.8211061739516443, 0.565210783319341, 0.8745499787189424, 0.6532366630587098, 0.5077480235092282, 0.7535464109434827, 0.889855447538198, 0.7912346638569813, 0.9482006159100561, 0.7480216917576786, 0.6573164427690329, 0.6429155126205939, 0.819800249157046, 0.8542565162385122, 0.810152498575017, 0.9862246071870013, 0.9814756609935732, 0.8562498947580977, 0.5493366239080402, 0.63963333817088, 0.5629892968993895, 0.9914838378805743, 0.7155992727455711, 0.594881620329265, 0.8135730966837744, 0.9613833912170304, 0.7624653338936869, 0.946217016135658, 0.8302563622832633, 0.6514999216942823, 0.5753257484779142, 0.6531751041832075, 0.9554001965423797, 0.935325382110522, 0.5500103981914408, 0.5115491989118183, 0.6015843278950539, 0.8087744465270137, 0.5221647212211163, 0.5707460617775546, 0.8277732823239767, 0.9457425939387083, 0.7784680075982333, 0.523683498923483, 0.6416813857762795, 0.7375578837013332, 0.6939476970164926, 0.657013285794285, 0.8253333528968283, 0.7972448800298588, 0.5608119848270192, 0.6741377341902426, 0.7412637870399628, 0.6292224715062635, 0.5868162304486556, 0.7272108408818942, 0.7774466654316261, 0.8969112537246564, 0.8617751166691456, 0.6949341874376577, 0.7964965270820268, 0.9645357994224799, 0.856787975358551, 0.8598297828901271, 0.7089456872709253, 0.548960879697256, 0.6056837791916061, 0.6940979701081309, 0.9125197937500813, 0.9869499537826305, 0.8092144672719253, 0.6538850717949727, 0.7974325349550477, 0.6709115216298163, 0.8134229584773732, 0.8131218594164379, 0.9546159183473839, 0.5894396168081038, 0.6365068967077319, 0.6677599887500725, 0.637568108740104, 0.6771524763413612, 0.6796445976040641, 0.6506570763186188, 0.5114209697856398, 0.964790503081095, 0.6530651660232027, 0.6747708354600443, 0.6915065126806282, 0.5371087819634859, 0.7199754396519129, 0.6673428501379022, 0.5049948371184059, 0.7848861457514458, 0.5935434860099471, 0.6191284310847527, 0.6943060739435422, 0.6371485343344283, 0.6106902442908768, 0.888043151821145, 0.5802116097571137, 0.694607198171155, 0.6972040507674084, 0.7218531732626228, 0.8534479905004304, 0.7888859052532426, 0.7185154364502468, 0.572572832268724, 0.8694186728110163, 0.967265770219241, 0.5726786048376513, 0.9892057768210392, 0.8370288443829308, 0.8877118305217699, 0.6914969771340058, 0.6448291549003038, 0.6598391494719027, 0.9706604021842548, 0.502211587633276, 0.8388463652660487, 0.8064259679613147, 0.6518965919730615, 0.8055182204116105, 0.7484076119677214, 0.6759004835313255, 0.9255041866320763, 0.7292985399811958, 0.8447098173556327, 0.8877279696635236, 0.9006705292254289, 0.9445356825711786, 0.9894182821367936, 0.8379597354570456, 0.5490200786985329, 0.667387115945195, 0.7397882490147565, 0.8865544797734033, 0.7024164039075473, 0.6799123148952899, 0.5793001530684418, 0.6097048148901988, 0.9712878126858091, 0.6776694171269663, 0.5529964990846077, 0.6458565227111648, 0.9378437083710256, 0.9245321284583368, 0.6086936334083826, 0.5415302476130349, 0.8495926109121992, 0.5665016010437149, 0.6906910150188714, 0.848742368406641, 0.9353535408272999, 0.7912801489548458, 0.518766569349844, 0.9986499356809081, 0.9837900135022098, 0.5038930023642116, 0.5811872656872342, 0.6558592417228941, 0.6936559611340343, 0.8191075803442153, 0.8373262635609601, 0.6813142219244961, 0.9205039751871331, 0.738914441704573, 0.8245867381533911, 0.7348604577675799, 0.8534659657487331, 0.9400797877150773, 0.6661221946507643, 0.6102067233475857, 0.5666915464980393, 0.8896975002765943, 0.7846590839092086, 0.5323009524064408, 0.6979167226269474, 0.9748361734617362, 0.8608346812040939, 0.6913466849348837, 0.7282566468846283, 0.77715412166126, 0.8968321405435047, 0.9869234839393336, 0.8490661145309104, 0.7646765021448276, 0.9561847323814842, 0.5087972361473103, 0.8787895128042179, 0.7497064767468669, 0.977031359252414, 0.7247865476336977, 0.9907180579376855, 0.7487004121520651, 0.6219157119413731, 0.7031382488201334, 0.919583972109439, 0.6902283592058436, 0.819488219972274, 0.5635737797044218, 0.6201209240732714, 0.7202993466197767, 0.6933389155647915, 0.6843280545720429, 0.9256883182048772, 0.9180094819809413, 0.6077534037134378, 0.6049637724249068, 0.6813361257374144, 0.5544063911815003, 0.9780205723637483, 0.9655948850866667, 0.5213338620493853, 0.5677746392474952, 0.6181082609191079, 0.797136669312078, 0.6608334413456817, 0.9926925357514054, 0.5596806444560558, 0.6522300149884368, 0.9951366366369501, 0.6785785522949571, 0.751659202226928, 0.5865131112910476, 0.5407130169085463, 0.7567175458504861, 0.6299326619891196, 0.8489412394693079, 0.6942828674546424, 0.8575351457528271, 0.6495394949344505, 0.6980751917641512, 0.6100829776817367, 0.5636599599366477, 0.5612293880113913, 0.9242542598495807, 0.6974881148440714, 0.7617965678977984, 0.6438942782044423, 0.830604274131991, 0.6097664453933678, 0.8879259533351913, 0.5950765526152946, 0.6944433215278324, 0.7739558981658465, 0.6941745360552923, 0.6899176220993744, 0.588445368523034, 0.8346055457854947, 0.7064769726118041, 0.9532231497830438, 0.8797828661473723, 0.682380939931796, 0.6990847175885903, 0.8967399060197154, 0.9787481481023244, 0.8225444043981887, 0.7799122102533133, 0.5581946270091251, 0.7738926107667654, 0.5618907971329848, 0.9832012360721847, 0.9873098793511745, 0.6959703825253114, 0.6318906750262634, 0.6155515532162544, 0.9800935319699002, 0.9189448158197812, 0.7782069880036531, 0.8531548963098787, 0.5189675368442415, 0.9978025819708544, 0.9809923927494507, 0.6215806644113522, 0.9251616130307858, 0.5531846912240473, 0.5190031622488033, 0.8109287889278439, 0.5747945675586814, 0.5927790236377855, 0.8607525161223919, 0.849214334704043, 0.8687268084626115, 0.8645126660928417, 0.6201971795056025, 0.5744576424200927, 0.9668065686506497, 0.946905612421552, 0.5997993931307767, 0.6767980875607207, 0.8612500229257036, 0.9050533383269528, 0.8018622004061019, 0.8987875110443873, 0.9109306095610012, 0.7419113704824251, 0.5570362649843303, 0.6641626806248382, 0.6075633921288228, 0.8703258628109044, 0.8201656148116075, 0.5998059752487733, 0.9891769208717174, 0.7769020885959947, 0.9984511290096088, 0.9282497656864768, 0.9536132548386389, 0.9072197935113198, 0.7785168764664205, 0.6841264642888771, 0.6207839189128431, 0.7145398897666462, 0.6292689977080276, 0.8745543812853531, 0.6934574653689034, 0.640610200929058, 0.8183207986666136, 0.5073368501573118, 0.8585322444670771, 0.6182347303178131, 0.8282323216572126, 0.5583305261161604, 0.6627785610611973, 0.6999491430413036, 0.7662301900975741, 0.9298509522662, 0.6577769305827724, 0.9462705289678934, 0.9103806160197865, 0.6206749539358114, 0.8082165157120553, 0.7842197688420285, 0.8042011735437122, 0.5624959508918632, 0.7275764293128911, 0.9960514761793526, 0.9662172420563419, 0.9632919869940437, 0.9793216192410951, 0.9395602386058418, 0.6274137507375936, 0.8217598685357235, 0.9626179939938382, 0.5815526082662305, 0.8761090173896768, 0.5713535079764618, 0.6083380039330484, 0.9805700573967011, 0.5238371623944014, 0.6518220006586471, 0.9007511496492064, 0.5865438131263898, 0.7714963294863912, 0.544105002165238, 0.6477276085542523, 0.7431717476190582, 0.9007070270045879, 0.5139570030417788, 0.5187701282840098, 0.6243467541010225, 0.9740910674610694, 0.6685085303476509, 0.5807595691467041, 0.8219829943668382, 0.746815724274519, 0.7332364743380182, 0.8529224733395094, 0.9178398267766342, 0.9113640728947534, 0.8204692071058055, 0.713465198273361, 0.819017836641126, 0.8769247225878749, 0.7564522774468581, 0.5704908283472724, 0.9171945144073618, 0.5793530562913798, 0.8690189475010912, 0.9040686915501007, 0.7899423185447452, 0.6181509508030779, 0.5268530642298, 0.8880406511308676, 0.5465858734746606, 0.6165610943685335, 0.802773984106316, 0.9083490089757145, 0.7740171308454673, 0.592329091040382, 0.9001764690652074, 0.5318380874816415, 0.9225869103746789, 0.8585957657500891, 0.8509086287109204, 0.5325710770974278, 0.5417974752526468, 0.9061301549653913, 0.9135807173882671, 0.5269631315231211, 0.9439937062550563, 0.5992779937735411, 0.7247883001285562, 0.5825691254901822, 0.6890594391383327, 0.9774192535289179, 0.5110879436545547, 0.6817948596997557, 0.6721126733762813, 0.6733898745879494, 0.7244559990395554, 0.636842221834105, 0.7315863077552653, 0.5395318525613992, 0.5830210709144352, 0.92977289402263, 0.5803353690404405, 0.9814131443455179, 0.5205447596545891, 0.5919782219744081, 0.9788979524333099, 0.6432434923763648, 0.6778581969006114, 0.7962395904545692, 0.7257991633181857, 0.9656460326420404, 0.729296843653001, 0.5108963608231021, 0.7511672746685002, 0.6843312811104207, 0.8074406040265824, 0.5736131986817778, 0.9143948463180941, 0.7420506463687109, 0.9221306283457684, 0.520135463418303, 0.8420126651162148, 0.895721512200585, 0.89783745775084, 0.7405329576294236, 0.7079056329960619, 0.6395875670949818, 0.8140974706435076, 0.5121753908336995, 0.9041962509615961, 0.577724012320729, 0.728880221365183, 0.7356407468551589, 0.9804813365076162, 0.5933119771950162, 0.5223379338208783, 0.623983743190196, 0.8527057684958035, 0.7781737498881103, 0.5898695144067437, 0.7423373637583126, 0.9811260254450066, 0.7738666694812815, 0.7136704640924404, 0.7821461332610434, 0.9977741300976246, 0.5082719745618105, 0.6969991035299731, 0.788448512129404, 0.8277015698978669, 0.5374803339766342, 0.7011702092801668, 0.757334263460774, 0.5378915097333717, 0.7564548967230644, 0.8229607515170231, 0.9958718583522206, 0.5670445420180887, 0.5906290510078518, 0.5060329077343214, 0.7897138169005142, 0.858865737795727, 0.9714880000566679, 0.803033653988752, 0.7260122231202484, 0.7034962420496077, 0.8300138942037515, 0.7790403270633772, 0.6946601287841778, 0.714308919080608, 0.8468508743898174, 0.5051568099216048, 0.6808347389187679, 0.5972986514989966, 0.7974582721958742, 0.5165050354314835, 0.8878676492139228, 0.5533282747649357, 0.9214520633445861, 0.6910747463645031, 0.9986398760838309, 0.5131177927961191, 0.5994314471741898, 0.7876479904846977, 0.6780462033570426, 0.978446912805468, 0.7162760459876462, 0.8990236505029989, 0.6302238871053063, 0.6962209490422459, 0.7877193293917664, 0.5987152725974555, 0.6431161849308555, 0.7393659759030634, 0.9276646875447098, 0.6845589804632399, 0.924921618943904, 0.9617557443427283, 0.7779350201738537, 0.7279449487996059, 0.8351909533486499, 0.6868723303554711, 0.9506823934216445, 0.6683842315513512, 0.6214055674410335, 0.9899376581679247, 0.8807526961889518, 0.9524667517428826, 0.6858549554387479, 0.5352670853773401, 0.5773729479712206, 0.581834110476664, 0.6261469832403794, 0.5658710532922178, 0.8282138869371312, 0.6512687246982725, 0.5770294997824041, 0.720500566575752, 0.9037527345096825, 0.7117539159560793, 0.5909606038134596, 0.5142323756557414, 0.5755467954233149, 0.6653248455785052, 0.8565271057130935, 0.5782056704820724, 0.7901830790897274, 0.9187062564826142, 0.6936173224370601, 0.7611805181419022, 0.936329707612463, 0.5123613507153264, 0.5100389801405901, 0.7847540512183518, 0.6281747948844268, 0.7178424820016456, 0.697772326846847, 0.7500649369218002, 0.9537332156651496, 0.6856935918911121, 0.7626623207201519, 0.7280661974160978, 0.6041040231759505, 0.8451385554633779, 0.8324533601208265, 0.701117617746079, 0.9371844207619525, 0.8078112083489548, 0.6391677221228352, 0.7205906903570207, 0.6472684925180684, 0.5398606859034449, 0.8644534374771662, 0.7941854939590094, 0.7633721279874808, 0.7078105024966377, 0.8256558388235686, 0.9901639837135583, 0.6194450388030954, 0.7065137775843242, 0.5857772890013992, 0.5318842150619381, 0.8575399442258003, 0.549650323373608, 0.7306871467276767, 0.6534446823869111, 0.9915370744824379, 0.772311770049839, 0.5271386650978004, 0.5059856401406466, 0.7266455054888193, 0.5443552048500573, 0.8072641284326079, 0.5661343373307082, 0.7212511694807691, 0.9392840732242346, 0.5206655062455853, 0.8952846541998924, 0.8338384437524626, 0.9605940312540154, 0.5394369569318931, 0.9508261520742205, 0.9651281270693342, 0.8023663835555087, 0.8054632736426962, 0.805671942354216, 0.9477007796804131, 0.5000552846692071, 0.6669147132864361, 0.7615843190052123, 0.9839544800216944, 0.6903404017435502, 0.6034028768969875, 0.5626981905187252, 0.7559646105340655, 0.5930859538682043, 0.9185731289027133, 0.5992644720686922, 0.8290432058690252, 0.9289097899318626, 0.5359869523109384, 0.956537430233284, 0.8850030630121233, 0.9620174548497036, 0.5053537165530495, 0.7172094214217514, 0.6751285559007221, 0.6079224232290469, 0.8408990917419616, 0.7442007934173366, 0.5707928310536643, 0.9503892739284932, 0.7887501701284245, 0.8640423860615497, 0.8560984921020857, 0.906705896553487, 0.9880552566388552, 0.791379749737837, 0.8932559271634386, 0.5747099269941734, 0.8060009052052408, 0.8319885505644161, 0.9870111015392402, 0.8529020176414946, 0.9562960150097659, 0.8757798908802783, 0.5943819109035371, 0.6669758174033036, 0.9758844022981981, 0.8550139816191049, 0.6032875815240863, 0.5060965379516857, 0.712089646387706, 0.8613956773598398, 0.5199284871114851, 0.6710776259798974, 0.6705321925827756, 0.7556053503547302, 0.5523394042029801, 0.7178045984645354, 0.6493073603788624, 0.7410230205805836, 0.5965734724080056, 0.7151169355159843, 0.5747015746453226, 0.8792770637473051, 0.8354816530414231, 0.8252065412804424, 0.5923373097922932, 0.8898357183426682, 0.746217354812277, 0.8394459208780289, 0.7950204443315724, 0.7925242314380929, 0.720518768895511, 0.8626421981054995, 0.7287230133140108, 0.5807793532346461, 0.5681815762198505, 0.6076054206992852, 0.9774304268868024, 0.8761290210449202, 0.8543627583722979, 0.9455357555735932, 0.7393390938389306, 0.8780776891813358, 0.8644402794052196, 0.7882906573135473, 0.8025051975735673, 0.6218778419812725, 0.6247541005129034, 0.590066745536743, 0.5610983260295865, 0.5884888524881433, 0.8612813980502179, 0.6659416931328477, 0.8692834778157412, 0.6834752092564189, 0.897502819937613, 0.5222005845266857, 0.7515084539154964, 0.9274363674985897, 0.7624903375830346, 0.5850922325094012, 0.7879418858743579, 0.8400517359613611, 0.9798879228669602, 0.8587793858696136, 0.8475580301089274, 0.8644072499738131, 0.6780895977231836, 0.6635486974456516, 0.5797426740986499, 0.9135613969281455, 0.5177790079779924, 0.9094428625705895, 0.7974497758391668, 0.859066324944201, 0.5889231224000007, 0.7636727189102801, 0.7826910019317082, 0.9282901082321531, 0.8042363302855616, 0.8961490963601969, 0.6922368310379305, 0.9020043627660677, 0.876468238582029, 0.5923740659303016, 0.8215866548760479, 0.9337059188957479, 0.5801337152621544, 0.9160236485330318, 0.8092318774082774, 0.6562566609166245, 0.575708325465563, 0.6351846032447082, 0.8199075723747504, 0.5406765191555194, 0.8168024568060428, 0.8319464725172383, 0.9899373970864909, 0.9952744868864849, 0.8229548175422733, 0.5699821229972604, 0.751165116550879, 0.9121718965674637, 0.6620163695850929, 0.7835780508900043, 0.9726118440078018, 0.690396648031695, 0.8049558714243372, 0.6131709515510448, 0.8063142020527112, 0.7107816824630447, 0.9016484374758706, 0.6618658370912962, 0.6013723298645073, 0.9089005856472085, 0.708890156508645, 0.8235948191800413, 0.5243401135662481, 0.8711616143990315, 0.6014151906755056, 0.6730082967310651, 0.7962249684868694, 0.8547343727108834, 0.6029955950049221, 0.720136466763664, 0.6957369036690215, 0.9075956220972312, 0.9669613434396236, 0.9616670781232044, 0.9290608293432212, 0.9369919873326178, 0.5325036751068775, 0.5490946904509415, 0.8219844711666893, 0.8863059659670063, 0.7952613983343223, 0.9263335436876345, 0.9479088957250786, 0.5927342807118656, 0.7264438829394049, 0.8804282144028024, 0.6960160823062791, 0.5318129858541032, 0.8454841017351904, 0.9623983408036321, 0.6639018173223483, 0.7961009641276826, 0.5105836619139514, 0.83623953286885, 0.6944671801433913, 0.6147424270558517, 0.5412231760959962, 0.7053463486852612, 0.5805585933676367, 0.5836870151832478, 0.7146513627613161, 0.7768136572410064, 0.7792314287930673, 0.521391363245461, 0.6438667781524, 0.7349724639095438, 0.5590157257228532, 0.7108972835760029, 0.903901331329083, 0.8152993022097166, 0.9940594834836785, 0.6846433399445973, 0.7636672030822733, 0.8281440571236929, 0.5857226331163992, 0.8393388405494161, 0.8406112695572284, 0.9943575598186281, 0.6379223390548577, 0.8686344321882168, 0.9205088488993747, 0.9741089357998085, 0.8644421417813993, 0.6829667493213432, 0.7114571062945763, 0.8861364343894252, 0.9829878989092007, 0.6054676094299197, 0.930500046822603, 0.7181598823720272, 0.9797501688831298, 0.7890760325458326, 0.9143333855840357, 0.7445567311364301, 0.5331683139249536, 0.7412586910906396, 0.6956740636692892, 0.989979757947538, 0.5751855457332198, 0.9524268508344516, 0.8362669335895648, 0.6807879457103557, 0.5189833587902256, 0.7657745852203376, 0.6232791813917542, 0.64562212051285, 0.7784417575242382, 0.5061322921578004, 0.765543534616151, 0.930591985057047, 0.8582060332822075, 0.8630293513762837, 0.766360666022615, 0.8120946798240385, 0.7356417320073991, 0.7058962773965005, 0.6987934178302021, 0.8108690720252688, 0.6385170153700299, 0.5408337636386933, 0.7922446912505601, 0.9035785710396262, 0.9202099030280457, 0.7597806637986992, 0.5817161185002417, 0.8059939692906573, 0.6948426421121312, 0.6286389802048074, 0.9788598388278928, 0.5143139200085045, 0.8561233599453674, 0.5670713685648827, 0.9261612908363126, 0.8888631577891117, 0.7153576961086123, 0.858589407995904, 0.67282422843068, 0.8783089485001152, 0.6620002426022216, 0.7311711747346468, 0.9736624870504053, 0.7681354791477906, 0.7584531023839125, 0.956714361122341, 0.726650143937505, 0.5262563969194158, 0.6409956259732392, 0.5439685275319976, 0.9388836611707798, 0.9034906568835035, 0.8563789296867754, 0.834243223186069, 0.7232558071627753, 0.887541575553034, 0.6423221597479964, 0.8400885410890188, 0.6824046078968954, 0.5184836749634462, 0.9459870946324549, 0.809522922409708, 0.6914755903633351, 0.8952074145103408, 0.5828587610998712, 0.8714126942796008, 0.8904953974371967, 0.9518083394055917, 0.7487692936560055, 0.6127398581269015, 0.9319947205385657, 0.9504973240080865, 0.8070970947750145, 0.5094230015169593, 0.5838804817241766, 0.553595102709729, 0.6928827304804461, 0.8958255586843797, 0.9853162237898909, 0.6520318235179562, 0.6894564522892372, 0.5828756452124269, 0.5344878389504639, 0.7077368023936212, 0.6195060836700546, 0.8009267839175289, 0.5141348376883621, 0.8277185401709843, 0.6509771258093033, 0.9966516445950631, 0.9841885913946836, 0.8355428299491452, 0.9675386163662651, 0.5532377440833558, 0.9594801104012346, 0.9825785596203167, 0.8750730932645143, 0.5361443454858985, 0.953726184300083, 0.8511246449398812, 0.8295409905404069, 0.8104097287651155, 0.5445598077006819, 0.7196168836606296, 0.555789067518443, 0.7980047492871163, 0.8986817465769824, 0.7883678129809092, 0.9031183493116227, 0.8133263129733717, 0.9458285555867942, 0.8014588469834687, 0.9259762880623417, 0.5010561548694863, 0.8023874156964292, 0.6791321321264501, 0.5227136057944402, 0.5147077972883447, 0.6108579965273774, 0.6402071460767484, 0.7889082101482333, 0.6416438073044356, 0.7299055673760964, 0.5619841412067161, 0.8366220480660882, 0.7755683898140792, 0.8013713289083795, 0.7673648692051658, 0.9860248314234095, 0.6907884383124221, 0.8835318369334131, 0.8827734844720777, 0.8643461776208302, 0.5372573402751935, 0.6364943717961282, 0.6678029781197168, 0.5225074617170737, 0.8945769903672824, 0.7985677785132601, 0.8424682040511247, 0.5325865888650414, 0.6610434430268544, 0.791511570351529, 0.6653637835327932, 0.6937092014524755, 0.5780776260312561, 0.712353774503812, 0.5317838660660954, 0.9197937372092786, 0.6352779672271607, 0.6415733481392614, 0.5834771465099167, 0.7728404466902958, 0.9058022612372811, 0.9106718145424383, 0.9319371487020713, 0.8070625515798988, 0.6319458616662996, 0.8609744552137054, 0.6146676195796489, 0.7966218542588819, 0.7633026987210565, 0.8707223145332776, 0.7947490067201293, 0.5842769495080818, 0.8918146396154705, 0.9492164610281943, 0.8806183364167011, 0.9768221958118924, 0.707638464581707, 0.7152921052479477, 0.9300461607061514, 0.8395071195448089, 0.8801867855030174, 0.7551354252369626, 0.5720154936331903, 0.9281284635923854, 0.574886964814749, 0.7763114666883637, 0.8537789061622578, 0.7941241553281002, 0.847390419320724, 0.6118817575203137, 0.8868485794679306, 0.8111756148823439, 0.5783410751276463, 0.9972637781670582, 0.9411648505488039, 0.5628570465188089, 0.8354847977710481, 0.9953318707317373, 0.5994059292261131, 0.5778032556196264, 0.596011063708512, 0.7064256534521405, 0.7466752881454044, 0.6596576581393699, 0.9657744419251355, 0.9441812692598072, 0.641599519471556, 0.6806646425663484, 0.7185950571334656, 0.6422872798819521, 0.6569585454605675, 0.8964982072090633, 0.8233824919733043, 0.6085391111462639, 0.6679021391317099, 0.9371226606757898, 0.554231392234052, 0.6889379270083213, 0.831801017721072, 0.5100765744213412, 0.5285863818892446, 0.9689345706814212, 0.7384199966447486, 0.5975319839538062, 0.7055033565473922, 0.6896797957739704, 0.7541759122488925, 0.8169897910146131, 0.5269839041503777, 0.8833412953673552, 0.5659665417954243, 0.857591780508222, 0.6061967660290345, 0.7966773952270356, 0.8217090676317341, 0.677276868099141, 0.7131599010770242, 0.5262694449415326, 0.9018994763566144, 0.9069554070604466, 0.5628655208704434, 0.6835133750182674, 0.8096870974837687, 0.872273144410385, 0.6985140961791884, 0.6111458401012061, 0.8818219020247051, 0.731831611941955, 0.5815198328383906, 0.9273298016788782, 0.5339697373581221, 0.5914690672184828, 0.6316104478710206, 0.8830754169064831, 0.892697879564236, 0.6416563760787923, 0.9210168872780957, 0.9882325944073351, 0.9197503273567715, 0.7651150349935856, 0.5924967973708164, 0.6977848165351406, 0.5881031841467282, 0.6326643145449264, 0.7401429180542085, 0.6505783583021104, 0.8941173882378799, 0.975742218233678, 0.8109591541610607, 0.5553372444688622, 0.5660017347658927, 0.9140869792609647, 0.7340171443819101, 0.9615411353485008, 0.7390933522343257, 0.714552493580467, 0.9544668086157501, 0.8173733752894263, 0.8417076318927166, 0.671773684788789, 0.6130722440345288, 0.5423257510265038, 0.8906358702542412, 0.5734726436458597, 0.6169068819016799, 0.5649804408031125, 0.8328026521195488, 0.9594622500178437, 0.8383289986864499, 0.8046539950875734, 0.835589502268722, 0.8670326053422505, 0.779160823648024, 0.7872596553604725, 0.6749718459068472, 0.6574743389014914, 0.836958683721047, 0.8290070100015658, 0.728437742302599, 0.5134412196446654, 0.996443902299109, 0.6792882819387375, 0.9054807617632243, 0.6133275962346763, 0.9275327548264349, 0.783195145557163, 0.6422808868223409, 0.9569220082714526, 0.6109758386781003, 0.7854029938228277, 0.9427369675675715, 0.8518896586916829, 0.7261441879190262, 0.7555018974759174, 0.5941771196989063, 0.9548830158190109, 0.590876087191682, 0.5844459157244346, 0.524296354153556, 0.7097522461386283, 0.5001669402369233, 0.9157221763139761, 0.6690865995366599, 0.7771832271671012, 0.7396029870077572, 0.9842307400680015, 0.9551918728731457, 0.9753542055345205, 0.8896836801115187, 0.688697667433667, 0.5331208443199182, 0.7003774044901641, 0.5478595565164284, 0.5928624606814585, 0.8628313439513722, 0.5628870621527191, 0.7780204067401493, 0.7206555866086659, 0.872583178455367, 0.915189429222458, 0.6159710610250745, 0.7912834843831563, 0.9908763584234535, 0.6348185000978174, 0.9797458953979421, 0.9754434149795617, 0.933787529210248, 0.734593705231716, 0.8131087972534076, 0.7418131357912632, 0.5408747347437884, 0.7583205975605597, 0.687250247968257, 0.9266421627838737, 0.6999820648010298, 0.5737404909356093, 0.9711916503670014, 0.6140245936511515, 0.5302856354654175, 0.765914151263082, 0.8909886088124589, 0.8578709762182899, 0.5904629188959121, 0.6440433308192344, 0.6022497600557055, 0.6098818673126869, 0.998751782271539, 0.5992522083736114, 0.7128691054987937, 0.7514147791858163, 0.9289161877751219, 0.6522958120590235, 0.79367145813354, 0.9045461281527146, 0.6577107801519051, 0.832095448915374, 0.9317120582606795, 0.5312248014233241, 0.5944376153142015, 0.7269650893832708, 0.719446440188055, 0.9277059686030202, 0.8678487119899932, 0.7264294645884086, 0.9275112618019181, 0.975446973924924, 0.641277196779078, 0.6919489098957764, 0.5060546233950125, 0.7084218584825044, 0.5000160483612346, 0.5638358250400359, 0.6400851211559387, 0.5869183464471524, 0.7951012535965398, 0.5760824242162366, 0.8760530293646009, 0.779205217156886, 0.651944876444104, 0.5327348650062547, 0.6855108776634835, 0.670661973959704, 0.9609183162780377, 0.7340801128806732, 0.9486817159251273, 0.7164412721842426, 0.9296950434463054, 0.507212310289311, 0.789655167359431, 0.6413270503086539, 0.9244532599343138, 0.6365489591815883, 0.9179353800831483, 0.9228194398806667, 0.8784144824391201, 0.7457410098390254, 0.535124004600427, 0.7428647661339043, 0.8262719033722267, 0.6972198790478159, 0.9207345848055195, 0.7697823385601401, 0.662281501793881, 0.8196724416430035, 0.819258267239716, 0.811801193438703, 0.7041842869184036, 0.6236189795020517, 0.8474089841657537, 0.9646566620744037, 0.8233611819480688, 0.5236145620738375, 0.510312515641355, 0.5734263588864492, 0.706114120602354, 0.6455014291626959, 0.6231335737808392, 0.6164085664520093, 0.7224754465960801, 0.6046907259272254, 0.7697364715477306, 0.7356388634150355, 0.9199352319064981, 0.7939607669301945, 0.8755917044797386, 0.7409983669929907, 0.9288138947332036, 0.8806306596800935, 0.7887812432547887, 0.8395717671963236, 0.9610720344519086, 0.5972813137794011, 0.9268784510433545, 0.7041617437824719, 0.6000984928773858, 0.7607113057271826, 0.995720397518139, 0.9975690353647432, 0.6074419644966603, 0.574640694781231, 0.9130716123244602, 0.849411557137688, 0.5449445312482806, 0.548175252255521, 0.8888952576403527, 0.8528245498550755, 0.9835728281392337, 0.5696926978142562, 0.6713644048964036, 0.7930089401496508, 0.5500977407888655, 0.6259065034649657, 0.7179753640424772, 0.8624455160452388, 0.649868526506997, 0.6208158739715821, 0.8133313688288102, 0.8441162200106128, 0.5271393321531128, 0.991652465956242, 0.5983750256900192, 0.8582804587391739, 0.5842368658787191, 0.8770881813197542, 0.7668660054097642, 0.9329669498782666, 0.8318648574981167, 0.5977818619502684, 0.5106620623169269, 0.5572779571481661, 0.8719122488735693, 0.5137127919767461, 0.8911113343978286, 0.8593806633046139, 0.5305891336127467, 0.5125257038499593, 0.8375856605692604, 0.5257567898117406, 0.7920813662852775, 0.7169858824728867, 0.707716827246514, 0.8848071002828257, 0.8844217089963228, 0.661173450983096, 0.9418123280731046, 0.9648051980535359, 0.9426979500847796, 0.8522772585460169, 0.9872023835418244, 0.6969684944715421, 0.8538959478215916, 0.7875112756392734, 0.9931865263949661, 0.5453444436994617, 0.58876978144102, 0.9475408669483143, 0.9620714800727415, 0.7047561246457132, 0.77851336286206, 0.8072306688351036, 0.5562026015191279, 0.567127369871113, 0.7463965161701904, 0.5416298510312345, 0.5372676411579914, 0.6765270753009853, 0.860300940537793, 0.9218924659843293, 0.9790295583732271, 0.8440307586292901, 0.621533459169965, 0.5348881379717583, 0.9874995005466396, 0.797627121110119, 0.9142925839839096, 0.5281045542634786, 0.5343833116233858, 0.5390450717212822, 0.6355054325819348, 0.9118862681081952, 0.6362276379840828, 0.5186205791559438, 0.8508624302889615, 0.5046893423575718, 0.6500312377141289, 0.5529794985714616, 0.85681221406405, 0.6997338112128464, 0.7557918207831564, 0.5360895932815752, 0.7991997902954395, 0.6409301118970603, 0.5581326023772901, 0.7465192266441187, 0.5061747064911981, 0.6548297509221958, 0.9431874856857985, 0.605385638596895, 0.7340975645153134, 0.9946233292010032, 0.5492387791014004, 0.7629755203560245, 0.6630998233322573, 0.719359090051693, 0.8292829213610129, 0.6746896318605324, 0.9692061984802517, 0.8856330066836724, 0.9918308452497853, 0.6418091970560997, 0.6930712696547281, 0.7312984948434522, 0.6520252546259451, 0.8420324802799131, 0.8566825907929116, 0.5446156441957736, 0.5172303459673795, 0.8056467083491624, 0.8076389552949299, 0.9652528565431437, 0.6298420668265022, 0.568239635458131, 0.5211976830549836, 0.8917970797549337, 0.542144040186878, 0.9015313601553219, 0.8366179727205254, 0.883831529229899, 0.8155617253174448, 0.971661524461286, 0.5371907593989328, 0.7241941208486857, 0.6062451339157946, 0.8235286694390682, 0.9718482760153035, 0.5681267270951629, 0.776241402876754, 0.9071384245876999, 0.9473365970444318, 0.9254774672079779, 0.9907738240399389, 0.6412914211815052, 0.5333063607324473, 0.8372647044503128, 0.5502330156841373, 0.5274878603303088, 0.9884054941458669, 0.79549606513071, 0.8907143198802454, 0.5620461473650595, 0.7530232154110421, 0.5858518595792718, 0.6347664782437623, 0.8325446038697423, 0.745940478281919, 0.9151712061479795, 0.6928677971606634, 0.6466805372418403, 0.8239247138875616, 0.9633474410720739, 0.5586849501338506, 0.5632575977848625, 0.980249542855782, 0.5526295911410489, 0.6557271757938837, 0.5952633573363821, 0.516525935476702, 0.5679938000037436, 0.625637729243579, 0.5164636590141405, 0.6095332942733197, 0.6037920663190998, 0.8999886880303898, 0.6286492799500532, 0.7816880996456235, 0.8420150406285984, 0.9801553826844089, 0.9281926823214208, 0.5223969597296865, 0.7918949499399666, 0.6340980052154774, 0.8392161308498561, 0.92006690476148, 0.786703950894707, 0.5007554373746591, 0.6636414769579124, 0.7086565197888215, 0.517344549957566, 0.5081008278103438, 0.9520295623683185, 0.9371945372129385, 0.7735349323485938, 0.9006686993457318, 0.8830494894784868, 0.9663502447895393, 0.9430456716214255, 0.6665716893949502, 0.7389004380075376, 0.9978619059314908, 0.9307953820147394, 0.9650427605764762, 0.8465898682778412, 0.7296647437012984, 0.8385139060459406, 0.899781832236161, 0.6982864853874774, 0.8453004873990739, 0.8355040733093393, 0.8495450587194409, 0.7975457126152223, 0.9914084446474961, 0.7589533999064648, 0.9001135540307759, 0.9218062129525225, 0.7571882586388828, 0.8230927412883722, 0.8488488796838046, 0.5415402122253141, 0.7733924878580797, 0.8137139083008471, 0.6857732732528456, 0.8509342111833431, 0.7750884376049982, 0.5364399119097503, 0.8460634261793141, 0.5885834723625056, 0.9973841122323307, 0.8198376706196671, 0.9108891505890819, 0.8772427174024122, 0.9318810814063798, 0.9295099338057342, 0.8504650146389648, 0.609064523957021, 0.6138044617767513, 0.7873655975527358, 0.6634111563242873, 0.9637954003140728, 0.5137271430348915, 0.8468784173327537, 0.9712650698922493, 0.9066438482080668, 0.8432561094537018, 0.9884963308072852, 0.9686668866852881, 0.6610191281112823, 0.6822251242922942, 0.7090857936955501, 0.5565277650715559, 0.7557406662401857, 0.6244718015564434, 0.7430567880332832, 0.5827973901644825, 0.9056407282996709, 0.6572997303353587, 0.6727020285282624, 0.7956543913728296, 0.9830245725253519, 0.9972707289899465, 0.5727100751641407, 0.8117563919418769, 0.6279960156428264, 0.9904798871385694, 0.5588306620892287, 0.992330447996163, 0.5384914306295889, 0.9306532610805236, 0.6476380760787943, 0.9324043247761955, 0.5976653106863314, 0.5886396911470579, 0.6346786741991972, 0.6534764805277187, 0.5489047333205767, 0.6523561105509563, 0.9547184940658917, 0.62459633226089, 0.9231885883011539, 0.6547918610525798, 0.5073509798560106, 0.8034125745201135, 0.9310891734032134, 0.5351700940723576, 0.9707404397520387, 0.7192832743546176, 0.5312668927687866, 0.9866143527019824, 0.9418132285576966, 0.8016909524065319, 0.6248528291496033, 0.5065453785285197, 0.5070424332608814, 0.5873247324785584, 0.7433790790124024, 0.6781662151610814, 0.7064550709886284, 0.6030882709503458, 0.885809549940322, 0.5711177716535958, 0.8283870463402802, 0.6955023975411645, 0.7285070581037574, 0.5572801061601146, 0.7735347925114688, 0.7204406878427259, 0.6843009437645664, 0.9938608526522374, 0.6307394852542214, 0.9379039999600525, 0.5532338953398674, 0.7239567061871504, 0.9702248628600324, 0.7674084194009099, 0.9680442222725004, 0.799911571679695, 0.7005053231571887, 0.9899445337303947, 0.5696502835201467, 0.9861014593435393, 0.6268698155214257, 0.6442759591601631, 0.9871243441758153, 0.7653373858087344, 0.9652475141317574, 0.7521650253521112, 0.6942506959193397, 0.8518339965696509, 0.5824341528564029, 0.8524513644831186, 0.9341382574686192, 0.6779325770334914, 0.8262435287174861, 0.7746814907180971, 0.7887841065514889, 0.7263188620473313, 0.7130689167345643, 0.5004275188088751, 0.5040868264620089, 0.8873518485758684, 0.8400924482890393, 0.6240666369559333, 0.5680248635646313, 0.7217271944268655, 0.5362270377933827, 0.9979723207871858, 0.5865627910544773, 0.857190523686305, 0.7825479695694335, 0.9080818078374, 0.9868943588744074, 0.7285163354095299, 0.5577902855028951, 0.8488025335493767, 0.6122194641985348, 0.553214819347223, 0.8366591987306977, 0.60981907999422, 0.960539251971369, 0.9154550877267533, 0.9459462056412649, 0.6366722682848373, 0.9852795256371056, 0.8278103755775019, 0.8996495574933435, 0.5203891128274192, 0.9483705368022081, 0.5826464907345983, 0.8414654852308197, 0.9361444274747435, 0.6437737194487723, 0.7696151186035598, 0.5530840737083286, 0.8737349950600817, 0.51522118688811, 0.6306255210053815, 0.9456232471761536, 0.9443527475310363, 0.6422265162498557, 0.9382504154196344, 0.9059234388658696, 0.7667522788333654, 0.7888215956360649, 0.6068502980996827, 0.9479830160619851, 0.5511205045997449, 0.7131315001831793, 0.7124248753461524, 0.7135014200089709, 0.7692879010168912, 0.7568612797694809, 0.8299458309259213, 0.7071744573071919, 0.7854574830022869, 0.9888702059656531, 0.7529403755957537, 0.7472859444447297, 0.8280164532460392, 0.5753837462348279, 0.8646394150752253, 0.6422666221139579, 0.6126277660377425, 0.6484866300605112, 0.5383334896461619, 0.6837821389034129, 0.981528092341624, 0.6706552124484629, 0.5674158974314664, 0.9088625136198488, 0.675520223217962, 0.5908753208753659, 0.9157171656037777, 0.5975414594288864, 0.8937100501957174, 0.8514074263351548, 0.5174653753496963, 0.8290777514842321, 0.7629214386912959, 0.744552610528896, 0.7490361948958459, 0.9186462732093799, 0.9288649865152079, 0.7240058750650816, 0.9135092109760738, 0.7323652341948088, 0.8428428721620146, 0.7934891065658861, 0.9687699555392344, 0.9018558352141255, 0.8542290560229424, 0.872913904320735, 0.8561946702318513, 0.7128531031374362, 0.8777632667283908, 0.7575323066527258, 0.8222343644745606, 0.9185628857069085, 0.6620905529740376, 0.9321930594611008, 0.976617070689338, 0.7791483039210287, 0.6931258135973097, 0.6167953404080762, 0.7566740724490482, 0.8002758001451356, 0.7329385979803076, 0.715810594786327, 0.9872649182947816, 0.6121555569752699, 0.8978137162485121, 0.6211682719169491, 0.7479037246386789, 0.6728655540440104, 0.707156183621157, 0.8575056401132043, 0.759259917991758, 0.8173828704431074, 0.850424433352148, 0.9364258904297975, 0.8194667529967382, 0.8193536021209846, 0.5238657651982714, 0.5851509895242543, 0.6124656497364822, 0.6555871876584181, 0.6239169883570852, 0.5437582990567256, 0.5701117117664449, 0.5325677825705061, 0.6846449919661564, 0.9220702247716581, 0.9604593139373125, 0.8655081277999696, 0.780772710466433, 0.7869049359134708, 0.6902348170759464, 0.581853374729975, 0.6271115329956478, 0.7011545111027171, 0.6467602957034411, 0.8792445428942104, 0.7454529104573732, 0.5581026147761092, 0.8710670258942448, 0.8006628085594076, 0.5883273324169946, 0.755641490704967, 0.6827048516865972, 0.8602243250628678, 0.5188385195919343, 0.8870164025969787, 0.6489864104351251, 0.6207954587552444, 0.8902141532055114, 0.7672145668906409, 0.5340922987069188, 0.7834417128042735, 0.5198085477258201, 0.7460726650045164, 0.5676896272096983, 0.7436048715837453, 0.6720560350515816, 0.8290110149034442, 0.939513560733592, 0.70969724618776, 0.855190047624779, 0.8630282297103185, 0.9554926153186911, 0.6629873048516659, 0.7555882944892609, 0.8130092352706249, 0.7208702867478916, 0.7984592448940592, 0.8526701417063185, 0.6517224495731534, 0.9932701993447721, 0.8586893923779851, 0.5227897293537969, 0.7450497083169106, 0.6937073967274919, 0.807395505924086, 0.7263026216905349, 0.7096270948258314, 0.6760102594416598, 0.6847923262808386, 0.900262075974032, 0.6978899895236088, 0.8180245436829283, 0.9375079631695402, 0.715528465992908, 0.6305989574311129, 0.5671473439724257, 0.8892473887787524, 0.955292066287649, 0.719096027437597, 0.9403771671451291, 0.8106356550343147, 0.7451497475944182, 0.6520681700194274, 0.6007286290659235, 0.994499786491831, 0.8756166727316517, 0.9199246104827161, 0.9673129157627389, 0.7602218173549925, 0.8467549758018349, 0.9601229350163079, 0.9224973245037967, 0.8826279167341581, 0.5027379624235481, 0.8131700062477568, 0.8854217409684928, 0.8539629721953648, 0.6412754198719433, 0.542037069189243, 0.6153323372981024, 0.9932484112892024, 0.7649878426258464, 0.8082323351538698, 0.8834757291118263, 0.8439032991783786, 0.9321625634849326, 0.5142550614778635, 0.8686301145650852, 0.780362408149224, 0.8010409790872159, 0.5831895429465597, 0.9894605692567114, 0.8348861534355291, 0.8824024488295473, 0.8487203261490477, 0.6224463931711699, 0.8028991540473414, 0.8082704415831266, 0.8749925208548943, 0.6672946195818253, 0.6763142805696103, 0.9154873142627682, 0.9834270853691839, 0.5045780396128163, 0.8709418254361853, 0.5499129308135529, 0.8433514440931005, 0.5833300528579133, 0.8513848572170641, 0.6883744920681252, 0.8616711338721215, 0.803369877736785, 0.5140039545975004, 0.5415091744115698, 0.8105101680787856, 0.5837696644248354, 0.8796251283699528, 0.546000646416713, 0.9966213278584709, 0.9698297372319895, 0.5715165995504248, 0.5707011810059386, 0.5839113748824716, 0.6425934787032737, 0.9504317660539392, 0.9737934955404547, 0.5876713566008179, 0.7235986767397269, 0.8160343418692793, 0.5446077555679179, 0.5773983952932866, 0.9032546020820504, 0.7394208817596474, 0.9869287453751909, 0.8958162493967157, 0.9452879115244093, 0.7501337679806557, 0.6599091040055813, 0.7847570528842014, 0.7375518977187856, 0.529394308266326, 0.9534336877352854, 0.8668968255247831, 0.6125125180418751, 0.615101481560621, 0.7513253347627917, 0.6780733390207543, 0.7056720054604853, 0.5595871835305574, 0.6151846433628197, 0.8372969647180515, 0.604080005576892, 0.7023816596505845, 0.5912549271403793, 0.7146915981948564, 0.5370679130570823, 0.9850299810792382, 0.6203390296498833, 0.6161023734753199, 0.8458807653855269, 0.9164634777288753, 0.5691488564346567, 0.759928365272849, 0.7479995743389516, 0.8172930876101732, 0.6918908511178892, 0.7900601638059158, 0.5467756131503152, 0.5883778375702219, 0.8802583586594575, 0.5139742754967782, 0.8508234953949103, 0.543309631818799, 0.9788925401352997, 0.5814884733619035, 0.8673965549263138, 0.7468483273980022, 0.8351135387535664, 0.8456162149357194, 0.9924625916000744, 0.925603743639261, 0.5715356080643313, 0.5366181119488125, 0.9460851455283501, 0.6448463080255474, 0.561596168793556, 0.5923687809749507, 0.8187405114763824, 0.9483071376498682, 0.8028326373240078, 0.7484601534926325, 0.9278049581274176, 0.5997808372399704, 0.8148060805020501, 0.9496083094359604, 0.7284005148473414, 0.548195740365617, 0.6167708972893315, 0.7199345719213062, 0.816058279452353, 0.6201069821097609, 0.9142398027616193, 0.9812967907969524, 0.9746904488671835, 0.6174687294981609, 0.8559535894357275, 0.7159354965922298, 0.5899994952833836, 0.5878493288763831, 0.7051763683959783, 0.998510601156936, 0.6690388174377386, 0.752068557759999, 0.6018562557688687, 0.7131827461658093, 0.9430705399768726, 0.5983624114184911, 0.7444174365050993, 0.8601243322322901, 0.6992896753656708, 0.6018119593540254, 0.7187351328730776, 0.7941534240843806, 0.7447139059621299, 0.7117225587251877, 0.6764087275305879, 0.8147296460214636, 0.9491720210385215, 0.8359813776368712, 0.6508815475472999, 0.5550550375515297, 0.9764247081828439, 0.8173017411721488, 0.7494216005388237, 0.5345941900283059, 0.7661686729545811, 0.8399743973994738, 0.6399105392832596, 0.5488648471759833, 0.765262494109617, 0.6630811064717972, 0.7468612322437125, 0.8911294527931013, 0.9780879846598877, 0.9066332588542954, 0.7526267633805893, 0.9630588334697927, 0.7820073007339512, 0.7168707654161304, 0.8773019117888088, 0.8193942582368561, 0.8044880261085523, 0.5113853440169152, 0.6660548345502202, 0.6761466017363875, 0.6549306163947478, 0.7712211400967957, 0.9015682797816824, 0.6044721983298608, 0.7256295236959924, 0.7810492494864012, 0.764339961079966, 0.832926098220717, 0.610707744207931, 0.6433374947906337, 0.860872577626955, 0.6567073924033793, 0.7958209577693046, 0.7539030879042414, 0.9219839688973107, 0.964234591186993, 0.7761445346313935, 0.7163812040037256, 0.620836525237439, 0.6172928014163988, 0.9206968147275759, 0.5861247686818482, 0.7792742090426212, 0.8921830826399828, 0.7451175985268981, 0.8366731134738965, 0.5466337742901899, 0.686535949692306, 0.7744927477074426, 0.6510888370794058, 0.5779408681848504, 0.5154282932977918, 0.9985572443329391, 0.5628528287306015, 0.8661652491953802, 0.9223739108765652, 0.6764646992800648, 0.9029146001727408, 0.9240567386412071, 0.7118706899213219, 0.7553369731866527, 0.805656265688421, 0.6717368019593193, 0.5996435998482068, 0.9718028511312378, 0.7131024787848698, 0.7484141698796307, 0.9540540273599688, 0.5057758859230856, 0.7900123701056929, 0.7977421749210555, 0.8100044119073053, 0.9372149770719875, 0.5369353399162275, 0.8468028011692874, 0.861709098581045, 0.6345110986602784, 0.5184079904128973, 0.7703789772361508, 0.6025402832123131, 0.6224903101363661, 0.6113453050918367, 0.9529404437645586, 0.8928405207590383, 0.8415889551188052, 0.7942371519499722, 0.8770596957533204, 0.6948554534158471, 0.6867677857661296, 0.8544003621639862, 0.6312118529075577, 0.727415509641046, 0.6551348463065219, 0.9912957366942435, 0.5525668715986307, 0.7037323076419004, 0.7454281008812724, 0.8525226509170549, 0.7856292395828375, 0.8986555981172648, 0.7523127429981671, 0.920368803451318, 0.8789150674122919, 0.5017569420639159, 0.7699129637483146, 0.5110355611158652, 0.6404636509737721, 0.9749444198969197, 0.8653814437448437, 0.595070063536137, 0.770221200868564, 0.7189563538999355, 0.6556195085930527, 0.5061657085244342, 0.7137220434568764, 0.9864891065200085, 0.6270655966948555, 0.9873168764091379, 0.6845180229231578, 0.7489765700313986, 0.5884795548480306, 0.8156972672338962, 0.6672704261645688, 0.9176179411146241, 0.7142443806371601, 0.624848405545343, 0.5423732382531549, 0.6749050495944542, 0.6260942100492235, 0.8879862523656238, 0.6302050427844359, 0.9583462390142694, 0.6525501715804317, 0.6104198929854128, 0.9398297965847806, 0.8450858541052431, 0.5333755458464575, 0.9036613801054512, 0.938046511570902, 0.8442779759516605, 0.9931020777947801, 0.7711488821648096, 0.7024184996320975, 0.6971061544379782, 0.725289436763372, 0.9002116962555504, 0.5689358678750758, 0.7324571828933728, 0.653034599841293, 0.9827678255612934, 0.6243337410808047, 0.7965991664228428, 0.7165362407167655, 0.6768729955951029, 0.5244582735941044, 0.985416231774872, 0.5032062630272129, 0.6677862704580246, 0.7944357051431632, 0.9365577617639025, 0.7827048704126642, 0.7415245700495157, 0.6186362478960148, 0.65248819040681, 0.7650351744699765, 0.792334883320021, 0.666571447837357, 0.6210071163350831, 0.5102474561495219, 0.8536250648609953, 0.5485390317039311, 0.5593139669682238, 0.8297860681436627, 0.7205614241482037, 0.5601494722235618, 0.9830694110568754, 0.5134265442446813, 0.7842179742672177, 0.6029329397033611, 0.931008064382606, 0.657783434552035, 0.7754701728331883, 0.5528296377073753, 0.7738331808348948, 0.6391489817547236, 0.6917570908309877, 0.6683841980857348, 0.6812443264846659, 0.5098600799870128, 0.5108599583826781, 0.6836115835558443, 0.508246593256973, 0.5014668866010382, 0.5168600989694758, 0.6082649834736207, 0.6755271640645757, 0.8545938424597372, 0.729061529065639, 0.7422391639679276, 0.7418049767512932, 0.9873806947844543, 0.5014400000059029, 0.819238635954719, 0.8239919195757904, 0.5890739614871698, 0.9057733004465451, 0.5051768725398629, 0.9045512617190992, 0.5461930245889841, 0.7070077585295287, 0.8886644485618653, 0.9421370544912051, 0.8580633995407321, 0.6444051278149072, 0.932500435504318, 0.5019421510509126, 0.8271328778969421, 0.9122556175504791, 0.8746423429977004, 0.8471731503927471, 0.6223958579936795, 0.6960675228040437, 0.8467357059375145, 0.9201384600530053, 0.5149836177733013, 0.711592172658097, 0.693440305187867, 0.6911124978816405, 0.8439150434881221, 0.8248591354323502, 0.7717187046373377, 0.8664427984942107, 0.9152805786953608, 0.9467567609601335, 0.9812531573993915, 0.6120364412500532, 0.8852581261770487, 0.8909375089535267, 0.8154123037838256, 0.7608921704399864, 0.5311757963682864, 0.6501668218828316, 0.53742304704963, 0.8137166643362796, 0.7787833809166564, 0.5679756695641236, 0.9098812252008351, 0.7732611587563086, 0.81660006108963, 0.5647332539272084, 0.946280739914787, 0.5929051744299956, 0.937441636279771, 0.606797018885797, 0.5896540322747196, 0.8465489841777848, 0.5879373115835118, 0.622688230951413, 0.9899745552109518, 0.6279431042939387, 0.63250112952798, 0.5048059366276889, 0.9236900986135108, 0.8804687485510726, 0.6881999171007093, 0.5119007008331641, 0.5893108081976819, 0.5740040686714707, 0.828230786369321, 0.5313979065285213, 0.7443153738363022, 0.7168617004786128, 0.6707172886262424, 0.506864927736758, 0.8385459804271642, 0.752722861670975, 0.7813191773744994, 0.7756023280908806, 0.8103446803362926, 0.7370031624461475, 0.9939776971196163, 0.9140949642646419, 0.7434348019306933, 0.8860197026085068, 0.7690674553057031, 0.7783274999431333, 0.6711623410798029, 0.8931489582442362, 0.8490285749554103, 0.671139746440067, 0.7929778141977997, 0.799930559307275, 0.9931612494248384, 0.9177797637933868, 0.9788020665471283, 0.9681579658878943, 0.6472025474950495, 0.8612380140074458, 0.5042964113759085, 0.619895863820795, 0.5729536273797645, 0.9432619770651781, 0.7482819195202173, 0.9032335459161092, 0.5577485407531897, 0.9910609018128429, 0.7075721480732466, 0.9514534515626896, 0.5149731230832524, 0.8711714652151727, 0.8397904963320847, 0.5635872823845778, 0.9310517867532125, 0.5264787026296919, 0.5247944301302829, 0.8896037501531509, 0.6096839017665481, 0.8208007644895464, 0.5126974112027545, 0.8833501226998224, 0.9675644435252246, 0.6057068850421817, 0.6011028456375503, 0.6202255463742661, 0.6694421440493467, 0.8888639073284337, 0.6487812645736235, 0.6037598061336811, 0.5463950496437651, 0.9374260208768257, 0.6349192060125433, 0.5798365932736935, 0.9684061304048761, 0.5609249450354963, 0.5075580460254825, 0.7970342252620131, 0.7905254951115605, 0.666699073347516, 0.9973525259816096, 0.6265345192360068, 0.8615101655160116, 0.569624027542451, 0.5692966779473392, 0.5552054716200723, 0.9896244925402711, 0.7596385640182144, 0.6715070427624236, 0.9786101270071045, 0.9126825933154061, 0.5679900698893833, 0.8309200845297944, 0.5828279061310002, 0.8115572519829338, 0.8343511970850204, 0.700012872677894, 0.5478086005423979, 0.8127827953742722, 0.503090202011705, 0.7915888270346558, 0.6603979312459103, 0.570586263518027, 0.560359032726553, 0.5663992229531063, 0.5144221513188294, 0.5432083590515958, 0.7221546448857679, 0.75745604358056, 0.999707148828224, 0.7358619273459266, 0.580878143121974, 0.7932735561563137, 0.7084097965749488, 0.9581608413651581, 0.7660043611762417, 0.6753694865262139, 0.551582464939144, 0.5846224580390305, 0.9527099714500222, 0.6545670976731144, 0.5404314138291009, 0.9074230579959074, 0.8841800792102201, 0.7070596759219367, 0.7998233093187548, 0.7383057704035316, 0.8685558936806046, 0.9673459420690513, 0.5398374769091938, 0.9133686116557056, 0.7297881542598266, 0.9771760464459494, 0.8266497546567431, 0.9432134742072327, 0.6821635353709653, 0.7939544413009296, 0.5403876029458139, 0.9168343001537683, 0.9166392555826294, 0.5031920571027534, 0.7972822231782402, 0.6856592507413317, 0.6451262390408883, 0.6103662633513434, 0.6396140037991838, 0.6560430373969697, 0.6954587212573599, 0.6036617972327776, 0.8477477473643191, 0.9641428522975617, 0.5500980527817916, 0.720381976299273, 0.7396665227137029, 0.8103138903856435, 0.9383868912789275, 0.9884427060330425, 0.7177894809166357, 0.7519476804892837, 0.9328459248677612, 0.7462506618311555, 0.7495598404899926, 0.6266509861966294, 0.9964745293920834, 0.5126750180066579, 0.7808695179995165, 0.8135800216087106, 0.6055492173583908, 0.8326100502149376, 0.7379986566401826, 0.9560129629533054, 0.7369067661991779, 0.7010667195360865, 0.6581821134956249, 0.6824040213076692, 0.6280547438104351, 0.6690588983367052, 0.7835497189766981, 0.7230146757548344, 0.6596126447118955, 0.7200585627063567, 0.7534736600760489, 0.5034427360019016, 0.5906175100882404, 0.5953456719616819, 0.9305681945577974, 0.5499115485934558, 0.9661587647404928, 0.7595055949468743, 0.7219558882373729, 0.7576155355018407, 0.7570328673735808, 0.5853098095986695, 0.700605816722677, 0.711189814410204, 0.5977659436868934, 0.5931222998627503, 0.6362473685799044, 0.530852902590778, 0.9856097750516398, 0.9332024664526825, 0.5097438039836977, 0.8406215974412392, 0.9942963887636331, 0.7068744257389892, 0.6754596148561496, 0.6099948796981516, 0.9445164763406864, 0.5867281900464305, 0.8387356169574728, 0.8309866121354861, 0.5984040258226935, 0.7158449982791691, 0.6026357003900036, 0.9689509395904778, 0.8323126435675964, 0.8650086549102204, 0.5396064316557352, 0.7290367694946837, 0.6160339960087866, 0.8908833582780604, 0.759172060267083, 0.536617973175898, 0.8138735170436141, 0.6155852249600426, 0.7442729638419697, 0.9645686616573657, 0.6336440697577965, 0.674404520322863, 0.5080230549246882, 0.8805495220336426, 0.8487936413766292, 0.7690655123798101, 0.8728373567802542, 0.9984408857925815, 0.6360435330639584, 0.5883861290484581, 0.6614985090239476, 0.5263622316204315, 0.5961609258614196, 0.7512355201444174, 0.7076783023123432, 0.8068818139406511, 0.7045820665419645, 0.7593889387120079, 0.5685297030994821, 0.7017240398139437, 0.8443938305005088, 0.6758114674353228, 0.5754447117495898, 0.7988503403884858, 0.5846829287355546, 0.9051306783598678, 0.9585109635488304, 0.5462220361415147, 0.5436829883730878, 0.7363146119685822, 0.9063005959687904, 0.9606901997271389, 0.7622322747253016, 0.9314278788820849, 0.6437709567034083, 0.6610928941363936, 0.9506775345407668, 0.9580013276085493, 0.7999130252315912, 0.8279039362548117, 0.7056529744540223, 0.6848166475363154, 0.8172288059229798, 0.8822905820955971, 0.7359163178975829, 0.9157073995139644, 0.6126533372702148, 0.9424315418189259, 0.5040977625789929, 0.6252824614790125, 0.9071639505606812, 0.9772773525039055, 0.6765435338811165, 0.6433260257202666, 0.9646070449214509, 0.8498998372499986, 0.9203672192101058, 0.7973572651578454, 0.9217584139800039, 0.5117522330865814, 0.9021357909661454, 0.9614605389256372, 0.6062773352623769, 0.9593004345742299, 0.5379663736718966, 0.7008321402960354, 0.6080888405296729, 0.6095985152475438, 0.5492301637485112, 0.8215588475170597, 0.8359322808086805, 0.5249576908026122, 0.6986369898716225, 0.7043470233943618, 0.5862778632211886, 0.9000685134003676, 0.8005146420706954, 0.6167074822041148, 0.9455703711611618, 0.751510966038496, 0.7809727339316634, 0.7616039145595308, 0.5104422718547381, 0.7519937032484854, 0.7573756644536864, 0.8530101078411032, 0.5469493661995531, 0.639938272264431, 0.9000346821747576, 0.8261036951592582, 0.8556042590566234, 0.6886933321741117, 0.8066783812517395, 0.6783953557210664, 0.9368702912209491, 0.8200197111591876, 0.8226677145170491, 0.7150999512938938, 0.5528336464042795, 0.9978917636643556, 0.7579474870257623, 0.6956402989663584, 0.9558414867921398, 0.9423993972827405, 0.7049067575288085, 0.8767061166881347, 0.8390519744057363, 0.7494005112913003, 0.6707369609735353, 0.6960345033917379, 0.6562060347313803, 0.9855201197211161, 0.6448797699233417, 0.8788026501973745, 0.8416808190944602, 0.6813951897747716, 0.6815673606825189, 0.9139344658098266, 0.8023397459031566, 0.6553480037362359, 0.6165880345224476, 0.5134789395920708, 0.5182607893358069, 0.6636361538382841, 0.7622212679800491, 0.9859096204133702, 0.7024322742034186, 0.7215908473550106, 0.8483861085541302, 0.5965584888756987, 0.8468675659649934, 0.6969354710705621, 0.961272529324408, 0.5725030548252156, 0.6163177488511409, 0.5282505173917333, 0.9227134469328767, 0.6301457663269814, 0.8366441163800664, 0.8879842823422689, 0.8420340261630839, 0.9776249544954144, 0.9425780422895671, 0.6974098100022523, 0.6832416477069947, 0.8541589614223735, 0.8065192089422605, 0.6058818459374873, 0.6303075737184756, 0.801057694858905, 0.7863517374697596, 0.5637310884285076, 0.9260363569307506, 0.8284574084646241, 0.7093344478465811, 0.9508797826022054, 0.6755333065439522, 0.9777680296144078, 0.5353060529104668, 0.9850253715675066, 0.7241712449443573, 0.5470377374492965, 0.800765152306653, 0.9783595616828655, 0.7178551270405908, 0.7346118535197576, 0.8037179417998499, 0.672574306446293, 0.6943795845649242, 0.871018914374186, 0.6038139135329008, 0.6460679977568964, 0.7281529129888693, 0.9216866406174558, 0.8079821040783015, 0.8400660115816637, 0.8100872846931592, 0.6584375819026476, 0.6587703066448931, 0.5536010939847376, 0.5521316794806308, 0.9223484717926816, 0.868511216338469, 0.919975547542648, 0.6486902770406555, 0.6577715462828577, 0.689938002167023, 0.7756897452776499, 0.8033660743769988, 0.6427303067362109, 0.9218605201867973, 0.8705463488491871, 0.5410362194350604, 0.6049772952723864, 0.7485819288650106, 0.9746981864593134, 0.8857204416438698, 0.5254873376295575, 0.5341157316177805, 0.9696061471719297, 0.5924070012368201, 0.9364023030406743, 0.9741969243869344, 0.6518569695588304, 0.5883671575309701, 0.5293403005357808, 0.8874996741599714, 0.8308968914627376, 0.8389070706868874, 0.8512907105984077, 0.9121296175723681, 0.8612268242377842, 0.9347403020435971, 0.9949622861418377, 0.5554606773715511, 0.7746582805981376, 0.7236081263789638, 0.8461910053487337, 0.6369347038957465, 0.8442794197212796, 0.8471748541606812, 0.5603942980054607, 0.9432049079877945, 0.8241471818302659, 0.575584684948999, 0.8344870122806349, 0.5017891543437598, 0.9077032329141683, 0.5336577680051025, 0.8449829243271387, 0.5244539962886448, 0.821401628454762, 0.8073825692827135, 0.92765152603355, 0.8698940793992547, 0.7657004729880582, 0.9985935907542908, 0.5483272938436186, 0.9405299148029891, 0.978199371697108, 0.8154346461917883, 0.9419612653393903, 0.9769274828695943, 0.6646035806435648, 0.8026341012345621, 0.9860582276165079, 0.665174688926719, 0.5967224697551312, 0.5389418383949003, 0.738054049895541, 0.5130929189127087, 0.529698128758549, 0.5024764877751031, 0.9042543139168474, 0.9803215351600747, 0.813998011536234, 0.545463371249175, 0.9520647561696742, 0.8582809886127232, 0.7463714604184011, 0.6080584660472499, 0.5612106941373814, 0.8177392667247589, 0.799555803868687, 0.5642293351158123, 0.800323098191302, 0.874249418663421, 0.6552907103211547, 0.5805743109575336, 0.5684940506359977, 0.6667097247186375, 0.6255415096215535, 0.9998860796751718, 0.8053595477417688, 0.8087871010851175, 0.9632346867083887, 0.6926166916706169, 0.9003203772012367, 0.633866624347946, 0.7020394406506085, 0.8154714592619933, 0.850412181308646, 0.7648114310939167, 0.5763512577364749, 0.6172401325562561, 0.5947531441467416, 0.8800008072068917, 0.9824325574643734, 0.573994439580871, 0.8501734958759052, 0.9092237506229525, 0.9043992831851713, 0.7579722997824412, 0.5015121864596219, 0.6054999208811869, 0.9087410578356481, 0.536867089855545, 0.8383567488364281, 0.8857238470306306, 0.6236870501479636, 0.849137738233471, 0.7361559033435858, 0.8634165616253626, 0.5617640672448537, 0.7373579027919974, 0.7612163587810021, 0.7795112486045859, 0.5247040286140957, 0.753554741956503, 0.8972781954908425, 0.5623025311208885, 0.6623253440829752, 0.7753927048961351, 0.8741621390323084, 0.7895755638999047, 0.9028290709988829, 0.7426726624369373, 0.8556214922498433, 0.8659986180415342, 0.5628930200323999, 0.9654981611703723, 0.9840743621563892, 0.8481402543780385, 0.5645364210359529, 0.6143498292202652, 0.6157921251505433, 0.7403548656721988, 0.9530067065283191, 0.8536016440864875, 0.725750306713548, 0.6631034247450432, 0.8648358889204886, 0.5996326630483406, 0.9027127906233419, 0.6223600520210046, 0.8086072152902617, 0.9852312879714903, 0.6312855207348675, 0.7640600429034834, 0.6494503436902976, 0.6336067034716614, 0.7013471174716716, 0.8534939521578147, 0.9185536202692375, 0.7699566310434407, 0.8586394981612169, 0.5031329605613144, 0.8480353451905585, 0.7355816158031021, 0.801070930971381, 0.6465206225789504, 0.5243014235060943, 0.8219111233638194, 0.7825255361698503, 0.7017052947571109, 0.8618712383765313, 0.8998446010435213, 0.7659994659180633, 0.8060606004141352, 0.5761734525754367, 0.7509990812139642, 0.5622801163401332, 0.874658988892657, 0.6810849688499125, 0.9404063489683925, 0.8756318521929563, 0.8668199664257754, 0.7638464082461573, 0.5079258425737394, 0.7838062954388618, 0.5707177919124538, 0.9193286722171651, 0.8588916846195862, 0.9951799497289618, 0.6492138776079566, 0.5532285396430118, 0.8205855363533128, 0.7333717271506583, 0.8160206552120146, 0.7778500077972765, 0.5942321044132374, 0.965519687316339, 0.9324801325593044, 0.9435869905818078, 0.8384851153912816, 0.6804237418026429, 0.9726000079281094, 0.9612355194432904, 0.8613320927054189, 0.6753617273692454, 0.5777278360727296, 0.5015766410565077, 0.6251774035665258, 0.5214512395503121, 0.9775147673328155, 0.554697703355028, 0.9435882822837429, 0.6965559447664657, 0.6640104135961626, 0.8195619998347339, 0.625842060014558, 0.5094151160305865, 0.763397925820317, 0.6216836924443094, 0.5430902513740393, 0.9489733555852162, 0.8251676126176613, 0.5844639426471336, 0.5491676749828134, 0.6018804874826572, 0.8334473217636259, 0.6407435898083591, 0.90637394623818, 0.6103911476882404, 0.8802546604972334, 0.6115669128477532, 0.5509391310728127, 0.5572928527550787, 0.6472225685733362, 0.7477922945515567, 0.7997181683409154, 0.7260702527765088, 0.7170375426700587, 0.5944574720654819, 0.8455859051076826, 0.9231117363208285, 0.5957445014278565, 0.9103500540272623, 0.5693893085237156, 0.8122424887514679, 0.5635440143786072, 0.6100021403007718, 0.7369999455601919, 0.8645253539017188, 0.5525989135254935, 0.8608206092014502, 0.8101498069834157, 0.7875119457349702, 0.538063830375416, 0.8592608575904463, 0.6355090988490091, 0.8120481926735084, 0.9951384979379481, 0.9697626190287276, 0.699815619207588, 0.7237543047664037, 0.73894793821225, 0.5593325239470656, 0.7925063524587899, 0.7388657595642052, 0.5666166450347725, 0.9819132404742061, 0.5412344418697314, 0.5970251459636995, 0.9665444246492731, 0.5948429101865043, 0.6181271962613624, 0.8793151211787027, 0.6574612671643931, 0.9577499761645374, 0.6881443302036663, 0.6561367786450881, 0.5930641613545202, 0.5268862689314466, 0.8562771438473794, 0.8359523513615079, 0.640876654095676, 0.9197497502766081, 0.972217284265843, 0.9961136242610713, 0.6913457949872095, 0.8537864536768015, 0.5777283333007555, 0.6627268306070495, 0.8154778721388337, 0.7469120329189388, 0.7457322684814358, 0.7761325064197862, 0.7255834810091526, 0.9137157032221161, 0.506231141218593, 0.9387883457411712, 0.9939201901795831, 0.9635645983953021, 0.9823987586765612, 0.9118904252981008, 0.6031715016921599, 0.6237132356679075, 0.7666864773781934, 0.8822419087450925, 0.6215363638628048, 0.8575539296228258, 0.5975310860639041, 0.525077409732676, 0.5819576361435161, 0.8167985531413975, 0.846081408068442, 0.5835478778036749, 0.8358015867978379, 0.5164982429961891, 0.7173075650654726, 0.8749319257673254, 0.7810879722105402, 0.5652609908634909, 0.7830469775074517, 0.6558062323978051, 0.9288629231183856, 0.9731178950725761, 0.6931925280912401, 0.9824786905432851, 0.7285544304788462, 0.8684899815683965, 0.611481984124874, 0.6134320539909305, 0.7981892177000236, 0.5280985808733607, 0.5991402572950965, 0.6205780547065963, 0.6681497305101607, 0.766612054477795, 0.939345621957278, 0.9213997881364273, 0.6591529067417333, 0.6731121406761216, 0.6555903228338619, 0.7698584625691997, 0.883551325539353, 0.9616719051588961, 0.7713853733047533, 0.7090370176584905, 0.5058019283516053, 0.8013584585416356, 0.9619386200443364, 0.9032343032513717, 0.6143578737839767, 0.6108621510377867, 0.9423436138459252, 0.813390221977325, 0.6142764739994478, 0.8706073746791839, 0.9882929687538744, 0.872733485120799, 0.8902090064545051, 0.7228661714589546, 0.8653572627497093, 0.9141794342677718, 0.9874641303807268, 0.7491714969252374, 0.9342057788456517, 0.7556905597244807, 0.5477725738769612, 0.7381714769116156, 0.6092092334365627, 0.7660841565585867, 0.5874506279097089, 0.9374437732681651, 0.6415380094620831, 0.6261662091323879, 0.8921491184266047, 0.5404643076801634, 0.5374674963721862, 0.953922892734093, 0.9057616441962153, 0.9876615316297077, 0.7742945620861065, 0.8351767645403629, 0.6040108957049204, 0.5653163283788916, 0.8855140279957765, 0.5981350825983553, 0.9756885417014447, 0.5437886396175725, 0.7712815839407842, 0.9496880096948008, 0.8156918104063344, 0.6432845162934426, 0.5497963621082378, 0.9395972945102176, 0.5645025645693507, 0.9032194750007673, 0.698645336358159, 0.8127963849815607, 0.9617649564768305, 0.9122727380111229, 0.9475379260708348, 0.9818400359414674, 0.573058209897561, 0.9804939067718392, 0.9300571398309447, 0.8825219212105864, 0.6681914732032304, 0.6495827270341823, 0.7076727293306558, 0.8389077234255721, 0.8515042898681573, 0.991527781273033, 0.5882611253245164, 0.7112489834732497, 0.9926452672047196, 0.5876884896544925, 0.6098043047537872, 0.5368628636585532, 0.9315583248364332, 0.7215678116576593, 0.6360913469114042, 0.6625836337837772, 0.9539947945525407, 0.6493050049966558, 0.6116878306390459, 0.6624247206717088, 0.5700965973486689, 0.8111940752600144, 0.5144471232089628, 0.8057262931439533, 0.6267178889776572, 0.7813389304640619, 0.5911159175712719, 0.7905845921685942, 0.6973692612223263, 0.9450891437270217, 0.540977832543676, 0.7157970014739888, 0.6776560535406875, 0.6507303369397215, 0.9923147842171097, 0.7594013119504954, 0.9726343165455995, 0.6783241306370343, 0.9720521096187313, 0.6249582006881734, 0.7541599288042666, 0.586364458066375, 0.7554353369338581, 0.9733690593247184, 0.7280831241854508, 0.7436358307416953, 0.9395594276989236, 0.5159152508179364, 0.5096944632291684, 0.6314197848718122, 0.9828181048021605, 0.6050535773645779, 0.9554038943602601, 0.920873859600174, 0.5418132368804929, 0.5110467145974282, 0.6372895535825278, 0.6809748081018285, 0.6002474463288258, 0.5070511732570284, 0.6753500481357279, 0.7698541183049448, 0.7797454486185871, 0.7665931360870277, 0.5258039736163367, 0.7007001866114191, 0.9778036799831851, 0.7055612964151459, 0.7120382214565812, 0.6196866776299728, 0.6304695949629431, 0.7575307525881151, 0.9694223849777474, 0.9289492035829852, 0.5203626595480424, 0.592431372433685, 0.9943936092769737, 0.9246263012479834, 0.6610666253948282, 0.739624921275009, 0.7518705092879998, 0.955204133218112, 0.5715804650317917, 0.6840465374667426, 0.9020813349878367, 0.7772486464467301, 0.9804323148223459, 0.9687599029120516, 0.8991229988935598, 0.5326077960839631, 0.8463106922622953, 0.524619636689202, 0.7174102320075687, 0.5459011659805644, 0.910027689359237, 0.6149876940705126, 0.9123380403811139, 0.6391082740328056, 0.7816590854225454, 0.670992254459911, 0.7345163309333259, 0.7554725954054737, 0.7522879933005641, 0.7975143868499011, 0.9131959690971265, 0.7928793967841776, 0.5953024664496223, 0.7635123324921105, 0.8786915724564752, 0.6762012731572753, 0.7005401742783037, 0.7165552324627023, 0.9970775598383124, 0.7231574656060198, 0.6211947388063712, 0.9713240709022604, 0.8980489136497085, 0.5702117683092811, 0.9253538365451712, 0.8215040721316831, 0.7806757317840389, 0.5043355655064473, 0.9416149072557591, 0.9349860732770217, 0.9116000807484286, 0.6179499164988074, 0.7276856977262427, 0.6355902533486852, 0.8139895453329455, 0.6189415919984, 0.9639204973708215, 0.9062800653075285, 0.868646952641303, 0.7572223987860014, 0.8052981142578481, 0.6185685840555637, 0.5163681770588738, 0.5597045994733902, 0.8172221774725076, 0.8792082550603713, 0.7277825728018137, 0.5688598683916997, 0.6725360845434858, 0.870511743061451, 0.5558891127336446, 0.8940429303914461, 0.7524907954761362, 0.5835358156473875, 0.5665757685789805, 0.6827732901407704, 0.5480557062370908, 0.597068702228791, 0.6344168798331775, 0.5250232454595065, 0.7657714307733837, 0.6226321564345993, 0.8396084557643272, 0.5476909341055629, 0.6965029024064868, 0.6326018912489133, 0.7535063762465943, 0.6418147847237256, 0.7382316942571849, 0.8473739581390027, 0.8592387621838344, 0.7034516632133696, 0.7569470044402857, 0.888747305536082, 0.5714545729510756, 0.571752173120841, 0.6518141468838506, 0.561982910966422, 0.708044137684543, 0.8055859216908257, 0.6321450918887088, 0.7590803743783425, 0.7633025380541085, 0.6172532288471173, 0.8032528853084058, 0.7331550721261437, 0.7904027576799171, 0.7147872500563353, 0.950032034371739, 0.8332430280598297, 0.8686607939779465, 0.5572690347975653, 0.9483810521626661, 0.6366234802019133, 0.5781224855425653, 0.6546802328301192, 0.6855644388493037, 0.738849216814738, 0.5133349054899916, 0.881262909598286, 0.8580531035392349, 0.807475206362719, 0.8845913243780046, 0.5530898463389695, 0.5526769286373818, 0.97977452174328, 0.8886712316437146, 0.8468125642513469, 0.826822698876311, 0.9991152942951683, 0.5951245399524832, 0.5671328275263033, 0.5724474543315705, 0.8477273863894239, 0.5594037931594424, 0.5395197384947832, 0.5404819902621736, 0.5979548069989569, 0.9522197142500212, 0.982771155386071, 0.8784151917867372, 0.6485350070862761, 0.8533539744397516, 0.8153354019763088, 0.7512783618323784, 0.5086631723479604, 0.7328971258004591, 0.8475236678333824, 0.850718259397141, 0.8513416882068753, 0.5651623721845986, 0.5817507273310322, 0.8850141946320884, 0.7879525138510723, 0.6700702948993944, 0.5650158897112456, 0.821435377094132, 0.8466318009613534, 0.8552269669804218, 0.6722181757115615, 0.7456628117424913, 0.8754767484897434, 0.795640922642344, 0.5554681314546348, 0.5995598925573218, 0.5352120648659999, 0.8598550797177199, 0.7221433224585074, 0.9648002411482501, 0.7193280079214048, 0.8030389352352149, 0.5043028564158342, 0.7611503837208805, 0.8841268915293905, 0.540309134105922, 0.5404469361438977, 0.5307214682743034, 0.7917615723182431, 0.7795499431194357, 0.8651268813165423, 0.9635928640454576, 0.7914872058461013, 0.9951918375929798, 0.5499287903882621, 0.7685976366573015, 0.8986714979096939, 0.9699663304211928, 0.9473636807572098, 0.9192374702936736, 0.6656936073981987, 0.7312716696400643, 0.7116717579990104, 0.6905277625300885, 0.5148703592273833, 0.9387548113224146, 0.8948484652413287, 0.9804452781326489, 0.6711258320246781, 0.6846841227823948, 0.830416660364923, 0.7799633820392728, 0.8447752034921461, 0.7369504994965922, 0.5062536011515384, 0.7543630039148117, 0.5552115079034665, 0.9940845649984815, 0.7746231659286928, 0.8869023446718486, 0.6997781175796657, 0.8362227035415755, 0.6775235291344971, 0.722628946239793, 0.9872201674808323, 0.8361172766975904, 0.9202833681148297, 0.8050268739458466, 0.6694075733650118, 0.9271167205348605, 0.7275335264659057, 0.6382204156924095, 0.8665676292132503, 0.6199647123924363, 0.9159560292597049, 0.7528438399403787, 0.6621621073232523, 0.945119608532917, 0.879675861412418, 0.8960912064078321, 0.7437278718067408, 0.5200815076754919, 0.8721940600712235, 0.7976016313444603, 0.8163158713715446, 0.590203434103072, 0.7698227632741446, 0.741609073618293, 0.590798386740978, 0.8010914004146413, 0.6452433336193537, 0.5663253820183884, 0.5265608614559079, 0.8632372734490795, 0.5717537646798247, 0.6075834113188137, 0.526834305504754, 0.5463778889040566, 0.7153508857225227, 0.8454414535888777, 0.5419805115942501, 0.5983330346758529, 0.5406629145444728, 0.7984731947983907, 0.8342683361812631, 0.6525216800027176, 0.9609145499126661, 0.5872627919789912, 0.8014507726540484, 0.6575546384344981, 0.7235849052164951, 0.7213760805933664, 0.5219964677205438, 0.5762095609114677, 0.5663154644337975, 0.8633797680219742, 0.7326536148732589, 0.6680370569235099, 0.9381571288003656, 0.6189141298893583, 0.8934005525918378, 0.7829221705781236, 0.7853598630270138, 0.8107639685830901, 0.5821749012865243, 0.7257722379990684, 0.7789839122509294, 0.5554696925803413, 0.8087785523037012, 0.8122405626089115, 0.9197244965693857, 0.5924052256249416, 0.9297445230034898, 0.6422220999574566, 0.6375526699221165, 0.7878036494798079, 0.9106215378361896, 0.9040329845505481, 0.7599130983021776, 0.9258182367949817, 0.5461172757074596, 0.8650502996289666, 0.8309165301357437, 0.8707467716492158, 0.5687142159959575, 0.7290854316415707, 0.9198401510169658, 0.9863129824216641, 0.5654472384045117, 0.5642318118891447, 0.8892649696777088, 0.5772229229419189, 0.9758956517147372, 0.5037042706012822, 0.7787938181772187, 0.8978306114050024, 0.780351939047724, 0.6148827883126695, 0.6533402184845947, 0.9491931844743876, 0.8263399357364631, 0.5520547041311061, 0.7588870732597599, 0.8429631231299789, 0.8530120559613199, 0.5806521698880894, 0.8922492195020875, 0.7351819037110936, 0.9886970905336518, 0.78494048516525, 0.6767050839054314, 0.9947787527872975, 0.8334237394583743, 0.6150259256427764, 0.6373443389787774, 0.9975506950860218, 0.5470464491885717, 0.7768419884963633, 0.6491240450264746, 0.7571140412795754, 0.6617443590161016, 0.9213382369955312, 0.6594403304629434, 0.9720545104704827, 0.8182072767692726, 0.5859022595664425, 0.7233011216797471, 0.5756140274056751, 0.9092487188690934, 0.5630863301336044, 0.5042039843323467, 0.5967118040206267, 0.5048120052872251, 0.5326123784474197, 0.9378496022463516, 0.9344094814725334, 0.7423530903903999, 0.7908507699716052, 0.5765010785674649, 0.6807308692158804, 0.9646135027904048, 0.5131281069855664, 0.7470319823722557, 0.7188115619556079, 0.5679111019654413, 0.6918512256909923, 0.9511930166397657, 0.680580587054995, 0.5460278086932928, 0.5312291583011104, 0.7710950980694625, 0.9087718122073584, 0.68773453334263, 0.6329076935678624, 0.7730512355128828, 0.8499998746167319, 0.5424439263664569, 0.8035731457721358, 0.799601368210213, 0.7024798512965609, 0.8131610924778653, 0.8578588872117732, 0.7477143499074989, 0.5539909773683702, 0.630517343588489, 0.5681151541063547, 0.5813735094202348, 0.5020669609044331, 0.8633422417531467, 0.819997571132497, 0.9788073005775281, 0.9934979501660476, 0.7694144803011274, 0.7599989088113275, 0.7812790767624429, 0.7186089887435512, 0.7641494047453261, 0.9607265192706208, 0.7819843565522053, 0.7103146440458609, 0.9077801233157157, 0.7142837153720855, 0.8326433134911813, 0.833059208791797, 0.5152001143437994, 0.8095606783293864, 0.7937049808176894, 0.5338131698843426, 0.504095965847272, 0.608489371762065, 0.863785602858868, 0.9603494579816556, 0.7706145793887494, 0.9047218893142476, 0.7585134097805888, 0.9546565263655664, 0.5256100075062976, 0.9569437644787027, 0.773577536117737, 0.5364574483440661, 0.9642726968280853, 0.5020813476055093, 0.7284326806398678, 0.6443146216394715, 0.8910853204396211, 0.9971017394422579, 0.9788942313280339, 0.7151066173092062, 0.791552880170498, 0.7804892509089184, 0.8366984202293272, 0.8761703335209661, 0.5366104299125819, 0.5205456643274597, 0.8366664649812579, 0.9419975363387654, 0.5503025839585067, 0.8684259235578702, 0.8872022209744186, 0.5217754763528133, 0.7776238837113194, 0.7350707664367766, 0.5922123940907409, 0.5586152608540611, 0.5263883648509639, 0.5883815928870185, 0.7266543764114719, 0.6692623418492453, 0.6963363313854736, 0.6128306660377701, 0.7098218140410626, 0.9228611001992528, 0.9683401749440494, 0.6865814860594373, 0.9818063587386167, 0.6942986869206385, 0.9240374899461885, 0.5691073374591966, 0.9884639083610837, 0.9580887492754981, 0.7094135954787151, 0.8592350741994788, 0.6980696727640562, 0.967223222952798, 0.9682710626107374, 0.6314783654035356, 0.6968684971683576, 0.7207852479609987, 0.7251918312635147, 0.5473010926628755, 0.6167271250982607, 0.8970984615560422, 0.5443200309793201, 0.8954095643180076, 0.8833648363635342, 0.7281083043141681, 0.5613930858010501, 0.9203363641442318, 0.8974363267670976, 0.981426300489115, 0.6020440134416853, 0.9911135398673369, 0.9189595624411131, 0.8891064055179903, 0.6935129103082275, 0.6581675959103299, 0.9621526614081941, 0.7975586499642895, 0.8740895208785846, 0.9433570463666524, 0.9248430934983787, 0.6315622868255277, 0.501510721416087, 0.5399135758261622, 0.8522368639407911, 0.9665308448890806, 0.7530159285836506, 0.8685383575064849, 0.6899385833324065, 0.7747887354434384, 0.7089074746331583, 0.8963546778355476, 0.7401394256293823, 0.8613872724591356, 0.9038971507061749, 0.7078875223435583, 0.8722501245206397, 0.8387632663085072, 0.808055149107273, 0.8934374712774573, 0.6490149025060777, 0.5462928544674349, 0.812921532616194, 0.8328331088129302, 0.918530838948174, 0.6730412928263723, 0.9944612217302919, 0.7655329779619114, 0.7173287208080134, 0.7744601785588092, 0.9815542398155359, 0.8846919813599776, 0.5504741902822763, 0.6863564850796586, 0.7663590289769371, 0.9699532208656354, 0.6601227297237285, 0.9683072076255284, 0.9742602518962626, 0.850521773897644, 0.767459385145346, 0.5995252975559353, 0.901784234452457, 0.8952502172066725, 0.6225462118062175, 0.6701592765645625, 0.7688519833512861, 0.6787976111182391, 0.9793046380086012, 0.5867185007885676, 0.5995220691501546, 0.6065003898022749, 0.7310190012189592, 0.8104492784269179, 0.705401779702227, 0.6676743720253597, 0.5832555359462626, 0.9150616644341614, 0.551255932410611, 0.9609291837187056, 0.7194347460374424, 0.8259337623042475, 0.8262927030416297, 0.6050995805493362, 0.9737190433707513, 0.9088700654138975, 0.5055822025354246, 0.883044361734715, 0.5435589435283459, 0.8649760242239629, 0.6151002064594981, 0.7650169149074453, 0.8251677564592477, 0.712014846359976, 0.6153300615432907, 0.7015808554683879, 0.6705416869244956, 0.7076474216812698, 0.9296832700765476, 0.9531682078519592, 0.9824649954684659, 0.7470387869542079, 0.7334057367867415, 0.6157021778670739, 0.8039644506167241, 0.86365973546116, 0.9366199452526786, 0.588071164636293, 0.6918940960705486, 0.7911930992146075, 0.685940843317397, 0.8154944844191945, 0.7897761374982792, 0.6771518228253948, 0.8339667686450134, 0.5812059624873147, 0.9529426987613332, 0.5476808228135268, 0.9596396509458217, 0.6712689928997614, 0.5062186464028888, 0.5136115325032692, 0.9580238927513808, 0.9845542382787689, 0.7046367342671473, 0.6264316626185673, 0.8563402468320457, 0.9050820982631707, 0.7841317212472304, 0.6084883019467056, 0.8504107221488215, 0.6191234650541728, 0.6226712621484471, 0.578496711052237, 0.9135888884209673, 0.8378784503677034, 0.6944924863452289, 0.5892167330716219, 0.8930943233034658, 0.7733749495473365, 0.7426319177279856, 0.6949197371509208, 0.9254625499966325, 0.5414174853206001, 0.5502630703180431, 0.9595015616936817, 0.5081860273015365, 0.6984930955938551, 0.5147501585765175, 0.7239730435893197, 0.9384176710775969, 0.7546393562660725, 0.6853729221653322, 0.7282451835723607, 0.5677671808857816, 0.9339373489096828, 0.8944559069575508, 0.5727072877406789, 0.584030628361922, 0.641686606552951, 0.5392797357803254, 0.9170319463480987, 0.5690098673449917, 0.5354260472418915, 0.6636791837303084, 0.8112789389048727, 0.8358098998574024, 0.7095113771837886, 0.7334448971611895, 0.6476637139417838, 0.7966684513393084, 0.8562693598027332, 0.5495116674973604, 0.8972086291173478, 0.5996171164151627, 0.6301275781451485, 0.5916468065103139, 0.6460210427773847, 0.874344230407234, 0.8992282326375802, 0.9162943144513185, 0.6331334573394731, 0.8739877087822061, 0.8145989875278461, 0.82682303940497, 0.7817142601613917, 0.5165870689505647, 0.7885275665108162, 0.8089017258703259, 0.7233035472920551, 0.6997244990325788, 0.6260945125252082, 0.8392521711252632, 0.8105704057473195, 0.777635740413974, 0.5944784307588407, 0.5612690252591073, 0.8251298250136804, 0.8305542029689841, 0.9170876521416005, 0.78648863892898, 0.8410083213241831, 0.6333236648579827, 0.9922512647752905, 0.9138177840001813, 0.8187603623248327, 0.6037098960312497, 0.6759827714345319, 0.9324721371527354, 0.7941997828809144, 0.9156821434322533, 0.7660752989473774, 0.758125201451977, 0.6692775796003272, 0.7401794191020276, 0.8693962255321681, 0.6469073207180142, 0.9412285953780177, 0.7149200834108811, 0.530318096654953, 0.7134297870568673, 0.9449563707801361, 0.878462289863932, 0.8841283277356957, 0.5545846733511568, 0.7188892911124581, 0.6362744551672048, 0.8728482215115134, 0.844131546867404, 0.5153172823934193, 0.6610778303038282, 0.8635984133654808, 0.9931376670652194, 0.6635762997796564, 0.7623787034893674, 0.8483899022722698, 0.5416410810744937, 0.6389163955876302, 0.9229346772634449, 0.6845066410701846, 0.6337505346820211, 0.5693771538280936, 0.8415564461390174, 0.9453486327289099, 0.7665520456666124, 0.6159204565569314, 0.9628537132219079, 0.8599127155489544, 0.5988879004779663, 0.5320245012517053, 0.9952430820448477, 0.8989583829949724, 0.9600094793322849, 0.6891600846950781, 0.5074991691227246, 0.9510302854743237, 0.9564415155201433, 0.5075711498067472, 0.5881256769135121, 0.8420455852005705, 0.7662178497852614, 0.7308957844640147, 0.539742083798719, 0.7695057484732295, 0.6842286554738936, 0.959129075018119, 0.5366321843954, 0.5180022184886999, 0.6768532499970268, 0.6619849958988733, 0.8054934006951339, 0.7855951402637174, 0.5842296815713455, 0.7900553557567385, 0.6931252596130283, 0.777654731875592, 0.7789560114369245, 0.6084901774233189, 0.985478933266579, 0.739450647665846, 0.6770314433211827, 0.7302827473685435, 0.517356419320547, 0.8864118971136046, 0.9747246089516811, 0.657108538082773, 0.6273782381467512, 0.9065976182301162, 0.9854012292387921, 0.7693249562792203, 0.9018138555176756, 0.6429114319641125, 0.5814857585097601, 0.9480531132436316, 0.6289941122022378, 0.8604467790886173, 0.9214141000860826, 0.9259599156976923, 0.7691766558124563, 0.5233685464715365, 0.5567746161631251, 0.9084570551839113, 0.5046704266257167, 0.9434410608436125, 0.5297717680109801, 0.5218950127273968, 0.9429994235499554, 0.6933802467584665, 0.9051797561821644, 0.8250678033602867, 0.6133028070478319, 0.5573870222619706, 0.6222692728642766, 0.9632670712824793, 0.9129505886740281, 0.8291241166282968, 0.9239930534816037, 0.8788467568081029, 0.5468723507287143, 0.700039911042091, 0.752262212512897, 0.8887387682241756, 0.7135550793539431, 0.8117990906443385, 0.712928699103082, 0.9256703897579756, 0.9147832132869415, 0.7890676146846686, 0.6080720712582754, 0.8565410208499384, 0.9782342069406725, 0.6641589744575237, 0.6536595833528456, 0.6067040434717168, 0.9509426250918236, 0.6891944092728224, 0.9093128707614939, 0.9000992558695391, 0.5627977714799959, 0.656907646344296, 0.8555637405701014, 0.9382979025782745, 0.9687569799767283, 0.9394503918174378, 0.7857589670620858, 0.6540430844304035, 0.5422375010623516, 0.6606851200052481, 0.6583414388064439, 0.6731938927544199, 0.7435273550226884, 0.6033137032689149, 0.9634500261153036, 0.5946538159752472, 0.5097772554529765, 0.9586847137127406, 0.7552821819397247, 0.5747927864467631, 0.8531566300867088, 0.7248128036878927, 0.9173786277579883, 0.9933054988457557, 0.7285338639548045, 0.870555345408349, 0.7030814529985496, 0.5231192019386529, 0.9261148276186636, 0.8186094168014215, 0.7428562227595349, 0.6255625048531213, 0.5483133801254705, 0.5664262042352748, 0.996645225386154, 0.7438162351287525, 0.7542843986829425, 0.727861461004139, 0.7853446308460462, 0.7568720943902358, 0.5198409593867583, 0.7303876965938998, 0.5867234141413072, 0.6280537114108182, 0.9496983644861899, 0.7719956434263169, 0.7983588114689255, 0.6843240402140618, 0.8904217661357594, 0.653407511320129, 0.5524232914478466, 0.8748615592455131, 0.9820795021417175, 0.6479224787985032, 0.6682252367337842, 0.9130873823949386, 0.7833381398641017, 0.9730390183007241, 0.9340490539545072, 0.9028470002712818, 0.5806104223856173, 0.5287501170681814, 0.6273980040735982, 0.7831834685177039, 0.7212420633495397, 0.986149957308293, 0.8322654920426538, 0.5463020074436593, 0.867583450733442, 0.6322830231736787, 0.8909792175614794, 0.9438921023373157, 0.5124157617955873, 0.6762422186894292, 0.6540148434838007, 0.8988111153262107, 0.6800891444139457, 0.8952803197754117, 0.8077138667860022, 0.6351949383455887, 0.856779783915997, 0.7338116105314907, 0.5312371403506375, 0.9701535588853518, 0.7149161358057868, 0.7717437195486746, 0.8188948139299914, 0.8007040078285558, 0.6389071369736269, 0.7343751672780063, 0.6332240074223705, 0.5616148007450159, 0.6235742431967797, 0.6197875014480945, 0.5100990155861107, 0.9290004823986338, 0.7336496741971026, 0.9329418425909055, 0.9800244509854539, 0.7578251882973324, 0.5513774182284166, 0.6321749535304912, 0.8049153342439834, 0.7730918321315992, 0.572495096178215, 0.5325370413924124, 0.5561726320645979, 0.7346827228658832, 0.878335377845473, 0.6448965326866062, 0.5455938640048611, 0.7177548232459934, 0.6217503677323895, 0.6623791928717195, 0.7274260066762399, 0.5812255544788903, 0.8012432634350659, 0.8182329374387205, 0.7544954279943514, 0.8612882896004259, 0.5357346333168624, 0.6706695123987424, 0.7810088481286341, 0.6064731373312305, 0.7926622441597793, 0.8909680279308559, 0.7363624280586132, 0.7143336408186095, 0.6893128391104013, 0.6421024508432639, 0.9699713280686272, 0.5732251432100154, 0.9991156448622736, 0.5733251400031814, 0.9431050412110658, 0.835761609465969, 0.6075723332543689, 0.5856461116004912, 0.9811899999545206, 0.7127522530715888, 0.6439945693355356, 0.7281749620299325, 0.6491183670605396, 0.5807058369638765, 0.5400764660357495, 0.6671132419689231, 0.9811296095917172, 0.9118238929125639, 0.7450715347121988, 0.5426494415274982, 0.5725882970092047, 0.9942623637752022, 0.7825065246490234, 0.5950572801132314, 0.5207012258950654, 0.8528562705201117, 0.9015163346825348, 0.9234102346342998, 0.5823306697763033, 0.8640018514285055, 0.856939952663459, 0.8770381151915396, 0.684609913912068, 0.7576056732704262, 0.6318723799540249, 0.6115298693971345, 0.6711030080547395, 0.7106111084924829, 0.9283455647367485, 0.9994627751938665, 0.5177362393193459, 0.977155679818759, 0.7863127695079767, 0.9501270334654447, 0.6676876087955932, 0.61130764694508, 0.6599639333508884, 0.8171454106609721, 0.9620909033199687, 0.5331912726758058, 0.6695261447419756, 0.9127907255003603, 0.5142640911389889, 0.9598550421882197, 0.9581160874909106, 0.5972652888017562, 0.7215345142825229, 0.7398570641965936, 0.7717079980095921, 0.5015513973396803, 0.6871274495551195, 0.8082550362081944, 0.835625618591904, 0.9419142562614587, 0.8027434279599377, 0.7972524164306494, 0.9549523605613721, 0.9740784945207326, 0.687240992142478, 0.7662213391725413, 0.692660739551764, 0.7669127360819608, 0.748436111789848, 0.9541300110442399, 0.9677391960249853, 0.6888821480212021, 0.5622511144210531, 0.7456785724728969, 0.6402571781968267, 0.5457289358578563, 0.5982919509975824, 0.7886564524357251, 0.8610721548764473, 0.8500394428682732, 0.9280562659832381, 0.7323066111406604, 0.8709629153156921, 0.7108872875152765, 0.5048797008971703, 0.8210354234891475, 0.8080955024621741, 0.6119193722343466, 0.6636702839977418, 0.5732972351709686, 0.8651206320099902, 0.6552724301153038, 0.5933269414727422, 0.673546883936777, 0.7436657996854461, 0.8460337077155787, 0.8606412310221095, 0.7613412962998272, 0.9703067803734635, 0.9768194688984435, 0.8408042858361882, 0.948675391582411, 0.61693714512983, 0.8548240720508913, 0.7855555568551014, 0.7198544989699271, 0.5324079817112333, 0.7087308125032279, 0.9741620533028742, 0.6706928852985983, 0.5865678065643598, 0.7492566030075816, 0.7651886590999926, 0.6758763763880448, 0.7653037407437266, 0.5912410537922412, 0.9160093310444073, 0.8196382431126131, 0.9341254658252581, 0.6225856530733087, 0.9424493958424043, 0.776449686304449, 0.894352770973813, 0.6896717079879691, 0.5173286047229477, 0.6183986611787581, 0.8420467062269186, 0.6144611345468065, 0.8499022437454071, 0.9916574091537941, 0.7507311725389816, 0.5659401937557615, 0.676464128496944, 0.7562080584991363, 0.7619564025789948, 0.7811888591317111, 0.7494186980026737, 0.8064825273516619, 0.5362491175347415, 0.9715430637237406, 0.6536682134260855, 0.6627423264501218, 0.9920892955937972, 0.8428522286163966, 0.984162473701734, 0.6483344053688469, 0.9481056071396512, 0.9280137429345057, 0.6118674776852877, 0.9672768813852339, 0.9108032502552527, 0.9583272243679515, 0.9081322670305849, 0.5791670965052182, 0.5821918970901219, 0.8599471161262986, 0.8269258945275861, 0.5863884263774721, 0.5296593244367667, 0.8469374067709114, 0.7748560179741981, 0.5821428284677814, 0.8792608593287273, 0.6240977891952579, 0.7457837577116775, 0.518200011545789, 0.7040762375343542, 0.6433621451895624, 0.9390717988833459, 0.9981321291597581, 0.9126271558993255, 0.598061160623589, 0.5958424037911361, 0.8835592248512949, 0.5201252600597652, 0.8217156464207216, 0.897693254696282, 0.9525720710040048, 0.7854895735665586, 0.569062841328932, 0.9390175798541827, 0.9240570508884103, 0.9961731918935655, 0.9322697913436646, 0.6711999268062085, 0.6416542655902943, 0.7557847594021327, 0.7466320775568211, 0.6386796674450061, 0.594022590978462, 0.6915877119961079, 0.7076705232995245, 0.8784892745078863, 0.9695588573635944, 0.7087974106803963, 0.5657714676049097, 0.5709087262498085, 0.5084209879957761, 0.8692835194705573, 0.821837538019254, 0.6024495322492377, 0.9434639658560784, 0.6196536571269342, 0.8510595687076491, 0.8910197071871566, 0.5160110016844299, 0.6116751629893645, 0.8131441173232179, 0.7977213314849365, 0.758299125180979, 0.8563466921605378, 0.7368038780334862, 0.9353865284796856, 0.8530468590405893, 0.5287259050498985, 0.8700305615140018, 0.8853283736931026, 0.7914212551581403, 0.5547093492967372, 0.7190375741014303, 0.8725777319693127, 0.5569662030539899, 0.5372233734302019, 0.9536803258909369, 0.9573413768483139, 0.8765107887365426, 0.9475166738820318, 0.9697983636898027, 0.5205417660675782, 0.7008856359139675, 0.6964218424757077, 0.9578947273806189, 0.967901518520047, 0.5860393258831997, 0.7148035482215007, 0.611093503490607, 0.6142184677510278, 0.9160400090101746, 0.9035410791412533, 0.7514229608220153, 0.679133865072678, 0.8005517037385899, 0.6216274587825028, 0.8956030524448159, 0.9406773717692845, 0.5925578206924051, 0.8514633655767376, 0.6375338602102634, 0.6511840923234535, 0.9136147314679093, 0.6455030833894347, 0.9754195044614609, 0.8699478630967314, 0.7590042619627558, 0.7683880176283442, 0.749352966817366, 0.5293136746369917, 0.6717102831255719, 0.7139784711468606, 0.939747758058487, 0.7876973505694758, 0.7739253492302772, 0.7648705900774171, 0.5592979908911461, 0.8865014605938176, 0.5904771803061123, 0.8999003380375333, 0.500777311401581, 0.5197752532246759, 0.9103857235804482, 0.9667253385174899, 0.9594127676239608, 0.6184650178882198, 0.9127702119613967, 0.9145722420260969, 0.5339323631577967, 0.9657489129213328, 0.6948497937412688, 0.9410215868215868, 0.6117116175910398, 0.511268250372654, 0.6649543685156865, 0.529898789676388, 0.8486344684225862, 0.6518688851994837, 0.6759821951811062, 0.9548727048321684, 0.8845910166647613, 0.8430696766497554, 0.980458565097813, 0.7363750337338124, 0.7958539711035924, 0.9274143718260074, 0.8545841319702658, 0.7301333017134161, 0.6724901052574865, 0.7499139742842695, 0.8879442554843333, 0.6917198189083461, 0.9232905086600165, 0.5444422264731376, 0.5373520738729126, 0.6885516559677312, 0.9094229735059338, 0.7408015689464218, 0.6836076034038978, 0.8291041820556597, 0.9718112257471817, 0.5100449019828528, 0.9478036438649178, 0.7291116789014429, 0.5544613452949736, 0.8979994945788405, 0.6164937706572673, 0.577872362843455, 0.5039497802459478, 0.7374539366847878, 0.6768548761164653, 0.5508577713491101, 0.9569240048518535, 0.8119727376397641, 0.7557742969960202, 0.9844927952430114, 0.9420168967865881, 0.8070733323568735, 0.5896807477019728, 0.7152253806683335, 0.8478009840252281, 0.5261298906254945, 0.8596448462461159, 0.9326012330636245, 0.7115443353730516, 0.5869489239656016, 0.693623076802009, 0.6235491534815436, 0.9943848132325734, 0.6914914462551183, 0.8085609726021454, 0.6369857729644693, 0.9286577940972087, 0.5251353166310095, 0.7699829275950918, 0.7677746508172658, 0.6331121190055266, 0.5546299122273312, 0.6097339297537085, 0.8174189565310512, 0.5802151170216636, 0.5715953724480392, 0.7032907823951784, 0.7695445014422891, 0.5135032455936486, 0.5640876349602426, 0.7827024400299958, 0.9826305355709556, 0.5269938527547182, 0.9257939868729355, 0.6444680120687689, 0.5713686295055809, 0.6683132054436163, 0.8816158412162198, 0.9530500613450548, 0.9749177574987313, 0.7058099269054283, 0.6261276276050711, 0.7943301836003303, 0.5451459306010121, 0.7781502831295134, 0.5420687465820251, 0.5887151314267238, 0.8699351263226409, 0.7793490970161425, 0.9382006842141506, 0.5873054982488334, 0.6435870047641865, 0.5734450365973838, 0.7744342943750065, 0.6738972550144247, 0.5323378577759363, 0.6701993714122367, 0.606160173620252, 0.7977720564942932, 0.9792811337794178, 0.7741813223636547, 0.8946875332127676, 0.9201586521883476, 0.5266776426101991, 0.8981216635980529, 0.98014172576498, 0.6297160309375849, 0.9830645049846274, 0.5886127270433469, 0.9178559284494148, 0.9171340801401393, 0.9712204348853211, 0.7430976285440657, 0.918534191686983, 0.7236016062827548, 0.63018461634885, 0.7908225893016797, 0.9962824884094938, 0.6811003504589501, 0.777135206663899, 0.6908302682840033, 0.8756060599449265, 0.6544545872188251, 0.647603936820665, 0.5661275878702767, 0.9160829827182934, 0.8630284079577244, 0.6566749845855386, 0.6867558862365553, 0.9187578367843885, 0.8581382582030967, 0.7958380461459269, 0.6890051735615423, 0.9903253395179057, 0.6603134248542195, 0.8639698829077878, 0.6225090428133484, 0.7679495907633564, 0.8069837713895918, 0.7130595383696882, 0.8478264879496357, 0.6503031329296625, 0.8975611134073308, 0.8674131096979927, 0.6395859714293128, 0.6312429102033064, 0.6732473033504585, 0.787657372272837, 0.7815805748362943, 0.7420227708172329, 0.8844940719484893, 0.5862712207497554, 0.815518731513271, 0.7059161771698139, 0.6553407249054696, 0.7566929343368534, 0.6694365399348202, 0.8612953945754379, 0.8584339943538956, 0.6316792290825637, 0.7316361210422004, 0.7037608174209621, 0.8974629144305237, 0.6378605620129228, 0.5996020688425945, 0.7715383451592543, 0.6323362630226053, 0.726482514319677, 0.8909569693754458, 0.5945637129533132, 0.9416914827947869, 0.6826773370299332, 0.8745825793869533, 0.6443029608462619, 0.7415855256676581, 0.9605703288314442, 0.651041671996186, 0.9836474098965562, 0.9668363571063887, 0.5726535809438429, 0.5603931574624529, 0.7066277533367833, 0.9375452378291453, 0.8710629281702933, 0.5730025199097561, 0.7158341209344473, 0.7546206904477019, 0.7925877265360507, 0.6788951424513034, 0.9346598439994542, 0.7561518082649747, 0.9415161993869435, 0.6646361962777716, 0.6900588584037063, 0.6656125944918071, 0.9783065461361057, 0.5275723658430445, 0.5027445588040416, 0.7303297289743416, 0.8136799166552838, 0.7836385990759481, 0.5099509711744793, 0.9923363020468845, 0.5286559023144088, 0.7009597673858505, 0.520669034605534, 0.7664799900062769, 0.5999375291873981, 0.8229489528156635, 0.8648629442346971, 0.6760576325441277, 0.5808341868627984, 0.639496740538726, 0.5362704462465793, 0.8646438717014222, 0.5767735480572664, 0.8020748932945663, 0.8926101756516893, 0.7604477886291183, 0.6486090055082017, 0.588009579038116, 0.6579214319864156, 0.8150207459187462, 0.6580885486470724, 0.5461819203762042, 0.8816624369712505, 0.6825550913387255, 0.7137179141544797, 0.9937429093971943, 0.8398446391320752, 0.6205766750428384, 0.7745160241263429, 0.826935432175199, 0.8197649685513949, 0.5145931622120102, 0.9330260380493431, 0.8888694718929602, 0.789586693727246, 0.7197220902157373, 0.7095601723515652, 0.5339125749338843, 0.9925089474881725, 0.5907910503487976, 0.8891550534283685, 0.6292344788904327, 0.9794492094937556, 0.8862728808111153, 0.61177496411209, 0.8757639687354084, 0.9995745326630907, 0.5422557941840109, 0.6182256296931987, 0.6847885128463261, 0.9687376645241079, 0.7118967854682907, 0.5583498078568656, 0.6922679324363724, 0.6001032391607151, 0.9411907507121218, 0.8260004129004878, 0.8211213265014244, 0.7331154723630328, 0.5793604725387103, 0.9447512322396073, 0.785414460550654, 0.9159831595464805, 0.7381950658455905, 0.5176175295979248, 0.5866649996875415, 0.6085848757011314, 0.6603462000568435, 0.6131908450378317, 0.6955796268063352, 0.9396011107740403, 0.5383281392005663, 0.5298401040760569, 0.7344903828086942, 0.9408311372669749, 0.6524645066468747, 0.6123061109615777, 0.996763755573344, 0.7690303336539179, 0.8137980745305657, 0.5031946150382511, 0.9264611335349727, 0.9857557229808134, 0.5968230155207932, 0.841908957951222, 0.7740559335340387, 0.9354312483499405, 0.8909675004591335, 0.7128621557503926, 0.963009300940978, 0.9281990606671091, 0.8398726853743179, 0.8783572095681498, 0.84238710010614, 0.6056333206132101, 0.596791957596889, 0.6581105101756525, 0.5872093597515695, 0.5908071220322595, 0.8736334951761516, 0.8565609397368156, 0.871452510578003, 0.7592399753347963, 0.9042928827972619, 0.841549497406875, 0.8575447421505269, 0.8679850165467677, 0.9170735782307508, 0.7759787069189052, 0.7546739004113064, 0.8005274341177718, 0.5892149584567847, 0.9558905465733051, 0.6703567430085283, 0.9961245565999004, 0.7096289574679062, 0.8115596727590202, 0.9593804780985247, 0.7290887673820856, 0.5625357749806812, 0.5014635374142373, 0.6022125421410158, 0.5174087073098484, 0.9766292107053055, 0.8465998794888263, 0.7058030318039124, 0.809567700435251, 0.9869117479687768, 0.643499944837975, 0.9909487317331029, 0.8268188546643278, 0.7071819143269176, 0.8612612173622154, 0.5919730529158657, 0.5172884900430236, 0.9363578622512114, 0.9069334958855055, 0.5233135686387937, 0.7451117018817042, 0.641174166184775, 0.8357075286817919, 0.8321386128558981, 0.8425436962582636, 0.6152896817684622, 0.5553876018744075, 0.901340428786819, 0.5673806790138696, 0.6532594778750442, 0.952769645260906, 0.5062468744063655, 0.8872447037306216, 0.8548055707803894, 0.607698053116873, 0.624579414478654, 0.6230390618882466, 0.9772007339870468, 0.7868189038247765, 0.7537913432918137, 0.5994430989327181, 0.7695023113165693, 0.7750429529445306, 0.6801957869540419, 0.6340542121376922, 0.5530306998703686, 0.822649917099675, 0.9279738776843012, 0.7717495055867325, 0.5876205650635398, 0.7402288206947867, 0.6696681074443998, 0.847409933578045, 0.9505071516062761, 0.543344739837768, 0.6782822407979574, 0.6070555327702263, 0.6172283223319591, 0.756776506836861, 0.8578489123280397, 0.9204950751217172, 0.5991867008545333, 0.6567334056006883, 0.5763672379164564, 0.7748544330702858, 0.8056470101462677, 0.6140965101101153, 0.5044872155034854, 0.7517974150913973, 0.9160427092094342, 0.8453165454557928, 0.8191564099041138, 0.675803228616115, 0.6298299196114121, 0.5200417064283194, 0.6059814690898345, 0.8285679983384174, 0.6679762556275979, 0.772401328669279, 0.8120345130062065, 0.5152114485480198, 0.8610813181866346, 0.566595109260855, 0.733515013288597, 0.879785152261298, 0.8887515351467885, 0.9750637060205267, 0.6220551281309108, 0.7333484860360153, 0.5198401131411972, 0.5516170952544406, 0.7346536310829191, 0.6614638881254872, 0.538935420755144, 0.8204306367031553, 0.8613067616755149, 0.8585126517216004, 0.6952477900583665, 0.8018597703277808, 0.6506250759295773, 0.9350830125499319, 0.8239108855076142, 0.5246868015543353, 0.8526209328928255, 0.5142897145051128, 0.5811555811883103, 0.6222048064447216, 0.5663717761477643, 0.739824108767805, 0.6186157128117313, 0.5996421937698763, 0.8170908763945386, 0.7209832770860531, 0.7125242704728167, 0.8014282844057872, 0.7251022537639652, 0.8549670738076203, 0.6171387794796722, 0.8776595343235105, 0.6956399465082681, 0.7875719286422079, 0.851960394631512, 0.8884957066099743, 0.7921880643216237, 0.8361519108644146, 0.5619820944432441, 0.8309352670741945, 0.6387641709989984, 0.899306398382407, 0.8579515139665012, 0.5319412274005029, 0.6285330850080656, 0.8779675770317563, 0.7514164670067858, 0.7491808176898229, 0.5751509598128781, 0.9976097213704549, 0.6470858109515565, 0.9376353205882626, 0.8591901869319862, 0.5346373094625338, 0.6638994053379108, 0.6422779883169881, 0.5585138251198316, 0.9596478760874829, 0.551453024559178, 0.9677314096009277, 0.7677148675950076, 0.8357994473595506, 0.8079178063388766, 0.5532622484043579, 0.8574122998021699, 0.5637648211056296, 0.7631942789610935, 0.7280329001859253, 0.7256276077767954, 0.6466205248579162, 0.7870576510521848, 0.8568451789848476, 0.7618109968683198, 0.5853850572859782, 0.6314018679745617, 0.7433293702117703, 0.7564950622141853, 0.6518528849358401, 0.6093305007434398, 0.7702310909104679, 0.9926216083692602, 0.6175691244502678, 0.8902687101771987, 0.5576915806833971, 0.8406665453242492, 0.6848984093073027, 0.6711781271463815, 0.5918423305820545, 0.9810598238714017, 0.6382687018893616, 0.7298496825275257, 0.7776360130552713, 0.5787249930434321, 0.8627467219181315, 0.5709761542983554, 0.8056382424288417, 0.5275774211868762, 0.8903547212560357, 0.5506864556667148, 0.6849620564444308, 0.9290661230310082, 0.8320539445526128, 0.5477411554132474, 0.6649644445769627, 0.8246318536287612, 0.7795413180114401, 0.8162869457585517, 0.9605038128199221, 0.5686928351837106, 0.6740091610526777, 0.5428249001396999, 0.9862445585482653, 0.7051333555176498, 0.6581358240469293, 0.8095611106665692, 0.5981250413726955, 0.9968530936982123, 0.8693172392168951, 0.7543580275441601, 0.7435308670163803, 0.713539299934324, 0.7815290591735611, 0.8873463414040728, 0.5376346854979643, 0.8214631624735298, 0.7043612536532186, 0.6717928204271373, 0.7472878401856975, 0.6055505026263733, 0.8292836443842586, 0.8489278305406242, 0.7192289340299816, 0.7685774139110005, 0.8698238083494116, 0.6417528617312946, 0.6779148527029036, 0.8786176276273737, 0.6774317428088406, 0.7443696025288236, 0.5595801413635011, 0.6597342826098778, 0.6311400848480475, 0.6415758021040212, 0.7287631280219438, 0.6507026174832241, 0.7759878873862012, 0.586766448923264, 0.8686720470204373, 0.8407238344805688, 0.9861235679284384, 0.803618044002296, 0.7562507828878293, 0.9318121613943994, 0.8784935391474438, 0.7915844571475787, 0.8441414427686692, 0.9711713711348509, 0.6555549054939669, 0.5212078127229087, 0.5464750482002849, 0.6415062471043768, 0.9325719561271841, 0.8009301467300185, 0.757112686276636, 0.8942837790451026, 0.9129361679644298, 0.8364952930963797, 0.6530783561461392, 0.673462056480774, 0.6016757011114908, 0.7861120135060358, 0.732100754162563, 0.5622121051911644, 0.933522914123786, 0.8802863664675896, 0.6610897159940873, 0.6347196531048555, 0.5829944202455757, 0.8964378071590147, 0.570216408121703, 0.9859962722946557, 0.8815952863659103, 0.5807579013814692, 0.6667736447766959, 0.506741775653528, 0.5314295676768107, 0.7473884812580183, 0.9255558457524544, 0.7958630360078437, 0.9628006902190545, 0.6561069450476475, 0.9342686611214104, 0.7606234377924885, 0.5086125497597007, 0.8263435010149291, 0.5910873556087367, 0.9005309521977729, 0.8734891043802318, 0.9602191087675152, 0.7206248990300073, 0.5708996234470982, 0.5391159291791892, 0.9338360313311662, 0.9566687229912669, 0.5150440950332306, 0.6990185203224089, 0.7620856228079611, 0.6704636392453752, 0.6730965414527498, 0.9509203066128131, 0.981126650476276, 0.7870845156757535, 0.750865847770824, 0.5668352321132626, 0.875433933878801, 0.6768087812675343, 0.9306103720874147, 0.9529732598180786, 0.6920512206432412, 0.7257790215562134, 0.7105634281693503, 0.9261455859415488, 0.5735096049854089, 0.8073462423109989, 0.8604695775437932, 0.9471637384113882, 0.7486583356925982, 0.7174164773744343, 0.5832218300779484, 0.8563988932734643, 0.7147599962821815, 0.8032521519160699, 0.5349438707566676, 0.8356802342015275, 0.5607964839799924, 0.6234835918676216, 0.5200274825354234, 0.5209971586678357, 0.7637296449271227, 0.9391431651736547, 0.9838819485955757, 0.9502055573324908, 0.9613061618446094, 0.9398171525131049, 0.74423850097404, 0.5635102800473566, 0.6068331763733474, 0.6655087975550347, 0.9972869527877906, 0.8472627827666686, 0.5715792932710143, 0.6377711018647407, 0.730980094299263, 0.6268940865144855, 0.8497531610578362, 0.6477550353802064, 0.5605582796162853, 0.8044798732720684, 0.8325101993619998, 0.8288705353887682, 0.6339374851423127, 0.5378764041789474, 0.7342391999310017, 0.8007565881729005, 0.7722527104674337, 0.6133722480533605, 0.8837755215676968, 0.7209289302958239, 0.5228257636363614, 0.958713557883775, 0.8330658375860289, 0.5064412388149636, 0.8919741990177847, 0.6578674386858328, 0.6021062330703565, 0.6226062756994979, 0.6691858168675473, 0.5149882495823613, 0.6716662097004056, 0.9452397160524455, 0.6394935319246844, 0.983341413694382, 0.750998978421438, 0.7922372240983057, 0.8603781904284122, 0.7849534681978665, 0.8594012272206992, 0.5415332504519539, 0.6598045415211009, 0.6780045856504646, 0.7159799581954256, 0.5739143537142979, 0.9414189182498349, 0.901944448520333, 0.6374411163266228, 0.6127971573341102, 0.8445151527411914, 0.675644828973841, 0.544321087947883, 0.7755237201497047, 0.5585331835902874, 0.733391734438162, 0.6848161988602002, 0.8359699217209038, 0.6979643164931757, 0.8121648910144306, 0.544947437213075, 0.5547005607741663, 0.6102634428778646, 0.8372367504167615, 0.8901216534840615, 0.724514004377755, 0.5197499151375928, 0.9588866518434113, 0.7716149433395098, 0.8150194806904103, 0.6914188076108054, 0.6522297172525537, 0.9840844002857199, 0.8246400549435833, 0.8054233199414518, 0.6689394039964274, 0.7998299841087135, 0.600330484711046, 0.9447807472809051, 0.592477519670604, 0.6778175355684545, 0.7937338655803181, 0.9391915649169984, 0.823729353607303, 0.6254242533339222, 0.9181310910087374, 0.8550275423240896, 0.7414642041862981, 0.8529609305416803, 0.5872522444888697, 0.9315974389083357, 0.7792833010646865, 0.8666076229409841, 0.6309486040724239, 0.6273672917513691, 0.9885384826803634, 0.8542078066842067, 0.9336534814845803, 0.7123185485178444, 0.7109065892313382, 0.8993293535615225, 0.7347151866812287, 0.8997401457342789, 0.8470973660303115, 0.57993316836775, 0.613703557219034, 0.5571530739003021, 0.7722507813467597, 0.9052896939159811, 0.7093463502813554, 0.6880820484924314, 0.8289942897282654, 0.7617805946062332, 0.6405162086276267, 0.7665006090929934, 0.8984110863139421, 0.545742569746247, 0.8136040237247725, 0.8599160174553946, 0.6820264756561956, 0.8506432338827307, 0.8640593430989408, 0.8662476780207478, 0.8139706680996224, 0.6089913102495705, 0.9100521933226109, 0.6048488976687155, 0.956994514255537, 0.9597384395668709, 0.8171351258116035, 0.785256767345228, 0.5340153372748394, 0.6159840680679047, 0.9689247160401757, 0.5555785472150534, 0.5079176614486474, 0.9057614002335651, 0.8187973332596488, 0.6323322554748125, 0.954182703884431, 0.9065217492908129, 0.5599331767780262, 0.8954512461011678, 0.8403992726047603, 0.9900278909544378, 0.8060804813514757, 0.7668913556694084, 0.7437914556046782, 0.6127100504166503, 0.7922369721706803, 0.8209717137014745, 0.6193263250517291, 0.8223380986806702, 0.5715000421995595, 0.715629065932849, 0.9428558558734811, 0.7858503130373258, 0.8103547062284693, 0.6866709427730993, 0.870803211959788, 0.5505211406916819, 0.7824728783735178, 0.7370782062514358, 0.6998026855239388, 0.9685633898726681, 0.8655806102938127, 0.5801330755482655, 0.6052800382778005, 0.7561378762223709, 0.656070072881159, 0.9785990151276172, 0.9372115128831725, 0.9640778456049448, 0.7220218961593213, 0.6978058410068327, 0.9942393520769373, 0.5524680118786386, 0.8817697346929538, 0.7050992279098627, 0.723062183238079, 0.5054740459061345, 0.7375250149770438, 0.7224887718273365, 0.8815777323577751, 0.5869781816051005, 0.7976229889661908, 0.8075996522954254, 0.5031634809481018, 0.8218147923550091, 0.8082646757576981, 0.5852461503329109, 0.5876162955289433, 0.8183221296388496, 0.9558922317208677, 0.7855954815527304, 0.6292926205210099, 0.6057502849945071, 0.8909799036183599, 0.7119745015394476, 0.7932280018410485, 0.5106875327839817, 0.6786516119007668, 0.7214711932667088, 0.7305426612828283, 0.53305788952948, 0.8903073346251116, 0.9223848741761834, 0.5293364561444245, 0.6392834282462478, 0.7600239374270782, 0.5108287906748763, 0.7151661110119065, 0.5075451287991231, 0.539083192864221, 0.9648884389039871, 0.5141171497573866, 0.9831097186179494, 0.7386077567834809, 0.9820505106745192, 0.5139470799717274, 0.6602758974298005, 0.9518278356143809, 0.8863590968853551, 0.5566949330628623, 0.9335817891971415, 0.5507498689862234, 0.9551138610671568, 0.5174668678299605, 0.6961073160106643, 0.9534675035094787, 0.6783058930886566, 0.9137767587088722, 0.9218371375129306, 0.6648533098641815, 0.7010608459316904, 0.8632003606743659, 0.8505207541386139, 0.5672377459075355, 0.5106062232619601, 0.743534771949454, 0.708622691834106, 0.8054170135497496, 0.5950972341632084, 0.7296067986421402, 0.723882027433228, 0.9128529764062004, 0.6285228964451008, 0.9939234289113281, 0.8388150349172072, 0.8521695658136443, 0.501977272288411, 0.6498581189685058, 0.9810015331613757, 0.7768311227028111, 0.862940122054407, 0.6654253414278638, 0.5287609779812001, 0.7526223528406533, 0.8192070373660858, 0.7197362690231665, 0.8121673719647842, 0.9531221419028719, 0.6851368128535276, 0.5421998642253035, 0.7547308952573594, 0.7789873482716663, 0.6000797304359634, 0.7404744759381388, 0.9687558922338616, 0.8895165324286, 0.7064486642581125, 0.9236424121942208, 0.9230472690165878, 0.9066845534157499, 0.5820409801753148, 0.9550922971352749, 0.903560937659994, 0.528922382924825, 0.7463359683470385, 0.8192678389441718, 0.7508464697271422, 0.7054957467036809, 0.8427741148506835, 0.8429292727679376, 0.7462986336547768, 0.555281804746701, 0.6792047124528902, 0.6312832190283492, 0.988543825367093, 0.9836348022434374, 0.5755493097804656, 0.7394436843283638, 0.9723525637266559, 0.6983939889129271, 0.7268676100887013, 0.5808506954235553, 0.8590893562324198, 0.9697192340256676, 0.5793070762644734, 0.5975039282697683, 0.5623511190353394, 0.6071961865767637, 0.7062556365881, 0.8567885395700003, 0.917104174393736, 0.7822514745056189, 0.9512540829916902, 0.6103628142213309, 0.8280020732016591, 0.5026602858162059, 0.8172474472263398, 0.6113694189079506, 0.5445062682476312, 0.8502532263495393, 0.8220762977301579, 0.6052985435908265, 0.9246504040642266, 0.5940944066679968, 0.8328518868114261, 0.9559450394371327, 0.5771344062783617, 0.7493263521074056, 0.7729519418616011, 0.9543352163264462, 0.6375178915497788, 0.7431651117300846, 0.8970252664397953, 0.6753574326261331, 0.7152002387614941, 0.8202879928212361, 0.935984812778741, 0.5060851594946189, 0.8997946975240967, 0.6632506955707634, 0.5557358684030534, 0.6228999545159131, 0.6382499402468649, 0.6811452473881663, 0.7035688567783578, 0.9841223432933189, 0.7264155904419066, 0.7377512128298958, 0.9356033367064915, 0.5222527298485067, 0.9481333317341849, 0.7208650962838095, 0.7371379513204338, 0.9573313042638496, 0.815884716499448, 0.5428358570631852, 0.9030652776257422, 0.7828402065045206, 0.6322551688027778, 0.8071449354791576, 0.6104964582957666, 0.6349607341514182, 0.8041373569792203, 0.8445680264433042, 0.5260476981932074, 0.5571683621711742, 0.8576671525235479, 0.6657435104100826, 0.510995009189325, 0.9632853736802669, 0.7730568143092807, 0.6307774603750973, 0.8293131609167147, 0.8969513876556818, 0.8248644728027112, 0.6579840061382081, 0.7456341409763017, 0.8993765536819341, 0.7405988263843762, 0.8848049568652401, 0.999977146174995, 0.7377241625435862, 0.7524295218197383, 0.8272126214351383, 0.8980649378633623, 0.6006020848261884, 0.9117765444899517, 0.5927436316359052, 0.8863907580554823, 0.8105541943999894, 0.8824430763337742, 0.8237149983893824, 0.9609721326524123, 0.6041703329971841, 0.7612401263632878, 0.9381779643181896, 0.9908560120843619, 0.8634200259366605, 0.9803742830039897, 0.878040035133422, 0.9933129442319446, 0.6412333539018598, 0.7869124069097704, 0.9539366953762425, 0.8296449428617376, 0.7669413882892416, 0.8025702999367152, 0.8648283374239947, 0.5829268684674227, 0.7863624761710268, 0.6775001559704821, 0.5662760238413094, 0.7186422995049875, 0.6140867549052298, 0.5063843544985565, 0.8202119485917074, 0.9091688783914345, 0.682019865542344, 0.7173961776559534, 0.5059734700682337, 0.8821815951700906, 0.7160421057293895, 0.590436729100744, 0.9178529169447893, 0.8643805142470746, 0.8077685057166963, 0.8428650823132987, 0.7238727634651669, 0.6727220834245973, 0.824504520690732, 0.6217906588226281, 0.7714710563371852, 0.689340545443055, 0.7100192830748757, 0.7569845664036252, 0.7496090883729454, 0.6270626156103933, 0.5422732296917427, 0.957812416651708, 0.552080721988464, 0.7261888274325392, 0.7309009385580443, 0.8468426718898521, 0.5428347083595255, 0.7566339430508183, 0.6666579913751609, 0.7111275629355858, 0.744759400047037, 0.6549503552892963, 0.5513103700631043, 0.6152148670915851, 0.9762309778287132, 0.60434439575426, 0.8634111555769205, 0.9143612005043054, 0.795784316468559, 0.7251638816762547, 0.6387064233800207, 0.5775970927965661, 0.7840974606065496, 0.6394348966788171, 0.5126037578865943, 0.5339221890242417, 0.8676601370699024, 0.6844860642671191, 0.9008985289586462, 0.506357286286891, 0.9622873976504545, 0.7658186474314861, 0.7235921318339954, 0.789306088397074, 0.8049832128766562, 0.9158416478058418, 0.9454654250812002, 0.5214224661223192, 0.5669947342438244, 0.8072436205211413, 0.6994477891462918, 0.8887293121222692, 0.7517536065518449, 0.5360572721732413, 0.6589634935665654, 0.6149782657765084, 0.9478373997442345, 0.5581132110524374, 0.8757874168903816, 0.9847494858674666, 0.7468367437089933, 0.5958835517163483, 0.9655946426907098, 0.6638738055912916, 0.6376175844894901, 0.7552434879872321, 0.8875627619985745, 0.9269876539585916, 0.977088060489848, 0.5045826755343671, 0.5238140028842191, 0.5781536632974673, 0.8698227415329463, 0.7030804128844456, 0.7817806377034332, 0.8689281725157905, 0.9787311553978593, 0.6555990892481747, 0.9992135509770181, 0.5617725564305791, 0.5452567136413089, 0.6222146046550139, 0.7807504165003871, 0.9364393184500124, 0.7916850537139004, 0.705000497540707, 0.6034240187346126, 0.6398608909670437, 0.7512202416505195, 0.7110403072874414, 0.887030498216694, 0.7735590001968953, 0.8085963919348409, 0.7873435579292429, 0.9960630255961396, 0.5091899824166884, 0.7222506118057441, 0.5686416110956903, 0.6901201684484217, 0.6894637653276368, 0.602121540267758, 0.9482356751677501, 0.8819501024621659, 0.6639200651928658, 0.9518801030090037, 0.9193644736379625, 0.8085954977609018, 0.7680615694876001, 0.9032411837370691, 0.8395088236183916, 0.5899883812472919, 0.57937530387373, 0.5099117228215717, 0.5896114590728023, 0.81862887073189, 0.7343027590103542, 0.7950187796376088, 0.8337464737263058, 0.7179597202666532, 0.8948221462282937, 0.6124590370819227, 0.96452535756074, 0.8420051558815624, 0.9439077010230326, 0.729878838772807, 0.5026678505875897, 0.8091795605312381, 0.8794170153669908, 0.9843127252355216, 0.5277933717212984, 0.9131307935843718, 0.6511948786040123, 0.6046935310894205, 0.7627725195946906, 0.5970922787207096, 0.6888349184315753, 0.8900782970646681, 0.8066931480074667, 0.7803475945081748, 0.7934218102453707, 0.5284414052651757, 0.5566639717859214, 0.5549723037395122, 0.6893120933049116, 0.5628525705609446, 0.6186112798898007, 0.8880542970169717, 0.889689872652833, 0.8443617480000223, 0.7764505617175108, 0.7522523746429015, 0.892017424429594, 0.7072961869184793, 0.8262608599533203, 0.5730756052937847, 0.7235793778257081, 0.8798269087777595, 0.9014108323878306, 0.9956261609317616, 0.9385916532368763, 0.9239940482724798, 0.8422513559590844, 0.6253034683222618, 0.6319488583862414, 0.852617200902396, 0.9665451372672766, 0.7122426459560116, 0.7168941495271905, 0.5100222055494745, 0.5965639141498249, 0.5266768337380283, 0.5063434432245816, 0.5972839558770751, 0.7241120725003589, 0.7268253311728803, 0.9336331300805476, 0.5567812637935432, 0.5873433602911673, 0.8823752735652002, 0.5936631254441045, 0.8594877015847089, 0.5293007667582525, 0.7010026606384852, 0.9691274940115228, 0.5851865469705921, 0.6748139179252096, 0.6852151930216073, 0.8750460195941492, 0.6846158990113155, 0.80880300727362, 0.5119706616952276, 0.9190596929955752, 0.7981186327275094, 0.5111663808567644, 0.9732218209218522, 0.7745881970917873, 0.7892091535645627, 0.6056369314923312, 0.8897447164320648, 0.7521333076641441, 0.765378663501079, 0.5723437517754086, 0.588496625744529, 0.8298703916149799, 0.893273824686247, 0.5352549848425853, 0.9398075906761899, 0.5694589394870814, 0.6225615371369794, 0.9723266828656802, 0.878189690271421, 0.8095435438419948, 0.7360620876732447, 0.9642322176069438, 0.5014570727822296, 0.6476047326224157, 0.8006215282918736, 0.8678335316976358, 0.6208409642789776, 0.9175278541637883, 0.8637273997918253, 0.5436353838765389, 0.8824621810944122, 0.6055644659870272, 0.9618488650579167, 0.7112542845452532, 0.8828523153224206, 0.8507962549828223, 0.5232314342158004, 0.5187175593050908, 0.6385960233875085, 0.7364039979448671, 0.9560810547079175, 0.5465610960105813, 0.825603701924674, 0.9136175576781043, 0.6015924591482807, 0.8185069338691253, 0.707551704322481, 0.9488959207837854, 0.6804988831673275, 0.5436605827783729, 0.8226154774777653, 0.7825582123445504, 0.5916788194872703, 0.9881368405491998, 0.5108761435770897, 0.6340219227908263, 0.8783086941171074, 0.9610444102796605, 0.5728252326100245, 0.8075194924303183, 0.7159166684381717, 0.5834385625802182, 0.5194171980515958, 0.6253940602465105, 0.6941636249141716, 0.9932208290857873, 0.5899299017360984, 0.830755127215074, 0.9786631713955223, 0.8207651637416915, 0.5944116232818732, 0.6333155267608166, 0.9794029902208108, 0.6137559326453278, 0.8875061025649358, 0.5637155094764708, 0.9377446250017232, 0.6442520934424898, 0.8916794547297102, 0.7595641753425926, 0.6152508640255323, 0.7478534279092763, 0.6551481083378489, 0.8069577522931848, 0.681419176437704, 0.6106880877061187, 0.7460226036707113, 0.8783301218140525, 0.5079124369681212, 0.812971939801479, 0.6033137208284953, 0.695829744997957, 0.7603190759463869, 0.9818963690984124, 0.7364642792056216, 0.7608833554099876, 0.706786493743348, 0.6432234021357344, 0.5510490791907988, 0.9676932718294664, 0.6079763038518096, 0.7084526934404533, 0.5370750094972314, 0.7029016249975153, 0.5033263142774319, 0.7604777794934743, 0.9202195101642472, 0.8899733345385947, 0.88537501984342, 0.5607994327611574, 0.9255775131846287, 0.6065469344896844, 0.7789128040089087, 0.5041408032312336, 0.8566921208189568, 0.600987635266707, 0.8582328574073352, 0.5381372851434066, 0.5960511190918436, 0.6973728532086827, 0.701580624416095, 0.7254130800399401, 0.584551314831506, 0.5739395504219797, 0.5567273589441951, 0.7699079590440012, 0.9600800750221212, 0.9332348601611672, 0.9252210758559317, 0.935238026808558, 0.7234205887507013, 0.7080725918714117, 0.9646981837189346, 0.904021505324313, 0.8842447902761869, 0.9387816241412789, 0.9648346492972528, 0.5465745664093089, 0.8616797054079501, 0.660659978781611, 0.5797088231733486, 0.6809636125056027, 0.8222239640357787, 0.9393357317387618, 0.70553471997832, 0.9444557742887116, 0.8354891800855554, 0.7335122060642956, 0.7819225693518315, 0.9164920057725501, 0.964409816964479, 0.7106836073495162, 0.7936761233493406, 0.6160208939474776, 0.9804732567875631, 0.7465556462748001, 0.9207400489535162, 0.7356788270455901, 0.5670890420712172, 0.6625969081783124, 0.8356825122882827, 0.6626982075889598, 0.744910132256021, 0.6107658767180055, 0.6743185343332073, 0.9307782104403128, 0.5801184436306112, 0.9976173613804409, 0.522447245616958, 0.9579126478532043, 0.9180880442880173, 0.8788070836389497, 0.993128961838885, 0.7187442401259999, 0.8172439873050849, 0.8949713850782208, 0.8358188986335836, 0.6878345888734048, 0.90973750678908, 0.8786755837629288, 0.8650361568309948, 0.9586888413893677, 0.756277730167193, 0.7489126581432153, 0.7169394007671943, 0.9536553864469175, 0.6757669876732759, 0.8335954285553837, 0.7948388030596014, 0.5626484844615154, 0.5835165826734297, 0.8299829280097744, 0.5167948852588067, 0.540027789618845, 0.6901503223179317, 0.7239953362354863, 0.8014143013048628, 0.8442709415607295, 0.6981867453105068, 0.6432132079383747, 0.9508384605255105, 0.8795103340087751, 0.6532570276549803, 0.9098757311242156, 0.960037483808847, 0.9253807848815564, 0.5907639222870343, 0.8841432519444553, 0.8121613134739383, 0.8993144111611331, 0.5340990802336085, 0.5747119362404407, 0.7318833516415408, 0.7338747288540373, 0.8434581836657777, 0.6994126560043537, 0.5256720604653666, 0.640240492358754, 0.8568496322529058, 0.6639151737190816, 0.812260554646073, 0.7922228118003272, 0.7290694351300095, 0.8011238384581023, 0.7707731422621151, 0.5851768427103949, 0.8594835089189881, 0.6803231614674251, 0.605782350137964, 0.832936784945564, 0.9746412103921225, 0.9652675499657779, 0.6175206062489581, 0.8343795944585486, 0.791973751587135, 0.746613848672788, 0.6219109567857899, 0.8190518575228825, 0.6481818525009729, 0.5397317849570316, 0.7447574039804701, 0.669217520388614, 0.7032147258741881, 0.6424085419998653, 0.9584050327764182, 0.6075987227406534, 0.5750811493487806, 0.810885731034259, 0.7265120360370425, 0.938581303364873, 0.7923908424198987, 0.7185808767466597, 0.895617244672192, 0.7432159043753329, 0.9966038773388752, 0.564476100061459, 0.8180692349093608, 0.6773744538574274, 0.6177530010524648, 0.7729690053529772, 0.7739789252494497, 0.9073350442570853, 0.6764624307290786, 0.8464202694311888, 0.9883762163575925, 0.5946132149525301, 0.5516246575682413, 0.9079344676810223, 0.7660476637860796, 0.9007817907024573, 0.6765011616861106, 0.9900511119183971, 0.5549637591520326, 0.6519215647960497, 0.8510111306234129, 0.6805043244322269, 0.7755735116481912, 0.9598016025019788, 0.5527931326211029, 0.945858111211348, 0.881603187305396, 0.8995136425727461, 0.556670785428199, 0.9742685503722253, 0.6600144291039489, 0.5158817133810281, 0.6459915604112606, 0.8046943501408335, 0.8980456821843532, 0.7201906247833831, 0.9592775806183707, 0.8008918654383603, 0.9805507367817691, 0.7644913649232195, 0.5905855190017512, 0.5123351640795076, 0.5874541167985337, 0.764580968300283, 0.9391271693499086, 0.8255096577844487, 0.7515892236974049, 0.9174130189730694, 0.8102759557039577, 0.6003208871821735, 0.6010616357903331, 0.8747441839703769, 0.6458194739816204, 0.8985978055239041, 0.6473985870598628, 0.8587490759314738, 0.8663281715551557, 0.750736600492629, 0.7367611655002526, 0.5739046373906727, 0.5474332891517341, 0.7312567327907973, 0.5937577268011291, 0.7853430595999935, 0.9806082998631522, 0.7491958506624884, 0.6743154772511515, 0.5949231522640908, 0.8689837301909182, 0.7646435273046244, 0.7351801340110515, 0.6193420892166269, 0.7222060266521005, 0.6133764132305541, 0.9585272188008682, 0.6136554066536546, 0.8391476087363523, 0.5744859660200605, 0.7636018566781341, 0.6533661227817513, 0.7587908473282523, 0.971166955387556, 0.5874033418072258, 0.8180530014405611, 0.5053404207393696, 0.8054071801258277, 0.9236017223767173, 0.6062818186247458, 0.8439139954908719, 0.8592394369828797, 0.800982189546249, 0.780146488003548, 0.6771766990375194, 0.9028501918652232, 0.8160914164878801, 0.9375251313410502, 0.7280693558914029, 0.6407830406201818, 0.5986487167412996, 0.6140294772679368, 0.8786210295370038, 0.7697759872496128, 0.9450591456337709, 0.6364172292756758, 0.5022344190020254, 0.7459214315749139, 0.6892355838137031, 0.5631543781181254, 0.5233763793199786, 0.7079172663599946, 0.6387898603115165, 0.7995675654034498, 0.6285201448175892, 0.5457479302774333, 0.9926793224527745, 0.8190079314185562, 0.6464441443985562, 0.8804255447920629, 0.8390634138644987, 0.5322570271271048, 0.632859717250372, 0.9528309553355643, 0.923765818209412, 0.77159722590399, 0.578234290870091, 0.5576595973002602, 0.9325295150141459, 0.7174406350805573, 0.9713276861040077, 0.9680115575526717, 0.9776102119965171, 0.6650986400294816, 0.5646089949720197, 0.7873139950673158, 0.7447882122448312, 0.8421896086290568, 0.6151944245355823, 0.942633721070259, 0.7025228755021353, 0.6146212056800562, 0.9149388661819985, 0.6113686042232531, 0.5963791705419265, 0.7213896623289096, 0.5884295067945453, 0.525243475213244, 0.7497936267689919, 0.5308588371375698, 0.5178637965336756, 0.6367825746056279, 0.8975168354935826, 0.8310145624799621, 0.8894446641482228, 0.916551897133544, 0.8406952199462263, 0.9550849503139291, 0.822053966900637, 0.8081143094646045, 0.6290045180162253, 0.9247170520713951, 0.5629780567061979, 0.9107510162545258, 0.7143314925322044, 0.5416096981372436, 0.7956978692731111, 0.7349165052124382, 0.7831001410515234, 0.6233027966000438, 0.9253832084968734, 0.8182149937351956, 0.8819166102109182, 0.8359243246810627, 0.7043460998932236, 0.6724071547810346, 0.5133081210493052, 0.7269063226501566, 0.9515170680524916, 0.8676015263025938, 0.5358559791049845, 0.661085625265816, 0.5702444853492632, 0.9979382130095814, 0.605219157636322, 0.697830467238091, 0.8373093863953034, 0.8315196673077646, 0.6334830667994376, 0.6985323876857615, 0.6227524142438805, 0.5748378698708844, 0.8485976222997093, 0.5066826838592499, 0.5515206378684521, 0.7247917259879262, 0.5038163597937597, 0.9380624278388383, 0.8575346861472828, 0.512509573991562, 0.9035072396126861, 0.6777576783376428, 0.5414476347868988, 0.5948710200226281, 0.9224133864001139, 0.5091823828869992, 0.7637217958544976, 0.6753098375760694, 0.7028640212720452, 0.8265927793877317, 0.5434653490717791, 0.6327975407886544, 0.5308473046099825, 0.5211534103123903, 0.8893211078811255, 0.7407240435975494, 0.6628576552373546, 0.7693655472756239, 0.8173063901695231, 0.5193352956784645, 0.5845640261839888, 0.8019811622248385, 0.7872661777739711, 0.5941435060792879, 0.7541538637204319, 0.7699130426552818, 0.5481712677995496, 0.675731149802874, 0.6698343910533429, 0.7052879016218752, 0.9119150573038977, 0.5114221737584703, 0.7138413107410175, 0.9759716135450234, 0.6087046215922699, 0.8036178770637503, 0.6311475369014667, 0.5467147956164149, 0.7187807544156586, 0.5149202108614508, 0.6049830960688738, 0.7147886116339734, 0.7178508610759669, 0.9431901230691009, 0.5230741766352608, 0.966999465158497, 0.7137018818033287, 0.5086583985523306, 0.9715993696566609, 0.7253064673264359, 0.6215418123431937, 0.5559718001715249, 0.9180738950421183, 0.5886810360211544, 0.894305215721756, 0.8486266321984284, 0.7659789647418034, 0.5359809277062559, 0.7456417334337352, 0.5809752087594728, 0.9485625889685959, 0.9894559666814502, 0.5754294007300779, 0.7398145808874943, 0.7281370187481866, 0.9433653019588688, 0.69252957098836, 0.8617230370678224, 0.8447124078241772, 0.9481943995998712, 0.9807020072479944, 0.8655658707503804, 0.5613033726845559, 0.8974490606081273, 0.742849252892688, 0.687808032152992, 0.57373957671226, 0.6504234951079744, 0.7477859693284823, 0.6815434851044512, 0.7756915272777143, 0.8785866956760466, 0.7532413717184853, 0.665433605392683, 0.9089841700077874, 0.9113296298116561, 0.6927279883650537, 0.8732021327375061, 0.7446178715344648, 0.6442110180100467, 0.8994435378110412, 0.7634295819526005, 0.5487148034442959, 0.8739167898219504, 0.6711271775574675, 0.8363912412580755, 0.9059087774643887, 0.7494704349945798, 0.9607129330252757, 0.585827148399822, 0.6861474812768746, 0.7046919923025041, 0.8102526805792165, 0.6402444466523094, 0.7523161189594717, 0.6101442087739752, 0.5689596353131329, 0.9187237019761761, 0.7189176803086155, 0.9739553446539527, 0.8650857854067009, 0.6885044057757717, 0.5572215179446476, 0.6313666055385615, 0.5640896432953799, 0.8756721839518703, 0.5967475075806328, 0.790207819340118, 0.8494700974651181, 0.6040309538185399, 0.5874459614688503, 0.544461703719928, 0.9416545802591452, 0.7657584304873263, 0.7978835763705869, 0.9160415800937685, 0.8407387677839666, 0.9437556245405524, 0.9024031954507801, 0.5928074189462739, 0.5651341842488902, 0.7546552458741297, 0.7572001354713602, 0.5913317465472917, 0.5076777433164714, 0.7002392653240096, 0.6816670142409718, 0.65214767803998, 0.6770762882745169, 0.6412792508801508, 0.7507637655024803, 0.913686542176031, 0.9510084783420523, 0.9569184386457816, 0.8540848988785836, 0.8775978843839627, 0.6691587062330123, 0.8179730800144158, 0.5438959976564227, 0.9542935330577405, 0.808614495896762, 0.8539799223038024, 0.9638002079082207, 0.7729410213127148, 0.9236959434497509, 0.8687770582009607, 0.9149442210507319, 0.5395345450452258, 0.5653451737107271, 0.6009777270787603, 0.7949468638187764, 0.7327317647783149, 0.6769064841320629, 0.80641284332073, 0.7182010896201061, 0.5865739929024514, 0.793742688394703, 0.6569346060524488, 0.8781669220468219, 0.6870132634570332, 0.6511297950781698, 0.5377236843738415, 0.5609100500901507, 0.7608439170987332, 0.5844750217262992, 0.8100834485711974, 0.8558185314163231, 0.6494565856280126, 0.774049770160427, 0.9506161288384685, 0.636711374832215, 0.7850457825917765, 0.8461181240773623, 0.5401706691070592, 0.7000939052043632, 0.7506244992461553, 0.822355004886282, 0.5544863332450785, 0.9738077875328532, 0.8101280651280115, 0.9914048299711722, 0.6125686296109152, 0.6794850121349707, 0.6895536382810676, 0.5870020309715306, 0.7978535387379149, 0.7832818008523135, 0.8414361207481765, 0.5548528312498031, 0.6827179543663777, 0.9571609925575528, 0.9978437621722829, 0.8732875942167249, 0.8075536424510039, 0.5382780889071348, 0.8218172478076344, 0.8425766536595795, 0.9757320559461473, 0.9009854725108375, 0.861161882868293, 0.8364522007974563, 0.9533384612762972, 0.7649080100261192, 0.9705885393620604, 0.5134518213816719, 0.683523985133102, 0.6496909686190122, 0.6322051521085518, 0.7007981813874085, 0.9404021639211861, 0.9967892591917337, 0.5764886057036442, 0.8187302446216267, 0.7797327484292063, 0.7439315129433486, 0.9127005392610756, 0.5907766593517554, 0.8917960827608444, 0.8747133506943198, 0.7089488688461923, 0.6568749074984228, 0.8359290194826599, 0.9731646324637724, 0.8331764175927774, 0.6281132723972933, 0.9397669515414692, 0.6567803933203893, 0.8934204661680585, 0.525634305867444, 0.5449808918449043, 0.9934933064604825, 0.9040346366366003, 0.845374791338713, 0.5036222597642002, 0.5346769849425732, 0.7681075511167372, 0.7273242264126252, 0.5177378419538203, 0.869809148284423, 0.5438757670262089, 0.5443456978496485, 0.7924719874578874, 0.8480681577139171, 0.8079220047511951, 0.5221449365719659, 0.545341013260445, 0.9595535737568144, 0.8638471321123762, 0.577569818278408, 0.7247070184161357, 0.6040656738077967, 0.6694133497960955, 0.7877786704496998, 0.7006962189239225, 0.776873980512063, 0.980400684527704, 0.5771918568135931, 0.5227794514528474, 0.9247002677437091, 0.7737662831818003, 0.5329128402582294, 0.6216946900629026, 0.5803329231275512, 0.9105903810431537, 0.6967367504809023, 0.9964162725112304, 0.8441501847605006, 0.9264570587560944, 0.5433536111768524, 0.785487192452077, 0.7967544202227504, 0.6337694299325254, 0.657820240272367, 0.6092906561466033, 0.7686959834351916, 0.696849923507955, 0.757305529558365, 0.7373677047442648, 0.9982094144788518, 0.8503946313241566, 0.5277173802109076, 0.7112928268055752, 0.7376537026274752, 0.5776439554908868, 0.8198041062458257, 0.8886179257655231, 0.5878934598339686, 0.6400127752885306, 0.7269706067113866, 0.519142381418086, 0.9254441076971758, 0.9644610403290919, 0.5021634347795729, 0.6251950354615204, 0.850996547780662, 0.6771767540510956, 0.6843385819102481, 0.885255940164097, 0.6807465795195677, 0.7393047892492124, 0.9482067946019881, 0.7936969174897681, 0.8543956320442461, 0.9587488939624508, 0.698372805979699, 0.7545477345048308, 0.9750432774851758, 0.8109309541766052, 0.8558585370078553, 0.8540695103587351, 0.7295257317694901, 0.9310477087720684, 0.5556849709682392, 0.5832295046852833, 0.6965106986583852, 0.6537480989940666, 0.8564058202400211, 0.5911686257704334, 0.6306156585838123, 0.819968583018168, 0.6837915132983701, 0.7308409469371611, 0.5951127450175593, 0.9031673253015307, 0.5308119812310004, 0.9893518815441398, 0.9141723307435421, 0.673806905388573, 0.6060892041063984, 0.5333570299068013, 0.9333774793253201, 0.7168825236086935, 0.6327795049242233, 0.7894784302472775, 0.6980069749279822, 0.7872949937234659, 0.5759847670845862, 0.957458674760201, 0.6620163524920647, 0.8031559993206754, 0.5219683448614477, 0.7286113583976801, 0.5037903051476313, 0.7315583498595322, 0.8816584796307745, 0.5083321324011112, 0.8029325613929625, 0.9942054288678224, 0.6093331897195065, 0.5466812154729906, 0.689754716149237, 0.6298749747774479, 0.9988349822031675, 0.5011764795630037, 0.9265902108682046, 0.8991223698534068, 0.764088464247282, 0.6060396646874365, 0.6543073005431279, 0.5795923979164677, 0.8998295714679061, 0.7185663470584358, 0.5436050690069025, 0.7274386443805834, 0.6312099379914997, 0.5405370434509794, 0.7583678422726505, 0.5420258796575443, 0.8559444196835415, 0.5737666607157623, 0.8915519838085461, 0.6405664580788263, 0.7001157701680596, 0.7375312847941358, 0.5012572280771983, 0.8274648422356767, 0.6530386332788518, 0.872522132645593, 0.8930501314937858, 0.6359333547599425, 0.5533388387630258, 0.6345534640325119, 0.5333076048145268, 0.5914153744163622, 0.8713641555390852, 0.8699753953552776, 0.8797571429016724, 0.7265903423965512, 0.6578619811968189, 0.807258185369168, 0.6586694451994342, 0.7514760493713992, 0.5317447741302255, 0.6002465526832433, 0.5979593163097401, 0.5807593034105332, 0.7908323700836166, 0.7325123258879471, 0.518223225824223, 0.9193759382704884, 0.7720389320275922, 0.6563188232444193, 0.5954197272234427, 0.8820018845452091, 0.8621283889358836, 0.8828288809587904, 0.5174859917113965, 0.8456190239016235, 0.8248952897538546, 0.8884990849997327, 0.9590376298871424, 0.8871249716132477, 0.7637307101794727, 0.9940281610420476, 0.5547977822124592, 0.921519334697167, 0.6722542617741307, 0.6013132747920067, 0.56110532410654, 0.8706057882658207, 0.8250278074634347, 0.9752308664147357, 0.6988149366942712, 0.9534644411865059, 0.6657743488134158, 0.8589475860063932, 0.9729382298781951, 0.9893608473055122, 0.8049243873151352, 0.5570277866626914, 0.9898582244534755, 0.5797786006907973, 0.6655196915999653, 0.515362172523063, 0.9590012799059723, 0.7220566268752961, 0.9691178063660159, 0.6422912320575689, 0.6778305104307971, 0.7403319941079551, 0.824871231317484, 0.598817888080488, 0.8337152196375188, 0.5807238786410847, 0.6959858664100906, 0.574274489154266, 0.7413881605862653, 0.9370448974242072, 0.5949894556560384, 0.6704149260307148, 0.7415681269339425, 0.9834797863211859, 0.5976887919580306, 0.9654111045163972, 0.9489723262223679, 0.9171697383172698, 0.5600452780421792, 0.8104902640520573, 0.9515010421704426, 0.6765123253832543, 0.9847671925732573, 0.934018043452717, 0.8359977972281917, 0.6246435477169789, 0.6800078950906547, 0.6485071667229018, 0.6893004324042751, 0.9701247467485532, 0.5143949126645943, 0.6458450288326262, 0.700992057964938, 0.9276116556518681, 0.7797964570428875, 0.8826312711420796, 0.5435209797396245, 0.9232028789136225, 0.6954958951112957, 0.9218649674186513, 0.6293230045853316, 0.576420732343063, 0.600496868988474, 0.7497956900646501, 0.9475362108099278, 0.5830495317262516, 0.5268622510125054, 0.7547694094175159, 0.5969597796198771, 0.7783022201453567, 0.5898408603410956, 0.8631842036673016, 0.5711352546565722, 0.583407375069168, 0.9577377509474223, 0.9039290959915984, 0.5323274596603226, 0.9177099106288026, 0.8780654288288539, 0.6772386511810838, 0.7964106813786938, 0.775623771052359, 0.541980121783341, 0.9136813578574825, 0.7068302268372213, 0.8099827965958656, 0.9281576212334534, 0.9611416580638565, 0.9468860376662973, 0.8068098698377807, 0.6143095499794563, 0.8053830894463585, 0.5274154980740084, 0.6151722801210258, 0.602237371228015, 0.7389992448489422, 0.5266844530031003, 0.71098605037735, 0.7563472199486054, 0.9578723061057279, 0.5707488748525544, 0.5483465810301633, 0.5853581362695226, 0.9375787528811776, 0.691628239637814, 0.8345652218098755, 0.813694247314151, 0.9879045891262327, 0.8873346064632479, 0.5789256118556227, 0.9476924323294824, 0.864923732163922, 0.702504063114926, 0.852684805356888, 0.7324022478078447, 0.8521136653694941, 0.9471140078486625, 0.7245022245919623, 0.563209365593146, 0.6190933354080204, 0.5302430915564283, 0.6403979997296231, 0.7251944488359712, 0.8601919932806208, 0.7122446138807155, 0.6319523108974667, 0.7561268712882956, 0.5288800406706106, 0.7308594905854171, 0.5316941751483407, 0.845663961973763, 0.6678388401749182, 0.6931845832644585, 0.8930023291077767, 0.9904108331520761, 0.7577606380779103, 0.903432624365436, 0.7790796841000607, 0.9337450321203231, 0.9581743806431124, 0.9533079788922809, 0.6105022821564431, 0.5307776633647423, 0.5611023009145701, 0.536348765004526, 0.5582499616999865, 0.6894586258097437, 0.696471048406204, 0.5380334076285958, 0.8605275446919907, 0.5506709709616675, 0.9257507529548841, 0.7330639928292901, 0.5734675343271377, 0.5563073324000778, 0.51280769446075, 0.8647827056259016, 0.5723453008078372, 0.6720711508484003, 0.7359442968200665, 0.5176413529220297, 0.8035560408375073, 0.6892319225074566, 0.5345595240954355, 0.871419757041527, 0.500473768894589, 0.6889561267618458, 0.5527570399815234, 0.6706704513480732, 0.7109801550382466, 0.878593074812955, 0.8320316047905498, 0.8427312189142451, 0.9081727125020238, 0.8507784555791629, 0.9431221110210077, 0.8104856732417163, 0.9653092932647207, 0.5218488508727407, 0.7501834881383058, 0.6580533854132787, 0.7049665682573565, 0.5941339745320084, 0.7527371005441473, 0.6180388523125565, 0.8844507492964978, 0.5031224573731707, 0.8590090379536844, 0.5781778600994512, 0.9093392737507159, 0.5933196063778255, 0.5466739312290515, 0.726368476780178, 0.6671027902407339, 0.5598480368874551, 0.6540037110687362, 0.7677901041309716, 0.7269871250464581, 0.6736256712467819, 0.8956075609996496, 0.6591984282911193, 0.6013695602362472, 0.569536350246024, 0.8296122821802114, 0.7846293591907649, 0.7281095193992622, 0.791291357555868, 0.9638364128076441, 0.5741206475161404, 0.5109616571921629, 0.6819631054096743, 0.8741106404287531, 0.8153293518961235, 0.6244902968803013, 0.7940577701867273, 0.8958635900459436, 0.8493513478363213, 0.9021634584827974, 0.6984600682319394, 0.8326052616075456, 0.9853741696426068, 0.5054827209265977, 0.6117491196483761, 0.7761629804335303, 0.8077995711844905, 0.9581773341297695, 0.9176769065434773, 0.5880797058376779, 0.7470459268985714, 0.8105625809235142, 0.5815443383136559, 0.8065472721767817, 0.6624841378225543, 0.9680197150488523, 0.8225409616136479, 0.8382025759510914, 0.5059151770041201, 0.7931030832361669, 0.6691844927448563, 0.8815040402242263, 0.6223534103928656, 0.7547519808470327, 0.7688586561945201, 0.5403946311813732, 0.754709733501226, 0.7711663297116181, 0.7746147940700508, 0.8618300384843496, 0.8739569309394428, 0.8451806177621066, 0.9677459069020129, 0.8632025638230314, 0.65675841571321, 0.5962082362147152, 0.5561881793073638, 0.5030620789920422, 0.819364272318746, 0.7081151201198124, 0.6066650984829753, 0.9664321716496298, 0.8028492041590003, 0.8464024430207189, 0.9869953890921057, 0.7057675889260928, 0.6446591030800599, 0.8033323250768909, 0.8940433271368531, 0.7322808745780238, 0.926900738334423, 0.5586290627741772, 0.9991056421764255, 0.9719478653175213, 0.8966437489394568, 0.8110289431721267, 0.6204254679469561, 0.5705980897863817, 0.757754484670978, 0.7998662165825219, 0.6233504477539167, 0.9881600386265533, 0.9413726880694342, 0.9800469963824414, 0.978488800267665, 0.9735557903487739, 0.5136562303201837, 0.5788816982605868, 0.6657285020896164, 0.5756060776553402, 0.9716374293548891, 0.768586084505931, 0.6075038263319964, 0.7286266454326, 0.8002735939476171, 0.7399315250939187, 0.7531856673774269, 0.5248224668993724, 0.8421304642390681, 0.6420444088096727, 0.9296592388452396, 0.8974499184622984, 0.8618609352639863, 0.8817308555459703, 0.8679612243953541, 0.5094626119672412, 0.7167889444599347, 0.71670557451465, 0.8051840298050739, 0.5856024171582261, 0.8232957763462447, 0.5710670308223678, 0.7394827729464342, 0.7019485189811314, 0.6563222149650132, 0.8121096370378255, 0.7168640664982924, 0.6473017647322543, 0.9240443248225754, 0.7062770885319523, 0.8496868140231706, 0.6094529074886703, 0.9564621489353498, 0.5839690041975752, 0.9988022419870554, 0.6278204511334562, 0.7285695662317624, 0.7226603136333882, 0.5409514241616348, 0.9641715590106452, 0.6987548233277374, 0.738478065380231, 0.893878400442881, 0.521492718121146, 0.5488288601549574, 0.5031136694743714, 0.929254813536633, 0.8510372666265424, 0.8418533068369755, 0.5698756474142004, 0.9120981779436701, 0.948127956778883, 0.8512150407952473, 0.5486075678218936, 0.7114721735117138, 0.7935589917046808, 0.9652733660313253, 0.5207602100307043, 0.6936035033087733, 0.7630950901969341, 0.8196214839018892, 0.5600091645489795, 0.5975068565602597, 0.8953459616929043, 0.9795150808617736, 0.5970905792941579, 0.8804487770581555, 0.8398953413675911, 0.7411331715186436, 0.835695946555689, 0.5887694786026714, 0.8454470838486652, 0.7121635075728856, 0.9985005804638327, 0.7891962279579214, 0.7264562395346353, 0.5663467162242122, 0.5512070378731622, 0.8445871574287989, 0.7975776183322653, 0.6692717164017661, 0.966517946601769, 0.8158121341581186, 0.7418739843118436, 0.7304692894251847, 0.6199967090360948, 0.9837645259266605, 0.6163236587207082, 0.5754518231164891, 0.9229221273124384, 0.5686718131460187, 0.952220456324065, 0.7048698358395926, 0.6356268006179842, 0.889035857112243, 0.7990508752779364, 0.7258868227436557, 0.5663126742206013, 0.8996063999045378, 0.8391679545393751, 0.7818368408399663, 0.6126566104897138, 0.6819176536660212, 0.6106933694715192, 0.7770070275074339, 0.8602074462260982, 0.9324615699027998, 0.7242832874188538, 0.5536984295672729, 0.6542104952077403, 0.8779212951017816, 0.5984655704364474, 0.575805088865341, 0.5496925463294106, 0.9762185469574112, 0.8171523503689209, 0.8160518108595884, 0.6125299006508971, 0.8727531396278243, 0.9293299041817317, 0.9592510114625583, 0.841094685553561, 0.9526499562013337, 0.633976278207766, 0.9520296278710108, 0.7908069893582877, 0.9406915632510044, 0.78206840364731, 0.5178176635408906, 0.9943051264759981, 0.8770544003050519, 0.8670048165667572, 0.5030184072873969, 0.6716987704201758, 0.5035122706249973, 0.9952344460055844, 0.5950005524818939, 0.5896347463981397, 0.5464808049032075, 0.8081560535077728, 0.517849926889661, 0.8856467025703847, 0.5821560148185152, 0.9647010291066638, 0.5279773609306575, 0.5561274193666714, 0.8720004748633485, 0.8192062588968523, 0.8389477749861831, 0.9542677417886721, 0.5063201744389467, 0.780781417926, 0.5556293332066375, 0.5251769775785418, 0.541181390791564, 0.8332319245581693, 0.7802788053164923, 0.612358612508424, 0.5254248717348584, 0.5657365922449645, 0.7866336939085612, 0.9260062525844924, 0.6853939787328126, 0.5680311538042273, 0.9506811805784624, 0.5669407322387949, 0.9824010694187785, 0.8893139041926514, 0.8987219847994441, 0.6719265144304889, 0.5173934138411145, 0.5166462238853444, 0.9223010771351074, 0.941631204482683, 0.6281252911212267, 0.8161997192230157, 0.820954177107464, 0.8852254038401224, 0.5882851223473717, 0.9813225158966559, 0.8002640004202832, 0.8639409424314723, 0.5443162561283748, 0.6021817335287993, 0.6542916692756332, 0.9687565268064069, 0.5053701635302899, 0.5132555491205908, 0.7083716920272194, 0.9369266087481982, 0.7407942423754771, 0.634047261315057, 0.6876661316949784, 0.6855834618658171, 0.7551932236035033, 0.5734235434429016, 0.749636854075462, 0.9558988696559834, 0.8793586676759795, 0.5921963471446688, 0.6988229991020836, 0.6794643489055903, 0.6070339584615433, 0.5107316086604478, 0.7636715555272571, 0.6880412972384566, 0.583191123828102, 0.7334839423138997, 0.570167588531219, 0.7468802161526393, 0.9553114746256514, 0.6601007728314701, 0.5268392712482072, 0.5331371953858082, 0.7339378009427953, 0.9110991269152129, 0.6837727791229296, 0.5147291404765783, 0.9914000745931083, 0.9207480581156516, 0.6085209804096523, 0.6726018885261733, 0.5773663619782338, 0.7081319554093302, 0.5271128399884075, 0.7694316351159053, 0.5996734615002421, 0.5400643448228712, 0.6071729802460846, 0.8622241905550129, 0.7306374211013063, 0.6642748895701729, 0.8065488733648719, 0.679766228706991, 0.9671007427398837, 0.9031332847307911, 0.5053553598663061, 0.6154465301643238, 0.8957745725542544, 0.9548218325611912, 0.5124185005627243, 0.5140772870272303, 0.9307968811756435, 0.6147267483211638, 0.9460825380301241, 0.7721025901895979, 0.6636358511819016, 0.5005406782484156, 0.6135401740561708, 0.7578634255319134, 0.9468804128947734, 0.64918132168998, 0.7083242619006765, 0.7406048009431062, 0.691525630038236, 0.7989875562573153, 0.6556967150098464, 0.6661305954475258, 0.8749153255703314, 0.8092430931759211, 0.7025937167380719, 0.5136606416236917, 0.9390914608311107, 0.7660339640679026, 0.8246820947959006, 0.6246584676930013, 0.751403853350223, 0.7287470073905963, 0.5895173662953315, 0.9318196862989494, 0.9844760297390445, 0.6590598144956274, 0.9416336183772009, 0.9069212892796814, 0.7127925462549991, 0.8268736205327624, 0.5450664181751763, 0.7441768195048132, 0.6696974735460609, 0.7732845782856275, 0.8707645099356588, 0.5789412318493177, 0.7827519154257934, 0.7431439861119267, 0.5547334502458219, 0.9497513488011564, 0.9618131619151056, 0.5839078561299997, 0.6473487968518357, 0.6758161581491928, 0.8179891548119158, 0.7667479250888358, 0.7367631945824563, 0.6992226934343733, 0.9859990164473409, 0.824793635646327, 0.9035779817292717, 0.6028573378895445, 0.8616694174769464, 0.8762011079690291, 0.9841165203053848, 0.9640828188701727, 0.5541653415456189, 0.9034284013163194, 0.8699082255581108, 0.7835458153499646, 0.7694549252993661, 0.9069970281975324, 0.5836567151469803, 0.885655116468472, 0.9358765884443876, 0.9819128114881248, 0.8444272461646829, 0.8070075522432221, 0.9410176215029877, 0.9247001926293568, 0.8930771111581797, 0.7117965811279805, 0.8802444449734164, 0.9845559049865173, 0.81187185363236, 0.6654749015870207, 0.929324646718173, 0.6609173083601105, 0.7370379809927055, 0.7171114787290267, 0.5069697513809597, 0.7531073448053535, 0.6836730020505603, 0.5421725416278814, 0.7946927078853863, 0.9339987130412619, 0.5463362519845893, 0.999835473669901, 0.7362716055327263, 0.8385593436150689, 0.5627433541968764, 0.7144822533711823, 0.7793190430419317, 0.7944069029488603, 0.8115843610385138, 0.7203370072592582, 0.6254046276868874, 0.8678733179384341, 0.68814047935854, 0.9301024441450287, 0.912224517239758, 0.9057470970012258, 0.8942856139864119, 0.9168131705315498, 0.5661430187884087, 0.9264389879502523, 0.7621681035677925, 0.6176944152215538, 0.793743527096967, 0.6357677214242348, 0.7989496892208146, 0.9732873801146991, 0.9611476196028887, 0.8149331924037465, 0.8153514197049949, 0.5775280430471298, 0.6069424388764952, 0.8704757914474484, 0.5330925964889042, 0.9973271769367773, 0.9814034287319429, 0.7726376865687357, 0.5474924848808069, 0.5462647973080274, 0.7066878434983825, 0.5556824606149458, 0.7069964016090473, 0.7460895864538248, 0.7236614809274085, 0.5470820544581751, 0.9402788079217338, 0.9519618361208986, 0.9486210974369913, 0.7972197261028564, 0.6556503970672685, 0.5212812269367293, 0.8359167410782373, 0.5539143146419145, 0.6168330619027427, 0.75947553349375, 0.8087713265528613, 0.6579140698527095, 0.6442846122852508, 0.7452061905980919, 0.5426862973086548, 0.7798859362044002, 0.8835923974925088, 0.8159717889498002, 0.9654333209150197, 0.7464455966250867, 0.762521909532512, 0.9022589342949339, 0.7032510302526876, 0.878628136002695, 0.6638877829869221, 0.7030759125269883, 0.5329689846738415, 0.6704408817601657, 0.5784633514603678, 0.6640422605473625, 0.6245197212635445, 0.8303685951168239, 0.6886386931842179, 0.8740186279285531, 0.7564714183159096, 0.8620068014639359, 0.7379924587509974, 0.6315708315618034, 0.6552439889704019, 0.589961128980785, 0.6672556345388653, 0.7093349133392115, 0.785914424002313, 0.5088397596772578, 0.5106706159452672, 0.9330595981922222, 0.7023963325470708, 0.6876233839165744, 0.7807683680706132, 0.6902451236979081, 0.5802884327045463, 0.9160774488917642, 0.964769726875758, 0.7678820820897838, 0.9999804285672884, 0.9011383992702305, 0.8745943763687429, 0.5546622388365126, 0.8869216169681744, 0.6369274444739685, 0.7700482914066993, 0.8785829124289231, 0.5536834935165837, 0.5171944660853887, 0.6827611062086334, 0.674337668047075, 0.832515482908921, 0.801160428861067, 0.5409961467365312, 0.6569026228724155, 0.6312482251060889, 0.9412600284117035, 0.5269208665860137, 0.7888236010056768, 0.738888725857413, 0.9662289980583871, 0.741319153888431, 0.9481942225788083, 0.5227654772087681, 0.9396267070469599, 0.9499750776757168, 0.7431383303265229, 0.6554230958472531, 0.6627616970792405, 0.7030164258509379, 0.9888591907594735, 0.6918132223760415, 0.7697167035808372, 0.56845342712877, 0.6446620862596191, 0.5816718131185604, 0.512465860947845, 0.5724567369735871, 0.8122933071069751, 0.8538649719165192, 0.6394492695952565, 0.7654016137704565, 0.5312836309986129, 0.8094413001704908, 0.7699045024033407, 0.9952286344734428, 0.9817714948558822, 0.8015592867757199, 0.5278407797276132, 0.8174065989266845, 0.5138651993265746, 0.8364550365833023, 0.7360795605862787, 0.9992902365810397, 0.8434238905228313, 0.9271641321286841, 0.8979371907984732, 0.6427358443903066, 0.5589350548041248, 0.7576266178857942, 0.5459077884664298, 0.5169592615618279, 0.8061883335298854, 0.53256176754903, 0.8371183083863101, 0.6939557245188746, 0.9269847752255862, 0.8898324502848663, 0.8570247551717798, 0.5123889012178389, 0.8456799551100307, 0.7100687748721983, 0.7747326613309242, 0.5869053994015057, 0.596770425757302, 0.7096791550598154, 0.6660017073660351, 0.5651339327176702, 0.5650843912698609, 0.6429271203134312, 0.6412028476349321, 0.6431152792995423, 0.8450581099575978, 0.8217966864232381, 0.8150303654157759, 0.5243212525997293, 0.5251492595882239, 0.5464095836291445, 0.980616415530392, 0.8125654780954781, 0.5201830941122463, 0.6075945364923319, 0.5787583742220066, 0.6529912825365012, 0.5771825624899998, 0.8861970842423267, 0.9645189739242346, 0.9554566139107623, 0.6178743601622743, 0.9366402521355635, 0.9484477636895302, 0.716900938763736, 0.5902198614295784, 0.9676816253478706, 0.5748199953462412, 0.8479703562770836, 0.9282162771945207, 0.7539804072035163, 0.7127348147848507, 0.9806337519076248, 0.7845006467278095, 0.75454319070836, 0.790551886907751, 0.6284556168839635, 0.5810246685153255, 0.9396127666397338, 0.8809267560408633, 0.8159812241745779, 0.838349266729649, 0.666268554555266, 0.5064796265895504, 0.9780254655956392, 0.9998960293589869, 0.7353297683817203, 0.7876390731206904, 0.526939773364945, 0.753896360088008, 0.6832920213458307, 0.6157914225496013, 0.5027608234337941, 0.9952629154257265, 0.7931773059344377, 0.8152707108696506, 0.6399422973507682, 0.690485612892439, 0.7137266062481273, 0.8588858137803861, 0.6857552003307159, 0.9062624252207528, 0.9865744964113367, 0.5789124343164829, 0.549969963114267, 0.8467187318784924, 0.9831754271656871, 0.8866960194519009, 0.5113285269000262, 0.5460364366072783, 0.8265273405697785, 0.8271115832777735, 0.8305822150089142, 0.5076268822588214, 0.7577593766093038, 0.7581570583492678, 0.9400448147509224, 0.9461888282360094, 0.6115372783430053, 0.9603027727934669, 0.6671056268838346, 0.5180326282230308, 0.6644838842327747, 0.8691181812358328, 0.846053134949923, 0.7305497168885016, 0.9907757869896996, 0.5502484523840895, 0.9052107014644704, 0.7606281063442134, 0.802172315913124, 0.6247464333858586, 0.5666763256630541, 0.8791939947931471, 0.8611731520423158, 0.8752484754443179, 0.9884639209282726, 0.9242157045672652, 0.5585273459931359, 0.9461439106674986, 0.840157977055708, 0.9393905529736826, 0.8965799469385823, 0.6197613413190923, 0.9277418409221101, 0.9519022740948084, 0.8884765393944225, 0.8696972707372697, 0.7571104484520276, 0.8760667778238947, 0.9509551148405427, 0.799209825576677, 0.8452078930672537, 0.9139999928066533, 0.6328669921022501, 0.8532696805358986, 0.5147459121625346, 0.9035687145855199, 0.7143142449992174, 0.5103687451140617, 0.9599303663444434, 0.5007607951680184, 0.9477814782236644, 0.7580821569487329, 0.9871511878345509, 0.7456213860844292, 0.6073192429867404, 0.848675354198511, 0.6075282875523772, 0.7254620560348717, 0.6842488950534455, 0.7953506627639656, 0.55928856803941, 0.5067055937586948, 0.7760048914843161, 0.9423631806683022, 0.8931955702282848, 0.6059384497198879, 0.9338508026294673, 0.9464198385608475, 0.8511169248570349, 0.9521248047071018, 0.8246882311239006, 0.9280742078154327, 0.9897835344127583, 0.7659082703118949, 0.7407512620735783, 0.8241694779413591, 0.6887269851656489, 0.7882532065560185, 0.9030892762028679, 0.9163292423892573, 0.877656410537235, 0.8713618121673979, 0.5570345594666071, 0.9156479833372118, 0.5523687084230813, 0.5778843078959457, 0.8785769567345688, 0.9128637851953998, 0.5009429410561854, 0.5669465256599703, 0.5887040169048998, 0.7403963269934409, 0.933785014161017, 0.9147300257881683, 0.5158723857746199, 0.8614901690900651, 0.8063557834840664, 0.7086493634194857, 0.5313045636447236, 0.5778942089997674, 0.5340729602742349, 0.7706755891972906, 0.5213409235695236, 0.5472088004345211, 0.7780090010966765, 0.8945552749493004, 0.8650689917036485, 0.624880030631211, 0.9380525025589761, 0.6584438006319424, 0.5569861504382101, 0.8870915660587864, 0.8171353252690283, 0.6686019497831155, 0.9843846676444168, 0.9805606307455936, 0.8266694103038128, 0.6382608225901869, 0.9730626718043116, 0.7727468142234253, 0.9335857229895372, 0.715561351015944, 0.8210880222331376, 0.5232591606117696, 0.7991563201815763, 0.606052633707281, 0.982953925525737, 0.6824681291361274, 0.6929702761572242, 0.7832768686222147, 0.9909819158237934, 0.989923604526171, 0.5294449132677745, 0.9757534978695888, 0.6000794148544597, 0.8480738080162411, 0.7466301449247288, 0.9025159081742871, 0.8372823087315607, 0.6407809461629692, 0.688292774878491, 0.8085254812251053, 0.50705833782584, 0.6468855111095941, 0.6618584285715077, 0.8168439180033791, 0.8515018465560467, 0.7727189873984477, 0.5172958515591495, 0.7833477439591792, 0.742427002506613, 0.956667944202684, 0.662378484970898, 0.6762134613265531, 0.817720526239157, 0.9702332250230744, 0.6750558011851073, 0.6987863938210377, 0.7430461032556589, 0.6387199414246474, 0.6473140690781218, 0.6564036040313362, 0.5411288988436075, 0.6322380928412488, 0.9995026122890711, 0.5038112551543767, 0.7059219818006128, 0.5016822329467842, 0.8813971116490125, 0.5928992133898094, 0.8463075355841823, 0.9197862368484192, 0.8827604666421878, 0.7824274615917571, 0.7235222932824437, 0.6898141490296021, 0.5900547516429007, 0.9437758508387462, 0.6623537262944064, 0.9453980870086695, 0.5159223765009495, 0.6989788524271132, 0.5444997969496073, 0.8220376462425036, 0.896468505315293, 0.5748616538437599, 0.960334242678453, 0.8260530435343569, 0.9308637965228049, 0.7649421898622166, 0.7216322087902447, 0.8758596587489327, 0.7897594188377688, 0.5181599706383007, 0.6806299093427128, 0.9072764916338523, 0.8072767823274718, 0.9020433933914672, 0.9606357376271019, 0.9599779292361867, 0.7730565646438636, 0.9975154919023355, 0.9176062371006868, 0.9343993382333036, 0.8113285643935426, 0.868386447983618, 0.6754626832229722, 0.7134336759938356, 0.7206698039648274, 0.8956893266273677, 0.6641656270754497, 0.7029942698046244, 0.5325084567880223, 0.5068033769899123, 0.6320583533431048, 0.7242175389824888, 0.6925088332546081, 0.8234359153112858, 0.5834184136942399, 0.7611870034353416, 0.8434927175831854, 0.707396153528423, 0.7464986064953857, 0.5374323783588602, 0.566422181953631, 0.7834548660613772, 0.8552867540811678, 0.796107149847922, 0.9902509841120093, 0.7407723312131644, 0.5628452740031378, 0.5402647784385435, 0.7668818953504892, 0.9324787046066435, 0.8991995820610739, 0.6785214990188091, 0.7203156442285887, 0.6235736905548817, 0.7661933424672351, 0.503620441882054, 0.9200861635264685, 0.7053684115952641, 0.7680919664819108, 0.6002763644155638, 0.8923751500971101, 0.9607354309636218, 0.5662248428837482, 0.508602903516173, 0.720374517016895, 0.9385794350412244, 0.758747377316794, 0.7604532971390348, 0.6736670251864273, 0.5242690594144167, 0.753219780635717, 0.974980173207391, 0.6184225451143233, 0.8700808885815844, 0.8186401391440805, 0.8672215900933526, 0.7451720693461552, 0.8386997550348112, 0.8684437949534298, 0.5072390168158856, 0.550178154873179, 0.596172485700849, 0.6278278615691478, 0.8488684766961392, 0.7795785777056239, 0.9885644243183282, 0.7774245175638907, 0.795304761748419, 0.7360086496659629, 0.7260636625720789, 0.5590048604318385, 0.6803906527835064, 0.6264817486136007, 0.5882137519895054, 0.9220929871519231, 0.8512942211899903, 0.8779855309551, 0.8725665335327655, 0.5436646415514557, 0.8582661278905744, 0.7539454305912188, 0.6180574351699639, 0.7891379556012741, 0.8350816496381835, 0.9343037159255103, 0.9119301668265718, 0.5510989655554908, 0.51169749384697, 0.6336794196527284, 0.5543246244014475, 0.5681041735287895, 0.8439255375322006, 0.705287605983056, 0.9366904492564807, 0.7237554588013657, 0.7928923585876516, 0.8332779336483653, 0.9150958729184766, 0.9100387821453342, 0.6308579921702235, 0.8524476517336053, 0.9778903117980253, 0.9812255558849832, 0.5354377870160301, 0.8388435266447887, 0.5888496100571425, 0.6721683112565857, 0.7612146496574361, 0.7971154223678981, 0.6321825770693297, 0.7087006482869902, 0.5467142277940956, 0.9992493201915782, 0.723697902914399, 0.7969262310048517, 0.5339517239728508, 0.6587084198486712, 0.9186035725862112, 0.8361690911892196, 0.761226896756775, 0.6915987796498981, 0.7484268325715335, 0.7018253031194821, 0.633277992914747, 0.8272977955635219, 0.6360784635544218, 0.5402908295473141, 0.8528186956545679, 0.6651799983394018, 0.5377001366500627, 0.6219491859497539, 0.9024632827562489, 0.937816667487904, 0.928181091283913, 0.9507754956008909, 0.9081722893888968, 0.5163045473681451, 0.6905444215393897, 0.6471568856583332, 0.718941053103092, 0.7821284385083324, 0.8411629736671956, 0.8827684896761274, 0.6352402843693511, 0.8587575462676481, 0.8734360234245582, 0.7370622269219498, 0.8260213714954072, 0.8932440311232688, 0.956495078969546, 0.5506665183160511, 0.5489342201572854, 0.7526923280092701, 0.8869982425160011, 0.8139954096914155, 0.746546802814807, 0.5606741574298029, 0.8010704272351143, 0.6262448126562745, 0.7230680374955292, 0.6127157536967902, 0.936163883205547, 0.5740555817605799, 0.6381314105712832, 0.7607199240496945, 0.828706168596689, 0.9187631980224151, 0.7958830090826676, 0.5244714408963909, 0.6753222322962371, 0.9925085246137474, 0.7086533283322145, 0.6793578220507082, 0.7904902964201128, 0.7125140274095919, 0.5397335486620904, 0.990821553917864, 0.718830993365428, 0.9776332317781158, 0.5045817460469988, 0.599745033512858, 0.7535056620182962, 0.620414203121243, 0.6168826850178275, 0.5023592271349524, 0.9599162077579395, 0.9592670940274285, 0.5731128311556771, 0.5446389855470661, 0.532578177145306, 0.8461268506900415, 0.9152876834494278, 0.6014646082047823, 0.6772421607008328, 0.9608591870767758, 0.9464821349812043, 0.780725021804505, 0.8471990746102236, 0.9381909128938406, 0.9917387746414281, 0.8828312669910519, 0.6521150544471501, 0.8601664747561482, 0.661299110700927, 0.9152360571932935, 0.5603663891371234, 0.8410154128085368, 0.6387267625740893, 0.9919910129075005, 0.5412570472546523, 0.5959364156720609, 0.5840996021131952, 0.5353030592355319, 0.5477423979040144, 0.8065162372063012, 0.8422584631904191, 0.9220589037175415, 0.6440483010594773, 0.9329854814969337, 0.8312543004829442, 0.8442870975616165, 0.805527759014852, 0.6724677965540138, 0.6510166126165657, 0.6777270435726327, 0.7230300964238423, 0.8898602778534159, 0.8686779981102091, 0.9556470730436378, 0.6916682522329751, 0.5758563079436876, 0.6443475975979653, 0.6812471141527217, 0.9002357325119018, 0.9980596704886187, 0.5064447897359642, 0.5942103749151333, 0.6915076931206279, 0.6679713527437646, 0.9122424242140543, 0.8076085552366676, 0.8959246404870638, 0.9614797560423597, 0.9152190341442576, 0.7581824557293817, 0.5581896492142258, 0.7826842067916429, 0.8994863666495441, 0.9892860669721977, 0.5100239321745144, 0.707228236263911, 0.6995820722767028, 0.6356971397772655, 0.612494077836756, 0.5344544200964425, 0.9713556035968246, 0.9352827529275085, 0.5239468516072077, 0.6908341140624742, 0.8016579221610383, 0.5382952661765791, 0.8205981093530064, 0.5595386613853341, 0.7203428656420554, 0.9933378163197946, 0.7542642232043371, 0.8386694893766233, 0.8597824461046486, 0.9762951559019059, 0.9833626497836152, 0.6796418208319026, 0.5376535089292933, 0.5086378836314334, 0.5276127263675827, 0.6371524486660738, 0.9268122872269242, 0.5712646051328283, 0.9158044479319547, 0.8953241353660013, 0.6416324536467871, 0.8617288251539693, 0.9255507987742715, 0.5416868867974872, 0.6074142052882666, 0.6393285072441611, 0.7175368277553748, 0.6020616637114087, 0.5688744597680409, 0.5268607440938715, 0.6439786355788117, 0.9864506603466237, 0.9247490318231391, 0.9286261234848193, 0.9810898134214379, 0.5136735506704253, 0.5830260867306942, 0.7837819424627228, 0.9037053299264952, 0.5034719762722848, 0.8791292622516482, 0.6173169277321051, 0.5237214573074156, 0.7885007238703081, 0.6298518662291646, 0.8068950698193004, 0.5582969712415944, 0.5633402962276144, 0.90578191757686, 0.8065818435988796, 0.5778742951924674, 0.9777828457829862, 0.9099132625198907, 0.964344036682975, 0.9300519119068265, 0.952355903725634, 0.7037416915784507, 0.7248366100137226, 0.8261341902649803, 0.6347589735138273, 0.9506041086835784, 0.8993199791073954, 0.9642432652116253, 0.5260603097265208, 0.8915351852139791, 0.936783996567145, 0.6957335785411224, 0.719910620231964, 0.5941489474133392, 0.8092403322355197, 0.5625909454225879, 0.5765105980959522, 0.9063384270546397, 0.5964669739614628, 0.6962251022231725, 0.651511388132614, 0.9346202143159432, 0.7433230191325897, 0.9153971972173842, 0.8275312301366993, 0.8984045137180834, 0.6952432576145092, 0.6264668291451383, 0.7999979224837508, 0.883933399090105, 0.9192302167516595, 0.860655704189278, 0.5303337188746382, 0.6252573004383029, 0.5409917842897218, 0.6841702313310365, 0.7415267345459267, 0.8730584480141896, 0.6677062625898191, 0.9576396709087533, 0.7768748577771308, 0.6266065386501535, 0.6634005999354413, 0.9279334966947221, 0.5115916791104552, 0.8911468078501199, 0.7592892732668348, 0.7563091656080603, 0.9860743510626986, 0.9343013794374343, 0.9058203939169731, 0.5407772426126305, 0.9409876887253941, 0.5706283693195071, 0.7896493641909246, 0.6366102660893899, 0.5452865227642252, 0.505497204763286, 0.854626576697951, 0.7190576151017116, 0.9578188953493917, 0.5203778604031766, 0.5820221879077396, 0.8760253590969697, 0.8806413374247315, 0.8212688265347159, 0.6038114413500233, 0.5075854444217784, 0.7820055657930801, 0.9535571159981059, 0.7045023526665004, 0.7441967760431885, 0.7880476425467691, 0.9742688305711344, 0.7671247251109284, 0.9628172628677703, 0.7599833288629348, 0.5151827393292729, 0.8840975124359963, 0.6027298643076281, 0.6025283224320748, 0.6642732079015324, 0.8999851382025863, 0.824617978409593, 0.8531813080250001, 0.8017126388825786, 0.7726680990561963, 0.895807921004006, 0.982181576603173, 0.9759810798913675, 0.7906624884752926, 0.7175697007955145, 0.6493011582380197, 0.614580457776752, 0.526323120915362, 0.7287899344754405, 0.5103859121357349, 0.6128243906912625, 0.6688671937831178, 0.8896551303338285, 0.7813636793439112, 0.5847552607734049, 0.6837967200172859, 0.9402060931285521, 0.6337012434220355, 0.9688496431706719, 0.556093568920826, 0.9018223079142185, 0.7483749373275002, 0.8992889641610251, 0.784409918886678, 0.9217342306381267, 0.7760817449087077, 0.63483164075449, 0.5852715448637261, 0.5350670871252172, 0.7514877133300232, 0.7334119823728182, 0.950937848966605, 0.954440391769455, 0.7767438134271665, 0.5563978874552036, 0.5232368401959575, 0.5252323753115682, 0.9172764000825713, 0.6411106121244201, 0.6251000789859945, 0.8067971883864549, 0.8646390350870341, 0.8377603830214637, 0.8006551284527599, 0.963299566524811, 0.9474948015912292, 0.7508849002336919, 0.7795372116074926, 0.613570202446587, 0.8237257208210372, 0.6095160169314329, 0.6444105998429617, 0.9597804588685048, 0.9880232592471397, 0.7786191683020549, 0.6725174592697989, 0.8874965532197863, 0.9041579871009733, 0.7721639772381457, 0.5156359835975683, 0.6991407913284502, 0.5036450466627047, 0.8846824589030288, 0.6166152764391523, 0.652130067040441, 0.9466890050910712, 0.6586572139453475, 0.7677940062508883, 0.7145424648483418, 0.822415049127035, 0.7331940155756858, 0.7815543720965229, 0.707501625808066, 0.8794640228533448, 0.9005552011085715, 0.9929242665393084, 0.9070480472081903, 0.6866729675130271, 0.5949142466950657, 0.8932863566736815, 0.8570141215623848, 0.614487649645528, 0.5167901325396613, 0.6730243869735864, 0.5949316865788803, 0.949179900737829, 0.5787418605083064, 0.8531614336736819, 0.9637438651707846, 0.6705638002647216, 0.8180407524965746, 0.538178211606178, 0.9272165825208316, 0.9941809916412123, 0.6125028366770131, 0.6548948158836705, 0.5957544688325885, 0.7571677719284925, 0.9397928653291757, 0.8951815860243872, 0.6291230625041727, 0.539450658114407, 0.9086564181498271, 0.9904902852501635, 0.6124242123807222, 0.5230400467667657, 0.9456491960103075, 0.9550071370658844, 0.7517923740211363, 0.7348568896875625, 0.9833313940859418, 0.9960997028223115, 0.5733272351912694, 0.5631451957151359, 0.9698881212588581, 0.5190602324555518, 0.5921909462744037, 0.8881247799644593, 0.7970173549777513, 0.7020299395575815, 0.8870452303552921, 0.6301003444497475, 0.8660992837121764, 0.9598557025205614, 0.5235140279579424, 0.908503562514061, 0.9280248948882176, 0.7054086002588849, 0.8081994009839728, 0.6344189895318658, 0.8636721070986094, 0.9882797392841458, 0.929051195391666, 0.6224845898317481, 0.5872527143338965, 0.5678091193080821, 0.9751847258673095, 0.9774031406798109, 0.538405204140298, 0.8794676665708552, 0.9492193412736953, 0.546170945193702, 0.5823478746069713, 0.7736446896874178, 0.8443519573474122, 0.7747654253653518, 0.7611636349540836, 0.9432136102511176, 0.9004846441870573, 0.9403389519118852, 0.725496740879426, 0.5805208606751545, 0.5650022036810223, 0.9780813240700932, 0.7173031279967998, 0.8409762232104097, 0.7826597374513589, 0.9611263433755848, 0.5087370185143514, 0.7990868125643755, 0.752027762143436, 0.8965088300277664, 0.7000603934360035, 0.7293744800786736, 0.7799146845885023, 0.8945012280607394, 0.946447445668712, 0.9991768377136798, 0.7216390941920499, 0.5285614473291569, 0.7773323655911704, 0.7560076787028864, 0.6949340795626231, 0.9568661486054437, 0.7405435758952992, 0.7970972906953203, 0.9744406813994395, 0.6913085838840558, 0.6576568244572432, 0.9922196633361768, 0.9410742856899246, 0.9411362754522592, 0.8924537172374825, 0.6095562177510189, 0.5163838192764876, 0.7860884067046252, 0.6771268951939484, 0.6397095697052448, 0.8534959250082688, 0.82502578245979, 0.9745633161430585, 0.8294727244880173, 0.8568538330391076, 0.9907669107432373, 0.7731936362749625, 0.8947721845038736, 0.6958333498041068, 0.6717210253006406, 0.6819788746711153, 0.5228214131076505, 0.7844094149221406, 0.7782352397482819, 0.8865803009419178, 0.5663860765675677, 0.9750750479938369, 0.869863608449314, 0.9301729437024073, 0.7115861004343633, 0.5726365104958837, 0.8493807991794353, 0.6769237611940475, 0.6926103027203503, 0.7076318533516637, 0.7335935102605058, 0.6511474757681056, 0.6950714752194482, 0.9485569819944957, 0.6138155685998624, 0.8436773117761667, 0.6192874923297328, 0.9033422958722193, 0.7122587677720856, 0.9051158311026939, 0.5408130778739069, 0.8345121549420713, 0.947226434861679, 0.9275973579480794, 0.7463934105869314, 0.6995392918619002, 0.784469067229839, 0.825127208832805, 0.6409697430802788, 0.7065332147117401, 0.6210874133740125, 0.7122138010601702, 0.6211277813889773, 0.5969521604874484, 0.7631333677277388, 0.8402937960258332, 0.5003862628363289, 0.869397820599225, 0.6376707073565058, 0.7131357041198193, 0.8221000480344833, 0.9700319961691464, 0.708697927155042, 0.9886088203380112, 0.9142573388926878, 0.8614812354285124, 0.5552694165343286, 0.9193885829115365, 0.7382585783111142, 0.5553897568747993, 0.7451108327539715, 0.7288474502518745, 0.7460507312645082, 0.8968973270442332, 0.6872442483150644, 0.5333201956489715, 0.5168388235030756, 0.9355322547610675, 0.9023308136471992, 0.9176373631816155, 0.5841305149298783, 0.8924489094181238, 0.5774390414458952, 0.6446390431690766, 0.9759701295072309, 0.5007739095845257, 0.7877741998884816, 0.880049286974242, 0.9065486295505987, 0.9016938902073777, 0.6963746661805856, 0.8098846407531604, 0.5290111355784043, 0.7636879839675599, 0.8107918957526281, 0.603698422620045, 0.7532599016253012, 0.993030665121178, 0.8554464411163136, 0.9536017734604069, 0.9112708983019526, 0.5283585206189481, 0.7225744474863212, 0.7976145783698256, 0.7912819557018473, 0.7223834001698108, 0.637379666473689, 0.6288806162614471, 0.6401598416617174, 0.5720117166654537, 0.803266232771161, 0.5212208503564955, 0.9835408803403234, 0.621172317095616, 0.69301870761635, 0.8985608330823814, 0.6353770644070698, 0.5958150307612976, 0.8645246777551314, 0.8076575741118299, 0.6261920750751991, 0.6815775779985522, 0.8988558425377962, 0.5022827022159368, 0.5957378697239598, 0.6444690028353033, 0.5197153328815343, 0.9705710091188311, 0.7446740252582644, 0.8683359724993187, 0.5148849764911929, 0.5480261933812269, 0.5775777121282698, 0.5728339275186016, 0.9167313485679507, 0.6809700583747818, 0.8331560496158092, 0.7976755772895285, 0.7680220830520881, 0.9073174883369897, 0.5217833249827111, 0.9147826785835874, 0.9084850042042929, 0.9718364635363992, 0.887485492264666, 0.6252382071290672, 0.9014001934831131, 0.508180922744725, 0.9919610226645814, 0.7094655973156019, 0.8670788336471189, 0.8618418796756141, 0.6545770016271131, 0.9972948278442246, 0.9842982824867119, 0.8958614425499911, 0.5878616138084116, 0.532562324493401, 0.9417782080366088, 0.8666679819858891, 0.718288435964471, 0.8934974580479053, 0.5325191403864185, 0.5430186312217922, 0.585929212023609, 0.9654258627403287, 0.7277088171667009, 0.6636702626737037, 0.678587908217558, 0.5830828624827886, 0.7053307842378973, 0.7014840032114454, 0.8660239204904666, 0.5529291044591325, 0.5306904753404009, 0.9834711461713181, 0.9606900636761327, 0.519481731250178, 0.5645118617960808, 0.8463144213902076, 0.8687311179365842, 0.5749728817428568, 0.816678582076781, 0.8866259256213018, 0.9685924659999066, 0.8655757916235225, 0.9916684198328147, 0.9790283205571224, 0.5695756951476574, 0.7606461423976858, 0.6671771031616682, 0.8818559144703841, 0.6024229923784494, 0.6440427930424537, 0.6596970065471166, 0.5267925027809257, 0.783292326405279, 0.8267659796465161, 0.8201417021751662, 0.6083789433972879, 0.666638027073611, 0.897765178153469, 0.97913990364761, 0.8416417115038979, 0.665278788924394, 0.562116819267048, 0.8752846007125206, 0.714435439439246, 0.5364492804567493, 0.5508038895145928, 0.5085850930852485, 0.713272262562263, 0.6960333792881028, 0.6126401704499369, 0.7076635158228124, 0.9560089242766766, 0.7662025231737187, 0.7308153461590803, 0.846619100377947, 0.7242902101518061, 0.9783831193151294, 0.9375450136331529, 0.8492109885159197, 0.9612439216760289, 0.9830280348668974, 0.6434626082555144, 0.9279718556176384, 0.8592384093057904, 0.7003288202972002, 0.9037229643176894, 0.8132563055476917, 0.9616728507072583, 0.888139532559608, 0.6213665349469377, 0.6064895400973815, 0.7748370539904148, 0.6134834167341698, 0.8370394177502827, 0.6037691632580974, 0.5248449553358957, 0.5605432318454162, 0.7788547384407565, 0.7366027742838644, 0.7309004557857445, 0.7073533112373683, 0.8731420710738533, 0.8336323789314325, 0.8875024623372816, 0.5665614892146122, 0.9357985313234466, 0.6780023504845167, 0.6173788703096523, 0.92056847195175, 0.5263545527835871, 0.9459460551614398, 0.6337709207958665, 0.7981237615936552, 0.9280711773364307, 0.5170450533483057, 0.7343841330305265, 0.9290950275787113, 0.5128184068880643, 0.7839526564480793, 0.6136689564755857, 0.9414453559312923, 0.7643216192156279, 0.6162088499574869, 0.8759401398899607, 0.6551897135281944, 0.9077543079514634, 0.9309095709966801, 0.5472191488505667, 0.9370079363495492, 0.7337678139033191, 0.7432069469461592, 0.7399651085600429, 0.7395515428426704, 0.5597553174205608, 0.5468319834668552, 0.6506806354873984, 0.7687529818795547, 0.6660486839902153, 0.500756430381618, 0.9162373311642662, 0.8733553460578642, 0.7572693364546353, 0.811339687316025, 0.6428300034461629, 0.6767166300291153, 0.9733686670089097, 0.5523945322867144, 0.5515974306813087, 0.7006532566213612, 0.8301349566574178, 0.8917305985742763, 0.6539732124403161, 0.7433277529720926, 0.7873482163008461, 0.9468608515695207, 0.8031417734718754, 0.8202720055614381, 0.9505377600964049, 0.698907094970688, 0.6332258795801167, 0.939454976913171, 0.7601746942951604, 0.6963056525271171, 0.5639614124312858, 0.5872877560046738, 0.8577019668382826, 0.52103604989949, 0.5113554820515869, 0.8431821653630698, 0.7608838038452803, 0.6591354118762194, 0.9426194011028243, 0.7817124685310893, 0.5315515549681071, 0.5402628822417991, 0.8803316882664316, 0.5812287544393712, 0.6064206896360416, 0.6301769429753318, 0.9604456460457813, 0.8429636651983761, 0.7266748588905689, 0.809193078101891, 0.9846934193245789, 0.9072074933816909, 0.5900157649252968, 0.8003314184815694, 0.8355970254564691, 0.9063668178520226, 0.6160159263590752, 0.6916766988045822, 0.8688359628421984, 0.703971637256186, 0.7023586373145783, 0.7403830668507115, 0.9814590336444238, 0.9558481767123026, 0.5586837555147373, 0.5389155779366992, 0.9661412484252979, 0.8748779372593558, 0.5504974947253476, 0.6298625905157765, 0.9698740148022005, 0.6458048960090574, 0.5487031039272385, 0.8830861124975978, 0.7981343739660073, 0.6181295998960896, 0.606683598249593, 0.8677107873314129, 0.8503679763088133, 0.5218407445966791, 0.6024914226286235, 0.5357671300733775, 0.9573824900612569, 0.7957935951705006, 0.6645395565641858, 0.7033773052793473, 0.8869743017804106, 0.5052440388582676, 0.553501742532438, 0.8839905908824979, 0.5872637245747314, 0.6040203485262123, 0.7985914657302006, 0.9985500180475817, 0.9047976333175469, 0.64689716939733, 0.9908291352351403, 0.8335615743758928, 0.9178058509566042, 0.813734898998997, 0.5043295219956028, 0.7369049102579721, 0.5473195698033102, 0.5529049168536606, 0.9898638087905245, 0.6804413828000282, 0.6072615315715515, 0.5198068901168976, 0.8454584850024419, 0.6374621926726725, 0.7218359861450052, 0.7440488742012537, 0.8512589298431618, 0.7788949960182647, 0.8744211266625517, 0.9030051335432396, 0.7562603792315409, 0.8365770334721301, 0.5995182131669358, 0.8820761801567583, 0.8219011424892194, 0.9692612572477752, 0.6179942181511011, 0.6894697130774203, 0.786544481138699, 0.5779956958343073, 0.6355140265365338, 0.9463293580262042, 0.9784966216355406, 0.8230999281921247, 0.9821387655284582, 0.7804511531779101, 0.5792996483199926, 0.6253777628802946, 0.562158750315217, 0.6252699543489034, 0.8305998902770584, 0.6911678087593396, 0.7496951400501701, 0.592350812733219, 0.5353237408973063, 0.8798412934208807, 0.809528578730828, 0.5981608695060789, 0.9596054398978568, 0.7292272584570916, 0.599826351760359, 0.6516413234189038, 0.6791313194729252, 0.5876421157521332, 0.6236494534592596, 0.6791653889356647, 0.6264190995581217, 0.6457887253403547, 0.8185104637341887, 0.7818278758668072, 0.885190905726136, 0.8220062178591793, 0.6122268236312768, 0.6658335153688235, 0.6376805783231148, 0.9761839872354545, 0.9818615039027736, 0.9147533207400746, 0.595105446674455, 0.5985224291259381, 0.8146958737990201, 0.6789741228165909, 0.9971561882296345, 0.6852415808359459, 0.9500025732101554, 0.9503920959790781, 0.8082278184497121, 0.8767598355637096, 0.8912756572090876, 0.5258543523434447, 0.6544968218624674, 0.7821944599421817, 0.8939047500287284, 0.5714228838272355, 0.8848070716292549, 0.6364767539601912, 0.8086566776156363, 0.7075780313020661, 0.8596729179613174, 0.6081749384351813, 0.6107761133532337, 0.8664038523508863, 0.755467847047363, 0.651252946274421, 0.7006166101907113, 0.5336779810493983, 0.7525973242459697, 0.8559918492322061, 0.7352466537155726, 0.8100330949514645, 0.9913546773044541, 0.5681764086702354, 0.9733645182637951, 0.7151359803200283, 0.7652699566887792, 0.7350058720289774, 0.8692060869299731, 0.9865061726615021, 0.8164301506544784, 0.9092073081652801, 0.5687720490785553, 0.6987988152979261, 0.7514140981686234, 0.8601389267127579, 0.6513504043452898, 0.6515371743754679, 0.9118193846840594, 0.519580843918952, 0.7332177727183022, 0.6921388694939674, 0.9803761063188792, 0.9745270398943612, 0.8068728023927647, 0.9017907187915998, 0.7030466854316824, 0.6238291642580207, 0.5955752611075058, 0.9666878433520318, 0.8599020144401605, 0.5211502534985283, 0.9669646336096314, 0.6407972134333721, 0.6535418643006495, 0.5780135792713058, 0.593783004329353, 0.6191838689112721, 0.7117337642464223, 0.9790367612803113, 0.7407376194732755, 0.6634489298491111, 0.9122727889313057, 0.8886384146927206, 0.7899913835866876, 0.5613435427575462, 0.5504532738733872, 0.901833828380372, 0.5971030034663747, 0.9089421863486103, 0.61186426068558, 0.9412773465620081, 0.5125373268485194, 0.9576579426736553, 0.9317425873568631, 0.8406647872797333, 0.5640556709983398, 0.5998208852226156, 0.7863414250444374, 0.8489613525621289, 0.9242703334968463, 0.6591429671295425, 0.6046863162066569, 0.5652976670298955, 0.8285112216981847, 0.86994400766829, 0.6162825903400873, 0.8437057732890176, 0.6926927936876837, 0.905361993484747, 0.600027332780909, 0.9551683668519453, 0.7386575521177389, 0.6716147855879699, 0.6540715948482878, 0.8380681459748258, 0.797207765281751, 0.8728069277369446, 0.5567195955333805, 0.746668879126827, 0.6271050418764399, 0.9294898037398942, 0.6116963487197056, 0.8196388484588393, 0.7405851066286292, 0.8076903843271852, 0.7298822783254977, 0.7956937510023727, 0.921897919215598, 0.7216401813484813, 0.5432271451983895, 0.7747142620799783, 0.7345020543256346, 0.5249716904324341, 0.8119643318518635, 0.7042780647354852, 0.9969721466197596, 0.6433392720406752, 0.7184929520089525, 0.9950131968666935, 0.8099150403600021, 0.7864369511323459, 0.7901168920828716, 0.7212535563696851, 0.5364458880557228, 0.639431243174658, 0.5414193873739441, 0.8689837062389479, 0.5671603993733384, 0.6484067052496438, 0.6322806007240223, 0.5589230395190492, 0.8128741291783597, 0.8046116636993219, 0.5887152500362289, 0.9523258640526564, 0.825020894727323, 0.8852231141033939, 0.895658035024391, 0.8510015302018422, 0.6416939810205722, 0.6019224190183425, 0.8755179515700742, 0.5895235614818071, 0.6142690412677794, 0.5247567609312865, 0.7792477966931751, 0.7056473479463841, 0.9249786462039891, 0.5428743373420053, 0.6124242162801964, 0.7092329411526297, 0.8593665248464027, 0.951112212068107, 0.6994045158411452, 0.850223801166305, 0.9387140287591484, 0.697097009287738, 0.9794301227802437, 0.9712595571778646, 0.7495498600562459, 0.6186281034218152, 0.8022940774602951, 0.7365347523761853, 0.7918689512966847, 0.7113886939657448, 0.938244664942727, 0.6624437011453801, 0.5958275109023132, 0.9667077701670588, 0.7223652131240861, 0.9058648642699054, 0.5803125110088546, 0.8389620805294129, 0.5201961691096504, 0.7899213948848097, 0.7123464187168149, 0.9950821261721898, 0.9841232834435452, 0.6713251482788813, 0.6504753713590808, 0.5599923836008291, 0.9929599462649376, 0.9784562256255382, 0.7654715077308641, 0.6954395773575657, 0.7185472550189635, 0.5595653646302859, 0.860096157115761, 0.9384625478729448, 0.7901412289279948, 0.5880711790441795, 0.8940026545650926, 0.9032669915480855, 0.5880910020663549, 0.8169076053671738, 0.8886517311688734, 0.5441661411894964, 0.8390493433489263, 0.7901743244777997, 0.9652552353220683, 0.5695010295338603, 0.6423900685147221, 0.8510515517954051, 0.9912902680055538, 0.7220271363876773, 0.7743006275388804, 0.7009330377082169, 0.9022169711072963, 0.976282273809514, 0.5652715806644422, 0.5073327679781813, 0.6843161872109921, 0.505970467196075, 0.924887264843056, 0.6526213193054593, 0.8018821414569042, 0.589517119011998, 0.9048998061549676, 0.7662544434195605, 0.9043243455627556, 0.8530499357146049, 0.5939424578621063, 0.7478492653205052, 0.8581833164746642, 0.7993671822053552, 0.5499771753676679, 0.8795216136482791, 0.535420590202184, 0.7461494042540904, 0.5754265967151828, 0.5438143565777496, 0.5114994836236582, 0.933638899088364, 0.7065608028796094, 0.8388177184614328, 0.55908463451022, 0.732231041284789, 0.7094718643580111, 0.8022126233626339, 0.7807873401549963, 0.7363137181782895, 0.9365358939744408, 0.9177367728865486, 0.8986092800944947, 0.6799623571200926, 0.9867349946222611, 0.8710289995084343, 0.8712913882992157, 0.5101105680369393, 0.6833043307960037, 0.9061031064625884, 0.6700349581301285, 0.5453898522683346, 0.8559519018337566, 0.7788188141354576, 0.5853110240127519, 0.8966235010466153, 0.5829828410740374, 0.9995826545869723, 0.8971888561193468, 0.7543860274355825, 0.7585486667476915, 0.5383709813607285, 0.7372737801992107, 0.6327159321868714, 0.963658798532143, 0.5003675172139488, 0.6089521415228717, 0.5620063831973381, 0.6842679807847057, 0.7008976705811132, 0.9129490711356769, 0.8504812378939368, 0.85925249001916, 0.5834927172283088, 0.6203472154256449, 0.7740810845422624, 0.8552281283289355, 0.6635850548940482, 0.9401981123647178, 0.7446569057069796, 0.6654913259482309, 0.9433819307686255, 0.8610468625296235, 0.928674576187213, 0.9675548560537608, 0.6154795429638591, 0.7777319700366858, 0.9502834298425107, 0.9129591784597715, 0.9434957208822294, 0.7136706364537402, 0.5307120057752104, 0.7319675417466929, 0.8593812537465251, 0.9101287860114537, 0.6661469369502214, 0.9894722239592899, 0.7393164773230861, 0.8013556731998721, 0.9294081468234419, 0.5796393937827562, 0.5140064217940123, 0.7188070923713922, 0.7069833731723687, 0.957431131442809, 0.8571888806774604, 0.5022653281519742, 0.5694601085686329, 0.6062518714975031, 0.8329008825265061, 0.6124261279677338, 0.9912936160120519, 0.8407631255576838, 0.835250405718533, 0.7315895475449861, 0.8309210903340336, 0.5854923241345543, 0.7115538091444382, 0.5196869307543304, 0.914310701816597, 0.9495962499649748, 0.7239618813243941, 0.716896899989883, 0.5048951802430754, 0.5430058364115337, 0.7884797747020159, 0.9726985266579382, 0.6436776876771407, 0.9740698685162172, 0.6321744031636563, 0.7742933920644823, 0.9672985648252115, 0.891755278101581, 0.7872516433535437, 0.6268245248342528, 0.7444744616736387, 0.6702440266079706, 0.9906535174967299, 0.7686372608711083, 0.6310731296759808, 0.5915788410872198, 0.6886269498207984, 0.844063988624414, 0.9810071971473572, 0.8472339257637943, 0.986311416056583, 0.8030638199343411, 0.881359607230251, 0.5620659864856475, 0.8381572009433993, 0.8517011384647408, 0.5691670001485614, 0.7698998820659934, 0.674232452175029, 0.5852239233733668, 0.5957085690527035, 0.7975899622913716, 0.8542639834846193, 0.7498338841349588, 0.9221474837732474, 0.6376948323899707, 0.9339852012822647, 0.9758360787218426, 0.9281317061860404, 0.8468113956000658, 0.856889791167424, 0.7787795771273798, 0.8020498548775928, 0.5176881657962674, 0.6205055444371725, 0.5163983421126237, 0.7430732549251893, 0.8444939390212114, 0.9386403164784343, 0.8030709926683504, 0.6724266762451145, 0.6724741535268256, 0.9672785712740423, 0.8925892647435341, 0.5033130322529444, 0.982349646560979, 0.6483803077021768, 0.7696478353549203, 0.7317543956875504, 0.7751961588309977, 0.6562666273140105, 0.6195333134961734, 0.6112587992726547, 0.8543985758298251, 0.9612085103183633, 0.5908547465453295, 0.7666356077171617, 0.5109363514075047, 0.8698443319048823, 0.6509112446722467, 0.5571853670657783, 0.8783500097163097, 0.5431437291507868, 0.8681039930771213, 0.7182205648746613, 0.5627707512923924, 0.5968436646361505, 0.801753184479723, 0.8850916881422359, 0.7440784013684552, 0.9496681766760704, 0.5547626907545, 0.5201539289058912, 0.6316326267261256, 0.6822912688907388, 0.60125568752524, 0.850092162086707, 0.5193989056405506, 0.8301140441571624, 0.8089655644701257, 0.7568088936899499, 0.5375830193704653, 0.9010643863291858, 0.928047323368552, 0.8503882274228909, 0.876012220161051, 0.7298449254136867, 0.7614188399190909, 0.9776266047154635, 0.8787359770586018, 0.9274813791547765, 0.9591026268402303, 0.8805083786244678, 0.7764553319822157, 0.8734963724038485, 0.6134762576404313, 0.8702481066421486, 0.6449793983777077, 0.9015928791321504, 0.5749603631465052, 0.540842180827208, 0.8260631750981513, 0.8675924522279961, 0.6542625540189728, 0.909823145054961, 0.8741211356349019, 0.7467127075216429, 0.7217200262271017, 0.5555493472882111, 0.5310268451886173, 0.759597536393732, 0.5842366947671864, 0.9464290454495148, 0.7831628208576149, 0.8204256484961696, 0.7417975695359595, 0.5793402162656505, 0.6066693510974384, 0.8750485762936969, 0.6230286769261273, 0.918851951206429, 0.8521524913803841, 0.6028431948932792, 0.5102019823202926, 0.6159385467275378, 0.7195047413847624, 0.5458270462224505, 0.8730985112907379, 0.7761503170824045, 0.6711643717716078, 0.9004992693178855, 0.9621789669577385, 0.603920041226698, 0.8464043453153696, 0.7495110420032438, 0.5752708779319201, 0.7729907495666443, 0.8280740306395491, 0.653475612185016, 0.9513321753235082, 0.760990344880152, 0.6953855799617483, 0.7698005362569715, 0.8740223477503843, 0.9727089143046848, 0.5835620509927713, 0.9629826976018325, 0.9125029804846112, 0.6232090187887158, 0.9476479255328916, 0.6761127131986797, 0.5801154383530074, 0.6740715623603617, 0.9574583281190641, 0.8662012279667117, 0.7357931228524437, 0.9379964587356127, 0.5791787908479678, 0.6196434878646886, 0.8623970362404707, 0.807909579355625, 0.9363145634054, 0.6406061247490149, 0.7439137360968049, 0.5409044240897345, 0.5391107452753454, 0.6309845808756738, 0.8019033997079859, 0.6419334859840785, 0.9580652035300903, 0.590624466040978, 0.6849441840813268, 0.8692709686826829, 0.8064440623072137, 0.6729659119590023, 0.778623966978923, 0.739134651077337, 0.5111698733246297, 0.9071673418495032, 0.9689089244191931, 0.8915889852287238, 0.6969255996296371, 0.5649843347968474, 0.8342189199049819, 0.979514815280849, 0.6853532078379299, 0.5601452128501443, 0.7424276072838176, 0.6271627268804196, 0.9094368506479513, 0.7879246325813996, 0.692157495049083, 0.5614777031249681, 0.764470588543255, 0.8635655919978252, 0.9480422975834273, 0.7763182090428637, 0.5323697534136129, 0.509607117092935, 0.5448286463953868, 0.5270334698040771, 0.5119693198160005, 0.9162764937367174, 0.6415289897729743, 0.8518786661487625, 0.7990423683369667, 0.5389487167427474, 0.5538084410668089, 0.6704847298340366, 0.5813748477123437, 0.557285866121139, 0.8066920269347797, 0.6971558658546209, 0.8925854083540044, 0.6887093181581185, 0.5406043835860668, 0.9983398191916739, 0.7257938793012022, 0.7963232489494942, 0.8448390555375653, 0.9296454216615824, 0.9473646520219302, 0.916957355952648, 0.9365076885332593, 0.8968179443283856, 0.5522808951919251, 0.8662478109528859, 0.7742559263758632, 0.6104930497433803, 0.5960956539993487, 0.8894145711404772, 0.7006380625202004, 0.5408266339266049, 0.8242284231629421, 0.6849075526297739, 0.9447289086427101, 0.9077169818009366, 0.8207615397540031, 0.6417183171439014, 0.9363310435693213, 0.8604851701329955, 0.7103789700451606, 0.747294814427762, 0.9362365192409894, 0.5975654018758552, 0.5580529655043847, 0.5373438901649208, 0.8140207689881516, 0.8277755169858634, 0.653683390864363, 0.5902417634997491, 0.8075282323102543, 0.5579690591839315, 0.5829260704537309, 0.9156180667080771, 0.7343727674469087, 0.9950589781364793, 0.7721240234846817, 0.6836115351783972, 0.674561026324159, 0.9879019944713576, 0.7948265149165256, 0.5262848182915703, 0.7663106127076156, 0.5762136021111517, 0.7373349509661258, 0.5229193640437051, 0.621150900153225, 0.9683458613672524, 0.801093093683501, 0.8567301564871108, 0.7254896724336866, 0.5235246789403042, 0.7049067226755739, 0.9502467885862989, 0.5454626204116886, 0.9837069100090303, 0.9798942769379386, 0.8579074320472531, 0.6396710469051735, 0.5003041432478593, 0.9201518534304443, 0.6904944590875969, 0.8706022090999226, 0.5479022872023249, 0.8663585130952438, 0.7177994140793593, 0.556000384022495, 0.6833971186583352, 0.5736893173758437, 0.9156342405528004, 0.6553069831505591, 0.7052602923061619, 0.6596522811638085, 0.67346220956489, 0.7995971276198657, 0.9730619169585273, 0.7557050274190317, 0.5376280652752418, 0.5195530861051638, 0.9038048149169347, 0.5583100831748667, 0.9466187222133575, 0.6408819217392225, 0.6776007300108892, 0.8637489055189633, 0.7323710496741509, 0.5620454409282385, 0.7674989133338603, 0.5702334435060099, 0.6623883248914588, 0.6499435415563446, 0.7898138434933297, 0.9870830289838881, 0.8895115228075534, 0.6695692041510131, 0.7441566599375157, 0.9519513204553851, 0.6941723648195204, 0.8304675292800094, 0.5343816672032632, 0.9181243598555777, 0.6665608611335436, 0.8447944935454186, 0.5621932804595817, 0.6080039373831292, 0.76663599422949, 0.9349299799854542, 0.8969304301775536, 0.7978939064588614, 0.9131619126852948, 0.9970981287243526, 0.8419336362330019, 0.7414745561858842, 0.9434961611916199, 0.9558327500200712, 0.8552446961069234, 0.6382551050698853, 0.6539934456237434, 0.8499956857444787, 0.6002658999083446, 0.6353941754188194, 0.629207568981881, 0.7754615271807193, 0.6015784264595272, 0.6913006431725317, 0.5918289842396454, 0.959058489527379, 0.9294250862059641, 0.9943258775953197, 0.8398836782335133, 0.9054392707180399, 0.8777867412522189, 0.5733728414813828, 0.9476115687651203, 0.6436119215170139, 0.953643008040594, 0.82113040507799, 0.5314144644315224, 0.7886076672995794, 0.8880686546492751, 0.8023274223401917, 0.6957500472150555, 0.7261540758926098, 0.5620648373018138, 0.9296930750955542, 0.631831042889573, 0.8690571787100164, 0.6612779390073901, 0.8211038984883279, 0.7858104528529559, 0.6598934983201477, 0.8176732381154408, 0.6832513993328482, 0.5455250918211176, 0.928185375871392, 0.9754519010851044, 0.905156237693278, 0.8346775511417135, 0.7123760352545789, 0.7729352930379736, 0.9691784178983676, 0.7045774160858018, 0.6691252356270709, 0.7634058444301116, 0.6091666065048091, 0.721395602574272, 0.6785236409387791, 0.6045714557588869, 0.8249768001454221, 0.5457762012843143, 0.8893105610446626, 0.814920340535029, 0.7796295479454871, 0.7002235537188253, 0.9165886611510705, 0.7542949507883223, 0.9854556816789761, 0.7025335726012578, 0.9471002759467031, 0.9221731702320909, 0.5324762182920884, 0.6379698129295186, 0.5872572568492875, 0.657022916276299, 0.9306105476530385, 0.7226027052925786, 0.6023941140772966, 0.8890559261508333, 0.9474699164776119, 0.630970947222131, 0.8119088728415653, 0.9300069074458597, 0.7300799209054949, 0.9659091818028118, 0.9447566572253019, 0.802949440872025, 0.5745158775463046, 0.6456258740765098, 0.5659640140552104, 0.8909674925669977, 0.6757765465160647, 0.6860902182612485, 0.7322243060150777, 0.9293175251573579, 0.8120997401875183, 0.5530285869366129, 0.7378255100892873, 0.7339259945862544, 0.9701917721161268, 0.5811326110272701, 0.6616721232578942, 0.9520066221578573, 0.7336722299782588, 0.8844917062435369, 0.859212883090121, 0.5420579105225105, 0.9491082053367464, 0.5632740636594753, 0.5078396596768708, 0.87803792971287, 0.77609461428638, 0.6772464703731578, 0.759130723318244, 0.6525209696666854, 0.5533953044301808, 0.7556061994219702, 0.6667472824330056, 0.919013706170888, 0.700012901563398, 0.8666747496043605, 0.8240653181167754, 0.8496329676528842, 0.5801758134590419, 0.7512729828144699, 0.7609538886882992, 0.8597523782873009, 0.5807155912750092, 0.9201873467125834, 0.5631422924168921, 0.654519474057138, 0.7037032013066213, 0.7605512962108358, 0.7065879754909004, 0.5676438791061095, 0.5124014367944527, 0.9265710927522747, 0.5231625503406478, 0.9273370319936143, 0.6148541151235793, 0.5372268159599088, 0.9672057198709043, 0.724750626028243, 0.753543905502321, 0.6020241795130241, 0.7862336633216098, 0.9666020121798553, 0.9415410631216088, 0.5487352643636656, 0.9713512162143199, 0.8449378968367499, 0.6347343521718762, 0.5528250685032405, 0.6242490229145796, 0.8931578067587108, 0.9386445984627181, 0.5049393090072614, 0.8618060605217992, 0.5511073258398727, 0.7819676039244629, 0.9843315937395012, 0.8837655456420401, 0.9856860503565095, 0.8751514731770208, 0.5011290515901325, 0.5969786513970335, 0.7765092405684433, 0.5229167371545168, 0.8342429646781089, 0.8590388200982506, 0.6613311520879804, 0.97930523613511, 0.7059509773682655, 0.8921412159602276, 0.8871549345162606, 0.5135527641456025, 0.6147200501304103, 0.5956813292924654, 0.6358589003985757, 0.5852693759773268, 0.6711160987227055, 0.9292730508347664, 0.9956010802344625, 0.6411784401642602, 0.9873907291283948, 0.7905638285317278, 0.9082679730605163, 0.8282903392163876, 0.7710294115754446, 0.8774617506913611, 0.7123480548138952, 0.6807337156606252, 0.7617039146068724, 0.8939402472318738, 0.7858669428430154, 0.8927131037592532, 0.771748972411214, 0.8173142216491389, 0.5398768140777921, 0.5267562070997412, 0.6782725319886063, 0.7702848146800696, 0.8703927461040756, 0.5457049885194172, 0.9517783011538318, 0.6936911466895157, 0.7950808208138858, 0.991127714842454, 0.5200808558379868, 0.6208117550582011, 0.9126864805127011, 0.7132864248583233, 0.8702737598034316, 0.936376502571705, 0.9335980844045737, 0.8199974883278602, 0.5500080274910834, 0.5133709643718436, 0.8996961807647681, 0.9204870738851539, 0.6740886291717814, 0.5630267237010498, 0.6191668327798023, 0.7941710919074423, 0.7751121560318233, 0.841949455710546, 0.5434280333487433, 0.6751676050525495, 0.8514460271800424, 0.9818472719247245, 0.6001354302335733, 0.6646725632160699, 0.8213646641755761, 0.9951147660738979, 0.693489110929866, 0.7307828514969704, 0.8947239129693219, 0.8826678702167401, 0.9868683658054254, 0.9046167715443398, 0.69385075139482, 0.8892440419186763, 0.7680570315491468, 0.7130961380425949, 0.7080516574543112, 0.9134709399567582, 0.8220904397809137, 0.7627190472975811, 0.8020225941368153, 0.9143150415865666, 0.9188028322847697, 0.9256089817476634, 0.7019007106051842, 0.7211706161909902, 0.9901020355259026, 0.7551696408679079, 0.9690219060284846, 0.6327197596216334, 0.6892379299212906, 0.8975091023348801, 0.8933299921727361, 0.6709486670153144, 0.5282043815068656, 0.7209706026953877, 0.7815797657563943, 0.8021960664649691, 0.7563384916769286, 0.7183985232120609, 0.7765986264058224, 0.7713236105479457, 0.8123623136278371, 0.6927620408781536, 0.6876911059518337, 0.8660823134043991, 0.866086965659141, 0.5138322459191467, 0.5147121535207471, 0.9350380707771189, 0.6282868284868657, 0.7208659021327278, 0.5910462649279765, 0.8879382541666657, 0.6865146436022951, 0.8916727646896041, 0.7873989380592775, 0.5657042398539638, 0.5313943071165238, 0.5413531311548259, 0.5247159695143988, 0.7644906308876065, 0.5358000982641562, 0.926720877375824, 0.66437284058746, 0.6774627094976616, 0.9752824348763599, 0.9494679905987058, 0.7209740917958833, 0.6726981594374106, 0.8602036639516103, 0.9520544448085622, 0.9244565665438367, 0.6809970260625362, 0.5806691827417256, 0.5408765570807936, 0.6972942781019895, 0.9016430385164868, 0.8439014546687664, 0.8120122246901816, 0.5768271736181818, 0.5349872121776051, 0.5783069552330053, 0.8628033479100121, 0.5929269741627723, 0.7282462828914488, 0.6156294742227817, 0.7750456825643575, 0.509712387941742, 0.622812056026072, 0.9635765209000622, 0.6962102546922503, 0.9764844693700925, 0.9946810260419556, 0.5847011755478446, 0.9512346523672006, 0.5311190103200439, 0.8078271810052233, 0.8919446522494174, 0.8034128767248134, 0.6442767170832109, 0.9130108312909742, 0.5574006846553718, 0.9305992682514901, 0.9545708652195461, 0.8124344797359397, 0.8952841100485767, 0.7816926752305524, 0.5282270273848588, 0.8836434365700907, 0.7380645935501668, 0.9426049821328303, 0.5158042869869782, 0.7495482150279733, 0.5362462498264946, 0.95836844113941, 0.9751550054532832, 0.8534973298253659, 0.8308449226100365, 0.9856866695183262, 0.6106618127211108, 0.6137311067336277, 0.9919872005485426, 0.7161401161416576, 0.633484399128827, 0.914799798125771, 0.589272035076235, 0.5887531312296217, 0.7179122988125051, 0.8648159959898496, 0.6077868238254601, 0.571747585159925, 0.6905912243483668, 0.9967527591528158, 0.949771197467541, 0.7873586487918621, 0.5029774248016292, 0.8563732613443493, 0.843937551233364, 0.9952947414292018, 0.7149014739584674, 0.9017824841509643, 0.8638164174122669, 0.9357766021860632, 0.8750518014367004, 0.8842652969026616, 0.7582506787093756, 0.8290644938753744, 0.7000968468551387, 0.6212583575658279, 0.7818981918014254, 0.6788892849617517, 0.7254040462696638, 0.9887669888943362, 0.7159048927177363, 0.6912770298595554, 0.8568378816817015, 0.8662197940841032, 0.8153926347934588, 0.8143112545039226, 0.6776159195525343, 0.7438809058514128, 0.8868979336146812, 0.8591190919587526, 0.7737603100434383, 0.821810645237709, 0.6814520764006927, 0.9144228011871236, 0.8921821126008592, 0.7279238134296915, 0.8815904255074858, 0.7337757994238946, 0.6757586245638302, 0.6809902107162238, 0.7722960862278714, 0.5020685730251644, 0.5999010109241334, 0.5404955187578981, 0.5067546051848018, 0.5256300033253446, 0.8658563600506133, 0.5040938693281223, 0.8203197138301522, 0.6642946555017124, 0.504570943488996, 0.5255411798319775, 0.5970805655976446, 0.5518939042050861, 0.5915319200948284, 0.7514517589367204, 0.7802440965332735, 0.6456171460263724, 0.5687414022789379, 0.8361894896743376, 0.5411162179064553, 0.8069489684783546, 0.7590401192420168, 0.8564017913632818, 0.9041366256920114, 0.541323932865638, 0.816743607790855, 0.7325589783876505, 0.6143149156988565, 0.9625375425963867, 0.5380609559918932, 0.6475622870190234, 0.9449703714027398, 0.7998806580963945, 0.6147726094113668, 0.8684510948819213, 0.6624871960837493, 0.9445045758957493, 0.509433517578685, 0.8072912432130108, 0.9158342304285454, 0.9925866353519981, 0.8002512675583596, 0.6708616487917393, 0.773548025709601, 0.5110900113851675, 0.9946289964953554, 0.5189316826878614, 0.7460437929345758, 0.6969589010109413, 0.9253823647119626, 0.6839080568668845, 0.9346466786003519, 0.7025768085350375, 0.8555633557505473, 0.5400407318885838, 0.8560511028457094, 0.9657050395426425, 0.709173763250566, 0.7877584825740708, 0.763875470849912, 0.6563886155304457, 0.6565494001872717, 0.993141190951687, 0.9290330795949071, 0.5749710320797639, 0.5824712314968277, 0.8505419368972784, 0.6112381777096085, 0.5562467790605259, 0.7820253177353548, 0.5108335417320692, 0.6298553912212956, 0.9586849961090419, 0.6283768302977522, 0.8443788961755883, 0.6313015330699996, 0.6763082511047704, 0.8547910933390642, 0.9319665419753396, 0.9412324075220051, 0.566664829715182, 0.7450275964798774, 0.934014886919768, 0.529062392519532, 0.8804823804419599, 0.9799618440910378, 0.6033781189102428, 0.5647117664002969, 0.857749298536443, 0.8465255222755484, 0.7346795438720723, 0.564074438999618, 0.9415062205917419, 0.9400892957309599, 0.5972597449193224, 0.5314915326058192, 0.9617817215590589, 0.5808253830147827, 0.9031841908114534, 0.8014110052658723, 0.5057181643006727, 0.5292649919857366, 0.836206455134108, 0.6637434301321179, 0.6489878409871163, 0.8023537426189877, 0.8045113422007476, 0.5005568846724452, 0.5362063307819205, 0.9912126706735536, 0.9026249195253843, 0.5030863930789712, 0.8906393860187534, 0.9588900880179061, 0.7223778480181254, 0.6871615680467547, 0.9937015774167384, 0.9846005334627659, 0.6103431039655126, 0.5496046845515848, 0.8172245022408617, 0.8351365871790761, 0.9846370621615155, 0.6357923268278522, 0.7399379856682926, 0.7047982900112136, 0.9323978621277824, 0.9781593882406124, 0.7583914194747428, 0.6356714496630864, 0.9540282660479729, 0.7573317051907669, 0.5766752862483318, 0.6924897846999654, 0.8281166140651922, 0.9250488326659317, 0.8720437172623194, 0.6432771983614796, 0.7468648730371168, 0.6545200896481621, 0.9916927581741096, 0.8362261977740121, 0.8198580746324815, 0.8693625876181237, 0.998588141534887, 0.7549352995679324, 0.7349677964122463, 0.6932105340140008, 0.7044622136135551, 0.8629845033685912, 0.8467382517991615, 0.7662476258237145, 0.7696860734526816, 0.5525525062111913, 0.8282753994570919, 0.787543883042372, 0.5907457490095127, 0.896995261220981, 0.8218012654770807, 0.9558747742372216, 0.7244989533245667, 0.7570475635696197, 0.5608006391441643, 0.8632180539995631, 0.8825235727208167, 0.9910684485089405, 0.9797336480418186, 0.5478229934704995, 0.7435139453535775, 0.5939624669950528, 0.6088372753432169, 0.636635178718608, 0.7421604853897474, 0.9774200262399297, 0.7981287272629208, 0.68059127241369, 0.5836932569484985, 0.8896952560554328, 0.6008576970642692, 0.7567412908519526, 0.508409057856268, 0.9218919111672684, 0.9198210747349285, 0.8350792513903529, 0.9776634204601748, 0.7205026531034109, 0.7658762818814673, 0.8203360528561678, 0.9049358952266258, 0.6152864734936603, 0.9563729195816641, 0.8269248576899828, 0.6049924032328631, 0.5057060935912331, 0.7601769991571885, 0.6206772917551986, 0.7742222737370597, 0.9893168291743275, 0.545543032128754, 0.8372460099577443, 0.9073531979302866, 0.5711520530331866, 0.6855744197417307, 0.9518273236461382, 0.6474126189412752, 0.5757426979864227, 0.8220322087632477, 0.7163322980838008, 0.9660379454620358, 0.7762830793482779, 0.8626072617720608, 0.9357678203714952, 0.9416681853251849, 0.8842024916869515, 0.5438859964216607, 0.7549777417419824, 0.7521203503294269, 0.5034388426254176, 0.6470569295516213, 0.5720690033815803, 0.5620199165243693, 0.9436582713354207, 0.7787297553592457, 0.7999949970084493, 0.5486028948885874, 0.6646679680692813, 0.6742533597828103, 0.8942318677906982, 0.6562855140337477, 0.6402566917235077, 0.5550788528498047, 0.7084857262687669, 0.7802491776337823, 0.7533430064147797, 0.8898191623977313, 0.5364222916830398, 0.8205882194610863, 0.7425371385610504, 0.5889396659666921, 0.5806735705521477, 0.8849993556388608, 0.7756572281749441, 0.9057019552256325, 0.6874375328881186, 0.5438107728891867, 0.5741850997206723, 0.7427088198060235, 0.7330100561556836, 0.9985012588914426, 0.9236091438175755, 0.9178988721338863, 0.5022030776956063, 0.9585982179844048, 0.6109630777351492, 0.5237471497711785, 0.8343892871514875, 0.637836038497125, 0.6655811425766447, 0.7829468923501097, 0.9056705189748956, 0.6828678961008053, 0.8844410096354484, 0.9815652754344235, 0.6421885556052513, 0.7351377556243872, 0.7283681728571489, 0.7661410324082616, 0.9519626928601681, 0.9154929306858235, 0.9176006315510346, 0.6994250121717995, 0.6482266093085751, 0.8812048992525059, 0.973979652736731, 0.7167603464859378, 0.8398387426792655, 0.6754984236651593, 0.5566988308711325, 0.5211293427043402, 0.6926355515377686, 0.8304849541181599, 0.9679233485307588, 0.6066657505963877, 0.6623549580443773, 0.8561882447972498, 0.5771384536334199, 0.6548594346325309, 0.8496737107939911, 0.6038831167294068, 0.5335748370217033, 0.5101937847390403, 0.662643061438934, 0.9783375726952654, 0.7780293398782188, 0.8562435033832426, 0.6853624794707254, 0.5271975582226087, 0.5399791795863131, 0.6351406331414964, 0.7978952584993421, 0.9716400386161512, 0.6819266252305667, 0.7248388746940218, 0.9911720615785509, 0.531861747124744, 0.9574673037972752, 0.7123514141592102, 0.7581817082942834, 0.5674194923573238, 0.8086012209629181, 0.5448065956841035, 0.8402922417438558, 0.7221214960000528, 0.7403156033534988, 0.5201989015637529, 0.6379521240137098, 0.7209705060588951, 0.8703041785770069, 0.6341805680623587, 0.6279189640301107, 0.7067052061470215, 0.5610156545156827, 0.8511836864386304, 0.7411094290064663, 0.7511491019380804, 0.5878867251721759, 0.5524451676567294, 0.5888850945434106, 0.5714400555008102, 0.7986580409723006, 0.769142830679862, 0.5881441311666251, 0.7270021795348565, 0.9716119377185439, 0.5634936581690693, 0.7876811183360504, 0.7695605144705544, 0.5975997585474662, 0.5515189626820547, 0.6645604709087252, 0.8190483209697409, 0.694675323273324, 0.806272905397289, 0.9267181580256114, 0.8617678661443271, 0.8944600414290086, 0.6117252987360022, 0.6480178443216311, 0.8464714081581834, 0.5749797510619958, 0.9514208806877542, 0.7326223280356955, 0.9562157726220657, 0.7840211662534671, 0.9235785991701586, 0.5672289534600156, 0.5341496400083584, 0.5866084228592071, 0.5635871423504057, 0.8553835956881868, 0.5501867809831342, 0.6247344375411592, 0.6119521753353635, 0.7854191266006767, 0.8298680277951864, 0.5527938615645803, 0.7419531682342801, 0.7611092768388263, 0.8030202446622279, 0.6167159612419795, 0.9440383449209712, 0.8604356416183834, 0.7237086633826633, 0.6949427102188692, 0.5107675907852827, 0.5666656709535418, 0.880476573184835, 0.8663299517138654, 0.8004169108963944, 0.5792496268994107, 0.9933857716852794, 0.6784164102913588, 0.6031352054591839, 0.5726154366748992, 0.7519417221468789, 0.6273751265254413, 0.9723098459090557, 0.7523976365032998, 0.8189395355556035, 0.5139170590555437, 0.7692514884558287, 0.53419169830211, 0.5938106534507139, 0.5157178758388454, 0.7723559070551754, 0.7272000541363697, 0.5403286873968904, 0.6717358426509494, 0.9069593196237893, 0.515572730192426, 0.9721340445549858, 0.8210118336637608, 0.5237230820067127, 0.6242132973216823, 0.8674841369461623, 0.5834017885033048, 0.9708252577681907, 0.809371781069671, 0.5784289885313919, 0.9212793554446723, 0.9874304922358403, 0.9808891764641441, 0.5529093953582698, 0.9017034482208854, 0.9768512157027722, 0.6220037532792957, 0.814205763926402, 0.87946475799896, 0.7967267422647613, 0.5313262487991739, 0.8254884179857764, 0.9495892706852911, 0.5379177570793716, 0.5038227552640218, 0.7060090408419922, 0.7970037110644124, 0.7109432781104437, 0.7193373220893537, 0.63407223767622, 0.5696132319268532, 0.9238914871216242, 0.8020925869871768, 0.6731194341976213, 0.9669594304005551, 0.8743746926824871, 0.7028128164191547, 0.998014560010074, 0.8643172676821507, 0.6098225044623493, 0.5917698612954541, 0.6403359889783511, 0.6023074722737167, 0.9759550481044973, 0.7653352044331336, 0.7625360531613568, 0.5366950349668635, 0.8560433690789648, 0.7991586454237729, 0.7830912545773283, 0.9597671906367888, 0.9685918875208712, 0.6253878878672189, 0.7602527183401292, 0.5009045212831043, 0.5855139973256825, 0.8035091669710062, 0.9127033334536376, 0.9813152355288023, 0.7424489629635221, 0.9736723143274131, 0.9347873902491577, 0.5028664079440064, 0.7965005589434715, 0.5080179356701933, 0.9996516810645727, 0.8536759853598048, 0.9693180820983228, 0.7960908092550822, 0.6569210660898276, 0.597735404531474, 0.8547945723132896, 0.6859709926843243, 0.5056486268266691, 0.6823579645672515, 0.8258484729346585, 0.857533765757162, 0.8937126494863712, 0.7989004841528056, 0.7533707329055577, 0.9917998592070435, 0.7322808162980072, 0.9711633179143195, 0.9089770861078021, 0.7789308800994132, 0.6229905294570213, 0.8689381334994076, 0.5335428497182566, 0.6474469650176566, 0.7030053954095179, 0.7057986089237049, 0.8028233637444582, 0.57628726591265, 0.9074159873390426, 0.985802942393682, 0.7543815145899658, 0.7404827602582778, 0.739231779912146, 0.7708680568345171, 0.5118953583829344, 0.6283186101151911, 0.5523677847775607, 0.9448690437407091, 0.8325035683081228, 0.5829461762057709, 0.9905088482636561, 0.7346866769034492, 0.5849236853579927, 0.9793019389190922, 0.5664767489958391, 0.6666580577601866, 0.7237222096708592, 0.6538805452748262, 0.6325444319946726, 0.6566920423849065, 0.9765239462094762, 0.7187578649895066, 0.5489911031750624, 0.8069823270653433, 0.9696862020527508, 0.5821428329642675, 0.5587969572630254, 0.9170549313344727, 0.5317924808740224, 0.5788778899865261, 0.6183631931915752, 0.6492288073336091, 0.8727821990626985, 0.6982246098455858, 0.8945309143524109, 0.8086212538359862, 0.5438359383720472, 0.6387492928144438, 0.9210275977235252, 0.6472697295798147, 0.8843106237312495, 0.5570845276840961, 0.6519722484120414, 0.520947685763296, 0.7037277713367109, 0.6147198398178443, 0.8887307736081171, 0.7170521432325663, 0.7989325233201522, 0.9799647892774692, 0.8167202993647735, 0.8967749959881366, 0.6081311415049855, 0.8467809809195711, 0.5429726919428592, 0.7978178622041943, 0.690208752812201, 0.9890210968801914, 0.886699282086908, 0.6186047598214518, 0.85592162472151, 0.7395598209093186, 0.5651086309393547, 0.8513028642405097, 0.9976994190673394, 0.8233037989040701, 0.7259689624882424, 0.8805881665339739, 0.7512880737381415, 0.5716245215680739, 0.8176506818573273, 0.9635592013874055, 0.5860422967885974, 0.9429168258403317, 0.7880488146118481, 0.8157589069523495, 0.716860506307126, 0.7960650516449916, 0.6445187581012584, 0.987434437598284, 0.9334930044241799, 0.7761573712922154, 0.6939937041733019, 0.5082988970357971, 0.5216366611733139, 0.7248183909081131, 0.6252045082977824, 0.9437963414268643, 0.8160814064417101, 0.8391648192952296, 0.9915855903928434, 0.9079142830923707, 0.6338792679318728, 0.5547929976328545, 0.8775743954885621, 0.8062757615205369, 0.9843149357920292, 0.6136081082700244, 0.6242877042148727, 0.6472691635979426, 0.999615066797867, 0.9909125484435242, 0.9167810041624895, 0.7065328873805904, 0.6281318840256256, 0.9476072423250241, 0.8309017982056357, 0.5239479798706805, 0.9723202954863726, 0.8810029695250812, 0.6185431413996021, 0.9362864119279641, 0.8621184851529474, 0.5916689735830302, 0.8981178611310159, 0.68461672722521, 0.7807150612368948, 0.9477604108125877, 0.7916751409034513, 0.5715441967052028, 0.9085909880454851, 0.5721129593654717, 0.9199717593762753, 0.6014804053847631, 0.840750674167822, 0.6918429820043204, 0.650639576110065, 0.8946787703184969, 0.9971743777015715, 0.5797627169239559, 0.897067332338152, 0.6373802085366227, 0.6419637988574847, 0.5631692957947034, 0.5044986793065029, 0.512133154490388, 0.5816640356568212, 0.5055926496083575, 0.9946123219640416, 0.5244639964340704, 0.9482717386248507, 0.7486035673059093, 0.7453335199440883, 0.8709726978142637, 0.5451334286240044, 0.9257131095172918, 0.867380329838608, 0.5727397604557751, 0.7397310729411031, 0.5180961615561879, 0.6495605372882898, 0.9055903450710352, 0.5095426904572564, 0.8277371039910661, 0.8147986003563381, 0.8091498100077061, 0.7062913296957252, 0.6762923068894453, 0.9829383056776959, 0.5273518201367153, 0.9481932136813725, 0.6619068770149736, 0.6163165210680592, 0.9019942429233196, 0.6684237143705667, 0.5864125634551693, 0.7394609457334249, 0.8921631453385358, 0.7897922897663541, 0.6979707478118311, 0.9208371981982444, 0.612244755248506, 0.590482385178995, 0.8687673028424687, 0.5673555590468493, 0.7476299698326466, 0.5275000479122804, 0.7587608710150203, 0.6018875175505939, 0.9228236998840447, 0.5777715235828146, 0.6353032687372379, 0.9269563094810025, 0.5837590847947989, 0.9049224717611692, 0.7573602220581369, 0.9549657889100767, 0.9755178651077732, 0.9745531141153296, 0.9162909836709439, 0.5561509060585463, 0.7214854275973945, 0.9104798777424954, 0.526233426151275, 0.8156830329741631, 0.7585177744165374, 0.9555111836225131, 0.9845943839946718, 0.5128388903662382, 0.9714494357460732, 0.5051250717508369, 0.8670666081503922, 0.9333211773290303, 0.5239778197725684, 0.5415114623770876, 0.8840547065984157, 0.9103999862449097, 0.9183992998781025, 0.8655639653769469, 0.5685536951185893, 0.7612316711995514, 0.8172801576702582, 0.5678101196392451, 0.5576037800554874, 0.652586313011885, 0.8221667283551841, 0.5020795456398116, 0.5456115894268796, 0.8191994677993218, 0.9641116232609165, 0.7813951685512246, 0.5989290961575422, 0.696994427518428, 0.7475149798799747, 0.9676900680060649, 0.8917876287343676, 0.9615144346891571, 0.6683957128916826, 0.8711764654580834, 0.98125991101969, 0.8238534089044278, 0.7212572931357252, 0.5741078858920003, 0.8953560669807309, 0.9044315887613565, 0.6207649002452518, 0.9086931955731111, 0.502906667028493, 0.6872468227242107, 0.790535315997966, 0.6609630850635481, 0.9209974552827793, 0.8287539392487837, 0.634482315908871, 0.6479843617030685, 0.7154927800988833, 0.6253249684736158, 0.7005019066097318, 0.8772685506700627, 0.6506525462138275, 0.9686895391192265, 0.5622068814306851, 0.6548126210827485, 0.565131786025163, 0.6470802344621113, 0.7937163424664081, 0.5810413326994308, 0.6971053362986361, 0.706102407026368, 0.8709399155252868, 0.9797265837861653, 0.6743254125976152, 0.8399872944459785, 0.6222008585688968, 0.8852849420061979, 0.9522231191704535, 0.7772042796023868, 0.7454489840208509, 0.6515649659657903, 0.8071249792211959, 0.9664304185709875, 0.7174861719741492, 0.6908462781515059, 0.7417712998815263, 0.839435340134739, 0.7232314652438354, 0.5616864746290893, 0.5041161211794518, 0.7327629815497041, 0.9798293931607942, 0.6658671502721021, 0.6641159712173688, 0.9378344313903695, 0.7086026729834592, 0.5582005701578954, 0.736969576866229, 0.6982644401556202, 0.5005961336223173, 0.9945391083400961, 0.6008630027755267, 0.7159213784529116, 0.6067626635683707, 0.7711081884837885, 0.6332759773059258, 0.9572501017891282, 0.7899721214836046, 0.7651870046868121, 0.8566207800251682, 0.7444152053715734, 0.8990738542587042, 0.6958168344847869, 0.8796439109297615, 0.9290632116226735, 0.5069779211627198, 0.805925409083498, 0.6179613240024705, 0.8922350459729265, 0.8409213229726626, 0.5729555773994011, 0.791200738749781, 0.7543485407536521, 0.959881952634682, 0.5816746022895628, 0.641746732554189, 0.8809063235773921, 0.7272483272840835, 0.5959732859330046, 0.7746462657690749, 0.8627588295292886, 0.5109765528413275, 0.8925693933179091, 0.5312437370272101, 0.7188714759647011, 0.6142651181804519, 0.8232531858778083, 0.6932432133865426, 0.5147391279866382, 0.6763815046490267, 0.6157338104770129, 0.7859757378560924, 0.64779026127073, 0.9895044684455829, 0.7901895872764604, 0.7476251211625504, 0.6161958025693117, 0.7324968082711674, 0.5265875944413558, 0.769646722064012, 0.9726220597149535, 0.8763365936218754, 0.5333313551466089, 0.8536764381669744, 0.900470281693441, 0.6362706763097795, 0.8372900391530141, 0.5869882828341536, 0.7886573202497162, 0.7584556068233699, 0.5724594933136624, 0.5115710350274122, 0.7882025476647716, 0.8775592950045488, 0.9389533525850705, 0.9275379575136139, 0.9419979965162192, 0.8558662644583555, 0.5349757925579308, 0.8488350106392667, 0.6971654857172542, 0.5611374718003386, 0.5299535761688638, 0.9385239182227324, 0.889087137543525, 0.8021239651360836, 0.6264606311594868, 0.8187356273855645, 0.6481509407579067, 0.6494578274398626, 0.508647317519145, 0.7019690144974879, 0.6943548614082699, 0.8806040766985328, 0.9463839534510993, 0.6454497379101464, 0.9892209940906128, 0.9649021437080056, 0.9467800981810368, 0.7892907435659233, 0.5096752613271539, 0.5027671708945063, 0.6914840678700711, 0.8890688037198937, 0.8019268563963675, 0.9780677543919065, 0.7261210573318779, 0.8440415968067956, 0.507004101781158, 0.6766353615408012, 0.6063230504804531, 0.7369057995000836, 0.6551540682108017, 0.6183630872258075, 0.9836602503187345, 0.813380943429709, 0.9129122961138444, 0.6332091786327663, 0.5252749333217728, 0.9661402745427509, 0.9184585146306543, 0.6369544722864124, 0.5493716022709259, 0.7000876656133029, 0.9455805832269835, 0.8377173481505611, 0.5585457796178485, 0.593774788696251, 0.5287046417408608, 0.9958960398241785, 0.5791773526763573, 0.9378757990132822, 0.9172891576375284, 0.8419097275654387, 0.8746909802147558, 0.918417279020621, 0.5406304746425901, 0.622581195594607, 0.6829730613322624, 0.8438776283552432, 0.5839420397258325, 0.661960674042939, 0.9179666180479349, 0.6395752069729662, 0.6698758000254317, 0.5037942908926316, 0.6415141498581778, 0.6523504764621421, 0.8876978764559953, 0.9661550526073068, 0.5572753495995493, 0.9525468056399687, 0.5569172249041434, 0.8534305172906208, 0.5933707452499197, 0.5854764512552946, 0.6276863571140865, 0.6485963276350339, 0.7971594291589833, 0.773963941457463, 0.7521855190125253, 0.7965184364835656, 0.6650031915959866, 0.8800087099912317, 0.8017173140206277, 0.8888248432866335, 0.7201794598347593, 0.8202941456661614, 0.9719993929562311, 0.7929078157464595, 0.5497569523329434, 0.8085851090007308, 0.9342612983360645, 0.5050825876738001, 0.7655528797165292, 0.6225644491777647, 0.50445667212866, 0.8384819193592559, 0.7727388169626799, 0.7584221671094564, 0.5809792850053777, 0.5448988647479077, 0.7699477152648739, 0.7420348356200598, 0.7354675480754841, 0.5825698925685908, 0.8692472408125531, 0.6745504331042362, 0.5158909789103876, 0.9254574144923197, 0.7219567772889137, 0.9022081469685683, 0.8884499506245055, 0.9465182552381358, 0.6845636982154863, 0.7877597826951175, 0.8907887766690373, 0.9363747902813739, 0.7254960789719163, 0.9602216579352649, 0.8733771613854737, 0.6660704305710252, 0.9855907275525424, 0.9017554672720611, 0.9641052379750394, 0.7290055648793847, 0.5379867980366766, 0.7601560814466124, 0.8178797573653767, 0.9727033344000995, 0.7619876536359693, 0.5883551421734986, 0.7978529080098306, 0.5433567553486237, 0.630149317138764, 0.9984143753087625, 0.577774766385796, 0.7853190180508602, 0.8465039617938208, 0.5631354456861283, 0.7065703456768799, 0.9080434086886471, 0.602334280019198, 0.6060002482112206, 0.7871092244012795, 0.871721131767297, 0.7285540901726235, 0.7869811046442625, 0.7574483123658158, 0.6362860879176524, 0.6603512579360373, 0.723025662319382, 0.5319208574022065, 0.788439072853349, 0.5463460521121137, 0.6988188798823123, 0.7854239474430127, 0.6938394783008656, 0.7464835047708115, 0.5852023913703623, 0.9395420668488661, 0.9966521489306136, 0.6661862205521438, 0.5765588316669661, 0.5358203125521531, 0.8235019690986196, 0.7937210288975918, 0.7318673090937104, 0.8722748265091956, 0.9502699408374569, 0.6264821462665688, 0.6798849987394157, 0.5687209214036519, 0.8603714898634003, 0.8715487002172241, 0.8504676113191146, 0.6072535569465443, 0.552663459705234, 0.8487872419887705, 0.5061656108996447, 0.8466844224248786, 0.9076954614907964, 0.8854837541250982, 0.9128591423528232, 0.9643823640779803, 0.8404493381541671, 0.8280581055645968, 0.9501373048422492, 0.7153521688086826, 0.7309708532305291, 0.5730253848878952, 0.826578307276995, 0.552679065480814, 0.6399393357032526, 0.9854181562452826, 0.6010317894352999, 0.5500549523333085, 0.7997013225404129, 0.610869867042669, 0.9427586557703171, 0.9027391853399857, 0.7978874350854565, 0.5117021907078431, 0.7433380387218869, 0.6093045736582052, 0.7778895502902723, 0.5774774246388259, 0.6880094544918143, 0.8453777177150623, 0.9047643876735052, 0.6890554688790329, 0.5606576381385442, 0.847580439437458, 0.5109649930356297, 0.9672986243797721, 0.9957516420555721, 0.8524411764125233, 0.956223453317921, 0.870332862348185, 0.670203499504868, 0.699641483665983, 0.9020442718030866, 0.7686511973559651, 0.6783565219555296, 0.9343583448974573, 0.9103121162788418, 0.799367026959287, 0.7626688558899318, 0.8300321928262179, 0.8347445464876659, 0.9069663685138315, 0.7996532300073593, 0.7338764664313744, 0.662333058644248, 0.722145926702865, 0.7051141181947428, 0.752733499253676, 0.6511416440075666, 0.8760401824587658, 0.5147061291194053, 0.6138990716598787, 0.9942592766886735, 0.8053923119162365, 0.8969240828337497, 0.7388192688413535, 0.6884748468763832, 0.5412991658886159, 0.7201767761419545, 0.6222739379028561, 0.7094048520069332, 0.8841307094140742, 0.6877193103538828, 0.5179040626361286, 0.8295882801738235, 0.8661002887890825, 0.8429803809087733, 0.8026581655591918, 0.8995929563387275, 0.8871460368268751, 0.5751192409825492, 0.9239113624211841, 0.8407283773282669, 0.7854743019682107, 0.8654102014578637, 0.7840200989330208, 0.5816732331259362, 0.644462553190279, 0.6228365935797271, 0.5517843492267036, 0.5511318705886727, 0.5976359396299156, 0.8924739559854016, 0.8356661947231039, 0.9819331986040873, 0.5275994749020881, 0.7710381651948331, 0.8486989999870309, 0.6897524078389885, 0.5717935886245038, 0.5266997503777893, 0.6352174972797435, 0.9566005739438153, 0.8161413852468372, 0.7692758804388486, 0.5500508765746749, 0.6820209954784724, 0.5347468838072185, 0.6100879951429541, 0.8514162835845817, 0.6641229697192765, 0.7179111172366215, 0.518168423298224, 0.6899038126917649, 0.7878757787877263, 0.6582836316270444, 0.9636787232365311, 0.5985999284934662, 0.925399880680748, 0.5398035110648096, 0.9837655871607711, 0.9818583928427784, 0.5874509911172499, 0.6761291472452358, 0.7317159531321995, 0.5969522326477921, 0.8381448325226912, 0.8453969941874486, 0.9462332602505574, 0.7001120024143045, 0.8671127092082438, 0.5373825913888446, 0.5747158124572869, 0.7098916509120352, 0.5367851109063986, 0.6476392325049314, 0.6015205989849168, 0.6703578045568389, 0.7969239963870459, 0.5869804360200546, 0.9807784082883022, 0.91521175012346, 0.8782373865989381, 0.6170912841664394, 0.6567667324067574, 0.5536523377747158, 0.5622178267366476, 0.7281892976356238, 0.656385090116977, 0.6725999318987312, 0.7558526149347038, 0.7002617297308399, 0.9369626986352078, 0.8453669422202457, 0.7215821569449709, 0.7478736720625656, 0.5064515338155674, 0.5340736589913675, 0.5710155259010486, 0.9304149123860457, 0.5514110217824675, 0.7922501077017039, 0.5365673414987209, 0.8852341846913416, 0.5996176520269845, 0.6040164562651091, 0.5700574208695895, 0.648464512299163, 0.7682898357453949, 0.6163560776402004, 0.9497220287590642, 0.8975554606985873, 0.9693075472167323, 0.5743743777558747, 0.9902152264400994, 0.629253862647855, 0.9816142957616311, 0.5492732243680474, 0.9719610017097007, 0.912942522952902, 0.9314270002936422, 0.7897009560166426, 0.9782609461896064, 0.5847636677139045, 0.68775471381736, 0.7589414781017885, 0.5562590455283518, 0.7711647276727311, 0.7545290019571222, 0.779872074692709, 0.8462484974197391, 0.555279283245579, 0.5585817391141519, 0.8271506829674575, 0.8311692420220821, 0.6372637688766998, 0.5477715003863358, 0.8017162050911624, 0.625509248196097, 0.9429861570340794, 0.9876526695921539, 0.5076457054594743, 0.5925488122896414, 0.6646917696784376, 0.9163099113822772, 0.7632163640178801, 0.7923036965052053, 0.9718587457569139, 0.5030459599997814, 0.603275716468042, 0.5183025901044063, 0.958622595027869, 0.6455891075347422, 0.9899677130241562, 0.8362975409341339, 0.8026639740894673, 0.8858434267746538, 0.6132590239653838, 0.9773559294812459, 0.7963077622788556, 0.6139340279815969, 0.7772105153161832, 0.6378471286878324, 0.6233313522323044, 0.9820669025977244, 0.7714576058890111, 0.7014458775047838, 0.7311594596155464, 0.8757215402636016, 0.9574389191768529, 0.6932678121236947, 0.5580649623823348, 0.8956509098378751, 0.7412058050278836, 0.5534290071434738, 0.8057194675054017, 0.6443593291274086, 0.6250910725862215, 0.6953846412051642, 0.707711924763019, 0.5808475726159568, 0.5004940168125901, 0.5934762556427533, 0.7104954816267212, 0.6425551011204438, 0.5211433747399202, 0.7428551406619628, 0.8992642585087613, 0.9971304849901994, 0.6905540553759979, 0.5722533639465248, 0.9400892817494501, 0.8187053109331093, 0.5993443722631248, 0.5425162545842892, 0.6984429059834621, 0.5431907267523683, 0.6982167620699669, 0.7001064021018437, 0.5258222901974414, 0.7452864384824582, 0.6610083739008068, 0.7131704037470968, 0.7382012709375658, 0.9388167958985072, 0.5098049336838689, 0.7043844976004574, 0.8218334368728961, 0.8423201254370225, 0.8632976318378092, 0.6160063639813509, 0.9999486488879643, 0.8312243199572641, 0.6461398497721784, 0.8085122401922809, 0.6768392683374845, 0.7465584883571356, 0.8567932792811332, 0.5776279272309086, 0.8670097424389045, 0.9222935554704893, 0.5065023882367347, 0.8363614000890877, 0.8329538936617547, 0.6721124069571972, 0.7234729465742694, 0.5137278225716373, 0.9322390403044027, 0.8787731421190803, 0.5372817928361973, 0.5439961695402733, 0.7874267099697683, 0.7803614013502662, 0.92287185550663, 0.9312634617398785, 0.7940265585461216, 0.6497946339900181, 0.8747810309521314, 0.5269518035664746, 0.8000569325348355, 0.9382283052552325, 0.9563219459350256, 0.530902001053756, 0.7214752024785178, 0.7486108937658517, 0.8535000807093027, 0.7833406786511088, 0.9458908173029552, 0.5831589190483519, 0.984051981684162, 0.6610930359849565, 0.5197082120557093, 0.52816092081421, 0.7256603140740836, 0.5731300633644625, 0.8516425720116243, 0.9199984273337749, 0.5256104769248813, 0.6624319699806751, 0.8222982832091947, 0.7861965052816215, 0.7384064199618519, 0.8316431593265403, 0.5443348346529617, 0.8208107639027724, 0.6666156966360168, 0.6633405306324849, 0.9885848947723714, 0.9439646867291411, 0.8861151534379003, 0.9329755697759047, 0.7437124320840018, 0.881487746844194, 0.7100166510808589, 0.7637462274142259, 0.6442429126008969, 0.6335446378823987, 0.5444438090450581, 0.8855381590025369, 0.6250659231987188, 0.6545601812100909, 0.7012709430193769, 0.7313928499538807, 0.782582841742125, 0.5979266822038549, 0.7217681587328536, 0.6546329893301799, 0.7333907438589832, 0.5090382197322478, 0.983916247627671, 0.7619342085621699, 0.5291144891154878, 0.8419226234846179, 0.7005537373097641, 0.6646977634287305, 0.5901345515605109, 0.7167507407454479, 0.8861366383658955, 0.6419478423582095, 0.9998322803648194, 0.9738718624261842, 0.867088833877711, 0.8412394742386518, 0.5463840679873844, 0.9884699263924295, 0.5996861875168246, 0.5612913538936324, 0.7338899101427077, 0.8651261032208715, 0.8027888384625947, 0.5709054869336323, 0.7989030009595297, 0.5099403090527046, 0.8744104711362188, 0.8410530696881262, 0.6684736876122555, 0.6251935032119491, 0.6246668748307644, 0.7150060568311569, 0.7273565373475083, 0.6971282617515406, 0.6698637405184446, 0.7466326892137272, 0.894048704291848, 0.6839611775827623, 0.68812085383748, 0.8325940699947304, 0.7985172654289814, 0.6365389972915723, 0.6748982276957218, 0.5990760018338731, 0.8441938703129561, 0.8676171932768888, 0.5975249748530616, 0.6070010629341902, 0.5301793473407346, 0.7967323794048318, 0.8583554754165691, 0.9190040967700577, 0.6776346716907169, 0.6600926046947826, 0.8212210997889273, 0.8645356184312042, 0.9925051017753108, 0.7282275130683405, 0.6897323262887205, 0.7536814334956683, 0.6789875323786323, 0.631610410399615, 0.9230880384589395, 0.980553508962351, 0.8108477703297055, 0.7034083086752425, 0.5923883240012899, 0.5528406963444847, 0.6083661560700517, 0.8011007773239398, 0.7137280480925567, 0.570019729307623, 0.6090799943108091, 0.9157524800613648, 0.9321190961884878, 0.7797271468643554, 0.9278979973026835, 0.8663035366260332, 0.7689978839805358, 0.8595080970989496, 0.8858455026349137, 0.5381231864967448, 0.6402767625654386, 0.698264496287562, 0.7786536503350805, 0.8065273901380101, 0.9392282688711608, 0.8715129734353481, 0.8830844672433715, 0.9362249460828267, 0.9632856017886552, 0.9366133185421206, 0.9305040329854957, 0.665694220884183, 0.998669891550622, 0.6542777538205832, 0.595890956734378, 0.7347296318946084, 0.9569220072287679, 0.662092769198418, 0.8773947997649558, 0.6787848790216584, 0.5859511656979033, 0.8332816313805417, 0.8811110260052915, 0.8902413016277602, 0.7877037913099038, 0.7872329451367455, 0.596021145252569, 0.9853775331334795, 0.5360362989284334, 0.8773314515600839, 0.5934867376473769, 0.7220561583582548, 0.5546929177648151, 0.7143192275463578, 0.8056734931639119, 0.5371926812482831, 0.5937923506485034, 0.5283869994302239, 0.5232469079542832, 0.9327883536254792, 0.6114354694326504, 0.5025487364105174, 0.6873735759821564, 0.5502035786967392, 0.6668033571272085, 0.8178838997246848, 0.9378153741438968, 0.6487089446664788, 0.9214597838562305, 0.8188723726813922, 0.7633612024486303, 0.9460153689719251, 0.8612627372860494, 0.8708559953388163, 0.9675090443655583, 0.8197063240394081, 0.7417883685959044, 0.8900103775573005, 0.56433163622047, 0.7816965919596836, 0.7339110084932114, 0.5516871293438449, 0.7774144322319534, 0.5330101471872671, 0.5153912666170826, 0.9287235562915406, 0.8930152479361002, 0.5804308233401978, 0.8419925475082273, 0.867542876477577, 0.893229116430633, 0.8297500858988944, 0.7022822782769476, 0.7656569416463428, 0.8669560476151699, 0.8757216248126888, 0.9556702154230561, 0.9592517179418378, 0.9533146270864922, 0.8894031524602256, 0.9318204312480372, 0.9581394238642281, 0.6880682665387995, 0.9688433444386375, 0.996879836766101, 0.931751046226531, 0.8802916439193218, 0.7917474347678173, 0.63646899959491, 0.9958714899324872, 0.8167342066255028, 0.781435991447172, 0.5549949095937028, 0.9615946338908214, 0.642802383585554, 0.6366481357322797, 0.9553837618701086, 0.5389631165174547, 0.9258179521945209, 0.6092861079314018, 0.6515743187916382, 0.8576625220901353, 0.9684043249221297, 0.710654290728078, 0.6475516051077037, 0.5500013419492223, 0.7229784992334332, 0.6297881079697756, 0.7010887817258314, 0.5492307705903329, 0.5277976463502814, 0.5134918872669016, 0.6537665279516001, 0.9096735568458411, 0.9054824793488372, 0.5327000779442629, 0.5506648574132782, 0.5490266315534909, 0.7000792220170549, 0.7127506658676501, 0.5423374008889353, 0.8392986268534031, 0.9990175116888992, 0.8445217127797618, 0.5445052133170374, 0.8966314878390185, 0.6782049007697697, 0.5951457390426258, 0.9232568900247952, 0.9332257520235123, 0.8088590357217491, 0.595644160034595, 0.8953939734275911, 0.9478837053624172, 0.5776477085345305, 0.9760511627873718, 0.5187866365448209, 0.7373860320103964, 0.6944668065428241, 0.6814078210672715, 0.9099839211768785, 0.8707978159546637, 0.7620702870078501, 0.5079385456748182, 0.7365022661052061, 0.6738815067669538, 0.9354108324992864, 0.6643766775398405, 0.8175951640135304, 0.850258200198625, 0.7538068977174226, 0.7340485483000326, 0.6320712642590398, 0.5064192453891722, 0.7260278347842686, 0.6343707828077318, 0.6502507657696887, 0.6927006961882414, 0.5015208452976756, 0.9681732226871125, 0.9234306396304965, 0.5439928572081677, 0.8998728334727668, 0.7990084294282754, 0.513853260610867, 0.5466678586041758, 0.7641130157890319, 0.8110891996757671, 0.5356977847806677, 0.8492939739147363, 0.7873818119160527, 0.5175749477332513, 0.6563976177296973, 0.9595345196066041, 0.699727595203198, 0.8935604747394343, 0.9205741540945809, 0.5172675093072863, 0.5138819925786334, 0.7824693423361053, 0.8235726642815209, 0.8934168085282059, 0.5928644452898979, 0.9679503303268355, 0.6544959788056388, 0.8254475486214727, 0.5754395045868865, 0.5173268027196387, 0.8351195566747869, 0.8320146140984787, 0.8428535637062786, 0.788078884349082, 0.9814935804600908, 0.8115598922281757, 0.9327755401923172, 0.9739339760509917, 0.6685755421364836, 0.9042186883790188, 0.8013136883690335, 0.6948683331327121, 0.7472039712466709, 0.8261979302183549, 0.5701477094088239, 0.609393497664372, 0.8655165997894027, 0.7916146241809937, 0.9108360598085504, 0.5483378915277028, 0.9225582059032199, 0.54642028338691, 0.8666444520610769, 0.8805988856663125, 0.5923304006432708, 0.551024488679859, 0.7322428773176924, 0.8606362334561849, 0.5152614179953362, 0.5806712290284615, 0.8093198217514233, 0.6024564370860107, 0.9815281702995071, 0.8365070449485958, 0.6236950359514992, 0.5336218173642133, 0.6348689614354608, 0.9949274758784542, 0.7086206628183709, 0.7719722527485058, 0.7442696521443714, 0.8937615805614294, 0.5655613775158377, 0.6293293462508553, 0.5038460095565511, 0.5736238427813138, 0.5012237150885612, 0.9498692594071918, 0.6802313513966476, 0.7409712467939622, 0.6633257492408489, 0.9412762116830651, 0.7096228056318583, 0.8071518206404136, 0.7594945534973513, 0.8633308454764828, 0.6374731635153996, 0.7388164211977336, 0.733119677071348, 0.8579757873585989, 0.9006836834521681, 0.9125493871373251, 0.7090166187223997, 0.5277678469349301, 0.7978949699749774, 0.7639567674716166, 0.7351646195840178, 0.6813200294359907, 0.9044970159668827, 0.9091951284020008, 0.7434131457945743, 0.6783695696934515, 0.6654799487881071, 0.9743498051161119, 0.9580556705862147, 0.7335541061028665, 0.5895422245132704, 0.9139563009393068, 0.7382978230454138, 0.7625983739163571, 0.5324151391500727, 0.6192754707739379, 0.5629466765796072, 0.8557510539135622, 0.8232951668170297, 0.8092260201733374, 0.9448329664677096, 0.6834878726570972, 0.6170058065953294, 0.5525666660581365, 0.9923719795469266, 0.5003227801052195, 0.6885527603778514, 0.5590447558466108, 0.9015012542187326, 0.6866430101944252, 0.770903169668188, 0.7866568674773594, 0.7284408296411433, 0.8064905439561676, 0.7926706184712446, 0.6492064048520949, 0.8344224061063836, 0.839916863847134, 0.8692911494217214, 0.6308397977923976, 0.519132633808941, 0.6437155590866768, 0.5146660174250179, 0.5239881461180056, 0.5902844821111152, 0.6932758514506612, 0.9837824799789093, 0.8096308648390702, 0.74755626248835, 0.8610035005851444, 0.5847444350321227, 0.9282769741435568, 0.674584884126979, 0.970198149687438, 0.9667743984070668, 0.7792068524951221, 0.8575568273374727, 0.7886880192941779, 0.9437685665961415, 0.5535748020617417, 0.9105125420460057, 0.5538545024351298, 0.760506078993245, 0.6733007802174509, 0.9788606257851182, 0.8138260923178606, 0.54025696993703, 0.7960774694357418, 0.7210369493419897, 0.7787501168084227, 0.6015959239209088, 0.7536429723191148, 0.820102350099922, 0.895133619792181, 0.5557700735842149, 0.6537461475885293, 0.6276803582953336, 0.7696347876664411, 0.8213285518692521, 0.5760977682092352, 0.911719170467986, 0.5732054691642766, 0.6554097978235593, 0.8350414662798169, 0.6296866824253545, 0.6006161337241718, 0.5979466392075677, 0.9440396450208386, 0.7492692633875107, 0.5467335023724871, 0.560694302188714, 0.9702857131367832, 0.7286954363437281, 0.6664796834602276, 0.9145111836104337, 0.6330319076394502, 0.755956752137446, 0.87103908231262, 0.6228652798215123, 0.5847046982299914, 0.6927645929127844, 0.8942727515719769, 0.5986309643604246, 0.8796256755553906, 0.8494431617575438, 0.6251872453549143, 0.6124868384115649, 0.6643510610086739, 0.9178485072965193, 0.513341434468597, 0.6565976292365197, 0.529095849688279, 0.8380415765018305, 0.8619231603784682, 0.6870542458431808, 0.5255858955135074, 0.5805131292388441, 0.919488014768844, 0.5417923105186351, 0.8929288804671734, 0.6834949014117585, 0.8173799709046421, 0.9697872374799255, 0.9868029260982624, 0.7352598940089421, 0.969211677470589, 0.9950361670027104, 0.699414339813103, 0.9197805799975179, 0.8129355794498111, 0.814165191602553, 0.7571471910274283, 0.5929934863294788, 0.7244607151089154, 0.9076137754583822, 0.9697986321216535, 0.7649004683108314, 0.9147021560415177, 0.5505305948251588, 0.6314578321730167, 0.9289396288870726, 0.9121532847783332, 0.8434868554004147, 0.5924270132800418, 0.791862580369599, 0.7058776896882102, 0.5463658096662918, 0.5441010717635013, 0.918923314807325, 0.7970054635522448, 0.938799337139151, 0.7761044499515546, 0.640711708915187, 0.9208246658869577, 0.9975464202099787, 0.9553254091250878, 0.9025400858892594, 0.8111146331966724, 0.6743723651140711, 0.8432488349765814, 0.8930691783017392, 0.8828993986120113, 0.8608314022827903, 0.8939689251705316, 0.6095347552711683, 0.6982572021120468, 0.9739466158280121, 0.9314551660976893, 0.9152858381903879, 0.5817894234716505, 0.8931558846762857, 0.987103974989016, 0.6914917993576508, 0.9465075820825841, 0.7590803623968532, 0.9062314868346992, 0.8064101230012146, 0.9856130398315766, 0.9093936170573859, 0.6512906742660913, 0.7924098748034563, 0.9972581951284197, 0.6406832015798066, 0.9048469562224921, 0.9580930215115422, 0.5500689759403607, 0.770320691063634, 0.5272888124371564, 0.9062952222499998, 0.8171475700780877, 0.925661703191633, 0.5855638558275675, 0.5447476072363453, 0.9086514726434523, 0.6204755024531396, 0.7858190073042135, 0.5911152488433593, 0.8729083653255243, 0.5600019410760388, 0.6562935756513222, 0.5681120458429929, 0.9669220558389511, 0.5285690475214685, 0.5199594536576158, 0.5655485216412007, 0.6721650390220614, 0.7035796692329317, 0.6863737872400137, 0.8809581097172455, 0.9235450881722941, 0.7256265465722037, 0.6125117659399044, 0.7488899851266919, 0.7642738004055192, 0.9248301659688435, 0.78148865016004, 0.9054258399013302, 0.6548812062215539, 0.9446383532868329, 0.6437253578975547, 0.767951088335803, 0.5882438422584848, 0.6994853545109465, 0.6894979214251358, 0.5645239931868229, 0.6813356098943217, 0.7697715832850698, 0.5498256036785939, 0.8612763023094827, 0.8095369336915595, 0.5893347305528562, 0.7621203630994917, 0.7423276976054649, 0.9666011718697363, 0.9604950437609713, 0.8478885060260573, 0.7294394361057248, 0.5340746612312028, 0.8581250834010321, 0.5959315150147133, 0.9807992069592755, 0.9432336215645154, 0.9532955027994818, 0.9414721933764905, 0.81680654626763, 0.641126170922085, 0.8658643193161183, 0.6405273568276566, 0.9304660607676073, 0.872214541412191, 0.9566367886843996, 0.6704892919069386, 0.717997171573096, 0.7761682718791885, 0.7827068986982462, 0.6926202794641774, 0.6899183596867524, 0.8671162473666256, 0.9072886300359525, 0.9654770429312673, 0.5950975836698638, 0.6859192540117731, 0.8698492311527481, 0.5600475047325509, 0.9805114464975482, 0.7832670041594583, 0.742543407981131, 0.8262791133840243, 0.8792837505256529, 0.6518454675163461, 0.5084253170094948, 0.9533830005748812, 0.7004231192565509, 0.5642885148753201, 0.8842740130908646, 0.7002193919917179, 0.701459101804516, 0.6799991975640802, 0.9071985544417843, 0.8275773341186577, 0.5539727225138376, 0.7528563419960825, 0.8273557698168721, 0.6836468052496361, 0.5818810138103776, 0.7064415477105734, 0.7708627757973475, 0.8441319617889761, 0.9574327460139649, 0.6159826644104723, 0.9385320703136196, 0.5167449855559607, 0.738325043925644, 0.6326670127188236, 0.9888645714003469, 0.9461819177348563, 0.6269076796729456, 0.9724864060694787, 0.5252138534589065, 0.9299880756021909, 0.8002794001503964, 0.6528218423564243, 0.9539630897945555, 0.533144968018161, 0.5117841109018757, 0.9718162402604649, 0.7328695577885544, 0.7485672809035429, 0.6817972815116168, 0.8450125221845781, 0.9388209784998685, 0.5423524474178651, 0.7510404847880693, 0.9069355891989671, 0.7310515680302004, 0.7656545634949767, 0.6444428346998166, 0.6409463231951491, 0.7267302768383481, 0.9886511784968088, 0.8631766780132144, 0.9835270223689303, 0.6197635553904309, 0.5144065177977764, 0.7002618849851718, 0.6502774331915253, 0.8840000669589324, 0.8444705743911141, 0.7812221147303979, 0.8598801636810341, 0.691407495807258, 0.5601389941954652, 0.611223480517164, 0.8481255304431773, 0.6017741875368441, 0.5549403867867904, 0.8790340539594721, 0.9164190792336209, 0.5672823814856274, 0.6018796669752134, 0.6806812026129072, 0.5960084741718996, 0.5561741519639318, 0.6895961215888593, 0.6419512680118489, 0.6393181148057211, 0.9481258907822239, 0.5632328482388541, 0.5006455367445449, 0.5381104522491204, 0.9251573618852751, 0.5061165724937908, 0.529231371739226, 0.7095843678386333, 0.6167839059729615, 0.645841387856254, 0.7008633083826589, 0.6390003107486435, 0.9765045843982179, 0.6666688090439482, 0.5767549908309717, 0.8362895569662376, 0.9044282567442343, 0.8024243590338669, 0.9726780849785527, 0.6402086017944917, 0.7674168162250213, 0.5863571109422023, 0.7350999569723233, 0.8381103167008099, 0.8322950044988299, 0.9514227395971391, 0.8035086446980659, 0.9827372001190722, 0.7502665211080879, 0.738643889752264, 0.785187729994639, 0.7321453984669619, 0.8036359748941899, 0.8790698500499596, 0.7759412347845144, 0.7196557406652226, 0.7361035206578943, 0.8594742681880454, 0.6528249248263078, 0.5820061100119399, 0.8531256329378683, 0.9685659626264481, 0.9177825515770198, 0.8212853938663467, 0.5983850077644317, 0.7217947011581689, 0.64567209592046, 0.5817483208031327, 0.9821502798398538, 0.6230572870109077, 0.6079282011089808, 0.9750765381610285, 0.9129718535899731, 0.7913914738854305, 0.8405449090409562, 0.7404567537074267, 0.9701633563262774, 0.9895042511631481, 0.584327852382238, 0.630472916126575, 0.6473678440247705, 0.8342681328991636, 0.926495717202684, 0.872222971677519, 0.6637488070795527, 0.8633992602748186, 0.8738046443913476, 0.6136113542374093, 0.8808369824080199, 0.856129730354732, 0.7893487464120444, 0.9377628396336, 0.7314612782222834, 0.7258414367359325, 0.8907475559896679, 0.9679052572540561, 0.7513179274014902, 0.6914155619250455, 0.8607380454469779, 0.5409843068937265, 0.5710885665376735, 0.5800059013170111, 0.6069677993925837, 0.5585558136443547, 0.9357710251478982, 0.9517317152588982, 0.9427703042478796, 0.63991405188745, 0.7293974330449052, 0.8199365047551264, 0.6165297584380105, 0.5224911556197257, 0.8396089602873984, 0.6251629068607168, 0.8013833337055034, 0.7070048293848259, 0.5821472387248661, 0.859476986077498, 0.5050097252579537, 0.9076997568621297, 0.830892528745268, 0.6059123012728098, 0.92507948467636, 0.6803836988028202, 0.7616453544303693, 0.6085269524459982, 0.7471397443288255, 0.730861552614882, 0.7926968101293931, 0.7542634652115521, 0.8737330558640193, 0.5843953541663751, 0.5646987666326507, 0.9743510089255445, 0.9338631976872813, 0.9794318209895723, 0.7194826821566875, 0.7683767871627755, 0.5244721110952304, 0.9432307671766366, 0.6999323036004719, 0.5020013119165534, 0.9439737046678862, 0.5550588156631682, 0.5465785347753221, 0.87226534150313, 0.6328700882970738, 0.6771553324447355, 0.7848757397087941, 0.8724692127538294, 0.6196185607127855, 0.5313217213828694, 0.8535576910042207, 0.5182667908220918, 0.5522947124468618, 0.5634231788654975, 0.6396412977308268, 0.9868911191397378, 0.7512777215978976, 0.593785652125677, 0.6916922203113246, 0.6379991251349236, 0.8853768322124377, 0.9748874401279802, 0.5956439966787848, 0.6591121436230398, 0.6678747477929285, 0.5166547606355129, 0.8014985760579789, 0.5333440274889281, 0.6008036525663835, 0.599508941206073, 0.6922975970900038, 0.717851293821085, 0.9233688522623578, 0.7274869816930908, 0.6655189975657485, 0.6097078538644147, 0.7193485803637488, 0.787594391115191, 0.7884064892886959, 0.9610872275191369, 0.6233352549746314, 0.7240490016462884, 0.7593081692839974, 0.9016626007153623, 0.6904914462106694, 0.5241012894412493, 0.9302264969938452, 0.5980024467318248, 0.8730897980785517, 0.7255449011622184, 0.5827774221135658, 0.7077816632672356, 0.5151327582251195, 0.8856490849992271, 0.7535645688259762, 0.7101382920909025, 0.5691551345318507, 0.6511344822152458, 0.6621314401398697, 0.7802440069544996, 0.912345973284532, 0.7609155311713586, 0.9643655240293258, 0.7184016433609107, 0.936394513120884, 0.5147976831377511, 0.7592537481967404, 0.8579525284893346, 0.6520375463620153, 0.9315554253912672, 0.5810967456473533, 0.7261175868781231, 0.5457791964170937, 0.7222325125521651, 0.9577071604365006, 0.5286721841054123, 0.926060573145018, 0.50317306387805, 0.9625491667142454, 0.6628861838824507, 0.897962462086015, 0.7560126900950721, 0.791076660802972, 0.5864625254663905, 0.6859053449943217, 0.5018890162331484, 0.5895260753829781, 0.6487972448973898, 0.9701530362653644, 0.985378112810865, 0.5693579794616039, 0.512819022978029, 0.626374815540965, 0.5497164394260362, 0.5363682735595897, 0.7965922456369237, 0.7406337231671613, 0.5720100246418289, 0.5312625359587642, 0.5156766628983352, 0.9122316220315185, 0.9657523575983322, 0.7729080852563067, 0.8610377530284374, 0.6365047948186118, 0.8462425813322209, 0.7455611677773779, 0.9379480588838597, 0.894204927683407, 0.6172193630905727, 0.932261227856173, 0.6576828420265414, 0.8926176719424717, 0.6678152556065783, 0.8418322668078895, 0.8506471672537176, 0.8759226250810606, 0.7183387100699267, 0.8288009719497835, 0.9967449340940534, 0.5699371778268006, 0.6642814787016629, 0.8355312055672196, 0.6414745951533698, 0.5051769069761254, 0.7242800320641268, 0.6047035003485897, 0.7328899661174588, 0.5415537800947887, 0.8610488652937649, 0.9933367621660351, 0.7773106742330105, 0.7416907301081226, 0.5248472644045409, 0.9714558429485621, 0.984205087653915, 0.5260590112355084, 0.9257462262637661, 0.5497066537773974, 0.6576599228525, 0.9197969927294366, 0.9680123394778499, 0.5424512916952893, 0.9402307301765069, 0.80957915703852, 0.8683728941503737, 0.9480415885398165, 0.562310798205919, 0.5258225076165081, 0.7597056871526354, 0.927227878777313, 0.8118582572784002, 0.8107143891991353, 0.8249397935366976, 0.9125955363006525, 0.7287413355115153, 0.7330447175679387, 0.9509190754122506, 0.5343985504925586, 0.9506496547536907, 0.9822466553167633, 0.9651428388623604, 0.7510393537193795, 0.9686832328637014, 0.8144149096312541, 0.781655869104545, 0.6283863208092471, 0.8987289749345189, 0.6316181357511678, 0.7036705916670417, 0.8715192604957092, 0.922496128558733, 0.9317987652622137, 0.5772046977956173, 0.9495874063374672, 0.9486562055480822, 0.5265868635666139, 0.9418523146241468, 0.5885747138241216, 0.8101296178597698, 0.8279485503735515, 0.9682661023502128, 0.5344903000310683, 0.790548606638616, 0.8667173716949106, 0.9073122031884908, 0.9825404883147915, 0.8138794382969486, 0.8996439630370144, 0.7532948860539221, 0.5504947526567945, 0.8092545342325616, 0.5421822289671039, 0.6016385645261288, 0.605236437754174, 0.5692170287003335, 0.7311835739153906, 0.7429258610150633, 0.5355837164438785, 0.7035878728664149, 0.7751959511334712, 0.8676726296843509, 0.8837146067749279, 0.9991910308640781, 0.6661334310531983, 0.5470827060860349, 0.5800928416686881, 0.5218038985103555, 0.7518586571445921, 0.6232380209543444, 0.5766590310677282, 0.8595775783507851, 0.8101765479889695, 0.7312204674467124, 0.823351249124781, 0.5679220283344544, 0.920954141045562, 0.9473841872166234, 0.8376504616223039, 0.5241139956278943, 0.6951720911949824, 0.8044229116299613, 0.8586096272897528, 0.9690784003286409, 0.5245997291678424, 0.7367846823528206, 0.9877561567931421, 0.6086780831187322, 0.7534633298139188, 0.9055663720740768, 0.6343808409006512, 0.683344275486901, 0.683789370384091, 0.7755412621504156, 0.8015851481657361, 0.8223722077174954, 0.8758987629033843, 0.6692697334012783, 0.7281683140052725, 0.76213810583974, 0.833166365544993, 0.7465630807996813, 0.5139231908515867, 0.5734736062734755, 0.8535483381440033, 0.6420245819381067, 0.750155800452469, 0.9062041691474558, 0.9674190080784261, 0.5254383887980458, 0.5751806870228664, 0.8895319737514759, 0.8760771230160067, 0.7457214554093459, 0.6397337380560904, 0.9579977381054007, 0.6240738731520636, 0.616158690742469, 0.8163898060208404, 0.8937327064993035, 0.5091954364899943, 0.877525025224108, 0.8141569377966014, 0.9349546348051673, 0.6863067823255009, 0.9471221171804306, 0.6491370181463937, 0.754437316380961, 0.7386834144493445, 0.5407741215395182, 0.9644149921585667, 0.6608779903245615, 0.8676580155350279, 0.8669727745160873, 0.6772336363718803, 0.5371080934754282, 0.7532203320023354, 0.8523794578873867, 0.778287712556617, 0.7975021317997448, 0.6958263527424929, 0.8412322702738357, 0.5904089440309164, 0.9296282363673845, 0.8156995219120776, 0.8294125518739144, 0.9337773337118702, 0.9476027192098888, 0.9383420087292513, 0.9727836052078656, 0.8613921483893965, 0.9914704126081073, 0.7941388693143681, 0.9620016437199168, 0.7815652709372428, 0.8309562013805565, 0.6230203404975863, 0.8450321618322099, 0.7974464450242909, 0.5038632289027423, 0.500725124972971, 0.7523087809947214, 0.9997667117865479, 0.8743458538406208, 0.9869010015708592, 0.7141399790974072, 0.8194467238058443, 0.8396964066300092, 0.5891240163773053, 0.8072037362412521, 0.8058406292339683, 0.9917408635573032, 0.9472483410986459, 0.7162725751652632, 0.9079743322204059, 0.6758982676875245, 0.6972182815016461, 0.6312849548124615, 0.8117891837037217, 0.7016986573327033, 0.9646352350771203, 0.5742783340054808, 0.5267271006864394, 0.8519261784151901, 0.7913783931407419, 0.8213493549848401, 0.6880962869983255, 0.653697348495974, 0.8781481868926364, 0.7170256315078872, 0.654006357596632, 0.5497669916021597, 0.9228870535465798, 0.6262836144327483, 0.9699334635890722, 0.9153122849369006, 0.6190934546584161, 0.9210024210588579, 0.9048689160704119, 0.8670803911369888, 0.5434730946041644, 0.6130392912969902, 0.5775130857630313, 0.7904762149063256, 0.8412314805457156, 0.9201968003118826, 0.8499814524632435, 0.5932332610445743, 0.5789059770958849, 0.7606127732604769, 0.8158514834012731, 0.9718227649037657, 0.5885440951535288, 0.6199595718461366, 0.8490379341908061, 0.7717993475298062, 0.6806817820453925, 0.9870572568903646, 0.5661833484889476, 0.6370930814158646, 0.6796041890385748, 0.5761676718634556, 0.9492986179021669, 0.913330599273118, 0.5992274396245156, 0.5306083197826319, 0.5243115937836449, 0.5441141646312108, 0.5081049925499987, 0.7417027572025071, 0.6249962585198217, 0.5833277003979711, 0.7971055780563272, 0.9917736053869832, 0.7053599782531069, 0.666294023988302, 0.9344537701441773, 0.5884596859448046, 0.8678232734600864, 0.8321183846838205, 0.9160083946934996, 0.9649494922634769, 0.9093897065337637, 0.9827138763419438, 0.9378806507196532, 0.8821992240152517, 0.5399328206063556, 0.9267644424959418, 0.6262997098423753, 0.7319302999996972, 0.6752950048841855, 0.5733435943054896, 0.6185253522438594, 0.8191118558428991, 0.8007111149025229, 0.9319865845696309, 0.6551984350161336, 0.5784641831946882, 0.6533241067297322, 0.992471299889125, 0.6358582445369383, 0.6649083438464076, 0.8468577579836563, 0.7544974956375645, 0.6568316987923499, 0.5333592034723378, 0.9715884862222494, 0.8896052618182024, 0.8973064114225118, 0.7557307776870306, 0.7237949299627644, 0.6382384453396862, 0.8586356327255686, 0.5108373652139331, 0.8463078931066925, 0.5176310375112567, 0.7287926241577667, 0.9573815117716349, 0.5108534234145927, 0.669468058893753, 0.6246579532369367, 0.895298174995335, 0.7227360769428649, 0.6971790654157113, 0.7567578563895039, 0.9984046620418707, 0.5998524597366459, 0.7114059098005097, 0.8030951370715032, 0.7635984277589503, 0.669884048339711, 0.7625808198907719, 0.6176516193417164, 0.5896890272025765, 0.9940853992274697, 0.5661217184627141, 0.6941263657443234, 0.9199290326844816, 0.7453539776108743, 0.5516610350721682, 0.9949779990077059, 0.5473316823124321, 0.9976730762399225, 0.9688788109091954, 0.7267131752373268, 0.5246308776484976, 0.8378654104366057, 0.7075671429024486, 0.9146381055020576, 0.5152176630144593, 0.715641902901538, 0.6685067581498304, 0.9481320570794147, 0.5903047877754557, 0.6616820935516182, 0.9220483619312652, 0.9811307589063208, 0.5084489965067795, 0.9709809509103919, 0.7002681431652853, 0.8428447395957159, 0.5315252486144193, 0.7759280072065464, 0.8001624414467301, 0.9361453467790217, 0.9783803466266154, 0.9452036009126092, 0.8496209561469508, 0.9852468504105886, 0.6563810718735452, 0.6535733720668614, 0.537619910676258, 0.6937189671365511, 0.9257207196463983, 0.9619362626379973, 0.9694653655783827, 0.700232552147799, 0.8895227720850544, 0.8759661829891181, 0.8178160655632872, 0.8072130226548551, 0.6956406150614103, 0.7933554990249574, 0.8150650077848436, 0.7978807336794812, 0.7037497786063556, 0.6295074792407003, 0.8617718127938688, 0.9181614367311111, 0.6854514041138586, 0.9256653533278238, 0.7206244391990757, 0.6530434418619417, 0.5863021885060355, 0.5416740724300937, 0.8894319113284086, 0.6884374606685095, 0.7916501455868322, 0.8266952940761727, 0.9687825587202257, 0.6078519468820239, 0.7923855824356982, 0.6695546384119816, 0.8592296532993131, 0.6762444616791754, 0.9659742535807845, 0.7504997342584023, 0.6975136138315761, 0.815352004340463, 0.6690426635620663, 0.7055644234544229, 0.9776915258413217, 0.7413080977351403, 0.9525155140991495, 0.5200113960092443, 0.7968910325715033, 0.7573679633076387, 0.6531741612608557, 0.6508819349559893, 0.864920993646594, 0.5591930983638895, 0.7913588250475989, 0.8709672828305846, 0.6003387810266445, 0.6765812568553697, 0.9679362582557947, 0.6701787031446151, 0.7575199171683948, 0.8585626350092422, 0.7357056142897069, 0.6399428090795354, 0.597336937011935, 0.5233551805384657, 0.5289893031676683, 0.8531834905147895, 0.7553119807343156, 0.5062028075173097, 0.6433580827689698, 0.6830890158982321, 0.96994955922975, 0.8352471122899321, 0.5026482806223509, 0.6114855003909135, 0.651412323012829, 0.5371968997119034, 0.9695296077112271, 0.8724097453430295, 0.9711478631461585, 0.9437810247822462, 0.9382883718615709, 0.7247948453411126, 0.7031188825974166, 0.5048415273081354, 0.6045218976331532, 0.5819335781520849, 0.9487484334963454, 0.5474567318759413, 0.5726715564231373, 0.9086643668411525, 0.9054518897982948, 0.6503119152799557, 0.6571064546853582, 0.9946693422386054, 0.8090727692540445, 0.9809416472750792, 0.9309979042490952, 0.9971370590932537, 0.7495654691308142, 0.7463057184487037, 0.6679997541404468, 0.600649102053108, 0.7348436776271041, 0.9467055945229763, 0.7526894952150476, 0.6329961405241522, 0.8689208478202652, 0.9292301705421624, 0.9368571257169656, 0.5020517439104341, 0.8669621862789461, 0.8593010542560798, 0.831773713234536, 0.7379856694951105, 0.8922782221811782, 0.873022460312904, 0.9517362967488717, 0.625252050713636, 0.7228790590459182, 0.8820525165356683, 0.9326980803924896, 0.5684858364817824, 0.8919143130132894, 0.7641598795013453, 0.8362000992627407, 0.6264354751140937, 0.8848084115159516, 0.562988875228593, 0.627174689247198, 0.6153670105676884, 0.8390107932533666, 0.5104652335601304, 0.7944941962861809, 0.7069048680204233, 0.6670900598795835, 0.8576275032139864, 0.8274918448256472, 0.6297372001842488, 0.9981813389975258, 0.5190249809484336, 0.6545428084800953, 0.6469142281484932, 0.786911774698267, 0.5804185859925302, 0.8184051511623635, 0.8806746811466835, 0.6842863320966113, 0.9075654118399757, 0.8014957534457166, 0.7954503307803729, 0.5367578464336282, 0.7373112806030273, 0.7730080852720121, 0.9093139046107628, 0.8328739351231811, 0.6952999114351676, 0.7124587728947449, 0.6683023385529241, 0.8983878305504637, 0.5226812140438186, 0.7948006128847634, 0.64751307229907, 0.6576316148679099, 0.8868625122559051, 0.9397163292142947, 0.580403841302267, 0.6085632465949313, 0.5361160736790365, 0.8471496022699059, 0.6703843641462928, 0.8918593257102783, 0.933179130536668, 0.8268550845685112, 0.5591952486080083, 0.8572553985197318, 0.6871628110484485, 0.5838034312616477, 0.9044683337055373, 0.6074815302470936, 0.5496410585503628, 0.8819048927611102, 0.8145856076379157, 0.5327938335987437, 0.5899825328763018, 0.5947870459277969, 0.560336602921668, 0.5227479742632731, 0.8123989690435759, 0.8556754995872713, 0.5832112899564016, 0.617544854767049, 0.8369837653034932, 0.6820440665681293, 0.6946224380650955, 0.7597298278806741, 0.7671592272215969, 0.7828195326603844, 0.9932866455538535, 0.8974266505000725, 0.6023257904875504, 0.9430157101589082, 0.9690682916229405, 0.8582378686928573, 0.5387046010757615, 0.9450209461893143, 0.650543181171708, 0.9063490301701089, 0.8727226644709436, 0.564869416754888, 0.6109608379327993, 0.8247568103470322, 0.6392057175323844, 0.6778984861397068, 0.9815348639194466, 0.6904177093013193, 0.537068017485888, 0.5358663151420486, 0.8431028004097554, 0.6681936350857052, 0.7144919205022642, 0.7417403265891779, 0.5798235322973602, 0.645299865773114, 0.6621399164249595, 0.5487327129422439, 0.5653789545038379, 0.8697821090144425, 0.8388390774303592, 0.7578499005804755, 0.8358463186819082, 0.5589791318701421, 0.7398975637059984, 0.7908188582802369, 0.5629872683636952, 0.970772918913644, 0.5172815706660132, 0.779376429885738, 0.8942291009840642, 0.8067374859476826, 0.8184608711507042, 0.8147410535698848, 0.8500058938042891, 0.7355749671166631, 0.6583704087786527, 0.6839344749913804, 0.683244863149671, 0.5535313326570717, 0.6144191709581879, 0.9887097528461641, 0.6923302528520463, 0.6322605266572023, 0.8218680679884616, 0.9808963344800854, 0.9820209855770282, 0.8244009976502056, 0.7384364207868617, 0.6444207220406568, 0.7026126548832476, 0.6625129396598203, 0.9690281681576575, 0.5865442192086572, 0.992197820463919, 0.7047688065716586, 0.5033800585453592, 0.54283321033357, 0.9841313988358716, 0.5629365910890138, 0.9516893277722027, 0.8481323890922805, 0.5366593711495923, 0.653126010570956, 0.6522535765589286, 0.8802788567319355, 0.719489106226199, 0.5926237489724455, 0.8098191329873847, 0.5999700875284355, 0.5073396844318185, 0.5781683020937564, 0.5104799641012835, 0.9865705346121932, 0.6175980586128933, 0.8889066669154022, 0.8629025681909399, 0.9841193030734493, 0.8156586840081465, 0.8397708219716697, 0.5293088446797994, 0.6700531597913041, 0.7829736791549002, 0.5371100567678316, 0.9096744531510745, 0.5293111558918866, 0.5726498658524493, 0.8037091374743137, 0.5667111792682419, 0.9114627343551567, 0.6454597822514637, 0.9124913273387167, 0.8622852640163625, 0.8629129322426259, 0.5714562024438664, 0.8949199161762899, 0.7864834528166721, 0.5200873379299122, 0.8800713809119096, 0.7621281338964185, 0.9801764095132564, 0.5210494270618664, 0.6158776545555322, 0.7305790009733701, 0.5968709696954424, 0.9620658932255189, 0.8313229766792617, 0.5268151672849153, 0.9990127875262307, 0.918648883878926, 0.6539250513803633, 0.5191136984169789, 0.6366333876814054, 0.8426261879897357, 0.6202612223291709, 0.6152499505837548, 0.79276953719727, 0.7021616581820581, 0.5627221129903515, 0.6544456061837017, 0.5424430588191588, 0.7700461880980072, 0.5702678767698177, 0.6879354025159208, 0.6918808703258819, 0.7472944375129573, 0.7718250279056705, 0.6693063195745201, 0.6227987909498462, 0.6214644910121593, 0.7061705115764827, 0.7014750658493231, 0.917357532068769, 0.5360582702677512, 0.8883329372553816, 0.7726219902863449, 0.8169352479531424, 0.8469768458637131, 0.7060819131573836, 0.6746226588038884, 0.9599276842296749, 0.7399119598813872, 0.7460431045424263, 0.9279507973889163, 0.5425891791374176, 0.9391125152315638, 0.9949224575095905, 0.7961552465052535, 0.6511222455396012, 0.9128977078474894, 0.9718281240583873, 0.7330828125209982, 0.6830807857073826, 0.6535111850037019, 0.946575584453256, 0.7425228713828569, 0.6557634865916859, 0.9288117052233152, 0.9828316289231089, 0.7312636131937555, 0.8884427794283472, 0.7468956553602539, 0.7813968031068477, 0.5542298228252293, 0.560317174753274, 0.9261467931346954, 0.6210363308280237, 0.5518224193603858, 0.6089023210424633, 0.8011089225658994, 0.8014870385996322, 0.8763477481834403, 0.6280089469919126, 0.7104010584264435, 0.9765766184113436, 0.8978216410219966, 0.566560524143394, 0.5868113114358151, 0.8055432872475657, 0.843668709940951, 0.6843322918581307, 0.9840767608369848, 0.7992367884111009, 0.554707468708806, 0.977601015054611, 0.6341049358871903, 0.5431095250481686, 0.725402484927285, 0.6253322718377323, 0.661793818058136, 0.9817736876187144, 0.797271460390874, 0.8059221738601737, 0.811082238566114, 0.7148295905431303, 0.9624538917683665, 0.5904392815184845, 0.5528553842560657, 0.6227301674532224, 0.6121559795149967, 0.9816826515008781, 0.8679586887378912, 0.5028341383086119, 0.5683562956137385, 0.65669629994765, 0.86251444638883, 0.822946324442744, 0.9921502528398038, 0.8708857769557532, 0.8094011123542885, 0.9229257038142356, 0.6231147469586934, 0.5030648456282598, 0.6188707881951485, 0.8588446248633281, 0.5459442940833767, 0.619777857600105, 0.9704416320389557, 0.6469311229471602, 0.7592076122050548, 0.8245548172155368, 0.8155051868882586, 0.5507196084275637, 0.6925439648182362, 0.6146576635105991, 0.7334289648115444, 0.9569507524154218, 0.8028266980537301, 0.5521640732810038, 0.772452857106767, 0.898668612591592, 0.7582939300746461, 0.8748153873102535, 0.5518995752203981, 0.6999911675127535, 0.8915288185679247, 0.7421340525229462, 0.8836012137035603, 0.6318396370175887, 0.8445291325626203, 0.5384177953732576, 0.8159391069892826, 0.7418529868534982, 0.9210822800520835, 0.6274011924909803, 0.5446509926991673, 0.8603006791129582, 0.5805218028073335, 0.6057944700972571, 0.8965670756665933, 0.9849146429627655, 0.8667654882224352, 0.9166269248739174, 0.8531172725887115, 0.8786584856286886, 0.833617309040017, 0.5781860052253996, 0.8017036010213267, 0.8629466429300818, 0.8653003373957072, 0.6361279893365077, 0.5373067046759815, 0.5562977091198293, 0.5679627743098975, 0.905114774817906, 0.5280203042659666, 0.9652410828169431, 0.5360402796770306, 0.8527650343531454, 0.9559320389399648, 0.8217996004247279, 0.5097877741731442, 0.6330757807508767, 0.6829709121743129, 0.9661175288069641, 0.5938101105444473, 0.8127041208589558, 0.9489348102745871, 0.5921113561678415, 0.6053022814037583, 0.8640917677325116, 0.9623459126328737, 0.784505301508209, 0.5025456715764216, 0.9560519514952404, 0.838544514690258, 0.9183304120817677, 0.7523182575365956, 0.7222391156516446, 0.823969257475847, 0.9563322975803196, 0.8517981706707642, 0.8870963021525367, 0.7773799070893124, 0.7416571415459445, 0.5819644603405252, 0.7242154150286472, 0.539024797451547, 0.8732332533093822, 0.7305832776540309, 0.6273416198752096, 0.5264150918006096, 0.9393450924743488, 0.8195097543704617, 0.9795132645401439, 0.731016412800941, 0.8793979444474302, 0.9238715722824695, 0.8518090903472558, 0.7248119064244227, 0.5234088973157018, 0.5685619827190924, 0.6741519101927309, 0.6679203340133505, 0.5882968267726456, 0.9837002705483591, 0.9767374377888929, 0.5375888794890196, 0.6425062677359716, 0.7801640699100651, 0.566764710697383, 0.866155336203129, 0.6639083694484077, 0.6634189891914224, 0.6338104343829601, 0.6292174732929744, 0.8692697580285746, 0.6271103252107282, 0.6124880779576409, 0.6754435387383244, 0.5857726305377027, 0.8925651735255558, 0.5373832077737497, 0.6121224350453165, 0.7888351317207303, 0.9049367196438427, 0.9965077082391542, 0.82239124645397, 0.913621321363965, 0.7571826182287567, 0.7367127085334467, 0.549219704170792, 0.8628631510448962, 0.8021582078697216, 0.7631304983410316, 0.6593672690802257, 0.6615197063992919, 0.7536503821141072, 0.6043981957352275, 0.7750592700152625, 0.6521422426666219, 0.9215681768501409, 0.830696672777423, 0.7507758907511337, 0.8135294791167612, 0.6549838587679154, 0.9240583926100554, 0.7229777089291114, 0.5534012625479164, 0.6167341644756263, 0.7272504326895926, 0.7700088936333944, 0.8570244230439747, 0.8886554480009061, 0.5610899287174327, 0.8593979397563761, 0.8902866986257181, 0.7071269767133928, 0.9377457735096526, 0.7582758150614222, 0.9282264077448832, 0.9495351440790871, 0.8680969791830482, 0.8245239824775474, 0.5932720522094976, 0.7862056196521705, 0.9542810138201206, 0.5941836627517577, 0.6593266967802691, 0.5617710249751284, 0.5155157584578749, 0.9007394979983963, 0.6682589467331984, 0.8737562138862818, 0.8694385153359229, 0.9992478008144822, 0.8634455378407704, 0.6080545912581893, 0.8386749790995875, 0.550936341109739, 0.902529460292351, 0.7445071988011588, 0.7899451151684698, 0.8426033851564192, 0.507386891640268, 0.5640453065034673, 0.8956230424302185, 0.5474071629412878, 0.6939849304473029, 0.752843601717648, 0.6327905811563874, 0.7863862241996721, 0.7471717451717595, 0.8998424682476454, 0.6749924137626815, 0.7474103900568214, 0.6443372396463182, 0.7891378411490697, 0.905634970070471, 0.5599986187191665, 0.6960085930086468, 0.6307256289602625, 0.8805186343356115, 0.9027495547820881, 0.5908854903048413, 0.66502446318769, 0.6766241340131589, 0.9427153472107365, 0.6769614717716471, 0.6047683952856817, 0.5079711419527851, 0.8347712332657216, 0.6706813086671317, 0.8361768304984591, 0.8758950914112353, 0.849702480911838, 0.6379577982656461, 0.8990182316888323, 0.5364644489236918, 0.948420832799083, 0.5228451387478626, 0.9997990950769391, 0.8050483378527749, 0.6388262254166662, 0.5419400744809482, 0.5500757398026321, 0.5125881599707092, 0.6054451794385416, 0.8429594389024575, 0.5237416603335567, 0.6865313298444184, 0.7712474643423469, 0.7837495364479699, 0.6116762548430107, 0.7552851822992688, 0.9002005867495864, 0.7563747602342574, 0.6383110941239082, 0.7672829556836196, 0.8124861560628477, 0.9545594634830812, 0.6882725402059435, 0.9806460272298527, 0.5337535710552086, 0.6500310685947921, 0.6371022436798606, 0.7895664666912482, 0.853503405427823, 0.7263839059063726, 0.8310258871452059, 0.611328511463283, 0.5309247113127067, 0.8913396812198551, 0.8622333253899724, 0.65327025883852, 0.9686929302028884, 0.7276906599669406, 0.5771543766900779, 0.7374765570631336, 0.7551099267594292, 0.5531566877707993, 0.6256150885034202, 0.7854642717725202, 0.6754208783410249, 0.5504495885944346, 0.6370987959761798, 0.552465009896498, 0.5704705629244632, 0.6483656289649021, 0.6322318260633615, 0.7573717273324883, 0.5265325453709885, 0.896045202457292, 0.953111716120238, 0.6468817405532069, 0.813038441529376, 0.5672439640190878, 0.762487696360399, 0.7536468396105217, 0.7953551551935549, 0.8779457560943857, 0.7216284288071386, 0.7803350436645589, 0.807658080099059, 0.5030106507303299, 0.5669402186214438, 0.6408482865662553, 0.5053069156454597, 0.9840606017349787, 0.82179886748771, 0.8514391029645552, 0.7140928995262281, 0.9764577277087985, 0.8367526582423553, 0.8558181464222825, 0.6574071955026151, 0.5827441317428125, 0.5610693241541977, 0.604541273162434, 0.6261580267678157, 0.6132184513643171, 0.575350948036397, 0.9732045736078163, 0.600511151289022, 0.699700541512823, 0.8025555866131995, 0.7341305956963031, 0.5430851465997262, 0.857737819703067, 0.9010052620950604, 0.5433820438100525, 0.6781588640024554, 0.578195259789567, 0.5774960797818698, 0.8411545701170556, 0.5544369025385194, 0.6591112536763961, 0.5144262864544966, 0.6030833655213008, 0.7635389796796537, 0.8282252712826703, 0.5739158647631495, 0.7358850709137279, 0.5563876042540149, 0.9085248908635439, 0.7202738015247208, 0.7298926062850202, 0.7318932829653471, 0.5935567390564904, 0.9368888757515074, 0.989481134159891, 0.6198148743065879, 0.8654057186773484, 0.7260953279330463, 0.8161464510893675, 0.8783013635129808, 0.9413898195658426, 0.5529696003240834, 0.7500973092565622, 0.9981627216671474, 0.7320463512891449, 0.9917055500979882, 0.9689177225842394, 0.9225714268925178, 0.9569309643628986, 0.5584979285018862, 0.6683117229745694, 0.5040319786200573, 0.560209129731752, 0.6019769610978046, 0.846781333943855, 0.5209324665412205, 0.7810038179837184, 0.9526503664852757, 0.8001029541527707, 0.6943691961678715, 0.7067387401471392, 0.8298948886557647, 0.5836370187229876, 0.8580818580657086, 0.7946718638214965, 0.7268421261666109, 0.5454796255761836, 0.6233358269603135, 0.9693747169560387, 0.8485464984603619, 0.9898879936675368, 0.6817030601132621, 0.6257302549362308, 0.5936532301268687, 0.8645029489234175, 0.8459209085158198, 0.8192292104712537, 0.5396223437024084, 0.5521038204251065, 0.6054881880054586, 0.6736426567198781, 0.8793657209601222, 0.9536566790024601, 0.5688646788822445, 0.6692821440877865, 0.5687336498190478, 0.7266611621785792, 0.8842637092936785, 0.7065024237557216, 0.9335219258951669, 0.7080219930955913, 0.8775398203443092, 0.7598314730653848, 0.6778495154441044, 0.8866305286763274, 0.5465382944137557, 0.8317163138921991, 0.8021752567520277, 0.7037495099638635, 0.9192696764391639, 0.7435323242208878, 0.615643910250713, 0.8919298601467379, 0.6059183160543054, 0.9313727177019249, 0.5491864785730166, 0.9916942028696121, 0.5886455379789682, 0.658102659385288, 0.7578362418043294, 0.7666577558290786, 0.9873940071739058, 0.5426436177056048, 0.6651846982030702, 0.6795785798847032, 0.9906037295963106, 0.9623590289096828, 0.6917362224193597, 0.610492562592895, 0.5698802443396072, 0.5888055973490469, 0.9483718214165363, 0.9834253878340017, 0.9187585081706738, 0.5656533128600294, 0.8755385528639141, 0.6223913173691326, 0.8289851587553096, 0.9445926772338086, 0.6210531689964327, 0.7490345169152767, 0.6580677699778911, 0.8722772790499271, 0.891161122153464, 0.5739823335520742, 0.9586504164822126, 0.9550012676054356, 0.9524179414332761, 0.5420994254282274, 0.7548508116909766, 0.6422869414057595, 0.513236490116206, 0.758704214332148, 0.8908711624116379, 0.7333422193876167, 0.6088574480293292, 0.8188854741555383, 0.9839345808442659, 0.6576293448474745, 0.5830667114274554, 0.5184434929094768, 0.853463043222716, 0.7678217320296721, 0.8323209371292464, 0.8406332663279468, 0.5581283241101946, 0.7165726704525586, 0.7049670595351978, 0.5108602307140144, 0.8344911523242851, 0.8042664015568726, 0.8344499385556763, 0.5066397551725264, 0.794662497696961, 0.5396179520699425, 0.7477038093914241, 0.678543815192685, 0.7749518987376118, 0.6327561262841108, 0.9611856215993169, 0.7543572792595774, 0.8876005824791773, 0.7061348295975325, 0.7449597567100059, 0.6304429210031876, 0.7287567551704877, 0.5221124722876027, 0.6984808738769375, 0.8090667236305458, 0.6750378987297145, 0.6987531830011156, 0.7480470058135047, 0.7510362382024374, 0.7233612953626771, 0.9125053417890977, 0.5536462992951636, 0.7737281718123203, 0.9823621103140139, 0.7715781154143441, 0.5701750007830411, 0.7692217461331817, 0.6499191790395267, 0.6793001902280792, 0.9864025870966915, 0.695040644949552, 0.9895853606352332, 0.7775377992777126, 0.9109244771216294, 0.5655876188632114, 0.7675579007115084, 0.827563263559896, 0.9942840240074696, 0.8304511350644659, 0.620257335520752, 0.8973212271378777, 0.8194888074021407, 0.9117210306970429, 0.7426509760980416, 0.7026593506912192, 0.86392716566374, 0.8153074941364351, 0.8008741547610299, 0.5980999057591805, 0.691132082332626, 0.8736111288660924, 0.658970975780528, 0.7406064776727683, 0.7436896293947097, 0.8674890693327462, 0.7962636295123521, 0.7206851940653527, 0.9123478063153779, 0.7752102196686239, 0.7339642338794969, 0.5593783333485216, 0.6298505514161479, 0.6672088172146328, 0.6771562037103653, 0.7784252604365896, 0.6725735479964166, 0.8012333981763331, 0.5950976907998629, 0.5194508508018876, 0.8506011503405865, 0.718403545616512, 0.9274547489343945, 0.7402794964058879, 0.6721800178301602, 0.7794494109328112, 0.5643319167446404, 0.7083014996497388, 0.8164642119509171, 0.9592345464505357, 0.5451343137811215, 0.5947954865403261, 0.5545901877816171, 0.6133867257865891, 0.9456706543141508, 0.860406502549581, 0.8816302629890769, 0.5795703467486998, 0.9377177172449589, 0.8795198427002827, 0.7820875682410168, 0.612601606951796, 0.7948457415269563, 0.5391710585832309, 0.8790218794470995, 0.5999132745877604, 0.7687245615323021, 0.5079621152298324, 0.915138720216401, 0.7821256515782544, 0.6857991932197693, 0.5528850357946791, 0.7962671780073136, 0.8350115007334216, 0.7632620500736197, 0.583772487215425, 0.5770037695143888, 0.7707612378917039, 0.626946971113271, 0.9143096264379604, 0.5788808026094076, 0.819382125381183, 0.5428755676020913, 0.8745468388217654, 0.5635017725390646, 0.5669669337002008, 0.8017049129221687, 0.792170883873274, 0.9715532118990864, 0.5754394741451219, 0.878093546828578, 0.7467891447207772, 0.5445170128447587, 0.8531482281842491, 0.8823356068132153, 0.857833957202895, 0.6513458225697277, 0.8174871363388372, 0.9212156049074667, 0.7169684808304717, 0.5556704992372042, 0.6865042639558958, 0.9240909396299704, 0.6960508869112269, 0.7639750595422579, 0.9890075702891029, 0.583843861455462, 0.7949299788251449, 0.9162876318851089, 0.6076066601543764, 0.5596045752115718, 0.6174340315460463, 0.8982280259468065, 0.7546596635965417, 0.9183011464533986, 0.9954821392593682, 0.8995116753537563, 0.6065419029997161, 0.957786734776401, 0.8695472589773319, 0.8817158692059623, 0.686797982337682, 0.8957831696623122, 0.6458478339151938, 0.7608158756357034, 0.6152349843964076, 0.9746199459904703, 0.6102424053491478, 0.8246838755761681, 0.7908145576149788, 0.9272470697797247, 0.8515603087497305, 0.5059889768305731, 0.7015077656185233, 0.7738615314626226, 0.5450864606793965, 0.5641766890091705, 0.6232797246427145, 0.7357104233836593, 0.8074711445549598, 0.5568943655696442, 0.6732997936574274, 0.9232068293403095, 0.7324628557037525, 0.5942602506261394, 0.6883383721793783, 0.6960058123439459, 0.672503286833252, 0.8062669691082667, 0.9177010722061841, 0.8226762393107896, 0.5302322545827526, 0.8184098067299261, 0.5012504180521425, 0.8046422047946877, 0.5433795165322367, 0.5131034905164767, 0.7670439878182385, 0.5376309311529944, 0.5177721428086441, 0.9704710279056359, 0.8319905772788692, 0.979325944819363, 0.5465964210950163, 0.5444179908895199, 0.69774028943421, 0.5281933250986157, 0.8781707289521206, 0.8971675309623988, 0.9356879547871138, 0.6846373786553729, 0.8756544251449165, 0.6147499080761409, 0.9469849864531452, 0.9966717189880583, 0.9651067595075373, 0.6606416072647546, 0.7514949459052569, 0.5193487022350478, 0.70424697887784, 0.9081942470652231, 0.585172751945793, 0.7534999814044676, 0.8560671829347981, 0.8764661489638681, 0.6362115976236632, 0.9313924588508689, 0.8479053252493407, 0.8992376838301197, 0.6519509104818044, 0.5332097025341476, 0.5330642720922435, 0.7468990052515104, 0.929565920536627, 0.825212058934473, 0.8126026211842075, 0.5893185364145527, 0.5297963881465817, 0.7604603479109407, 0.5855673877460161, 0.9666958403224543, 0.9330338072826445, 0.5282943135333895, 0.7738673515197095, 0.7042959264547923, 0.9692477927707931, 0.7796370488192027, 0.5859632991472459, 0.7008942775284863, 0.5568343769513892, 0.9106629319344866, 0.5262028256548505, 0.6540947383163789, 0.8042288862700753, 0.7613582624644026, 0.7128881183703187, 0.7443268953017828, 0.9809370435012319, 0.5354944594603388, 0.6376828994956361, 0.5374498423878313, 0.7053627334031778, 0.6098440190104293, 0.9575793149118189, 0.956274202794742, 0.691079235312754, 0.8007676413630256, 0.6273003167058576, 0.810669072220618, 0.7809476354122129, 0.5807495436371466, 0.7881168818465288, 0.5041976308684667, 0.6698671547248928, 0.6063952547937338, 0.644630581102295, 0.6262650663332363, 0.6921938962871328, 0.6663367006966154, 0.5713677816502927, 0.9038447168741193, 0.6857834789330435, 0.7258688148659544, 0.5509710312137772, 0.5159871458103815, 0.6939560771330446, 0.7003449320225181, 0.6717635507514216, 0.779156191439873, 0.7825403249289051, 0.7538377456078043, 0.7129922686512835, 0.8051686047926002, 0.542741883200243, 0.9199566284026629, 0.8532281226735078, 0.7080349405859934, 0.6300866402186649, 0.8250991494335529, 0.529902835289256, 0.9589157425639042, 0.6590911006260688, 0.742761324043995, 0.5184428093621053, 0.8599384748868686, 0.6145832382971852, 0.652207973982123, 0.6232741534832837, 0.6955976186942305, 0.6689727085427106, 0.8234228177548266, 0.9316928394517483, 0.9629768201364044, 0.7606506943605706, 0.8396413312649774, 0.8287582364868005, 0.6844914928256767, 0.6721513697575023, 0.8848955341312235, 0.9768111408648834, 0.645077021713848, 0.9081665025570802, 0.6406523174031793, 0.6286434086860141, 0.5739532329972239, 0.6441218453269976, 0.9529366175540099, 0.9347487647870758, 0.7054060652336731, 0.8227699025136626, 0.8562791156106093, 0.8837269318988563, 0.7422641178022457, 0.5937614454733475, 0.9803477735420829, 0.5301448333151173, 0.8552995581974902, 0.7961895584797348, 0.6323083437410285, 0.6046944508804564, 0.6174117350582438, 0.723084155425133, 0.7496067552061441, 0.7721112051972023, 0.7981529844024609, 0.7661909868664201, 0.6493207847248221, 0.717492833402386, 0.6841485250460602, 0.815686564261654, 0.7632362660552883, 0.592145650645352, 0.7114452199167218, 0.6650553437771394, 0.5373497871817023, 0.5124283254235897, 0.5209343031238689, 0.5466416824782308, 0.5558928565172996, 0.728894042054379, 0.7416571084394703, 0.5475855919923981, 0.5561107296118984, 0.7381827627416365, 0.7658246160198542, 0.6790842206239529, 0.5026165164519762, 0.6962840051953554, 0.7469984766359457, 0.8350853623585983, 0.8767761499359907, 0.8055715227282367, 0.7219571013999029, 0.925837577201198, 0.8145852254175657, 0.8976072937063562, 0.6401286235960437, 0.6780182654533067, 0.7385207031517287, 0.8095973365928821, 0.7302295174185924, 0.6915859939710185, 0.8197803104289045, 0.9436157437146742, 0.8652245759621138, 0.7663182717218797, 0.5359026504401755, 0.8574817400362242, 0.9371094963940356, 0.7154570127514319, 0.7225937510865071, 0.6596973340852064, 0.7481003248876512, 0.5185819280031545, 0.8193840463213199, 0.8109193041451692, 0.6220306782425757, 0.7533809061595944, 0.6930894220681735, 0.6674730881636326, 0.9187107974248524, 0.5933496034327146, 0.9512130912086314, 0.8151254389128094, 0.713780084032456, 0.7746624021516726, 0.7933824141355961, 0.711360094700703, 0.8068111445630473, 0.7318396699437395, 0.9569768442806482, 0.650615774625507, 0.5609200004585151, 0.8408212823705972, 0.7427694402109105, 0.9540866782960039, 0.8489564507782456, 0.5916172831650688, 0.7040957656117169, 0.6650902425472708, 0.9448910747003612, 0.9337102788682381, 0.6895134035528946, 0.510507900905453, 0.595195996545572, 0.6125228385535533, 0.5178151274339589, 0.6453310543663606, 0.9763751627655815, 0.7744847598724289, 0.9148272667285604, 0.7325010203931195, 0.7706717720342817, 0.6438823331925324, 0.6429399573285697, 0.7251287445098153, 0.5563153107776384, 0.9990545940448954, 0.6305070910276827, 0.7488447234912792, 0.8190659613628073, 0.5986827204743826, 0.501661044446015, 0.9590365957354475, 0.7269270930257985, 0.5755824771924528, 0.9012698819590546, 0.9608843057230008, 0.7647185730860501, 0.8120583039521178, 0.9292838609591555, 0.6944516989376219, 0.5181462607134025, 0.8312192814986155, 0.881711519743692, 0.813345970095412, 0.9123149518871481, 0.8481651342641495, 0.6127546542789275, 0.9633771513912393, 0.722500888790044, 0.8024315304944902, 0.9445542806897586, 0.944011068949976, 0.7118227687660224, 0.9667242418084673, 0.750048226023019, 0.66105164924346, 0.5021331272849106, 0.7677486586620274, 0.8652769152489252, 0.9296287082658106, 0.5361178359879528, 0.591090182152582, 0.686262897052415, 0.6357426470187204, 0.9498857788421521, 0.7073346518790442, 0.8356192541998915, 0.936304305989704, 0.8767096970070338, 0.8098507689064898, 0.7333350640027612, 0.8880321786311107, 0.5926077933432047, 0.780728230665485, 0.7812096401017902, 0.9674070579168683, 0.6745011314855174, 0.8252735786506857, 0.5978732331722955, 0.8412771456217143, 0.5753130973486643, 0.6840782046707982, 0.8079240878200793, 0.719669080632293, 0.758746245041891, 0.7298352870908977, 0.5833892212034277, 0.8593651908170672, 0.909997537540616, 0.821084163200341, 0.61687461005781, 0.720059581296902, 0.6629978830847285, 0.9893374714707668, 0.7189391693178371, 0.8575405965328222, 0.7272586034458557, 0.5310049233307179, 0.5507930645068995, 0.5488423592217708, 0.8673359780000809, 0.783235438414551, 0.8615684226000782, 0.7200132206276657, 0.806898293410086, 0.7440051547446339, 0.6570370166535486, 0.6198080352950852, 0.7937609773464201, 0.6675963472495499, 0.8321337681680495, 0.8746621872067336, 0.5355159057287964, 0.9288316609275902, 0.5692661846861191, 0.7521355858898944, 0.9510632405539844, 0.8666904260666295, 0.7829496237813651, 0.9510343632340843, 0.6476108016942654, 0.8315406236126879, 0.8590066971643189, 0.5903717536719209, 0.5897320316430519, 0.6961230268086886, 0.9288689774215646, 0.9148499323914948, 0.6692660651781369, 0.9332157319281453, 0.7854690948360745, 0.553733255839861, 0.6247556430360957, 0.9950920495766356, 0.5865337554769652, 0.5499003031742721, 0.9571071682508447, 0.8915564969349776, 0.5372710400988691, 0.5939291158656679, 0.591723918515197, 0.8853864336538879, 0.7558763170966587, 0.9301116916850203, 0.8524732649964826, 0.765851104776909, 0.8651637016714591, 0.8919128264569773, 0.6238722976616898, 0.566823590781405, 0.5525112351799948, 0.8135173709980446, 0.8331939276306741, 0.7723093076716886, 0.9714400260303513, 0.5509938158534804, 0.7984852887326748, 0.9683010482109521, 0.5508087368983355, 0.8326581684148502, 0.5784158213111148, 0.7628883989787223, 0.9163240205950551, 0.5893809638491478, 0.8170730923221994, 0.7338366859164928, 0.6368487709031434, 0.7180237548771409, 0.6253179855032687, 0.7352369067877562, 0.5443710084674386, 0.970045186571507, 0.9131274511403262, 0.7343838252815018, 0.9968160577651453, 0.8335312157336203, 0.5835315923943039, 0.7442476183705058, 0.7255640883075214, 0.617044178429947, 0.5517964770261774, 0.9633865286727546, 0.8166670738898743, 0.6793589476310218, 0.7647747306390773, 0.7708658656178421, 0.5080530517649468, 0.948383652802208, 0.9056582985479997, 0.7764365314574078, 0.7623665239393422, 0.97502362838862, 0.7918153590823596, 0.6606095312975875, 0.7528052211055991, 0.9602512958107261, 0.8885878963588096, 0.8328173414004573, 0.9155478778100158, 0.6207666902139375, 0.8525442930791842, 0.756192285091057, 0.9586044730236265, 0.5657569562728381, 0.6884086648370653, 0.781749028677539, 0.8310097491138447, 0.549497290830056, 0.8570874277910638, 0.5134009985896653, 0.9024674246680451, 0.9612147459058464, 0.7423618851938225, 0.7082781260520987, 0.7123790597602118, 0.7998608506298068, 0.9951868514534683, 0.8856365392334483, 0.555512341842439, 0.909400232420849, 0.8677583508466145, 0.5057774292241077, 0.8693407922428253, 0.9193638250552376, 0.5719146617900324, 0.519969488717651, 0.7589024355230957, 0.9234175243211055, 0.6866216037131088, 0.9983791790609712, 0.8823100194673483, 0.5636967799323571, 0.7701347926939532, 0.866511623829914, 0.5650074357704236, 0.7712695921786115, 0.9626728098361654, 0.8661230910719261, 0.7420080511108244, 0.7123229800761484, 0.6183617180294547, 0.886866690698201, 0.6245778586112674, 0.8377939158762505, 0.5324686696570615, 0.6400498254484843, 0.5354541339135972, 0.567563361280267, 0.5778385686933902, 0.8652421135068656, 0.9783526535733669, 0.5037856832466991, 0.6667894841754243, 0.7448726730193305, 0.7746863680300318, 0.5240028254067403, 0.6681664028399177, 0.7949168827228522, 0.8274517317300036, 0.6047228587756934, 0.7530339624127571, 0.6058769296929756, 0.7341407609095142, 0.9915116583828253, 0.5300480224230286, 0.9390328689658896, 0.8131764748512618, 0.5647496464333621, 0.9398912430863031, 0.881926767458183, 0.5421565261953376, 0.9068196739936278, 0.5879286164844046, 0.9931250857195257, 0.6524013424100885, 0.6400531442326225, 0.8876036989112003, 0.6317506945870222, 0.9672320853496807, 0.7760790191263127, 0.5437969549512622, 0.7703519869784498, 0.5328844267188062, 0.831110860847501, 0.671451174530125, 0.9680392670340574, 0.590250817465602, 0.6654218397432429, 0.7509725686430389, 0.9312098510817121, 0.8196346246307784, 0.6733091887873346, 0.8448094726811134, 0.8205797383046629, 0.6117962427692324, 0.9173461815020769, 0.9004949494267052, 0.6084189952969978, 0.608570734121205, 0.7869649331828789, 0.7310872581563261, 0.9274052118851333, 0.9974834291709459, 0.8142518396569881, 0.6964494231032589, 0.7251039393637695, 0.6765639217374115, 0.9345340879812932, 0.7519081314261258, 0.6316736628562986, 0.6662456952389204, 0.944975582873304, 0.9757795363047672, 0.7014935948554402, 0.5195567401952778, 0.9141153426777631, 0.8129278075285764, 0.7104335031375534, 0.7237156164218173, 0.8839650949413953, 0.8875966961558973, 0.6345086470917519, 0.5602610622929467, 0.5990861491350489, 0.9975638686804896, 0.6428474924300362, 0.6404878497225566, 0.7551152139638697, 0.6415202641486896, 0.8472078393715392, 0.7192861395113772, 0.851341726573937, 0.6468938808151352, 0.9463021565620143, 0.7628515098726233, 0.8478932069833858, 0.5446523072788958, 0.8071451521389768, 0.5482293160973299, 0.6940474061039434, 0.598407361596774, 0.686805836544429, 0.7179417888218715, 0.944558861762925, 0.8980501744337324, 0.6024581968240883, 0.7390728912864298, 0.8300323550197406, 0.570956495676846, 0.8649753211196847, 0.966003610058743, 0.6835326204895251, 0.8283181138234924, 0.8669294043167726, 0.6780505155019307, 0.5320030370729614, 0.967271377821279, 0.5793862904790075, 0.8650269223910325, 0.8115117266041124, 0.710467292215029, 0.676570151784678, 0.8080532822066916, 0.6622535042680456, 0.7428215215085374, 0.8716328766384203, 0.5560933717963208, 0.5137276333429553, 0.6270431341509821, 0.6905617432861004, 0.7475826582443259, 0.5262326011758576, 0.6110571508506677, 0.5529466312235926, 0.6944950992823049, 0.5151216414162758, 0.8636838877932049, 0.7649281774342759, 0.9358818506709814, 0.7541260482408794, 0.619719565209659, 0.5517555464600324, 0.8962479746477935, 0.8947313959636504, 0.8267510428161777, 0.7382883306316691, 0.972662432219042, 0.7098541111364153, 0.8927263020904921, 0.9168807369965748, 0.6243684037005623, 0.7294586546313896, 0.7436623647051712, 0.9515752008196834, 0.5595215098950963, 0.9459400051695156, 0.6613426275800189, 0.693635538041119, 0.5416196157159334, 0.7544641609429713, 0.703165460762478, 0.9533754887613457, 0.5307792914848243, 0.8753012746600792, 0.9009745884612752, 0.5579202554942404, 0.8091811920721186, 0.9993867010603456, 0.9248227413217045, 0.8436753949258363, 0.9962370104589621, 0.7342167612998947, 0.9375903639586245, 0.880201181113597, 0.73439021300289, 0.6536913300513452, 0.8501287062540477, 0.561302263633084, 0.928966323434046, 0.5135486107932796, 0.8609527981826871, 0.9077911678238699, 0.710953281591679, 0.553604229464359, 0.9737478482334045, 0.7528309725661131, 0.782440637467976, 0.7549553332615933, 0.9163596604833913, 0.7346426550336229, 0.9226781322961868, 0.5540591819936362, 0.5508724722672238, 0.6397136721848733, 0.996405085195566, 0.6797657309458462, 0.6078835143226171, 0.8845783460081444, 0.9269384549426243, 0.812447068058334, 0.5739593589982364, 0.8405645090501498, 0.943822763509757, 0.9968251462636908, 0.7597114169014955, 0.6794251967631644, 0.7229259259030522, 0.7372315837650854, 0.9927289781709582, 0.7859610389799586, 0.7362133351971711, 0.7217811539813668, 0.6160988333146609, 0.613268331127964, 0.8886164293967902, 0.9065032468495847, 0.8741514162118245, 0.9747854693930919, 0.6813342412284524, 0.7893116471725741, 0.8834284372983892, 0.684951588246639, 0.985653034019043, 0.9373577289060903, 0.7888644521114598, 0.80109930024298, 0.5837455713948372, 0.8422879315384684, 0.9095093858567798, 0.982397787380876, 0.6163863082449537, 0.7661339318835936, 0.8750015118668172, 0.6199649293644021, 0.9810326572271053, 0.69221117036505, 0.9805856247466278, 0.5568430217397735, 0.6727181460237237, 0.7113070546030711, 0.6132385389165507, 0.942195085462907, 0.9792477819707956, 0.834510860900278, 0.8503414653806217, 0.9854111846365463, 0.7631690000622269, 0.6314239227175423, 0.6137507936712447, 0.5306782772932694, 0.951736226755433, 0.6703574318820096, 0.5482393079032296, 0.5688764769450546, 0.9449375013781822, 0.5508886750847956, 0.996915594726447, 0.5268285955537462, 0.8007731835829079, 0.792683891039697, 0.5895522686567003, 0.5024286762253011, 0.7386800029646217, 0.6406140177800794, 0.703711405918587, 0.5983889798257572, 0.7399928955148818, 0.8148443175279264, 0.5612967186712898, 0.8132921212281237, 0.9556255769629437, 0.7798792090188372, 0.5163796266165814, 0.7230725882133457, 0.8108452419302745, 0.5057231546128105, 0.7847683360989259, 0.9860105708893581, 0.8200166367779962, 0.5853225145760859, 0.8085759268087673, 0.5275949902466396, 0.7575994636105354, 0.8816655013565258, 0.655213632785032, 0.6486291177948265, 0.5082859118777583, 0.956123970950595, 0.5471131952847077, 0.6609615631131691, 0.5891424423099528, 0.8921231134423071, 0.7145980685013662, 0.5335731087508615, 0.9826811410856519, 0.9073397764606721, 0.9376125668777827, 0.9974614569275216, 0.8265402618155152, 0.8855139280748641, 0.5638826535189172, 0.5762890442418676, 0.5514697969894565, 0.7649614423907265, 0.6009892305086881, 0.608641420228025, 0.5593430474165237, 0.5605125957991788, 0.9002202447790388, 0.5825075579677597, 0.874883637035102, 0.5054671475213091, 0.5593224722326252, 0.7816498641245379, 0.7730290235935697, 0.9173527131302466, 0.5422384671200446, 0.6608960537352504, 0.9976106707523678, 0.8584076220119996, 0.6303227637095997, 0.7974014467653938, 0.5777249542557719, 0.8739428528833779, 0.6701509971261173, 0.6670677317095319, 0.5621337570971918, 0.578338623937833, 0.5911390029859367, 0.5822238376076927, 0.9281025052459068, 0.8835539415377894, 0.7407737859125434, 0.7331286500745329, 0.7008907114790456, 0.6269410624295901, 0.6425172518575095, 0.9630632587297483, 0.6898858384253463, 0.8492545378799101, 0.5606392573461605, 0.8100889624273204, 0.5422844157798747, 0.6113968035243714, 0.9644728584797, 0.5579977971479875, 0.6905193927801587, 0.508755805542134, 0.7366439153770669, 0.6221220583279902, 0.7476161036191781, 0.7708551689901808, 0.9183090116545052, 0.9525748691058613, 0.8265881381065685, 0.9326748039379964, 0.6104289377616621, 0.5623021606563094, 0.5599494567923663, 0.7862104159391997, 0.5827872804244885, 0.7458166992996053, 0.9093252575774169, 0.857119220788578, 0.5592739124000108, 0.9724309548725467, 0.6182008644398429, 0.5287440660369072, 0.8912744439620234, 0.5167811697351031, 0.691680934651027, 0.5344511995438821, 0.7763572503012364, 0.939425100922615, 0.9523488284987158, 0.6691301696451795, 0.9585979161519073, 0.8636006339281956, 0.9466111736011366, 0.6553923810910993, 0.8717266680743552, 0.6479527105226877, 0.5761272307529312, 0.8148866727991225, 0.5443246855056986, 0.7393550849242824, 0.7408299929095989, 0.9621543079194324, 0.8755538401979397, 0.7903703782117922, 0.7786982128992748, 0.8753408744811527, 0.9561087639197836, 0.8012276274166611, 0.5920980267589919, 0.9768649052077301, 0.8633213479689741, 0.810722351168254, 0.6375420669668164, 0.640719430071311, 0.7593493757278799, 0.8645954834179542, 0.7676910666845186, 0.6437870564296302, 0.8320434290717722, 0.5775379513973017, 0.8415538940748704, 0.8432946361271096, 0.6419046809672327, 0.5843139811473554, 0.8539583944167533, 0.5673589380998604, 0.8562902645638005, 0.7072838989643873, 0.7607184593892911, 0.7155781277353913, 0.6136508821276829, 0.5058547872190727, 0.7362631632882424, 0.6383640113661151, 0.5306684597199349, 0.63759226834548, 0.8678318541615824, 0.5389507662662074, 0.7506300271925161, 0.7809265691946367, 0.7845548001803113, 0.9088294718314534, 0.5773307926152409, 0.9160373324171851, 0.9633935504568849, 0.8007760006446547, 0.7202682752119324, 0.7478847485263906, 0.8566672747812483, 0.6478921382796243, 0.7547696605401194, 0.8799403842439328, 0.6653804979186968, 0.9587350277017088, 0.6391697988111613, 0.748444938793947, 0.6796177151443517, 0.5262482660757979, 0.6343072737725484, 0.7827171447747248, 0.531221694147531, 0.6417828499802034, 0.5133251419881941, 0.9092792227765023, 0.9639151562784405, 0.890003873557409, 0.6010163005642644, 0.8314962396056615, 0.8795650905353412, 0.9213630248180085, 0.916638511167156, 0.6633987686306142, 0.8562779967960676, 0.629734742854388, 0.640501770046098, 0.6824380948751737, 0.615243108574503, 0.7117804908621886, 0.9647398999099959, 0.6116280911788243, 0.5197862007682263, 0.7062696782553284, 0.7993473679293595, 0.5364524566947948, 0.9948192161710037, 0.6860756354402795, 0.9460911204948865, 0.5622431686731355, 0.5636872652176245, 0.6186374223647724, 0.9980539054224962, 0.8064313141968272, 0.7821026748059954, 0.7916864306517057, 0.5108202058123539, 0.9335705339920821, 0.9716130345490611, 0.9872320725056517, 0.7125263197269547, 0.5714841348891242, 0.6769614105057764, 0.7662703684685588, 0.7133164988039182, 0.5616935692157023, 0.5625765157520843, 0.6248109360589376, 0.7898208271324865, 0.8654286847000123, 0.6022977339934987, 0.7262371675916912, 0.8476845762108393, 0.672991468395189, 0.9248460575479305, 0.9797793988470453, 0.9366857146972974, 0.899221098856066, 0.9112929065223037, 0.690705734011009, 0.9976371024364754, 0.9527115610420643, 0.6946462993184261, 0.5171604564443747, 0.8259665865150574, 0.5359767678764444, 0.9535440921922196, 0.872751564296989, 0.6452185753541448, 0.9249127189463071, 0.9651407470287043, 0.7734831197718341, 0.5852864292364992, 0.9152886008423472, 0.6598231234569729, 0.9351316091674087, 0.655770931259207, 0.529737595248718, 0.7395906974207668, 0.5839855187284879, 0.8624636972334114, 0.5314058187537878, 0.838109235051316, 0.851132048518652, 0.633304024424025, 0.9971293066188687, 0.8459714787950862, 0.5609805351514319, 0.7989770664499639, 0.5402127865776059, 0.9646792071866768, 0.9582359058679066, 0.5982104575061756, 0.8721890021647287, 0.7327518120017378, 0.6316033288464576, 0.9729153433123374, 0.5196322536329299, 0.8138601439422741, 0.9396415767972794, 0.9677147739328389, 0.99858372398829, 0.9294946105286916, 0.979271605372072, 0.553185573889431, 0.8039068613498441, 0.785845610525816, 0.7189920225227986, 0.8168042910873955, 0.7020501194834092, 0.6155847723397254, 0.8325876183105771, 0.6470137982535422, 0.6552830848732236, 0.8960113861314648, 0.9288684310034288, 0.8077661210360811, 0.6580421548074364, 0.6633692659647223, 0.5505124251796573, 0.9856403001406899, 0.9417197972925018, 0.6881972258481599, 0.9956308480955204, 0.9660683091298918, 0.7094300231078897, 0.6338359865443566, 0.8934305096923368, 0.7930473554373109, 0.8106884379916859, 0.7239448343763093, 0.8817880392294069, 0.7363416180583405, 0.5639300483727628, 0.8857658654552631, 0.721262799245495, 0.9372384331597055, 0.9907396808319853, 0.8845508476158574, 0.5580772629850146, 0.7819234321305759, 0.8601761472221761, 0.6588341954680493, 0.5725620241176723, 0.6929203563803481, 0.9042325463643273, 0.8660173942982825, 0.9134826805546326, 0.6171347516945381, 0.5266249126240443, 0.5363102226474805, 0.7385715753607808, 0.9084279451419215, 0.5759101358430733, 0.8338767316407698, 0.959588751049569, 0.6353851524982485, 0.8587844685712483, 0.6868446450742285, 0.5635571034297003, 0.9765226914032615, 0.9449990114377087, 0.7254937992226476, 0.6558161266879521, 0.7710190758556673, 0.7683230679886777, 0.5673002737467457, 0.8016312046982563, 0.8915015683195311, 0.910619304980278, 0.7059109176947065, 0.8753649305009915, 0.669624724207027, 0.630020645869199, 0.5352546741564692, 0.9783501125251628, 0.8940834443116882, 0.7114175487647421, 0.70858535615944, 0.9495653425346993, 0.6565589391839133, 0.7946158244045751, 0.9410003567072331, 0.7512896744600024, 0.6468222456587214, 0.7102373669704416, 0.7085329966735434, 0.8915979169480437, 0.7435575504986167, 0.7942015151353116, 0.5852120339364547, 0.6248583089191693, 0.533720504730492, 0.5808590989872902, 0.7674022252511092, 0.5352303247603765, 0.8929172204651721, 0.9298996623493543, 0.7399160368819664, 0.8491452513027938, 0.8009447086095887, 0.6858495531553173, 0.9205208704692962, 0.5498010275340441, 0.6885306299086118, 0.9493466277037135, 0.9126882171791727, 0.7242080354189405, 0.779677823725339, 0.6209387110808477, 0.6521156237663281, 0.5609265550756573, 0.8714532926492973, 0.9738257937621964, 0.5730090159049864, 0.6236913783317743, 0.8103846162844128, 0.550514118912026, 0.9453810548881065, 0.676561246369499, 0.8737158345779305, 0.7195704743962363, 0.8250833564570685, 0.5711235465125184, 0.9961577336571243, 0.8898025723388889, 0.5499912637616282, 0.7342504575033502, 0.5580161936798849, 0.8160509649423539, 0.7692437783094648, 0.6454592692206365, 0.6379005968691499, 0.7908275507388141, 0.5364186743576884, 0.5174274963260134, 0.8762003310595562, 0.6220328056650568, 0.9612973028634704, 0.7551437144310815, 0.6604707819119457, 0.6241222936828332, 0.5102511833105021, 0.6593425861866729, 0.6405022078485849, 0.9448165450353064, 0.5512976921961186, 0.6006897183067188, 0.9648971850407837, 0.7701323531601039, 0.8025374558855478, 0.7394515043780048, 0.5145563072453855, 0.7029923054097491, 0.8010831142741819, 0.8869004795797291, 0.5771254132842081, 0.906506171086858, 0.6811205170085216, 0.5202775844092578, 0.6061318264438109, 0.5554180300603145, 0.5793291816889257, 0.9440432095281938, 0.5924386865448878, 0.739522461038708, 0.6747649450137685, 0.5945223353220915, 0.6075257828734841, 0.8934157607445814, 0.7214232883296872, 0.8570489548842407, 0.9438022060252153, 0.6794020677118946, 0.9785347620662996, 0.5841882824382123, 0.9778823089006339, 0.8772933964750254, 0.7047773558984493, 0.5935234080658319, 0.7505947055778177, 0.928418878899127, 0.6492318227985119, 0.9271245380436557, 0.5245957752844398, 0.9005797352062185, 0.7213659648115147, 0.6230293640310438, 0.6290468373833955, 0.9539763874395171, 0.5864918358247617, 0.6613152680309353, 0.8309170270842667, 0.9577095583924724, 0.9366752337317532, 0.7321231745071133, 0.687573399696884, 0.9077550041390918, 0.8369323234425726, 0.8865326581331647, 0.5243495437604755, 0.9317029776127025, 0.9597906805184844, 0.54081485131552, 0.8756816275944297, 0.7696136977001068, 0.9998482286134557, 0.8068728955552957, 0.8432585400783645, 0.8886349919598482, 0.7040897712412226, 0.8494930416463295, 0.6996872618216532, 0.9096243637044941, 0.6650494870006951, 0.7657220614061164, 0.6248102637438515, 0.7776802747757662, 0.5512349010608147, 0.903642146335863, 0.8362897290893665, 0.6004194973782315, 0.6941189845390746, 0.9851706476376131, 0.7708870686064144, 0.722212233760438, 0.79199287804799, 0.5562757108309898, 0.6679056211249581, 0.6013475882004147, 0.5330990460553569, 0.9748448202064329, 0.867711033758555, 0.7771889627839987, 0.7281088596543575, 0.744687202891632, 0.7259317475964193, 0.521352166880774, 0.9782273326312014, 0.64962540169613, 0.906578918910214, 0.6037556093552672, 0.8856200229933189, 0.7157790321711095, 0.6613811139991246, 0.6350332278602542, 0.5823211096154128, 0.9439820834936228, 0.7626726062004465, 0.5624890110081777, 0.6862670019110925, 0.8892321601741653, 0.8097776612549274, 0.7213219844360976, 0.8421517275127516, 0.87085433289953, 0.8117416217219225, 0.8380509531375138, 0.9723534076000075, 0.5107970036036773, 0.5489380857074055, 0.7853931445384709, 0.5593132865604528, 0.7547753383688656, 0.7965583491863177, 0.6312137051896058, 0.8777965068483895, 0.9556106234022683, 0.7743728655779831, 0.515546772815817, 0.8009194602687142, 0.534237338924434, 0.5334498189300303, 0.9489961241744536, 0.5489283830241245, 0.5682391881736402, 0.8288993539957605, 0.559619838411338, 0.9223700054881623, 0.8385771714057992, 0.7123384560704857, 0.8104237706050454, 0.8459877378209311, 0.7199269291510486, 0.9801437579985396, 0.5120565089653041, 0.9395940698744711, 0.7062310378399157, 0.9427985045490982, 0.5674992095269755, 0.9698375517774309, 0.7365255478976295, 0.5204514061393635, 0.742701305352772, 0.8583159361398066, 0.8883481803632469, 0.775075317845673, 0.5828767821732534, 0.6735690067049738, 0.9219174210026257, 0.5715247845114291, 0.6543145534568636, 0.8708425167354137, 0.9146869489222791, 0.64783866189826, 0.8432303265793176, 0.9568725790825392, 0.8005015368492747, 0.5010082561118385, 0.5111449055180679, 0.6434634579411189, 0.8483327660028713, 0.8939652676783271, 0.8329663681942885, 0.6620657597120361, 0.8139106538215786, 0.765008478334126, 0.5828610340507805, 0.9185718366979858, 0.9638971538387204, 0.5137735879722917, 0.7165258159468522, 0.6845834307924131, 0.8651429120068875, 0.9161482241234056, 0.5284748605317886, 0.8004535686391708, 0.8163932844604878, 0.7766481581744449, 0.5491738202722747, 0.7598585012495283, 0.5897956637216832, 0.6016431114980869, 0.8120762680059163, 0.9790974301829156, 0.7422402919281762, 0.9858482848649848, 0.9771926418303102, 0.6289721695730669, 0.5158630013614898, 0.8890485032171644, 0.838878790160469, 0.5819290234822552, 0.8467357816876827, 0.7077650537799125, 0.8712137394645241, 0.6053077812889187, 0.8830843729734448, 0.5348870442076099, 0.7080005075317588, 0.8550661791030864, 0.9086251823004607, 0.8245744312757127, 0.6769100233868368, 0.5180277691122859, 0.757413844397647, 0.7253768716010142, 0.6070707701648197, 0.8531903892379128, 0.9506414067503615, 0.9394715739235655, 0.5083061202811014, 0.742259116812598, 0.64650095307152, 0.8617590221457223, 0.845128407268364, 0.9392049467147537, 0.6906811054392379, 0.5687698639591297, 0.7726772481671287, 0.8849538520641235, 0.8280807133586983, 0.5169017610628515, 0.8585201463462538, 0.5199866216335485, 0.5430839460977142, 0.5452609392666546, 0.6739979180437742, 0.5034311150457471, 0.9957696916726502, 0.5217404360003679, 0.5668308849259587, 0.5468797986957804, 0.6953953700805352, 0.668880586501619, 0.8341953036261303, 0.9254077105811365, 0.9787227631711921, 0.7575562058989076, 0.7936501988884399, 0.794562198189731, 0.7313092345550603, 0.5813516481120691, 0.8567420964058636, 0.7790014572439502, 0.8410525518172487, 0.5429676919034245, 0.5406230468888764, 0.5811153587392184, 0.7646038548006309, 0.9429263507502881, 0.8854137253250911, 0.6608405541914584, 0.8757646289308034, 0.6638417066958673, 0.5883667685345305, 0.5565859355065301, 0.8256250283335456, 0.6223835431244917, 0.8406633533123462, 0.9342235740491847, 0.8768795820411347, 0.5486459144708471, 0.7138245014504632, 0.510119655210366, 0.9978303687241586, 0.5580355108758575, 0.9837262161153372, 0.7918037673759845, 0.6448119294416617, 0.9638406719854292, 0.816468743461781, 0.63211828233558, 0.6881487140398808, 0.9790416645323758, 0.8458163290683384, 0.6567543558458393, 0.7953713155607813, 0.5212090052521372, 0.6924792926454859, 0.5974522129758499, 0.7759585043548161, 0.9481040176642159, 0.6687091831163238, 0.9596252605103789, 0.5338702579504686, 0.681257553823694, 0.7244608737603598, 0.9017242175825946, 0.7873582789330418, 0.651737270617951, 0.8159770622412895, 0.9077732259066691, 0.7296921599776045, 0.5829027308479324, 0.587975186441861, 0.9973400334832956, 0.8304320201913724, 0.5100866782788432, 0.6957893662177647, 0.5552257855112842, 0.5319936863422421, 0.5329540257097125, 0.7994050140139275, 0.9044615212060487, 0.5252943066466073, 0.9617272749547491, 0.7692748421867537, 0.5458854047653587, 0.9364184200779201, 0.822980178803419, 0.7013967366419671, 0.7949579247192122, 0.7190417243842995, 0.9487829963284179, 0.7879557216013744, 0.6163037798273796, 0.7484574642884574, 0.5636244643223463, 0.9514737187860185, 0.9727656431795624, 0.9086714771065549, 0.8736577420912777, 0.7812735608752059, 0.8976166814137442, 0.8436871126205299, 0.5669503251998967, 0.7048329429192588, 0.6995261716194461, 0.747755849482655, 0.8708474898649072, 0.5587044719233198, 0.8498385116132873, 0.5603752889772134, 0.6009807234008435, 0.8589963789467931, 0.7555413625985472, 0.7439810184017064, 0.7243859479758141, 0.920868899880726, 0.784734824343447, 0.5319875314606237, 0.9998039003213356, 0.5984270385826955, 0.9284635399825887, 0.9265310270164692, 0.5908938129419185, 0.9898270379073114, 0.9664563422104939, 0.8862787442072462, 0.5151896993722079, 0.7588504977254317, 0.6938318788615689, 0.7262763402753332, 0.5019348510620997, 0.6734530767198995, 0.7403755827584422, 0.8987253908284906, 0.9093809641103281, 0.5162334493850566, 0.9777441528778765, 0.7434043968797737, 0.667655751195154, 0.5107772508546701, 0.7353324492913209, 0.9048708203784159, 0.6110564843788362, 0.9524932255869654, 0.8748140142053321, 0.661715383342879, 0.9170562944878764, 0.8270321024650125, 0.6916037247635929, 0.5733576056420799, 0.7344174398025756, 0.9306536242370642, 0.5736837044224656, 0.5392228711040726, 0.8392292000376891, 0.9346184585644677, 0.5506160986541542, 0.8959993217192681, 0.6817445803737496, 0.895545093706879, 0.883395227186919, 0.6089348425242389, 0.7412252091208655, 0.786279641011844, 0.7089872800067458, 0.8186487602791417, 0.6110482971739786, 0.811729421665893, 0.6203103004058776, 0.9223758064229952, 0.8462688957813389, 0.5226759575596505, 0.9422544600480651, 0.5708719531123201, 0.9829138866378232, 0.5979560110536963, 0.5764820116716876, 0.7775495042006025, 0.6018473074844577, 0.9551725439866827, 0.6095803535293132, 0.8201288668918004, 0.6674186617967515, 0.7685227196665148, 0.8457043635185695, 0.8493664270812603, 0.8259092228525888, 0.7865857740853952, 0.5553435032409544, 0.729991214506077, 0.7125859060266009, 0.5548710605798082, 0.5127394721828561, 0.6193163388348896, 0.9748351072200265, 0.5955946347059309, 0.8207704686432733, 0.6719523873446653, 0.8262265047623909, 0.6170062475672302, 0.7119487838617852, 0.8727146693336738, 0.5297381998717225, 0.8398086681709238, 0.8567064817696808, 0.5907641414882703, 0.5393646834090856, 0.5420386455777957, 0.951808546427303, 0.9004626519698744, 0.7150407853167033, 0.5628287287090435, 0.9765482650765049, 0.6034605550401261, 0.8336274332900693, 0.5831591747942572, 0.9758606134598378, 0.7503449610673675, 0.7470731609500922, 0.8552843581870275, 0.8348652112334823, 0.8278889674974546, 0.5590161786609843, 0.52155545832859, 0.54789493550217, 0.5278552509953292, 0.6249292720812482, 0.990071829441885, 0.7211881113815415, 0.8553596296982822, 0.6161258873733182, 0.9878036435441586, 0.7107296420827756, 0.6019903101343804, 0.7430676807348038, 0.6556674159205167, 0.8681603807775775, 0.565797040450942, 0.891043104554721, 0.7627966606182305, 0.825723974428516, 0.6269790757203394, 0.5241319447655334, 0.6885640990283586, 0.8848569025886166, 0.540363860864045, 0.8589145938891332, 0.5680616589708776, 0.6571210890388299, 0.5654341761193635, 0.8674866633253133, 0.5780928422681129, 0.75474272746394, 0.9746795050287034, 0.6078043139972098, 0.8129678704367106, 0.798204752215846, 0.6671416524766048, 0.5227862121927884, 0.8751780547953057, 0.7290996408872042, 0.9634257858419162, 0.8588250699121396, 0.9824341685639346, 0.6450581026676507, 0.5771135141511237, 0.6308919431595419, 0.9455762364483344, 0.9718638175670034, 0.6293104280846535, 0.7719908160642908, 0.8359857424438305, 0.8664293879513396, 0.9486667327575679, 0.640021065022633, 0.7500281409032933, 0.9268668371965134, 0.9155855397493615, 0.5752703072150323, 0.9849399997504352, 0.8795492847932784, 0.7673663550865244, 0.7969705106735337, 0.7856843138896032, 0.6153757242654116, 0.5848819981707338, 0.9949569020155424, 0.8481992728429331, 0.6003371745214681, 0.8204572512310438, 0.8333566701407049, 0.9614657203557246, 0.9939891535709651, 0.9728709260252413, 0.7812660350817078, 0.5156955290653354, 0.5633696264352879, 0.9757619389504016, 0.5770510800827362, 0.7868432040540478, 0.8172377950329688, 0.9771706994468342, 0.8519214899871306, 0.7288684493014301, 0.697667617356373, 0.81703875560392, 0.6963291988138816, 0.7307866849959488, 0.7319112589946761, 0.7113062696015767, 0.5063127114465165, 0.6914194973056018, 0.534969365883947, 0.8905465822633413, 0.6927666229933513, 0.8824608549436095, 0.6528177947547422, 0.8132599775348389, 0.5085959725748039, 0.6461691280386148, 0.5827056998436534, 0.617497813621519, 0.8102710258199337, 0.7649491016304364, 0.741415844214881, 0.8424405471254321, 0.5835825039409601, 0.8037479864384762, 0.6503961748456282, 0.7128569381276465, 0.9627941444337602, 0.9014667229095612, 0.6537496348232504, 0.9756671599714783, 0.7309590626848321, 0.5868215359948924, 0.530610356885344, 0.7775414676197614, 0.9225055485099007, 0.5909564450558871, 0.7697633118186005, 0.7204956757326855, 0.5085723996689331, 0.6733000997524454, 0.7216969891898055, 0.849798332126068, 0.969812604593338, 0.9532358314399978, 0.5971732887060408, 0.6598272812517705, 0.873294296728218, 0.6626646149591577, 0.8930542710898874, 0.9703853577597285, 0.5603377247436859, 0.7715868686766723, 0.5914778066265833, 0.8093326183348604, 0.7886222919578652, 0.6570552129606104, 0.736929932117836, 0.6757149338085342, 0.617170902364655, 0.6784534848267536, 0.9957274409433706, 0.8158318032303368, 0.7605573886737722, 0.8841932422138328, 0.881229385408508, 0.7447325102117898, 0.6584371440785828, 0.7155485733601649, 0.9326640493851315, 0.626105122124279, 0.8721872206904118, 0.5784280436081006, 0.675623215122565, 0.7983625484135074, 0.8881661837480872, 0.5045651294959437, 0.6954838139291882, 0.9253491998838534, 0.8083805392184663, 0.7363404787200429, 0.5436467788712366, 0.6211310622767904, 0.7642454740407798, 0.6395520195374372, 0.6557127646817831, 0.946972999261313, 0.5827169936747605, 0.7535586827130222, 0.8897300104865691, 0.5037668244077631, 0.9919434322191149, 0.7627741833876458, 0.8608303141602688, 0.5106794075984444, 0.501522426978049, 0.8956467789148741, 0.8422977638979341, 0.6385433525705182, 0.9520494765651338, 0.7290048116594101, 0.9570242794267121, 0.8473245150603519, 0.6564056167350298, 0.611061117404862, 0.8255373738945897, 0.5425854221102719, 0.856988842045518, 0.5087504757538712, 0.7614505665818443, 0.8904654807511425, 0.8012159713766869, 0.7162560520921952, 0.6221190079907852, 0.7611105755137213, 0.5185137466048356, 0.8168102019559262, 0.8049879761517759, 0.9830040516869252, 0.685124673754403, 0.5144618835503696, 0.5337467486126978, 0.8728169947261984, 0.8790982118563868, 0.9337946986195547, 0.8810782384900318, 0.6402389555628966, 0.6008448113239335, 0.9544939222832196, 0.5979856530475252, 0.9040190929920966, 0.9674416047029015, 0.7195886266485108, 0.6020887083419335, 0.9916267152230815, 0.6356902743727626, 0.7082250315635092, 0.8551567008947701, 0.6024696278393793, 0.8001556431036437, 0.7837134374587922, 0.5019333501030736, 0.9454332662611977, 0.6165821307955232, 0.5433681941067829, 0.6636494482666258, 0.5120630746767162, 0.6000523425544175, 0.6290062815792216, 0.7570096195789827, 0.8811762707761, 0.7602317086026144, 0.5105365465103482, 0.9493808592639861, 0.9489044464146086, 0.5958584952202897, 0.6365052807633288, 0.7135784904342964, 0.6433399225097499, 0.6961645075460563, 0.5231282471053051, 0.621703081215535, 0.7400715499195514, 0.56278386515354, 0.9652825829952962, 0.6604880580391941, 0.7417984247218634, 0.5469357413982469, 0.6624900104527327, 0.6969969204991939, 0.576977927884735, 0.8818964280859385, 0.9386238851414744, 0.9712234550077414, 0.9142096295962934, 0.819640128994992, 0.7465257370941795, 0.976711628797214, 0.6176097374374531, 0.6876931207781141, 0.9731705878196801, 0.629244946524147, 0.7532338955833222, 0.5116215398046742, 0.6580966546210554, 0.6800134366578157, 0.792116091049444, 0.73927845877573, 0.8134100560770253, 0.7334201727665978, 0.9870460313497402, 0.9092339717177602, 0.630681534392955, 0.8651457993292773, 0.859626672043103, 0.6057079030085435, 0.6467057154108469, 0.9986380345681283, 0.9408753881036469, 0.6798082436982656, 0.5902713348942283, 0.6726751738851807, 0.6052582957795131, 0.6746877513184628, 0.8846117450054113, 0.6751576020708767, 0.7446911923779987, 0.6449899547906854, 0.8555295092941122, 0.6222886909171743, 0.8928618783551139, 0.8026485037138493, 0.6583852512814118, 0.9269283947938758, 0.8143502447304132, 0.7701170805878634, 0.9002265735580314, 0.891688171707121, 0.7937077157538972, 0.7832716407325775, 0.5124376647304936, 0.5061945300315023, 0.8981618860831961, 0.7528764755843996, 0.5229029362343436, 0.798840325529931, 0.5584321583425707, 0.8292768798252022, 0.8482154496248144, 0.8816482850689307, 0.8696801485831137, 0.6257908321312262, 0.9951036850388881, 0.8548639024431236, 0.7421753957393484, 0.5956854252288597, 0.8512883777831621, 0.6580118325426887, 0.5743978590676996, 0.6352585546546863, 0.9138169830222929, 0.7782584784226871, 0.8250154827396533, 0.6848890806562771, 0.5447785537912799, 0.971162052234159, 0.8800352733813247, 0.7642362043003093, 0.8040632840506987, 0.7463025106536021, 0.641183719766762, 0.8622071641169099, 0.9726642515082226, 0.5206994291213478, 0.7140858438776063, 0.984033260981029, 0.8715190452084436, 0.859282281714467, 0.8959506530634237, 0.9396439156181264, 0.8210265300143886, 0.5064920261238646, 0.9527121642767836, 0.9221306366267371, 0.6033326637389265, 0.9528505397616892, 0.9092456073418218, 0.8573207350365626, 0.698777346002639, 0.5001160057736342, 0.82531441361527, 0.6831160423972944, 0.8031701510830095, 0.7799842345924937, 0.7185738302442137, 0.7130325787280847, 0.5760334959082296, 0.8228357573287097, 0.8668658785199006, 0.5948604513748944, 0.969885173733412, 0.5851041296352728, 0.8214765331809704, 0.9317308695648713, 0.6425865075784049, 0.8253053206667107, 0.6520030100079743, 0.5215885860802382, 0.5595297290581163, 0.5672464050627232, 0.6364400290813654, 0.7556156476065226, 0.884111913785264, 0.6843983457362608, 0.6093051558649909, 0.9479582784489695, 0.6147162171804996, 0.7297352545910644, 0.7864033903360927, 0.5646248006946599, 0.6588893351906965, 0.7110441591724409, 0.5693451583991843, 0.5304426947424012, 0.6481703378775974, 0.6534493672218933, 0.523318797600445, 0.8129395763540639, 0.6619589200510518, 0.991300922880278, 0.5134036755660599, 0.8425029073917496, 0.6785551640939576, 0.9313662620776398, 0.6910724648593523, 0.5045318828226195, 0.7949739965036016, 0.9809006311783133, 0.5104004062321965, 0.8527620434820672, 0.5056214500905536, 0.6066120549703908, 0.7964907189789656, 0.5317886187181733, 0.8933926986724279, 0.7634257033927845, 0.7470764500168684, 0.6950333741090247, 0.7214419092733815, 0.6244258985296098, 0.639841202715512, 0.7918764336754945, 0.72321614927505, 0.6984733663277685, 0.8735178697205147, 0.9652026999842671, 0.6381404110909977, 0.7747754417109194, 0.6051400803898164, 0.6214234880149266, 0.8962983809300823, 0.7065079183866658, 0.794249869086116, 0.9066468174438287, 0.6018160490859664, 0.9273780050131841, 0.8491426389888599, 0.5836478026084436, 0.8811227637192716, 0.7811113040123558, 0.7238681945483042, 0.7836707209194304, 0.5353464920215005, 0.5458270078469478, 0.9708832705982205, 0.7546378486254157, 0.6434405419137497, 0.946360569637263, 0.7169945846342487, 0.8294182292823017, 0.583146630429721, 0.9260447990365959, 0.7430174520878425, 0.727506708857957, 0.6677217633409087, 0.9401658700725251, 0.5262856686970517, 0.9302593864384945, 0.6022863709482695, 0.7352121294641616, 0.5688269141409297, 0.6641252238874462, 0.8713035048892559, 0.874436886586281, 0.7259780512222203, 0.8249114722084898, 0.9160292638453029, 0.5950583872019791, 0.6070163258432155, 0.8911113669271759, 0.6609040563596942, 0.5508645843004274, 0.6242764803102344, 0.71387250886212, 0.6621399704220756, 0.6002482355877876, 0.6725694299187932, 0.609707385119575, 0.9603202000773778, 0.5130420584929797, 0.723089009877269, 0.6170461955346734, 0.5018609619881021, 0.9845004380367346, 0.6787485793387805, 0.8641506923406341, 0.7955768329533769, 0.5160285377424456, 0.7614835337789791, 0.8404327396107321, 0.6766547242191848, 0.9323869487238337, 0.6583316118521274, 0.630899545236957, 0.5925497999068992, 0.7377385348620854, 0.6097443682939188, 0.5601217426260616, 0.9010309185353682, 0.7791176447585904, 0.7735752539382088, 0.7122743106531766, 0.87632377827589, 0.8465425102613455, 0.7327300176727681, 0.7775032232604173, 0.8970808042744965, 0.9411642407315965, 0.764317066189148, 0.9079920417592048, 0.9672251461870931, 0.7644452079206219, 0.878262669160583, 0.5975911910289382, 0.8538547927289845, 0.6786993585076699, 0.9367512137698492, 0.7780460352810183, 0.9532473368798344, 0.718652946687957, 0.7931492864675551, 0.7075878972960057, 0.8736552528073147, 0.519683337149589, 0.8056759056551503, 0.5775052280743584, 0.693150779508845, 0.9371131097199679, 0.6724629752696694, 0.7966738270852074, 0.7964800438424636, 0.6058672206433984, 0.8184425119537933, 0.9121137262542764, 0.9107442872461947, 0.9815127881105239, 0.8167161533774716, 0.6409088431416025, 0.6061633343465155, 0.7509543801019383, 0.9323874515277264, 0.9969765355066451, 0.9882564443072084, 0.6652578664728086, 0.543730515061805, 0.7248543803086003, 0.7732204466121186, 0.8957481962239311, 0.7062836845834723, 0.7421811340626413, 0.9638399609747379, 0.5487876631621691, 0.9697980003801152, 0.660664906955025, 0.5099590290093899, 0.6276713797372702, 0.8865751111906197, 0.6948664503031209, 0.5387585958423331, 0.9226395937748549, 0.9802807168950876, 0.7043171911404422, 0.5674125906212253, 0.8030049971636937, 0.6203810549566792, 0.6401350938796065, 0.9994143532338267, 0.6533275982000131, 0.7195910344550345, 0.5706714658256659, 0.7763625626938278, 0.7138708556746975, 0.920661941698268, 0.7874537765917148, 0.9163420046625297, 0.6891690798030126, 0.6297183509534978, 0.9888132181464604, 0.8363655322697318, 0.5795685917909492, 0.8629799528918647, 0.5626071321936645, 0.8947585440432353, 0.5009639289816467, 0.7718553870901117, 0.8211767397418535, 0.8103842315039567, 0.5385743714788254, 0.7060271307699346, 0.5091909302264369, 0.5104262903144132, 0.6317086856723269, 0.592021367580895, 0.656842907184555, 0.715904453540356, 0.5146176289627113, 0.8812226870331072, 0.8883540677712517, 0.8124872660076872, 0.7559474255048877, 0.7989777289520764, 0.5176699600938364, 0.88187411933677, 0.6512038602457578, 0.706507523219825, 0.937061184255599, 0.5281587123374161, 0.7539045722041173, 0.9246775723040285, 0.5643761359546628, 0.7534572696555533, 0.8976245819985593, 0.5355400511285694, 0.9115574074857953, 0.9354467986730908, 0.9663837206037227, 0.7618886109538494, 0.6800284130298294, 0.6500716164171434, 0.6084229640294055, 0.5857589089032065, 0.5501383833686329, 0.5627016925518478, 0.8188132349885873, 0.6626124809576597, 0.8636134430303188, 0.6683134191083671, 0.7833764043691058, 0.7611413652220399, 0.8178888617621793, 0.9735668166290441, 0.9006003948066091, 0.8103821973069119, 0.6618995320726668, 0.5636273996327614, 0.7023216129489849, 0.8636482731979578, 0.5720110563182662, 0.7962159605148686, 0.7873309213386026, 0.5183119969827215, 0.5905699910364701, 0.9535946696497333, 0.5993923928754775, 0.6874024775261989, 0.6249007167815006, 0.8207042560717995, 0.6818509679054214, 0.6989121809165256, 0.6621602152539763, 0.9352433580930191, 0.6997209264712252, 0.8349789829758312, 0.9407112922636128, 0.833110157045873, 0.7609110026022922, 0.7044704338563377, 0.9997270612959428, 0.622499411029852, 0.7110111531263668, 0.7285204036332678, 0.6950005959550001, 0.5878437698630292, 0.9617751759384086, 0.659905907841858, 0.5053213862166729, 0.8499952328584892, 0.8023554938677864, 0.6792837159476885, 0.6435774196418873, 0.8279738911176646, 0.9310826297414845, 0.6977800495759469, 0.7274832691445681, 0.7947446674461618, 0.7725361592760532, 0.869417783382804, 0.972151772981015, 0.5403320757129644, 0.7834462785482534, 0.7379133617405362, 0.7972781912844986, 0.6725227056343414, 0.7744358600032444, 0.8808460647159224, 0.5030771099334429, 0.8301297828855954, 0.8069061479786277, 0.8122818894796167, 0.8565894797260777, 0.812144623270816, 0.5191172552072595, 0.7560862437967834, 0.9242081353637276, 0.5877159245386268, 0.6216464476224164, 0.6373746166733463, 0.7053700761456456, 0.9426335193042331, 0.6874642652768298, 0.7660634937451782, 0.9048400583701997, 0.7192970222302495, 0.81159904440845, 0.7381538212952339, 0.690091918885483, 0.5867501956710562, 0.7880905963695273, 0.7282790143927127, 0.6780047833578394, 0.9462021424810105, 0.7130970581876785, 0.6972142638420726, 0.8300612824854302, 0.5033989218248414, 0.9088657432030263, 0.8737294769906945, 0.5343193938173583, 0.825727924027255, 0.8732407429703493, 0.9499950046774618, 0.5073456125566096, 0.9470482003206644, 0.5873737658522022, 0.7812318949343335, 0.9613732224898902, 0.5077263664384534, 0.7269295882441313, 0.9106443740711445, 0.9056730563143269, 0.7916893889485407, 0.5677762850342014, 0.5534221338703949, 0.7720314388343759, 0.5813676651920581, 0.8737189974333845, 0.7397797392589901, 0.7714448616594483, 0.7801683918270237, 0.6293579112139989, 0.5999617173899482, 0.5649914789247521, 0.7408840059211796, 0.5104703446838545, 0.5775599766261841, 0.9499087859564298, 0.7775869941867881, 0.9372887612377852, 0.9976324130737151, 0.7050510223639326, 0.9057147407133812, 0.9431508651610446, 0.9793130995623149, 0.7930308491764279, 0.5027103064596589, 0.5224429694636487, 0.7279856328759556, 0.6529518809060255, 0.6134764826408208, 0.6242593091213412, 0.9968823289211131, 0.7391726117209956, 0.9146657986826623, 0.9243870631425604, 0.6361296011169582, 0.8906586043332838, 0.7700143480095792, 0.6271642691328732, 0.6786653179968672, 0.7701898700779598, 0.5140020240012008, 0.9537791185807873, 0.7793852173519319, 0.5825840056090571, 0.9343348587461244, 0.7810830308445593, 0.8826820291560877, 0.8528528110519442, 0.7243987320831627, 0.57566695146071, 0.7293269494225696, 0.7823420304777661, 0.5811533044478469, 0.7093960210292616, 0.5365648087048245, 0.7670870703371007, 0.6106783439779768, 0.5471122415920618, 0.8235081749270361, 0.6784493923499768, 0.6478774928319673, 0.8126670749581574, 0.7904448203137977, 0.6940664816597485, 0.9985648173348364, 0.8350575103482265, 0.5776577677644776, 0.8602709623906519, 0.6657206366253322, 0.8657451588987173, 0.6686684328836747, 0.5267768019918757, 0.5692644604794532, 0.606992839852259, 0.9571628091771716, 0.501056412040159, 0.6268581922844937, 0.9320563509173423, 0.7120608076388661, 0.780424150145987, 0.7593921543087625, 0.9845618306856796, 0.802955814525542, 0.7595875097850542, 0.5357956117505087, 0.9956777454989654, 0.7208593521109716, 0.5119692349769238, 0.721828220057253, 0.8421680412114887, 0.9398576652088274, 0.5855369085116675, 0.9127648891230562, 0.5571057746711348, 0.9632199524242256, 0.9513438155376431, 0.7981841312786453, 0.585353329156995, 0.7298881601592122, 0.6668838238872619, 0.7407670217995717, 0.6629831636346262, 0.7237735868185189, 0.8345891044691979, 0.80957052141836, 0.8709849256204876, 0.6046439719366352, 0.5630268841630314, 0.7982388379155534, 0.9245676254689462, 0.5434720360570492, 0.6203671520742557, 0.7438848247520067, 0.6064137340319726, 0.5767313217729564, 0.9708480320370113, 0.627087374571757, 0.8203843634196607, 0.587487841643761, 0.9618589031752331, 0.9770678342240341, 0.6601011766238232, 0.6408855410086809, 0.8719749158117398, 0.9592336122636309, 0.7369674651976477, 0.5988644166634597, 0.513100783342504, 0.8707738085900508, 0.9471488699659611, 0.5465352557275787, 0.6568986062226787, 0.7708206119198777, 0.8176704364508929, 0.9504071717808722, 0.8509144205636945, 0.8230421206546404, 0.5389161703365754, 0.7824197908015553, 0.9392228934355967, 0.5015991180667951, 0.6682553376563605, 0.8203121692435343, 0.6157967102505599, 0.6677143859294279, 0.5590295909138783, 0.5791890230410903, 0.9953793291955388, 0.9303222746976556, 0.6495943306228322, 0.65006947762784, 0.8763946744827043, 0.6149359329431577, 0.8379963110385453, 0.6146334595204136, 0.8149346960481073, 0.8925384432712737, 0.8019906828612089, 0.6660364361047988, 0.5862825505201004, 0.5338081483171601, 0.6045359085061277, 0.9330158888276457, 0.5421007686859192, 0.6472865488709589, 0.7015562805476037, 0.5041437184456401, 0.8600190675770294, 0.681808531872091, 0.8033814239243721, 0.7290521349021244, 0.6446304214831067, 0.9982389187865026, 0.5085713279678726, 0.8633188978443636, 0.5464580162157227, 0.8518113537958704, 0.9709843877193394, 0.6948238436394867, 0.5366973391095544, 0.5137417740940942, 0.8703008205850367, 0.6128397645564072, 0.9136108672965606, 0.6292942944795616, 0.5037537017175143, 0.9356256309286073, 0.6897161605631786, 0.7951016362562249, 0.8872772678901073, 0.6122621505244719, 0.8213411630714362, 0.9628579486383495, 0.685810035894462, 0.9401054787822429, 0.721018115088081, 0.6468948933349918, 0.7756997553006986, 0.8478858828555691, 0.8029652538471838, 0.6799590874760497, 0.6218792815075318, 0.8241214026489072, 0.7757105691642514, 0.7120709332107433, 0.5682115229717699, 0.7976308997531414, 0.8003787216339125, 0.8978848515688567, 0.5141311011379361, 0.9823619364715184, 0.7823097571243356, 0.9673506911036498, 0.7853374874181656, 0.6895923325879137, 0.7076046452159984, 0.8379939485234029, 0.7254735667479666, 0.804238056425355, 0.9310022723524005, 0.821534077540387, 0.8131768559028263, 0.9122027346606363, 0.7262765737611061, 0.7463598482938513, 0.7147355136111686, 0.6345438092268914, 0.9934204022254545, 0.9018055292488554, 0.7995467167202938, 0.9838837659152992, 0.7420047444351117, 0.6603980722868228, 0.8800437741457666, 0.9644432714903246, 0.6974589977961387, 0.5569586032176963, 0.9139745622111345, 0.9038346340445922, 0.9199100447246512, 0.8910028070279747, 0.8148215834616449, 0.8222746079793057, 0.8010503272222775, 0.5862814765043735, 0.84275888949743, 0.5795467805922341, 0.5773521701312831, 0.8522217926442266, 0.7620556832366542, 0.858331784651937, 0.67319032317957, 0.9300904960726354, 0.6888044753716265, 0.6209580296346147, 0.9645262581279117, 0.5982409958669828, 0.746030815053454, 0.7693604404615746, 0.8132258024367995, 0.8791634039505277, 0.5880544526103375, 0.8553111069308551, 0.5215366362801208, 0.858226526795175, 0.8733159595508599, 0.9945711871039438, 0.7510222267935622, 0.7425177700499946, 0.5649087696287807, 0.8630885819198365, 0.6991494403149048, 0.8342096845194666, 0.6156718366992957, 0.9449410338707964, 0.5860994784465173, 0.6376924090848906, 0.7904343233902356, 0.6361171779231352, 0.8744889179519839, 0.5559642884754441, 0.753827152410443, 0.6688611044707606, 0.7548790646364351, 0.7786645813455002, 0.8783270029291355, 0.9431695130911852, 0.7009404705093674, 0.5992501555646816, 0.5837595712814936, 0.9378392955120578, 0.67458399114148, 0.8290908294096153, 0.754896403229179, 0.6111830499816531, 0.9927142647771936, 0.9905123264614308, 0.6599455348833682, 0.6176236418070544, 0.7646212031892043, 0.9432988761054669, 0.8320036889322042, 0.6016917587566595, 0.670163426503326, 0.8873944119268431, 0.8114541664922292, 0.7372631624412723, 0.8826121049184921, 0.9013470317436061, 0.5533303104385323, 0.8435149813215658, 0.5579923274353157, 0.9112001739157709, 0.7705118768929002, 0.8424229175961339, 0.7629688810609908, 0.8664758470128142, 0.7007186025107178, 0.9116351827413469, 0.5155723554990562, 0.5068813878456899, 0.7565923792561609, 0.7077327554975259, 0.9985916472517582, 0.8008241180791777, 0.674176104282878, 0.9086509694670435, 0.5604306860537978, 0.7056453953060451, 0.8908381235573949, 0.5934779770607026, 0.7156245255452569, 0.5427981788151104, 0.5480599811761568, 0.6847251209812495, 0.6517792935861371, 0.7912471800298773, 0.7090325278240286, 0.908624795040501, 0.7645115393401525, 0.8099836359043209, 0.9193213601012447, 0.5132480741958184, 0.6079835446331006, 0.867147498569889, 0.6440147213651715, 0.9382266522173801, 0.8569839937140982, 0.5706183541337125, 0.8688968574960099, 0.9572226162141564, 0.8080582231452711, 0.7296901686320707, 0.6549194969552407, 0.6528930366392859, 0.6418581400363104, 0.916749008592804, 0.939483703395771, 0.6739667707338259, 0.6300921721568741, 0.7614262639637781, 0.6904470078963866, 0.9054673825795172, 0.9062141211113873, 0.7962255189610418, 0.821322243903988, 0.8280499280075879, 0.8473602456282008, 0.5026601145461884, 0.6536810800849963, 0.6442839807656289, 0.5640843450042623, 0.5648021675333348, 0.5095692195106776, 0.6542524963189121, 0.6452042177278638, 0.5618148360816952, 0.9512328689248042, 0.7472255307289221, 0.8963769737564506, 0.9300299924430002, 0.9958077172389834, 0.8524022417407064, 0.707759474854728, 0.86517701217791, 0.5125187718762605, 0.7110416291309289, 0.9500770876692075, 0.9793749799578778, 0.6710275752388402, 0.685716501723516, 0.7415417583916919, 0.6548695115679872, 0.5796751782189618, 0.9346445432051416, 0.6887854090019652, 0.8970797292942756, 0.6433150809460761, 0.9750421121546071, 0.6362992172514141, 0.8083633398625982, 0.5988156497818011, 0.6589650237826394, 0.9036238621857814, 0.8514119446322396, 0.7569670118628865, 0.5894484116363248, 0.7744317488079386, 0.9522633827601001, 0.7361261849139944, 0.5900125761587945, 0.894437004984967, 0.7306329666042359, 0.6407398185109277, 0.5169035262607365, 0.809697288659484, 0.7898681079767715, 0.503712638491507, 0.6680952824651726, 0.695048784098453, 0.8389196324139174, 0.9076367097633047, 0.8272577036911214, 0.6904417802132709, 0.6139537608653127, 0.9906824566381569, 0.57879498929452, 0.8614497944983666, 0.9994067905785988, 0.7348605834032129, 0.82121764998828, 0.7754374263603538, 0.9785479357665594, 0.8578888442983743, 0.6528052782667606, 0.9958985302844219, 0.5576866431278303, 0.803007392510217, 0.6462785016935351, 0.551609477704228, 0.706316148533244, 0.6452381011422067, 0.6916766184665359, 0.7689921169901128, 0.9961073726030266, 0.6933968530182599, 0.5638741382631562, 0.895492852482783, 0.9206020063743388, 0.9097592180570095, 0.5036995486500832, 0.8721890213993084, 0.7709537253713592, 0.6952967831741662, 0.8041324823169889, 0.762150370445601, 0.685451856592324, 0.905647154509171, 0.6138792176823205, 0.6447481585346637, 0.9117465741190465, 0.9242811177824881, 0.5957817675582744, 0.8497817643588463, 0.9505377281312989, 0.7626928467690581, 0.6157668354736657, 0.9753523778371394, 0.693905515054686, 0.7760536611402131, 0.9625616432530586, 0.5219239582572711, 0.8118559665777823, 0.8919511385658306, 0.9930786150414772, 0.8530031493661475, 0.8918243915415931, 0.5026558505564098, 0.750988874917433, 0.8242718089159895, 0.9364319807668896, 0.5125077893155316, 0.9974886409043922, 0.8803839746407316, 0.6072067209965137, 0.851660368283238, 0.5589004318163848, 0.9913039329551786, 0.7283448943432631, 0.8469725856446841, 0.8069304377711333, 0.6759722489679667, 0.639366665808502, 0.8464456560586233, 0.6500778299380123, 0.6891785095226386, 0.5506134243509486, 0.5152496467225627, 0.5957021866144059, 0.834413112802868, 0.6702306773917488, 0.5304327335932567, 0.8594260932178432, 0.6694305560291818, 0.6544105915720515, 0.7182895679875612, 0.9587203333765634, 0.8861084836387141, 0.8899083819770495, 0.8425447332945325, 0.9373049191937612, 0.8413360905431537, 0.5270418305537332, 0.7458638781308558, 0.5381495700137379, 0.6912452437598258, 0.7370000676809516, 0.7816151589960116, 0.6314410045592918, 0.7184313633164696, 0.8963657343369754, 0.6758490423120944, 0.9399493292801572, 0.8245599266024927, 0.7646620539803868, 0.94127160627358, 0.9799224602197221, 0.6207663821793847, 0.5048113826138512, 0.6878044726687293, 0.5027851346448644, 0.8861805563727982, 0.5788199861629957, 0.6257541801695121, 0.8483710498507463, 0.965104355777993, 0.5490050503213857, 0.6917803694684935, 0.5877082999614134, 0.5564439826790843, 0.7642951703496517, 0.9219522879727332, 0.7327047474989973, 0.5443557301947828, 0.5724611530945116, 0.5479504744182329, 0.7190086661797127, 0.659831540934856, 0.5519636017223665, 0.8477884607412065, 0.5107772067272534, 0.6794234029086554, 0.8508421003446636, 0.7050546092057175, 0.7703224872980153, 0.6973490522294188, 0.5063219601037525, 0.6917558493558786, 0.7286574048969178, 0.788768169103698, 0.7350337745440899, 0.643204387112944, 0.6415783817781722, 0.9409797586676474, 0.8618190165985378, 0.5722782262946886, 0.7316823642092567, 0.5797819535070602, 0.5488347276947811, 0.50360624354741, 0.5528351954994175, 0.7988079819618534, 0.7121137838664024, 0.6471078753891351, 0.7706616981100511, 0.507388728243362, 0.558659347040549, 0.7455003101448574, 0.8186212951784797, 0.9409437280631336, 0.6294915116376211, 0.8182895257604332, 0.6651383380820912, 0.9216567796731374, 0.5580624993770579, 0.6323248285959626, 0.8593628409859368, 0.7651803164136195, 0.666664177950812, 0.7246318668829241, 0.7286695764829645, 0.7999205822917017, 0.7355472231197107, 0.7068774764564911, 0.9762716369848805, 0.8346118844374696, 0.6816768145974889, 0.8330762810426913, 0.6182044716715633, 0.6235961981495476, 0.9562404111427264, 0.6120747996508555, 0.7588681991718979, 0.8899972845807118, 0.5680907865511712, 0.9908171590872487, 0.8602246610510723, 0.6499952230309913, 0.667236545022168, 0.891216312964001, 0.9399910288813473, 0.9006904104761797, 0.8707196532938934, 0.7024692122979094, 0.7523364063094344, 0.7813364338352407, 0.9650709999184659, 0.9780863597757017, 0.9566897861531656, 0.9581211865999629, 0.7743876267843408, 0.5121091324937851, 0.7276358671415026, 0.7259593886732262, 0.5141808316856855, 0.9319913324456437, 0.7871097028690299, 0.8043217322149208, 0.691430720106373, 0.5186653970164872, 0.6475569939372363, 0.7660663291407325, 0.6615666202847955, 0.5713360130384172, 0.7541921244116196, 0.8180240505259428, 0.6722286166334251, 0.6584308649832504, 0.9282734634706542, 0.7968846474992997, 0.510433774154059, 0.9165769810925226, 0.7873527755349081, 0.9366565278258843, 0.5616202539297626, 0.979271172732559, 0.6947533005419584, 0.7734833657664607, 0.8948438544430002, 0.8478843922999667, 0.8624669609370419, 0.6295625360455405, 0.8081919070658008, 0.943569010920235, 0.7537331124777563, 0.7434044481216913, 0.7825054821463442, 0.9206259997580484, 0.5576982365744472, 0.7358322529220559, 0.6945131937110812, 0.6652999393357472, 0.8716274299804996, 0.9442282442742966, 0.5371306925421033, 0.7521744647616883, 0.6255380936861692, 0.8632980861482957, 0.6197523890632584, 0.5876045918649497, 0.6327628458818945, 0.6570506618656222, 0.8316378310024659, 0.6124844988709142, 0.98841757464248, 0.6685517616776696, 0.7422008164879147, 0.6900566542030575, 0.6058489608921296, 0.6002387341103285, 0.9784325761746402, 0.5468236635327661, 0.8807902832000358, 0.6488302249065478, 0.9669119428350782, 0.541642681796395, 0.536091596743241, 0.5132922810706837, 0.6258666410933666, 0.704452146659156, 0.7730867609399317, 0.6279964941315781, 0.6444888761766185, 0.6373477439040967, 0.9310438825108356, 0.6986846495910035, 0.9135345354304575, 0.8057185672281156, 0.7891171117184084, 0.6429426359923003, 0.6386353571945874, 0.9880506014853263, 0.5131499611453819, 0.689007235503535, 0.7079839213941013, 0.963842759838722, 0.645690560794109, 0.7970026257968266, 0.6858499177799122, 0.6344602740801861, 0.6316958994804595, 0.7414706516963778, 0.5949347762986199, 0.8741989756617251, 0.9375222217340768, 0.5506946135836601, 0.9133860726086575, 0.5792892345492967, 0.5065739111063685, 0.9599636398233774, 0.9353430144299204, 0.8970167501822496, 0.6371325347925085, 0.5607314876661917, 0.855308659394107, 0.6045967546085521, 0.5336286954553713, 0.7872283458248224, 0.8713925038260605, 0.8307750317755629, 0.5767296945639147, 0.9849013380193521, 0.8182446270644248, 0.8729729231284772, 0.7918447052351002, 0.9465145741949013, 0.8043266300472749, 0.5720981059795998, 0.5019875403111789, 0.5063978441501273, 0.965547559706204, 0.9324715239162242, 0.9280139201879956, 0.5763400443547644, 0.595981967514552, 0.959351261762003, 0.9329610979884839, 0.5692606790632095, 0.973918830825363, 0.8005413905655636, 0.6379933526660371, 0.6523453084419554, 0.8081486301283729, 0.8938616319703533, 0.6989786995677862, 0.9701645657261178, 0.5392061039584364, 0.8952892096436551, 0.5910056201567992, 0.8844057378613666, 0.547294392543939, 0.5129302991795457, 0.891035531794044, 0.7973070441141994, 0.5520511904192636, 0.965704844402396, 0.5317764356096008, 0.7528936658485155, 0.7528659731200312, 0.6141055083134842, 0.8477684324858878, 0.9714283704130011, 0.8347979635147567, 0.5061285766881781, 0.8141929476177289, 0.6482700245209269, 0.6368256590430981, 0.9959506174081396, 0.6179806329836801, 0.6384890808612476, 0.5500356160391825, 0.6957257518446708, 0.6751421608417507, 0.6341683026770178, 0.9607685932117337, 0.8751632352752526, 0.8603812190655565, 0.7925119856364251, 0.8165619717260697, 0.9930753602669073, 0.9774937121805491, 0.5496366252694442, 0.6975120763994025, 0.6689572968398276, 0.8227670684798715, 0.8636905261690977, 0.9922413515733951, 0.5692071302055028, 0.9867118271021191, 0.6133411656263881, 0.6170147751230962, 0.8300839174610333, 0.640396233461878, 0.8318112676320051, 0.9002002868239263, 0.541463249123036, 0.9204351885636652, 0.9456211455175856, 0.9595666212118356, 0.7135150901612599, 0.6465912687186364, 0.7842941519497164, 0.7079012013706201, 0.6782172492866858, 0.6221859385423356, 0.5994546312580888, 0.8678036882070499, 0.9525146458238671, 0.6473454741943929, 0.9850286127025095, 0.5572413091563413, 0.6893123017127227, 0.919277060133116, 0.925098003089408, 0.6274882575358622, 0.8690328973772381, 0.6356634944888797, 0.6405892086696023, 0.5745387911253275, 0.830698436001196, 0.5454950032551454, 0.8711053157685006, 0.9081878015305623, 0.7707427982307797, 0.596914321477272, 0.5050122998486876, 0.796933923188407, 0.8321285798315917, 0.840080454849614, 0.6257394795154131, 0.517607667631108, 0.9334099904293253, 0.6921895637361358, 0.9541648341184353, 0.6979937873660733, 0.8065241562826604, 0.526582737679339, 0.5242774968763657, 0.7644834609075959, 0.8371249102673943, 0.9726979595833369, 0.7128118197176099, 0.5436501828226064, 0.8066766863536985, 0.6616036718979259, 0.5430130072163117, 0.6676162077353863, 0.8567167008709977, 0.789517210123148, 0.5382839022735193, 0.6057484541214797, 0.5876359530744767, 0.5638961276328702, 0.5811706189403649, 0.534914137478521, 0.5264993577299133, 0.5720022203476961, 0.5562905705098902, 0.8338284060630199, 0.7482721948601616, 0.7306375676106225, 0.8394858289411373, 0.5231453739798171, 0.9392974347455081, 0.9313974260753359, 0.6906299493041653, 0.6915260089070843, 0.9332112368659499, 0.9378124498691435, 0.8579378312825913, 0.8872632217716403, 0.880944538777092, 0.6371676372474623, 0.5398432943384968, 0.5110833013236116, 0.5122703079790221, 0.5086337652908574, 0.8904955145991069, 0.6586875404083679, 0.6370201866093357, 0.7451552895962217, 0.8810900530893072, 0.7254567855720364, 0.7039767669897298, 0.9318528733347407, 0.7967775172866415, 0.8219790062675767, 0.9182920063390345, 0.5557283747698318, 0.9738148173942283, 0.932106195980199, 0.5101102665168674, 0.8038199986963188, 0.6320412021820783, 0.9635016318568482, 0.7538001837357745, 0.8646173868400031, 0.9440693338834011, 0.6507042060171464, 0.9362792282764943, 0.7904158004335213, 0.5253874767782399, 0.8486834190419366, 0.5548689070224484, 0.90370826753541, 0.9102461385982643, 0.8778410550966057, 0.7763816057407731, 0.6622987672525864, 0.9565888234256201, 0.9108241182800711, 0.6225735827146481, 0.8493087770187033, 0.9274028207195495, 0.9956032408332515, 0.9176717521706805, 0.6327948763994915, 0.6256867450881048, 0.6763444786010271, 0.8547804909672689, 0.6077532493761411, 0.936935006026436, 0.9146235607509507, 0.7521522475757751, 0.6262845321446115, 0.868034069611334, 0.7094783939738624, 0.8314006702054626, 0.7252802181147415, 0.8635088390329035, 0.566088231941807, 0.8799843303262871, 0.7350289556495408, 0.5221719061820213, 0.6554833209603161, 0.7654627855705827, 0.5669322996695396, 0.5634560542607875, 0.8940772200195084, 0.7216514223407551, 0.8637040376487974, 0.5744336351025947, 0.8213855497796667, 0.5487561601020481, 0.9922525803404885, 0.9079478980932388, 0.9018008015276013, 0.7259179594342382, 0.8546367666583521, 0.7762403600902039, 0.534161925161849, 0.718760262902612, 0.9668257920203635, 0.8021481416345985, 0.9399561944344342, 0.9303546534682272, 0.6121211322160983, 0.6835949773150779, 0.8175160684797045, 0.7135701141414973, 0.6016440154698091, 0.8091732282694211, 0.9479123982772432, 0.6835172569821869, 0.8665629670569803, 0.7686062322969802, 0.7778776914296034, 0.5536914316754034, 0.7034612022873294, 0.5195618946984116, 0.7174210773645748, 0.7086623845611206, 0.7059269206494792, 0.7742545910179844, 0.5861109361742065, 0.8973502952686365, 0.5404109038294537, 0.9082657576207449, 0.8838915762961617, 0.6690705617799371, 0.5362874448825579, 0.5883887286877734, 0.6171296264016142, 0.7359744207260277, 0.6727600910412133, 0.6968929912440754, 0.6445886987056526, 0.8969630568327993, 0.844406495007652, 0.859410639845109, 0.5542327403452594, 0.5418300788575114, 0.8229336069884807, 0.7702411148415633, 0.6992643021579763, 0.6370216302163579, 0.5935595455539987, 0.7831871918606624, 0.5003690407914905, 0.810537219887935, 0.9584480419933085, 0.9538050833206433, 0.8786074681772853, 0.9543926417561098, 0.8126576604583973, 0.7466015286697134, 0.9476327621893113, 0.6514689624391291, 0.8737260130589884, 0.8768061461398486, 0.9857655449493083, 0.7368372363497715, 0.5838994687950858, 0.8354757136823443, 0.7851187712589868, 0.6854745749379481, 0.9995384789542279, 0.6316204574463615, 0.8319038241772269, 0.8392272629628841, 0.7391079111417818, 0.9072724355525237, 0.7452399978977039, 0.5314650610375145, 0.570334482629419, 0.9251928769762323, 0.9194710871460516, 0.8298856455110102, 0.6854409977741195, 0.6239349431436012, 0.7370293219027274, 0.8881280227922368, 0.7044059062755758, 0.6266541305106641, 0.8408186219062133, 0.7097857083800778, 0.7650375450010813, 0.9008332598474058, 0.9575642758272623, 0.954949099552985, 0.6656088890424113, 0.8157987059515841, 0.5528481260129225, 0.678125638200151, 0.5300394279914213, 0.8418431539125122, 0.89269087084705, 0.5630990507550031, 0.9657617798199922, 0.5728879738077812, 0.8060947630371705, 0.6007291434375273, 0.8672558484697739, 0.8901956733711196, 0.5985282402269115, 0.8858836058901808, 0.6432052042992941, 0.83415652846205, 0.7601058975155932, 0.8001559562566796, 0.8881798414714291, 0.5462888361497189, 0.9308518029946715, 0.6171618534174912, 0.9722863282129968, 0.6338506607961437, 0.6224090051278305, 0.9492333540941631, 0.5325057182443204, 0.7166458345766431, 0.8573100146231493, 0.7563616956470051, 0.6537751504821954, 0.5372396525684561, 0.8765571181228624, 0.584634103589377, 0.5017986753946342, 0.9041155158229874, 0.8127482175792308, 0.9921790188491411, 0.947302547922207, 0.839687624671009, 0.6929239113066084, 0.6452224913626599, 0.7545092730127408, 0.7338104266763523, 0.8419344766989096, 0.5408044914327763, 0.9816741504351705, 0.7547134406922869, 0.5246371755401358, 0.6516861740256075, 0.509073752865805, 0.7243719298964837, 0.7833790351945757, 0.7754787649651959, 0.9934064162055186, 0.9130432999893378, 0.54534318866541, 0.9776684577179982, 0.6494662412937169, 0.5326428414157551, 0.9394318441181781, 0.8954115637592024, 0.9182176339694715, 0.5676089093923226, 0.8371711573428958, 0.9961707257373542, 0.7847590361338429, 0.6985191900797748, 0.731419520464657, 0.8940504394046963, 0.9124006645305888, 0.7274616501676814, 0.9889997891408733, 0.8896960648606576, 0.7626320000667504, 50000.0}; int h_B[]= { 3, 5, 7, 9, 11, 13, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 145, 147, 149, 151, 153, 155, 157, 159, 161, 163, 165, 167, 169, 171, 173, 175, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 251, 253, 255, 257, 259, 261, 263, 265, 267, 269, 271, 273, 275, 277, 279, 281, 283, 285, 287, 289, 291, 293, 295, 297, 299, 301, 303, 305, 307, 309, 311, 313, 315, 317, 319, 321, 323, 325, 327, 329, 331, 333, 335, 337, 339, 341, 343, 345, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 375, 377, 379, 381, 383, 385, 387, 389, 391, 393, 395, 397, 399, 401, 403, 405, 407, 409, 411, 413, 415, 417, 419, 421, 423, 425, 427, 429, 431, 433, 435, 437, 439, 441, 443, 445, 447, 449, 451, 453, 455, 457, 459, 461, 463, 465, 467, 469, 471, 473, 476, 478, 480, 482, 485, 487, 489, 491, 493, 495, 497, 499, 501, 503, 505, 507, 509, 511, 513, 515, 517, 519, 521, 523, 525, 527, 529, 531, 533, 535, 537, 539, 541, 543, 545, 547, 549, 551, 553, 555, 557, 559, 561, 563, 565, 567, 569, 571, 573, 575, 577, 579, 581, 583, 585, 587, 589, 591, 593, 595, 597, 599, 601, 603, 605, 607, 609, 611, 613, 615, 617, 619, 621, 623, 625, 627, 629, 631, 633, 635, 637, 639, 642, 644, 647, 649, 651, 653, 655, 657, 659, 661, 663, 665, 668, 670, 672, 674, 677, 679, 681, 683, 687, 689, 691, 693, 695, 697, 700, 702, 704, 706, 711, 713, 715, 717, 719, 721, 723, 725, 727, 729, 731, 733, 735, 737, 739, 741, 743, 745, 747, 749, 751, 753, 755, 757, 759, 761, 763, 765, 768, 770, 773, 775, 778, 780, 782, 784, 786, 788, 790, 792, 795, 797, 800, 802, 805, 807, 809, 811, 813, 815, 817, 819, 822, 824, 827, 829, 831, 833, 836, 838, 840, 842, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 867, 869, 872, 874, 877, 879, 881, 883, 885, 887, 890, 892, 894, 896, 898, 900, 903, 905, 908, 910, 913, 915, 918, 920, 923, 925, 928, 930, 933, 935, 938, 940, 942, 944, 946, 948, 951, 953, 955, 957, 959, 961, 964, 966, 968, 970, 972, 974, 977, 979, 982, 984, 987, 989, 992, 994, 996, 998, 1001, 1003, 1005, 1007, 1010, 1012, 1016, 1018, 1020, 1022, 1025, 1027, 1030, 1032, 1035, 1037, 1040, 1042, 1045, 1047, 1050, 1052, 1055, 1057, 1060, 1062, 1065, 1067, 1070, 1072, 1075, 1077, 1080, 1082, 1085, 1087, 1090, 1092, 1095, 1097, 1100, 1102, 1104, 1106, 1108, 1110, 1113, 1115, 1118, 1120, 1123, 1125, 1128, 1130, 1133, 1135, 1138, 1140, 1143, 1145, 1148, 1150, 1153, 1155, 1158, 1160, 1163, 1165, 1168, 1170, 1172, 1174, 1176, 1178, 1181, 1183, 1186, 1188, 1191, 1193, 1196, 1198, 1200, 1202, 1204, 1206, 1208, 1210, 1212, 1214, 1216, 1218, 1220, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1289, 1291, 1293, 1295, 1297, 1299, 1301, 1303, 1305, 1307, 1309, 1311, 1313, 1315, 1317, 1319, 1321, 1323, 1326, 1328, 1330, 1332, 1335, 1337, 1339, 1341, 1343, 1345, 1347, 1349, 1351, 1353, 1355, 1357, 1359, 1361, 1363, 1365, 1367, 1369, 1371, 1373, 1375, 1377, 1379, 1381, 1383, 1385, 1389, 1391, 1393, 1395, 1397, 1399, 1401, 1403, 1405, 1407, 1409, 1411, 1413, 1415, 1418, 1420, 1423, 1425, 1428, 1430, 1433, 1435, 1438, 1440, 1443, 1445, 1448, 1450, 1453, 1455, 1457, 1459, 1461, 1463, 1466, 1468, 1471, 1473, 1475, 1477, 1479, 1481, 1483, 1485, 1488, 1490, 1492, 1494, 1497, 1499, 1501, 1503, 1506, 1508, 1512, 1514, 1516, 1518, 1520, 1522, 1525, 1527, 1530, 1532, 1537, 1539, 1541, 1543, 1545, 1547, 1550, 1552, 1555, 1557, 1560, 1562, 1565, 1567, 1569, 1571, 1573, 1575, 1578, 1580, 1583, 1585, 1588, 1590, 1593, 1595, 1598, 1600, 1603, 1605, 1608, 1610, 1613, 1615, 1618, 1620, 1623, 1625, 1628, 1630, 1633, 1635, 1637, 1639, 1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1665, 1667, 1669, 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, 1691, 1693, 1695, 1697, 1699, 1701, 1703, 1705, 1707, 1709, 1711, 1713, 1715, 1717, 1719, 1721, 1723, 1725, 1727, 1729, 1731, 1733, 1735, 1738, 1740, 1742, 1744, 1747, 1749, 1752, 1754, 1757, 1759, 1762, 1764, 1767, 1769, 1772, 1774, 1777, 1779, 1781, 1783, 1785, 1787, 1790, 1792, 1795, 1797, 1800, 1802, 1805, 1807, 1810, 1812, 1815, 1817, 1820, 1822, 1825, 1827, 1830, 1832, 1835, 1837, 1840, 1842, 1845, 1847, 1850, 1852, 1855, 1857, 1860, 1862, 1865, 1867, 1869, 1871, 1873, 1875, 1878, 1880, 1883, 1885, 1888, 1890, 1893, 1895, 1898, 1900, 1903, 1905, 1910, 1912, 1914, 1916, 1918, 1920, 1922, 1924, 1926, 1928, 1930, 1932, 1934, 1936, 1938, 1940, 1943, 1945, 1948, 1950, 1952, 1954, 1956, 1958, 1960, 1962, 1964, 1966, 1968, 1970, 1972, 1974, 1976, 1978, 1980, 1982, 1984, 1986, 1988, 1990, 1992, 1994, 1996, 1998, 2000, 2002, 2004, 2006, 2008, 2010, 2012, 2014, 2016, 2018, 2020, 2022, 2024, 2026, 2028, 2030, 2032, 2034, 2036, 2038, 2040, 2042, 2044, 2046, 2048, 2050, 2052, 2054, 2056, 2058, 2060, 2062, 2064, 2066, 2068, 2070, 2072, 2074, 2076, 2078, 2080, 2082, 2084, 2086, 2088, 2090, 2092, 2094, 2096, 2098, 2100, 2102, 2104, 2106, 2109, 2111, 2113, 2115, 2117, 2119, 2121, 2123, 2125, 2127, 2129, 2131, 2133, 2135, 2137, 2139, 2141, 2143, 2145, 2147, 2149, 2151, 2153, 2155, 2157, 2159, 2161, 2163, 2165, 2167, 2169, 2171, 2174, 2176, 2178, 2180, 2182, 2184, 2186, 2188, 2190, 2192, 2194, 2196, 2199, 2201, 2203, 2205, 2208, 2210, 2212, 2214, 2217, 2219, 2221, 2223, 2226, 2228, 2230, 2232, 2234, 2236, 2238, 2240, 2242, 2244, 2246, 2248, 2250, 2252, 2254, 2256, 2258, 2260, 2262, 2264, 2266, 2268, 2270, 2272, 2274, 2276, 2278, 2280, 2282, 2284, 2287, 2289, 2292, 2294, 2296, 2298, 2300, 2302, 2304, 2306, 2308, 2310, 2312, 2314, 2316, 2318, 2320, 2322, 2324, 2326, 2328, 2330, 2332, 2334, 2336, 2338, 2340, 2342, 2344, 2346, 2348, 2350, 2352, 2354, 2356, 2358, 2360, 2362, 2364, 2366, 2368, 2370, 2372, 2374, 2376, 2378, 2380, 2382, 2384, 2386, 2388, 2390, 2392, 2394, 2396, 2398, 2400, 2402, 2404, 2406, 2408, 2410, 2412, 2414, 2416, 2418, 2420, 2422, 2424, 2426, 2428, 2430, 2432, 2434, 2436, 2438, 2440, 2442, 2444, 2446, 2448, 2450, 2452, 2454, 2456, 2458, 2460, 2462, 2464, 2466, 2468, 2470, 2473, 2475, 2477, 2479, 2481, 2483, 2485, 2487, 2489, 2491, 2493, 2495, 2497, 2499, 2501, 2503, 2505, 2507, 2509, 2511, 2513, 2515, 2517, 2519, 2521, 2523, 2525, 2527, 2529, 2531, 2533, 2535, 2537, 2539, 2541, 2543, 2545, 2547, 2549, 2551, 2553, 2555, 2557, 2559, 2562, 2564, 2566, 2568, 2571, 2573, 2575, 2577, 2579, 2581, 2583, 2585, 2587, 2589, 2592, 2594, 2596, 2598, 2601, 2603, 2605, 2607, 2610, 2612, 2615, 2617, 2621, 2623, 2625, 2627, 2629, 2631, 2633, 2635, 2637, 2639, 2641, 2643, 2645, 2647, 2649, 2651, 2653, 2655, 2658, 2660, 2662, 2664, 2667, 2669, 2672, 2674, 2677, 2679, 2682, 2684, 2687, 2689, 2691, 2693, 2695, 2697, 2700, 2702, 2705, 2707, 2710, 2712, 2715, 2717, 2720, 2722, 2725, 2727, 2729, 2731, 2733, 2735, 2738, 2740, 2743, 2745, 2748, 2750, 2753, 2755, 2758, 2760, 2763, 2765, 2768, 2770, 2773, 2775, 2778, 2780, 2783, 2785, 2788, 2790, 2793, 2795, 2798, 2800, 2803, 2805, 2808, 2810, 2813, 2815, 2817, 2819, 2821, 2823, 2826, 2828, 2831, 2833, 2836, 2838, 2841, 2843, 2846, 2848, 2851, 2853, 2856, 2858, 2861, 2863, 2865, 2867, 2869, 2871, 2874, 2876, 2879, 2881, 2884, 2886, 2889, 2891, 2894, 2896, 2899, 2901, 2904, 2906, 2909, 2911, 2914, 2916, 2919, 2921, 2924, 2926, 2929, 2931, 2934, 2936, 2939, 2941, 2944, 2946, 2949, 2951, 2954, 2956, 2959, 2961, 2964, 2966, 2969, 2971, 2974, 2976, 2979, 2981, 2984, 2986, 2989, 2991, 2994, 2996, 2999, 3001, 3004, 3006, 3009, 3011, 3013, 3015, 3017, 3019, 3022, 3024, 3027, 3029, 3032, 3034, 3037, 3039, 3041, 3043, 3046, 3048, 3051, 3053, 3059, 3061, 3063, 3065, 3067, 3069, 3072, 3074, 3077, 3079, 3082, 3084, 3087, 3089, 3092, 3094, 3097, 3099, 3101, 3103, 3105, 3107, 3109, 3111, 3113, 3115, 3117, 3119, 3122, 3124, 3127, 3129, 3132, 3134, 3137, 3139, 3142, 3144, 3147, 3149, 3155, 3157, 3159, 3161, 3163, 3165, 3168, 3170, 3172, 3174, 3176, 3178, 3181, 3183, 3186, 3188, 3194, 3196, 3199, 3201, 3204, 3206, 3208, 3210, 3213, 3215, 3217, 3219, 3224, 3226, 3228, 3230, 3232, 3234, 3236, 3238, 3241, 3243, 3245, 3247, 3249, 3251, 3254, 3256, 3259, 3261, 3264, 3266, 3269, 3271, 3273, 3275, 3277, 3279, 3281, 3283, 3285, 3287, 3290, 3292, 3295, 3297, 3300, 3302, 3305, 3307, 3310, 3312, 3315, 3317, 3320, 3322, 3325, 3327, 3330, 3332, 3334, 3336, 3338, 3340, 3342, 3344, 3346, 3348, 3351, 3353, 3356, 3358, 3360, 3362, 3364, 3366, 3368, 3370, 3372, 3374, 3376, 3378, 3380, 3382, 3385, 3387, 3389, 3391, 3393, 3395, 3398, 3400, 3403, 3405, 3407, 3409, 3411, 3413, 3416, 3418, 3421, 3423, 3426, 3428, 3431, 3433, 3436, 3438, 3441, 3443, 3446, 3448, 3451, 3453, 3456, 3458, 3460, 3462, 3464, 3466, 3468, 3470, 3472, 3474, 3476, 3478, 3480, 3482, 3484, 3486, 3488, 3490, 3492, 3494, 3497, 3499, 3501, 3503, 3505, 3507, 3510, 3512, 3515, 3517, 3519, 3521, 3523, 3525, 3528, 3530, 3533, 3535, 3538, 3540, 3543, 3545, 3547, 3549, 3551, 3553, 3556, 3558, 3561, 3563, 3566, 3568, 3571, 3573, 3576, 3578, 3582, 3584, 3586, 3588, 3593, 3595, 3598, 3600, 3603, 3605, 3608, 3610, 3613, 3615, 3617, 3619, 3622, 3624, 3627, 3629, 3641, 3643, 3646, 3648, 3651, 3653, 3656, 3658, 3661, 3663, 3665, 3667, 3669, 3671, 3674, 3676, 3679, 3681, 3684, 3686, 3689, 3691, 3694, 3696, 3699, 3701, 3703, 3705, 3708, 3710, 3713, 3715, 3721, 3723, 3725, 3727, 3729, 3731, 3734, 3736, 3739, 3741, 3744, 3746, 3749, 3751, 3753, 3755, 3757, 3759, 3762, 3764, 3767, 3769, 3772, 3774, 3777, 3779, 3781, 3783, 3785, 3787, 3790, 3792, 3795, 3797, 3800, 3802, 3805, 3807, 3810, 3812, 3815, 3817, 3820, 3822, 3825, 3827, 3829, 3831, 3834, 3836, 3839, 3841, 3847, 3849, 3852, 3854, 3857, 3859, 3862, 3864, 3867, 3869, 3872, 3874, 3877, 3879, 3882, 3884, 3887, 3889, 3891, 3893, 3895, 3897, 3900, 3902, 3905, 3907, 3910, 3912, 3915, 3917, 3920, 3922, 3925, 3927, 3930, 3932, 3935, 3937, 3939, 3941, 3943, 3945, 3948, 3950, 3953, 3955, 3958, 3960, 3963, 3965, 3967, 3969, 3971, 3973, 3975, 3977, 3980, 3982, 3984, 3986, 3990, 3992, 3995, 3997, 4000, 4002, 4005, 4007, 4010, 4012, 4014, 4016, 4018, 4020, 4022, 4024, 4026, 4028, 4030, 4032, 4034, 4036, 4039, 4041, 4044, 4046, 4049, 4051, 4054, 4056, 4059, 4061, 4064, 4066, 4069, 4071, 4074, 4076, 4079, 4081, 4084, 4086, 4089, 4091, 4093, 4095, 4097, 4099, 4102, 4104, 4107, 4109, 4112, 4114, 4117, 4119, 4122, 4124, 4127, 4129, 4132, 4134, 4137, 4139, 4142, 4144, 4147, 4149, 4152, 4154, 4157, 4159, 4161, 4163, 4165, 4167, 4170, 4172, 4175, 4177, 4180, 4182, 4185, 4187, 4189, 4191, 4193, 4195, 4197, 4199, 4202, 4204, 4207, 4209, 4215, 4217, 4219, 4221, 4223, 4225, 4228, 4230, 4233, 4235, 4238, 4240, 4243, 4245, 4248, 4250, 4253, 4255, 4258, 4260, 4263, 4265, 4267, 4269, 4271, 4273, 4275, 4277, 4279, 4281, 4283, 4285, 4287, 4289, 4291, 4293, 4295, 4297, 4299, 4301, 4303, 4305, 4307, 4309, 4311, 4313, 4315, 4317, 4319, 4321, 4323, 4325, 4327, 4329, 4331, 4333, 4335, 4337, 4339, 4341, 4343, 4345, 4347, 4349, 4351, 4353, 4355, 4357, 4359, 4361, 4363, 4365, 4367, 4369, 4371, 4373, 4375, 4377, 4379, 4381, 4383, 4385, 4387, 4389, 4391, 4393, 4395, 4397, 4399, 4401, 4403, 4405, 4407, 4409, 4411, 4413, 4415, 4417, 4419, 4421, 4424, 4426, 4428, 4430, 4433, 4435, 4437, 4439, 4442, 4444, 4446, 4448, 4451, 4453, 4456, 4458, 4460, 4462, 4464, 4466, 4468, 4470, 4472, 4474, 4476, 4478, 4480, 4482, 4484, 4486, 4488, 4490, 4492, 4494, 4496, 4498, 4500, 4502, 4504, 4506, 4508, 4510, 4512, 4514, 4516, 4518, 4521, 4523, 4525, 4527, 4530, 4532, 4534, 4536, 4538, 4540, 4542, 4544, 4546, 4548, 4550, 4552, 4554, 4556, 4558, 4560, 4562, 4564, 4566, 4568, 4570, 4572, 4575, 4577, 4579, 4581, 4584, 4586, 4589, 4591, 4593, 4595, 4597, 4599, 4601, 4603, 4606, 4608, 4610, 4612, 4617, 4619, 4621, 4623, 4625, 4627, 4630, 4632, 4635, 4637, 4640, 4642, 4645, 4647, 4650, 4652, 4655, 4657, 4660, 4662, 4665, 4667, 4670, 4672, 4675, 4677, 4680, 4682, 4685, 4687, 4689, 4691, 4694, 4696, 4699, 4701, 4707, 4709, 4711, 4713, 4715, 4717, 4720, 4722, 4725, 4727, 4730, 4732, 4735, 4737, 4740, 4742, 4745, 4747, 4750, 4752, 4754, 4756, 4758, 4760, 4763, 4765, 4768, 4770, 4773, 4775, 4778, 4780, 4782, 4784, 4786, 4788, 4790, 4792, 4794, 4796, 4798, 4800, 4802, 4804, 4806, 4808, 4810, 4812, 4814, 4816, 4818, 4820, 4822, 4824, 4826, 4828, 4830, 4832, 4834, 4836, 4838, 4840, 4842, 4844, 4847, 4849, 4851, 4853, 4855, 4857, 4860, 4862, 4865, 4867, 4870, 4872, 4875, 4877, 4879, 4881, 4884, 4886, 4888, 4890, 4894, 4896, 4899, 4901, 4904, 4906, 4909, 4911, 4913, 4915, 4918, 4920, 4922, 4924, 4928, 4930, 4933, 4935, 4938, 4940, 4943, 4945, 4948, 4950, 4953, 4955, 4958, 4960, 4962, 4964, 4967, 4969, 4972, 4974, 4980, 4982, 4984, 4986, 4989, 4991, 4993, 4995, 4998, 5000, 5004, 5006, 5008, 5010, 5013, 5015, 5018, 5020, 5023, 5025, 5028, 5030, 5032, 5034, 5037, 5039, 5042, 5044, 5047, 5049, 5051, 5053, 5055, 5057, 5060, 5062, 5065, 5067, 5070, 5072, 5075, 5077, 5080, 5082, 5085, 5087, 5090, 5092, 5095, 5097, 5099, 5101, 5103, 5105, 5108, 5110, 5113, 5115, 5118, 5120, 5123, 5125, 5127, 5129, 5131, 5133, 5136, 5138, 5141, 5143, 5146, 5148, 5151, 5153, 5155, 5157, 5159, 5161, 5163, 5165, 5167, 5169, 5171, 5173, 5175, 5177, 5179, 5181, 5183, 5185, 5188, 5190, 5193, 5195, 5198, 5200, 5202, 5204, 5206, 5208, 5211, 5213, 5215, 5217, 5219, 5221, 5224, 5226, 5228, 5230, 5232, 5234, 5237, 5239, 5242, 5244, 5247, 5249, 5252, 5254, 5257, 5259, 5262, 5264, 5267, 5269, 5272, 5274, 5276, 5278, 5280, 5282, 5285, 5287, 5289, 5291, 5293, 5295, 5297, 5299, 5301, 5303, 5305, 5307, 5309, 5311, 5313, 5315, 5317, 5319, 5321, 5323, 5325, 5327, 5330, 5332, 5334, 5336, 5339, 5341, 5344, 5346, 5352, 5354, 5356, 5358, 5360, 5362, 5365, 5367, 5370, 5372, 5375, 5377, 5380, 5382, 5384, 5386, 5388, 5390, 5392, 5394, 5396, 5398, 5401, 5403, 5405, 5407, 5409, 5411, 5413, 5415, 5418, 5420, 5423, 5425, 5431, 5433, 5436, 5438, 5441, 5443, 5446, 5448, 5450, 5452, 5454, 5456, 5458, 5460, 5462, 5464, 5467, 5469, 5472, 5474, 5477, 5479, 5482, 5484, 5487, 5489, 5492, 5494, 5497, 5499, 5501, 5503, 5505, 5507, 5510, 5512, 5514, 5516, 5518, 5520, 5523, 5525, 5528, 5530, 5533, 5535, 5538, 5540, 5542, 5544, 5547, 5549, 5552, 5554, 5557, 5559, 5561, 5563, 5565, 5567, 5569, 5571, 5573, 5575, 5577, 5579, 5581, 5583, 5585, 5587, 5589, 5591, 5593, 5595, 5597, 5599, 5601, 5603, 5605, 5607, 5609, 5611, 5613, 5615, 5617, 5619, 5621, 5623, 5625, 5627, 5629, 5631, 5633, 5635, 5637, 5639, 5641, 5643, 5645, 5647, 5649, 5651, 5653, 5655, 5657, 5659, 5661, 5663, 5666, 5668, 5671, 5673, 5675, 5677, 5679, 5681, 5683, 5685, 5687, 5689, 5691, 5693, 5695, 5697, 5699, 5701, 5703, 5705, 5707, 5709, 5711, 5713, 5715, 5717, 5719, 5721, 5723, 5725, 5727, 5729, 5731, 5733, 5735, 5737, 5739, 5741, 5743, 5745, 5747, 5749, 5751, 5753, 5755, 5757, 5760, 5762, 5764, 5766, 5769, 5771, 5773, 5775, 5778, 5780, 5782, 5784, 5786, 5788, 5790, 5792, 5794, 5796, 5798, 5800, 5802, 5804, 5806, 5808, 5810, 5812, 5815, 5817, 5819, 5821, 5823, 5825, 5828, 5830, 5832, 5834, 5837, 5839, 5841, 5843, 5846, 5848, 5850, 5852, 5854, 5856, 5858, 5860, 5862, 5864, 5866, 5868, 5870, 5872, 5874, 5876, 5878, 5880, 5882, 5884, 5886, 5888, 5890, 5892, 5895, 5897, 5899, 5901, 5904, 5906, 5908, 5910, 5912, 5914, 5917, 5919, 5921, 5923, 5925, 5927, 5929, 5931, 5933, 5935, 5937, 5939, 5941, 5943, 5945, 5947, 5949, 5951, 5953, 5955, 5957, 5959, 5961, 5963, 5965, 5967, 5969, 5971, 5973, 5975, 5977, 5979, 5981, 5983, 5985, 5987, 5989, 5991, 5993, 5995, 5998, 6000, 6002, 6004, 6006, 6008, 6010, 6012, 6014, 6016, 6019, 6021, 6027, 6029, 6032, 6034, 6037, 6039, 6041, 6043, 6046, 6048, 6051, 6053, 6059, 6061, 6063, 6065, 6067, 6069, 6072, 6074, 6077, 6079, 6082, 6084, 6087, 6089, 6091, 6093, 6095, 6097, 6100, 6102, 6105, 6107, 6110, 6112, 6115, 6117, 6120, 6122, 6125, 6127, 6129, 6131, 6133, 6135, 6138, 6140, 6143, 6145, 6148, 6150, 6153, 6155, 6157, 6159, 6162, 6164, 6166, 6168, 6172, 6174, 6177, 6179, 6182, 6184, 6187, 6189, 6192, 6194, 6197, 6199, 6202, 6204, 6207, 6209, 6212, 6214, 6217, 6219, 6222, 6224, 6227, 6229, 6231, 6233, 6235, 6237, 6239, 6241, 6243, 6245, 6247, 6249, 6252, 6254, 6256, 6258, 6261, 6263, 6266, 6268, 6273, 6275, 6278, 6280, 6286, 6288, 6291, 6293, 6296, 6298, 6301, 6303, 6306, 6308, 6310, 6312, 6314, 6316, 6319, 6321, 6324, 6326, 6329, 6331, 6334, 6336, 6338, 6340, 6342, 6344, 6347, 6349, 6352, 6354, 6356, 6358, 6360, 6362, 6365, 6367, 6369, 6371, 6374, 6376, 6378, 6380, 6383, 6385, 6389, 6391, 6393, 6395, 6398, 6400, 6403, 6405, 6408, 6410, 6412, 6414, 6416, 6418, 6421, 6423, 6426, 6428, 6431, 6433, 6436, 6438, 6441, 6443, 6446, 6448, 6451, 6453, 6456, 6458, 6461, 6463, 6466, 6468, 6471, 6473, 6476, 6478, 6481, 6483, 6485, 6487, 6489, 6491, 6494, 6496, 6499, 6501, 6504, 6506, 6509, 6511, 6514, 6516, 6519, 6521, 6524, 6526, 6529, 6531, 6533, 6535, 6537, 6539, 6542, 6544, 6547, 6549, 6552, 6554, 6557, 6559, 6562, 6564, 6567, 6569, 6572, 6574, 6577, 6579, 6582, 6584, 6587, 6589, 6592, 6594, 6597, 6599, 6602, 6604, 6607, 6609, 6612, 6614, 6617, 6619, 6621, 6623, 6626, 6628, 6630, 6632, 6637, 6639, 6641, 6643, 6645, 6647, 6650, 6652, 6655, 6657, 6660, 6662, 6665, 6667, 6669, 6671, 6673, 6675, 6677, 6679, 6681, 6683, 6685, 6687, 6689, 6691, 6694, 6696, 6698, 6700, 6702, 6704, 6706, 6708, 6710, 6712, 6714, 6716, 6719, 6721, 6724, 6726, 6729, 6731, 6734, 6736, 6739, 6741, 6744, 6746, 6749, 6751, 6754, 6756, 6759, 6761, 6766, 6768, 6771, 6773, 6776, 6778, 6781, 6783, 6785, 6787, 6789, 6791, 6794, 6796, 6799, 6801, 6804, 6806, 6809, 6811, 6814, 6816, 6818, 6820, 6823, 6825, 6828, 6830, 6836, 6838, 6841, 6843, 6846, 6848, 6851, 6853, 6856, 6858, 6860, 6862, 6865, 6867, 6869, 6871, 6875, 6877, 6880, 6882, 6885, 6887, 6890, 6892, 6894, 6896, 6899, 6901, 6904, 6906, 6912, 6914, 6916, 6918, 6921, 6923, 6926, 6928, 6934, 6936, 6938, 6940, 6942, 6944, 6947, 6949, 6952, 6954, 6957, 6959, 6962, 6964, 6966, 6968, 6970, 6972, 6975, 6977, 6979, 6981, 6983, 6985, 6988, 6990, 6992, 6994, 6996, 6998, 7001, 7003, 7006, 7008, 7011, 7013, 7016, 7018, 7020, 7022, 7024, 7026, 7029, 7031, 7034, 7036, 7039, 7041, 7044, 7046, 7048, 7050, 7053, 7055, 7058, 7060, 7066, 7068, 7070, 7072, 7074, 7076, 7079, 7081, 7084, 7086, 7089, 7091, 7094, 7096, 7098, 7100, 7102, 7104, 7107, 7109, 7112, 7114, 7117, 7119, 7122, 7124, 7126, 7128, 7130, 7132, 7135, 7137, 7140, 7142, 7145, 7147, 7150, 7152, 7154, 7156, 7158, 7160, 7162, 7164, 7166, 7168, 7170, 7172, 7174, 7176, 7179, 7181, 7183, 7185, 7187, 7189, 7192, 7194, 7197, 7199, 7202, 7204, 7207, 7209, 7212, 7214, 7217, 7219, 7222, 7224, 7226, 7228, 7230, 7232, 7234, 7236, 7238, 7240, 7242, 7244, 7246, 7248, 7250, 7252, 7254, 7256, 7258, 7260, 7262, 7264, 7266, 7268, 7270, 7272, 7274, 7276, 7278, 7280, 7282, 7284, 7286, 7288, 7290, 7292, 7294, 7296, 7298, 7300, 7302, 7304, 7306, 7308, 7310, 7312, 7314, 7316, 7318, 7320, 7322, 7324, 7326, 7328, 7330, 7332, 7334, 7336, 7338, 7340, 7343, 7345, 7348, 7350, 7352, 7354, 7356, 7358, 7360, 7362, 7364, 7366, 7368, 7370, 7372, 7374, 7376, 7378, 7380, 7382, 7384, 7386, 7388, 7390, 7392, 7394, 7396, 7398, 7400, 7402, 7404, 7406, 7408, 7410, 7412, 7414, 7416, 7418, 7420, 7422, 7424, 7426, 7428, 7430, 7432, 7434, 7436, 7438, 7440, 7442, 7444, 7446, 7448, 7450, 7452, 7454, 7457, 7459, 7461, 7463, 7465, 7467, 7469, 7471, 7474, 7476, 7478, 7480, 7483, 7485, 7487, 7489, 7491, 7493, 7495, 7497, 7499, 7501, 7503, 7505, 7507, 7509, 7511, 7513, 7516, 7518, 7520, 7522, 7525, 7527, 7529, 7531, 7533, 7535, 7537, 7539, 7542, 7544, 7547, 7549, 7552, 7554, 7557, 7559, 7561, 7563, 7565, 7567, 7570, 7572, 7575, 7577, 7579, 7581, 7583, 7585, 7588, 7590, 7593, 7595, 7597, 7599, 7602, 7604, 7607, 7609, 7615, 7617, 7620, 7622, 7625, 7627, 7629, 7631, 7633, 7635, 7637, 7639, 7641, 7643, 7645, 7647, 7649, 7651, 7653, 7655, 7657, 7659, 7661, 7663, 7666, 7668, 7670, 7672, 7674, 7676, 7679, 7681, 7684, 7686, 7688, 7690, 7692, 7694, 7697, 7699, 7701, 7703, 7705, 7707, 7710, 7712, 7715, 7717, 7720, 7722, 7725, 7727, 7730, 7732, 7734, 7736, 7739, 7741, 7743, 7745, 7749, 7751, 7754, 7756, 7759, 7761, 7763, 7765, 7767, 7769, 7771, 7773, 7775, 7777, 7779, 7781, 7783, 7785, 7787, 7789, 7791, 7793, 7795, 7797, 7800, 7802, 7804, 7806, 7810, 7812, 7815, 7817, 7820, 7822, 7825, 7827, 7829, 7831, 7833, 7835, 7838, 7840, 7843, 7845, 7848, 7850, 7853, 7855, 7858, 7860, 7863, 7865, 7868, 7870, 7873, 7875, 7878, 7880, 7886, 7888, 7890, 7892, 7894, 7896, 7899, 7901, 7904, 7906, 7909, 7911, 7914, 7916, 7919, 7921, 7924, 7926, 7929, 7931, 7933, 7935, 7937, 7939, 7942, 7944, 7947, 7949, 7952, 7954, 7957, 7959, 7962, 7964, 7966, 7968, 7970, 7972, 7975, 7977, 7980, 7982, 7985, 7987, 7990, 7992, 7994, 7996, 7998, 8000, 8002, 8004, 6196, 6191, 6196, 6191, 6196, 6191, 8012, 8014, 8016, 8018, 8020, 8022, 5236, 5251, 3637, 3635, 3640, 3638, 3637, 3635, 3640, 3638, 5236, 5251, 4979, 4977, 4979, 4977, 1907, 1737, 1632, 1627, 1632, 1627, 2988, 2983, 3008, 3003, 7065, 7063, 8169, 8171, 8173, 8175, 8177, 8179, 8181, 8183, 8185, 8187, 8189, 8191, 6908, 6903, 6908, 6903, 6026, 6024, 6026, 6024, 6221, 6226, 6221, 6226, 6636, 6634, 6649, 6649, 6636, 6634, 6460, 6460, 6465, 6465, 6465, 6460, 6465, 6460, 6908, 6903, 6908, 6903, 6911, 6909, 8386, 8388, 8390, 8392, 8394, 8396, 8398, 8400, 2802, 2797, 2802, 2797, 3771, 3766, 3771, 3766, 3637, 3635, 3640, 3638, 3637, 3635, 3640, 3638, 3621, 3633, 845, 845, 1907, 1737, 1824, 1824, 1907, 1737, 1388, 1907, 1737, 1388, 1536, 1524, 1524, 1536, 1909, 1909, 2968, 2963, 2968, 2963, 2988, 2983, 2988, 2983, 3008, 3003, 2968, 2963, 2968, 2963, 2988, 2983, 2988, 2983, 3008, 3003, 3289, 3289, 3258, 3253, 3258, 3253, 3402, 3397, 3402, 3397, 3455, 3455, 3058, 3056, 3058, 3056, 3154, 3152, 3154, 3152, 3193, 3191, 3193, 3191, 3223, 3221, 3223, 3221, 3637, 3635, 3640, 3638, 3637, 3635, 3592, 3590, 3592, 3590, 3621, 3633, 3637, 3635, 3640, 3638, 3637, 3635, 3640, 3638, 3720, 3718, 3720, 3718, 3846, 3844, 3846, 3844, 3989, 3989, 4212, 4214, 4214, 4212, 4706, 4704, 4706, 4704, 4719, 4734, 4706, 4704, 4706, 4704, 4719, 4734, 4977, 4977, 4979, 4979, 5027, 5022, 5027, 5022, 4706, 4704, 4706, 4704, 4719, 4734, 4719, 4734, 4777, 4777, 4616, 4614, 4616, 4614, 4706, 4704, 4706, 4704, 4893, 4893, 4927, 4927, 4979, 4977, 4979, 4977, 5430, 5428, 5430, 5428, 5351, 5349, 5351, 5349, 5430, 5428, 5430, 5428, 5430, 5428, 5430, 5428, 6058, 6056, 6058, 6056, 6221, 6226, 6221, 6226, 6636, 6634, 6636, 6634, 5777, 6780, 6780, 6793, 6793, 5777, 6026, 6024, 6026, 6024, 6152, 6147, 6152, 6147, 6221, 6226, 6221, 6226, 6285, 6283, 6221, 6226, 6221, 6226, 6285, 6283, 6026, 6024, 6026, 6024, 6058, 6056, 6058, 6056, 6171, 6171, 6285, 6283, 6272, 6272, 6285, 6283, 6636, 6634, 6636, 6634, 6765, 6765, 6835, 6833, 6835, 6833, 6874, 6874, 6911, 6909, 6911, 6909, 6933, 6931, 6933, 6931, 7065, 7063, 7065, 7063, 7614, 7612, 7614, 7612, 7614, 7612, 7913, 7898, 7974, 7974, 7883, 7885, 7913, 7898, 7614, 7612, 7614, 7612, 7748, 7748, 7809, 7809, 7885, 7883, 10416, 10418, 10420, 10422, 10424, 10426, 10428, 10430, 10432, 10434, 10437, 10439, 10442, 10444, 10446, 10448, 10450, 10452, 10454, 10456, 10458, 10460, 10462, 10464, 10467, 10469, 10471, 10473, 10476, 10478, 10481, 10483, 10489, 10491, 10493, 10495, 10497, 10499, 10502, 10504, 10507, 10509, 10512, 10514, 10517, 10519, 10521, 10523, 10526, 10528, 10531, 10533, 10539, 10541, 10543, 10545, 10547, 10549, 10552, 10554, 10556, 10558, 10560, 10562, 10565, 10567, 10570, 10572, 10575, 10577, 10580, 10582, 10585, 10587, 10589, 10591, 10593, 10595, 10598, 10600, 10603, 10605, 10608, 10610, 10613, 10615, 10617, 10619, 10622, 10624, 10627, 10629, 10635, 10637, 10639, 10641, 10643, 10645, 10648, 10650, 10652, 10654, 10656, 10658, 10660, 10662, 10664, 10666, 10668, 10670, 10672, 10674, 10677, 10679, 10681, 10683, 10685, 10687, 10690, 10692, 10694, 10696, 10698, 10700, 10702, 10704, 10706, 10708, 10710, 10712, 10714, 10716, 10718, 10720, 10722, 10724, 10727, 10729, 10732, 10734, 10737, 10739, 10741, 10743, 10746, 10748, 10751, 10753, 10759, 10761, 10764, 10766, 10769, 10771, 10774, 10776, 10779, 10781, 10783, 10785, 10788, 10790, 10792, 10794, 10798, 10800, 10803, 10805, 10808, 10810, 10813, 10815, 10817, 10819, 10821, 10823, 10826, 10828, 10830, 10832, 10834, 10836, 10838, 10840, 10842, 10844, 10846, 10848, 10850, 10852, 10854, 10856, 10859, 10861, 10863, 10865, 10868, 10870, 10872, 10874, 10876, 10878, 10881, 10883, 10885, 10887, 10889, 10891, 10894, 10896, 10899, 10901, 10904, 10906, 10909, 10911, 10914, 10916, 10919, 10921, 10924, 10926, 10929, 10931, 10934, 10936, 10939, 10941, 10944, 10946, 10949, 10951, 10954, 10956, 10962, 10964, 10966, 10968, 10970, 10972, 10974, 10976, 10978, 10980, 10982, 10984, 10986, 10988, 10990, 10992, 10994, 10996, 10998, 11000, 11003, 11005, 11007, 11009, 11012, 11014, 11016, 11018, 11020, 11022, 11024, 11026, 11028, 11030, 11033, 11035, 11037, 11039, 11042, 11044, 11046, 11048, 11050, 11052, 11054, 11056, 11058, 11060, 11062, 11064, 11066, 11068, 11070, 11072, 11074, 11076, 11079, 11081, 11083, 11085, 11088, 11090, 11092, 11094, 11097, 11099, 11101, 11103, 11105, 11107, 11109, 11111, 11113, 11115, 11117, 11119, 11121, 11123, 11125, 11127, 11129, 11131, 11133, 11135, 11137, 11139, 11141, 11143, 11145, 11147, 11150, 11152, 11156, 11158, 11160, 11162, 11164, 11166, 11169, 11171, 11174, 11176, 11179, 11181, 11184, 11186, 11189, 11191, 11194, 11196, 11199, 11201, 11204, 11206, 11209, 11211, 11214, 11216, 11218, 11220, 11225, 11227, 11230, 11232, 11235, 11237, 11239, 11241, 11243, 11245, 11248, 11250, 11253, 11255, 11258, 11260, 11263, 11265, 11268, 11270, 11273, 11275, 11278, 11280, 11283, 11285, 11288, 11290, 11293, 11295, 11298, 11300, 11303, 11305, 11307, 11309, 11312, 11314, 11317, 11319, 11324, 11326, 11328, 11330, 11332, 11334, 11336, 11338, 11340, 11342, 11344, 11346, 11349, 11351, 11353, 11355, 11357, 11359, 11361, 11363, 11366, 11368, 11370, 11372, 11374, 11376, 11378, 11380, 11382, 11384, 11386, 11388, 11390, 11392, 11394, 11396, 11398, 11400, 11402, 11404, 11406, 11408, 11410, 11412, 11414, 11416, 11418, 11420, 11422, 11424, 11426, 11428, 11431, 11433, 11435, 11437, 11439, 11441, 11443, 11445, 11447, 11449, 11451, 11453, 11456, 11458, 11460, 11462, 11465, 11467, 11469, 11471, 11474, 11476, 11479, 11481, 11487, 11489, 11491, 11493, 11496, 11498, 11501, 11503, 11509, 11511, 11513, 11515, 11517, 11519, 11521, 11523, 11525, 11527, 11529, 11531, 11534, 11536, 11539, 11541, 11544, 11546, 11549, 11551, 11554, 11556, 11559, 11561, 11567, 11569, 11572, 11574, 11577, 11579, 11582, 11584, 11587, 11589, 11591, 11593, 11596, 11598, 11601, 11603, 11608, 11610, 11612, 11614, 11616, 11618, 11621, 11623, 11626, 11628, 11631, 11633, 11636, 11638, 11640, 11642, 11644, 11646, 11649, 11651, 11654, 11656, 11659, 11661, 10731, 10726, 10923, 10928, 10923, 10928, 10961, 10959, 11741, 11743, 11745, 11747, 11750, 11752, 11754, 11756, 11759, 11761, 11763, 11765, 11767, 11769, 11771, 11773, 11775, 11777, 11779, 11781, 11783, 11785, 11787, 11789, 11791, 11793, 11795, 11797, 11799, 11801, 11803, 11805, 11807, 11809, 11811, 11813, 11816, 11818, 11821, 11823, 11826, 11828, 11830, 11832, 11834, 11836, 11838, 11840, 11843, 11845, 11848, 11850, 11852, 11854, 11858, 11860, 11862, 11864, 11866, 11868, 11870, 11872, 11874, 11876, 11878, 11880, 11882, 11884, 10903, 10898, 10961, 10959, 10903, 10898, 11486, 11484, 11505, 11500, 11508, 11506, 11505, 11500, 11508, 11506, 11486, 11484, 11486, 11484, 11505, 11500, 11505, 11500, 11505, 11500, 11508, 11506, 11566, 11564, 10536, 10538, 10634, 10632, 10488, 10486, 10488, 10486, 10538, 10536, 10538, 10536, 10634, 10632, 10634, 10632, 10756, 10758, 10758, 10756, 10731, 10726, 10758, 10756, 10758, 10756, 10812, 10731, 10726, 10758, 10756, 10758, 10756, 10812, 10758, 10756, 10758, 10756, 10797, 10797, 10923, 10928, 10923, 10928, 10961, 10959, 10961, 10959, 11224, 11222, 11173, 11168, 11173, 11168, 11282, 11277, 11282, 11277, 11193, 11188, 11193, 11188, 11224, 11222, 11224, 11222, 11323, 11323, 11484, 11486, 11486, 11484, 11505, 11500, 11508, 11506, 11505, 11500, 11508, 11506, 11486, 11484, 11486, 11484, 11505, 11500, 11506, 11505, 11500, 11508, 11505, 11500, 11508, 11506, 11566, 11564, 11566, 11564, 11595, 11607, 11648, 11648, 11486, 11484, 11486, 11484, 11508, 11506, 11508, 11506, 11566, 11564, 11566, 11564, 11595, 11607, 13310, 13312, 13314, 13316, 13318, 13320, 13322, 13324, 13326, 13328, 13331, 13333, 13336, 13338, 13341, 13343, 13346, 13348, 13351, 13353, 13356, 13358, 13361, 13363, 13366, 13368, 13370, 13372, 13374, 13376, 13379, 13381, 13384, 13386, 13389, 13391, 13394, 13396, 13398, 13400, 13402, 13404, 13406, 13408, 13410, 13412, 13414, 13416, 13418, 13420, 13422, 13424, 13426, 13428, 13431, 13433, 13436, 13438, 13441, 13443, 13446, 13448, 13451, 13453, 13456, 13458, 13461, 13463, 13465, 13467, 13469, 13471, 13474, 13476, 13479, 13481, 13484, 13486, 13489, 13491, 13494, 13496, 13499, 13501, 13504, 13506, 13509, 13511, 13514, 13516, 13519, 13521, 13524, 13526, 13528, 13530, 13532, 13534, 13537, 13539, 13542, 13544, 13547, 13549, 13552, 13554, 13557, 13559, 13562, 13564, 13567, 13569, 13572, 13574, 13577, 13579, 13582, 13584, 13587, 13589, 13592, 13594, 13596, 13598, 13600, 13602, 13605, 13607, 13610, 13612, 13615, 13617, 13620, 13622, 13624, 13626, 13629, 13631, 13634, 13636, 13642, 13644, 13646, 13648, 13651, 13653, 13656, 13658, 13664, 13666, 13668, 13670, 13672, 13674, 13677, 13679, 13682, 13684, 13687, 13689, 13692, 13694, 13697, 13699, 13702, 13704, 13706, 13708, 13710, 13712, 13714, 13716, 13719, 13721, 13723, 13725, 13728, 13730, 13734, 13736, 13738, 13740, 13743, 13745, 13748, 13750, 13753, 13755, 13758, 13760, 13762, 13764, 13766, 13768, 13771, 13773, 13776, 13778, 13781, 13783, 13786, 13788, 13790, 13792, 13795, 13797, 13799, 13801, 13805, 13807, 13810, 13812, 13815, 13817, 13820, 13822, 13824, 13826, 13828, 13830, 13833, 13835, 13838, 13840, 13843, 13845, 13848, 13850, 13852, 13854, 13856, 13858, 13861, 13863, 13866, 13868, 13871, 13873, 13876, 13878, 13881, 13883, 13886, 13888, 13891, 13893, 13896, 13898, 13900, 13902, 13905, 13907, 13910, 13912, 13918, 13920, 13923, 13925, 13928, 13930, 13933, 13935, 13938, 13940, 13943, 13945, 13948, 13950, 13953, 13955, 13957, 13959, 13961, 13963, 13966, 13968, 13970, 13972, 13975, 13977, 13980, 13982, 13988, 13990, 13993, 13995, 13998, 14000, 14003, 14005, 14008, 14010, 14013, 14015, 14018, 14020, 14023, 14025, 14028, 14030, 14033, 14035, 14038, 14040, 14043, 14045, 14048, 14050, 14052, 14054, 14057, 14059, 14062, 14064, 14125, 14127, 14129, 14131, 14133, 14135, 14137, 14139, 14141, 14143, 14145, 14147, 14149, 14151, 14153, 14155, 13478, 13473, 13483, 13488, 13478, 13473, 13483, 13488, 13483, 13488, 13860, 13875, 13860, 13875, 14218, 14220, 14222, 14224, 14226, 14228, 14230, 14232, 14234, 14236, 14238, 14240, 14242, 14244, 14246, 14248, 14250, 14252, 14254, 14256, 14258, 14260, 14262, 14264, 14267, 14269, 14271, 14273, 14275, 14277, 14279, 14281, 14283, 14285, 14287, 14289, 14291, 14293, 14295, 14297, 14299, 14301, 14303, 14305, 14307, 14309, 14311, 14313, 14315, 14317, 14319, 14321, 14323, 14325, 14327, 14329, 11857, 11856, 14368, 14370, 14372, 14374, 14376, 14378, 14380, 14382, 14384, 14386, 14388, 14390, 14393, 14395, 14397, 14399, 14401, 14403, 14405, 14407, 14409, 14411, 14413, 14415, 14418, 14420, 14422, 14424, 14426, 14428, 14430, 14432, 14434, 14436, 14438, 14440, 14443, 14445, 14447, 14449, 14452, 14454, 14456, 14458, 14461, 14463, 14465, 14467, 14469, 14471, 14473, 14475, 14477, 14479, 14481, 14483, 14485, 14487, 13641, 13639, 13641, 13639, 13663, 13661, 13663, 13661, 13804, 13804, 13917, 13915, 13917, 13915, 13987, 13985, 13987, 13985, 14069, 14067, 14069, 14067, 15219, 15221, 15223, 15225, 15227, 15229, 15232, 15234, 15236, 15238, 15240, 15242, 15244, 15246, 15248, 15250, 15252, 15254, 15256, 15258, 15260, 15262, 15264, 15266, 15268, 15270, 15273, 15275, 15278, 15280, 15283, 15285, 15288, 15290, 15293, 15295, 15298, 15300, 15303, 15305, 15308, 15310, 15313, 15315, 15321, 15323, 15326, 15328, 15331, 15333, 15336, 15338, 15341, 15343, 15346, 15348, 15351, 15353, 15356, 15358, 15361, 15363, 15365, 15367, 15369, 15371, 15374, 15376, 15379, 15381, 15384, 15386, 15389, 15391, 15393, 15395, 15398, 15400, 15402, 15404, 15408, 15410, 15412, 15414, 15416, 15418, 15320, 15318, 15360, 15355, 15360, 15355, 15388, 15373, 15272, 15272, 15360, 15355, 15360, 15355, 15388, 15373, 15307, 15307, 15360, 15355, 15360, 15355, 15388, 15373, 15320, 15318, 15320, 15318, 15407, 15407, 15974, 15972, 15974, 15972, 16411, 16413, 16416, 16418, 16420, 16422, 16431, 16433, 16444, 16446, 16448, 16450, 16452, 16454, 16456, 16458, 16659, 16661, 16663, 16665, 16667, 16669, 16672, 16674, 16677, 16679, 16682, 16684, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 17024, 17026, 17028, 17030, 17032, 17034, 17036, 17038, 17040, 17042, 17044, 17046, 17048, 17050, 17052, 17054, 17056, 17058, 17060, 17062, 17064, 17066, 17068, 17070, 17072, 17074, 17076, 17078, 17080, 17082, 17084, 17086, 17088, 17090, 17092, 17094, 17096, 17098, 17100, 17102, 17104, 17106, 17108, 17110, 17112, 17114, 17116, 17118, 17120, 17122, 17124, 17126, 17128, 17130, 17132, 17134, 17136, 17138, 17140, 17142, 17144, 17146, 17148, 17150, 17152, 17154, 17156, 17158, 17160, 17162, 17164, 17166, 17168, 17170, 17172, 17174, 17176, 17178, 17180, 17182, 17184, 17186, 17188, 17190, 17192, 17194, 17196, 17198, 17200, 17202, 17204, 17206, 17208, 17210, 17212, 17214, 17216, 17218, 17220, 17222, 17224, 17226, 17228, 17230, 17232, 17234, 17236, 17238, 17240, 17242, 17244, 17246, 17248, 17250, 17252, 17254, 17256, 17258, 17260, 17262, 17264, 17266, 17268, 17270, 17272, 17274, 17276, 17278, 17280, 17282, 17284, 17286, 17288, 17290, 17292, 17294, 17296, 17298, 17300, 17302, 17304, 17306, 17308, 17310, 17312, 17314, 17316, 17318, 17320, 17322, 17324, 17326, 17328, 17330, 17332, 17334, 17336, 17338, 17340, 17342, 17344, 17346, 17348, 17350, 17352, 17354, 17356, 17358, 17360, 17362, 17364, 17366, 17368, 17370, 17372, 17374, 17376, 17378, 17380, 17382, 17384, 17386, 17388, 17390, 17392, 17394, 17396, 17398, 17400, 17402, 17404, 17406, 17408, 17410, 17412, 17414, 17416, 17418, 17420, 17422, 17424, 17426, 17428, 17430, 17432, 17434, 17436, 17438, 17440, 17442, 17444, 17446, 17448, 17450, 17452, 17454, 17456, 17458, 17460, 17462, 17464, 17466, 17468, 17470, 17472, 17474, 17476, 17478, 17480, 17482, 17484, 17486, 17488, 17490, 17492, 17494, 17496, 17498, 17500, 17502, 17504, 17506, 17508, 17510, 17512, 17514, 17516, 17518, 17520, 17522, 17524, 17526, 17528, 17530, 17532, 17534, 17536, 17538, 17540, 17542, 17544, 17546, 17548, 17550, 17552, 17554, 17556, 17558, 17560, 17562, 17564, 17566, 17568, 17570, 17572, 17574, 17576, 17578, 17580, 17582, 17584, 17586, 17588, 17590, 17592, 17594, 17596, 17598, 17600, 17602, 17604, 17606, 17608, 17610, 17612, 17614, 17616, 17618, 17620, 17622, 17624, 17626, 17628, 17630, 17632, 17634, 17636, 17638, 17640, 17642, 17644, 17646, 17648, 17650, 17652, 17654, 17656, 17658, 17660, 17662, 17664, 17666, 17668, 17670, 17672, 17674, 17676, 17678, 17680, 17682, 17684, 17686, 17688, 17690, 17692, 17694, 17696, 17698, 17700, 17702, 17704, 17706, 17708, 17710, 17712, 17714, 17716, 17718, 17720, 17722, 17724, 17726, 17728, 17730, 17732, 17734, 17736, 17738, 17740, 17742, 17744, 17746, 17748, 17750, 17752, 17754, 17756, 17758, 17760, 17762, 17764, 17766, 17768, 17770, 17772, 17774, 17776, 17778, 17780, 17782, 17784, 17786, 17788, 17790, 17792, 17794, 17796, 17798, 17800, 17802, 17804, 17806, 17808, 17810, 17812, 17814, 17816, 17818, 17820, 17822, 17824, 17826, 17828, 17830, 17832, 17834, 17836, 17838, 17840, 17842, 17844, 17846, 17848, 17850, 17852, 17854, 17856, 17858, 17860, 17862, 17864, 17866, 17868, 17870, 17872, 17874, 17876, 17878, 17880, 17882, 17884, 17886, 17888, 17890, 17892, 17894, 17896, 17898, 17900, 17902, 17904, 17906, 17908, 17910, 17912, 17914, 17916, 17918, 17920, 17922, 17924, 17926, 17928, 17930, 17932, 17934, 17936, 17938, 17940, 17942, 17944, 17946, 17948, 17950, 17952, 17954, 17956, 17958, 17960, 17962, 17964, 17966, 17968, 17970, 17972, 17974, 17976, 17978, 17980, 17982, 17984, 17986, 17988, 17990, 17992, 17994, 17996, 17998, 18000, 18002, 18004, 18006, 18008, 18010, 18012, 18014, 18016, 18018, 18020, 18022, 18024, 18026, 18028, 18030, 18032, 18034, 18036, 18038, 18040, 18042, 18044, 18046, 18048, 18050, 18052, 18054, 18056, 18058, 18060, 18062, 18064, 18066, 18068, 18070, 18072, 18074, 18076, 18078, 18080, 18082, 18084, 18086, 18088, 18090, 18092, 18094, 18096, 18098, 18100, 18102, 18104, 18106, 18108, 18110, 18112, 18114, 18116, 18118, 18120, 18122, 18124, 18126, 18128, 18130, 18132, 18134, 18136, 18138, 18140, 18142, 18144, 18146, 18148, 18150, 18152, 18154, 18156, 18158, 18160, 18162, 18164, 18166, 18168, 18170, 18172, 18174, 18176, 18178, 18180, 18182, 18184, 18186, 18188, 18190, 18192, 18194, 18196, 18198, 18200, 18202, 18204, 18206, 18208, 18210, 18212, 18214, 18216, 18218, 18220, 18222, 18224, 18226, 18228, 18230, 18232, 18234, 18236, 18238, 18240, 18242, 18244, 18246, 18248, 18250, 18252, 18254, 18256, 18258, 18260, 18262, 18264, 18266, 18268, 18270, 18272, 18274, 18276, 18278, 18280, 18282, 18284, 18286, 18288, 18290, 18292, 18294, 18296, 18298, 18300, 18302, 18304, 18306, 18308, 18310, 18312, 18314, 18316, 18318, 18320, 18322, 18324, 18326, 18328, 18330, 18332, 18334, 18336, 18338, 18340, 18342, 18344, 18346, 18348, 18350, 18352, 18354, 18356, 18358, 18360, 18362, 18364, 18366, 18368, 18370, 18372, 18374, 18376, 18378, 18380, 18382, 18384, 18386, 18388, 18390, 18392, 18394, 18396, 18398, 18400, 18402, 18404, 18406, 18408, 18410, 18412, 18414, 18416, 18418, 18420, 18422, 18424, 18426, 18428, 18430, 18432, 18434, 18436, 18438, 18440, 18442, 18444, 18446, 18448, 18450, 18452, 18454, 18456, 18458, 18460, 18462, 18464, 18466, 18468, 18470, 18472, 18474, 18476, 18478, 18480, 18482, 18484, 18486, 18488, 18490, 18492, 18494, 18496, 18498, 18500, 18502, 18504, 18506, 18508, 18510, 18512, 18514, 18516, 18518, 18520, 18522, 18524, 18526, 18528, 18530, 18532, 18534, 18536, 18538, 18540, 18542, 18544, 18546, 18548, 18550, 18552, 18554, 18556, 18558, 18560, 18562, 18564, 18566, 18568, 18570, 18572, 18574, 18576, 18578, 18580, 18582, 18584, 18586, 18588, 18590, 18592, 18594, 18596, 18598, 18600, 18602, 18604, 18606, 18608, 18610, 18612, 18614, 18616, 18618, 18620, 18622, 18624, 18626, 18628, 18630, 18632, 18634, 18636, 18638, 18640, 18642, 18644, 18646, 18648, 18650, 18652, 18654, 18656, 18658, 18660, 18662, 18664, 18666, 18668, 18670, 18672, 18674, 18676, 18678, 18680, 18682, 18684, 18686, 18688, 18690, 18692, 18694, 18696, 18698, 18700, 18702, 18704, 18706, 18708, 18710, 18712, 18714, 18716, 18718, 18720, 18722, 18724, 18726, 18728, 18730, 18732, 18734, 18736, 18738, 18740, 18742, 18744, 18746, 18748, 18750, 18752, 18754, 18756, 18758, 18760, 18762, 18764, 18766, 18768, 18770, 18772, 18774, 18776, 18778, 18780, 18782, 18784, 18786, 18788, 18790, 18792, 18794, 18796, 18798, 18800, 18802, 18804, 18806, 18808, 18810, 18812, 18814, 18816, 18818, 18820, 18822, 18824, 18826, 18828, 18830, 18832, 18834, 18836, 18838, 18840, 18842, 18844, 18846, 18848, 18850, 18852, 18854, 18856, 18858, 18860, 18862, 18864, 18866, 18868, 18870, 18872, 18874, 18876, 18878, 18880, 18882, 18884, 18886, 18888, 18890, 18892, 18894, 18896, 18898, 18900, 18902, 18904, 18906, 18908, 18910, 18912, 18914, 18916, 18918, 18920, 18922, 18924, 18926, 18928, 18930, 18932, 18934, 18936, 18938, 18940, 18942, 18944, 18946, 18948, 18950, 18952, 18954, 18956, 18958, 18960, 18962, 18964, 18966, 18968, 18970, 18972, 18974, 18976, 18978, 18980, 18982, 18984, 18986, 18988, 18990, 18992, 18994, 18996, 18998, 19000, 19002, 19004, 19006, 19008, 19010, 19012, 19014, 19016, 19018, 19020, 19022, 19024, 19026, 19028, 19030, 19032, 19034, 19036, 19038, 19040, 19042, 19044, 19046, 19048, 19050, 19052, 19054, 19056, 19058, 19060, 19062, 19064, 19066, 19068, 19070, 19072, 19074, 19076, 19078, 19080, 19082, 19084, 19086, 19088, 19090, 19092, 19094, 19096, 19098, 19100, 19102, 19104, 19106, 19108, 19110, 19112, 19114, 19116, 19118, 19120, 19122, 19124, 19126, 19128, 19130, 19132, 19134, 19136, 19138, 19140, 19142, 19144, 19146, 19148, 19150, 19152, 19154, 19156, 19158, 19160, 19162, 19164, 19166, 19168, 19170, 19172, 19174, 19176, 19178, 19180, 19182, 19184, 19186, 19188, 19190, 19192, 19194, 19196, 19198, 19200, 19202, 19204, 19206, 19208, 19210, 19212, 19214, 19216, 19218, 19220, 19222, 19224, 19226, 19228, 19230, 19232, 19234, 19236, 19238, 19240, 19242, 19244, 19246, 19248, 19250, 19252, 19254, 19256, 19258, 19260, 19262, 19264, 19266, 19268, 19270, 19272, 19274, 19276, 19278, 19280, 19282, 19284, 19286, 19288, 19290, 19292, 19294, 19296, 19298, 19300, 19302, 19304, 19306, 19308, 19310, 19312, 19314, 19316, 19318, 19320, 19322, 19324, 19326, 19328, 19330, 19332, 19334, 19336, 19338, 19340, 19342, 19344, 19346, 19348, 19350, 19352, 19354, 19356, 19358, 19360, 19362, 19364, 19366, 19368, 19370, 19372, 19374, 19376, 19378, 19380, 19382, 19384, 19386, 19388, 19390, 19392, 19394, 19396, 19398, 19400, 19402, 19404, 19406, 19408, 19410, 19412, 19414, 19416, 19418, 19420, 19422, 19424, 19426, 19428, 19430, 19432, 19434, 19436, 19438, 19440, 19442, 19444, 19446, 19448, 19450, 19452, 19454, 19456, 19458, 19460, 19462, 19464, 19466, 19468, 19470, 19472, 19474, 19476, 19478, 19480, 19482, 19484, 19486, 19488, 19490, 19492, 19494, 19496, 19498, 19500, 19502, 19504, 19506, 19508, 19510, 19512, 19514, 19516, 19518, 19520, 19522, 19524, 19526, 19528, 19530, 19532, 19534, 19536, 19538, 19540, 19542, 19544, 19546, 19548, 19550, 19552, 19554, 19556, 19558, 19560, 19562, 19564, 19566, 19568, 19570, 19572, 19574, 19576, 19578, 19580, 19582, 19584, 19586, 19588, 19590, 19592, 19594, 19596, 19598, 19600, 19602, 19604, 19606, 19608, 19610, 19612, 19614, 19616, 19618, 19620, 19622, 19624, 19626, 19628, 19630, 19632, 19634, 19636, 19638, 19640, 19642, 19644, 19646, 19648, 19650, 19652, 19654, 19656, 19658, 19660, 19662, 19664, 19666, 19668, 19670, 19672, 19674, 19676, 19678, 19680, 19682, 19684, 19686, 19688, 19690, 19692, 19694, 19696, 19698, 19700, 19702, 19704, 19706, 19708, 19710, 19712, 19714, 19716, 19718, 19720, 19722, 19724, 19726, 19728, 19730, 19732, 19734, 19736, 19738, 19740, 19742, 19744, 19746, 19748, 19750, 19752, 19754, 19756, 19758, 19760, 19762, 19764, 19766, 19768, 19770, 19772, 19774, 19776, 19778, 19780, 19782, 19784, 19786, 19788, 19790, 19792, 19794, 19796, 19798, 19800, 19802, 19804, 19806, 19808, 19810, 19812, 19814, 19816, 19818, 19820, 19822, 19824, 19826, 19828, 19830, 19832, 19834, 19836, 19838, 19840, 19842, 19844, 19846, 19848, 19850, 19852, 19854, 19856, 19858, 19860, 19862, 19864, 19866, 19868, 19870, 19872, 19874, 19876, 19878, 19880, 19882, 19884, 19886, 19888, 19890, 19892, 19894, 19896, 19898, 19900, 19902, 19904, 19906, 19908, 19910, 19912, 19914, 19916, 19918, 19920, 19922, 19924, 19926, 19928, 19930, 19932, 19934, 19936, 19938, 19940, 19942, 19944, 19946, 19948, 19950, 19952, 19954, 19956, 19958, 19960, 19962, 19964, 19966, 19968, 19970, 19972, 19974, 19976, 19978, 19980, 19982, 19984, 19986, 19988, 19990, 19992, 19994, 19996, 19998, 20000, 20002, 20004, 20006, 20008, 20010, 20012, 20014, 20016, 20018, 20020, 20022, 20024, 20026, 20028, 20030, 20032, 20034, 20036, 20038, 20040, 20042, 20044, 20046, 20048, 20050, 20052, 20054, 20056, 20058, 20060, 20062, 20064, 20066, 20068, 20070, 20072, 20074, 20076, 20078, 20080, 20082, 20084, 20086, 20088, 20090, 20092, 20094, 20096, 20098, 20100, 20102, 20104, 20106, 20108, 20110, 20112, 20114, 20116, 20118, 20120, 20122, 20124, 20126, 20128, 20130, 20132, 20134, 20136, 20138, 20140, 20142, 20144, 20146, 20148, 20150, 20152, 20154, 20156, 20158, 20160, 20162, 20164, 20166, 20168, 20170, 20172, 20174, 20176, 20178, 20180, 20182, 20184, 20186, 20188, 20190, 20192, 20194, 20196, 20198, 20200, 20202, 20204, 20206, 20208, 20210, 20212, 20214, 20216, 20218, 20220, 20222, 20224, 20226, 20228, 20230, 20232, 20234, 20236, 20238, 20240, 20242, 20244, 20246, 20248, 20250, 20252, 20254, 20256, 20258, 20260, 20262, 20264, 20266, 20268, 20270, 20272, 20274, 20276, 20278, 20280, 20282, 20284, 20286, 20288, 20290, 20292, 20294, 20296, 20298, 20300, 20302, 20304, 20306, 20308, 20310, 20312, 20314, 20316, 20318, 20320, 20322, 20324, 20326, 20328, 20330, 20332, 20334, 20336, 20338, 20340, 20342, 20344, 20346, 20348, 20350, 20352, 20354, 20356, 20358, 20360, 20362, 20364, 20366, 20368, 20370, 20372, 20374, 20376, 20378, 20380, 20382, 20384, 20386, 20388, 20390, 20392, 20394, 20396, 20398, 20400, 20402, 20404, 20406, 20408, 20410, 20412, 20414, 20416, 20418, 20420, 20422, 20424, 20426, 20428, 20430, 20432, 20434, 20436, 20438, 20440, 20442, 20444, 20446, 20448, 20450, 20452, 20454, 20456, 20458, 20460, 20462, 20464, 20466, 20468, 20470, 20472, 20474, 20476, 20478, 20480, 20482, 20484, 20486, 20488, 20490, 20492, 20494, 20496, 20498, 20500, 20502, 20504, 20506, 20508, 20510, 20512, 20514, 20516, 20518, 20520, 20522, 20524, 20526, 20528, 20530, 20532, 20534, 20536, 20538, 20540, 20542, 20544, 20546, 20548, 20550, 20552, 20554, 20556, 20558, 20560, 20562, 20564, 20566, 20568, 20570, 20572, 20574, 20576, 20578, 20580, 20582, 20584, 20586, 20587, 20588, 20589, 20590, 20591, 20592, 20594, 20596, 20598, 20599, 20600, 20601, 20602, 20603, 20604, 20605, 20606, 20607, 20608, 20609, 20610, 20611, 20612, 20613, 20614, 20615, 20616, 20617, 20618, 20619, 20620, 20621, 20622, 20623, 20624, 20625, 20626, 20628, 20630, 20632, 20634, 20636, 20638, 20639, 20640, 20641, 20642, 20643, 20644, 20645, 20646, 20647, 20648, 20649, 20650, 20651, 20652, 20653, 20654, 20655, 20656, 20657, 20658, 20659, 20660, 20661, 20662, 20663, 20664, 20665, 20666, 20667, 20668, 20669, 20670, 20672, 20674, 20676, 20678, 20679, 20680, 20681, 20682, 20683, 20684, 20685, 20686, 20687, 20688, 20689, 20690, 20691, 20692, 20693, 20694, 20695, 20696, 20697, 20698, 20699, 20700, 20701, 20702, 20703, 20704, 20705, 20706, 20707, 20708, 20709, 20710, 20711, 20712, 20713, 20714, 20715, 20716, 20717, 20718, 20719, 20720, 20721, 20722, 20723, 20724, 20725, 20726, 20727, 20728, 20729, 20730, 20731, 20732, 20733, 20734, 20735, 20736, 20737, 20738, 20739, 20740, 20741, 20742, 20743, 20744, 20745, 20746, 20747, 20748, 20749, 20750, 20751, 20752, 20753, 20754, 20755, 20756, 20757, 20758, 20759, 20760, 20761, 20762, 20763, 20764, 20765, 20766, 20767, 20768, 20769, 20770, 20771, 20772, 20773, 20774, 20775, 20776, 20777, 20778, 20779, 20780, 20781, 20782, 20783, 20784, 20785, 20786, 20787, 20788, 20789, 20790, 20791, 20792, 20793, 20794, 20795, 20796, 20797, 20798, 20799, 20800, 20801, 20802, 20803, 20804, 20805, 20806, 20807, 20808, 20809, 20810, 20811, 20812, 20813, 20814, 20815, 20816, 20817, 20818, 20819, 20820, 20821, 20822, 20823, 20824, 20825, 20826, 20827, 20828, 20829, 20830, 20831, 20832, 20833, 20834, 20835, 20836, 20837, 20838, 20839, 20840, 20841, 20842, 20843, 20844, 20845, 20846, 20847, 20848, 20849, 20850, 20851, 20852, 20853, 20854, 20855, 20856, 20857, 20858, 20859, 20860, 20861, 20862, 20863, 20864, 20865, 20866, 20867, 20868, 20869, 20870, 20871, 20872, 20873, 20874, 20875, 20876, 20877, 20878, 20879, 20880, 20881, 20882, 20883, 20884, 20885, 20886, 20887, 20888, 20889, 20890, 20891, 20892, 20893, 20894, 20895, 20896, 20897, 20898, 20899, 20900, 20901, 20902, 20903, 20904, 20905, 20906, 20907, 20908, 20909, 20910, 20911, 20912, 20913, 20914, 20915, 20916, 20917, 20918, 20919, 20920, 20921, 20922, 20923, 20924, 20925, 20926, 20927, 20928, 20929, 20930, 20931, 20932, 20933, 20934, 20935, 20936, 20937, 20938, 20939, 20940, 20941, 20942, 20943, 20944, 20945, 20946, 20947, 20948, 20949, 20950, 20951, 20952, 20953, 20954, 20955, 20956, 20957, 20958, 20959, 20960, 20962, 20964, 20966, 20968, 20970, 20972, 20974, 20976, 20978, 20980, 20982, 20984, 20986, 20988, 20990, 20992, 20994, 20996, 20998, 21000, 21002, 21004, 21006, 21008, 21010, 21012, 21014, 21016, 21018, 21020, 21022, 21024, 21026, 21028, 21030, 21032, 21034, 21036, 21038, 21040, 21042, 21044, 21046, 21048, 21050, 21052, 21054, 21056, 21058, 21060, 21062, 21064, 21066, 21068, 21070, 21072, 21074, 21076, 21078, 21080, 21082, 21084, 21086, 21088, 21090, 21092, 21094, 21096, 21098, 21100, 21102, 21104, 21106, 21108, 21110, 21112, 21114, 21116, 21118, 21120, 21122, 21124, 21126, 21128, 21130, 21132, 21134, 21136, 21138, 21140, 21142, 21144, 21146, 21148, 21150, 21152, 21154, 21156, 21158, 21160, 21162, 21164, 21166, 21168, 21170, 21172, 21174, 21176, 21178, 21180, 21182, 21184, 21186, 21188, 21190, 21192, 21194, 21196, 21198, 21200, 21202, 21204, 21206, 21208, 21210, 21212, 21214, 21216, 21218, 21220, 21222, 21224, 21226, 21228, 21230, 21232, 21234, 21236, 21238, 21240, 21242, 21244, 21246, 21248, 21250, 21252, 21254, 21256, 21258, 21260, 21262, 21264, 21266, 21268, 21270, 21272, 21274, 21276, 21278, 21280, 21282, 21284, 21286, 21288, 21290, 21292, 21294, 21296, 21298, 21300, 21302, 21304, 21306, 21308, 21310, 21312, 21314, 21316, 21318, 21320, 21322, 21324, 21326, 21328, 21330, 21332, 21334, 21336, 21338, 21340, 21342, 21344, 21346, 21348, 21350, 21352, 21354, 21356, 21358, 21360, 21362, 21364, 21366, 21368, 21370, 21372, 21374, 21376, 21378, 21380, 21382, 21384, 21386, 21388, 21390, 21392, 21394, 21396, 21398, 21400, 21402, 21404, 21406, 21408, 21410, 21412, 21414, 21416, 21418, 21420, 21422, 21424, 21426, 21428, 21430, 21432, 21434, 21436, 21438, 21440, 21442, 21444, 21446, 21448, 21450, 21452, 21454, 21456, 21458, 21460, 21462, 21464, 21466, 21468, 21470, 21472, 21474, 21476, 21478, 21480, 21482, 21484, 21486, 21488, 21490, 21492, 21494, 21496, 21498, 21500, 21502, 21503, 21504, 21505, 21506, 21507, 21508, 21509, 21510, 21512, 21514, 21516, 21518, 21520, 21522, 21524, 21526, 21528, 21530, 21532, 21534, 21536, 21538, 21540, 21542, 21544, 21546, 21548, 21550, 21552, 21554, 21556, 21558, 21560, 21562, 21564, 21566, 21568, 21570, 21572, 21574, 21576, 21578, 21579, 21580, 21581, 21582, 21583, 21584, 21585, 21586, 21587, 21588, 21589, 21590, 21591, 21592, 21593, 21594, 21595, 21596, 21597, 21598, 21599, 21600, 21601, 21602, 21603, 21604, 21605, 21606, 21607, 21608, 21609, 21610, 21611, 21612, 21613, 21614, 21615, 21616, 21617, 21618, 21619, 21620, 21621, 21622, 21623, 21624, 21625, 21626, 21627, 21628, 21629, 21630, 21631, 21632, 21633, 21634, 21635, 21636, 21637, 21638, 21639, 21640, 21641, 21642, 21643, 21644, 21645, 21646, 21647, 21648, 21649, 21650, 21651, 21652, 21653, 21654, 21655, 21656, 21657, 21658, 21659, 21660, 21661, 21662, 21663, 21664, 21665, 21666, 21667, 21668, 21669, 21670, 21671, 21672, 21673, 21674, 21675, 21676, 21677, 21678, 21679, 21680, 21681, 21682, 21683, 21684, 21685, 21686, 21687, 21688, 21689, 21690, 21691, 21692, 21693, 21694, 21695, 21696, 21697, 21698, 21699, 21700, 21701, 21702, 21703, 21704, 21705, 21706, 21707, 21708, 21709, 21710, 21711, 21712, 21713, 21714, 21715, 21716, 21717, 21718, 21719, 21720, 21721, 21722, 21723, 21724, 21726, 21728, 21730, 21732, 21734, 21736, 21738, 21740, 21742, 21744, 21746, 21748, 21750, 21752, 21754, 21756, 21758, 21760, 21762, 21764, 21766, 21768, 21770, 21772, 21774, 21776, 21778, 21780, 21782, 21784, 21786, 21788, 21790, 21792, 21794, 21796, 21798, 21800, 21802, 21804, 21806, 21808, 21810, 21812, 21814, 21816, 21818, 21820, 21822, 21824, 21826, 21828, 21830, 21832, 21834, 21836, 21838, 21840, 21842, 21844, 21846, 21848, 21850, 21852, 21854, 21856, 21858, 21860, 21862, 21864, 21866, 21868, 21870, 21872, 21874, 21876, 21878, 21880, 21882, 21884, 21886, 21888, 21890, 21892, 21894, 21896, 21898, 21900, 21902, 21904, 21906, 21908, 21910, 21912, 21914, 21916, 21918, 21920, 21922, 21924, 21926, 21928, 21930, 21932, 21934, 21936, 21938, 21940, 21942, 21944, 21946, 21948, 21950, 21952, 21954, 21956, 21958, 21960, 21962, 21964, 21966, 21968, 21970, 21972, 21974, 21976, 21978, 21980, 21982, 21984, 21986, 21988, 21990, 21992, 21994, 21996, 21998, 22000, 22002, 22004, 22006, 22008, 22010, 22012, 22014, 22016, 22018, 22020, 22022, 22024, 22026, 22028, 22030, 22032, 22034, 22036, 22038, 22040, 22042, 22044, 22046, 22048, 22050, 22052, 22054, 22055, 22056, 22057, 22058, 22059, 22060, 22061, 22062, 22063, 22064, 22065, 22066, 22067, 22068, 22070, 22072, 22074, 22076, 22078, 22080, 22082, 22084, 22086, 22088, 22090, 22092, 22094, 22096, 22098, 22100, 22102, 22104, 22106, 22108, 22110, 22112, 22114, 22116, 22118, 22120, 22122, 22124, 22125, 22126, 22128, 22130, 22132, 22134, 22136, 22138, 22140, 22142, 22144, 22146, 22148, 22150, 22152, 22154, 22156, 22158, 22160, 22162, 22164, 22166, 22168, 22170, 22172, 22174, 22176, 22178, 22180, 22182, 22184, 22185, 22186, 22187, 22188, 22189, 22190, 22191, 22192, 22193, 22194, 22195, 22196, 22197, 22198, 22199, 22200, 22201, 22202, 22203, 22204, 22205, 22206, 22208, 22210, 22212, 22214, 22216, 22218, 22220, 22222, 22224, 22226, 22228, 22230, 22232, 22234, 22236, 22238, 22240, 22242, 22244, 22246, 22248, 22250, 22252, 22254, 22256, 22258, 22260, 22262, 22264, 22266, 22268, 22270, 22272, 22274, 22276, 22278, 22280, 22282, 22284, 22286, 22288, 22290, 22292, 22293, 22294, 22295, 22296, 22297, 22298, 22299, 22300, 22301, 22302, 22303, 22304, 22305, 22306, 22307, 22308, 22309, 22310, 22311, 22312, 22313, 22314, 22315, 22316, 22317, 22318, 22319, 22320, 22321, 22322, 22323, 22324, 22325, 22326, 22328, 22330, 22332, 22334, 22336, 22338, 22340, 22342, 22344, 22346, 22348, 22350, 22352, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 24149, 24151, 24153, 5246, 5241, 3631, 3626, 3631, 3626, 24160, 24162, 24164, 24166, 5246, 5241, 4976, 4971, 24170, 4976, 4971, 24172, 5002, 4997, 23486, 5002, 4997, 23489, 5017, 5012, 5027, 5022, 5041, 5036, 5041, 5046, 777, 772, 826, 821, 22380, 950, 22383, 963, 1069, 1064, 1079, 1074, 1089, 1084, 1099, 1094, 1122, 1117, 1112, 1122, 1117, 1127, 1137, 1132, 1147, 1142, 1157, 1152, 1162, 1167, 1190, 1185, 1180, 1190, 1185, 1195, 1834, 1839, 22396, 22798, 1877, 22397, 1864, 1882, 1887, 1892, 1897, 24174, 1388, 1452, 1470, 1465, 1534, 1529, 24176, 1447, 1442, 1534, 1529, 1549, 1577, 1612, 1607, 24178, 1839, 1834, 1849, 1844, 22763, 1877, 1854, 1859, 1864, 1887, 1882, 1897, 1892, 1737, 1909, 2860, 2855, 2873, 2898, 2893, 2908, 2903, 24180, 2993, 2998, 24182, 7038, 7033, 7028, 7062, 7057, 24184, 24192, 24194, 22430, 22432, 24196, 6031, 24198, 6036, 6081, 6076, 6071, 6081, 6076, 6086, 6109, 6104, 6099, 6109, 6104, 6114, 6124, 6119, 5827, 5814, 6196, 6191, 6201, 6211, 6216, 24200, 6211, 6216, 24202, 6270, 6265, 5916, 6277, 6282, 6285, 6283, 6295, 6290, 6305, 6300, 22461, 6351, 6346, 6402, 6397, 6364, 6328, 6323, 6333, 6318, 6455, 6450, 6455, 6450, 6470, 6475, 685, 6503, 6498, 6508, 6493, 6518, 6513, 6523, 6528, 6581, 6586, 6596, 6591, 6606, 6601, 6616, 6611, 5670, 5665, 24204, 6654, 6659, 6654, 6659, 6581, 6586, 6596, 6591, 6606, 6601, 6616, 6611, 5670, 5665, 24208, 6659, 6654, 6664, 22489, 6718, 6733, 6743, 6738, 6748, 6753, 22497, 6775, 6770, 646, 641, 6425, 6420, 22508, 6445, 6440, 6455, 6450, 6455, 6450, 6470, 6475, 685, 646, 641, 6425, 6420, 22508, 6445, 6440, 6455, 6450, 6455, 6450, 6470, 6475, 685, 6503, 6498, 22515, 6518, 6513, 6523, 6528, 6551, 6546, 6556, 6541, 6566, 6561, 6576, 6571, 646, 641, 6425, 6420, 22529, 6445, 6440, 6455, 6450, 24214, 6455, 6450, 24216, 6475, 6470, 685, 24218, 24220, 24222, 7753, 7665, 7758, 2747, 2742, 24228, 2812, 2807, 24230, 24232, 24234, 3776, 3761, 2850, 2845, 2860, 2855, 2883, 2878, 2888, 3631, 3626, 3631, 3626, 24236, 24238, 24240, 24242, 3650, 3645, 3660, 3655, 23198, 3678, 3673, 3542, 3537, 3565, 3560, 3570, 3555, 23162, 3592, 3590, 3631, 3626, 777, 772, 826, 821, 871, 866, 22571, 22557, 22575, 871, 866, 876, 799, 794, 804, 912, 907, 902, 912, 907, 917, 22565, 826, 821, 871, 866, 22571, 22573, 22575, 871, 866, 876, 22580, 889, 912, 907, 902, 912, 907, 917, 927, 922, 937, 932, 22593, 950, 22596, 963, 986, 981, 976, 986, 981, 991, 1014, 1009, 22606, 1014, 1009, 22609, 1029, 1024, 1039, 1034, 1049, 1044, 1059, 1054, 1069, 1064, 1079, 1074, 1089, 1084, 1099, 1094, 1122, 1117, 1112, 1122, 1117, 1127, 1137, 1132, 1147, 1142, 1157, 1152, 1167, 1162, 1190, 1185, 1180, 1190, 1185, 1195, 22647, 1437, 1432, 1761, 1756, 1776, 22654, 1799, 1794, 1809, 1804, 1819, 1814, 1824, 1834, 1839, 22663, 1854, 1859, 1877, 22666, 1864, 1882, 1887, 1897, 1892, 24248, 1388, 1761, 1756, 1799, 1794, 1809, 1804, 1819, 1814, 1819, 1814, 1819, 1814, 1829, 1834, 1839, 1849, 1844, 22798, 1877, 22688, 1864, 1882, 1887, 1892, 1897, 24252, 24255, 22694, 1437, 1432, 1447, 1442, 1417, 1427, 1422, 1437, 1432, 1447, 1442, 1452, 1510, 1505, 1470, 1465, 1534, 1529, 1534, 1529, 1510, 1505, 22717, 1510, 1505, 22720, 1534, 1529, 1534, 1529, 1559, 1554, 1549, 1559, 1554, 1564, 1587, 1582, 1577, 1587, 1582, 1592, 1602, 1597, 1612, 1607, 1622, 1617, 1632, 1627, 1751, 1746, 1761, 1756, 1789, 1799, 1794, 1809, 1804, 1819, 1814, 1829, 1824, 1839, 1834, 1849, 1844, 22763, 1887, 1882, 1892, 1887, 1882, 1897, 1737, 1909, 1751, 1746, 1761, 1756, 1771, 1766, 1776, 22780, 1789, 1799, 1794, 1809, 1804, 1819, 1814, 1829, 1824, 1839, 1834, 1849, 1844, 1859, 1854, 1864, 22798, 1877, 1887, 1882, 1897, 1892, 1907, 1907, 22807, 2686, 2681, 1947, 1942, 2699, 1947, 1942, 2704, 2714, 2709, 2719, 2714, 2709, 2724, 2747, 2742, 2752, 2747, 2742, 2737, 2762, 2757, 2772, 2767, 2782, 2777, 2787, 2782, 2777, 2792, 2850, 2845, 2860, 2855, 2883, 2878, 2888, 2883, 2878, 2873, 2898, 2893, 2908, 2903, 2918, 2913, 2923, 2928, 2938, 2933, 2943, 2938, 2933, 2948, 2953, 2958, 24264, 2938, 2933, 2948, 2943, 2958, 2953, 24266, 2978, 2973, 24268, 2978, 2973, 24270, 2998, 2993, 24272, 2898, 2893, 2908, 2903, 2918, 2913, 2928, 2923, 2938, 2933, 2943, 2938, 2933, 2948, 2958, 2953, 24274, 2938, 2933, 2948, 2943, 2958, 2953, 24276, 2978, 2973, 24278, 2978, 2973, 24280, 2998, 2993, 24282, 3031, 3026, 3021, 3055, 3050, 22889, 2291, 2286, 3076, 3071, 3086, 3081, 3091, 2291, 2286, 22900, 3086, 3081, 3096, 3131, 3126, 3141, 3136, 3151, 3146, 3152, 22907, 2472, 3191, 3203, 3198, 3131, 3126, 3141, 3136, 3151, 3146, 3152, 22920, 2472, 3193, 3203, 3198, 3021, 3055, 3050, 22929, 22931, 22933, 3131, 3126, 3141, 3136, 3151, 3146, 3154, 3185, 3180, 2472, 3193, 3191, 3203, 3198, 3268, 3263, 22951, 3299, 3294, 3289, 3299, 3294, 3304, 3314, 3309, 3319, 3329, 3324, 22959, 3268, 3263, 3223, 3221, 3299, 3294, 3299, 3294, 3299, 3294, 3304, 3314, 3309, 3240, 3324, 3329, 24286, 3324, 3329, 24288, 2619, 2614, 24290, 2619, 2614, 24292, 3355, 3350, 3420, 3415, 23141, 3397, 3402, 22984, 3420, 3415, 3425, 3430, 3435, 3440, 3450, 3445, 23141, 3402, 3397, 23145, 3420, 3415, 3430, 3425, 3440, 3435, 3450, 3445, 2676, 2671, 2686, 2681, 22995, 2704, 2699, 2714, 2709, 2724, 2719, 2747, 2742, 2737, 2747, 2742, 2752, 2762, 2757, 2772, 2767, 2782, 2777, 2792, 2787, 2802, 2797, 2812, 2807, 2835, 2830, 2825, 2835, 2830, 2840, 2850, 2845, 2860, 2855, 2878, 2883, 2873, 2883, 2878, 2888, 2898, 2893, 2908, 2903, 2918, 2913, 2928, 2923, 2938, 2933, 2948, 2943, 2958, 2953, 2968, 2963, 2978, 2973, 2988, 2983, 2998, 2993, 3008, 3003, 3031, 3026, 3021, 3031, 3026, 3036, 3055, 3050, 24296, 3055, 3050, 24298, 23071, 3076, 3071, 3086, 3081, 3096, 3091, 3131, 3126, 3141, 3136, 3151, 3146, 24300, 3131, 3126, 3141, 3136, 3151, 3146, 24302, 3185, 3180, 3190, 24304, 3203, 3198, 3185, 3180, 3190, 24306, 3203, 3198, 3268, 3263, 24308, 3268, 3263, 24310, 3299, 3294, 3289, 3299, 3294, 3304, 3314, 3309, 3240, 3324, 3329, 3258, 3253, 3268, 3263, 23115, 3299, 3294, 3289, 3299, 3294, 3304, 3314, 3309, 3319, 3329, 3324, 23128, 23130, 3402, 3397, 3355, 3350, 3420, 3415, 3425, 3430, 3440, 3435, 3445, 3450, 3384, 23141, 3402, 3397, 23145, 3420, 3415, 3430, 3425, 3440, 3435, 3450, 3445, 3455, 3532, 3527, 3542, 3537, 3565, 3560, 3570, 3555, 23162, 3592, 3590, 3602, 3597, 3612, 3607, 24312, 24314, 24316, 3650, 3645, 3514, 3509, 23170, 3532, 3527, 3542, 3537, 3565, 3560, 3555, 3565, 3560, 3570, 3580, 3575, 24318, 23184, 24320, 3602, 3597, 3612, 3607, 3631, 3626, 3631, 3626, 24324, 24326, 24328, 24330, 3650, 3645, 3660, 3655, 23198, 3678, 3673, 3688, 3683, 3698, 3693, 3717, 3712, 24332, 3717, 3712, 24334, 3743, 3738, 3733, 3743, 3738, 3748, 3771, 3766, 3761, 3771, 3766, 3776, 3799, 3794, 3789, 3799, 3794, 3804, 3814, 3809, 3824, 3819, 3843, 3838, 24336, 3843, 3838, 24338, 3856, 3851, 3866, 3861, 3876, 3871, 3886, 3881, 23244, 3899, 3909, 3904, 3914, 3924, 3919, 3934, 3929, 3957, 3952, 3947, 3957, 3952, 3962, 3999, 3994, 4009, 4004, 23260, 23272, 4048, 4043, 4038, 4048, 4043, 4053, 4063, 4058, 4063, 4058, 3999, 3994, 4009, 4004, 23270, 23272, 4048, 4043, 4038, 4048, 4043, 4053, 4063, 4058, 4068, 4078, 4073, 4088, 4083, 4111, 4106, 4101, 4111, 4106, 4116, 4126, 4121, 4136, 4131, 4146, 4141, 4156, 4151, 4179, 4174, 4169, 4179, 4174, 4184, 4211, 4206, 4211, 4206, 4211, 4206, 24344, 23313, 4227, 4237, 4232, 4242, 4252, 4247, 4262, 4257, 4455, 4450, 4616, 4614, 4639, 4634, 4629, 4639, 4634, 4644, 4654, 4649, 4664, 4659, 4674, 4669, 4679, 4674, 4669, 4684, 4698, 4703, 24346, 4698, 4703, 24348, 4729, 4724, 4729, 4724, 4729, 4724, 24350, 4574, 4744, 4574, 4749, 4767, 4762, 4767, 4777, 4698, 4703, 24352, 4698, 4703, 24354, 4729, 4724, 4729, 4724, 4729, 4724, 24356, 4574, 4744, 4574, 4749, 4772, 4762, 4772, 4777, 4869, 4864, 4874, 4859, 5002, 4997, 23343, 5002, 4997, 23346, 4574, 4744, 4574, 4749, 4903, 4898, 23354, 4952, 4947, 4846, 4976, 4971, 5017, 5012, 24362, 5017, 5012, 24364, 4441, 4441, 5036, 4455, 4450, 4616, 4614, 4654, 4649, 4664, 4659, 4684, 4679, 4698, 4703, 24366, 4698, 4703, 24368, 4729, 4724, 4729, 4724, 4729, 4724, 24372, 4574, 4744, 4574, 4749, 4767, 4762, 4767, 4777, 4574, 4744, 4574, 4749, 4772, 4772, 4772, 4762, 23404, 24376, 23406, 24378, 4639, 4634, 4629, 4639, 4634, 4644, 4654, 4649, 4664, 4659, 4674, 4669, 4684, 4679, 4703, 4698, 24380, 4703, 4698, 24382, 4729, 4724, 4719, 4729, 4724, 4734, 4739, 4749, 4744, 4772, 4767, 4762, 4772, 4767, 4777, 4869, 4864, 4874, 4859, 4903, 4898, 23447, 4932, 4937, 4927, 4932, 4937, 4942, 4952, 4947, 4846, 4869, 4864, 4859, 4869, 4864, 4874, 4903, 4898, 4903, 4898, 4903, 4898, 4908, 4937, 4932, 4937, 4932, 4937, 4932, 4942, 4952, 4947, 4957, 4976, 4971, 24388, 4976, 4971, 24390, 5002, 4997, 23486, 5002, 4997, 23489, 5017, 5012, 5027, 5022, 5041, 5036, 5041, 5046, 5069, 5064, 5059, 5069, 5064, 5074, 5084, 5079, 5094, 5089, 5117, 5112, 5107, 5117, 5112, 5122, 5145, 5140, 5135, 5145, 5140, 5150, 23520, 5210, 23535, 5223, 5246, 5241, 5236, 5246, 5241, 5251, 5261, 5256, 5271, 5266, 5192, 5187, 5197, 23532, 5210, 23535, 5223, 5246, 5241, 5236, 5246, 5241, 5251, 5261, 5256, 5271, 5266, 23548, 5284, 5348, 5343, 24392, 24394, 5435, 5445, 5440, 5486, 5481, 5496, 5491, 5329, 5329, 5348, 5343, 24396, 5348, 5343, 24398, 5374, 5369, 5364, 5374, 5369, 5379, 5427, 5422, 24400, 5427, 5422, 24402, 5400, 23577, 5427, 5422, 24404, 5427, 5422, 24406, 5435, 5445, 5440, 5486, 5481, 5496, 5491, 5471, 5466, 5476, 5486, 5481, 5496, 5491, 23597, 5509, 23600, 5522, 5532, 5527, 5537, 5551, 5546, 5551, 5556, 6055, 6050, 24408, 6055, 6050, 24410, 6081, 6076, 6071, 6081, 6076, 6086, 6196, 6191, 6201, 6196, 6191, 6206, 6211, 6216, 24412, 6211, 6216, 24414, 6270, 6265, 5916, 6277, 6282, 6285, 6283, 6503, 6498, 23628, 6518, 6513, 6528, 6523, 6586, 6581, 6591, 6596, 6606, 6601, 6616, 6611, 5670, 5665, 24416, 6659, 6654, 6649, 6659, 6654, 6664, 6581, 6586, 6596, 6591, 6606, 6601, 6616, 6611, 23847, 24418, 6659, 6654, 6649, 6659, 6654, 6664, 23646, 6718, 6733, 6743, 6738, 6748, 6753, 6763, 6758, 23654, 23656, 23658, 23660, 6763, 6758, 23664, 23666, 24426, 6031, 24428, 6036, 6124, 6119, 5814, 6124, 6119, 5827, 6142, 6137, 24430, 6142, 6137, 24432, 6196, 6191, 6201, 6196, 6191, 6206, 6211, 6216, 24434, 6211, 6216, 24436, 6270, 6265, 5916, 6282, 6277, 24438, 6196, 6191, 6201, 6196, 6191, 6206, 6211, 6216, 24440, 6211, 6216, 24442, 6265, 6270, 5916, 6282, 6277, 24444, 6295, 6290, 6305, 6300, 6328, 6323, 6333, 6318, 6402, 6397, 6364, 6402, 6397, 6407, 23713, 23715, 24446, 6036, 6031, 23719, 6023, 6018, 24448, 6036, 6031, 6055, 6050, 24450, 6055, 6050, 24452, 6081, 6076, 6071, 6081, 6076, 6086, 6109, 6104, 6099, 6109, 6104, 6114, 6124, 6119, 23743, 6142, 6137, 6152, 6147, 6181, 6176, 6181, 6176, 6181, 6176, 6186, 6196, 6191, 6206, 6201, 6216, 6211, 6226, 6221, 6270, 6265, 6270, 6265, 6282, 6277, 24456, 6270, 6265, 6270, 6265, 6282, 6277, 24460, 6295, 6290, 6305, 6300, 6328, 6323, 6318, 6328, 6323, 6333, 23786, 6351, 6346, 6402, 6397, 6364, 6387, 6382, 23794, 6387, 6382, 23797, 6402, 6397, 6407, 23802, 6425, 6420, 6435, 6430, 6445, 6440, 6455, 6450, 6465, 6460, 6475, 6470, 6480, 6503, 6498, 6493, 6503, 6498, 6508, 6518, 6513, 6528, 6523, 6551, 6546, 6541, 6551, 6546, 6556, 6566, 6561, 6576, 6571, 6586, 6581, 6596, 6591, 6606, 6601, 6616, 6611, 23845, 24462, 23847, 24464, 6659, 6654, 6649, 6659, 6654, 6664, 23855, 6718, 6733, 6743, 6738, 6748, 6753, 6763, 6758, 23862, 6780, 23880, 6793, 6728, 6723, 6718, 6728, 6723, 6733, 6743, 6738, 6753, 6748, 6763, 6758, 6775, 6770, 6780, 23880, 6793, 6803, 6798, 6813, 6808, 6832, 6827, 24468, 6832, 6827, 24470, 6845, 6840, 6855, 6850, 6884, 6879, 6884, 6879, 6884, 6879, 6889, 6908, 6903, 24474, 6908, 6903, 24476, 6930, 6925, 24478, 6930, 6925, 24480, 6956, 6951, 6946, 6956, 6951, 6961, 23916, 6974, 23919, 6987, 7010, 7005, 7000, 7010, 7005, 7015, 7038, 7033, 7028, 7038, 7033, 7043, 7062, 7057, 24482, 7062, 7057, 24484, 7088, 7083, 7078, 7088, 7083, 7093, 7116, 7111, 7106, 7116, 7111, 7121, 7144, 7139, 7134, 7144, 7139, 7149, 7201, 7196, 7206, 7191, 7216, 7211, 7178, 7201, 7196, 7191, 7201, 7196, 7206, 7216, 7211, 7221, 7556, 7551, 7574, 7569, 24486, 7624, 7619, 7719, 7714, 7665, 7546, 7541, 7592, 7587, 24488, 7611, 7606, 24490, 7696, 7719, 7714, 7729, 7724, 23991, 7546, 7541, 7556, 7551, 23997, 7574, 7569, 7347, 7342, 7592, 7587, 7611, 7606, 24007, 7729, 7719, 7714, 24012, 7882, 7877, 7908, 7903, 7961, 7956, 7984, 7979, 7824, 24023, 7847, 7842, 7852, 7872, 7867, 7951, 7946, 7984, 7979, 7984, 7979, 7819, 7814, 24038, 7882, 7877, 7882, 7877, 7908, 7903, 7923, 7918, 7928, 7546, 7541, 7556, 7551, 24053, 7574, 7569, 24057, 7592, 7587, 7611, 7606, 24500, 7611, 7606, 24502, 24084, 7709, 7624, 7619, 7696, 7719, 7714, 7724, 7719, 7714, 7729, 24074, 7665, 7753, 7758, 7683, 7678, 24081, 7696, 24084, 7709, 7719, 7714, 7729, 7724, 24091, 24093, 7758, 7753, 24097, 7819, 7814, 7824, 7819, 7814, 7837, 7847, 7842, 24107, 7819, 7814, 7824, 24112, 7837, 7847, 7842, 7852, 7862, 7857, 7872, 7867, 7882, 7877, 24508, 7908, 7903, 7898, 7908, 7903, 7913, 7923, 7918, 7928, 24133, 7941, 7951, 7946, 7961, 7956, 7984, 7979, 7974, 7984, 7979, 7989, 10802, 10802, 24781, 10736, 10802, 10802, 10802, 10802, 10802, 10802, 10802, 10903, 10898, 10893, 10903, 10898, 10908, 10918, 10913, 24783, 10918, 10913, 24785, 10938, 10933, 10948, 10943, 10958, 10953, 24787, 10807, 10807, 10807, 10807, 10807, 10807, 10807, 10807, 10807, 11576, 11571, 11581, 11576, 11571, 11586, 11605, 11600, 11576, 11571, 11586, 11581, 11605, 11600, 11630, 11625, 11620, 11630, 11625, 11635, 11658, 11653, 11663, 11658, 11653, 11658, 11653, 24823, 10938, 10933, 10948, 10943, 10958, 10953, 24825, 24827, 10908, 10893, 11483, 11478, 11483, 11478, 11483, 11478, 24829, 24831, 24833, 24835, 24837, 11483, 11478, 24839, 11483, 11478, 24841, 24843, 24845, 24847, 24849, 11543, 11538, 24851, 10535, 10530, 10535, 10530, 10441, 10436, 10551, 10574, 10569, 24855, 24520, 10466, 10485, 10480, 24857, 10485, 10480, 24859, 10511, 10506, 10501, 10511, 10506, 10516, 10535, 10530, 24861, 10535, 10530, 24863, 24537, 10551, 24540, 10564, 10574, 10569, 10584, 10579, 10607, 10602, 10597, 10607, 10602, 10612, 10631, 10626, 24865, 10631, 10626, 24867, 24557, 10647, 10750, 10755, 10750, 10755, 10755, 10750, 24871, 10768, 10763, 10778, 10773, 10807, 10802, 10802, 10807, 24873, 10736, 10750, 10755, 24875, 10755, 10750, 24877, 10768, 10763, 10778, 10773, 10807, 10802, 10807, 10802, 24880, 10736, 10750, 10755, 24882, 10755, 10750, 24884, 10768, 10763, 10778, 10773, 10802, 10807, 10802, 10807, 10731, 10726, 10736, 10755, 10750, 24887, 10755, 10750, 24889, 10768, 10763, 10778, 10773, 10807, 10802, 10807, 10802, 10807, 10802, 10812, 24596, 10825, 10903, 10898, 10893, 10903, 10898, 10908, 10918, 10913, 24893, 10918, 10913, 24895, 10938, 10933, 10948, 10943, 10953, 10958, 24897, 10903, 10898, 10893, 10903, 10898, 10908, 10918, 10913, 10928, 10923, 10938, 10933, 10948, 10943, 10958, 10953, 24899, 11183, 11178, 11193, 11188, 11183, 11178, 11154, 11149, 24901, 11234, 11229, 24903, 11234, 11229, 24905, 11154, 11149, 11252, 11247, 11262, 11257, 11272, 11267, 24907, 11272, 11267, 24909, 11292, 11287, 11297, 11292, 11287, 11302, 11321, 11316, 11078, 11183, 11178, 24911, 11183, 11178, 24913, 11198, 24661, 11183, 11178, 11188, 11183, 11178, 11193, 11203, 11213, 11208, 11154, 11149, 24915, 11234, 11229, 11173, 11168, 11183, 11178, 11193, 11188, 11203, 11198, 11213, 11208, 24686, 24917, 11234, 11229, 24690, 11252, 11247, 11262, 11257, 11272, 11267, 11282, 11277, 11292, 11287, 11302, 11297, 11321, 11316, 11321, 11316, 11483, 11478, 11483, 11478, 11483, 11478, 24923, 24925, 24927, 24929, 24931, 11483, 11478, 24933, 11483, 11478, 24935, 24937, 24940, 24943, 24945, 11543, 11538, 11553, 11548, 11563, 11558, 24947, 11543, 11538, 11553, 11548, 11563, 11558, 24949, 11576, 11571, 11581, 11576, 11571, 11586, 11605, 11600, 11576, 11571, 11586, 11581, 11605, 11600, 11630, 11625, 11658, 11653, 11658, 11653, 11658, 11653, 11483, 11478, 24955, 11483, 11478, 24957, 11505, 11500, 24959, 11505, 11500, 24961, 11543, 11538, 11553, 11548, 11563, 11558, 24963, 11543, 11538, 11553, 11548, 11563, 11558, 24965, 11576, 11571, 11586, 11581, 11605, 11600, 11605, 11600, 11630, 11625, 11620, 11630, 11625, 11635, 11658, 11653, 11648, 11658, 11653, 11663, 13435, 13440, 13450, 13445, 13460, 13455, 24990, 25134, 25136, 13498, 13493, 13430, 13440, 13435, 13450, 13445, 13460, 13455, 24990, 25138, 25140, 13498, 13493, 13430, 13435, 13440, 13450, 13445, 13460, 13455, 24790, 13478, 13473, 25142, 13498, 13493, 13430, 13885, 13880, 13895, 13890, 13561, 13556, 13571, 13566, 13581, 13576, 13586, 13581, 13576, 13591, 11825, 11820, 24809, 13335, 13330, 13345, 13340, 13355, 13350, 13365, 13360, 13388, 13383, 13378, 13388, 13383, 13393, 13701, 13696, 11847, 11842, 13727, 13732, 25055, 13732, 13727, 25176, 13742, 13747, 13757, 13752, 13780, 13775, 13785, 13770, 24970, 24972, 13335, 13330, 13345, 13340, 13355, 13350, 13365, 13360, 13388, 13383, 13378, 13388, 13383, 13393, 13435, 13440, 13450, 13445, 13460, 13455, 24990, 13478, 13473, 13483, 13488, 13498, 13493, 13430, 13440, 13435, 13450, 13445, 13460, 13455, 25003, 13478, 13473, 13488, 13483, 13498, 13493, 13503, 13513, 13508, 13523, 13518, 13546, 13541, 13536, 13546, 13541, 13551, 13561, 13556, 13571, 13566, 13581, 13576, 13591, 13586, 13614, 13609, 13604, 13614, 13609, 13619, 13638, 13633, 25207, 13638, 13633, 25209, 13660, 13655, 25211, 13660, 13655, 25213, 13686, 13681, 13676, 13686, 13681, 13691, 13701, 13696, 25052, 13732, 13727, 25055, 13732, 13727, 25058, 13747, 13742, 13757, 13752, 13780, 13775, 13770, 13780, 13775, 13785, 13814, 13809, 13814, 13809, 13814, 13809, 13819, 13842, 13837, 13832, 13842, 13837, 13847, 13870, 13865, 13860, 13870, 13865, 13875, 13885, 13880, 13895, 13890, 13914, 13909, 25217, 13914, 13909, 25219, 13927, 13922, 13937, 13932, 13947, 13942, 13952, 25104, 13965, 13984, 13979, 25221, 13984, 13979, 25223, 13997, 13992, 14007, 14002, 14017, 14012, 14027, 14022, 14037, 14032, 14047, 14042, 14066, 14061, 25225, 14066, 14061, 25227, 15282, 15277, 15292, 15287, 15302, 15297, 15302, 15297, 14157, 14157, 14157, 15317, 15312, 25272, 15325, 15335, 15340, 15350, 15345, 25274, 15350, 15345, 25276, 15383, 15378, 25278, 14266, 14266, 14266, 15302, 15297, 15282, 15277, 15292, 15287, 15302, 15297, 15297, 15302, 15330, 15330, 15350, 15345, 25282, 15350, 15345, 25284, 15383, 15378, 25286, 15282, 15277, 15292, 15287, 15302, 15297, 15282, 15277, 15292, 15287, 15302, 15297, 15325, 15335, 15340, 15325, 15350, 15345, 25290, 15350, 15345, 25292, 15383, 15378, 25294, 25201, 25203, 25205, 15420, 15282, 15277, 15292, 15287, 15302, 15297, 15272, 15282, 15277, 15292, 15287, 15302, 15297, 15307, 15317, 15312, 25296, 15330, 15325, 15335, 15340, 15282, 15277, 15292, 15287, 15302, 15297, 15272, 15282, 15277, 15292, 15287, 15302, 15297, 15307, 15317, 15312, 25298, 15330, 15325, 15340, 15335, 15350, 15345, 15360, 15355, 15383, 15378, 15373, 15383, 15378, 15388, 25266, 25268, 25270, 15420, 25302, 25304, 16676, 16681, 16671, 16676, 16681, 16686, 16676, 16681, 16671, 16676, 16681, 16686, 16676, 16681, 16671, 16676, 16681, 16686, 16676, 16681, 16671, 16676, 16681, 16686, 16676, 16681, 16671, 16676, 16681, 16686, 16681, 16676, 16671, 16681, 16676, 16686, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 25347, 25348, 25349, 25350, 25351, 25352, 25357, 25358, 25359, 25360, 25362, 25363, 25365, 25366, 25367, 25368, 25369, 25370, 25371, 25372, 25373, 25374, 25375, 25376, 25377, 25378, 25379, 25380, 25381, 25382, 25383, 25384, 25385, 25386, 25387, 25388, 25389, 25390, 25391, 25392, 25393, 25394, 25395, 25396, 25397, 25398, 25399, 25400, 25401, 25402, 25403, 25404, 25405, 25406, 25407, 25408, 25409, 25410, 25411, 25412, 25413, 25414, 25415, 25416, 25417, 25418, 25419, 25420, 25421, 25422, 25423, 25424, 25425, 25427, 25428, 25429, 25430, 25431, 25432, 25434, 25435, 25436, 25437, 25438, 25439, 25440, 25441, 25443, 25444, 25445, 25446, 25447, 25448, 25449, 25450, 25451, 25452, 25453, 25454, 25455, 25456, 25457, 25458, 25459, 25460, 25461, 25462, 25463, 25464, 25466, 25467, 25469, 25470, 25471, 25472, 25473, 25477, 25478, 25480, 25482, 25483, 25484, 25485, 25486, 25487, 25488, 25489, 25490, 25491, 25492, 25493, 25494, 25495, 25496, 25497, 25498, 25499, 25500, 25501, 25502, 25503, 25505, 25506, 25508, 25509, 25510, 25511, 25512, 25513, 25514, 25515, 25516, 25517, 25518, 25519, 25520, 25521, 25522, 25523, 25524, 25525, 25526, 25527, 25528, 25529, 25530, 25531, 25532, 25533, 25534, 25535, 25536, 25537, 25538, 25539, 25540, 25541, 25542, 25543, 25544, 25545, 25546, 25547, 25548, 25549, 25550, 25551, 25552, 25553, 25555, 25556, 25557, 25558, 25559, 25560, 25561, 25562, 25563, 25564, 25565, 25566, 25567, 25568, 25570, 25571, 25572, 25573, 25574, 25575, 25576, 25577, 25578, 25579, 25580, 25581, 25582, 25583, 25584, 25585, 25586, 25587, 25588, 25589, 25590, 25591, 25592, 25593, 25594, 25595, 25596, 25597, 25598, 25599, 25600, 25601, 25602, 25603, 25604, 25605, 25606, 25607, 25608, 25609, 25610, 25611, 25612, 25613, 25614, 25615, 25616, 25617, 25618, 25619, 25620, 25621, 25622, 25623, 25624, 25625, 25626, 25627, 25628, 25629, 25630, 25631, 25632, 25633, 25634, 25636, 25637, 25639, 25640, 25641, 25645, 25646, 25647, 25648, 25649, 25651, 25652, 25656, 25657, 25658, 25659, 25660, 25661, 25662, 25663, 25664, 25665, 25666, 25667, 25668, 25673, 25674, 25675, 25676, 25677, 25678, 25679, 25680, 25681, 25682, 25683, 25684, 25685, 25686, 25687, 25688, 25689, 25690, 25691, 25692, 25693, 25694, 25695, 25696, 25697, 25698, 25699, 25700, 25701, 25702, 25703, 25704, 25705, 25706, 25707, 25708, 25709, 25710, 25711, 25712, 25713, 25714, 25715, 25716, 25717, 25718, 25719, 25720, 25721, 25722, 25723, 25724, 25725, 25726, 25727, 25728, 25729, 25730, 25731, 25732, 25733, 25734, 25735, 25736, 25737, 25738, 25739, 25740, 25741, 25742, 25743, 25744, 25745, 25746, 25747, 25748, 25749, 25750, 25751, 25752, 25753, 25754, 25755, 25756, 25757, 25758, 25759, 25760, 25761, 25762, 25763, 25764, 25765, 25766, 25767, 25768, 25769, 25770, 25771, 25772, 25773, 25774, 25775, 25776, 25777, 25778, 25779, 25780, 25781, 25782, 25783, 25784, 25785, 25786, 25787, 25788, 25789, 25790, 25791, 25792, 25793, 25794, 25795, 25796, 25797, 25798, 25799, 25800, 25801, 25802, 25803, 25804, 25805, 25806, 25807, 25808, 25809, 25810, 25811, 25812, 25814, 25815, 25816, 25817, 25818, 25819, 25820, 25821, 25822, 25823, 25824, 25825, 25826, 25827, 25828, 25829, 25830, 25831, 25832, 25833, 25834, 25835, 25836, 25837, 25838, 25839, 25842, 25843, 25844, 25845, 25846, 25847, 25848, 25849, 25850, 25851, 25852, 25853, 25854, 25855, 25856, 25857, 25858, 25859, 25860, 25861, 25862, 25863, 25864, 25865, 25866, 25867, 25868, 25869, 25870, 25871, 25872, 25873, 25874, 25875, 25876, 25877, 25878, 25879, 25880, 25881, 25882, 25883, 25884, 25885, 25886, 25887, 25888, 25889, 25890, 25891, 25892, 25893, 25894, 25895, 25896, 25897, 25898, 25899, 25900, 25901, 25902, 25903, 25904, 25905, 25906, 25907, 25908, 25909, 25910, 25911, 25912, 25913, 25914, 25915, 25916, 25917, 25918, 25919, 25920, 25921, 25922, 25923, 25924, 25925, 25926, 25927, 25928, 25929, 25930, 25931, 25932, 25933, 25934, 25935, 25936, 25937, 25938, 25939, 25940, 25941, 25942, 25943, 25944, 25945, 25946, 25947, 25948, 25949, 25950, 25951, 25952, 25953, 25954, 25955, 25956, 25957, 25958, 25959, 25960, 25961, 25962, 25963, 25964, 25965, 25966, 25967, 25968, 25969, 25970, 25971, 25972, 25973, 25974, 25975, 25976, 25977, 25978, 25979, 25980, 25981, 25982, 25983, 25984, 25985, 25986, 25987, 25988, 25989, 25990, 25991, 25992, 25993, 25994, 25995, 25996, 25997, 25998, 25999, 26000, 26001, 26002, 26003, 26004, 26005, 26006, 26007, 26009, 26010, 26011, 26012, 26013, 26014, 26016, 26017, 26019, 26020, 26022, 26023, 26025, 26026, 26027, 26028, 26029, 26030, 26031, 26032, 26033, 26034, 26035, 26036, 26037, 26038, 26039, 26040, 26042, 26043, 26044, 26045, 26046, 26047, 26049, 26050, 26052, 26053, 26055, 26056, 26058, 26059, 26060, 26061, 26062, 26063, 26064, 26065, 26066, 26067, 26068, 26069, 26070, 26071, 26072, 26073, 26074, 26075, 26076, 26077, 26078, 26079, 26080, 26081, 26082, 26083, 26084, 26085, 26086, 26087, 26088, 26089, 26090, 26091, 26092, 26093, 26094, 26095, 26096, 26097, 26098, 26099, 26100, 26101, 26102, 26103, 26104, 26105, 26106, 26107, 26108, 26109, 26110, 26111, 26112, 26113, 26114, 26115, 26116, 26117, 26118, 26119, 26120, 26121, 26122, 26123, 26124, 26125, 26126, 26127, 26128, 26129, 26130, 26131, 26132, 26133, 26134, 26135, 26136, 26137, 26138, 26139, 26140, 26141, 26142, 26143, 26144, 26145, 26146, 26147, 26148, 26149, 26150, 26151, 26153, 26154, 26156, 26157, 26159, 26160, 26162, 26163, 26164, 26165, 26166, 26167, 26168, 26169, 26170, 26171, 26172, 26173, 26174, 26175, 26176, 26177, 26178, 26179, 26180, 26181, 26182, 26183, 26184, 26185, 26186, 26187, 26188, 26189, 26190, 26191, 26192, 26193, 26194, 26195, 26196, 26197, 26198, 26199, 26200, 26201, 26202, 26203, 26204, 26205, 26206, 26207, 26208, 26209, 26210, 26211, 26212, 26213, 26214, 26215, 26216, 26217, 26218, 26219, 26220, 26221, 26222, 26223, 26224, 26225, 26226, 26227, 26228, 26229, 26230, 26231, 26232, 26233, 26234, 26235, 26236, 26237, 26238, 26239, 26240, 26241, 26242, 26243, 26244, 26245, 26246, 26247, 26248, 26249, 26250, 26251, 26252, 26253, 26254, 26255, 26256, 26257, 26258, 26259, 26260, 26261, 26262, 26263, 26264, 26265, 26266, 26268, 26269, 26271, 26272, 26273, 26274, 26275, 26276, 26277, 26278, 26279, 26280, 26281, 26282, 26283, 26285, 26286, 26287, 26288, 26289, 26290, 26292, 26293, 26294, 26296, 26297, 26298, 26299, 26300, 26302, 26303, 26304, 26305, 26307, 26308, 26310, 26311, 26312, 26313, 26314, 26315, 26316, 26317, 26318, 26319, 26320, 26321, 26322, 26323, 26324, 26325, 26326, 26327, 26328, 26329, 26330, 26331, 26332, 26333, 26334, 26335, 26336, 26337, 26338, 26339, 26340, 26341, 26342, 26343, 26344, 26345, 26346, 26347, 26348, 26349, 26350, 26351, 26352, 26353, 26354, 26355, 26356, 26357, 26358, 26359, 26360, 26361, 26362, 26363, 26364, 26365, 26366, 26367, 26368, 26369, 26370, 26371, 26372, 26373, 26374, 26375, 26376, 26377, 26378, 26379, 26383, 26384, 26385, 26386, 26387, 26388, 26389, 26390, 26391, 26392, 26393, 26394, 26395, 26396, 26397, 26398, 26399, 26401, 26403, 26404, 26405, 26406, 26407, 26408, 26409, 26410, 26415, 26416, 26417, 26418, 26419, 26420, 26421, 26422, 26423, 26424, 26425, 26426, 26427, 26429, 26430, 26432, 26433, 26434, 26435, 26436, 26437, 26438, 26439, 26440, 26441, 26442, 26443, 26444, 26445, 26446, 26447, 26448, 26449, 26450, 26451, 26452, 26453, 26454, 26455, 26457, 26458, 26460, 26461, 26462, 26463, 26464, 26465, 26466, 26467, 26468, 26469, 26470, 26471, 26472, 26473, 26474, 26475, 26476, 26477, 26478, 26479, 26480, 26481, 26482, 26483, 26484, 26485, 26486, 26487, 26488, 26489, 26490, 26491, 26492, 26493, 26494, 26495, 26496, 26497, 26498, 26499, 26500, 26501, 26502, 26503, 26504, 26505, 26506, 26507, 26508, 26509, 26510, 26511, 26512, 26513, 26514, 26515, 26516, 26517, 26518, 26519, 26520, 26521, 26522, 26523, 26524, 26525, 26526, 26527, 26528, 26529, 26530, 26531, 26532, 26533, 26534, 26535, 26536, 26537, 26538, 26539, 26540, 26541, 26542, 26543, 26545, 26546, 26547, 26548, 26549, 26550, 26551, 26552, 26553, 26554, 26555, 26556, 26557, 26558, 26559, 26560, 26561, 26562, 26563, 26564, 26565, 26566, 26567, 26568, 26569, 26570, 26571, 26572, 26573, 26574, 26575, 26577, 26578, 26580, 26581, 26582, 26583, 26584, 26585, 26587, 26588, 26589, 26590, 26591, 26592, 26593, 26594, 26595, 26596, 26598, 26599, 26601, 26602, 26603, 26604, 26605, 26606, 26608, 26609, 26610, 26611, 26612, 26613, 26614, 26615, 26616, 26617, 26618, 26619, 26620, 26621, 26622, 26623, 26624, 26625, 26626, 26627, 26628, 26629, 26630, 26631, 26632, 26633, 26634, 26635, 26636, 26637, 26638, 26639, 26641, 26642, 26644, 26645, 26646, 26647, 26648, 26649, 26650, 26651, 26652, 26653, 26654, 26655, 26656, 26657, 26658, 26660, 26661, 26663, 26664, 26665, 26666, 26667, 26668, 26670, 26671, 26672, 26673, 26674, 26675, 26676, 26677, 26678, 26679, 26680, 26681, 26682, 26683, 26684, 26685, 26686, 26688, 26690, 26691, 26692, 26693, 26694, 26695, 26696, 26697, 26698, 26699, 26700, 26701, 26702, 26703, 26704, 26705, 26707, 26708, 26710, 26711, 26712, 26713, 26714, 26715, 26716, 26717, 26718, 26719, 26720, 26721, 26722, 26723, 26724, 26725, 26726, 26727, 26728, 26729, 26730, 26731, 26732, 26733, 26734, 26735, 26736, 26737, 26738, 26739, 26740, 26741, 26742, 26743, 26744, 26745, 26746, 26747, 26748, 26749, 26750, 26751, 26752, 26753, 26754, 26755, 26756, 26757, 26758, 26759, 26760, 26761, 26762, 26763, 26764, 26765, 26767, 26768, 26770, 26771, 26772, 26773, 26774, 26775, 26776, 26777, 26778, 26779, 26780, 26781, 26782, 26783, 26784, 26785, 26786, 26787, 26788, 26789, 26790, 26791, 26792, 26793, 26794, 26795, 26796, 26797, 26798, 26799, 26800, 26801, 26802, 26803, 26804, 26805, 26806, 26807, 26808, 26809, 26810, 26811, 26812, 26813, 26814, 26815, 26816, 26817, 26818, 26819, 26820, 26821, 26822, 26823, 26824, 26825, 26826, 26827, 26828, 26829, 26830, 26831, 26832, 26833, 26834, 26835, 26836, 26837, 26838, 26839, 26840, 26843, 26844, 26845, 26846, 26847, 26848, 26849, 26850, 26851, 26852, 26853, 26855, 26856, 26858, 26859, 26860, 26861, 26862, 26863, 26864, 26865, 26867, 26868, 26870, 26871, 26872, 26873, 26875, 26876, 26878, 26879, 26880, 26881, 26882, 26883, 26884, 26885, 26886, 26887, 26888, 26889, 26890, 26891, 26892, 26893, 26894, 26895, 26896, 26897, 26898, 26899, 26900, 26901, 26902, 26903, 26904, 26906, 26907, 26909, 26910, 26911, 26912, 26913, 26914, 26915, 26916, 26917, 26918, 26919, 26920, 26921, 26922, 26924, 26925, 26927, 26928, 26929, 26930, 26931, 26932, 26933, 26934, 26935, 26936, 26937, 26938, 26939, 26940, 26941, 26942, 26943, 26944, 26945, 26946, 26947, 26948, 26949, 26950, 26952, 26953, 26954, 26955, 26956, 26957, 26958, 26959, 26960, 26961, 26962, 26963, 26964, 26965, 26966, 26968, 26969, 26970, 26971, 26972, 26973, 26974, 26975, 26976, 26977, 26978, 26979, 26980, 26981, 26982, 26983, 26984, 26985, 26986, 26987, 26988, 26989, 26990, 26992, 26994, 26995, 26996, 26997, 26998, 26999, 27000, 27001, 27002, 27004, 27005, 27007, 27008, 27009, 27010, 27011, 27012, 27013, 27014, 27016, 27017, 27019, 27020, 27021, 27022, 27023, 27025, 27026, 27027, 27028, 27029, 27030, 27031, 27032, 27034, 27035, 27037, 27038, 27039, 27040, 27041, 27043, 27044, 27045, 27046, 27047, 27048, 27049, 27050, 27051, 27052, 27053, 27054, 27055, 27056, 27057, 27058, 27060, 27061, 27062, 27063, 27064, 27066, 27067, 27068, 27069, 27071, 27072, 27074, 27075, 27076, 27077, 27078, 27079, 27080, 27081, 27082, 27083, 27084, 27085, 27086, 27087, 27088, 27089, 27090, 27091, 27092, 27093, 27094, 27095, 27096, 27097, 27098, 27099, 27100, 27101, 27102, 27103, 27104, 27105, 27106, 27107, 27108, 27109, 27110, 27111, 27112, 27113, 27115, 27116, 27117, 27118, 27119, 27120, 27122, 27123, 27124, 27125, 27126, 27127, 27128, 27129, 27130, 27131, 27132, 27133, 27134, 27135, 27136, 27137, 27138, 27139, 27140, 27141, 27142, 27143, 27144, 27145, 27146, 27147, 27148, 27149, 27150, 27151, 27152, 27153, 27154, 27155, 27156, 27157, 27158, 27159, 27160, 27161, 27162, 27163, 27164, 27165, 27166, 27167, 27168, 27169, 27170, 27171, 27172, 27173, 27174, 27175, 27176, 27177, 27178, 27179, 27180, 27181, 27182, 27183, 27184, 27185, 27186, 27187, 27188, 27189, 27191, 27193, 27194, 27195, 27196, 27197, 27198, 27199, 27200, 27201, 27202, 27203, 27204, 27205, 27206, 27207, 27208, 27209, 27210, 27211, 27212, 27213, 27214, 27215, 27216, 27217, 27218, 27219, 27220, 27221, 27222, 27223, 27224, 27225, 27226, 27227, 27228, 27229, 27230, 27231, 27232, 27233, 27234, 27236, 27237, 27239, 27240, 27241, 27242, 27243, 27244, 27245, 27246, 27247, 27248, 27249, 27250, 27251, 27253, 27254, 27256, 27257, 27259, 27260, 27262, 27263, 27264, 27265, 27266, 27267, 27268, 27269, 27270, 27271, 27272, 27273, 27274, 27275, 27276, 27277, 27278, 27279, 27280, 27281, 27282, 27283, 27284, 27285, 27287, 27288, 27290, 27291, 27292, 27293, 27294, 27295, 27296, 27297, 27298, 27299, 27300, 27301, 27302, 27303, 27304, 27305, 27306, 27307, 27308, 27309, 27310, 27311, 27312, 27313, 27314, 27315, 27316, 27317, 27318, 27319, 27320, 27321, 27322, 27323, 27324, 27325, 27326, 27327, 27329, 27330, 27331, 27332, 27333, 27334, 27335, 27336, 27337, 27339, 27340, 27342, 27343, 27344, 27345, 27346, 27347, 27348, 27349, 27350, 27351, 27352, 27353, 27354, 27355, 27356, 27357, 27358, 27359, 27360, 27361, 27362, 27363, 27364, 27365, 27366, 27367, 27368, 27369, 27370, 27371, 27372, 27373, 27374, 27375, 27376, 27377, 27378, 27379, 27380, 27381, 27382, 27383, 27384, 27385, 27386, 27387, 27388, 27389, 27390, 27391, 27392, 27393, 27394, 27395, 27396, 27397, 27398, 27399, 27400, 27401, 27402, 27403, 27404, 27405, 27406, 27407, 27408, 27409, 27410, 27412, 27413, 27415, 27416, 27417, 27418, 27419, 27420, 27421, 27422, 27423, 27424, 27425, 27426, 27427, 27428, 27429, 27430, 27431, 27432, 27433, 27434, 27435, 27436, 27437, 27438, 27439, 27440, 27441, 27442, 27443, 27444, 27445, 27446, 27447, 27448, 27449, 27450, 27451, 27452, 27453, 27454, 27455, 27456, 27457, 27458, 27459, 27460, 27461, 27462, 27463, 27464, 27465, 27466, 27467, 27469, 27470, 27471, 27472, 27473, 27474, 27475, 27476, 27477, 27478, 27479, 27480, 27481, 27482, 27483, 27484, 27485, 27486, 27487, 27488, 27489, 27490, 27491, 27493, 27494, 27495, 27496, 27497, 27498, 27499, 27500, 27501, 27502, 27503, 27504, 27505, 27506, 27507, 27508, 27510, 27511, 27513, 27514, 27515, 27516, 27517, 27518, 27520, 27521, 27522, 27523, 27524, 27525, 27526, 27527, 27528, 27529, 27530, 27531, 27532, 27533, 27534, 27535, 27536, 27537, 27538, 27539, 27540, 27541, 27542, 27543, 27544, 27545, 27546, 27547, 27548, 27549, 27550, 27551, 27552, 27553, 27554, 27555, 25356, 25354, 27557, 27558, 27559, 27560, 27561, 27562, 27255, 27252, 25644, 27255, 27565, 27566, 27567, 27568, 27569, 27570, 27571, 27572, 27578, 27579, 27581, 27582, 27588, 27589, 25672, 25670, 24257, 24254, 26414, 26381, 26414, 26412, 27591, 27592, 27593, 27594, 27595, 27596, 27597, 27598, 27599, 27601, 27602, 27603, 27604, 27606, 27607, 27609, 27610, 27611, 27612, 27613, 27614, 27615, 27616, 27618, 27619, 27621, 27622, 27623, 27624, 27625, 27626, 27627, 27628, 27629, 27630, 27631, 27632, 27633, 27634, 27635, 27636, 27638, 27639, 27641, 27642, 27643, 27644, 27645, 27646, 27647, 27648, 27650, 27651, 27652, 27653, 27654, 27655, 27656, 27657, 27659, 27660, 27661, 27663, 27664, 27666, 27667, 27668, 27669, 27670, 27671, 27672, 27673, 27675, 27676, 27677, 27679, 27680, 27682, 27683, 27684, 27685, 27686, 27687, 27688, 27689, 27690, 27691, 27692, 27693, 27694, 27696, 27697, 27699, 27700, 27701, 27702, 27703, 27704, 27705, 27706, 27707, 27708, 27709, 27710, 27711, 27712, 27713, 27714, 27715, 27716, 27717, 27718, 27719, 27721, 27722, 27724, 27725, 27726, 27727, 27728, 27729, 27731, 27732, 27733, 27734, 27735, 27736, 27737, 27738, 27739, 27740, 27741, 27742, 27743, 27744, 27745, 27746, 27748, 27749, 27750, 27751, 27752, 27753, 27754, 27755, 27757, 27758, 27760, 27761, 27763, 27764, 27765, 27766, 27767, 27768, 27769, 27770, 27772, 27773, 27775, 27776, 27777, 27778, 27779, 27780, 27781, 27782, 27783, 27784, 27785, 27787, 27788, 27790, 27791, 27792, 27793, 27794, 27795, 27796, 27797, 27798, 27799, 27800, 27801, 27802, 27804, 27805, 27806, 27807, 27808, 27809, 27810, 27811, 27812, 27813, 27814, 27815, 27816, 27818, 27819, 27820, 27821, 27822, 27823, 27824, 27825, 27826, 27827, 27828, 27829, 27830, 27831, 27832, 27833, 27834, 27835, 27836, 27837, 27838, 27839, 27840, 27841, 27842, 27848, 27849, 27851, 27852, 27858, 27859, 27860, 27861, 27862, 27863, 27865, 27866, 27867, 27868, 27869, 27870, 27872, 27873, 27874, 27875, 27876, 27877, 27878, 27879, 27880, 27881, 27882, 27883, 27884, 27885, 27886, 27887, 27888, 27889, 27890, 27891, 27892, 27893, 27894, 27895, 27897, 27898, 27900, 27901, 27903, 27904, 27906, 27907, 27908, 27909, 27910, 27911, 27913, 27914, 27915, 27916, 27917, 27918, 27920, 27921, 27922, 27923, 27924, 27925, 27926, 27927, 27928, 27929, 27930, 27931, 27932, 27933, 27934, 27935, 27936, 27937, 27938, 27939, 27940, 27941, 27942, 27943, 27944, 27945, 27946, 27949, 27950, 27951, 27952, 27953, 27954, 27955, 27956, 27957, 27958, 27961, 27962, 27963, 27964, 27965, 27966, 27967, 27968, 27969, 27970, 27971, 27972, 27974, 27975, 27976, 27977, 27978, 27979, 27980, 27981, 27982, 27983, 27984, 27985, 27986, 27987, 27988, 27989, 27990, 27991, 27992, 27993, 27994, 27995, 27996, 27997, 27998, 27999, 28000, 28001, 28002, 28003, 28004, 28005, 28006, 28007, 28008, 28009, 28010, 28011, 28012, 28013, 28014, 28015, 28016, 28018, 28019, 28020, 28021, 28022, 28023, 28024, 28025, 27577, 27575, 27587, 24942, 24939, 27847, 27845, 27857, 24942, 24939, 28026, 28027, 28028, 28029, 28030, 28031, 28032, 28033, 28034, 28035, 28036, 28037, 28038, 28039, 28040, 28041, 28042, 28043, 28044, 28045, 28046, 28047, 28048, 28049, 28050, 28051, 28052, 28053, 28054, 28055, 28056, 28057, 28058, 28059, 28060, 28061, 28062, 28063, 28064, 28065, 28066, 28067, 28068, 28069, 28070, 28071, 28072, 28073, 28074, 28075, 28076, 28077, 28078, 28079, 28080, 28081, 28082, 28083, 28084, 28085, 28086, 28087, 28088, 28089, 28090, 28091, 28092, 28093, 28094, 28095, 28097, 28098, 28100, 28101, 28103, 28104, 28106, 28107, 28108, 28109, 28110, 28111, 28112, 28113, 28114, 28115, 28116, 28117, 28118, 28119, 28120, 28121, 28122, 28123, 28124, 28125, 28126, 28127, 28128, 28129, 28130, 28131, 28132, 28133, 28134, 28135, 28136, 28137, 28138, 28139, 28140, 28141, 28142, 28143, 28144, 28145, 28146, 28147, 28148, 28149, 28150, 28151, 28152, 28153, 28154, 28155, 28157, 28158, 28160, 28161, 28162, 28163, 28164, 28165, 28166, 28167, 28168, 28169, 28170, 28172, 28173, 28175, 28176, 28177, 28178, 28179, 28180, 28181, 28182, 28183, 28184, 28185, 28186, 28187, 28188, 28190, 28191, 28193, 28194, 28195, 28196, 28197, 28198, 28199, 28200, 28201, 28202, 28203, 27948, 27960, 28204, 28205, 28207, 28208, 28209, 28210, 28211, 28213, 28214, 28216, 28217, 28219, 28220, 28221, 28222, 28223, 28224, 28225, 28226, 28227, 28228, 28229, 28230, 28231, 28232, 28233, 28234, 28235, 28237, 28238, 28240, 28241, 28243, 28244, 28245, 28246, 28247, 28248, 28249, 28250, 28251, 28252, 28253, 28254, 28255, 28256, 28257, 28258, 28259, 28260, 28262, 28263, 28265, 28266, 28268, 28269, 28270, 28271, 28272, 28273, 28274, 28275, 28276, 28277, 28278, 28279, 28280, 28281, 28282, 28283, 28284, 28285, 28286, 28287, 28289, 28290, 28291, 28292, 28293, 28294, 28295, 28296, 28297, 28298, 28299, 28300, 28301, 28302, 28303, 28304, 28305, 28306, 28307, 28308, 28310, 28311, 28312, 28313, 28314, 28315, 28316, 28317, 28318, 28319, 28320, 28321, 28322, 28323, 28324, 28325, 28326, 28327, 28330, 28331, 28332, 28333, 28334, 28335, 28336, 28337, 28338, 28339, 28340, 28341, 28342, 28343, 28344, 28345, 28346, 28347, 28348, 28349, 28350, 28351, 28352, 28353, 28354, 28355, 28356, 28357, 28358, 28359, 28360, 28361, 28362, 28363, 28364, 28365, 29, 30, 31, 28384, 28386, 28388, 28390, 28392, 28394, 28396, 28399, 28402, 28404, 28410, 28412, 28418, 28420, 28422, 28424, 28426, 28429, 28432, 28434, 28436, 28438, 28440, 28443, 28446, 28453, 28455, 28459, 28461, 28463, 28465, 28469, 28471, 28473, 28477, 28480, 28482, 28486, 28489, 28491, 28493, 28495, 28498, 28504, 28507, 28510, 28513, 28516, 28518, 28520, 28523, 28525, 28527, 28530, 28532, 28534, 28536, 28539, 28541, 28544, 28546, 28548, 28550, 28552, 28555, 28557, 28559, 28561, 28563, 28565, 28567, 28569, 28571, 28573, 28575, 28577, 28579, 28581, 28583, 28585, 28587, 28591, 28593, 28595, 28598, 28600, 28602, 28605, 28607, 28609, 28611, 28614, 28616, 28619, 28621, 28623, 28625, 28628, 28631, 28633, 28635, 28637, 28639, 28641, 28643, 28645, 28648, 28650, 28652, 28654, 28660, 28662, 28664, 28666, 28668, 28670, 28673, 28675, 28677, 28679, 28682, 28684, 28686, 28688, 28691, 28693, 28695, 28697, 28699, 28704, 28707, 28710, 28713, 28717, 28719, 28724, 28729, 28732, 28735, 28737, 28743, 28746, 28749, 28752, 28755, 28757, 28759, 28761, 28763, 28765, 28767, 28769, 28771, 28774, 28777, 28779, 28781, 28783, 28785, 28788, 28792, 28794, 28798, 28800, 28802, 28805, 28808, 28813, 28815, 28818, 28820, 28822, 28824, 28826, 28828, 28831, 28833, 28839, 28841, 28844, 28846, 28849, 28851, 28853, 28856, 28858, 28860, 28862, 28864, 28867, 28870, 28872, 28874, 28877, 28880, 28883, 28886, 28888, 28890, 28892, 28894, 28896, 28899, 28901, 28903, 28905, 28907, 28909, 28912, 28915, 28920, 28922, 28924, 28929, 28931, 28933, 28935, 28937, 28939, 28941, 28946, 28948, 28953, 28955, 28958, 28961, 28964, 28967, 28970, 28973, 28975, 28977, 28980, 28983, 28985, 28987, 28990, 28993, 28995, 28997, 28999, 29001, 29004, 29007, 29009, 29011, 29013, 29015, 29017, 29019, 29021, 29023, 29025, 29027, 29029, 29032, 29035, 29037, 29039, 29041, 29043, 29045, 29047, 29049, 29052, 29055, 29057, 29059, 29062, 29065, 29068, 29070, 29072, 29078, 29080, 29082, 29084, 29090, 29093, 29098, 29100, 29102, 29105, 29108, 29110, 29112, 29115, 29118, 29121, 29124, 29127, 29129, 29131, 29133, 29135, 29138, 29141, 29143, 29145, 29147, 29149, 29151, 29154, 29157, 29159, 29161, 29163, 29166, 29169, 29171, 29173, 29175, 29177, 29179, 29182, 29184, 29186, 29188, 29191, 29194, 29196, 29198, 29200, 29202, 29204, 29206, 29209, 29212, 29214, 29216, 29219, 29222, 29224, 29226, 29228, 29230, 29232, 29234, 29236, 29238, 29240, 29242, 29244, 29246, 29249, 29252, 29254, 29257, 29259, 29261, 29263, 29265, 29267, 29269, 29271, 29273, 29275, 29278, 29280, 29283, 29285, 29287, 29289, 29292, 29295, 29298, 29300, 29302, 29305, 29308, 29311, 29314, 29318, 29320, 29322, 29324, 29326, 29328, 29332, 29335, 29337, 29339, 29341, 29344, 29346, 29348, 29350, 29353, 29355, 29357, 29359, 29361, 29364, 29366, 29368, 29371, 29374, 29377, 29379, 29381, 29383, 29385, 29387, 29390, 29392, 29394, 29396, 29398, 29400, 29403, 29406, 29409, 29412, 29415, 29418, 29420, 29422, 29424, 29426, 29428, 29430, 29432, 29436, 29439, 29441, 29443, 29446, 29449, 29451, 29455, 29458, 29461, 29463, 29465, 29467, 29471, 29474, 29477, 29480, 29482, 29484, 29487, 29490, 29492, 29494, 29496, 29498, 29501, 29504, 29506, 29508, 29512, 29515, 29517, 29519, 29521, 29523, 29526, 29529, 29531, 29533, 29536, 29539, 29541, 29543, 29545, 29547, 29557, 29559, 29561, 29563, 29565, 29575, 29577, 29579, 29582, 29589, 29592, 29595, 29597, 29599, 29604, 29606, 29608, 29610, 29612, 29614, 29616, 29618, 29620, 29622, 29642, 29645, 29648, 29650, 29652, 29654, 29656, 29658, 29660, 29663, 29667, 29669, 29672, 29675, 29677, 29679, 29682, 29685, 29688, 29691, 29694, 29697, 29699, 29701, 29704, 29706, 29708, 29711, 29714, 29716, 29718, 29721, 29724, 29726, 29732, 29735, 29738, 29740, 29742, 29745, 29748, 29751, 29758, 29761, 29764, 29766, 29768, 29775, 29778, 29781, 29783, 29787, 29790, 29792, 29794, 29798, 29800, 29802, 29805, 29808, 29810, 29814, 29816, 29819, 29821, 29823, 29825, 29828, 29830, 29836, 29843, 29845, 29847, 29850, 29853, 29856, 29859, 29861, 29863, 29866, 29868, 29870, 29873, 29875, 29877, 29879, 29881, 29883, 29885, 29887, 29890, 29893, 29895, 29897, 29899, 29902, 29905, 29909, 29911, 29913, 29915, 29921, 29927, 29930, 29933, 29935, 29937, 29940, 29943, 29945, 29947, 29950, 29952, 29955, 29958, 29960, 29962, 29965, 29967, 29969, 29971, 29973, 29975, 29978, 29983, 29986, 29988, 29990, 29992, 29994, 29997, 30000, 30003, 30006, 30009, 30011, 30013, 30015, 30017, 30020, 30022, 30024, 30026, 30028, 30030, 30032, 30034, 30036, 30038, 30040, 30042, 30044, 30047, 30051, 30053, 30056, 30059, 30062, 30066, 30068, 30070, 30072, 30074, 30076, 30079, 30082, 30085, 30087, 30089, 30092, 30095, 30097, 30099, 30101, 30103, 30105, 30109, 30112, 30116, 30118, 30120, 30122, 30128, 30131, 30134, 30136, 30138, 30140, 30145, 30147, 30149, 30151, 30153, 30155, 30157, 30159, 30161, 30164, 30166, 30168, 30170, 30172, 30175, 30182, 30185, 30188, 30191, 30194, 30196, 30198, 30201, 30204, 30207, 30210, 30213, 30216, 30218, 30220, 30223, 30226, 30229, 30232, 30234, 30236, 30238, 30241, 30243, 30245, 30248, 30250, 30253, 30255, 30258, 30260, 30262, 30264, 30268, 30271, 30273, 30275, 30277, 30281, 30284, 30286, 30288, 30290, 30292, 30295, 30297, 30299, 30301, 30304, 30306, 30309, 30312, 30314, 30316, 30320, 30323, 30326, 30331, 30333, 30339, 30341, 30345, 30348, 30351, 30354, 30357, 30362, 30365, 30367, 30369, 30371, 30374, 30377, 30382, 30384, 30386, 30389, 30402, 30405, 30408, 30410, 30412, 30414, 30416, 29858, 29855, 29858, 29855, 30427, 30430, 30433, 30435, 30437, 30439, 30441, 30444, 30447, 30450, 30452, 30454, 30455, 29757, 29774, 28409, 28407, 29755, 29772, 28417, 28415, 28452, 28450, 28457, 28476, 28485, 30456, 30458, 30460, 30462, 30463, 28501, 28503, 28502, 24423, 24421, 24423, 24424, 24422, 24424, 30464, 30465, 28658, 28658, 30466, 30468, 30470, 30472, 30474, 30476, 30478, 30480, 30481, 24247, 28703, 24247, 28723, 28728, 28742, 28740, 28928, 28812, 28817, 28898, 28838, 28836, 30482, 30483, 28898, 28945, 28919, 28928, 28945, 24263, 24262, 29076, 29088, 29097, 30484, 30485, 26402, 30486, 30487, 29435, 29454, 29470, 29511, 29552, 29550, 29556, 29554, 29570, 29568, 29574, 29572, 29588, 29586, 29603, 29731, 29627, 29625, 29631, 29629, 29635, 29633, 29639, 24375, 24374, 26689, 26687, 29731, 29729, 29757, 29755, 29774, 29772, 29786, 29813, 29833, 29835, 29842, 29840, 29813, 29833, 29835, 29842, 29840, 26967, 24424, 24423, 24422, 24421, 29924, 29926, 29925, 29982, 27192, 27190, 30127, 30125, 30144, 30181, 30179, 30240, 30247, 24505, 24504, 30319, 30330, 30338, 24505, 24504, 24506, 24507, 30361, 30381, 24506, 24507, 30361, 24507, 30361, 30381, 30319, 30330, 30338, 30336, 24505, 24504, 24507, 30361, 30381, 30488, 30490, 30492, 30495, 30499, 30501, 30503, 30506, 30509, 30511, 30517, 30519, 30521, 30524, 30527, 30529, 30533, 30535, 30537, 30539, 30541, 30543, 30545, 30548, 30550, 30552, 30554, 30556, 30558, 30561, 30563, 30565, 30567, 30569, 30571, 30573, 30576, 30578, 30580, 30582, 30584, 30586, 30588, 30593, 30596, 30599, 30601, 30603, 30605, 30607, 30609, 30612, 30615, 30617, 30619, 30621, 30623, 30625, 30627, 30629, 30631, 30633, 30635, 30637, 30639, 30641, 30643, 30645, 30647, 30650, 30653, 30656, 30658, 30662, 30665, 30669, 30671, 30673, 30675, 30677, 30679, 30681, 30683, 30686, 30689, 30691, 30693, 30695, 30697, 30699, 30701, 30703, 30705, 30707, 30709, 30711, 30713, 30715, 30717, 30719, 30721, 30723, 30725, 30727, 30730, 30733, 30735, 30737, 30739, 30741, 30743, 30745, 30747, 30749, 30751, 30753, 30755, 30757, 30759, 30761, 30763, 30765, 30767, 30769, 30771, 30773, 30775, 30777, 30780, 30783, 30786, 24891, 24879, 30394, 24891, 24879, 24892, 24886, 30590, 24892, 24891, 24891, 24879, 24891, 24879, 24892, 24886, 30590, 24892, 24891, 30789, 30791, 30793, 30796, 30799, 30801, 30803, 30806, 30809, 30811, 30813, 30816, 30818, 30821, 30823, 30825, 30827, 30829, 30832, 30835, 30838, 30840, 30842, 30844, 30846, 30849, 30852, 30854, 30856, 30859, 30861, 30863, 30865, 30867, 30869, 30870, 30871, 30872, 30873, 30516, 30498, 30516, 30514, 30532, 30547, 30560, 30592, 30661, 30661, 27817, 30874, 30875, 30876, 30877, 30878, 30881, 30883, 30885, 30887, 30889, 30892, 30895, 30897, 30899, 30902, 30904, 30906, 30909, 30911, 30913, 30916, 30918, 30920, 30923, 30925, 30927, 30930, 30933, 30935, 30937, 30939, 30941, 30944, 30947, 30949, 30951, 30953, 30955, 30958, 30961, 30964, 30967, 30970, 30972, 30974, 30977, 30980, 30982, 30984, 30987, 30990, 30993, 30996, 30999, 31001, 31003, 31005, 31007, 31009, 31011, 31016, 31018, 31020, 31022, 31024, 31026, 31028, 31030, 31032, 31034, 31036, 31038, 31040, 31042, 31047, 31048, 31049, 31052, 31054, 31056, 31058, 31063, 31065, 31067, 31069, 31071, 31075, 31077, 31079, 31081, 31083, 31085, 31087, 31089, 31091, 31094, 31097, 31099, 31101, 30880, 31015, 31107, 31109, 31111, 31114, 31116, 31118, 31121, 31123, 31125, 31127, 31129, 31131, 31134, 31136, 31138, 31141, 31143, 31145, 31147, 31149, 31151, 31154, 31106, 25301, 25300, 31106, 25301, 25300, 31106, 25301, 25300, 31160, 25301, 25300, 31161, 31164, 31167, 31170, 31173, 31176, 31179, 31182, 31185, 31188, 31191, 31194, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 31978, 31979, 31980, 31981, 24159, 24158, 24159, 24158, 24244, 24245, 31993, 31995, 24169, 24168, 31996, 24169, 24168, 25364, 25361, 28401, 28398, 31209, 31997, 31998, 31999, 32000, 31211, 32001, 32002, 31213, 31215, 28431, 28428, 31219, 31221, 28445, 28442, 28448, 32003, 32004, 31226, 32005, 31379, 28848, 31382, 28458, 31227, 24259, 24258, 28869, 28866, 24260, 24261, 28879, 28467, 28468, 28885, 31231, 25433, 31379, 28848, 31382, 28855, 31385, 24259, 24258, 28869, 28866, 24260, 24261, 28879, 28467, 28468, 28885, 31231, 25442, 31233, 28479, 32006, 31236, 32007, 31237, 28488, 29221, 31239, 31453, 29034, 29031, 26041, 31458, 26048, 26054, 25465, 25468, 30187, 30184, 30193, 28497, 25474, 27286, 30203, 30200, 30209, 30206, 30215, 30212, 31907, 30222, 30228, 30225, 30231, 32011, 32013, 32014, 32015, 28509, 28506, 28515, 28512, 31248, 28522, 25507, 25504, 28529, 31254, 31256, 31257, 28543, 29858, 31260, 24211, 24210, 28554, 31265, 31267, 31269, 31271, 25554, 24207, 24206, 31276, 31278, 25569, 28589, 31281, 31283, 32016, 32017, 32018, 24421, 31286, 31287, 24211, 24210, 28613, 31292, 31293, 24213, 24212, 28627, 28630, 31299, 31301, 31303, 32019, 32020, 32021, 24422, 31305, 31306, 25638, 25635, 28656, 32022, 31912, 31913, 31945, 27338, 27328, 30322, 30325, 30328, 32024, 31952, 31912, 31913, 31945, 27338, 27328, 30322, 30325, 30328, 32025, 31952, 31422, 28960, 28957, 28966, 28963, 28969, 28972, 31430, 28982, 28979, 31311, 29211, 29208, 31422, 28960, 28957, 28966, 28963, 28972, 28969, 31430, 28982, 28979, 31524, 29211, 29208, 31312, 31312, 31513, 31514, 31516, 29193, 29190, 31520, 31522, 31524, 29211, 29208, 31314, 28672, 29218, 31532, 31534, 31536, 31538, 31540, 31542, 24244, 24245, 32033, 31319, 31320, 31321, 31323, 31324, 31598, 24245, 24244, 31327, 32035, 24246, 32036, 28706, 28709, 28715, 28712, 31333, 32037, 24246, 32038, 28726, 32039, 28734, 28731, 31339, 32040, 32041, 28748, 28745, 28754, 28751, 31345, 31347, 31349, 31351, 28776, 28773, 31355, 31357, 28790, 28787, 31360, 31361, 32042, 28796, 31363, 28830, 28804, 28807, 32043, 28810, 31368, 32044, 31369, 28926, 32045, 31371, 28830, 24251, 24250, 31376, 32046, 32047, 31378, 32048, 31379, 28848, 31382, 28855, 31385, 24259, 24258, 28869, 28866, 24261, 24260, 28879, 28876, 28885, 28882, 31397, 31399, 31401, 28926, 32050, 31403, 31405, 31407, 32051, 28943, 28917, 28914, 32052, 31411, 32053, 28926, 31414, 31416, 31418, 32054, 28943, 31421, 32055, 32056, 31422, 28960, 28957, 28966, 28963, 28972, 28969, 31430, 28982, 28979, 31434, 28992, 28989, 31438, 31440, 29006, 29003, 26008, 31445, 26015, 26021, 26018, 26024, 31528, 29221, 29218, 31451, 31453, 29034, 29031, 26041, 31458, 26048, 26054, 26051, 26057, 29251, 29051, 29054, 31466, 29061, 29064, 29067, 31471, 29074, 32057, 31473, 31475, 29086, 32058, 31477, 29251, 29092, 29095, 32059, 31549, 31480, 29104, 29107, 31484, 29114, 29120, 29117, 29123, 29126, 31491, 29137, 24285, 24284, 29140, 26155, 26152, 26161, 26158, 31501, 31502, 31503, 31505, 24294, 31507, 31508, 31510, 24295, 31513, 31514, 31516, 29193, 29190, 31520, 31522, 31524, 29211, 29208, 31528, 29221, 29218, 31532, 31534, 31536, 31538, 31540, 31542, 29251, 29248, 26270, 26267, 31547, 31549, 31551, 26284, 31554, 26291, 29277, 31557, 29282, 31559, 26309, 26306, 29294, 29291, 29297, 31566, 29304, 29310, 29307, 29313, 29316, 31572, 31574, 31576, 29330, 31578, 31579, 31581, 29343, 31584, 31586, 31587, 31589, 24323, 24322, 32060, 31602, 29363, 31593, 29373, 29370, 32062, 26400, 31598, 24323, 24322, 32063, 31602, 31603, 31605, 26431, 26428, 29405, 29402, 29411, 29408, 29417, 29414, 31615, 26459, 26456, 31619, 31621, 29438, 32065, 31624, 29448, 29445, 31628, 32066, 29460, 29457, 24341, 24340, 31634, 32067, 29476, 29473, 29479, 31639, 29489, 29486, 31643, 31645, 29503, 29500, 26544, 24343, 24342, 29514, 32068, 31653, 31655, 29528, 29525, 31659, 29538, 29535, 26579, 26576, 26586, 24371, 24370, 32069, 32070, 32071, 32072, 26600, 26597, 26607, 24371, 24370, 32073, 32074, 32075, 32076, 31673, 24359, 24358, 29584, 29581, 32077, 32078, 29591, 29594, 24361, 24360, 26643, 26640, 32079, 32080, 31682, 29647, 29644, 31684, 31685, 26662, 26659, 26669, 24371, 24370, 32081, 32082, 32083, 32084, 32085, 32086, 32087, 32088, 32089, 32090, 32091, 29647, 29644, 31694, 31696, 26709, 26706, 29665, 29662, 31701, 29674, 29671, 31705, 29681, 29687, 29684, 29690, 29696, 29693, 29703, 24385, 24384, 29710, 24387, 24386, 29713, 26769, 26766, 29723, 29720, 31724, 32092, 32093, 29737, 29734, 31728, 29747, 29744, 29753, 29750, 32094, 32095, 29763, 29760, 31736, 29770, 32096, 32097, 29780, 29777, 31741, 32098, 26857, 26854, 29807, 29804, 26869, 26866, 32099, 26842, 26841, 31743, 31756, 29827, 31745, 32100, 29838, 32101, 32102, 32103, 26857, 26854, 29807, 29804, 26869, 26866, 32104, 26877, 26874, 31754, 31756, 29827, 31759, 32105, 29838, 32106, 32107, 32108, 26908, 26905, 29852, 29849, 29858, 29855, 26926, 26923, 29865, 31771, 29872, 31774, 31776, 31778, 26951, 29892, 29889, 31783, 31785, 32109, 29907, 29904, 31788, 31790, 24420, 32110, 32111, 32112, 32113, 24425, 32114, 32115, 32116, 29932, 29929, 27006, 27003, 29942, 29939, 27018, 27015, 29949, 27024, 29957, 29954, 27036, 27033, 29964, 27042, 31810, 31812, 29977, 29980, 32117, 31815, 31816, 31817, 27073, 27070, 29999, 29996, 30005, 30002, 30008, 31826, 30019, 24455, 24454, 31831, 31833, 24459, 24458, 27114, 24459, 24458, 27121, 31841, 30049, 30046, 31844, 30055, 30061, 30058, 30064, 31849, 31851, 31853, 30078, 30084, 30081, 31858, 30094, 30091, 31862, 31864, 31866, 32118, 32119, 30114, 30111, 31869, 31871, 24466, 32120, 32121, 30133, 30130, 31876, 24467, 32122, 30142, 31880, 27238, 27235, 31884, 30163, 24473, 24472, 27255, 27252, 27261, 27258, 30177, 30174, 32123, 32124, 30187, 30184, 30193, 30190, 27289, 27286, 30203, 30200, 30209, 30206, 30215, 30212, 31907, 30222, 30228, 30225, 30231, 31912, 31913, 31945, 27338, 27328, 30322, 30325, 30328, 32125, 31952, 31943, 31944, 31917, 27341, 27338, 32126, 31920, 32127, 32128, 30347, 31922, 31923, 31925, 27414, 27411, 32129, 30325, 30267, 32130, 31952, 32131, 31954, 32132, 32133, 30270, 30353, 30279, 32134, 32135, 32136, 30359, 30283, 31933, 24497, 24496, 24492, 24493, 32137, 31930, 30388, 30391, 30353, 30279, 32138, 32139, 32140, 30359, 30283, 31933, 24497, 24496, 24493, 24492, 30379, 31968, 30391, 24495, 24494, 30353, 30350, 32141, 24506, 32142, 30359, 30364, 31962, 24497, 24496, 24499, 24498, 30303, 32143, 31968, 30391, 30388, 31943, 31944, 31945, 27414, 27411, 30322, 32144, 30328, 30325, 32145, 31952, 32146, 32147, 31954, 32148, 32149, 30347, 30353, 30350, 32150, 24506, 32151, 30359, 30364, 31962, 27468, 30376, 30373, 32152, 30379, 31968, 30391, 30388, 32284, 32285, 32286, 32287, 32288, 32289, 32290, 32291, 32292, 32293, 30407, 30404, 27512, 27509, 31976, 27519, 32294, 32295, 32296, 32297, 32298, 32299, 32300, 32301, 32302, 30432, 30429, 24951, 31986, 24952, 30446, 30443, 24954, 24953, 30449, 32026, 32009, 27563, 32026, 27573, 24922, 24921, 32337, 27583, 27580, 32339, 32271, 27590, 32274, 27919, 27608, 27605, 30508, 30505, 27620, 24854, 24853, 32342, 30494, 32164, 30526, 30523, 27640, 27600, 32343, 27608, 27605, 30508, 30505, 27620, 27617, 32344, 32345, 32164, 30526, 30523, 27640, 27637, 32346, 27649, 24870, 24869, 32173, 24891, 24879, 32347, 27665, 27662, 32179, 24891, 24879, 32348, 27681, 27678, 32185, 24892, 24886, 30575, 27698, 27695, 32192, 30590, 24892, 24891, 32349, 30598, 30595, 27723, 27720, 32201, 27730, 30614, 30611, 32206, 32208, 27747, 32211, 32350, 30667, 30664, 32228, 27756, 27762, 27759, 32233, 32235, 27817, 30688, 32218, 27774, 27771, 30652, 30649, 30655, 27789, 27786, 32351, 30667, 30664, 32228, 27803, 32231, 32233, 32235, 32352, 30688, 32238, 32240, 32242, 24920, 24919, 27843, 24922, 24921, 32353, 27853, 27850, 32355, 32251, 27864, 32254, 27871, 30732, 30729, 24951, 32260, 24952, 30782, 30779, 24954, 24953, 30788, 27899, 27896, 27905, 27902, 32271, 27912, 32274, 27919, 32277, 24968, 24967, 30782, 30779, 30788, 30785, 32304, 30795, 30798, 32308, 30805, 30808, 32312, 30815, 27973, 30820, 25145, 25144, 32317, 32319, 30834, 30831, 25147, 25146, 30837, 32324, 32326, 30851, 30848, 32330, 28017, 30858, 32334, 32336, 32452, 32359, 32361, 30894, 30891, 32365, 30901, 32368, 30908, 32371, 30915, 32374, 30922, 32377, 30932, 30929, 32381, 32383, 30946, 30943, 28099, 28096, 28105, 28102, 30960, 30957, 30963, 30969, 30966, 32396, 30979, 30976, 30986, 25216, 25215, 30992, 30989, 30998, 30995, 32407, 28159, 28156, 32411, 32453, 31013, 28174, 28171, 32416, 32418, 32420, 28192, 28189, 32424, 25281, 25280, 32476, 32477, 32478, 28206, 32430, 28215, 28212, 28218, 32479, 32480, 32481, 25288, 32436, 25281, 25280, 32462, 32471, 28239, 28236, 28242, 32443, 25288, 32446, 25289, 32448, 32471, 28264, 28261, 28267, 32482, 32483, 32484, 32455, 31113, 32458, 31120, 28288, 32462, 32464, 31133, 32467, 31140, 28309, 32471, 32473, 31156, 31153, 32485, 32486, 32487, 31166, 31163, 31172, 31169, 31178, 31175, 31184, 31181, 31190, 31187, 31196, 31193, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32512, 32514, 32516, 32517, 32518, 32519, 32520, 32521, 32524, 32525, 32527, 32528, 32529, 32530, 32531, 32532, 32533, 32534, 32538, 32539, 32541, 32542, 32543, 32544, 32545, 32546, 32547, 32548, 32549, 32550, 32552, 32554, 32555, 32556, 32557, 32558, 32559, 32560, 32561, 32562, 32563, 32564, 32565, 32566, 32567, 32568, 32569, 32570, 32571, 32572, 32573, 32574, 32575, 32576, 32577, 32578, 32579, 32580, 32581, 32582, 32583, 32584, 32585, 32586, 32587, 32588, 32589, 32591, 32593, 32594, 32595, 32596, 32597, 32598, 32599, 32600, 32601, 32602, 32603, 32604, 32605, 32606, 32607, 32608, 32609, 32610, 32611, 32612, 32613, 32614, 32615, 32616, 32617, 32618, 32619, 32620, 32621, 32622, 32625, 32627, 32628, 32629, 32630, 32631, 32632, 32633, 32634, 32635, 32636, 32637, 32638, 32639, 32640, 32641, 32642, 32643, 32644, 32645, 32646, 32647, 32648, 32649, 32650, 32651, 32652, 32653, 32654, 32655, 32656, 32657, 32658, 32661, 32662, 32663, 32664, 32665, 32666, 32667, 32668, 32669, 32670, 32671, 32672, 32673, 32674, 32675, 32676, 32679, 32680, 32681, 32682, 32683, 32684, 32686, 32687, 32688, 32689, 32690, 32691, 32692, 32693, 32695, 32696, 32697, 32698, 32699, 32700, 32701, 32702, 32703, 32705, 32706, 32707, 32708, 32709, 32710, 32711, 32712, 32713, 32714, 32715, 32716, 32717, 32718, 32719, 32720, 32721, 32722, 32723, 32724, 32725, 32726, 32727, 32728, 32729, 32730, 32731, 32732, 32733, 32734, 32735, 32736, 32737, 32738, 32739, 32740, 32741, 32742, 32743, 32744, 32745, 32746, 32747, 32748, 32749, 32750, 32751, 32752, 32753, 32754, 32756, 32757, 32758, 32759, 32760, 32761, 32762, 32763, 32764, 32766, 32768, 32769, 32770, 32771, 32772, 32774, 32776, 32778, 32779, 32780, 32781, 32783, 32784, 32785, 32786, 32787, 32788, 32789, 32790, 32791, 32792, 32793, 32794, 32795, 32796, 32797, 32798, 32800, 32801, 32802, 32803, 32804, 32806, 32807, 32809, 32810, 32812, 32813, 32814, 32815, 32816, 32817, 32819, 32821, 32822, 32823, 32824, 32825, 32826, 32827, 32828, 32829, 32830, 32831, 32832, 32833, 32834, 32835, 32836, 32837, 32838, 32839, 32841, 32842, 32843, 32845, 32846, 32847, 32849, 32851, 32852, 32853, 32854, 32856, 32857, 32858, 32860, 32861, 32862, 32863, 32864, 32865, 32866, 32867, 32868, 32869, 32870, 32871, 32872, 32873, 32874, 32875, 32876, 32877, 32878, 32879, 32880, 32881, 32882, 32883, 32884, 32885, 32886, 32887, 32888, 32889, 32890, 32891, 32892, 32893, 32894, 32895, 32896, 32897, 32898, 32899, 32900, 32901, 32902, 32903, 32904, 32906, 32907, 32908, 32910, 32911, 32912, 32913, 32915, 32916, 32917, 32918, 32919, 32920, 32921, 32922, 32923, 32924, 32925, 32926, 32927, 32928, 32929, 32930, 32931, 32932, 32933, 32934, 32935, 32936, 32937, 32938, 32939, 32940, 32941, 32942, 32943, 32944, 32945, 32946, 32947, 32948, 32949, 32950, 32951, 32952, 32953, 32954, 32955, 32956, 32957, 32958, 32959, 32960, 32961, 32962, 32963, 32964, 32965, 32966, 32967, 32968, 32969, 32970, 32971, 32972, 32973, 32974, 32975, 32976, 32977, 32978, 32979, 32980, 32981, 32982, 32983, 32984, 32985, 32986, 32987, 32988, 32989, 32990, 32991, 32992, 32993, 32994, 32995, 32996, 32997, 32998, 32999, 33000, 33002, 33003, 33004, 33005, 33006, 33008, 33009, 33010, 33011, 33013, 33014, 33015, 33016, 33017, 33018, 33019, 33020, 33021, 33022, 33023, 33024, 33025, 33026, 33027, 33028, 33029, 33031, 33032, 33033, 33034, 33036, 33037, 33038, 33039, 33040, 33042, 33043, 33044, 33045, 33046, 33047, 33048, 33049, 33050, 33051, 33052, 33053, 33054, 33055, 33057, 33058, 33059, 33060, 33061, 33062, 33063, 33064, 33065, 33066, 33067, 33068, 33069, 33071, 33073, 33074, 33075, 33076, 33077, 33078, 33080, 33082, 33083, 33084, 33085, 33086, 33087, 33089, 33090, 33091, 33092, 33093, 33094, 33095, 33097, 33098, 33099, 33100, 33101, 33102, 33103, 33104, 33105, 33106, 33107, 33109, 33111, 33113, 33116, 33118, 33119, 33120, 33121, 33122, 33123, 33124, 33125, 33126, 33127, 33128, 33129, 33130, 33131, 33132, 33133, 33134, 33135, 33136, 33137, 33138, 33139, 33140, 33141, 33142, 33143, 33144, 33145, 33146, 33147, 33148, 33150, 33151, 33152, 33153, 33154, 33155, 33156, 33157, 33159, 33160, 33161, 33162, 33163, 33165, 33166, 33167, 33169, 33170, 33171, 33172, 33173, 33174, 33176, 33177, 33178, 33179, 33180, 33181, 33183, 33185, 33187, 33188, 33189, 33190, 33191, 33192, 33194, 33195, 33196, 33197, 33198, 33199, 33201, 33203, 33205, 33206, 33207, 33208, 33209, 33210, 33211, 33212, 33213, 33214, 33215, 33216, 33217, 33218, 33219, 33220, 33221, 33222, 33223, 33225, 33226, 33227, 33228, 33229, 33230, 33232, 33234, 33236, 33238, 33239, 33240, 33241, 33242, 33243, 33244, 33245, 33246, 33247, 33248, 33249, 33250, 33251, 33252, 33253, 33254, 33255, 33256, 33257, 33259, 33260, 33261, 33262, 33263, 33264, 33265, 33266, 33267, 33268, 33269, 33270, 33271, 33272, 33273, 33274, 33275, 33276, 33277, 33278, 33279, 33280, 33281, 33282, 33283, 33284, 33285, 33286, 33287, 33288, 33289, 33290, 33291, 33292, 33293, 33294, 33295, 33296, 33297, 33298, 33299, 33300, 33301, 33303, 33304, 33305, 33306, 33307, 33308, 33310, 33311, 33312, 33313, 33315, 33316, 33317, 33318, 33319, 33320, 33321, 33322, 33323, 33324, 33325, 33326, 33327, 33328, 33329, 33331, 33332, 33333, 33334, 33335, 33336, 33337, 33338, 33339, 33340, 33341, 33342, 33343, 33344, 33345, 33346, 33347, 33348, 33349, 33350, 33351, 33352, 33353, 33354, 33355, 33357, 33358, 33359, 33360, 33361, 33362, 33364, 33365, 33367, 33368, 33369, 33370, 33371, 33372, 33374, 33375, 33377, 33379, 33380, 33382, 33383, 33384, 33385, 33388, 33389, 33390, 33391, 33392, 33393, 33394, 33396, 33397, 33398, 33399, 33400, 33401, 33404, 33405, 33406, 33407, 33408, 33409, 33410, 33411, 33412, 33413, 33414, 33415, 33416, 33417, 33419, 33421, 33422, 33423, 33424, 33425, 33426, 33427, 33428, 33430, 33431, 33432, 33433, 33434, 33435, 33436, 33437, 33438, 33440, 33441, 33443, 33444, 33446, 33447, 33449, 33450, 33451, 33453, 33455, 33456, 33457, 33458, 33459, 33460, 33462, 33463, 33464, 33465, 33466, 33469, 33471, 33473, 33476, 33477, 33478, 33479, 33480, 33481, 33482, 33484, 33486, 33488, 33491, 33492, 33493, 33494, 33495, 33496, 33497, 33498, 33499, 33500, 33501, 33502, 33503, 33504, 33505, 33506, 33507, 33509, 33510, 33511, 33512, 33513, 33514, 33515, 33516, 33517, 33518, 33519, 33520, 33521, 33522, 33524, 33525, 33526, 33527, 33528, 33529, 33531, 33532, 33533, 33534, 33535, 33536, 33537, 33539, 33540, 33541, 33542, 33543, 33545, 33546, 33547, 33548, 33549, 33550, 33552, 33553, 33554, 33555, 33556, 33558, 33559, 33560, 33561, 33562, 33563, 33564, 33565, 33566, 33567, 33568, 33569, 33571, 33572, 33573, 33574, 33575, 33576, 33577, 33578, 33579, 33580, 33581, 33582, 33584, 33585, 33586, 33587, 33588, 33589, 33590, 33591, 33592, 33593, 33594, 33595, 33596, 33597, 33598, 33599, 33600, 33601, 33603, 33604, 33605, 33606, 33607, 33608, 33609, 33611, 33612, 33613, 33614, 33615, 33616, 33617, 33618, 33619, 33621, 33622, 33623, 33624, 33625, 33626, 33627, 33628, 33629, 33630, 33631, 33632, 33633, 33634, 33635, 33636, 33637, 33638, 33639, 33640, 33641, 33642, 33643, 33644, 33645, 33646, 33647, 33648, 33649, 33650, 33651, 33652, 33653, 33654, 33655, 33656, 33657, 33658, 33659, 33660, 33661, 33662, 33663, 33664, 33665, 33666, 33667, 33668, 33669, 33670, 33671, 33672, 33673, 33674, 33675, 33676, 33677, 33678, 33679, 33680, 33682, 33683, 33684, 33685, 33686, 33687, 33688, 33689, 33690, 33691, 33692, 33693, 33694, 33695, 33696, 33697, 33698, 33699, 33700, 33701, 33702, 33703, 33704, 33705, 33706, 33707, 33708, 33709, 33710, 33711, 33712, 33713, 33714, 33715, 33716, 33717, 33718, 33719, 33720, 33721, 33722, 33723, 33725, 33726, 33727, 33728, 33729, 33730, 33731, 33732, 33733, 33734, 33735, 33736, 33739, 33740, 33741, 33742, 33743, 33744, 33747, 33748, 33749, 33750, 33751, 33752, 33753, 33754, 33755, 33756, 33757, 33758, 33759, 33760, 33761, 33762, 33763, 33764, 33765, 33768, 33769, 33770, 33771, 33772, 33773, 33774, 33775, 33776, 33777, 33778, 33779, 33780, 33781, 33782, 33783, 33786, 33787, 33788, 33789, 33790, 33791, 33792, 33793, 33794, 33795, 33796, 33797, 25, 26, 27, 28, 29, 30, 31, 33826, 33828, 33830, 33832, 33834, 33836, 33838, 33846, 33850, 33860, 33862, 33864, 33866, 33868, 33877, 33879, 33881, 33883, 33885, 33890, 33893, 33897, 33902, 33905, 33907, 33909, 33911, 33913, 33915, 33919, 33923, 33925, 33929, 33938, 33946, 32660, 33958, 33963, 32678, 33974, 33980, 33983, 33989, 33992, 33996, 33998, 34000, 34003, 34006, 34009, 34011, 34013, 34016, 34019, 34026, 34031, 34034, 34042, 34050, 32765, 34056, 32773, 34061, 34065, 34067, 34073, 34077, 32799, 34083, 32805, 34089, 34091, 34102, 34104, 34106, 34108, 34110, 34115, 32844, 34120, 32850, 32855, 34131, 34133, 34135, 34138, 34141, 34145, 34150, 34154, 34158, 34163, 34166, 34179, 34188, 34193, 34197, 34199, 34213, 34218, 34221, 34229, 34231, 34243, 34245, 34250, 34266, 34271, 33007, 34275, 34280, 34282, 34284, 34286, 34289, 34293, 34295, 34298, 34300, 34303, 34307, 34311, 34313, 34316, 34319, 34322, 34324, 34326, 34331, 34333, 34339, 34341, 34346, 34348, 34352, 34356, 34358, 34364, 34366, 34370, 34372, 34375, 34379, 34382, 34384, 34387, 34391, 34393, 34397, 34400, 34402, 34405, 34410, 34413, 34415, 34417, 34419, 34425, 34427, 34429, 34431, 34433, 34439, 34441, 34443, 34445, 34447, 34456, 34460, 34465, 34469, 34471, 34473, 34475, 34479, 34481, 34492, 34494, 34496, 34500, 34505, 34508, 34512, 34516, 34523, 34526, 34532, 34538, 33314, 34544, 34547, 34550, 34552, 34554, 34557, 34559, 34561, 34563, 34565, 34567, 34571, 34577, 34580, 34586, 34594, 34596, 34602, 33387, 34608, 34610, 34613, 34615, 33403, 34621, 34623, 34627, 34630, 33418, 33420, 34636, 34638, 34640, 34642, 34647, 34649, 34650, 34657, 33452, 33454, 34664, 33461, 34668, 34673, 34674, 34676, 34491, 34468, 34450, 34486, 34487, 34491, 34468, 34450, 34486, 34487, 34683, 34684, 34689, 34691, 33841, 34054, 34060, 33843, 34070, 33845, 33853, 32553, 33858, 33856, 33871, 33875, 33873, 33888, 32592, 33896, 33901, 33918, 34491, 33922, 33932, 33937, 33935, 34491, 34468, 34450, 33937, 34487, 33942, 33944, 33949, 33951, 33953, 33954, 33957, 33962, 33967, 33969, 33970, 33973, 33978, 33985, 33987, 33994, 34698, 34701, 34024, 34029, 34037, 34039, 34041, 34045, 34047, 34049, 34054, 34060, 34064, 34070, 34072, 34100, 34098, 34113, 32808, 34095, 32820, 34100, 34098, 34113, 34117, 34125, 34129, 34144, 34149, 34157, 34162, 34172, 34170, 34174, 34175, 34177, 34178, 34182, 34184, 34186, 34191, 34203, 34205, 34207, 34209, 34211, 34216, 34224, 34226, 34228, 34234, 34238, 34236, 34242, 34240, 34248, 34253, 34255, 34257, 34259, 34261, 34263, 34265, 34269, 34278, 33035, 33041, 34310, 34330, 34337, 34369, 34344, 34355, 34362, 34369, 34344, 34355, 34362, 34369, 34378, 34396, 34408, 33168, 33182, 34423, 33200, 34437, 34450, 34452, 34454, 34459, 34463, 34491, 34468, 34478, 34484, 34486, 34487, 34491, 34489, 34504, 34515, 34520, 34522, 34530, 34535, 34537, 34570, 34575, 34582, 34584, 34588, 34590, 34592, 34598, 34599, 34601, 34645, 34652, 34654, 34656, 34663, 34708, 34710, 34712, 33523, 34717, 34719, 34721, 34723, 34725, 34729, 34731, 34733, 34737, 34739, 34742, 34744, 34747, 34750, 34753, 34756, 34758, 34762, 34768, 34772, 34779, 34781, 34784, 34786, 34797, 34799, 34802, 34809, 34814, 34816, 34819, 34821, 34828, 34830, 34832, 33468, 33557, 34749, 34679, 33551, 33557, 34749, 34688, 34844, 34848, 34850, 34855, 34858, 34764, 34696, 34764, 34707, 34705, 34761, 34766, 33583, 34775, 34777, 34790, 34792, 34793, 34795, 34808, 34806, 34813, 34826, 34824, 34864, 34875, 34879, 34881, 34883, 34885, 34888, 34891, 34893, 34896, 34898, 34901, 33724, 34905, 34910, 34913, 34915, 34835, 34836, 34838, 34839, 34841, 34843, 34918, 34921, 34924, 34928, 34853, 34861, 34937, 34940, 34862, 34867, 34869, 34871, 34873, 34878, 34908, 34954, 34956, 34917, 34948, 34934, 34922, 34926, 34927, 34934, 34932, 34935, 34950, 34936, 34944, 34942, 34946, 34950, 34948, 34952, 34957, 34959, 34961, 34963, 34965, 34967, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35047, 35071, 35098, 35103, 35105, 35112, 35120, 35121, 35155, 35166, 35191, 35211, 35212, 35140, 35146, 35142, 35213, 35214, 34488, 35215, 35216, 35217, 35140, 35146, 35142, 35218, 35219, 34488, 35220, 35224, 34976, 34977, 32522, 34979, 34980, 34982, 35225, 35127, 35128, 35226, 35035, 35036, 35227, 35037, 35038, 35228, 35040, 35229, 35230, 33848, 34984, 35231, 35232, 35233, 35234, 34987, 34985, 34989, 35235, 35236, 35237, 34992, 34990, 34994, 35238, 34995, 35239, 34996, 35240, 35241, 33899, 33904, 35000, 35002, 35004, 33921, 35242, 35168, 35243, 35244, 35006, 33927, 35008, 35245, 35246, 35247, 34488, 35248, 35249, 35140, 35146, 35142, 35250, 35251, 34488, 35252, 33940, 35253, 35254, 35010, 35255, 35256, 35257, 35258, 35011, 35259, 33960, 35260, 33965, 35261, 35262, 35263, 35014, 35264, 33976, 35168, 35265, 35016, 35017, 35266, 35267, 35018, 35019, 35268, 35269, 35020, 35022, 35023, 35024, 35025, 35027, 35028, 35029, 34021, 34022, 35271, 35030, 35272, 35031, 35032, 35273, 35274, 35275, 32755, 35276, 35277, 35278, 33001, 35279, 35035, 35036, 35280, 35037, 35038, 35281, 35040, 35282, 35283, 34075, 35042, 35284, 35285, 35050, 35048, 35052, 35286, 35043, 35044, 35045, 35287, 35046, 35288, 35289, 35290, 35291, 35050, 35048, 35052, 35292, 35053, 35293, 35054, 32848, 35056, 35294, 35057, 35295, 35058, 35060, 35061, 35062, 35296, 35297, 34147, 34152, 35065, 35298, 35299, 34160, 34165, 34168, 35300, 35301, 35302, 35303, 35304, 35305, 34181, 35306, 35307, 35308, 35070, 35309, 35072, 34201, 35310, 35311, 35312, 35313, 35314, 35074, 35315, 35075, 35076, 35316, 35317, 35318, 35078, 35319, 35320, 35321, 35322, 35323, 35080, 35324, 35081, 35325, 35326, 35327, 35328, 35329, 35330, 35331, 33001, 35332, 35083, 34274, 33012, 35333, 35086, 35088, 34288, 34291, 35091, 35092, 35334, 35094, 35335, 34305, 35096, 35336, 34317, 35100, 35101, 35337, 35338, 35114, 35339, 35116, 35117, 35340, 34345, 35107, 34350, 35110, 35341, 35113, 35342, 35114, 35343, 35116, 35117, 35344, 34345, 35123, 34350, 35110, 35345, 35113, 35346, 35114, 35347, 35116, 35117, 35348, 34381, 35123, 35349, 34399, 35126, 35127, 35350, 35128, 35351, 35130, 34421, 33175, 35352, 35353, 34426, 35135, 34435, 33193, 35354, 35355, 34440, 35140, 35142, 35356, 35357, 35358, 35143, 35359, 35144, 35360, 35145, 35164, 35361, 35362, 35153, 35146, 35149, 35363, 35151, 35364, 35365, 34488, 35366, 35367, 35368, 35153, 34498, 35369, 34510, 34507, 35158, 34518, 35370, 35371, 35372, 34525, 34528, 35373, 35162, 35374, 35375, 34540, 35164, 35165, 35168, 34556, 35171, 35173, 35175, 34573, 35376, 35377, 35177, 35178, 35378, 35379, 35179, 35380, 35381, 35382, 35180, 35181, 35383, 35384, 35385, 34606, 34604, 35184, 33395, 35186, 34619, 34617, 35189, 34625, 34634, 35193, 35195, 35197, 35198, 35386, 35199, 35201, 35387, 35388, 35389, 34661, 35203, 35390, 35206, 35207, 35393, 35402, 35409, 35420, 35424, 35430, 35431, 35432, 33570, 35210, 35433, 35434, 35435, 35436, 33570, 35437, 34686, 35443, 35444, 35445, 34703, 35446, 35447, 35392, 35395, 33530, 35398, 34727, 35400, 33544, 33551, 34741, 33557, 34746, 34749, 34752, 35411, 35448, 34764, 35449, 34770, 35450, 35414, 35451, 35452, 35415, 34783, 34788, 33602, 35453, 35454, 35455, 35456, 35419, 34804, 35457, 35458, 35459, 34811, 35426, 35460, 35461, 35427, 35429, 35470, 35479, 35480, 35481, 35482, 35483, 35484, 34846, 35439, 34900, 35489, 35441, 35442, 35490, 35493, 35462, 35494, 35495, 35496, 35497, 35463, 35498, 35465, 35467, 35468, 35469, 34900, 34903, 35475, 35499, 35476, 35477, 28328, 35487, 35502, 35503, 34920, 28328, 34930, 35487, 35504, 35505, 35506, 35507, 34930, 34939, 35508, 35509, 35510, 35511, 35512, 34939, 28328, 35513, 35514, 35515, 35516, 35517, 35518, 35500, 28329, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35563, 35565, 35566, 35560, 35567, 35570, 35572, 35574, 35575, 35560, 35576, 35579, 35582, 35583, 35584, 35585, 35586, 35587, 35589, 35590, 35592, 35593, 35595, 35596, 35598, 35601, 35602, 35605, 35607, 35608, 35609, 35611, 35613, 35614, 35615, 35617, 35619, 35622, 35623, 35624, 35625, 35626, 35627, 35629, 35630, 35632, 35633, 35560, 35634, 35638, 35639, 35641, 35642, 35560, 35643, 35646, 35648, 35651, 35656, 35658, 35660, 35664, 35666, 35667, 35669, 35670, 35673, 35674, 35677, 35678, 35679, 35680, 35681, 35682, 35683, 35684, 35685, 35686, 35688, 35690, 35691, 35695, 35699, 35701, 35702, 35704, 35705, 35707, 35710, 35711, 35712, 35714, 35715, 35716, 35718, 35719, 35720, 35722, 35552, 35725, 35727, 35728, 35729, 35731, 35733, 35734, 35735, 35737, 35739, 35740, 35741, 35742, 35745, 35746, 35747, 35750, 35751, 35752, 35753, 35759, 35763, 35553, 35765, 35766, 35772, 35774, 35775, 35779, 35781, 35783, 35785, 35787, 35795, 35797, 35798, 35799, 35801, 35802, 35803, 35804, 35805, 35806, 35808, 35810, 35811, 35554, 35813, 35814, 35815, 35555, 35556, 35818, 35820, 35821, 35823, 35558, 34390, 35824, 35825, 35826, 35557, 35828, 35830, 35832, 35833, 35835, 35558, 34390, 35836, 35837, 35838, 35557, 35840, 35842, 35844, 35845, 35847, 35558, 34390, 35848, 35850, 35851, 35852, 35854, 35856, 35857, 35858, 35859, 35861, 35862, 35863, 35864, 35865, 35867, 35868, 35869, 35873, 35875, 35877, 35878, 35879, 35881, 35882, 35560, 35883, 35885, 35888, 35890, 35892, 35893, 35560, 35895, 35896, 35897, 35898, 35902, 35903, 35905, 35908, 35909, 35910, 35561, 35911, 35912, 35913, 35914, 35915, 35916, 35919, 35920, 35923, 35927, 35928, 35932, 35933, 35934, 35935, 35936, 35937, 35938, 35939, 35940, 35562, 35941, 35942, 35943, 35944, 35945, 35947, 35948, 35952, 35953, 35955, 35956, 35965, 35966, 35971, 35973, 35581, 35600, 35604, 35790, 35770, 35768, 35792, 35662, 35653, 35655, 35662, 35663, 35977, 33508, 35978, 35758, 35756, 35770, 35768, 35762, 35770, 35768, 35694, 35698, 35709, 35724, 35758, 35756, 35762, 35770, 35768, 35778, 35792, 35790, 35794, 35901, 35901, 35907, 35925, 35931, 35951, 35980, 35394, 35981, 35982, 35983, 35984, 35985, 35986, 34736, 35987, 35988, 35989, 35990, 35991, 35992, 33570, 35993, 35995, 35997, 35999, 36002, 36003, 36004, 36005, 36010, 36011, 33620, 36012, 36015, 35961, 36016, 36017, 36019, 36020, 36028, 36029, 36030, 36032, 36033, 35975, 35996, 36001, 36008, 36036, 36041, 36043, 36044, 36045, 36046, 35471, 36047, 36048, 36049, 36051, 36052, 36053, 36040, 36027, 36025, 36023, 36040, 36038, 36054, 36057, 36058, 36059, 36060, 36065, 36066, 36067, 36072, 36073, 36040, 36038, 36074, 36077, 36080, 36081, 36071, 36071, 36071, 28, 29, 30, 31, 36099, 36101, 36105, 36107, 35591, 35594, 36124, 36128, 35621, 36138, 36143, 35637, 36149, 36151, 35700, 35703, 36187, 36194, 36196, 35744, 35749, 36217, 36241, 36245, 36246, 36251, 36252, 36256, 36257, 36262, 36263, 36267, 36268, 36273, 36274, 36281, 36286, 36299, 36302, 36306, 36307, 36310, 36317, 36323, 36329, 36334, 36338, 36339, 36346, 36097, 35568, 36103, 35577, 35972, 36354, 35855, 35853, 35800, 35855, 35853, 35588, 35855, 35853, 36120, 36355, 36122, 36356, 35610, 35616, 35618, 35790, 36357, 35620, 36358, 36359, 36360, 36136, 36319, 36141, 35635, 36147, 35644, 36304, 36156, 36152, 36361, 36293, 36362, 36153, 36154, 36363, 36290, 35870, 36304, 36156, 36155, 36364, 36293, 36292, 36157, 36365, 36158, 36319, 36160, 35671, 36162, 35675, 36367, 36205, 36221, 35743, 35748, 36214, 36369, 36370, 35764, 36371, 36372, 35790, 36165, 36167, 36169, 36171, 35743, 35748, 35760, 36373, 35764, 36374, 36375, 35790, 36172, 36173, 36174, 36175, 35692, 36376, 35696, 36377, 35796, 36183, 36378, 36185, 35717, 36191, 35721, 36379, 35730, 35732, 36201, 35736, 35738, 36205, 36221, 35743, 35748, 36214, 36380, 36381, 35760, 36382, 35764, 36383, 36384, 35790, 36220, 36221, 35776, 36385, 35780, 36225, 35788, 35786, 36386, 36387, 36388, 35796, 36230, 35800, 36233, 36235, 36237, 36239, 36238, 35812, 36244, 35819, 36249, 36250, 36254, 35827, 35831, 36260, 36261, 36265, 35839, 35843, 36271, 36272, 35849, 36277, 35855, 35853, 36284, 36289, 36290, 35870, 36304, 36389, 36312, 36293, 36292, 36295, 36294, 36297, 35886, 35884, 36304, 36390, 36312, 36313, 36315, 36391, 36319, 36321, 36324, 35921, 36326, 36392, 36327, 36393, 35929, 36333, 36343, 36344, 36394, 35949, 36349, 36396, 36403, 36410, 36413, 36417, 36421, 36014, 36424, 36350, 35964, 35963, 35967, 36352, 35970, 35969, 35996, 35994, 36434, 36435, 36398, 36400, 36402, 36408, 36406, 35996, 35994, 36436, 36416, 36437, 36419, 36426, 36428, 36444, 36432, 36451, 36452, 36453, 36454, 36430, 36441, 36034, 36447, 36448, 36432, 36455, 36456, 36430, 36441, 36034, 36447, 36448, 36461, 36462, 36432, 36034, 36438, 36467, 36468, 36042, 36441, 36443, 36447, 36448, 36473, 36055, 36450, 36474, 36055, 36459, 36071, 36466, 36064, 36475, 36069, 36466, 36079, 36076, 36472, 28, 29, 30, 31, 36529, 36480, 36530, 36481, 36531, 36482, 36532, 36483, 36535, 36536, 36537, 36538, 36539, 36540, 36541, 36542, 36119, 36117, 36543, 36545, 36486, 36547, 36487, 36548, 36549, 36550, 36552, 36134, 36553, 36556, 36489, 36557, 36558, 36490, 36559, 36491, 36560, 36492, 36561, 36493, 36562, 36519, 36520, 36521, 36563, 36564, 36566, 36568, 36569, 36571, 36517, 36572, 36518, 36573, 36519, 36520, 36521, 36574, 36575, 36577, 36578, 36579, 36581, 36582, 36583, 36584, 36585, 36586, 36366, 36588, 36589, 36590, 36209, 36591, 36212, 36592, 36593, 36218, 36595, 36598, 36596, 36599, 36600, 36601, 36602, 36603, 36209, 36604, 36212, 36605, 36218, 36607, 36610, 36608, 36611, 36612, 36613, 36614, 36615, 36617, 36619, 36182, 36180, 36620, 36622, 36496, 36623, 36624, 36625, 36497, 36498, 36627, 36628, 36629, 36630, 36631, 36632, 36633, 36634, 36209, 36635, 36212, 36636, 36637, 36639, 36218, 36641, 36644, 36642, 36645, 36646, 36647, 36649, 36650, 36651, 36652, 36653, 36656, 36657, 36658, 36659, 36660, 36661, 36662, 36663, 36664, 36242, 36665, 35817, 35816, 36666, 36667, 36506, 36668, 36669, 36670, 36508, 36671, 36672, 36510, 36673, 36674, 36675, 36512, 36676, 36677, 36514, 36678, 36679, 36680, 36681, 36682, 36515, 36683, 36516, 36684, 36685, 36517, 36686, 36518, 36687, 36519, 36520, 36521, 36689, 36690, 36691, 36692, 36693, 36694, 36517, 36695, 36696, 36518, 36697, 36519, 36520, 36521, 36699, 36700, 36701, 36522, 36703, 36704, 36523, 36705, 36706, 36707, 36709, 36711, 36331, 36712, 36336, 36526, 36341, 36713, 36714, 36716, 35954, 36717, 36420, 36726, 36727, 36728, 35962, 36729, 36730, 36731, 36732, 35968, 36534, 36733, 36734, 36718, 36737, 36738, 36739, 36720, 36740, 36741, 36404, 36742, 36743, 36414, 36745, 36006, 36747, 36725, 36748, 36749, 36751, 36752, 36754, 36756, 36757, 36758, 36429, 36759, 36760, 36761, 36762, 36764, 36765, 36766, 36431, 36767, 36768, 36769, 36771, 36772, 36773, 36774, 36776, 36777, 36778, 36445, 36779, 36780, 36782, 36783, 36785, 36786, 36787, 36788, 36789, 36466, 36791, 36792, 36793, 36794, 36795, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 36801, 36803, 36805, 36807, 36808, 36811, 36814, 36816, 36817, 36820, 36822, 36827, 36830, 36833, 36835, 36837, 36839, 36841, 36842, 36843, 36844, 36846, 36848, 36850, 36852, 36854, 36855, 36856, 36857, 36859, 36861, 36872, 36874, 36877, 36880, 36886, 36888, 36890, 36893, 36901, 36902, 36905, 36909, 36910, 36919, 36921, 36925, 36928, 36934, 36943, 36946, 36948, 36949, 36952, 36956, 36959, 36963, 36966, 36970, 36972, 36974, 36977, 36979, 36981, 36982, 36983, 36985, 36987, 36990, 36991, 36993, 36995, 36996, 36997, 37000, 37001, 37004, 36710, 37010, 37012, 37013, 37014, 36715, 37018, 37024, 37021, 37029, 37026, 37030, 36810, 36900, 36941, 36951, 36958, 36965, 36900, 36810, 36941, 36951, 36958, 36965, 36899, 36900, 36941, 36951, 36958, 36965, 36819, 36546, 36915, 36824, 36917, 36640, 36923, 36897, 36616, 36933, 36904, 36908, 36915, 36913, 36917, 36640, 36923, 36897, 36616, 36933, 36998, 36708, 37006, 36998, 36708, 36867, 36865, 36368, 36870, 36876, 36884, 36882, 36606, 36941, 36941, 36897, 36616, 36900, 36899, 36951, 36958, 36965, 36904, 36908, 36915, 36913, 36917, 36640, 36923, 36930, 36648, 36933, 36939, 36937, 36941, 36951, 36958, 36965, 36984, 36998, 36708, 37006, 37033, 37037, 37040, 37041, 37043, 37045, 36422, 37047, 37036, 37049, 37036, 37049, 37051, 37056, 37064, 37036, 37049, 37036, 37049, 37036, 37049, 37075, 37054, 37058, 37060, 37062, 37066, 36781, 37054, 37058, 37060, 37062, 37066, 36784, 37071, 37073, 37077, 36069, 37071, 37073, 37077, 36063, 37085, 37071, 37073, 37077, 36790, 37071, 37073, 37077, 37088, 28, 29, 30, 31, 37127, 37141, 37153, 37157, 37159, 37166, 37171, 37173, 37175, 37177, 37023, 37120, 37121, 37122, 37123, 37028, 37209, 37210, 37211, 37169, 37170, 37212, 37213, 37174, 37214, 37176, 37124, 36975, 36973, 37215, 37216, 37217, 37169, 37170, 37218, 37219, 37174, 37220, 37176, 37125, 36975, 36973, 37221, 37222, 37223, 37169, 37170, 37224, 37225, 37174, 37226, 37176, 37126, 36975, 36973, 37227, 36906, 37228, 36626, 36823, 36821, 37229, 37230, 37231, 37165, 37164, 37232, 37233, 37234, 37235, 37236, 36551, 37237, 36906, 36626, 37238, 36911, 37239, 37240, 37241, 37165, 37131, 37242, 37243, 37244, 37245, 37246, 36555, 37132, 37133, 37134, 37135, 37136, 37137, 37139, 36565, 37143, 37144, 37145, 37147, 36576, 37150, 37188, 37190, 37191, 37193, 37247, 37194, 36831, 37196, 37197, 37248, 37249, 37015, 37200, 37011, 37202, 37019, 37133, 37134, 37135, 37136, 37137, 37139, 36565, 37143, 37144, 37145, 37147, 36576, 37150, 37188, 37190, 37191, 37193, 37250, 37194, 36863, 37196, 37197, 37251, 37252, 37253, 37015, 37200, 37011, 37202, 37019, 37254, 37255, 37152, 37151, 37256, 37257, 37258, 37156, 37155, 37259, 37260, 37261, 37174, 37176, 37262, 37263, 37264, 37265, 37266, 37267, 37268, 37269, 36906, 36626, 37270, 36911, 37271, 37272, 37273, 37165, 37164, 37274, 37275, 37276, 37277, 37278, 36936, 37279, 37280, 37281, 37169, 37170, 37282, 37283, 37174, 37284, 37176, 37178, 36975, 36973, 37181, 37182, 37183, 37185, 37285, 37187, 37188, 37190, 37191, 37193, 37286, 37194, 37002, 37196, 37197, 37287, 37288, 37015, 37200, 37011, 37202, 37019, 37290, 37039, 36744, 36746, 37295, 37297, 37034, 37298, 37299, 37034, 37300, 37304, 37034, 37305, 37306, 37034, 37307, 37308, 37034, 37309, 37301, 37311, 37302, 37312, 37313, 37314, 37303, 37315, 37301, 37317, 37302, 37318, 37319, 37320, 37303, 37321, 37323, 37324, 37310, 37325, 37326, 37327, 37328, 37310, 37329, 37330, 37332, 37333, 37310, 37334, 37336, 37337, 37310, 37338, 37079, 37081, 37087, 37090, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 37205, 37355, 37356, 37357, 37358, 37207, 37360, 37363, 37364, 37350, 36954, 37367, 36961, 37369, 36813, 37370, 37371, 37372, 37373, 37376, 37377, 37350, 36954, 37380, 36961, 37382, 36968, 37383, 37384, 37385, 37386, 37389, 37390, 37350, 36954, 37393, 36961, 37395, 36813, 37396, 37397, 37398, 36818, 37400, 37402, 37403, 37404, 37405, 37408, 37409, 37410, 36825, 37415, 36903, 37417, 37418, 37420, 37421, 37424, 37425, 37426, 36828, 37431, 37432, 37433, 37434, 37435, 37436, 37437, 37438, 37439, 37142, 37440, 37441, 37442, 37443, 37444, 37445, 37446, 37447, 37448, 37449, 37451, 37452, 37453, 37454, 37457, 37458, 37459, 37460, 37461, 37462, 37463, 37464, 37465, 37466, 37467, 37468, 37142, 37469, 37470, 37471, 37472, 37473, 37474, 37475, 37476, 37477, 37478, 37480, 37481, 37482, 37483, 37485, 37487, 37488, 37489, 37490, 37491, 37494, 37495, 37154, 37497, 37499, 37500, 37158, 37350, 37504, 37505, 37508, 36903, 37514, 37515, 37517, 37518, 37521, 37522, 37523, 37167, 37528, 37529, 37532, 37533, 37350, 36954, 37536, 36961, 37538, 36968, 37539, 37540, 37541, 37542, 37543, 37544, 37545, 37547, 37548, 37549, 37550, 37551, 37553, 37554, 37555, 37556, 37559, 37560, 37561, 37562, 37563, 37564, 37570, 37046, 37044, 37208, 37573, 37046, 37044, 37208, 37413, 37429, 37576, 37046, 37044, 37296, 37579, 37046, 37044, 37296, 37507, 37507, 37526, 37582, 37046, 37044, 37296, 37584, 37586, 37590, 37592, 37594, 37598, 37602, 37082, 37607, 37084, 37612, 37616, 37589, 37618, 37597, 37619, 37601, 37606, 37611, 37620, 37615, 37621, 26, 27, 28, 29, 30, 31, 37641, 37642, 37366, 37644, 37368, 37646, 37648, 37653, 37654, 37379, 37656, 37381, 37658, 37660, 37665, 37666, 37392, 37668, 37394, 37670, 37672, 37674, 37401, 37677, 37680, 37683, 37685, 37687, 37690, 37693, 37703, 37717, 37718, 37730, 37744, 37746, 37751, 37753, 37755, 37757, 37758, 37762, 37764, 37767, 37770, 37775, 37776, 37535, 37778, 37537, 37780, 37782, 37796, 37797, 37701, 37699, 37697, 37707, 37705, 37709, 37713, 37711, 37714, 37695, 37722, 37728, 37726, 37724, 37740, 37738, 37741, 37743, 37750, 37569, 37025, 37804, 37805, 37806, 37701, 37699, 37697, 37707, 37636, 37634, 37709, 37713, 37711, 37714, 37695, 37722, 37572, 37032, 37808, 37809, 37810, 37031, 37362, 37640, 37375, 37652, 37388, 37664, 37701, 37699, 37697, 37707, 37705, 37709, 37713, 37711, 37714, 37695, 37722, 37728, 37726, 37724, 37740, 37738, 37741, 37743, 37750, 37032, 37811, 37684, 37689, 37812, 37694, 37531, 37774, 37701, 37699, 37697, 37707, 37705, 37709, 37713, 37711, 37714, 37695, 37722, 37728, 37726, 37724, 37743, 37750, 37575, 36735, 37814, 37815, 37816, 37701, 37699, 37697, 37707, 37705, 37709, 37713, 37711, 37714, 37716, 37722, 37728, 37726, 37724, 37734, 37732, 37736, 37740, 37738, 37741, 37743, 37750, 37578, 36736, 37818, 37819, 37820, 37766, 37821, 37771, 37502, 37774, 37503, 37766, 37822, 37531, 37774, 37766, 37823, 37771, 37531, 37774, 37787, 37785, 37788, 37792, 37790, 37793, 37795, 37801, 37581, 37292, 37825, 37826, 37827, 37585, 37587, 37840, 37591, 37593, 37595, 37842, 37599, 37844, 37603, 37083, 37845, 37608, 37331, 37846, 37613, 37848, 37617, 35519, 35520, 35523, 35524, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 37365, 37378, 37391, 37887, 37888, 37890, 37891, 37534, 37908, 37909, 37910, 37911, 37912, 37886, 37913, 37914, 37915, 37916, 37917, 37918, 37919, 37920, 37921, 37922, 37923, 37889, 37924, 37925, 37926, 37927, 37928, 37930, 37931, 37571, 37934, 37935, 37936, 37886, 37937, 37938, 37939, 37940, 37941, 37942, 37943, 37944, 37945, 37947, 37948, 37574, 37951, 37952, 37953, 37861, 37859, 37862, 37954, 37955, 37868, 37866, 37869, 37956, 37957, 37875, 37873, 37876, 37958, 37959, 37960, 37886, 37961, 37962, 37963, 37964, 37965, 37966, 37967, 37968, 37969, 37970, 37971, 37889, 37972, 37973, 37974, 37975, 37976, 37977, 37399, 37679, 37878, 37880, 37881, 37979, 37416, 37980, 37883, 37884, 37885, 37982, 37983, 37984, 37906, 37904, 37907, 37985, 37986, 37987, 37886, 37988, 37989, 37990, 37991, 37992, 37993, 37994, 37995, 37996, 37997, 37998, 37889, 37999, 38000, 38002, 38003, 37577, 38006, 38007, 38008, 37886, 38009, 38010, 38011, 38012, 38013, 38014, 38015, 38016, 38017, 38018, 38019, 37889, 38020, 38021, 38022, 38023, 38024, 38025, 38026, 38027, 38029, 38030, 37580, 37513, 38033, 37898, 37892, 37893, 37894, 37895, 38035, 38036, 38037, 37906, 37904, 37902, 37907, 38038, 37906, 37904, 37902, 37513, 38039, 37898, 37899, 37900, 38041, 38042, 37906, 37904, 37902, 37907, 37513, 38043, 37898, 37899, 37900, 38045, 38046, 38047, 37906, 37904, 37907, 38048, 38049, 38050, 38051, 38052, 38053, 38054, 38055, 38057, 38058, 37583, 38061, 38062, 38064, 38065, 38066, 38068, 38070, 38071, 38073, 38074, 38076, 38078, 38079, 38080, 38081, 38082, 28, 29, 30, 31, 38122, 38125, 38126, 38129, 38116, 38134, 38137, 38138, 38118, 38146, 38149, 38150, 38154, 38116, 38165, 38166, 37857, 38167, 38170, 38171, 37864, 38172, 38175, 38176, 37871, 38177, 38178, 38181, 38182, 38185, 38116, 38190, 38193, 38194, 38118, 38200, 38201, 38202, 38203, 38204, 38206, 38208, 38209, 38210, 38214, 38215, 37902, 38216, 38217, 38220, 38221, 38224, 38116, 38229, 38232, 38118, 38238, 38241, 38242, 38245, 38116, 38250, 38253, 38254, 38257, 38118, 38265, 38267, 38268, 38269, 38270, 38271, 38275, 38276, 38277, 38278, 38280, 38281, 38282, 38283, 38285, 38286, 38287, 38290, 38291, 38292, 38293, 38294, 38296, 38297, 38298, 38302, 38303, 37902, 38304, 38305, 38308, 38121, 38143, 38145, 38159, 38161, 38162, 38315, 38205, 38211, 38164, 38169, 38174, 38299, 38301, 38199, 38315, 38205, 38211, 38213, 38299, 38301, 38235, 38237, 38262, 38264, 38272, 38274, 38289, 38299, 38289, 38299, 38301, 38313, 38315, 38318, 38317, 38321, 38320, 38322, 35521, 38324, 35522, 38326, 38327, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38336, 38340, 38341, 38344, 38345, 38347, 38349, 38352, 38350, 38356, 38354, 38360, 38358, 38362, 38366, 38367, 38370, 38372, 38207, 38382, 38380, 38384, 38388, 38389, 38391, 38392, 38396, 38397, 38401, 38266, 38408, 38412, 38284, 38419, 38295, 38429, 38427, 38433, 38131, 38128, 38140, 38256, 38434, 38435, 38156, 38436, 38437, 38187, 38184, 38196, 38256, 38438, 38439, 38440, 38375, 38441, 38379, 38442, 38443, 38444, 38445, 38426, 38446, 38187, 38184, 38196, 38256, 38447, 38448, 38449, 38375, 38450, 38379, 38451, 38452, 38426, 38453, 38226, 38223, 38259, 38256, 38454, 38455, 38247, 38244, 38259, 38256, 38456, 38457, 38458, 38407, 38405, 38459, 38460, 38461, 38418, 38462, 38463, 38426, 38464, 38310, 38307, 38465, 38466, 38467, 38468, 38469, 38470, 38471, 38472, 38473, 38474, 38475, 38476, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38133, 38142, 38158, 38504, 38506, 38508, 38189, 38198, 38516, 38228, 38234, 38249, 38261, 38526, 38527, 38529, 38532, 38312, 38534, 38535, 38337, 38536, 38537, 38342, 38540, 38153, 38346, 38543, 38544, 38363, 38545, 38546, 38368, 38513, 38550, 38514, 38552, 38530, 38557, 38559, 38560, 38363, 38561, 38562, 38368, 38513, 38566, 38514, 38568, 38530, 38571, 38573, 38574, 38385, 38575, 38576, 38390, 38579, 38580, 38393, 38581, 38582, 38398, 38525, 38586, 38587, 38528, 38591, 38530, 38594, 38596, 38597, 38539, 38542, 38548, 38599, 38564, 38578, 38584, 38599, 38600, 38602, 38330, 38607, 38605, 38331, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38644, 38642, 38624, 38647, 38645, 38625, 38649, 38650, 38626, 38653, 38651, 38630, 38656, 38654, 38631, 38657, 38549, 38659, 38551, 38353, 38357, 38361, 38661, 38556, 38430, 38665, 38663, 38630, 38668, 38666, 38631, 38669, 38565, 38671, 38567, 38383, 38673, 38570, 38430, 38677, 38675, 38633, 38680, 38678, 38634, 38683, 38681, 38635, 38686, 38684, 38636, 38687, 38585, 38411, 38422, 38690, 38590, 38422, 38692, 38593, 38430, 38694, 38641, 38696, 38697, 38698, 38699, 38700, 38701, 38702, 38703, 38706, 38707, 38329, 38708, 38328, 38709, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38721, 38722, 38724, 38725, 38648, 38728, 38730, 38731, 38733, 38734, 38739, 38740, 38741, 38744, 38746, 38747, 38749, 38750, 38755, 38758, 38760, 38761, 38763, 38764, 38766, 38767, 38769, 38770, 38772, 38773, 38774, 38777, 38780, 38782, 38738, 38736, 38743, 38754, 38752, 38757, 38738, 38736, 38743, 38754, 38752, 38757, 38776, 38779, 38793, 38795, 38791, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38820, 38850, 38851, 38828, 38827, 38826, 38852, 38829, 38819, 38817, 38843, 38853, 38854, 38834, 38855, 38835, 38825, 38823, 38844, 38845, 38849, 38856, 38857, 38828, 38827, 38826, 38858, 38829, 38833, 38831, 38859, 38860, 38834, 38861, 38835, 38839, 38837, 38843, 38841, 38844, 38845, 38846, 38862, 38847, 38863, 38848, 38849, 38864, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38881, 38883, 38884, 38885, 38887, 38888, 38889, 38890, 38821, 38891, 38893, 38895, 38896, 38897, 38898, 38899, 38900, 38901, 38903, 38904, 38905, 38907, 38908, 38909, 38910, 38912, 38914, 38915, 38916, 38917, 38918, 38919, 38920, 38921, 38923, 38925, 38926, 38866, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38945, 38949, 38952, 38956, 38962, 38966, 38971, 38973, 38948, 38955, 38954, 38979, 38978, 38977, 38959, 38786, 38965, 38970, 38969, 38979, 38978, 38977, 38976, 38790, 38981, 25, 26, 27, 28, 29, 30, 31, 39008, 38951, 39012, 39016, 38783, 39017, 39018, 38785, 39019, 39020, 39021, 39022, 39023, 39024, 38787, 39025, 39026, 38789, 38788, 39027, 39028, 39029, 39030, 39031, 24, 25, 26, 27, 28, 29, 30, 31, 39040, 38784, 39044, 39045, 39047, 39048, 39050, 39042, 39054, 39055, 39057, 39058, 39059, 39061, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 39072, 39073, 39077, 39079, 39082, 39084, 39076, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 39043, 39105, 39053, 39052, 39110, 39063, 39108, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 39139, 39137, 39141, 39142, 39080, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 39169, 39168, 39172, 39170, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 39201, 39203, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38796, 39032, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 39264, 39265, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 39296, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31}; int h_C[]= { 4, 6, 8, 10, 12, 14, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 95, 97, 99, 101, 103, 105, 107, 109, 111, 113, 115, 117, 119, 121, 123, 125, 127, 129, 131, 133, 135, 137, 139, 141, 143, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 179, 181, 183, 185, 187, 189, 191, 193, 195, 197, 199, 201, 203, 205, 207, 209, 211, 213, 215, 217, 219, 221, 223, 225, 227, 229, 231, 233, 235, 237, 239, 241, 243, 245, 247, 249, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 477, 479, 481, 483, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 643, 645, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 669, 671, 673, 675, 678, 680, 682, 684, 688, 690, 692, 694, 696, 698, 701, 703, 705, 707, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 769, 771, 774, 776, 779, 781, 783, 785, 787, 789, 791, 793, 796, 798, 801, 803, 806, 808, 810, 812, 814, 816, 818, 820, 823, 825, 828, 830, 832, 834, 837, 839, 841, 843, 847, 849, 851, 853, 855, 857, 859, 861, 863, 865, 868, 870, 873, 875, 878, 880, 882, 884, 886, 888, 891, 893, 895, 897, 899, 901, 904, 906, 909, 911, 914, 916, 919, 921, 924, 926, 929, 931, 934, 936, 939, 941, 943, 945, 947, 949, 952, 954, 956, 958, 960, 962, 965, 967, 969, 971, 973, 975, 978, 980, 983, 985, 988, 990, 993, 995, 997, 999, 1002, 1004, 1006, 1008, 1011, 1013, 1017, 1019, 1021, 1023, 1026, 1028, 1031, 1033, 1036, 1038, 1041, 1043, 1046, 1048, 1051, 1053, 1056, 1058, 1061, 1063, 1066, 1068, 1071, 1073, 1076, 1078, 1081, 1083, 1086, 1088, 1091, 1093, 1096, 1098, 1101, 1103, 1105, 1107, 1109, 1111, 1114, 1116, 1119, 1121, 1124, 1126, 1129, 1131, 1134, 1136, 1139, 1141, 1144, 1146, 1149, 1151, 1154, 1156, 1159, 1161, 1164, 1166, 1169, 1171, 1173, 1175, 1177, 1179, 1182, 1184, 1187, 1189, 1192, 1194, 1197, 1199, 1201, 1203, 1205, 1207, 1209, 1211, 1213, 1215, 1217, 1219, 1221, 1223, 1225, 1227, 1229, 1231, 1233, 1235, 1237, 1239, 1241, 1243, 1245, 1247, 1249, 1251, 1253, 1255, 1257, 1259, 1261, 1263, 1265, 1267, 1269, 1271, 1273, 1275, 1277, 1279, 1281, 1283, 1285, 1287, 1290, 1292, 1294, 1296, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1322, 1324, 1327, 1329, 1331, 1333, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1352, 1354, 1356, 1358, 1360, 1362, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1419, 1421, 1424, 1426, 1429, 1431, 1434, 1436, 1439, 1441, 1444, 1446, 1449, 1451, 1454, 1456, 1458, 1460, 1462, 1464, 1467, 1469, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1489, 1491, 1493, 1495, 1498, 1500, 1502, 1504, 1507, 1509, 1513, 1515, 1517, 1519, 1521, 1523, 1526, 1528, 1531, 1533, 1538, 1540, 1542, 1544, 1546, 1548, 1551, 1553, 1556, 1558, 1561, 1563, 1566, 1568, 1570, 1572, 1574, 1576, 1579, 1581, 1584, 1586, 1589, 1591, 1594, 1596, 1599, 1601, 1604, 1606, 1609, 1611, 1614, 1616, 1619, 1621, 1624, 1626, 1629, 1631, 1634, 1636, 1638, 1640, 1642, 1644, 1646, 1648, 1650, 1652, 1654, 1656, 1658, 1660, 1662, 1664, 1666, 1668, 1670, 1672, 1674, 1676, 1678, 1680, 1682, 1684, 1686, 1688, 1690, 1692, 1694, 1696, 1698, 1700, 1702, 1704, 1706, 1708, 1710, 1712, 1714, 1716, 1718, 1720, 1722, 1724, 1726, 1728, 1730, 1732, 1734, 1736, 1739, 1741, 1743, 1745, 1748, 1750, 1753, 1755, 1758, 1760, 1763, 1765, 1768, 1770, 1773, 1775, 1778, 1780, 1782, 1784, 1786, 1788, 1791, 1793, 1796, 1798, 1801, 1803, 1806, 1808, 1811, 1813, 1816, 1818, 1821, 1823, 1826, 1828, 1831, 1833, 1836, 1838, 1841, 1843, 1846, 1848, 1851, 1853, 1856, 1858, 1861, 1863, 1866, 1868, 1870, 1872, 1874, 1876, 1879, 1881, 1884, 1886, 1889, 1891, 1894, 1896, 1899, 1901, 1904, 1906, 1911, 1913, 1915, 1917, 1919, 1921, 1923, 1925, 1927, 1929, 1931, 1933, 1935, 1937, 1939, 1941, 1944, 1946, 1949, 1951, 1953, 1955, 1957, 1959, 1961, 1963, 1965, 1967, 1969, 1971, 1973, 1975, 1977, 1979, 1981, 1983, 1985, 1987, 1989, 1991, 1993, 1995, 1997, 1999, 2001, 2003, 2005, 2007, 2009, 2011, 2013, 2015, 2017, 2019, 2021, 2023, 2025, 2027, 2029, 2031, 2033, 2035, 2037, 2039, 2041, 2043, 2045, 2047, 2049, 2051, 2053, 2055, 2057, 2059, 2061, 2063, 2065, 2067, 2069, 2071, 2073, 2075, 2077, 2079, 2081, 2083, 2085, 2087, 2089, 2091, 2093, 2095, 2097, 2099, 2101, 2103, 2105, 2107, 2110, 2112, 2114, 2116, 2118, 2120, 2122, 2124, 2126, 2128, 2130, 2132, 2134, 2136, 2138, 2140, 2142, 2144, 2146, 2148, 2150, 2152, 2154, 2156, 2158, 2160, 2162, 2164, 2166, 2168, 2170, 2172, 2175, 2177, 2179, 2181, 2183, 2185, 2187, 2189, 2191, 2193, 2195, 2197, 2200, 2202, 2204, 2206, 2209, 2211, 2213, 2215, 2218, 2220, 2222, 2224, 2227, 2229, 2231, 2233, 2235, 2237, 2239, 2241, 2243, 2245, 2247, 2249, 2251, 2253, 2255, 2257, 2259, 2261, 2263, 2265, 2267, 2269, 2271, 2273, 2275, 2277, 2279, 2281, 2283, 2285, 2288, 2290, 2293, 2295, 2297, 2299, 2301, 2303, 2305, 2307, 2309, 2311, 2313, 2315, 2317, 2319, 2321, 2323, 2325, 2327, 2329, 2331, 2333, 2335, 2337, 2339, 2341, 2343, 2345, 2347, 2349, 2351, 2353, 2355, 2357, 2359, 2361, 2363, 2365, 2367, 2369, 2371, 2373, 2375, 2377, 2379, 2381, 2383, 2385, 2387, 2389, 2391, 2393, 2395, 2397, 2399, 2401, 2403, 2405, 2407, 2409, 2411, 2413, 2415, 2417, 2419, 2421, 2423, 2425, 2427, 2429, 2431, 2433, 2435, 2437, 2439, 2441, 2443, 2445, 2447, 2449, 2451, 2453, 2455, 2457, 2459, 2461, 2463, 2465, 2467, 2469, 2471, 2474, 2476, 2478, 2480, 2482, 2484, 2486, 2488, 2490, 2492, 2494, 2496, 2498, 2500, 2502, 2504, 2506, 2508, 2510, 2512, 2514, 2516, 2518, 2520, 2522, 2524, 2526, 2528, 2530, 2532, 2534, 2536, 2538, 2540, 2542, 2544, 2546, 2548, 2550, 2552, 2554, 2556, 2558, 2560, 2563, 2565, 2567, 2569, 2572, 2574, 2576, 2578, 2580, 2582, 2584, 2586, 2588, 2590, 2593, 2595, 2597, 2599, 2602, 2604, 2606, 2608, 2611, 2613, 2616, 2618, 2622, 2624, 2626, 2628, 2630, 2632, 2634, 2636, 2638, 2640, 2642, 2644, 2646, 2648, 2650, 2652, 2654, 2656, 2659, 2661, 2663, 2665, 2668, 2670, 2673, 2675, 2678, 2680, 2683, 2685, 2688, 2690, 2692, 2694, 2696, 2698, 2701, 2703, 2706, 2708, 2711, 2713, 2716, 2718, 2721, 2723, 2726, 2728, 2730, 2732, 2734, 2736, 2739, 2741, 2744, 2746, 2749, 2751, 2754, 2756, 2759, 2761, 2764, 2766, 2769, 2771, 2774, 2776, 2779, 2781, 2784, 2786, 2789, 2791, 2794, 2796, 2799, 2801, 2804, 2806, 2809, 2811, 2814, 2816, 2818, 2820, 2822, 2824, 2827, 2829, 2832, 2834, 2837, 2839, 2842, 2844, 2847, 2849, 2852, 2854, 2857, 2859, 2862, 2864, 2866, 2868, 2870, 2872, 2875, 2877, 2880, 2882, 2885, 2887, 2890, 2892, 2895, 2897, 2900, 2902, 2905, 2907, 2910, 2912, 2915, 2917, 2920, 2922, 2925, 2927, 2930, 2932, 2935, 2937, 2940, 2942, 2945, 2947, 2950, 2952, 2955, 2957, 2960, 2962, 2965, 2967, 2970, 2972, 2975, 2977, 2980, 2982, 2985, 2987, 2990, 2992, 2995, 2997, 3000, 3002, 3005, 3007, 3010, 3012, 3014, 3016, 3018, 3020, 3023, 3025, 3028, 3030, 3033, 3035, 3038, 3040, 3042, 3044, 3047, 3049, 3052, 3054, 3060, 3062, 3064, 3066, 3068, 3070, 3073, 3075, 3078, 3080, 3083, 3085, 3088, 3090, 3093, 3095, 3098, 3100, 3102, 3104, 3106, 3108, 3110, 3112, 3114, 3116, 3118, 3120, 3123, 3125, 3128, 3130, 3133, 3135, 3138, 3140, 3143, 3145, 3148, 3150, 3156, 3158, 3160, 3162, 3164, 3166, 3169, 3171, 3173, 3175, 3177, 3179, 3182, 3184, 3187, 3189, 3195, 3197, 3200, 3202, 3205, 3207, 3209, 3211, 3214, 3216, 3218, 3220, 3225, 3227, 3229, 3231, 3233, 3235, 3237, 3239, 3242, 3244, 3246, 3248, 3250, 3252, 3255, 3257, 3260, 3262, 3265, 3267, 3270, 3272, 3274, 3276, 3278, 3280, 3282, 3284, 3286, 3288, 3291, 3293, 3296, 3298, 3301, 3303, 3306, 3308, 3311, 3313, 3316, 3318, 3321, 3323, 3326, 3328, 3331, 3333, 3335, 3337, 3339, 3341, 3343, 3345, 3347, 3349, 3352, 3354, 3357, 3359, 3361, 3363, 3365, 3367, 3369, 3371, 3373, 3375, 3377, 3379, 3381, 3383, 3386, 3388, 3390, 3392, 3394, 3396, 3399, 3401, 3404, 3406, 3408, 3410, 3412, 3414, 3417, 3419, 3422, 3424, 3427, 3429, 3432, 3434, 3437, 3439, 3442, 3444, 3447, 3449, 3452, 3454, 3457, 3459, 3461, 3463, 3465, 3467, 3469, 3471, 3473, 3475, 3477, 3479, 3481, 3483, 3485, 3487, 3489, 3491, 3493, 3495, 3498, 3500, 3502, 3504, 3506, 3508, 3511, 3513, 3516, 3518, 3520, 3522, 3524, 3526, 3529, 3531, 3534, 3536, 3539, 3541, 3544, 3546, 3548, 3550, 3552, 3554, 3557, 3559, 3562, 3564, 3567, 3569, 3572, 3574, 3577, 3579, 3583, 3585, 3587, 3589, 3594, 3596, 3599, 3601, 3604, 3606, 3609, 3611, 3614, 3616, 3618, 3620, 3623, 3625, 3628, 3630, 3642, 3644, 3647, 3649, 3652, 3654, 3657, 3659, 3662, 3664, 3666, 3668, 3670, 3672, 3675, 3677, 3680, 3682, 3685, 3687, 3690, 3692, 3695, 3697, 3700, 3702, 3704, 3706, 3709, 3711, 3714, 3716, 3722, 3724, 3726, 3728, 3730, 3732, 3735, 3737, 3740, 3742, 3745, 3747, 3750, 3752, 3754, 3756, 3758, 3760, 3763, 3765, 3768, 3770, 3773, 3775, 3778, 3780, 3782, 3784, 3786, 3788, 3791, 3793, 3796, 3798, 3801, 3803, 3806, 3808, 3811, 3813, 3816, 3818, 3821, 3823, 3826, 3828, 3830, 3832, 3835, 3837, 3840, 3842, 3848, 3850, 3853, 3855, 3858, 3860, 3863, 3865, 3868, 3870, 3873, 3875, 3878, 3880, 3883, 3885, 3888, 3890, 3892, 3894, 3896, 3898, 3901, 3903, 3906, 3908, 3911, 3913, 3916, 3918, 3921, 3923, 3926, 3928, 3931, 3933, 3936, 3938, 3940, 3942, 3944, 3946, 3949, 3951, 3954, 3956, 3959, 3961, 3964, 3966, 3968, 3970, 3972, 3974, 3976, 3978, 3981, 3983, 3985, 3987, 3991, 3993, 3996, 3998, 4001, 4003, 4006, 4008, 4011, 4013, 4015, 4017, 4019, 4021, 4023, 4025, 4027, 4029, 4031, 4033, 4035, 4037, 4040, 4042, 4045, 4047, 4050, 4052, 4055, 4057, 4060, 4062, 4065, 4067, 4070, 4072, 4075, 4077, 4080, 4082, 4085, 4087, 4090, 4092, 4094, 4096, 4098, 4100, 4103, 4105, 4108, 4110, 4113, 4115, 4118, 4120, 4123, 4125, 4128, 4130, 4133, 4135, 4138, 4140, 4143, 4145, 4148, 4150, 4153, 4155, 4158, 4160, 4162, 4164, 4166, 4168, 4171, 4173, 4176, 4178, 4181, 4183, 4186, 4188, 4190, 4192, 4194, 4196, 4198, 4200, 4203, 4205, 4208, 4210, 4216, 4218, 4220, 4222, 4224, 4226, 4229, 4231, 4234, 4236, 4239, 4241, 4244, 4246, 4249, 4251, 4254, 4256, 4259, 4261, 4264, 4266, 4268, 4270, 4272, 4274, 4276, 4278, 4280, 4282, 4284, 4286, 4288, 4290, 4292, 4294, 4296, 4298, 4300, 4302, 4304, 4306, 4308, 4310, 4312, 4314, 4316, 4318, 4320, 4322, 4324, 4326, 4328, 4330, 4332, 4334, 4336, 4338, 4340, 4342, 4344, 4346, 4348, 4350, 4352, 4354, 4356, 4358, 4360, 4362, 4364, 4366, 4368, 4370, 4372, 4374, 4376, 4378, 4380, 4382, 4384, 4386, 4388, 4390, 4392, 4394, 4396, 4398, 4400, 4402, 4404, 4406, 4408, 4410, 4412, 4414, 4416, 4418, 4420, 4422, 4425, 4427, 4429, 4431, 4434, 4436, 4438, 4440, 4443, 4445, 4447, 4449, 4452, 4454, 4457, 4459, 4461, 4463, 4465, 4467, 4469, 4471, 4473, 4475, 4477, 4479, 4481, 4483, 4485, 4487, 4489, 4491, 4493, 4495, 4497, 4499, 4501, 4503, 4505, 4507, 4509, 4511, 4513, 4515, 4517, 4519, 4522, 4524, 4526, 4528, 4531, 4533, 4535, 4537, 4539, 4541, 4543, 4545, 4547, 4549, 4551, 4553, 4555, 4557, 4559, 4561, 4563, 4565, 4567, 4569, 4571, 4573, 4576, 4578, 4580, 4582, 4585, 4587, 4590, 4592, 4594, 4596, 4598, 4600, 4602, 4604, 4607, 4609, 4611, 4613, 4618, 4620, 4622, 4624, 4626, 4628, 4631, 4633, 4636, 4638, 4641, 4643, 4646, 4648, 4651, 4653, 4656, 4658, 4661, 4663, 4666, 4668, 4671, 4673, 4676, 4678, 4681, 4683, 4686, 4688, 4690, 4692, 4695, 4697, 4700, 4702, 4708, 4710, 4712, 4714, 4716, 4718, 4721, 4723, 4726, 4728, 4731, 4733, 4736, 4738, 4741, 4743, 4746, 4748, 4751, 4753, 4755, 4757, 4759, 4761, 4764, 4766, 4769, 4771, 4774, 4776, 4779, 4781, 4783, 4785, 4787, 4789, 4791, 4793, 4795, 4797, 4799, 4801, 4803, 4805, 4807, 4809, 4811, 4813, 4815, 4817, 4819, 4821, 4823, 4825, 4827, 4829, 4831, 4833, 4835, 4837, 4839, 4841, 4843, 4845, 4848, 4850, 4852, 4854, 4856, 4858, 4861, 4863, 4866, 4868, 4871, 4873, 4876, 4878, 4880, 4882, 4885, 4887, 4889, 4891, 4895, 4897, 4900, 4902, 4905, 4907, 4910, 4912, 4914, 4916, 4919, 4921, 4923, 4925, 4929, 4931, 4934, 4936, 4939, 4941, 4944, 4946, 4949, 4951, 4954, 4956, 4959, 4961, 4963, 4965, 4968, 4970, 4973, 4975, 4981, 4983, 4985, 4987, 4990, 4992, 4994, 4996, 4999, 5001, 5005, 5007, 5009, 5011, 5014, 5016, 5019, 5021, 5024, 5026, 5029, 5031, 5033, 5035, 5038, 5040, 5043, 5045, 5048, 5050, 5052, 5054, 5056, 5058, 5061, 5063, 5066, 5068, 5071, 5073, 5076, 5078, 5081, 5083, 5086, 5088, 5091, 5093, 5096, 5098, 5100, 5102, 5104, 5106, 5109, 5111, 5114, 5116, 5119, 5121, 5124, 5126, 5128, 5130, 5132, 5134, 5137, 5139, 5142, 5144, 5147, 5149, 5152, 5154, 5156, 5158, 5160, 5162, 5164, 5166, 5168, 5170, 5172, 5174, 5176, 5178, 5180, 5182, 5184, 5186, 5189, 5191, 5194, 5196, 5199, 5201, 5203, 5205, 5207, 5209, 5212, 5214, 5216, 5218, 5220, 5222, 5225, 5227, 5229, 5231, 5233, 5235, 5238, 5240, 5243, 5245, 5248, 5250, 5253, 5255, 5258, 5260, 5263, 5265, 5268, 5270, 5273, 5275, 5277, 5279, 5281, 5283, 5286, 5288, 5290, 5292, 5294, 5296, 5298, 5300, 5302, 5304, 5306, 5308, 5310, 5312, 5314, 5316, 5318, 5320, 5322, 5324, 5326, 5328, 5331, 5333, 5335, 5337, 5340, 5342, 5345, 5347, 5353, 5355, 5357, 5359, 5361, 5363, 5366, 5368, 5371, 5373, 5376, 5378, 5381, 5383, 5385, 5387, 5389, 5391, 5393, 5395, 5397, 5399, 5402, 5404, 5406, 5408, 5410, 5412, 5414, 5416, 5419, 5421, 5424, 5426, 5432, 5434, 5437, 5439, 5442, 5444, 5447, 5449, 5451, 5453, 5455, 5457, 5459, 5461, 5463, 5465, 5468, 5470, 5473, 5475, 5478, 5480, 5483, 5485, 5488, 5490, 5493, 5495, 5498, 5500, 5502, 5504, 5506, 5508, 5511, 5513, 5515, 5517, 5519, 5521, 5524, 5526, 5529, 5531, 5534, 5536, 5539, 5541, 5543, 5545, 5548, 5550, 5553, 5555, 5558, 5560, 5562, 5564, 5566, 5568, 5570, 5572, 5574, 5576, 5578, 5580, 5582, 5584, 5586, 5588, 5590, 5592, 5594, 5596, 5598, 5600, 5602, 5604, 5606, 5608, 5610, 5612, 5614, 5616, 5618, 5620, 5622, 5624, 5626, 5628, 5630, 5632, 5634, 5636, 5638, 5640, 5642, 5644, 5646, 5648, 5650, 5652, 5654, 5656, 5658, 5660, 5662, 5664, 5667, 5669, 5672, 5674, 5676, 5678, 5680, 5682, 5684, 5686, 5688, 5690, 5692, 5694, 5696, 5698, 5700, 5702, 5704, 5706, 5708, 5710, 5712, 5714, 5716, 5718, 5720, 5722, 5724, 5726, 5728, 5730, 5732, 5734, 5736, 5738, 5740, 5742, 5744, 5746, 5748, 5750, 5752, 5754, 5756, 5758, 5761, 5763, 5765, 5767, 5770, 5772, 5774, 5776, 5779, 5781, 5783, 5785, 5787, 5789, 5791, 5793, 5795, 5797, 5799, 5801, 5803, 5805, 5807, 5809, 5811, 5813, 5816, 5818, 5820, 5822, 5824, 5826, 5829, 5831, 5833, 5835, 5838, 5840, 5842, 5844, 5847, 5849, 5851, 5853, 5855, 5857, 5859, 5861, 5863, 5865, 5867, 5869, 5871, 5873, 5875, 5877, 5879, 5881, 5883, 5885, 5887, 5889, 5891, 5893, 5896, 5898, 5900, 5902, 5905, 5907, 5909, 5911, 5913, 5915, 5918, 5920, 5922, 5924, 5926, 5928, 5930, 5932, 5934, 5936, 5938, 5940, 5942, 5944, 5946, 5948, 5950, 5952, 5954, 5956, 5958, 5960, 5962, 5964, 5966, 5968, 5970, 5972, 5974, 5976, 5978, 5980, 5982, 5984, 5986, 5988, 5990, 5992, 5994, 5996, 5999, 6001, 6003, 6005, 6007, 6009, 6011, 6013, 6015, 6017, 6020, 6022, 6028, 6030, 6033, 6035, 6038, 6040, 6042, 6044, 6047, 6049, 6052, 6054, 6060, 6062, 6064, 6066, 6068, 6070, 6073, 6075, 6078, 6080, 6083, 6085, 6088, 6090, 6092, 6094, 6096, 6098, 6101, 6103, 6106, 6108, 6111, 6113, 6116, 6118, 6121, 6123, 6126, 6128, 6130, 6132, 6134, 6136, 6139, 6141, 6144, 6146, 6149, 6151, 6154, 6156, 6158, 6160, 6163, 6165, 6167, 6169, 6173, 6175, 6178, 6180, 6183, 6185, 6188, 6190, 6193, 6195, 6198, 6200, 6203, 6205, 6208, 6210, 6213, 6215, 6218, 6220, 6223, 6225, 6228, 6230, 6232, 6234, 6236, 6238, 6240, 6242, 6244, 6246, 6248, 6250, 6253, 6255, 6257, 6259, 6262, 6264, 6267, 6269, 6274, 6276, 6279, 6281, 6287, 6289, 6292, 6294, 6297, 6299, 6302, 6304, 6307, 6309, 6311, 6313, 6315, 6317, 6320, 6322, 6325, 6327, 6330, 6332, 6335, 6337, 6339, 6341, 6343, 6345, 6348, 6350, 6353, 6355, 6357, 6359, 6361, 6363, 6366, 6368, 6370, 6372, 6375, 6377, 6379, 6381, 6384, 6386, 6390, 6392, 6394, 6396, 6399, 6401, 6404, 6406, 6409, 6411, 6413, 6415, 6417, 6419, 6422, 6424, 6427, 6429, 6432, 6434, 6437, 6439, 6442, 6444, 6447, 6449, 6452, 6454, 6457, 6459, 6462, 6464, 6467, 6469, 6472, 6474, 6477, 6479, 6482, 6484, 6486, 6488, 6490, 6492, 6495, 6497, 6500, 6502, 6505, 6507, 6510, 6512, 6515, 6517, 6520, 6522, 6525, 6527, 6530, 6532, 6534, 6536, 6538, 6540, 6543, 6545, 6548, 6550, 6553, 6555, 6558, 6560, 6563, 6565, 6568, 6570, 6573, 6575, 6578, 6580, 6583, 6585, 6588, 6590, 6593, 6595, 6598, 6600, 6603, 6605, 6608, 6610, 6613, 6615, 6618, 6620, 6622, 6624, 6627, 6629, 6631, 6633, 6638, 6640, 6642, 6644, 6646, 6648, 6651, 6653, 6656, 6658, 6661, 6663, 6666, 6668, 6670, 6672, 6674, 6676, 6678, 6680, 6682, 6684, 6686, 6688, 6690, 6692, 6695, 6697, 6699, 6701, 6703, 6705, 6707, 6709, 6711, 6713, 6715, 6717, 6720, 6722, 6725, 6727, 6730, 6732, 6735, 6737, 6740, 6742, 6745, 6747, 6750, 6752, 6755, 6757, 6760, 6762, 6767, 6769, 6772, 6774, 6777, 6779, 6782, 6784, 6786, 6788, 6790, 6792, 6795, 6797, 6800, 6802, 6805, 6807, 6810, 6812, 6815, 6817, 6819, 6821, 6824, 6826, 6829, 6831, 6837, 6839, 6842, 6844, 6847, 6849, 6852, 6854, 6857, 6859, 6861, 6863, 6866, 6868, 6870, 6872, 6876, 6878, 6881, 6883, 6886, 6888, 6891, 6893, 6895, 6897, 6900, 6902, 6905, 6907, 6913, 6915, 6917, 6919, 6922, 6924, 6927, 6929, 6935, 6937, 6939, 6941, 6943, 6945, 6948, 6950, 6953, 6955, 6958, 6960, 6963, 6965, 6967, 6969, 6971, 6973, 6976, 6978, 6980, 6982, 6984, 6986, 6989, 6991, 6993, 6995, 6997, 6999, 7002, 7004, 7007, 7009, 7012, 7014, 7017, 7019, 7021, 7023, 7025, 7027, 7030, 7032, 7035, 7037, 7040, 7042, 7045, 7047, 7049, 7051, 7054, 7056, 7059, 7061, 7067, 7069, 7071, 7073, 7075, 7077, 7080, 7082, 7085, 7087, 7090, 7092, 7095, 7097, 7099, 7101, 7103, 7105, 7108, 7110, 7113, 7115, 7118, 7120, 7123, 7125, 7127, 7129, 7131, 7133, 7136, 7138, 7141, 7143, 7146, 7148, 7151, 7153, 7155, 7157, 7159, 7161, 7163, 7165, 7167, 7169, 7171, 7173, 7175, 7177, 7180, 7182, 7184, 7186, 7188, 7190, 7193, 7195, 7198, 7200, 7203, 7205, 7208, 7210, 7213, 7215, 7218, 7220, 7223, 7225, 7227, 7229, 7231, 7233, 7235, 7237, 7239, 7241, 7243, 7245, 7247, 7249, 7251, 7253, 7255, 7257, 7259, 7261, 7263, 7265, 7267, 7269, 7271, 7273, 7275, 7277, 7279, 7281, 7283, 7285, 7287, 7289, 7291, 7293, 7295, 7297, 7299, 7301, 7303, 7305, 7307, 7309, 7311, 7313, 7315, 7317, 7319, 7321, 7323, 7325, 7327, 7329, 7331, 7333, 7335, 7337, 7339, 7341, 7344, 7346, 7349, 7351, 7353, 7355, 7357, 7359, 7361, 7363, 7365, 7367, 7369, 7371, 7373, 7375, 7377, 7379, 7381, 7383, 7385, 7387, 7389, 7391, 7393, 7395, 7397, 7399, 7401, 7403, 7405, 7407, 7409, 7411, 7413, 7415, 7417, 7419, 7421, 7423, 7425, 7427, 7429, 7431, 7433, 7435, 7437, 7439, 7441, 7443, 7445, 7447, 7449, 7451, 7453, 7455, 7458, 7460, 7462, 7464, 7466, 7468, 7470, 7472, 7475, 7477, 7479, 7481, 7484, 7486, 7488, 7490, 7492, 7494, 7496, 7498, 7500, 7502, 7504, 7506, 7508, 7510, 7512, 7514, 7517, 7519, 7521, 7523, 7526, 7528, 7530, 7532, 7534, 7536, 7538, 7540, 7543, 7545, 7548, 7550, 7553, 7555, 7558, 7560, 7562, 7564, 7566, 7568, 7571, 7573, 7576, 7578, 7580, 7582, 7584, 7586, 7589, 7591, 7594, 7596, 7598, 7600, 7603, 7605, 7608, 7610, 7616, 7618, 7621, 7623, 7626, 7628, 7630, 7632, 7634, 7636, 7638, 7640, 7642, 7644, 7646, 7648, 7650, 7652, 7654, 7656, 7658, 7660, 7662, 7664, 7667, 7669, 7671, 7673, 7675, 7677, 7680, 7682, 7685, 7687, 7689, 7691, 7693, 7695, 7698, 7700, 7702, 7704, 7706, 7708, 7711, 7713, 7716, 7718, 7721, 7723, 7726, 7728, 7731, 7733, 7735, 7737, 7740, 7742, 7744, 7746, 7750, 7752, 7755, 7757, 7760, 7762, 7764, 7766, 7768, 7770, 7772, 7774, 7776, 7778, 7780, 7782, 7784, 7786, 7788, 7790, 7792, 7794, 7796, 7798, 7801, 7803, 7805, 7807, 7811, 7813, 7816, 7818, 7821, 7823, 7826, 7828, 7830, 7832, 7834, 7836, 7839, 7841, 7844, 7846, 7849, 7851, 7854, 7856, 7859, 7861, 7864, 7866, 7869, 7871, 7874, 7876, 7879, 7881, 7887, 7889, 7891, 7893, 7895, 7897, 7900, 7902, 7905, 7907, 7910, 7912, 7915, 7917, 7920, 7922, 7925, 7927, 7930, 7932, 7934, 7936, 7938, 7940, 7943, 7945, 7948, 7950, 7953, 7955, 7958, 7960, 7963, 7965, 7967, 7969, 7971, 7973, 7976, 7978, 7981, 7983, 7986, 7988, 7991, 7993, 7995, 7997, 7999, 8001, 8003, 8005, 0, 0, 1, 1, 1, 1, 8013, 8015, 8017, 8019, 8021, 8023, 2, 2, 3636, 3636, 3634, 3634, 3636, 3636, 3639, 3639, 15, 15, 4966, 4966, 4978, 4978, 1288, 1288, 144, 144, 177, 177, 2207, 2207, 2108, 2108, 7064, 7064, 8170, 8172, 8174, 8176, 8178, 8180, 8182, 8184, 8186, 8188, 8190, 8192, 250, 250, 250, 250, 5997, 5997, 5997, 5997, 5894, 5894, 5903, 5903, 6625, 6625, 475, 484, 6625, 6625, 667, 676, 667, 676, 667, 667, 676, 676, 686, 686, 686, 686, 6898, 6898, 8387, 8389, 8391, 8393, 8395, 8397, 8399, 8401, 699, 699, 708, 708, 709, 709, 710, 710, 3636, 3636, 3634, 3634, 3636, 3636, 3639, 3639, 767, 767, 835, 844, 1288, 1288, 1325, 1334, 1387, 1387, 1902, 1387, 1387, 1908, 1487, 1487, 1535, 1535, 1902, 1908, 2173, 2173, 2198, 2198, 2207, 2207, 2216, 2216, 2108, 2108, 2173, 2173, 2198, 2198, 2207, 2207, 2216, 2216, 2225, 2225, 2561, 2570, 2591, 2591, 2600, 2600, 2609, 2609, 2620, 2620, 2657, 2666, 3045, 3045, 3057, 3057, 3121, 3121, 3153, 3153, 3167, 3167, 3192, 3192, 3212, 3212, 3222, 3222, 3496, 3496, 3634, 3634, 3496, 3496, 3581, 3581, 3591, 3591, 3632, 3632, 3636, 3636, 3634, 3634, 3636, 3636, 3639, 3639, 3707, 3707, 3719, 3719, 3833, 3833, 3845, 3845, 3979, 3988, 4201, 4201, 4213, 4213, 4693, 4693, 4705, 4705, 4529, 4529, 4693, 4693, 4705, 4705, 4529, 4529, 4966, 4978, 4966, 4978, 4423, 4423, 4432, 4432, 4693, 4693, 4705, 4705, 4520, 4520, 4529, 4529, 4583, 4588, 4605, 4605, 4615, 4615, 4693, 4693, 4705, 4705, 4883, 4892, 4917, 4926, 4966, 4966, 4978, 4978, 5429, 5429, 5417, 5417, 5338, 5338, 5350, 5350, 5417, 5417, 5429, 5429, 5417, 5417, 5429, 5429, 6045, 6045, 6057, 6057, 5894, 5894, 5903, 5903, 6625, 6625, 6635, 6635, 6693, 5759, 5768, 5759, 5768, 6764, 5997, 5997, 5997, 5997, 5836, 5836, 5845, 5845, 5894, 5894, 5903, 5903, 6251, 6251, 5894, 5894, 5903, 5903, 6284, 6284, 5997, 5997, 6025, 6025, 6045, 6045, 6057, 6057, 6161, 6170, 6251, 6251, 6260, 6271, 6284, 6284, 6625, 6625, 6635, 6635, 6693, 6764, 6822, 6822, 6834, 6834, 6864, 6873, 6898, 6898, 6910, 6910, 6920, 6920, 6932, 6932, 7052, 7052, 7064, 7064, 7601, 7601, 7613, 7613, 7601, 7601, 7456, 7456, 7473, 7482, 7515, 7515, 7524, 7524, 7601, 7601, 7613, 7613, 7738, 7747, 7799, 7808, 7884, 7884, 10417, 10419, 10421, 10423, 10425, 10427, 10429, 10431, 10433, 10435, 10438, 10440, 10443, 10445, 10447, 10449, 10451, 10453, 10455, 10457, 10459, 10461, 10463, 10465, 10468, 10470, 10472, 10474, 10477, 10479, 10482, 10484, 10490, 10492, 10494, 10496, 10498, 10500, 10503, 10505, 10508, 10510, 10513, 10515, 10518, 10520, 10522, 10524, 10527, 10529, 10532, 10534, 10540, 10542, 10544, 10546, 10548, 10550, 10553, 10555, 10557, 10559, 10561, 10563, 10566, 10568, 10571, 10573, 10576, 10578, 10581, 10583, 10586, 10588, 10590, 10592, 10594, 10596, 10599, 10601, 10604, 10606, 10609, 10611, 10614, 10616, 10618, 10620, 10623, 10625, 10628, 10630, 10636, 10638, 10640, 10642, 10644, 10646, 10649, 10651, 10653, 10655, 10657, 10659, 10661, 10663, 10665, 10667, 10669, 10671, 10673, 10675, 10678, 10680, 10682, 10684, 10686, 10688, 10691, 10693, 10695, 10697, 10699, 10701, 10703, 10705, 10707, 10709, 10711, 10713, 10715, 10717, 10719, 10721, 10723, 10725, 10728, 10730, 10733, 10735, 10738, 10740, 10742, 10744, 10747, 10749, 10752, 10754, 10760, 10762, 10765, 10767, 10770, 10772, 10775, 10777, 10780, 10782, 10784, 10786, 10789, 10791, 10793, 10795, 10799, 10801, 10804, 10806, 10809, 10811, 10814, 10816, 10818, 10820, 10822, 10824, 10827, 10829, 10831, 10833, 10835, 10837, 10839, 10841, 10843, 10845, 10847, 10849, 10851, 10853, 10855, 10857, 10860, 10862, 10864, 10866, 10869, 10871, 10873, 10875, 10877, 10879, 10882, 10884, 10886, 10888, 10890, 10892, 10895, 10897, 10900, 10902, 10905, 10907, 10910, 10912, 10915, 10917, 10920, 10922, 10925, 10927, 10930, 10932, 10935, 10937, 10940, 10942, 10945, 10947, 10950, 10952, 10955, 10957, 10963, 10965, 10967, 10969, 10971, 10973, 10975, 10977, 10979, 10981, 10983, 10985, 10987, 10989, 10991, 10993, 10995, 10997, 10999, 11001, 11004, 11006, 11008, 11010, 11013, 11015, 11017, 11019, 11021, 11023, 11025, 11027, 11029, 11031, 11034, 11036, 11038, 11040, 11043, 11045, 11047, 11049, 11051, 11053, 11055, 11057, 11059, 11061, 11063, 11065, 11067, 11069, 11071, 11073, 11075, 11077, 11080, 11082, 11084, 11086, 11089, 11091, 11093, 11095, 11098, 11100, 11102, 11104, 11106, 11108, 11110, 11112, 11114, 11116, 11118, 11120, 11122, 11124, 11126, 11128, 11130, 11132, 11134, 11136, 11138, 11140, 11142, 11144, 11146, 11148, 11151, 11153, 11157, 11159, 11161, 11163, 11165, 11167, 11170, 11172, 11175, 11177, 11180, 11182, 11185, 11187, 11190, 11192, 11195, 11197, 11200, 11202, 11205, 11207, 11210, 11212, 11215, 11217, 11219, 11221, 11226, 11228, 11231, 11233, 11236, 11238, 11240, 11242, 11244, 11246, 11249, 11251, 11254, 11256, 11259, 11261, 11264, 11266, 11269, 11271, 11274, 11276, 11279, 11281, 11284, 11286, 11289, 11291, 11294, 11296, 11299, 11301, 11304, 11306, 11308, 11310, 11313, 11315, 11318, 11320, 11325, 11327, 11329, 11331, 11333, 11335, 11337, 11339, 11341, 11343, 11345, 11347, 11350, 11352, 11354, 11356, 11358, 11360, 11362, 11364, 11367, 11369, 11371, 11373, 11375, 11377, 11379, 11381, 11383, 11385, 11387, 11389, 11391, 11393, 11395, 11397, 11399, 11401, 11403, 11405, 11407, 11409, 11411, 11413, 11415, 11417, 11419, 11421, 11423, 11425, 11427, 11429, 11432, 11434, 11436, 11438, 11440, 11442, 11444, 11446, 11448, 11450, 11452, 11454, 11457, 11459, 11461, 11463, 11466, 11468, 11470, 11472, 11475, 11477, 11480, 11482, 11488, 11490, 11492, 11494, 11497, 11499, 11502, 11504, 11510, 11512, 11514, 11516, 11518, 11520, 11522, 11524, 11526, 11528, 11530, 11532, 11535, 11537, 11540, 11542, 11545, 11547, 11550, 11552, 11555, 11557, 11560, 11562, 11568, 11570, 11573, 11575, 11578, 11580, 11583, 11585, 11588, 11590, 11592, 11594, 11597, 11599, 11602, 11604, 11609, 11611, 11613, 11615, 11617, 11619, 11622, 11624, 11627, 11629, 11632, 11634, 11637, 11639, 11641, 11643, 11645, 11647, 11650, 11652, 11655, 11657, 11660, 11662, 10676, 10676, 10858, 10858, 10867, 10867, 10880, 10880, 11742, 11744, 11746, 11748, 11751, 11753, 11755, 11757, 11760, 11762, 11764, 11766, 11768, 11770, 11772, 11774, 11776, 11778, 11780, 11782, 11784, 11786, 11788, 11790, 11792, 11794, 11796, 11798, 11800, 11802, 11804, 11806, 11808, 11810, 11812, 11814, 11817, 11819, 11822, 11824, 11827, 11829, 11831, 11833, 11835, 11837, 11839, 11841, 11844, 11846, 11849, 11851, 11853, 11855, 11859, 11861, 11863, 11865, 11867, 11869, 11871, 11873, 11875, 11877, 11879, 11881, 11883, 11885, 8168, 8168, 10960, 10960, 8385, 8385, 11473, 11473, 11348, 11348, 11495, 11495, 11348, 11348, 11507, 11507, 11473, 11473, 11485, 11485, 11365, 11365, 11365, 11365, 11365, 11365, 11495, 11495, 11533, 11533, 10525, 10525, 10621, 10621, 10475, 10475, 10487, 10487, 10525, 10525, 10537, 10537, 10621, 10621, 10633, 10633, 10745, 10745, 10757, 10757, 10676, 10676, 10745, 10745, 10757, 10757, 10787, 10689, 10689, 10745, 10745, 10757, 10757, 10796, 10745, 10745, 10757, 10757, 10787, 10796, 10858, 10858, 10867, 10867, 10880, 10880, 10960, 10960, 11155, 11155, 11002, 11002, 11011, 11011, 11032, 11032, 11041, 11041, 11087, 11087, 11096, 11096, 11155, 11155, 11223, 11223, 11311, 11322, 11485, 11485, 11473, 11473, 11348, 11348, 11495, 11495, 11348, 11348, 11507, 11507, 11473, 11473, 11485, 11485, 11365, 11365, 11507, 11365, 11365, 11507, 11365, 11365, 11495, 11495, 11533, 11533, 11565, 11565, 11430, 11430, 11455, 11464, 11473, 11473, 11485, 11485, 11495, 11495, 11507, 11507, 11533, 11533, 11565, 11565, 11606, 11606, 13311, 13313, 13315, 13317, 13319, 13321, 13323, 13325, 13327, 13329, 13332, 13334, 13337, 13339, 13342, 13344, 13347, 13349, 13352, 13354, 13357, 13359, 13362, 13364, 13367, 13369, 13371, 13373, 13375, 13377, 13380, 13382, 13385, 13387, 13390, 13392, 13395, 13397, 13399, 13401, 13403, 13405, 13407, 13409, 13411, 13413, 13415, 13417, 13419, 13421, 13423, 13425, 13427, 13429, 13432, 13434, 13437, 13439, 13442, 13444, 13447, 13449, 13452, 13454, 13457, 13459, 13462, 13464, 13466, 13468, 13470, 13472, 13475, 13477, 13480, 13482, 13485, 13487, 13490, 13492, 13495, 13497, 13500, 13502, 13505, 13507, 13510, 13512, 13515, 13517, 13520, 13522, 13525, 13527, 13529, 13531, 13533, 13535, 13538, 13540, 13543, 13545, 13548, 13550, 13553, 13555, 13558, 13560, 13563, 13565, 13568, 13570, 13573, 13575, 13578, 13580, 13583, 13585, 13588, 13590, 13593, 13595, 13597, 13599, 13601, 13603, 13606, 13608, 13611, 13613, 13616, 13618, 13621, 13623, 13625, 13627, 13630, 13632, 13635, 13637, 13643, 13645, 13647, 13649, 13652, 13654, 13657, 13659, 13665, 13667, 13669, 13671, 13673, 13675, 13678, 13680, 13683, 13685, 13688, 13690, 13693, 13695, 13698, 13700, 13703, 13705, 13707, 13709, 13711, 13713, 13715, 13717, 13720, 13722, 13724, 13726, 13729, 13731, 13735, 13737, 13739, 13741, 13744, 13746, 13749, 13751, 13754, 13756, 13759, 13761, 13763, 13765, 13767, 13769, 13772, 13774, 13777, 13779, 13782, 13784, 13787, 13789, 13791, 13793, 13796, 13798, 13800, 13802, 13806, 13808, 13811, 13813, 13816, 13818, 13821, 13823, 13825, 13827, 13829, 13831, 13834, 13836, 13839, 13841, 13844, 13846, 13849, 13851, 13853, 13855, 13857, 13859, 13862, 13864, 13867, 13869, 13872, 13874, 13877, 13879, 13882, 13884, 13887, 13889, 13892, 13894, 13897, 13899, 13901, 13903, 13906, 13908, 13911, 13913, 13919, 13921, 13924, 13926, 13929, 13931, 13934, 13936, 13939, 13941, 13944, 13946, 13949, 13951, 13954, 13956, 13958, 13960, 13962, 13964, 13967, 13969, 13971, 13973, 13976, 13978, 13981, 13983, 13989, 13991, 13994, 13996, 13999, 14001, 14004, 14006, 14009, 14011, 14014, 14016, 14019, 14021, 14024, 14026, 14029, 14031, 14034, 14036, 14039, 14041, 14044, 14046, 14049, 14051, 14053, 14055, 14058, 14060, 14063, 14065, 14126, 14128, 14130, 14132, 14134, 14136, 14138, 14140, 14142, 14144, 14146, 14148, 14150, 14152, 14154, 14156, 11738, 11738, 11740, 11740, 11739, 11739, 11740, 11740, 11749, 11749, 11758, 11758, 11815, 11815, 14219, 14221, 14223, 14225, 14227, 14229, 14231, 14233, 14235, 14237, 14239, 14241, 14243, 14245, 14247, 14249, 14251, 14253, 14255, 14257, 14259, 14261, 14263, 14265, 14268, 14270, 14272, 14274, 14276, 14278, 14280, 14282, 14284, 14286, 14288, 14290, 14292, 14294, 14296, 14298, 14300, 14302, 14304, 14306, 14308, 14310, 14312, 14314, 14316, 14318, 14320, 14322, 14324, 14326, 14328, 14330, 13733, 13733, 14369, 14371, 14373, 14375, 14377, 14379, 14381, 14383, 14385, 14387, 14389, 14391, 14394, 14396, 14398, 14400, 14402, 14404, 14406, 14408, 14410, 14412, 14414, 14416, 14419, 14421, 14423, 14425, 14427, 14429, 14431, 14433, 14435, 14437, 14439, 14441, 14444, 14446, 14448, 14450, 14453, 14455, 14457, 14459, 14462, 14464, 14466, 14468, 14470, 14472, 14474, 14476, 14478, 14480, 14482, 14484, 14486, 14488, 13628, 13628, 13640, 13640, 13650, 13650, 13662, 13662, 13794, 13803, 13904, 13904, 13916, 13916, 13974, 13974, 13986, 13986, 14056, 14056, 14068, 14068, 15220, 15222, 15224, 15226, 15228, 15230, 15233, 15235, 15237, 15239, 15241, 15243, 15245, 15247, 15249, 15251, 15253, 15255, 15257, 15259, 15261, 15263, 15265, 15267, 15269, 15271, 15274, 15276, 15279, 15281, 15284, 15286, 15289, 15291, 15294, 15296, 15299, 15301, 15304, 15306, 15309, 15311, 15314, 15316, 15322, 15324, 15327, 15329, 15332, 15334, 15337, 15339, 15342, 15344, 15347, 15349, 15352, 15354, 15357, 15359, 15362, 15364, 15366, 15368, 15370, 15372, 15375, 15377, 15380, 15382, 15385, 15387, 15390, 15392, 15394, 15396, 15399, 15401, 15403, 15405, 15409, 15411, 15413, 15415, 15417, 15419, 15231, 15231, 14442, 14442, 14451, 14451, 14460, 14460, 14392, 14417, 14442, 14442, 14451, 14451, 14331, 14331, 14392, 14417, 14442, 14442, 14451, 14451, 14460, 14460, 15231, 15231, 15319, 15319, 15397, 15406, 15565, 15565, 15973, 15973, 16412, 16414, 16417, 16419, 16421, 16423, 16432, 16434, 16445, 16447, 16449, 16451, 16453, 16455, 16457, 16459, 16660, 16662, 16664, 16666, 16668, 16670, 16673, 16675, 16678, 16680, 16683, 16685, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 17025, 17027, 17029, 17031, 17033, 17035, 17037, 17039, 17041, 17043, 17045, 17047, 17049, 17051, 17053, 17055, 17057, 17059, 17061, 17063, 17065, 17067, 17069, 17071, 17073, 17075, 17077, 17079, 17081, 17083, 17085, 17087, 17089, 17091, 17093, 17095, 17097, 17099, 17101, 17103, 17105, 17107, 17109, 17111, 17113, 17115, 17117, 17119, 17121, 17123, 17125, 17127, 17129, 17131, 17133, 17135, 17137, 17139, 17141, 17143, 17145, 17147, 17149, 17151, 17153, 17155, 17157, 17159, 17161, 17163, 17165, 17167, 17169, 17171, 17173, 17175, 17177, 17179, 17181, 17183, 17185, 17187, 17189, 17191, 17193, 17195, 17197, 17199, 17201, 17203, 17205, 17207, 17209, 17211, 17213, 17215, 17217, 17219, 17221, 17223, 17225, 17227, 17229, 17231, 17233, 17235, 17237, 17239, 17241, 17243, 17245, 17247, 17249, 17251, 17253, 17255, 17257, 17259, 17261, 17263, 17265, 17267, 17269, 17271, 17273, 17275, 17277, 17279, 17281, 17283, 17285, 17287, 17289, 17291, 17293, 17295, 17297, 17299, 17301, 17303, 17305, 17307, 17309, 17311, 17313, 17315, 17317, 17319, 17321, 17323, 17325, 17327, 17329, 17331, 17333, 17335, 17337, 17339, 17341, 17343, 17345, 17347, 17349, 17351, 17353, 17355, 17357, 17359, 17361, 17363, 17365, 17367, 17369, 17371, 17373, 17375, 17377, 17379, 17381, 17383, 17385, 17387, 17389, 17391, 17393, 17395, 17397, 17399, 17401, 17403, 17405, 17407, 17409, 17411, 17413, 17415, 17417, 17419, 17421, 17423, 17425, 17427, 17429, 17431, 17433, 17435, 17437, 17439, 17441, 17443, 17445, 17447, 17449, 17451, 17453, 17455, 17457, 17459, 17461, 17463, 17465, 17467, 17469, 17471, 17473, 17475, 17477, 17479, 17481, 17483, 17485, 17487, 17489, 17491, 17493, 17495, 17497, 17499, 17501, 17503, 17505, 17507, 17509, 17511, 17513, 17515, 17517, 17519, 17521, 17523, 17525, 17527, 17529, 17531, 17533, 17535, 17537, 17539, 17541, 17543, 17545, 17547, 17549, 17551, 17553, 17555, 17557, 17559, 17561, 17563, 17565, 17567, 17569, 17571, 17573, 17575, 17577, 17579, 17581, 17583, 17585, 17587, 17589, 17591, 17593, 17595, 17597, 17599, 17601, 17603, 17605, 17607, 17609, 17611, 17613, 17615, 17617, 17619, 17621, 17623, 17625, 17627, 17629, 17631, 17633, 17635, 17637, 17639, 17641, 17643, 17645, 17647, 17649, 17651, 17653, 17655, 17657, 17659, 17661, 17663, 17665, 17667, 17669, 17671, 17673, 17675, 17677, 17679, 17681, 17683, 17685, 17687, 17689, 17691, 17693, 17695, 17697, 17699, 17701, 17703, 17705, 17707, 17709, 17711, 17713, 17715, 17717, 17719, 17721, 17723, 17725, 17727, 17729, 17731, 17733, 17735, 17737, 17739, 17741, 17743, 17745, 17747, 17749, 17751, 17753, 17755, 17757, 17759, 17761, 17763, 17765, 17767, 17769, 17771, 17773, 17775, 17777, 17779, 17781, 17783, 17785, 17787, 17789, 17791, 17793, 17795, 17797, 17799, 17801, 17803, 17805, 17807, 17809, 17811, 17813, 17815, 17817, 17819, 17821, 17823, 17825, 17827, 17829, 17831, 17833, 17835, 17837, 17839, 17841, 17843, 17845, 17847, 17849, 17851, 17853, 17855, 17857, 17859, 17861, 17863, 17865, 17867, 17869, 17871, 17873, 17875, 17877, 17879, 17881, 17883, 17885, 17887, 17889, 17891, 17893, 17895, 17897, 17899, 17901, 17903, 17905, 17907, 17909, 17911, 17913, 17915, 17917, 17919, 17921, 17923, 17925, 17927, 17929, 17931, 17933, 17935, 17937, 17939, 17941, 17943, 17945, 17947, 17949, 17951, 17953, 17955, 17957, 17959, 17961, 17963, 17965, 17967, 17969, 17971, 17973, 17975, 17977, 17979, 17981, 17983, 17985, 17987, 17989, 17991, 17993, 17995, 17997, 17999, 18001, 18003, 18005, 18007, 18009, 18011, 18013, 18015, 18017, 18019, 18021, 18023, 18025, 18027, 18029, 18031, 18033, 18035, 18037, 18039, 18041, 18043, 18045, 18047, 18049, 18051, 18053, 18055, 18057, 18059, 18061, 18063, 18065, 18067, 18069, 18071, 18073, 18075, 18077, 18079, 18081, 18083, 18085, 18087, 18089, 18091, 18093, 18095, 18097, 18099, 18101, 18103, 18105, 18107, 18109, 18111, 18113, 18115, 18117, 18119, 18121, 18123, 18125, 18127, 18129, 18131, 18133, 18135, 18137, 18139, 18141, 18143, 18145, 18147, 18149, 18151, 18153, 18155, 18157, 18159, 18161, 18163, 18165, 18167, 18169, 18171, 18173, 18175, 18177, 18179, 18181, 18183, 18185, 18187, 18189, 18191, 18193, 18195, 18197, 18199, 18201, 18203, 18205, 18207, 18209, 18211, 18213, 18215, 18217, 18219, 18221, 18223, 18225, 18227, 18229, 18231, 18233, 18235, 18237, 18239, 18241, 18243, 18245, 18247, 18249, 18251, 18253, 18255, 18257, 18259, 18261, 18263, 18265, 18267, 18269, 18271, 18273, 18275, 18277, 18279, 18281, 18283, 18285, 18287, 18289, 18291, 18293, 18295, 18297, 18299, 18301, 18303, 18305, 18307, 18309, 18311, 18313, 18315, 18317, 18319, 18321, 18323, 18325, 18327, 18329, 18331, 18333, 18335, 18337, 18339, 18341, 18343, 18345, 18347, 18349, 18351, 18353, 18355, 18357, 18359, 18361, 18363, 18365, 18367, 18369, 18371, 18373, 18375, 18377, 18379, 18381, 18383, 18385, 18387, 18389, 18391, 18393, 18395, 18397, 18399, 18401, 18403, 18405, 18407, 18409, 18411, 18413, 18415, 18417, 18419, 18421, 18423, 18425, 18427, 18429, 18431, 18433, 18435, 18437, 18439, 18441, 18443, 18445, 18447, 18449, 18451, 18453, 18455, 18457, 18459, 18461, 18463, 18465, 18467, 18469, 18471, 18473, 18475, 18477, 18479, 18481, 18483, 18485, 18487, 18489, 18491, 18493, 18495, 18497, 18499, 18501, 18503, 18505, 18507, 18509, 18511, 18513, 18515, 18517, 18519, 18521, 18523, 18525, 18527, 18529, 18531, 18533, 18535, 18537, 18539, 18541, 18543, 18545, 18547, 18549, 18551, 18553, 18555, 18557, 18559, 18561, 18563, 18565, 18567, 18569, 18571, 18573, 18575, 18577, 18579, 18581, 18583, 18585, 18587, 18589, 18591, 18593, 18595, 18597, 18599, 18601, 18603, 18605, 18607, 18609, 18611, 18613, 18615, 18617, 18619, 18621, 18623, 18625, 18627, 18629, 18631, 18633, 18635, 18637, 18639, 18641, 18643, 18645, 18647, 18649, 18651, 18653, 18655, 18657, 18659, 18661, 18663, 18665, 18667, 18669, 18671, 18673, 18675, 18677, 18679, 18681, 18683, 18685, 18687, 18689, 18691, 18693, 18695, 18697, 18699, 18701, 18703, 18705, 18707, 18709, 18711, 18713, 18715, 18717, 18719, 18721, 18723, 18725, 18727, 18729, 18731, 18733, 18735, 18737, 18739, 18741, 18743, 18745, 18747, 18749, 18751, 18753, 18755, 18757, 18759, 18761, 18763, 18765, 18767, 18769, 18771, 18773, 18775, 18777, 18779, 18781, 18783, 18785, 18787, 18789, 18791, 18793, 18795, 18797, 18799, 18801, 18803, 18805, 18807, 18809, 18811, 18813, 18815, 18817, 18819, 18821, 18823, 18825, 18827, 18829, 18831, 18833, 18835, 18837, 18839, 18841, 18843, 18845, 18847, 18849, 18851, 18853, 18855, 18857, 18859, 18861, 18863, 18865, 18867, 18869, 18871, 18873, 18875, 18877, 18879, 18881, 18883, 18885, 18887, 18889, 18891, 18893, 18895, 18897, 18899, 18901, 18903, 18905, 18907, 18909, 18911, 18913, 18915, 18917, 18919, 18921, 18923, 18925, 18927, 18929, 18931, 18933, 18935, 18937, 18939, 18941, 18943, 18945, 18947, 18949, 18951, 18953, 18955, 18957, 18959, 18961, 18963, 18965, 18967, 18969, 18971, 18973, 18975, 18977, 18979, 18981, 18983, 18985, 18987, 18989, 18991, 18993, 18995, 18997, 18999, 19001, 19003, 19005, 19007, 19009, 19011, 19013, 19015, 19017, 19019, 19021, 19023, 19025, 19027, 19029, 19031, 19033, 19035, 19037, 19039, 19041, 19043, 19045, 19047, 19049, 19051, 19053, 19055, 19057, 19059, 19061, 19063, 19065, 19067, 19069, 19071, 19073, 19075, 19077, 19079, 19081, 19083, 19085, 19087, 19089, 19091, 19093, 19095, 19097, 19099, 19101, 19103, 19105, 19107, 19109, 19111, 19113, 19115, 19117, 19119, 19121, 19123, 19125, 19127, 19129, 19131, 19133, 19135, 19137, 19139, 19141, 19143, 19145, 19147, 19149, 19151, 19153, 19155, 19157, 19159, 19161, 19163, 19165, 19167, 19169, 19171, 19173, 19175, 19177, 19179, 19181, 19183, 19185, 19187, 19189, 19191, 19193, 19195, 19197, 19199, 19201, 19203, 19205, 19207, 19209, 19211, 19213, 19215, 19217, 19219, 19221, 19223, 19225, 19227, 19229, 19231, 19233, 19235, 19237, 19239, 19241, 19243, 19245, 19247, 19249, 19251, 19253, 19255, 19257, 19259, 19261, 19263, 19265, 19267, 19269, 19271, 19273, 19275, 19277, 19279, 19281, 19283, 19285, 19287, 19289, 19291, 19293, 19295, 19297, 19299, 19301, 19303, 19305, 19307, 19309, 19311, 19313, 19315, 19317, 19319, 19321, 19323, 19325, 19327, 19329, 19331, 19333, 19335, 19337, 19339, 19341, 19343, 19345, 19347, 19349, 19351, 19353, 19355, 19357, 19359, 19361, 19363, 19365, 19367, 19369, 19371, 19373, 19375, 19377, 19379, 19381, 19383, 19385, 19387, 19389, 19391, 19393, 19395, 19397, 19399, 19401, 19403, 19405, 19407, 19409, 19411, 19413, 19415, 19417, 19419, 19421, 19423, 19425, 19427, 19429, 19431, 19433, 19435, 19437, 19439, 19441, 19443, 19445, 19447, 19449, 19451, 19453, 19455, 19457, 19459, 19461, 19463, 19465, 19467, 19469, 19471, 19473, 19475, 19477, 19479, 19481, 19483, 19485, 19487, 19489, 19491, 19493, 19495, 19497, 19499, 19501, 19503, 19505, 19507, 19509, 19511, 19513, 19515, 19517, 19519, 19521, 19523, 19525, 19527, 19529, 19531, 19533, 19535, 19537, 19539, 19541, 19543, 19545, 19547, 19549, 19551, 19553, 19555, 19557, 19559, 19561, 19563, 19565, 19567, 19569, 19571, 19573, 19575, 19577, 19579, 19581, 19583, 19585, 19587, 19589, 19591, 19593, 19595, 19597, 19599, 19601, 19603, 19605, 19607, 19609, 19611, 19613, 19615, 19617, 19619, 19621, 19623, 19625, 19627, 19629, 19631, 19633, 19635, 19637, 19639, 19641, 19643, 19645, 19647, 19649, 19651, 19653, 19655, 19657, 19659, 19661, 19663, 19665, 19667, 19669, 19671, 19673, 19675, 19677, 19679, 19681, 19683, 19685, 19687, 19689, 19691, 19693, 19695, 19697, 19699, 19701, 19703, 19705, 19707, 19709, 19711, 19713, 19715, 19717, 19719, 19721, 19723, 19725, 19727, 19729, 19731, 19733, 19735, 19737, 19739, 19741, 19743, 19745, 19747, 19749, 19751, 19753, 19755, 19757, 19759, 19761, 19763, 19765, 19767, 19769, 19771, 19773, 19775, 19777, 19779, 19781, 19783, 19785, 19787, 19789, 19791, 19793, 19795, 19797, 19799, 19801, 19803, 19805, 19807, 19809, 19811, 19813, 19815, 19817, 19819, 19821, 19823, 19825, 19827, 19829, 19831, 19833, 19835, 19837, 19839, 19841, 19843, 19845, 19847, 19849, 19851, 19853, 19855, 19857, 19859, 19861, 19863, 19865, 19867, 19869, 19871, 19873, 19875, 19877, 19879, 19881, 19883, 19885, 19887, 19889, 19891, 19893, 19895, 19897, 19899, 19901, 19903, 19905, 19907, 19909, 19911, 19913, 19915, 19917, 19919, 19921, 19923, 19925, 19927, 19929, 19931, 19933, 19935, 19937, 19939, 19941, 19943, 19945, 19947, 19949, 19951, 19953, 19955, 19957, 19959, 19961, 19963, 19965, 19967, 19969, 19971, 19973, 19975, 19977, 19979, 19981, 19983, 19985, 19987, 19989, 19991, 19993, 19995, 19997, 19999, 20001, 20003, 20005, 20007, 20009, 20011, 20013, 20015, 20017, 20019, 20021, 20023, 20025, 20027, 20029, 20031, 20033, 20035, 20037, 20039, 20041, 20043, 20045, 20047, 20049, 20051, 20053, 20055, 20057, 20059, 20061, 20063, 20065, 20067, 20069, 20071, 20073, 20075, 20077, 20079, 20081, 20083, 20085, 20087, 20089, 20091, 20093, 20095, 20097, 20099, 20101, 20103, 20105, 20107, 20109, 20111, 20113, 20115, 20117, 20119, 20121, 20123, 20125, 20127, 20129, 20131, 20133, 20135, 20137, 20139, 20141, 20143, 20145, 20147, 20149, 20151, 20153, 20155, 20157, 20159, 20161, 20163, 20165, 20167, 20169, 20171, 20173, 20175, 20177, 20179, 20181, 20183, 20185, 20187, 20189, 20191, 20193, 20195, 20197, 20199, 20201, 20203, 20205, 20207, 20209, 20211, 20213, 20215, 20217, 20219, 20221, 20223, 20225, 20227, 20229, 20231, 20233, 20235, 20237, 20239, 20241, 20243, 20245, 20247, 20249, 20251, 20253, 20255, 20257, 20259, 20261, 20263, 20265, 20267, 20269, 20271, 20273, 20275, 20277, 20279, 20281, 20283, 20285, 20287, 20289, 20291, 20293, 20295, 20297, 20299, 20301, 20303, 20305, 20307, 20309, 20311, 20313, 20315, 20317, 20319, 20321, 20323, 20325, 20327, 20329, 20331, 20333, 20335, 20337, 20339, 20341, 20343, 20345, 20347, 20349, 20351, 20353, 20355, 20357, 20359, 20361, 20363, 20365, 20367, 20369, 20371, 20373, 20375, 20377, 20379, 20381, 20383, 20385, 20387, 20389, 20391, 20393, 20395, 20397, 20399, 20401, 20403, 20405, 20407, 20409, 20411, 20413, 20415, 20417, 20419, 20421, 20423, 20425, 20427, 20429, 20431, 20433, 20435, 20437, 20439, 20441, 20443, 20445, 20447, 20449, 20451, 20453, 20455, 20457, 20459, 20461, 20463, 20465, 20467, 20469, 20471, 20473, 20475, 20477, 20479, 20481, 20483, 20485, 20487, 20489, 20491, 20493, 20495, 20497, 20499, 20501, 20503, 20505, 20507, 20509, 20511, 20513, 20515, 20517, 20519, 20521, 20523, 20525, 20527, 20529, 20531, 20533, 20535, 20537, 20539, 20541, 20543, 20545, 20547, 20549, 20551, 20553, 20555, 20557, 20559, 20561, 20563, 20565, 20567, 20569, 20571, 20573, 20575, 20577, 20579, 20581, 20583, 20585, 8006, 8007, 8008, 8009, 8010, 8011, 20593, 20595, 20597, 8026, 8027, 8032, 8033, 8034, 8035, 8036, 8037, 8038, 8039, 8042, 8043, 8046, 8047, 8050, 8051, 8113, 8114, 8121, 8122, 8131, 8132, 8155, 8156, 8159, 8160, 8166, 8167, 20627, 20629, 20631, 20633, 20635, 20637, 8193, 8194, 8195, 8196, 8199, 8200, 8202, 8203, 8226, 8227, 8230, 8231, 8278, 8279, 8282, 8285, 8296, 8297, 8320, 8323, 8336, 8339, 8367, 8368, 8371, 8372, 8376, 8377, 8378, 8379, 8380, 8381, 20671, 20673, 20675, 20677, 8404, 8405, 8408, 8409, 8410, 8411, 8412, 8413, 8427, 8428, 8429, 8430, 8431, 8432, 8433, 8434, 8453, 8454, 8481, 8483, 8579, 8580, 8590, 8593, 8609, 8610, 8611, 8612, 8613, 8614, 8634, 8637, 8646, 8649, 8727, 8729, 8787, 8788, 8795, 8796, 8799, 8800, 8803, 8804, 8807, 8808, 8825, 8826, 8833, 8834, 8837, 8838, 8841, 8842, 8845, 8846, 8931, 8934, 8943, 8944, 8947, 8948, 8951, 8952, 8955, 8956, 8973, 8986, 9064, 9065, 9068, 9069, 9083, 9084, 9091, 9092, 9096, 9097, 9103, 9104, 9109, 9110, 9113, 9114, 9185, 9186, 9187, 9188, 9189, 9190, 9208, 9209, 9211, 9212, 9219, 9222, 9223, 9224, 9225, 9226, 9227, 9228, 9229, 9230, 9244, 9245, 9248, 9249, 9274, 9275, 9278, 9279, 9317, 9320, 9362, 9365, 9368, 9369, 9401, 9402, 9405, 9406, 9413, 9414, 9425, 9426, 9429, 9430, 9437, 9438, 9451, 9452, 9471, 9472, 9475, 9476, 9479, 9480, 9496, 9497, 9500, 9501, 9504, 9507, 9510, 9511, 9525, 9527, 9531, 9532, 9534, 9535, 9552, 9553, 9556, 9557, 9597, 9600, 9606, 9609, 9618, 9619, 9622, 9623, 9695, 9696, 9697, 9698, 9710, 9711, 9714, 9715, 9724, 9725, 9728, 9729, 9734, 9735, 9738, 9739, 9767, 9768, 9771, 9772, 9787, 9788, 9791, 9792, 9817, 9818, 9834, 9835, 9851, 9853, 9855, 9857, 9859, 9862, 9865, 9866, 9868, 9869, 9879, 9880, 9883, 9884, 9893, 9894, 9897, 9898, 9904, 9905, 9914, 9915, 9918, 9919, 9925, 9926, 9943, 9944, 9950, 9951, 9956, 9957, 9960, 9961, 9983, 9986, 10004, 10005, 10008, 10011, 10014, 10015, 10084, 10085, 10087, 10088, 10104, 10121, 10133, 10134, 10137, 10138, 10145, 10148, 10154, 10155, 10158, 10159, 10162, 10163, 10166, 10167, 10192, 10193, 10196, 10197, 10236, 10237, 10247, 10248, 10251, 10252, 10292, 10293, 10298, 10301, 10307, 10310, 10311, 10314, 10330, 10331, 10334, 10335, 10362, 10364, 10376, 10378, 10393, 10394, 20961, 20963, 20965, 20967, 20969, 20971, 20973, 20975, 20977, 20979, 20981, 20983, 20985, 20987, 20989, 20991, 20993, 20995, 20997, 20999, 21001, 21003, 21005, 21007, 21009, 21011, 21013, 21015, 21017, 21019, 21021, 21023, 21025, 21027, 21029, 21031, 21033, 21035, 21037, 21039, 21041, 21043, 21045, 21047, 21049, 21051, 21053, 21055, 21057, 21059, 21061, 21063, 21065, 21067, 21069, 21071, 21073, 21075, 21077, 21079, 21081, 21083, 21085, 21087, 21089, 21091, 21093, 21095, 21097, 21099, 21101, 21103, 21105, 21107, 21109, 21111, 21113, 21115, 21117, 21119, 21121, 21123, 21125, 21127, 21129, 21131, 21133, 21135, 21137, 21139, 21141, 21143, 21145, 21147, 21149, 21151, 21153, 21155, 21157, 21159, 21161, 21163, 21165, 21167, 21169, 21171, 21173, 21175, 21177, 21179, 21181, 21183, 21185, 21187, 21189, 21191, 21193, 21195, 21197, 21199, 21201, 21203, 21205, 21207, 21209, 21211, 21213, 21215, 21217, 21219, 21221, 21223, 21225, 21227, 21229, 21231, 21233, 21235, 21237, 21239, 21241, 21243, 21245, 21247, 21249, 21251, 21253, 21255, 21257, 21259, 21261, 21263, 21265, 21267, 21269, 21271, 21273, 21275, 21277, 21279, 21281, 21283, 21285, 21287, 21289, 21291, 21293, 21295, 21297, 21299, 21301, 21303, 21305, 21307, 21309, 21311, 21313, 21315, 21317, 21319, 21321, 21323, 21325, 21327, 21329, 21331, 21333, 21335, 21337, 21339, 21341, 21343, 21345, 21347, 21349, 21351, 21353, 21355, 21357, 21359, 21361, 21363, 21365, 21367, 21369, 21371, 21373, 21375, 21377, 21379, 21381, 21383, 21385, 21387, 21389, 21391, 21393, 21395, 21397, 21399, 21401, 21403, 21405, 21407, 21409, 21411, 21413, 21415, 21417, 21419, 21421, 21423, 21425, 21427, 21429, 21431, 21433, 21435, 21437, 21439, 21441, 21443, 21445, 21447, 21449, 21451, 21453, 21455, 21457, 21459, 21461, 21463, 21465, 21467, 21469, 21471, 21473, 21475, 21477, 21479, 21481, 21483, 21485, 21487, 21489, 21491, 21493, 21495, 21497, 21499, 21501, 11666, 11667, 11684, 11685, 11688, 11689, 11696, 11697, 21511, 21513, 21515, 21517, 21519, 21521, 21523, 21525, 21527, 21529, 21531, 21533, 21535, 21537, 21539, 21541, 21543, 21545, 21547, 21549, 21551, 21553, 21555, 21557, 21559, 21561, 21563, 21565, 21567, 21569, 21571, 21573, 21575, 21577, 11994, 11995, 12002, 12003, 12089, 12090, 12099, 12100, 12101, 12102, 12103, 12104, 12105, 12106, 12107, 12108, 12111, 12112, 12115, 12116, 12117, 12118, 12119, 12120, 12121, 12122, 12123, 12124, 12127, 12128, 12895, 12898, 12904, 12905, 12910, 12911, 12914, 12915, 12924, 12925, 12928, 12929, 12946, 12947, 12950, 12951, 12956, 12959, 12962, 12963, 12972, 12973, 12977, 12978, 12981, 12982, 12989, 12992, 12993, 12997, 12998, 13001, 13002, 13009, 13017, 13018, 13021, 13022, 13029, 13032, 13046, 13047, 13050, 13051, 13058, 13059, 13076, 13077, 13086, 13087, 13090, 13091, 13094, 13095, 13104, 13105, 13108, 13109, 13121, 13122, 13125, 13126, 13140, 13141, 13155, 13156, 13174, 13177, 13180, 13183, 13186, 13187, 13188, 13189, 13190, 13191, 13192, 13193, 13194, 13195, 13198, 13199, 13202, 13203, 13204, 13205, 13206, 13207, 13208, 13209, 13210, 13211, 13212, 13213, 13220, 13221, 13228, 13229, 13238, 13245, 13252, 13255, 13258, 13259, 13262, 13263, 13266, 13267, 13270, 13271, 13278, 13279, 13286, 13287, 13294, 13297, 21725, 21727, 21729, 21731, 21733, 21735, 21737, 21739, 21741, 21743, 21745, 21747, 21749, 21751, 21753, 21755, 21757, 21759, 21761, 21763, 21765, 21767, 21769, 21771, 21773, 21775, 21777, 21779, 21781, 21783, 21785, 21787, 21789, 21791, 21793, 21795, 21797, 21799, 21801, 21803, 21805, 21807, 21809, 21811, 21813, 21815, 21817, 21819, 21821, 21823, 21825, 21827, 21829, 21831, 21833, 21835, 21837, 21839, 21841, 21843, 21845, 21847, 21849, 21851, 21853, 21855, 21857, 21859, 21861, 21863, 21865, 21867, 21869, 21871, 21873, 21875, 21877, 21879, 21881, 21883, 21885, 21887, 21889, 21891, 21893, 21895, 21897, 21899, 21901, 21903, 21905, 21907, 21909, 21911, 21913, 21915, 21917, 21919, 21921, 21923, 21925, 21927, 21929, 21931, 21933, 21935, 21937, 21939, 21941, 21943, 21945, 21947, 21949, 21951, 21953, 21955, 21957, 21959, 21961, 21963, 21965, 21967, 21969, 21971, 21973, 21975, 21977, 21979, 21981, 21983, 21985, 21987, 21989, 21991, 21993, 21995, 21997, 21999, 22001, 22003, 22005, 22007, 22009, 22011, 22013, 22015, 22017, 22019, 22021, 22023, 22025, 22027, 22029, 22031, 22033, 22035, 22037, 22039, 22041, 22043, 22045, 22047, 22049, 22051, 22053, 14165, 14166, 14167, 14168, 14179, 14180, 14181, 14182, 14195, 14196, 14200, 14201, 14216, 14217, 22069, 22071, 22073, 22075, 22077, 22079, 22081, 22083, 22085, 22087, 22089, 22091, 22093, 22095, 22097, 22099, 22101, 22103, 22105, 22107, 22109, 22111, 22113, 22115, 22117, 22119, 22121, 22123, 14358, 14359, 22127, 22129, 22131, 22133, 22135, 22137, 22139, 22141, 22143, 22145, 22147, 22149, 22151, 22153, 22155, 22157, 22159, 22161, 22163, 22165, 22167, 22169, 22171, 22173, 22175, 22177, 22179, 22181, 22183, 15110, 15111, 15114, 15115, 15118, 15119, 15122, 15123, 15151, 15154, 15176, 15177, 15180, 15181, 15193, 15194, 15197, 15198, 15213, 15214, 15217, 15218, 22207, 22209, 22211, 22213, 22215, 22217, 22219, 22221, 22223, 22225, 22227, 22229, 22231, 22233, 22235, 22237, 22239, 22241, 22243, 22245, 22247, 22249, 22251, 22253, 22255, 22257, 22259, 22261, 22263, 22265, 22267, 22269, 22271, 22273, 22275, 22277, 22279, 22281, 22283, 22285, 22287, 22289, 22291, 15475, 15476, 15482, 15483, 15486, 15487, 15490, 15491, 15503, 15506, 15511, 15512, 15515, 15516, 15519, 15520, 15537, 15544, 15551, 15552, 15555, 15556, 15559, 15560, 15928, 15929, 15950, 15951, 15967, 15969, 16038, 16039, 16330, 16331, 22327, 22329, 22331, 22333, 22335, 22337, 22339, 22341, 22343, 22345, 22347, 22349, 22351, 22353, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 24150, 24152, 24154, 23524, 23523, 22549, 22548, 22551, 22368, 24161, 24163, 24165, 24167, 22370, 22369, 23481, 23480, 24171, 23483, 23482, 24173, 23485, 23484, 4988, 23488, 23487, 5003, 23491, 22371, 23493, 22372, 23494, 23495, 22373, 22374, 22376, 22375, 22378, 22377, 22379, 22381, 22382, 22384, 22386, 22385, 22388, 22387, 22390, 22389, 22392, 22391, 22627, 22626, 22628, 22630, 22629, 22631, 22633, 22632, 22635, 22634, 22637, 22636, 22638, 22393, 22641, 22640, 22642, 22644, 22643, 22394, 22683, 22395, 22662, 22797, 22799, 22687, 22667, 22690, 22689, 22692, 22691, 24175, 22669, 22398, 22400, 22399, 22402, 22401, 24177, 22404, 22403, 22406, 22405, 22407, 22408, 22410, 22409, 24179, 22759, 22758, 22761, 22760, 22411, 22686, 22413, 22412, 22414, 22416, 22415, 22418, 22417, 22770, 22419, 22841, 22840, 22844, 22846, 22420, 22848, 22421, 24181, 22423, 22422, 24183, 22425, 22424, 22426, 22428, 22427, 24185, 24193, 24195, 22429, 22431, 24197, 22433, 24199, 22434, 22436, 22435, 22437, 22439, 22438, 22440, 22442, 22441, 22443, 22445, 22444, 22446, 22448, 22447, 22450, 22449, 23684, 23683, 23685, 22452, 22451, 24201, 22454, 22453, 24203, 23681, 23621, 22455, 23696, 23622, 23624, 23623, 22457, 22456, 22459, 22458, 22460, 22463, 22462, 22465, 22464, 22466, 22468, 22467, 22470, 22469, 22472, 22471, 22474, 22473, 22476, 22475, 22477, 23626, 23625, 22479, 22478, 23630, 23629, 22481, 22480, 23641, 23640, 23839, 23634, 23841, 23840, 23843, 23642, 23636, 22482, 24205, 22484, 22483, 22486, 22485, 23641, 23640, 23839, 22487, 23841, 23840, 23843, 23642, 23636, 23635, 24209, 23852, 23851, 23639, 22488, 22491, 22490, 22493, 22492, 22495, 22494, 22496, 22499, 22498, 22504, 22503, 22506, 22505, 22500, 22510, 22509, 22531, 22530, 22533, 22501, 22511, 22534, 22502, 22504, 22503, 22506, 22505, 22507, 22510, 22509, 22531, 22530, 22533, 22532, 22511, 22534, 22535, 22513, 22512, 22514, 22517, 22516, 22519, 22518, 22521, 22520, 22523, 22522, 23833, 22524, 23835, 23834, 22526, 22525, 23804, 22527, 22528, 23808, 23807, 22531, 22530, 24215, 22533, 22532, 24217, 22534, 23813, 22535, 24219, 24221, 24223, 24077, 22536, 24076, 22538, 22537, 24229, 22540, 22539, 24231, 24233, 24235, 22542, 22541, 22839, 22838, 22544, 22543, 22546, 22545, 22547, 22549, 22548, 22551, 22550, 24237, 24239, 24241, 24243, 23194, 23193, 23196, 23195, 22552, 23200, 23199, 23156, 23155, 23158, 23157, 23160, 23159, 23161, 23164, 23163, 22554, 22553, 22556, 22555, 22567, 22566, 22569, 22568, 22570, 22572, 22558, 22577, 22559, 22578, 22561, 22560, 22562, 22583, 22563, 22584, 22586, 22585, 22587, 22564, 22567, 22566, 22569, 22568, 22570, 22572, 22574, 22577, 22576, 22578, 22579, 22581, 22583, 22582, 22584, 22586, 22585, 22587, 22589, 22588, 22591, 22590, 22592, 22594, 22595, 22597, 22599, 22598, 22600, 22602, 22601, 22603, 22605, 22604, 1000, 22608, 22607, 1015, 22611, 22610, 22613, 22612, 22615, 22614, 22617, 22616, 22619, 22618, 22621, 22620, 22623, 22622, 22625, 22624, 22627, 22626, 22628, 22630, 22629, 22631, 22633, 22632, 22635, 22634, 22637, 22636, 22639, 22638, 22641, 22640, 22642, 22644, 22643, 22645, 22646, 22649, 22648, 22651, 22650, 22652, 22653, 22656, 22655, 22658, 22657, 22660, 22659, 22661, 22683, 22791, 22662, 22665, 22664, 22799, 22687, 22667, 22690, 22689, 22668, 22692, 24249, 22669, 22671, 22670, 22673, 22672, 22675, 22674, 22677, 22676, 22679, 22678, 22681, 22680, 22682, 22683, 22791, 22685, 22684, 22797, 22686, 22687, 22796, 22690, 22689, 22692, 22691, 24253, 24256, 22693, 22696, 22695, 22698, 22697, 22699, 22701, 22700, 22703, 22702, 22705, 22704, 22706, 22708, 22707, 22710, 22709, 22712, 22711, 22714, 22713, 22716, 22715, 1496, 22719, 22718, 1511, 22722, 22721, 22724, 22723, 22726, 22725, 22727, 22729, 22728, 22730, 22732, 22731, 22733, 22735, 22734, 22736, 22738, 22737, 22740, 22739, 22742, 22741, 22744, 22743, 22746, 22745, 22748, 22747, 22749, 22751, 22750, 22753, 22752, 22755, 22754, 22757, 22756, 22759, 22758, 22761, 22760, 22762, 22765, 22764, 22766, 22768, 22767, 22769, 22770, 22771, 22773, 22772, 22775, 22774, 22777, 22776, 22778, 22779, 22781, 22783, 22782, 22785, 22784, 22787, 22786, 22789, 22788, 22791, 22790, 22793, 22792, 22795, 22794, 22796, 22797, 22799, 22801, 22800, 22803, 22802, 22804, 22805, 22806, 22809, 22808, 22811, 22810, 22812, 22814, 22813, 22815, 22817, 22816, 22818, 22820, 22819, 22821, 22823, 22822, 22824, 22826, 22825, 22827, 22829, 22828, 22831, 22830, 22833, 22832, 22834, 22836, 22835, 22837, 22839, 22838, 22841, 22840, 23034, 23033, 23035, 22843, 22842, 22844, 22846, 22845, 22848, 22847, 22860, 22859, 22850, 22849, 22864, 22851, 22865, 22867, 22866, 22868, 22869, 22852, 24265, 22872, 22871, 22874, 22873, 22876, 22875, 24267, 22878, 22877, 24269, 22880, 22879, 24271, 22854, 22853, 24273, 22856, 22855, 22858, 22857, 22860, 22859, 22862, 22861, 22864, 22863, 22865, 22867, 22866, 22868, 22870, 22869, 24275, 22872, 22871, 22874, 22873, 22876, 22875, 24277, 22878, 22877, 24279, 22880, 22879, 24281, 22882, 22881, 24283, 22884, 22883, 22885, 22887, 22886, 22888, 22891, 22890, 22893, 22892, 22895, 22894, 22896, 22898, 22897, 22899, 22902, 22901, 22903, 22913, 22912, 22915, 22904, 22917, 22916, 22905, 22906, 22908, 22909, 22911, 22910, 22913, 22912, 22915, 22914, 22917, 22916, 22918, 22919, 22921, 22922, 22924, 22923, 22925, 22927, 22926, 22928, 22930, 22932, 22935, 22934, 22937, 22936, 22939, 22938, 22940, 22942, 22941, 22943, 22945, 22944, 22947, 22946, 22949, 22948, 22950, 22953, 22952, 22954, 22956, 22955, 22957, 23123, 22958, 23124, 23126, 23125, 23127, 22961, 22960, 22963, 22962, 22965, 22964, 22967, 22966, 22969, 22968, 22970, 23106, 23105, 23107, 22972, 22971, 24287, 22974, 22973, 24289, 22976, 22975, 24291, 22978, 22977, 24293, 22980, 22979, 22982, 22981, 23140, 23142, 22983, 23144, 23147, 22985, 22986, 23134, 23136, 22987, 23138, 22989, 22988, 23143, 23142, 23144, 23147, 23146, 23149, 23148, 23151, 23150, 23153, 22989, 22991, 22990, 22993, 22992, 22994, 22997, 22996, 22999, 22998, 23001, 23000, 23003, 23002, 23004, 23006, 23005, 23007, 23009, 23008, 23011, 23010, 23013, 23012, 23015, 23014, 23017, 23016, 23019, 23018, 23021, 23020, 23022, 23024, 23023, 23025, 23027, 23026, 23029, 23028, 23031, 23030, 23032, 23034, 23033, 23035, 23037, 23036, 23039, 23038, 23041, 23040, 23043, 23042, 23045, 23044, 23047, 23046, 23049, 23048, 23051, 23050, 23053, 23052, 23055, 23054, 23057, 23056, 23059, 23058, 23061, 23060, 23062, 23064, 23063, 23065, 23067, 23066, 24297, 23069, 23068, 24299, 23070, 23073, 23072, 23075, 23074, 23077, 23076, 23079, 23078, 23081, 23080, 23083, 23082, 24301, 23085, 23084, 23087, 23086, 23089, 23088, 24303, 23091, 23090, 23092, 24305, 23094, 23093, 23096, 23095, 23097, 24307, 23099, 23098, 23101, 23100, 24309, 23103, 23102, 24311, 23117, 23116, 23104, 23120, 23119, 23121, 23106, 23105, 23107, 23109, 23108, 23111, 23110, 23113, 23112, 23114, 23117, 23116, 23118, 23120, 23119, 23121, 23123, 23122, 23124, 23126, 23125, 23127, 23129, 23143, 23142, 23132, 23131, 23147, 23133, 23135, 23134, 23137, 23136, 23152, 23138, 23139, 23140, 23143, 23142, 23144, 23147, 23146, 23149, 23148, 23151, 23150, 23153, 23152, 23154, 23172, 23171, 23156, 23155, 23158, 23157, 23160, 23159, 23161, 23164, 23163, 23186, 23185, 23188, 23187, 24313, 24315, 24317, 23166, 23165, 23168, 23167, 23169, 23172, 23171, 23174, 23173, 23176, 23175, 23177, 23179, 23178, 23180, 23182, 23181, 24319, 23183, 24321, 23186, 23185, 23188, 23187, 23190, 23189, 23192, 23191, 24325, 24327, 24329, 24331, 23194, 23193, 23196, 23195, 23197, 23200, 23199, 23202, 23201, 23204, 23203, 23206, 23205, 24333, 23208, 23207, 24335, 23210, 23209, 23211, 23213, 23212, 23214, 23216, 23215, 23217, 23219, 23218, 23220, 23222, 23221, 23223, 23225, 23224, 23226, 23228, 23227, 23230, 23229, 23232, 23231, 24337, 23234, 23233, 24339, 23236, 23235, 23238, 23237, 23240, 23239, 23242, 23241, 23243, 23245, 23247, 23246, 23248, 23250, 23249, 23252, 23251, 23254, 23253, 23255, 23257, 23256, 23258, 23266, 23265, 23268, 23259, 23269, 23271, 23274, 23273, 23275, 23277, 23276, 23278, 23262, 23261, 23264, 23263, 23266, 23265, 23268, 23267, 23269, 23271, 23274, 23273, 23275, 23277, 23276, 23278, 23280, 23279, 23281, 23283, 23282, 23285, 23284, 23287, 23286, 23288, 23290, 23289, 23291, 23293, 23292, 23295, 23294, 23297, 23296, 23299, 23298, 23301, 23300, 23302, 23304, 23303, 23305, 23307, 23306, 23309, 23308, 23311, 23310, 24345, 23312, 23314, 23316, 23315, 23317, 23319, 23318, 23321, 23320, 23368, 23367, 23370, 23369, 23408, 23407, 23322, 23411, 23410, 23412, 23372, 23371, 23374, 23373, 23324, 23323, 23325, 23327, 23326, 23328, 23378, 23377, 24347, 23380, 23379, 24349, 23382, 23381, 23384, 23329, 23386, 23330, 24351, 23387, 23388, 23389, 23390, 23331, 23332, 23333, 23334, 23378, 23377, 24353, 23380, 23379, 24355, 23382, 23381, 23384, 23383, 23386, 23385, 24357, 23395, 23396, 23397, 23398, 23401, 23402, 23335, 23336, 23338, 23337, 23340, 23339, 23342, 23341, 4988, 23345, 23344, 5003, 23347, 23348, 23349, 23350, 23352, 23351, 23353, 23356, 23355, 23357, 23359, 23358, 23361, 23360, 24363, 23363, 23362, 24365, 23364, 23365, 23366, 23368, 23367, 23370, 23369, 23372, 23371, 23374, 23373, 23376, 23375, 23378, 23377, 24367, 23380, 23379, 24369, 23382, 23381, 23384, 23383, 23386, 23385, 24373, 23387, 23388, 23389, 23390, 23391, 23392, 23393, 23394, 23395, 23396, 23397, 23398, 23399, 23400, 23401, 23402, 23403, 24377, 23405, 24379, 23408, 23407, 23409, 23411, 23410, 23412, 23414, 23413, 23416, 23415, 23418, 23417, 23420, 23419, 23422, 23421, 24381, 23424, 23423, 24383, 23426, 23425, 23427, 23429, 23428, 23430, 23431, 23433, 23432, 23435, 23434, 23436, 23438, 23437, 23439, 23441, 23440, 23443, 23442, 23445, 23444, 23446, 23449, 23448, 23450, 23452, 23451, 23453, 23455, 23454, 23456, 23458, 23457, 23459, 23461, 23460, 23462, 23464, 23463, 23466, 23465, 23468, 23467, 23469, 23471, 23470, 23473, 23472, 23475, 23474, 23476, 23478, 23477, 23479, 23481, 23480, 24389, 23483, 23482, 24391, 23485, 23484, 4988, 23488, 23487, 5003, 23491, 23490, 23493, 23492, 23494, 23495, 23496, 23497, 23499, 23498, 23500, 23502, 23501, 23503, 23505, 23504, 23507, 23506, 23509, 23508, 23510, 23512, 23511, 23513, 23515, 23514, 23516, 23518, 23517, 23519, 23531, 23521, 23534, 23522, 23524, 23523, 23525, 23541, 23540, 23542, 23544, 23543, 23527, 23526, 23529, 23528, 23530, 23531, 23533, 23534, 23536, 23538, 23537, 23539, 23541, 23540, 23542, 23544, 23543, 23546, 23545, 23547, 23549, 23551, 23550, 24393, 24395, 23552, 23554, 23553, 23556, 23555, 23558, 23557, 23559, 23560, 23562, 23561, 24397, 23564, 23563, 24399, 23566, 23565, 23567, 23569, 23568, 23570, 23572, 23571, 24401, 23574, 23573, 24403, 23575, 23576, 23579, 23578, 24405, 23581, 23580, 24407, 23582, 23584, 23583, 23586, 23585, 23588, 23587, 23590, 23589, 23591, 23593, 23592, 23595, 23594, 23596, 23598, 23599, 23601, 23603, 23602, 23604, 23605, 23606, 23607, 23608, 23610, 23609, 24409, 23612, 23611, 24411, 23614, 23613, 23615, 23617, 23616, 23618, 23620, 23619, 23685, 23687, 23686, 23688, 23690, 23689, 24413, 23692, 23680, 24415, 23681, 23621, 23682, 23696, 23622, 23624, 23623, 23626, 23625, 23627, 23630, 23629, 23632, 23631, 23837, 23641, 23634, 23633, 23841, 23840, 23843, 23642, 23636, 23635, 24417, 23638, 23637, 23850, 23852, 23643, 23639, 23641, 23640, 23839, 23838, 23841, 23840, 23843, 23642, 23846, 24419, 23849, 23848, 23850, 23852, 23643, 23644, 23645, 23648, 23647, 23650, 23649, 23652, 23651, 23662, 23661, 23653, 23655, 23657, 23659, 23662, 23661, 23663, 23665, 24427, 23667, 24429, 23668, 23670, 23669, 23671, 23673, 23672, 23674, 23676, 23675, 24431, 23678, 23677, 24433, 23684, 23683, 23679, 23687, 23686, 23688, 23690, 23689, 24435, 23692, 23680, 24437, 23681, 23694, 23682, 23697, 23696, 24439, 23684, 23683, 23685, 23687, 23686, 23688, 23690, 23689, 24441, 23692, 23691, 24443, 23694, 23693, 23695, 23697, 23696, 24445, 23699, 23698, 23701, 23700, 23703, 23702, 23705, 23704, 23707, 23706, 23708, 23710, 23709, 23711, 23712, 23714, 24447, 23717, 23716, 23718, 23721, 23720, 24449, 23723, 23722, 23725, 23724, 24451, 23727, 23726, 24453, 23729, 23728, 23730, 23732, 23731, 23733, 23735, 23734, 23736, 23738, 23737, 23739, 23741, 23740, 23742, 23745, 23744, 23747, 23746, 23749, 23748, 23751, 23750, 23753, 23752, 23754, 23756, 23755, 23758, 23757, 23760, 23759, 23762, 23761, 23764, 23763, 23766, 23765, 23768, 23767, 24457, 23770, 23769, 23772, 23771, 23774, 23773, 24461, 23776, 23775, 23778, 23777, 23780, 23779, 23781, 23783, 23782, 23784, 23785, 23788, 23787, 23790, 23789, 23791, 23793, 23792, 6373, 23796, 23795, 6388, 23799, 23798, 23800, 23801, 23804, 23803, 23806, 23805, 23808, 23807, 23810, 23809, 23812, 23811, 23814, 23813, 23815, 23817, 23816, 23818, 23820, 23819, 23821, 23823, 23822, 23825, 23824, 23827, 23826, 23828, 23830, 23829, 23831, 23833, 23832, 23835, 23834, 23837, 23836, 23839, 23838, 23841, 23840, 23843, 23842, 23844, 24463, 23846, 24465, 23849, 23848, 23850, 23852, 23851, 23853, 23854, 23857, 23856, 23859, 23858, 23872, 23860, 23875, 23874, 23861, 23863, 23879, 23881, 23865, 23864, 23866, 23868, 23867, 23869, 23871, 23870, 23873, 23872, 23875, 23874, 23877, 23876, 23878, 23879, 23881, 23883, 23882, 23885, 23884, 23887, 23886, 24469, 23889, 23888, 24471, 23891, 23890, 23893, 23892, 23895, 23894, 23897, 23896, 23899, 23898, 23900, 23902, 23901, 24475, 23904, 23903, 24477, 23906, 23905, 24479, 23908, 23907, 24481, 23910, 23909, 23911, 23913, 23912, 23914, 23915, 23917, 23918, 23920, 23922, 23921, 23923, 23925, 23924, 23926, 23928, 23927, 23929, 23931, 23930, 23932, 23934, 23933, 24483, 23936, 23935, 24485, 23938, 23937, 23939, 23941, 23940, 23942, 23944, 23943, 23945, 23947, 23946, 23948, 23950, 23949, 23951, 23953, 23952, 23954, 23956, 23955, 23958, 23957, 23960, 23959, 23961, 23963, 23962, 23964, 23966, 23965, 23967, 23969, 23968, 23970, 23972, 23971, 23974, 23973, 24487, 23976, 23975, 23978, 23977, 23979, 23981, 23980, 23983, 23982, 24489, 23985, 23984, 24491, 24066, 23987, 23986, 23989, 23988, 23990, 23993, 23992, 23995, 23994, 23996, 23999, 23998, 24001, 24000, 24003, 24002, 24005, 24004, 24006, 24008, 24010, 24009, 24011, 24014, 24013, 24016, 24015, 24018, 24017, 24020, 24019, 24021, 24022, 24025, 24024, 24026, 24028, 24027, 24030, 24029, 24032, 24031, 24034, 24033, 24036, 24035, 24037, 24040, 24039, 24042, 24041, 24044, 24043, 24046, 24045, 24047, 24049, 24048, 24051, 24050, 24052, 24055, 24054, 24056, 24059, 24058, 24061, 24060, 24501, 24063, 24062, 24503, 24083, 24085, 24065, 24064, 24066, 24068, 24067, 24069, 24071, 24070, 24072, 24073, 24075, 24077, 24076, 24079, 24078, 24080, 24082, 24083, 24085, 24087, 24086, 24089, 24088, 24090, 24092, 24095, 24094, 24096, 24099, 24098, 24100, 24102, 24101, 24103, 24105, 24104, 24106, 24109, 24108, 24110, 24111, 24113, 24115, 24114, 24116, 24118, 24117, 24120, 24119, 24122, 24121, 24509, 24124, 24123, 24125, 24127, 24126, 24128, 24130, 24129, 24131, 24132, 24134, 24136, 24135, 24138, 24137, 24140, 24139, 24141, 24143, 24142, 24144, 24574, 24567, 24782, 24145, 24574, 24567, 24574, 24576, 24588, 24590, 24592, 24599, 24598, 24600, 24602, 24601, 24146, 24605, 24147, 24784, 24607, 24606, 24786, 24622, 24148, 24624, 24623, 24626, 24610, 24788, 24593, 24575, 24593, 24568, 24573, 24155, 24589, 24591, 24593, 24720, 24719, 24721, 24723, 24722, 24724, 24726, 24725, 24728, 24727, 24730, 24729, 24732, 24731, 24734, 24733, 24156, 24773, 24772, 24774, 24736, 24735, 24780, 24738, 24157, 24740, 24739, 24824, 24187, 24186, 24189, 24188, 24191, 24190, 24826, 24828, 24225, 24224, 24708, 24707, 24710, 24709, 24712, 24226, 24830, 24832, 24834, 24836, 24838, 24714, 24713, 24840, 24716, 24715, 24842, 24844, 24846, 24848, 24850, 24718, 24227, 24852, 24511, 24510, 24513, 24512, 24515, 24514, 24516, 24518, 24517, 24856, 24519, 24521, 24523, 24522, 24858, 24525, 24524, 24860, 24527, 24526, 24528, 24530, 24529, 24531, 24533, 24532, 24862, 24535, 24534, 24864, 24536, 24538, 24539, 24541, 24543, 24542, 24545, 24544, 24547, 24546, 24548, 24550, 24549, 24551, 24553, 24552, 24866, 24555, 24554, 24868, 24556, 24558, 24560, 24559, 24562, 24561, 24583, 24563, 24872, 24585, 24564, 24587, 24572, 24593, 24565, 24567, 24575, 24874, 24579, 24566, 24570, 24876, 24583, 24582, 24878, 24585, 24571, 24587, 24572, 24593, 24574, 24568, 24567, 24881, 24569, 24580, 24570, 24883, 24583, 24582, 24885, 24585, 24571, 24587, 24572, 24574, 24573, 24576, 24575, 24578, 24577, 24579, 24581, 24580, 24888, 24583, 24582, 24890, 24585, 24584, 24587, 24586, 24589, 24588, 24591, 24590, 24593, 24592, 24594, 24595, 24597, 24599, 24598, 24600, 24602, 24601, 24603, 24605, 24604, 24894, 24607, 24606, 24896, 24622, 24608, 24624, 24623, 24610, 24609, 24898, 24612, 24611, 24613, 24615, 24614, 24616, 24618, 24617, 24620, 24619, 24622, 24621, 24624, 24623, 24626, 24625, 24900, 24628, 24627, 24630, 24629, 24632, 24631, 24634, 24633, 24902, 24636, 24635, 24904, 24638, 24637, 24906, 24640, 24639, 24692, 24691, 24694, 24641, 24643, 24642, 24908, 24645, 24644, 24910, 24647, 24646, 24648, 24650, 24649, 24651, 24653, 24652, 24654, 24656, 24655, 24912, 24658, 24657, 24914, 24659, 24660, 24663, 24662, 24664, 24666, 24665, 24667, 24668, 24670, 24669, 24672, 24671, 24916, 24674, 24673, 24676, 24675, 24678, 24677, 24680, 24679, 24682, 24681, 24684, 24683, 24685, 24918, 24688, 24687, 24689, 24692, 24691, 24694, 24693, 24696, 24695, 24698, 24697, 24700, 24699, 24702, 24701, 24704, 24703, 24706, 24705, 24708, 24707, 24710, 24709, 24712, 24711, 24924, 24926, 24928, 24930, 24932, 24714, 24713, 24934, 24716, 24715, 24936, 24938, 24941, 24944, 24946, 24718, 24717, 24752, 24751, 24754, 24753, 24948, 24756, 24755, 24758, 24757, 24760, 24759, 24950, 24720, 24719, 24721, 24723, 24722, 24724, 24726, 24725, 24728, 24727, 24730, 24729, 24732, 24731, 24734, 24733, 24736, 24735, 24738, 24737, 24740, 24739, 24742, 24741, 24956, 24744, 24743, 24958, 24746, 24745, 24960, 24748, 24747, 24962, 24750, 24749, 24752, 24751, 24754, 24753, 24964, 24756, 24755, 24758, 24757, 24760, 24759, 24966, 24762, 24761, 24764, 24763, 24766, 24765, 24768, 24767, 24770, 24769, 24771, 24773, 24772, 24774, 24776, 24775, 24777, 24779, 24778, 24780, 24996, 24987, 24999, 24998, 25001, 25000, 25002, 25135, 25137, 24994, 24791, 24995, 24997, 24996, 24999, 24998, 25001, 25000, 25002, 25139, 25141, 24994, 24791, 24995, 24996, 24987, 24999, 24998, 25001, 24789, 25002, 25005, 25004, 25143, 24994, 24791, 24792, 24794, 24793, 24796, 24795, 24798, 24797, 24800, 24799, 24802, 24801, 24803, 24805, 24804, 24806, 24808, 24807, 24971, 24974, 24973, 24976, 24975, 24978, 24977, 24980, 24979, 24982, 24810, 24983, 24985, 24984, 24986, 25050, 24811, 24813, 24812, 24815, 24814, 13718, 25057, 25056, 25177, 24817, 24816, 25062, 24818, 24820, 24819, 24822, 24821, 24969, 24971, 24974, 24973, 24976, 24975, 24978, 24977, 24980, 24979, 24982, 24981, 24983, 24985, 24984, 24986, 24988, 24987, 24999, 24989, 25001, 25000, 25002, 25005, 25004, 24992, 24991, 24994, 24993, 24995, 24997, 24996, 24999, 24998, 25001, 25000, 25002, 25005, 25004, 25007, 25006, 25009, 25008, 25010, 25012, 25011, 25014, 25013, 25016, 25015, 25017, 25019, 25018, 25020, 25022, 25021, 25024, 25023, 25026, 25025, 25028, 25027, 25030, 25029, 25031, 25033, 25032, 25034, 25036, 25035, 25208, 25038, 25037, 25210, 25040, 25039, 25212, 25042, 25041, 25214, 25044, 25043, 25045, 25047, 25046, 25048, 25050, 25049, 25051, 25054, 25053, 13718, 25057, 25056, 13733, 25060, 25059, 25062, 25061, 25064, 25063, 25065, 25067, 25066, 25068, 25070, 25069, 25072, 25071, 25074, 25073, 25075, 25077, 25076, 25078, 25080, 25079, 25081, 25083, 25082, 25084, 25086, 25085, 25087, 25089, 25088, 25091, 25090, 25093, 25092, 25218, 25095, 25094, 25220, 25097, 25096, 25099, 25098, 25101, 25100, 25102, 25103, 25105, 25107, 25106, 25222, 25109, 25108, 25224, 25111, 25110, 25113, 25112, 25115, 25114, 25117, 25116, 25119, 25118, 25121, 25120, 25123, 25122, 25226, 25125, 25124, 25228, 25127, 25126, 25129, 25128, 25131, 25130, 25133, 25132, 25200, 25202, 25159, 25149, 25148, 25273, 25150, 25152, 25151, 25154, 25153, 25275, 25156, 25155, 25277, 25158, 25157, 25279, 25200, 25202, 25159, 25161, 25160, 25163, 25162, 25165, 25164, 25167, 25166, 25169, 25168, 25233, 25252, 25171, 25170, 25283, 25173, 25172, 25285, 25175, 25174, 25287, 25179, 25178, 25181, 25180, 25183, 25182, 25185, 25184, 25187, 25186, 25189, 25188, 25190, 25192, 25191, 25193, 25195, 25194, 25291, 25197, 25196, 25293, 25199, 25198, 25295, 25200, 25202, 25204, 25206, 25236, 25235, 25238, 25229, 25240, 25239, 25230, 25243, 25242, 25245, 25244, 25247, 25246, 25231, 25250, 25249, 25297, 25233, 25232, 25253, 25234, 25236, 25235, 25238, 25237, 25240, 25239, 25241, 25243, 25242, 25245, 25244, 25247, 25246, 25248, 25250, 25249, 25299, 25252, 25251, 25254, 25253, 25256, 25255, 25258, 25257, 25260, 25259, 25261, 25263, 25262, 25264, 25265, 25267, 25269, 25271, 25303, 25305, 25314, 25310, 25306, 25317, 25312, 25313, 25314, 25310, 25306, 25317, 25312, 25313, 25314, 25307, 25308, 25317, 25312, 25319, 25314, 25310, 25316, 25317, 25309, 25319, 25314, 25310, 25311, 25317, 25312, 25313, 25315, 25314, 25316, 25318, 25317, 25319, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 8024, 8025, 8028, 8029, 8030, 8031, 8040, 8041, 8044, 8045, 8048, 8049, 8052, 8053, 8054, 8055, 8056, 8057, 8058, 8059, 8060, 8061, 8062, 8063, 8064, 8065, 8066, 8067, 8068, 8069, 8070, 8071, 8072, 8073, 8074, 8075, 8076, 8077, 8078, 8079, 8080, 8081, 8082, 8083, 8084, 8085, 8086, 8087, 8088, 8089, 8090, 8091, 8092, 8093, 8094, 8095, 8096, 8097, 8098, 8099, 8100, 8101, 8102, 8103, 8104, 8105, 8106, 8107, 8108, 8109, 8110, 8111, 8112, 8115, 8116, 8117, 8118, 8119, 8120, 8123, 8124, 8125, 8126, 8127, 8128, 8129, 8130, 8133, 8134, 8135, 8136, 8137, 8138, 8139, 8140, 8141, 8142, 8143, 8144, 8145, 8146, 8147, 8148, 8149, 8150, 8151, 8152, 8153, 8154, 8157, 8158, 8161, 8162, 8163, 8164, 8165, 8197, 8198, 8201, 8204, 8205, 8206, 8207, 8208, 8209, 8210, 8211, 8212, 8213, 8214, 8215, 8216, 8217, 8218, 8219, 8220, 8221, 8222, 8223, 8224, 8225, 8228, 8229, 8232, 8233, 8234, 8235, 8236, 8237, 8238, 8239, 8240, 8241, 8242, 8243, 8244, 8245, 8246, 8247, 8248, 8249, 8250, 8251, 8252, 8253, 8254, 8255, 8256, 8257, 8258, 8259, 8260, 8261, 8262, 8263, 8264, 8265, 8266, 8267, 8268, 8269, 8270, 8271, 8272, 8273, 8274, 8275, 8276, 8277, 8280, 8281, 8283, 8284, 8286, 8287, 8288, 8289, 8290, 8291, 8292, 8293, 8294, 8295, 8298, 8299, 8300, 8301, 8302, 8303, 8304, 8305, 8306, 8307, 8308, 8309, 8310, 8311, 8312, 8313, 8314, 8315, 8316, 8317, 8318, 8319, 8321, 8322, 8324, 8325, 8326, 8327, 8328, 8329, 8330, 8331, 8332, 8333, 8334, 8335, 8337, 8338, 8340, 8341, 8342, 8343, 8344, 8345, 8346, 8347, 8348, 8349, 8350, 8351, 8352, 8353, 8354, 8355, 8356, 8357, 8358, 8359, 8360, 8361, 8362, 8363, 8364, 8365, 8366, 8369, 8370, 8373, 8374, 8375, 8382, 8383, 8384, 8402, 8403, 8406, 8407, 8414, 8415, 8416, 8417, 8418, 8419, 8420, 8421, 8422, 8423, 8424, 8425, 8426, 8435, 8436, 8437, 8438, 8439, 8440, 8441, 8442, 8443, 8444, 8445, 8446, 8447, 8448, 8449, 8450, 8451, 8452, 8455, 8456, 8457, 8458, 8459, 8460, 8461, 8462, 8463, 8464, 8465, 8466, 8467, 8468, 8469, 8470, 8471, 8472, 8473, 8474, 8475, 8476, 8477, 8478, 8479, 8480, 8482, 8484, 8485, 8486, 8487, 8488, 8489, 8490, 8491, 8492, 8493, 8494, 8495, 8496, 8497, 8498, 8499, 8500, 8501, 8502, 8503, 8504, 8505, 8506, 8507, 8508, 8509, 8510, 8511, 8512, 8513, 8514, 8515, 8516, 8517, 8518, 8519, 8520, 8521, 8522, 8523, 8524, 8525, 8526, 8527, 8528, 8529, 8530, 8531, 8532, 8533, 8534, 8535, 8536, 8537, 8538, 8539, 8540, 8541, 8542, 8543, 8544, 8545, 8546, 8547, 8548, 8549, 8550, 8551, 8552, 8553, 8554, 8555, 8556, 8557, 8558, 8559, 8560, 8561, 8562, 8563, 8564, 8565, 8566, 8567, 8568, 8569, 8570, 8571, 8572, 8573, 8574, 8575, 8576, 8577, 8578, 8581, 8582, 8583, 8584, 8585, 8586, 8587, 8588, 8589, 8591, 8592, 8594, 8595, 8596, 8597, 8598, 8599, 8600, 8601, 8602, 8603, 8604, 8605, 8606, 8607, 8608, 8615, 8616, 8617, 8618, 8619, 8620, 8621, 8622, 8623, 8624, 8625, 8626, 8627, 8628, 8629, 8630, 8631, 8632, 8633, 8635, 8636, 8638, 8639, 8640, 8641, 8642, 8643, 8644, 8645, 8647, 8648, 8650, 8651, 8652, 8653, 8654, 8655, 8656, 8657, 8658, 8659, 8660, 8661, 8662, 8663, 8664, 8665, 8666, 8667, 8668, 8669, 8670, 8671, 8672, 8673, 8674, 8675, 8676, 8677, 8678, 8679, 8680, 8681, 8682, 8683, 8684, 8685, 8686, 8687, 8688, 8689, 8690, 8691, 8692, 8693, 8694, 8695, 8696, 8697, 8698, 8699, 8700, 8701, 8702, 8703, 8704, 8705, 8706, 8707, 8708, 8709, 8710, 8711, 8712, 8713, 8714, 8715, 8716, 8717, 8718, 8719, 8720, 8721, 8722, 8723, 8724, 8725, 8726, 8728, 8730, 8731, 8732, 8733, 8734, 8735, 8736, 8737, 8738, 8739, 8740, 8741, 8742, 8743, 8744, 8745, 8746, 8747, 8748, 8749, 8750, 8751, 8752, 8753, 8754, 8755, 8756, 8757, 8758, 8759, 8760, 8761, 8762, 8763, 8764, 8765, 8766, 8767, 8768, 8769, 8770, 8771, 8772, 8773, 8774, 8775, 8776, 8777, 8778, 8779, 8780, 8781, 8782, 8783, 8784, 8785, 8786, 8789, 8790, 8791, 8792, 8793, 8794, 8797, 8798, 8801, 8802, 8805, 8806, 8809, 8810, 8811, 8812, 8813, 8814, 8815, 8816, 8817, 8818, 8819, 8820, 8821, 8822, 8823, 8824, 8827, 8828, 8829, 8830, 8831, 8832, 8835, 8836, 8839, 8840, 8843, 8844, 8847, 8848, 8849, 8850, 8851, 8852, 8853, 8854, 8855, 8856, 8857, 8858, 8859, 8860, 8861, 8862, 8863, 8864, 8865, 8866, 8867, 8868, 8869, 8870, 8871, 8872, 8873, 8874, 8875, 8876, 8877, 8878, 8879, 8880, 8881, 8882, 8883, 8884, 8885, 8886, 8887, 8888, 8889, 8890, 8891, 8892, 8893, 8894, 8895, 8896, 8897, 8898, 8899, 8900, 8901, 8902, 8903, 8904, 8905, 8906, 8907, 8908, 8909, 8910, 8911, 8912, 8913, 8914, 8915, 8916, 8917, 8918, 8919, 8920, 8921, 8922, 8923, 8924, 8925, 8926, 8927, 8928, 8929, 8930, 8932, 8933, 8935, 8936, 8937, 8938, 8939, 8940, 8941, 8942, 8945, 8946, 8949, 8950, 8953, 8954, 8957, 8958, 8959, 8960, 8961, 8962, 8963, 8964, 8965, 8966, 8967, 8968, 8969, 8970, 8971, 8972, 8974, 8975, 8976, 8977, 8978, 8979, 8980, 8981, 8982, 8983, 8984, 8985, 8987, 8988, 8989, 8990, 8991, 8992, 8993, 8994, 8995, 8996, 8997, 8998, 8999, 9000, 9001, 9002, 9003, 9004, 9005, 9006, 9007, 9008, 9009, 9010, 9011, 9012, 9013, 9014, 9015, 9016, 9017, 9018, 9019, 9020, 9021, 9022, 9023, 9024, 9025, 9026, 9027, 9028, 9029, 9030, 9031, 9032, 9033, 9034, 9035, 9036, 9037, 9038, 9039, 9040, 9041, 9042, 9043, 9044, 9045, 9046, 9047, 9048, 9049, 9050, 9051, 9052, 9053, 9054, 9055, 9056, 9057, 9058, 9059, 9060, 9061, 9062, 9063, 9066, 9067, 9070, 9071, 9072, 9073, 9074, 9075, 9076, 9077, 9078, 9079, 9080, 9081, 9082, 9085, 9086, 9087, 9088, 9089, 9090, 9093, 9094, 9095, 9098, 9099, 9100, 9101, 9102, 9105, 9106, 9107, 9108, 9111, 9112, 9115, 9116, 9117, 9118, 9119, 9120, 9121, 9122, 9123, 9124, 9125, 9126, 9127, 9128, 9129, 9130, 9131, 9132, 9133, 9134, 9135, 9136, 9137, 9138, 9139, 9140, 9141, 9142, 9143, 9144, 9145, 9146, 9147, 9148, 9149, 9150, 9151, 9152, 9153, 9154, 9155, 9156, 9157, 9158, 9159, 9160, 9161, 9162, 9163, 9164, 9165, 9166, 9167, 9168, 9169, 9170, 9171, 9172, 9173, 9174, 9175, 9176, 9177, 9178, 9179, 9180, 9181, 9182, 9183, 9184, 9191, 9192, 9193, 9194, 9195, 9196, 9197, 9198, 9199, 9200, 9201, 9202, 9203, 9204, 9205, 9206, 9207, 9210, 9213, 9214, 9215, 9216, 9217, 9218, 9220, 9221, 9231, 9232, 9233, 9234, 9235, 9236, 9237, 9238, 9239, 9240, 9241, 9242, 9243, 9246, 9247, 9250, 9251, 9252, 9253, 9254, 9255, 9256, 9257, 9258, 9259, 9260, 9261, 9262, 9263, 9264, 9265, 9266, 9267, 9268, 9269, 9270, 9271, 9272, 9273, 9276, 9277, 9280, 9281, 9282, 9283, 9284, 9285, 9286, 9287, 9288, 9289, 9290, 9291, 9292, 9293, 9294, 9295, 9296, 9297, 9298, 9299, 9300, 9301, 9302, 9303, 9304, 9305, 9306, 9307, 9308, 9309, 9310, 9311, 9312, 9313, 9314, 9315, 9316, 9318, 9319, 9321, 9322, 9323, 9324, 9325, 9326, 9327, 9328, 9329, 9330, 9331, 9332, 9333, 9334, 9335, 9336, 9337, 9338, 9339, 9340, 9341, 9342, 9343, 9344, 9345, 9346, 9347, 9348, 9349, 9350, 9351, 9352, 9353, 9354, 9355, 9356, 9357, 9358, 9359, 9360, 9361, 9363, 9364, 9366, 9367, 9370, 9371, 9372, 9373, 9374, 9375, 9376, 9377, 9378, 9379, 9380, 9381, 9382, 9383, 9384, 9385, 9386, 9387, 9388, 9389, 9390, 9391, 9392, 9393, 9394, 9395, 9396, 9397, 9398, 9399, 9400, 9403, 9404, 9407, 9408, 9409, 9410, 9411, 9412, 9415, 9416, 9417, 9418, 9419, 9420, 9421, 9422, 9423, 9424, 9427, 9428, 9431, 9432, 9433, 9434, 9435, 9436, 9439, 9440, 9441, 9442, 9443, 9444, 9445, 9446, 9447, 9448, 9449, 9450, 9453, 9454, 9455, 9456, 9457, 9458, 9459, 9460, 9461, 9462, 9463, 9464, 9465, 9466, 9467, 9468, 9469, 9470, 9473, 9474, 9477, 9478, 9481, 9482, 9483, 9484, 9485, 9486, 9487, 9488, 9489, 9490, 9491, 9492, 9493, 9494, 9495, 9498, 9499, 9502, 9503, 9505, 9506, 9508, 9509, 9512, 9513, 9514, 9515, 9516, 9517, 9518, 9519, 9520, 9521, 9522, 9523, 9524, 9526, 9528, 9529, 9530, 9533, 9536, 9537, 9538, 9539, 9540, 9541, 9542, 9543, 9544, 9545, 9546, 9547, 9548, 9549, 9550, 9551, 9554, 9555, 9558, 9559, 9560, 9561, 9562, 9563, 9564, 9565, 9566, 9567, 9568, 9569, 9570, 9571, 9572, 9573, 9574, 9575, 9576, 9577, 9578, 9579, 9580, 9581, 9582, 9583, 9584, 9585, 9586, 9587, 9588, 9589, 9590, 9591, 9592, 9593, 9594, 9595, 9596, 9598, 9599, 9601, 9602, 9603, 9604, 9605, 9607, 9608, 9610, 9611, 9612, 9613, 9614, 9615, 9616, 9617, 9620, 9621, 9624, 9625, 9626, 9627, 9628, 9629, 9630, 9631, 9632, 9633, 9634, 9635, 9636, 9637, 9638, 9639, 9640, 9641, 9642, 9643, 9644, 9645, 9646, 9647, 9648, 9649, 9650, 9651, 9652, 9653, 9654, 9655, 9656, 9657, 9658, 9659, 9660, 9661, 9662, 9663, 9664, 9665, 9666, 9667, 9668, 9669, 9670, 9671, 9672, 9673, 9674, 9675, 9676, 9677, 9678, 9679, 9680, 9681, 9682, 9683, 9684, 9685, 9686, 9687, 9688, 9689, 9690, 9691, 9692, 9693, 9694, 9699, 9700, 9701, 9702, 9703, 9704, 9705, 9706, 9707, 9708, 9709, 9712, 9713, 9716, 9717, 9718, 9719, 9720, 9721, 9722, 9723, 9726, 9727, 9730, 9731, 9732, 9733, 9736, 9737, 9740, 9741, 9742, 9743, 9744, 9745, 9746, 9747, 9748, 9749, 9750, 9751, 9752, 9753, 9754, 9755, 9756, 9757, 9758, 9759, 9760, 9761, 9762, 9763, 9764, 9765, 9766, 9769, 9770, 9773, 9774, 9775, 9776, 9777, 9778, 9779, 9780, 9781, 9782, 9783, 9784, 9785, 9786, 9789, 9790, 9793, 9794, 9795, 9796, 9797, 9798, 9799, 9800, 9801, 9802, 9803, 9804, 9805, 9806, 9807, 9808, 9809, 9810, 9811, 9812, 9813, 9814, 9815, 9816, 9819, 9820, 9821, 9822, 9823, 9824, 9825, 9826, 9827, 9828, 9829, 9830, 9831, 9832, 9833, 9836, 9837, 9838, 9839, 9840, 9841, 9842, 9843, 9844, 9845, 9846, 9847, 9848, 9849, 9850, 9852, 9854, 9856, 9858, 9860, 9861, 9863, 9864, 9867, 9870, 9871, 9872, 9873, 9874, 9875, 9876, 9877, 9878, 9881, 9882, 9885, 9886, 9887, 9888, 9889, 9890, 9891, 9892, 9895, 9896, 9899, 9900, 9901, 9902, 9903, 9906, 9907, 9908, 9909, 9910, 9911, 9912, 9913, 9916, 9917, 9920, 9921, 9922, 9923, 9924, 9927, 9928, 9929, 9930, 9931, 9932, 9933, 9934, 9935, 9936, 9937, 9938, 9939, 9940, 9941, 9942, 9945, 9946, 9947, 9948, 9949, 9952, 9953, 9954, 9955, 9958, 9959, 9962, 9963, 9964, 9965, 9966, 9967, 9968, 9969, 9970, 9971, 9972, 9973, 9974, 9975, 9976, 9977, 9978, 9979, 9980, 9981, 9982, 9984, 9985, 9987, 9988, 9989, 9990, 9991, 9992, 9993, 9994, 9995, 9996, 9997, 9998, 9999, 10000, 10001, 10002, 10003, 10006, 10007, 10009, 10010, 10012, 10013, 10016, 10017, 10018, 10019, 10020, 10021, 10022, 10023, 10024, 10025, 10026, 10027, 10028, 10029, 10030, 10031, 10032, 10033, 10034, 10035, 10036, 10037, 10038, 10039, 10040, 10041, 10042, 10043, 10044, 10045, 10046, 10047, 10048, 10049, 10050, 10051, 10052, 10053, 10054, 10055, 10056, 10057, 10058, 10059, 10060, 10061, 10062, 10063, 10064, 10065, 10066, 10067, 10068, 10069, 10070, 10071, 10072, 10073, 10074, 10075, 10076, 10077, 10078, 10079, 10080, 10081, 10082, 10083, 10086, 10089, 10090, 10091, 10092, 10093, 10094, 10095, 10096, 10097, 10098, 10099, 10100, 10101, 10102, 10103, 10105, 10106, 10107, 10108, 10109, 10110, 10111, 10112, 10113, 10114, 10115, 10116, 10117, 10118, 10119, 10120, 10122, 10123, 10124, 10125, 10126, 10127, 10128, 10129, 10130, 10131, 10132, 10135, 10136, 10139, 10140, 10141, 10142, 10143, 10144, 10146, 10147, 10149, 10150, 10151, 10152, 10153, 10156, 10157, 10160, 10161, 10164, 10165, 10168, 10169, 10170, 10171, 10172, 10173, 10174, 10175, 10176, 10177, 10178, 10179, 10180, 10181, 10182, 10183, 10184, 10185, 10186, 10187, 10188, 10189, 10190, 10191, 10194, 10195, 10198, 10199, 10200, 10201, 10202, 10203, 10204, 10205, 10206, 10207, 10208, 10209, 10210, 10211, 10212, 10213, 10214, 10215, 10216, 10217, 10218, 10219, 10220, 10221, 10222, 10223, 10224, 10225, 10226, 10227, 10228, 10229, 10230, 10231, 10232, 10233, 10234, 10235, 10238, 10239, 10240, 10241, 10242, 10243, 10244, 10245, 10246, 10249, 10250, 10253, 10254, 10255, 10256, 10257, 10258, 10259, 10260, 10261, 10262, 10263, 10264, 10265, 10266, 10267, 10268, 10269, 10270, 10271, 10272, 10273, 10274, 10275, 10276, 10277, 10278, 10279, 10280, 10281, 10282, 10283, 10284, 10285, 10286, 10287, 10288, 10289, 10290, 10291, 10294, 10295, 10296, 10297, 10299, 10300, 10302, 10303, 10304, 10305, 10306, 10308, 10309, 10312, 10313, 10315, 10316, 10317, 10318, 10319, 10320, 10321, 10322, 10323, 10324, 10325, 10326, 10327, 10328, 10329, 10332, 10333, 10336, 10337, 10338, 10339, 10340, 10341, 10342, 10343, 10344, 10345, 10346, 10347, 10348, 10349, 10350, 10351, 10352, 10353, 10354, 10355, 10356, 10357, 10358, 10359, 10360, 10361, 10363, 10365, 10366, 10367, 10368, 10369, 10370, 10371, 10372, 10373, 10374, 10375, 10377, 10379, 10380, 10381, 10382, 10383, 10384, 10385, 10386, 10387, 10388, 10389, 10390, 10391, 10392, 10395, 10396, 10397, 10398, 10399, 10400, 10401, 10402, 10403, 10404, 10405, 10406, 10407, 10408, 10409, 10410, 10411, 10412, 10413, 10414, 10415, 11664, 11665, 11668, 11669, 11670, 11671, 11672, 11673, 11674, 11675, 11676, 11677, 11678, 11679, 11680, 11681, 11682, 11683, 11686, 11687, 11690, 11691, 11692, 11693, 11694, 11695, 11702, 11703, 11704, 11705, 11706, 11707, 11708, 11709, 11710, 11711, 11712, 11713, 11714, 11715, 11716, 11717, 11718, 11719, 11720, 11721, 11722, 11723, 11724, 11725, 11726, 11727, 11728, 11729, 11730, 11731, 11732, 11733, 11734, 11735, 11736, 11737, 25355, 25353, 11996, 11997, 11998, 11999, 12000, 12001, 25476, 25475, 25643, 25642, 12091, 12092, 12093, 12094, 12095, 12096, 12097, 12098, 12109, 12110, 12113, 12114, 12125, 12126, 25671, 25669, 25841, 25840, 26382, 26380, 26413, 26411, 12893, 12894, 12896, 12897, 12899, 12900, 12901, 12902, 12903, 12906, 12907, 12908, 12909, 12912, 12913, 12916, 12917, 12918, 12919, 12920, 12921, 12922, 12923, 12926, 12927, 12930, 12931, 12932, 12933, 12934, 12935, 12936, 12937, 12938, 12939, 12940, 12941, 12942, 12943, 12944, 12945, 12948, 12949, 12952, 12953, 12954, 12955, 12957, 12958, 12960, 12961, 12964, 12965, 12966, 12967, 12968, 12969, 12970, 12971, 12974, 12975, 12976, 12979, 12980, 12983, 12984, 12985, 12986, 12987, 12988, 12990, 12991, 12994, 12995, 12996, 12999, 13000, 13003, 13004, 13005, 13006, 13007, 13008, 13010, 13011, 13012, 13013, 13014, 13015, 13016, 13019, 13020, 13023, 13024, 13025, 13026, 13027, 13028, 13030, 13031, 13033, 13034, 13035, 13036, 13037, 13038, 13039, 13040, 13041, 13042, 13043, 13044, 13045, 13048, 13049, 13052, 13053, 13054, 13055, 13056, 13057, 13060, 13061, 13062, 13063, 13064, 13065, 13066, 13067, 13068, 13069, 13070, 13071, 13072, 13073, 13074, 13075, 13078, 13079, 13080, 13081, 13082, 13083, 13084, 13085, 13088, 13089, 13092, 13093, 13096, 13097, 13098, 13099, 13100, 13101, 13102, 13103, 13106, 13107, 13110, 13111, 13112, 13113, 13114, 13115, 13116, 13117, 13118, 13119, 13120, 13123, 13124, 13127, 13128, 13129, 13130, 13131, 13132, 13133, 13134, 13135, 13136, 13137, 13138, 13139, 13142, 13143, 13144, 13145, 13146, 13147, 13148, 13149, 13150, 13151, 13152, 13153, 13154, 13157, 13158, 13159, 13160, 13161, 13162, 13163, 13164, 13165, 13166, 13167, 13168, 13169, 13170, 13171, 13172, 13173, 13175, 13176, 13178, 13179, 13181, 13182, 13184, 13185, 13196, 13197, 13200, 13201, 13214, 13215, 13216, 13217, 13218, 13219, 13222, 13223, 13224, 13225, 13226, 13227, 13230, 13231, 13232, 13233, 13234, 13235, 13236, 13237, 13239, 13240, 13241, 13242, 13243, 13244, 13246, 13247, 13248, 13249, 13250, 13251, 13253, 13254, 13256, 13257, 13260, 13261, 13264, 13265, 13268, 13269, 13272, 13273, 13274, 13275, 13276, 13277, 13280, 13281, 13282, 13283, 13284, 13285, 13288, 13289, 13290, 13291, 13292, 13293, 13295, 13296, 13298, 13299, 13300, 13301, 13302, 13303, 13304, 13305, 13306, 13307, 13308, 13309, 14158, 14159, 14160, 14161, 14162, 14163, 14164, 14169, 14170, 14171, 14172, 14173, 14174, 14175, 14176, 14177, 14178, 14183, 14184, 14185, 14186, 14187, 14188, 14189, 14190, 14191, 14192, 14193, 14194, 14197, 14198, 14199, 14202, 14203, 14204, 14205, 14206, 14207, 14208, 14209, 14210, 14211, 14212, 14213, 14214, 14215, 14332, 14333, 14334, 14335, 14336, 14337, 14338, 14339, 14340, 14341, 14342, 14343, 14344, 14345, 14346, 14347, 14348, 14349, 14350, 14351, 14352, 14353, 14354, 14355, 14356, 14357, 14360, 14361, 14362, 14363, 14364, 14365, 14366, 14367, 27576, 27574, 27586, 27585, 27584, 27846, 27844, 27856, 27855, 27854, 15040, 15041, 15042, 15043, 15044, 15045, 15046, 15047, 15048, 15049, 15050, 15051, 15052, 15053, 15054, 15055, 15056, 15057, 15058, 15059, 15060, 15061, 15062, 15063, 15064, 15065, 15066, 15067, 15068, 15069, 15070, 15071, 15072, 15073, 15074, 15075, 15076, 15077, 15078, 15079, 15080, 15081, 15082, 15083, 15084, 15085, 15086, 15087, 15088, 15089, 15090, 15091, 15092, 15093, 15094, 15095, 15096, 15097, 15098, 15099, 15100, 15101, 15102, 15103, 15104, 15105, 15106, 15107, 15108, 15109, 15112, 15113, 15116, 15117, 15120, 15121, 15124, 15125, 15126, 15127, 15128, 15129, 15130, 15131, 15132, 15133, 15134, 15135, 15136, 15137, 15138, 15139, 15140, 15141, 15142, 15143, 15144, 15145, 15146, 15147, 15148, 15149, 15150, 15152, 15153, 15155, 15156, 15157, 15158, 15159, 15160, 15161, 15162, 15163, 15164, 15165, 15166, 15167, 15168, 15169, 15170, 15171, 15172, 15173, 15174, 15175, 15178, 15179, 15182, 15183, 15184, 15185, 15186, 15187, 15188, 15189, 15190, 15191, 15192, 15195, 15196, 15199, 15200, 15201, 15202, 15203, 15204, 15205, 15206, 15207, 15208, 15209, 15210, 15211, 15212, 15215, 15216, 15442, 15443, 15444, 15445, 15446, 15447, 15448, 15449, 15450, 15451, 15452, 27947, 27959, 15473, 15474, 15477, 15478, 15479, 15480, 15481, 15484, 15485, 15488, 15489, 15492, 15493, 15494, 15495, 15496, 15497, 15498, 15499, 15500, 15501, 15502, 15504, 15505, 15507, 15508, 15509, 15510, 15513, 15514, 15517, 15518, 15531, 15532, 15533, 15534, 15535, 15536, 15538, 15539, 15540, 15541, 15542, 15543, 15545, 15546, 15547, 15548, 15549, 15550, 15553, 15554, 15557, 15558, 15561, 15562, 15563, 15564, 15912, 15913, 15914, 15915, 15916, 15917, 15918, 15919, 15920, 15921, 15922, 15923, 15924, 15925, 15926, 15927, 15930, 15931, 15932, 15933, 15934, 15935, 15936, 15937, 15938, 15939, 15940, 15941, 15942, 15943, 15944, 15945, 15946, 15947, 15948, 15949, 15952, 15953, 15954, 15955, 15956, 15957, 15958, 15959, 15960, 15961, 15962, 15963, 15964, 15965, 15966, 15968, 15970, 15971, 16724, 16725, 16726, 16727, 16728, 16729, 16741, 16742, 16743, 16744, 16745, 16746, 16754, 16755, 16756, 16757, 16758, 16759, 16767, 16768, 16769, 16770, 16771, 16772, 16780, 16781, 16782, 16783, 16784, 16785, 16876, 16877, 16878, 16879, 16880, 16881, 29, 30, 31, 28385, 28387, 28389, 28391, 28393, 28395, 28397, 28400, 28403, 28405, 28411, 28413, 28419, 28421, 28423, 28425, 28427, 28430, 28433, 28435, 28437, 28439, 28441, 28444, 28447, 28454, 28456, 28460, 28462, 28464, 28466, 28470, 28472, 28474, 28478, 28481, 28483, 28487, 28490, 28492, 28494, 28496, 28499, 28505, 28508, 28511, 28514, 28517, 28519, 28521, 28524, 28526, 28528, 28531, 28533, 28535, 28537, 28540, 28542, 28545, 28547, 28549, 28551, 28553, 28556, 28558, 28560, 28562, 28564, 28566, 28568, 28570, 28572, 28574, 28576, 28578, 28580, 28582, 28584, 28586, 28588, 28592, 28594, 28596, 28599, 28601, 28603, 28606, 28608, 28610, 28612, 28615, 28617, 28620, 28622, 28624, 28626, 28629, 28632, 28634, 28636, 28638, 28640, 28642, 28644, 28646, 28649, 28651, 28653, 28655, 28661, 28663, 28665, 28667, 28669, 28671, 28674, 28676, 28678, 28680, 28683, 28685, 28687, 28689, 28692, 28694, 28696, 28698, 28700, 28705, 28708, 28711, 28714, 28718, 28720, 28725, 28730, 28733, 28736, 28738, 28744, 28747, 28750, 28753, 28756, 28758, 28760, 28762, 28764, 28766, 28768, 28770, 28772, 28775, 28778, 28780, 28782, 28784, 28786, 28789, 28793, 28795, 28799, 28801, 28803, 28806, 28809, 28814, 28816, 28819, 28821, 28823, 28825, 28827, 28829, 28832, 28834, 28840, 28842, 28845, 28847, 28850, 28852, 28854, 28857, 28859, 28861, 28863, 28865, 28868, 28871, 28873, 28875, 28878, 28881, 28884, 28887, 28889, 28891, 28893, 28895, 28897, 28900, 28902, 28904, 28906, 28908, 28910, 28913, 28916, 28921, 28923, 28925, 28930, 28932, 28934, 28936, 28938, 28940, 28942, 28947, 28949, 28954, 28956, 28959, 28962, 28965, 28968, 28971, 28974, 28976, 28978, 28981, 28984, 28986, 28988, 28991, 28994, 28996, 28998, 29000, 29002, 29005, 29008, 29010, 29012, 29014, 29016, 29018, 29020, 29022, 29024, 29026, 29028, 29030, 29033, 29036, 29038, 29040, 29042, 29044, 29046, 29048, 29050, 29053, 29056, 29058, 29060, 29063, 29066, 29069, 29071, 29073, 29079, 29081, 29083, 29085, 29091, 29094, 29099, 29101, 29103, 29106, 29109, 29111, 29113, 29116, 29119, 29122, 29125, 29128, 29130, 29132, 29134, 29136, 29139, 29142, 29144, 29146, 29148, 29150, 29152, 29155, 29158, 29160, 29162, 29164, 29167, 29170, 29172, 29174, 29176, 29178, 29180, 29183, 29185, 29187, 29189, 29192, 29195, 29197, 29199, 29201, 29203, 29205, 29207, 29210, 29213, 29215, 29217, 29220, 29223, 29225, 29227, 29229, 29231, 29233, 29235, 29237, 29239, 29241, 29243, 29245, 29247, 29250, 29253, 29255, 29258, 29260, 29262, 29264, 29266, 29268, 29270, 29272, 29274, 29276, 29279, 29281, 29284, 29286, 29288, 29290, 29293, 29296, 29299, 29301, 29303, 29306, 29309, 29312, 29315, 29319, 29321, 29323, 29325, 29327, 29329, 29333, 29336, 29338, 29340, 29342, 29345, 29347, 29349, 29351, 29354, 29356, 29358, 29360, 29362, 29365, 29367, 29369, 29372, 29375, 29378, 29380, 29382, 29384, 29386, 29388, 29391, 29393, 29395, 29397, 29399, 29401, 29404, 29407, 29410, 29413, 29416, 29419, 29421, 29423, 29425, 29427, 29429, 29431, 29433, 29437, 29440, 29442, 29444, 29447, 29450, 29452, 29456, 29459, 29462, 29464, 29466, 29468, 29472, 29475, 29478, 29481, 29483, 29485, 29488, 29491, 29493, 29495, 29497, 29499, 29502, 29505, 29507, 29509, 29513, 29516, 29518, 29520, 29522, 29524, 29527, 29530, 29532, 29534, 29537, 29540, 29542, 29544, 29546, 29548, 29558, 29560, 29562, 29564, 29566, 29576, 29578, 29580, 29583, 29590, 29593, 29596, 29598, 29600, 29605, 29607, 29609, 29611, 29613, 29615, 29617, 29619, 29621, 29623, 29643, 29646, 29649, 29651, 29653, 29655, 29657, 29659, 29661, 29664, 29668, 29670, 29673, 29676, 29678, 29680, 29683, 29686, 29689, 29692, 29695, 29698, 29700, 29702, 29705, 29707, 29709, 29712, 29715, 29717, 29719, 29722, 29725, 29727, 29733, 29736, 29739, 29741, 29743, 29746, 29749, 29752, 29759, 29762, 29765, 29767, 29769, 29776, 29779, 29782, 29784, 29788, 29791, 29793, 29795, 29799, 29801, 29803, 29806, 29809, 29811, 29815, 29817, 29820, 29822, 29824, 29826, 29829, 29831, 29837, 29844, 29846, 29848, 29851, 29854, 29857, 29860, 29862, 29864, 29867, 29869, 29871, 29874, 29876, 29878, 29880, 29882, 29884, 29886, 29888, 29891, 29894, 29896, 29898, 29900, 29903, 29906, 29910, 29912, 29914, 29916, 29922, 29928, 29931, 29934, 29936, 29938, 29941, 29944, 29946, 29948, 29951, 29953, 29956, 29959, 29961, 29963, 29966, 29968, 29970, 29972, 29974, 29976, 29979, 29984, 29987, 29989, 29991, 29993, 29995, 29998, 30001, 30004, 30007, 30010, 30012, 30014, 30016, 30018, 30021, 30023, 30025, 30027, 30029, 30031, 30033, 30035, 30037, 30039, 30041, 30043, 30045, 30048, 30052, 30054, 30057, 30060, 30063, 30067, 30069, 30071, 30073, 30075, 30077, 30080, 30083, 30086, 30088, 30090, 30093, 30096, 30098, 30100, 30102, 30104, 30106, 30110, 30113, 30117, 30119, 30121, 30123, 30129, 30132, 30135, 30137, 30139, 30141, 30146, 30148, 30150, 30152, 30154, 30156, 30158, 30160, 30162, 30165, 30167, 30169, 30171, 30173, 30176, 30183, 30186, 30189, 30192, 30195, 30197, 30199, 30202, 30205, 30208, 30211, 30214, 30217, 30219, 30221, 30224, 30227, 30230, 30233, 30235, 30237, 30239, 30242, 30244, 30246, 30249, 30251, 30254, 30256, 30259, 30261, 30263, 30265, 30269, 30272, 30274, 30276, 30278, 30282, 30285, 30287, 30289, 30291, 30293, 30296, 30298, 30300, 30302, 30305, 30307, 30310, 30313, 30315, 30317, 30321, 30324, 30327, 30332, 30334, 30340, 30342, 30346, 30349, 30352, 30355, 30358, 30363, 30366, 30368, 30370, 30372, 30375, 30378, 30383, 30385, 30387, 30390, 30403, 30406, 30409, 30411, 30413, 30415, 30417, 25344, 25344, 25346, 25345, 30428, 30431, 30434, 30436, 30438, 30440, 30442, 30445, 30448, 30451, 30453, 11892, 11893, 29756, 29773, 28408, 28406, 29754, 29771, 28416, 28414, 28451, 28449, 25426, 28475, 28484, 30457, 30459, 30461, 12004, 12005, 28500, 25481, 25479, 29919, 28597, 30143, 29920, 29918, 30143, 12067, 12068, 30329, 30329, 30467, 30469, 30471, 30473, 30475, 30477, 30479, 12178, 12179, 28701, 28702, 28721, 28722, 28727, 28741, 28739, 28797, 28811, 25813, 28927, 28837, 28835, 12244, 12245, 28927, 28911, 28918, 28927, 28944, 28951, 28950, 29075, 29087, 29096, 12426, 12427, 29376, 12438, 12439, 29434, 29453, 29469, 29510, 29551, 29549, 29555, 29553, 29569, 29567, 29573, 29571, 29587, 29585, 29602, 29601, 29626, 29624, 29630, 29628, 29634, 29632, 29638, 29637, 29636, 29641, 29640, 29730, 29728, 29756, 29754, 29773, 29771, 29785, 29812, 29832, 29834, 29797, 29796, 29812, 29832, 29834, 29841, 29839, 29901, 29920, 29919, 29918, 29917, 29923, 26993, 26991, 29981, 30108, 30107, 30126, 30124, 30143, 30180, 30178, 30329, 30335, 30344, 30252, 30266, 30329, 30337, 30344, 30343, 30280, 30356, 30360, 30380, 30280, 30356, 30360, 30294, 30360, 30380, 30318, 30329, 30337, 30335, 30344, 30343, 30356, 30360, 30380, 30489, 30491, 30493, 30496, 30500, 30502, 30504, 30507, 30510, 30512, 30518, 30520, 30522, 30525, 30528, 30530, 30534, 30536, 30538, 30540, 30542, 30544, 30546, 30549, 30551, 30553, 30555, 30557, 30559, 30562, 30564, 30566, 30568, 30570, 30572, 30574, 30577, 30579, 30581, 30583, 30585, 30587, 30589, 30594, 30597, 30600, 30602, 30604, 30606, 30608, 30610, 30613, 30616, 30618, 30620, 30622, 30624, 30626, 30628, 30630, 30632, 30634, 30636, 30638, 30640, 30642, 30644, 30646, 30648, 30651, 30654, 30657, 30659, 30663, 30666, 30670, 30672, 30674, 30676, 30678, 30680, 30682, 30684, 30687, 30690, 30692, 30694, 30696, 30698, 30700, 30702, 30704, 30706, 30708, 30710, 30712, 30714, 30716, 30718, 30720, 30722, 30724, 30726, 30728, 30731, 30734, 30736, 30738, 30740, 30742, 30744, 30746, 30748, 30750, 30752, 30754, 30756, 30758, 30760, 30762, 30764, 30766, 30768, 30770, 30772, 30774, 30776, 30778, 30781, 30784, 30787, 30393, 30392, 27492, 30396, 30395, 30398, 30397, 30401, 30400, 30399, 30419, 30418, 30421, 30420, 30423, 30422, 30426, 30425, 30424, 30790, 30792, 30794, 30797, 30800, 30802, 30804, 30807, 30810, 30812, 30814, 30817, 30819, 30822, 30824, 30826, 30828, 30830, 30833, 30836, 30839, 30841, 30843, 30845, 30847, 30850, 30853, 30855, 30857, 30860, 30862, 30864, 30866, 30868, 14592, 14593, 14596, 14597, 14598, 30515, 30497, 30515, 30513, 30531, 27658, 27674, 30591, 30660, 30660, 30685, 15004, 15005, 15008, 15009, 15010, 30882, 30884, 30886, 30888, 30890, 30893, 30896, 30898, 30900, 30903, 30905, 30907, 30910, 30912, 30914, 30917, 30919, 30921, 30924, 30926, 30928, 30931, 30934, 30936, 30938, 30940, 30942, 30945, 30948, 30950, 30952, 30954, 30956, 30959, 30962, 30965, 30968, 30971, 30973, 30975, 30978, 30981, 30983, 30985, 30988, 30991, 30994, 30997, 31000, 31002, 31004, 31006, 31008, 31010, 31012, 31017, 31019, 31021, 31023, 31025, 31027, 31029, 31031, 31033, 31035, 31037, 31039, 31041, 31043, 15455, 15459, 31050, 31053, 31055, 31057, 31059, 31064, 31066, 31068, 31070, 31072, 31076, 31078, 31080, 31082, 31084, 31086, 31088, 31090, 31092, 31095, 31098, 31100, 31102, 30879, 31014, 31108, 31110, 31112, 31115, 31117, 31119, 31122, 31124, 31126, 31128, 31130, 31132, 31135, 31137, 31139, 31142, 31144, 31146, 31148, 31150, 31152, 31155, 31046, 31045, 31044, 31062, 31061, 31060, 31105, 31104, 31103, 31159, 31158, 31157, 31162, 31165, 31168, 31171, 31174, 31177, 31180, 31183, 31186, 31189, 31192, 31195, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 11698, 11699, 11700, 11701, 31734, 31203, 31739, 31200, 31202, 31201, 31994, 11894, 31734, 31203, 11897, 31739, 31738, 31205, 31204, 31207, 31206, 31208, 11905, 11906, 11907, 11908, 31210, 11910, 11911, 31212, 31214, 31217, 31216, 31218, 31220, 31223, 31222, 31224, 11921, 11922, 31225, 11924, 28843, 31229, 31381, 31383, 31384, 31387, 31228, 31389, 31388, 31230, 31391, 31393, 31392, 31394, 31395, 31396, 31398, 28843, 31229, 31381, 31383, 31384, 31387, 31386, 31389, 31388, 31230, 31391, 31393, 31392, 31394, 31395, 31396, 31398, 31232, 31234, 11961, 31235, 11963, 31313, 31529, 31530, 31238, 31452, 31455, 31454, 31456, 31457, 31459, 31461, 31460, 31240, 31895, 31894, 31897, 31241, 31899, 31242, 31901, 31900, 31903, 31902, 31905, 31904, 31906, 31908, 31910, 31909, 31911, 32012, 12006, 12007, 12008, 31244, 31243, 31246, 31245, 31247, 31249, 31251, 31250, 31252, 31253, 31255, 28538, 31258, 31766, 31259, 31262, 31261, 31263, 31264, 31266, 31268, 31270, 31272, 31274, 31273, 31275, 31277, 31279, 31280, 28590, 31282, 12040, 12041, 12042, 31284, 31285, 28604, 31289, 31288, 31290, 31291, 28618, 31295, 31294, 31296, 31297, 31298, 31300, 31302, 12058, 12059, 12060, 31878, 31304, 28647, 31308, 31307, 31309, 32023, 31942, 30257, 31924, 31947, 31946, 31948, 31949, 31915, 12077, 28657, 31942, 30257, 31924, 31947, 31946, 31914, 31949, 31915, 12087, 28659, 28952, 31424, 31423, 31426, 31425, 31310, 31428, 31429, 31432, 31431, 25650, 31526, 31525, 28952, 31424, 31423, 31426, 31425, 31428, 31427, 31429, 31432, 31431, 25653, 31526, 31525, 25654, 25655, 31512, 29181, 31515, 31518, 31517, 31519, 31521, 31523, 31526, 31525, 31313, 31315, 31529, 31531, 31533, 31535, 31537, 31539, 31541, 31317, 31316, 32034, 31318, 28681, 31592, 31322, 28690, 31597, 31600, 31325, 31326, 12189, 31328, 12191, 31329, 31330, 31332, 31331, 28716, 12197, 31334, 12199, 31335, 12201, 31337, 31336, 31338, 12205, 12206, 31341, 31340, 31343, 31342, 31344, 31346, 31348, 31350, 31353, 31352, 31354, 31356, 31359, 31358, 28791, 31410, 12223, 31412, 31362, 31374, 31364, 31365, 12229, 31366, 31367, 12232, 31400, 31412, 12235, 31370, 31374, 31373, 31372, 31375, 12241, 12242, 31377, 32049, 28843, 31380, 31381, 31383, 31384, 31387, 31386, 31389, 31388, 31391, 31390, 31393, 31392, 31395, 31394, 31396, 31398, 31400, 31412, 12265, 31402, 31404, 31406, 12269, 31419, 31409, 31408, 12273, 31410, 12275, 31412, 31413, 31415, 31417, 12280, 31419, 31420, 12283, 12284, 28952, 31424, 31423, 31426, 31425, 31428, 31427, 31429, 31432, 31431, 31433, 31436, 31435, 31437, 31439, 31442, 31441, 31443, 31444, 31446, 31448, 31447, 31449, 31527, 31530, 31529, 31450, 31452, 31455, 31454, 31456, 31457, 31459, 31461, 31460, 31462, 31544, 31463, 31464, 31465, 31467, 31468, 31469, 31470, 31472, 12330, 29077, 31474, 31476, 12334, 29089, 31544, 31543, 31478, 12339, 31548, 31479, 31481, 31482, 31483, 31485, 31487, 31486, 31488, 31489, 31490, 31494, 31493, 31492, 31495, 31497, 31496, 31499, 31498, 31500, 29153, 29156, 31504, 31506, 29165, 29168, 31509, 31511, 31512, 29181, 31515, 31518, 31517, 31519, 31521, 31523, 31526, 31525, 31527, 31530, 31529, 31531, 31533, 31535, 31537, 31539, 31541, 31544, 31543, 31546, 31545, 29256, 31548, 31550, 31552, 31553, 31555, 31556, 26295, 31558, 26301, 31561, 31560, 31563, 31562, 31564, 31565, 31567, 31569, 31568, 31570, 31571, 29317, 31573, 31575, 31577, 29331, 29334, 31580, 31582, 31583, 31585, 29352, 31588, 31600, 31599, 32061, 31590, 31591, 31592, 31595, 31594, 12433, 31596, 31597, 31600, 31599, 32064, 31601, 29389, 31604, 31607, 31606, 31609, 31608, 31611, 31610, 31613, 31612, 31614, 31617, 31616, 31618, 31620, 31622, 12457, 31623, 31626, 31625, 31627, 12462, 31630, 31629, 31632, 31631, 31633, 12468, 31636, 31635, 31637, 31638, 31641, 31640, 31642, 31644, 31647, 31646, 31650, 31649, 31648, 31651, 12483, 31652, 31654, 31657, 31656, 31658, 31661, 31660, 31663, 31662, 31666, 31665, 31664, 12496, 12497, 12498, 12499, 31668, 31667, 31671, 31670, 31669, 12505, 12506, 12507, 12508, 31672, 31720, 31678, 31675, 31674, 12514, 12515, 31676, 31677, 31720, 31678, 31680, 31679, 12522, 12523, 31681, 31692, 31691, 31683, 31695, 31687, 31686, 31690, 31689, 31688, 12534, 12535, 12536, 12537, 12538, 12539, 12540, 12541, 12542, 12543, 12544, 31692, 31691, 31693, 31695, 31698, 31697, 31700, 31699, 29666, 31703, 31702, 31704, 31706, 31708, 31707, 31709, 31711, 31710, 31714, 31713, 31712, 31717, 31716, 31715, 31718, 31720, 31719, 31722, 31721, 31723, 12575, 12576, 31726, 31725, 31727, 31730, 31729, 31732, 31731, 12584, 12585, 31734, 31733, 31735, 31737, 12590, 12591, 31739, 31738, 31740, 12595, 31747, 31742, 31749, 31748, 31751, 31750, 12602, 31752, 31753, 29789, 31755, 31757, 31744, 12609, 31760, 12611, 12612, 12613, 31747, 31746, 31749, 31748, 31751, 31750, 12620, 31753, 31752, 29818, 31755, 31757, 31758, 12627, 31760, 12629, 12630, 12631, 31762, 31761, 31764, 31763, 31766, 31765, 31768, 31767, 31769, 31770, 31772, 31773, 31775, 31777, 31779, 31781, 31780, 31782, 31784, 12651, 31787, 31786, 29908, 31789, 31791, 12657, 12658, 12659, 12660, 31792, 12662, 12663, 12664, 31794, 31793, 31796, 31795, 31798, 31797, 31800, 31799, 31801, 31802, 31804, 31803, 31806, 31805, 31807, 31808, 31809, 31811, 31813, 31814, 12685, 27059, 29985, 27065, 31819, 31818, 31821, 31820, 31823, 31822, 31824, 31825, 31829, 31828, 31827, 31830, 31832, 31835, 31834, 31836, 31838, 31837, 31839, 31840, 31843, 31842, 30050, 31845, 31847, 31846, 31848, 30065, 31850, 31852, 31854, 31856, 31855, 31857, 31860, 31859, 31861, 31863, 31865, 12728, 12729, 31868, 31867, 30115, 31870, 31872, 12735, 12736, 31874, 31873, 31875, 31877, 12741, 31878, 31879, 31882, 31881, 31883, 31887, 31886, 31885, 31889, 31888, 31891, 31890, 31893, 31892, 12756, 12757, 31895, 31894, 31897, 31896, 31899, 31898, 31901, 31900, 31903, 31902, 31905, 31904, 31906, 31908, 31910, 31909, 31911, 31942, 30257, 31924, 31947, 31946, 31914, 31949, 31915, 12783, 31951, 31916, 30308, 30311, 31918, 31947, 12790, 31919, 12792, 12793, 31955, 31921, 30257, 31924, 31947, 31926, 12800, 31927, 31950, 12803, 31951, 12805, 31953, 12807, 12808, 31955, 31957, 31937, 12812, 12813, 12814, 31959, 31932, 31961, 31939, 31928, 31929, 31940, 12822, 31934, 31931, 31970, 31957, 31937, 12828, 12829, 12830, 31959, 31932, 31961, 31939, 31938, 31940, 31965, 31966, 31934, 31970, 31936, 31935, 31957, 31937, 12845, 31958, 12847, 31959, 31960, 31961, 31939, 31938, 31940, 31965, 31941, 12856, 31967, 31970, 31969, 31942, 30308, 30311, 31947, 31946, 31948, 12866, 31950, 31949, 12869, 31951, 12871, 12872, 31953, 12874, 12875, 31955, 31957, 31956, 12879, 31958, 12881, 31959, 31960, 31961, 31963, 31965, 31964, 12888, 31966, 31967, 31970, 31969, 14070, 14071, 14072, 14073, 14074, 14075, 14076, 14077, 14078, 14079, 31972, 31971, 31974, 31973, 31975, 31977, 14106, 14107, 14108, 14109, 14110, 14111, 14112, 14113, 14114, 31983, 31982, 31984, 31985, 31987, 31989, 31988, 31992, 31991, 31990, 27556, 32008, 32010, 27564, 32029, 32028, 32027, 32338, 32031, 32030, 32340, 32032, 32272, 32273, 32275, 32158, 32157, 32160, 32159, 32162, 32154, 32153, 14907, 32155, 32156, 32166, 32165, 32168, 32167, 14914, 32158, 32157, 32160, 32159, 32162, 32161, 14921, 14922, 32163, 32166, 32165, 32168, 32167, 14928, 32171, 32170, 32169, 32172, 32175, 32174, 14935, 32177, 32176, 32178, 32181, 32180, 14941, 32183, 32182, 32184, 32187, 32186, 32188, 32190, 32189, 32191, 32195, 32194, 32193, 14954, 32197, 32196, 32199, 32198, 32200, 32202, 32204, 32203, 32205, 32207, 32209, 32210, 14967, 32227, 32212, 30668, 32213, 32215, 32214, 32232, 32234, 32216, 32236, 32217, 32220, 32219, 32222, 32221, 32223, 32225, 32224, 14986, 32227, 32226, 30668, 32229, 32230, 32232, 32234, 14994, 32236, 32237, 32239, 32241, 32244, 32243, 32247, 32246, 32245, 32354, 32249, 32248, 32356, 32250, 32252, 32253, 32255, 32257, 32256, 32258, 32259, 32261, 32281, 32262, 32265, 32264, 32263, 32267, 32266, 32269, 32268, 32270, 32272, 32273, 32275, 32276, 32279, 32278, 32281, 32280, 32283, 32282, 32303, 32305, 32306, 32307, 32309, 32310, 32311, 32313, 32314, 32315, 32405, 32404, 32316, 32318, 32321, 32320, 32405, 32404, 32322, 32323, 32325, 32328, 32327, 32329, 32332, 32331, 32333, 32335, 15860, 32358, 32360, 32363, 32362, 32364, 32366, 32367, 32369, 32370, 32372, 32373, 32375, 32376, 32379, 32378, 32380, 32382, 32385, 32384, 32387, 32386, 32389, 32388, 32391, 32390, 32392, 32394, 32393, 32395, 32398, 32397, 32401, 32400, 32399, 32403, 32402, 32405, 32404, 32406, 32409, 32408, 32410, 15903, 32412, 32414, 32413, 32415, 32417, 32419, 32422, 32421, 32423, 32426, 32425, 15993, 15994, 15995, 32429, 31051, 32432, 32431, 32433, 16010, 16011, 16012, 32434, 32435, 32438, 32437, 31073, 31074, 32440, 32439, 32441, 32442, 32444, 32445, 32447, 31093, 31096, 32450, 32449, 32451, 16035, 16036, 16037, 32454, 32456, 32457, 32459, 32460, 32461, 32463, 32465, 32466, 32468, 32469, 32470, 32472, 32475, 32474, 16327, 16328, 16329, 32489, 32488, 32491, 32490, 32493, 32492, 32495, 32494, 32497, 32496, 32499, 32498, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32513, 32515, 11886, 11887, 11888, 11889, 11890, 11891, 11895, 11896, 11898, 11899, 11900, 11901, 11902, 11903, 11904, 32535, 11909, 32540, 11912, 11913, 11914, 11915, 11916, 11917, 11918, 11919, 11920, 32551, 11923, 11925, 11926, 11927, 11928, 11929, 11930, 11931, 11932, 11933, 11934, 11935, 11936, 11937, 11938, 11939, 11940, 11941, 11942, 11943, 11944, 11945, 11946, 11947, 11948, 11949, 11950, 11951, 11952, 11953, 11954, 11955, 11956, 11957, 11958, 11959, 11960, 11962, 11964, 11965, 11966, 11967, 11968, 11969, 11970, 11971, 11972, 11973, 11974, 11975, 11976, 11977, 11978, 11979, 11980, 11981, 11982, 11983, 11984, 11985, 11986, 11987, 11988, 11989, 11990, 11991, 11992, 11993, 32626, 12009, 12010, 12011, 12012, 12013, 12014, 12015, 12016, 12017, 12018, 12019, 12020, 12021, 12022, 12023, 12024, 12025, 12026, 12027, 12028, 12029, 12030, 12031, 12032, 12033, 12034, 12035, 12036, 12037, 12038, 12039, 32659, 12043, 12044, 12045, 12046, 12047, 12048, 12049, 12050, 12051, 12052, 12053, 12054, 12055, 12056, 12057, 32677, 12061, 12062, 12063, 12064, 12065, 12066, 12069, 12070, 12071, 12072, 12073, 12074, 12075, 12076, 12078, 12079, 12080, 12081, 12082, 12083, 12084, 12085, 12086, 12088, 12129, 12130, 12131, 12132, 12133, 12134, 12135, 12136, 12137, 12138, 12139, 12140, 12141, 12142, 12143, 12144, 12145, 12146, 12147, 12148, 12149, 12150, 12151, 12152, 12153, 12154, 12155, 12156, 12157, 12158, 12159, 12160, 12161, 12162, 12163, 12164, 12165, 12166, 12167, 12168, 12169, 12170, 12171, 12172, 12173, 12174, 12175, 12176, 12177, 12180, 12181, 12182, 12183, 12184, 12185, 12186, 12187, 12188, 12190, 12192, 12193, 12194, 12195, 12196, 12198, 12200, 12202, 12203, 12204, 32782, 12207, 12208, 12209, 12210, 12211, 12212, 12213, 12214, 12215, 12216, 12217, 12218, 12219, 12220, 12221, 12222, 12224, 12225, 12226, 12227, 12228, 12230, 12231, 12233, 12234, 12236, 12237, 12238, 12239, 12240, 32818, 12243, 12246, 12247, 12248, 12249, 12250, 12251, 12252, 12253, 12254, 12255, 12256, 12257, 12258, 12259, 12260, 12261, 12262, 12263, 12264, 12266, 12267, 12268, 12270, 12271, 12272, 12274, 12276, 12277, 12278, 12279, 12281, 12282, 32859, 12285, 12286, 12287, 12288, 12289, 12290, 12291, 12292, 12293, 12294, 12295, 12296, 12297, 12298, 12299, 12300, 12301, 12302, 12303, 12304, 12305, 12306, 12307, 12308, 12309, 12310, 12311, 12312, 12313, 12314, 12315, 12316, 12317, 12318, 12319, 12320, 12321, 12322, 12323, 12324, 12325, 12326, 12327, 12328, 12329, 12331, 12332, 12333, 12335, 12336, 12337, 12338, 12340, 12341, 12342, 12343, 12344, 12345, 12346, 12347, 12348, 12349, 12350, 12351, 12352, 12353, 12354, 12355, 12356, 12357, 12358, 12359, 12360, 12361, 12362, 12363, 12364, 12365, 12366, 12367, 12368, 12369, 12370, 12371, 12372, 12373, 12374, 12375, 12376, 12377, 12378, 12379, 12380, 12381, 12382, 12383, 12384, 12385, 12386, 12387, 12388, 12389, 12390, 12391, 12392, 12393, 12394, 12395, 12396, 12397, 12398, 12399, 12400, 12401, 12402, 12403, 12404, 12405, 12406, 12407, 12408, 12409, 12410, 12411, 12412, 12413, 12414, 12415, 12416, 12417, 12418, 12419, 12420, 12421, 12422, 12423, 12424, 12425, 12428, 12429, 12430, 12431, 12432, 12434, 12435, 12436, 12437, 12440, 12441, 12442, 12443, 12444, 12445, 12446, 12447, 12448, 12449, 12450, 12451, 12452, 12453, 12454, 12455, 12456, 12458, 12459, 12460, 12461, 12463, 12464, 12465, 12466, 12467, 12469, 12470, 12471, 12472, 12473, 12474, 12475, 12476, 12477, 12478, 12479, 12480, 12481, 12482, 12484, 12485, 12486, 12487, 12488, 12489, 12490, 12491, 12492, 12493, 12494, 12495, 33070, 33072, 12500, 12501, 12502, 12503, 12504, 33079, 33081, 12509, 12510, 12511, 12512, 12513, 33088, 12516, 12517, 12518, 12519, 12520, 12521, 33096, 12524, 12525, 12526, 12527, 12528, 12529, 12530, 12531, 12532, 12533, 33108, 33110, 33112, 33114, 33117, 12545, 12546, 12547, 12548, 12549, 12550, 12551, 12552, 12553, 12554, 12555, 12556, 12557, 12558, 12559, 12560, 12561, 12562, 12563, 12564, 12565, 12566, 12567, 12568, 12569, 12570, 12571, 12572, 12573, 12574, 33149, 12577, 12578, 12579, 12580, 12581, 12582, 12583, 33158, 12586, 12587, 12588, 12589, 33164, 12592, 12593, 12594, 12596, 12597, 12598, 12599, 12600, 12601, 12603, 12604, 12605, 12606, 12607, 12608, 12610, 33186, 12614, 12615, 12616, 12617, 12618, 12619, 12621, 12622, 12623, 12624, 12625, 12626, 12628, 33204, 12632, 12633, 12634, 12635, 12636, 12637, 12638, 12639, 12640, 12641, 12642, 12643, 12644, 12645, 12646, 12647, 12648, 12649, 12650, 12652, 12653, 12654, 12655, 12656, 33231, 33233, 12661, 33237, 12665, 12666, 12667, 12668, 12669, 12670, 12671, 12672, 12673, 12674, 12675, 12676, 12677, 12678, 12679, 12680, 12681, 12682, 12683, 12684, 12686, 12687, 12688, 12689, 12690, 12691, 12692, 12693, 12694, 12695, 12696, 12697, 12698, 12699, 12700, 12701, 12702, 12703, 12704, 12705, 12706, 12707, 12708, 12709, 12710, 12711, 12712, 12713, 12714, 12715, 12716, 12717, 12718, 12719, 12720, 12721, 12722, 12723, 12724, 12725, 12726, 12727, 33302, 12730, 12731, 12732, 12733, 12734, 33309, 12737, 12738, 12739, 12740, 12742, 12743, 12744, 12745, 12746, 12747, 12748, 12749, 12750, 12751, 12752, 12753, 12754, 12755, 33330, 12758, 12759, 12760, 12761, 12762, 12763, 12764, 12765, 12766, 12767, 12768, 12769, 12770, 12771, 12772, 12773, 12774, 12775, 12776, 12777, 12778, 12779, 12780, 12781, 12782, 12784, 12785, 12786, 12787, 12788, 12789, 12791, 33366, 12794, 12795, 12796, 12797, 12798, 12799, 12801, 12802, 12804, 12806, 33381, 12809, 12810, 12811, 33386, 12815, 12816, 12817, 12818, 12819, 12820, 12821, 12823, 12824, 12825, 12826, 12827, 33402, 12831, 12832, 12833, 12834, 12835, 12836, 12837, 12838, 12839, 12840, 12841, 12842, 12843, 12844, 12846, 12848, 12849, 12850, 12851, 12852, 12853, 12854, 12855, 12857, 12858, 12859, 12860, 12861, 12862, 12863, 12864, 12865, 12867, 12868, 12870, 33445, 12873, 33448, 12876, 12877, 12878, 12880, 12882, 12883, 12884, 12885, 12886, 12887, 12889, 12890, 12891, 12892, 33467, 33470, 33472, 33474, 14080, 14081, 14082, 14083, 14084, 14085, 33483, 33485, 33487, 33489, 14115, 14116, 14117, 14118, 14119, 14120, 14121, 14122, 14123, 14124, 14536, 14537, 14538, 14588, 14589, 14590, 14591, 14594, 14595, 32341, 14599, 14600, 14601, 14602, 14900, 14901, 14902, 14903, 14904, 14905, 14906, 14908, 14909, 14910, 14911, 14912, 14913, 14915, 14916, 14917, 14918, 14919, 14920, 33538, 14923, 14924, 14925, 14926, 14927, 14929, 14930, 14931, 14932, 14933, 14934, 14936, 14937, 14938, 14939, 14940, 14942, 14943, 14944, 14945, 14946, 14947, 14948, 14949, 14950, 14951, 14952, 14953, 14955, 14956, 14957, 14958, 14959, 14960, 14961, 14962, 14963, 14964, 14965, 14966, 14968, 14969, 14970, 14971, 14972, 14973, 14974, 14975, 14976, 14977, 14978, 14979, 14980, 14981, 14982, 14983, 14984, 14985, 14987, 14988, 14989, 14990, 14991, 14992, 14993, 14995, 14996, 14997, 14998, 14999, 15000, 15001, 15002, 15003, 15006, 15007, 32357, 15011, 15012, 15013, 15014, 15015, 15016, 15017, 15018, 15019, 15020, 15021, 15022, 15023, 15024, 15025, 15026, 15027, 15028, 15029, 15030, 15031, 15032, 15033, 15034, 15035, 15036, 15037, 15038, 15039, 15453, 15454, 15456, 15457, 15458, 15460, 15461, 15462, 15463, 15464, 15465, 15466, 15467, 15468, 15469, 15470, 15471, 15472, 15521, 15522, 15523, 15524, 15525, 15526, 15527, 15528, 15529, 15530, 15861, 15862, 15863, 15864, 15865, 15866, 15867, 15868, 15869, 15870, 15871, 15872, 15873, 15874, 15875, 15876, 15877, 15878, 15879, 15880, 15881, 15882, 15883, 15884, 15885, 15886, 15887, 15888, 15889, 15890, 15891, 15892, 15893, 15894, 15895, 15896, 15897, 15898, 15899, 15900, 15901, 15902, 15904, 15905, 15906, 15907, 15908, 15909, 15910, 15911, 15990, 15991, 15992, 33737, 16005, 16006, 16007, 16008, 16009, 33745, 16013, 16014, 16015, 16016, 16017, 16018, 16019, 16020, 16021, 16026, 16027, 16028, 16029, 16030, 16031, 16032, 16033, 16034, 33766, 16312, 16313, 16314, 16315, 16316, 16317, 16318, 16319, 16320, 16321, 16322, 16323, 16324, 16325, 16326, 33784, 16912, 16913, 16919, 16920, 16924, 16925, 16929, 16930, 16934, 16935, 16969, 16970, 25, 26, 27, 28, 29, 30, 31, 33827, 33829, 33831, 33833, 33835, 33837, 33839, 33847, 33851, 33861, 33863, 33865, 33867, 33869, 33878, 33880, 33882, 33884, 33886, 32590, 33894, 33898, 33903, 33906, 33908, 33910, 33912, 33914, 33916, 33920, 33924, 33926, 33930, 33939, 33947, 33955, 33959, 33964, 33971, 33975, 33981, 33984, 33990, 33993, 33997, 33999, 34001, 34004, 34007, 34010, 34012, 34014, 34017, 34020, 34027, 34032, 34035, 34043, 34051, 34053, 34057, 34059, 34062, 34066, 34068, 34074, 34078, 34081, 34084, 34086, 32811, 34092, 34103, 34105, 34107, 34109, 34111, 32840, 34119, 34121, 34123, 34127, 34132, 34134, 34136, 34139, 34142, 34146, 34151, 34155, 34159, 34164, 34167, 34180, 34189, 34194, 34198, 34200, 34214, 34219, 34222, 34230, 34232, 34244, 34246, 34251, 34267, 34272, 34273, 34276, 34281, 34283, 34285, 34287, 34290, 33030, 34296, 34299, 34301, 34304, 34308, 34312, 34314, 33056, 34320, 34323, 34325, 34327, 34332, 34334, 34340, 34342, 34347, 34349, 34353, 34357, 34359, 33115, 34367, 34371, 34373, 34376, 34380, 34383, 34385, 34388, 34392, 34394, 34398, 34401, 34403, 34406, 34411, 34414, 34416, 34418, 34420, 33184, 34428, 34430, 34432, 34434, 33202, 34442, 34444, 34446, 34448, 34457, 34461, 34466, 34470, 34472, 34474, 34476, 34480, 34482, 34493, 34495, 34497, 34501, 34506, 34509, 34513, 34517, 34524, 34527, 34533, 34539, 34542, 34545, 34548, 34551, 34553, 34555, 34558, 34560, 34562, 34564, 34566, 34568, 34572, 34578, 34581, 34587, 34595, 34597, 34603, 34605, 34609, 34611, 34614, 34616, 34618, 34622, 34624, 34628, 34631, 34632, 34633, 34637, 34639, 33429, 34643, 34648, 33439, 34651, 34658, 34659, 34660, 34665, 34666, 34669, 33475, 34675, 34677, 34490, 33235, 34449, 34485, 34514, 34490, 33235, 34449, 34485, 34514, 33490, 34685, 34690, 34692, 33840, 32767, 32775, 34063, 34069, 33844, 33852, 33854, 33857, 33855, 33870, 33874, 33872, 33887, 33891, 33895, 33900, 33917, 34490, 32624, 33931, 33933, 33934, 34490, 33235, 34449, 34485, 34514, 33941, 33943, 33948, 33950, 33952, 34464, 33956, 33961, 33966, 33968, 34464, 33972, 33977, 32694, 33986, 32704, 34699, 34702, 34023, 34028, 34036, 34038, 34040, 34044, 34046, 34048, 32767, 32775, 34063, 34069, 34071, 34099, 34079, 34112, 34087, 34094, 34096, 34099, 34097, 34112, 34116, 34124, 34128, 34143, 34148, 34156, 34161, 34171, 34169, 34173, 32905, 34176, 32909, 32914, 34183, 34185, 34190, 34202, 34204, 34206, 34208, 34210, 34215, 34223, 34225, 34227, 34233, 34237, 34235, 34241, 34239, 34247, 34252, 34254, 34256, 34258, 34260, 34262, 34264, 34268, 34277, 34297, 34302, 34309, 34329, 34336, 34368, 34338, 34354, 34343, 34368, 34377, 34354, 34361, 34368, 34377, 34395, 34407, 34412, 34424, 34422, 34438, 34436, 34449, 34451, 34453, 34458, 34462, 34490, 33235, 34477, 34483, 34485, 34514, 34490, 33258, 34503, 34514, 34519, 34521, 34529, 34534, 34536, 34569, 34574, 33356, 34583, 33363, 34589, 34591, 33376, 33378, 34600, 34644, 33442, 34653, 34655, 34662, 34709, 34711, 34713, 34715, 34718, 34720, 34722, 34724, 34726, 34730, 34732, 34734, 34738, 34740, 34743, 34745, 34748, 34751, 34754, 34757, 34759, 34763, 34769, 34773, 34780, 34782, 34785, 34787, 34798, 34800, 34803, 34810, 34815, 34817, 34820, 34822, 34829, 34831, 34833, 34670, 34671, 34672, 34678, 34680, 34681, 34682, 34687, 34845, 34849, 34851, 34856, 34859, 34694, 34695, 34697, 34706, 34704, 34760, 34765, 34767, 34774, 34776, 34789, 34791, 33610, 34794, 34807, 34805, 34812, 34825, 34823, 34865, 34876, 34880, 34882, 34884, 34886, 34889, 34892, 34894, 34897, 34899, 34902, 34904, 34906, 34911, 34914, 33738, 34834, 32427, 34837, 32428, 34840, 34842, 34919, 33746, 34925, 34929, 34852, 34860, 34938, 33767, 33681, 34866, 34868, 34870, 34872, 34877, 34907, 34955, 33785, 34916, 34947, 34933, 34931, 34945, 34951, 34933, 34931, 34945, 34949, 34951, 34943, 34941, 34945, 34949, 34947, 34951, 34958, 34960, 34962, 34964, 34966, 34968, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34093, 34195, 34315, 34328, 34335, 34360, 34386, 34389, 34502, 34549, 34629, 14086, 14087, 35139, 35154, 33824, 14092, 14093, 35159, 14095, 14096, 14097, 35139, 35154, 33825, 14102, 14103, 35159, 14105, 34693, 32523, 32526, 34978, 32523, 32526, 34981, 14495, 32536, 32537, 14498, 33842, 34055, 14501, 34058, 32777, 14504, 35039, 14506, 14507, 34983, 33849, 14510, 14511, 14512, 14513, 34986, 33859, 34988, 14517, 14518, 14519, 34991, 33876, 34993, 14523, 33889, 14525, 33892, 14527, 14528, 34997, 34998, 34999, 35001, 35003, 35005, 14535, 32623, 14540, 14541, 35139, 35007, 33928, 14546, 14547, 14548, 35159, 14550, 14551, 35139, 35154, 33936, 14556, 14557, 35159, 14559, 35009, 14561, 14562, 33945, 14564, 14565, 14566, 14567, 34467, 14569, 35012, 14571, 35013, 14573, 14574, 14575, 34467, 14577, 35015, 32685, 14580, 33979, 33982, 14583, 14584, 33988, 33991, 14587, 34700, 33995, 35021, 34002, 34005, 34008, 35026, 34015, 34018, 35087, 35087, 14613, 34025, 14615, 34030, 34033, 14618, 14619, 14620, 35033, 14622, 14623, 14624, 35034, 14626, 34052, 34055, 14629, 34058, 32777, 14632, 35039, 14634, 14635, 35041, 34076, 14638, 14639, 35049, 34101, 35051, 14643, 34080, 34082, 34085, 14647, 34088, 14650, 14651, 14652, 14653, 35049, 34101, 35051, 14657, 34114, 14659, 34118, 35055, 34122, 14663, 34126, 14665, 34130, 35059, 34137, 34140, 14670, 14671, 35063, 35064, 34153, 14675, 14676, 35066, 35067, 35068, 14680, 14681, 14682, 14683, 14684, 14685, 35069, 14687, 14688, 14689, 34187, 14691, 34196, 35073, 14695, 14696, 14697, 14698, 14699, 34212, 14701, 34217, 34220, 14704, 14705, 14706, 35077, 14708, 14709, 14710, 14711, 14712, 35079, 14714, 34249, 14716, 14717, 14718, 14719, 14720, 14721, 14722, 35082, 14724, 34270, 35084, 35085, 14728, 34279, 35087, 35089, 35090, 34292, 34294, 14735, 35093, 14737, 35095, 34306, 14740, 35099, 34318, 34321, 14746, 14748, 34365, 14750, 35115, 34374, 14753, 35118, 35106, 35109, 34351, 14760, 34363, 14763, 34365, 14765, 35115, 34374, 14768, 35118, 35108, 35109, 34351, 14775, 34363, 14778, 34365, 14780, 35115, 34374, 14783, 35118, 35122, 14788, 35124, 35125, 34404, 14792, 34409, 14794, 35129, 35132, 35131, 14798, 14799, 35133, 35134, 35137, 35136, 14804, 14805, 35138, 35139, 35141, 14809, 14810, 14811, 34455, 14813, 33224, 14815, 34464, 34467, 14818, 14819, 35152, 35154, 35148, 14824, 35150, 14826, 14827, 35159, 14829, 14830, 14831, 35152, 35154, 14835, 35157, 35156, 34511, 35159, 14840, 14841, 14842, 35160, 35161, 14845, 34531, 14847, 14848, 35163, 34541, 34543, 35167, 35169, 35170, 35172, 35174, 35176, 14859, 14860, 34576, 34579, 14863, 14864, 34585, 14866, 14867, 14868, 34593, 33373, 14871, 14872, 14873, 35183, 35182, 34607, 35185, 34612, 35188, 35187, 34620, 35190, 35194, 35192, 34635, 35196, 34641, 14889, 34646, 35200, 14892, 14893, 14894, 35204, 35202, 14897, 35205, 34667, 34714, 34735, 34755, 34801, 34818, 15421, 15422, 15423, 35208, 35209, 15426, 15435, 15436, 15437, 35221, 15439, 35222, 15594, 15595, 15638, 35270, 15641, 15642, 35391, 34716, 35396, 35397, 35399, 34728, 35401, 35403, 35404, 35405, 35406, 35407, 35408, 35410, 15831, 35412, 15833, 35413, 15835, 34771, 15837, 15838, 34778, 35416, 35418, 35417, 15843, 15844, 15845, 15846, 34796, 35421, 15850, 15851, 15852, 35422, 35425, 15856, 15857, 34827, 35428, 34895, 15996, 15997, 15998, 15999, 16000, 16001, 35438, 34847, 35440, 16022, 34854, 34857, 16025, 16294, 34863, 16296, 16297, 16298, 16299, 34874, 16301, 35464, 35466, 34887, 34890, 35472, 35473, 35474, 16310, 34909, 34912, 35478, 34923, 16407, 16408, 35485, 35486, 35488, 34923, 16425, 16426, 16427, 16428, 35488, 35491, 16437, 16438, 16439, 16440, 16441, 35491, 35492, 16651, 16652, 16653, 16654, 16655, 16656, 34953, 35501, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35564, 14088, 14089, 35147, 14091, 14094, 35573, 14098, 14099, 35147, 14101, 14104, 14489, 14490, 14491, 14492, 14493, 14494, 14496, 14497, 14499, 14500, 14502, 14503, 14505, 14508, 14509, 35606, 14514, 14515, 14516, 35612, 14520, 14521, 14522, 14524, 14526, 14529, 14530, 14531, 14532, 14533, 14534, 14539, 35631, 14542, 14543, 35147, 14545, 14549, 35640, 14552, 14553, 35147, 14555, 14558, 14560, 14563, 14568, 14570, 14572, 14576, 14578, 14579, 14581, 14582, 14585, 14586, 14603, 14604, 14605, 14606, 14607, 14608, 14609, 14610, 14611, 14612, 14614, 14616, 14617, 14621, 14625, 14627, 14628, 14630, 14631, 14633, 14636, 14637, 35713, 14640, 14641, 14642, 14644, 14645, 14646, 14648, 34090, 35726, 14654, 14655, 14656, 14658, 14660, 14661, 14662, 14664, 14666, 14667, 14668, 14669, 14672, 14673, 14674, 14677, 14678, 14679, 35754, 14686, 14690, 34192, 14693, 14694, 14700, 14702, 14703, 14707, 35782, 35784, 14713, 14715, 14723, 14725, 14726, 14727, 14729, 14730, 14731, 14732, 14733, 14734, 14736, 14738, 14739, 35097, 14742, 14743, 14744, 35102, 35104, 14749, 14751, 14752, 14754, 35119, 35559, 14757, 14758, 14759, 35111, 14762, 14764, 14766, 14767, 14769, 35119, 35559, 14772, 14773, 14774, 35111, 14777, 14779, 14781, 14782, 14784, 35119, 35559, 14787, 14789, 14790, 14791, 14793, 14795, 14796, 14797, 35860, 14800, 14801, 14802, 14803, 35866, 14806, 14807, 14808, 14812, 14814, 14816, 14817, 35880, 14820, 14821, 35147, 14823, 14825, 14828, 35891, 14832, 14833, 34499, 14836, 14837, 14838, 14839, 14843, 14844, 14846, 14849, 14850, 14851, 34546, 14853, 14854, 14855, 14856, 14857, 14858, 14861, 14862, 14865, 14869, 14870, 14874, 14875, 14876, 14877, 14878, 14879, 14880, 14881, 14882, 34626, 14884, 14885, 14886, 14887, 14888, 14890, 14891, 14895, 14896, 14898, 14899, 15424, 15425, 15438, 15440, 35223, 35599, 35603, 35789, 35769, 35767, 35791, 35649, 35652, 35654, 35661, 35876, 15639, 35676, 35979, 35757, 35755, 35769, 35767, 35761, 35769, 35767, 35693, 35697, 35708, 35723, 35757, 35755, 35761, 35769, 35767, 35777, 35791, 35789, 35793, 35900, 35900, 35906, 35924, 35930, 35950, 15814, 35957, 15816, 15817, 15818, 15819, 15820, 15821, 35958, 15823, 15824, 15825, 15826, 15827, 15828, 35959, 15830, 15832, 15834, 15836, 15839, 15840, 15841, 15842, 15847, 15848, 35960, 36013, 15853, 35423, 15855, 36018, 15858, 15859, 16002, 16003, 16004, 16023, 16024, 35974, 35976, 36000, 36007, 16295, 16300, 16302, 16303, 16304, 16305, 36021, 16307, 16308, 16309, 16311, 16384, 16385, 36039, 36026, 36024, 36022, 36039, 36037, 16406, 16409, 16410, 16415, 16424, 16429, 16430, 36068, 16442, 16443, 36039, 36037, 36075, 36078, 16657, 16658, 36056, 36056, 36070, 28, 29, 30, 31, 14090, 35571, 14100, 35580, 36116, 36118, 36125, 36129, 36133, 35628, 14544, 36145, 14554, 35647, 36179, 36181, 36188, 14649, 36197, 36208, 36211, 14692, 14741, 14745, 14747, 14755, 14756, 14761, 35829, 14770, 14771, 14776, 35841, 14785, 14786, 36282, 36287, 14822, 35889, 14834, 36308, 35899, 14852, 35917, 36330, 36335, 14883, 36340, 36347, 36096, 36100, 36102, 36106, 36353, 15441, 36109, 36108, 36110, 36112, 36111, 36113, 36115, 36114, 35597, 15577, 36121, 15579, 36126, 36130, 36131, 36219, 15586, 36132, 15589, 15590, 15591, 36135, 36139, 36140, 36144, 36146, 36150, 36303, 35659, 35657, 15611, 35874, 15613, 35650, 36314, 15616, 36296, 36291, 36303, 35659, 35657, 15627, 35874, 35872, 36314, 15631, 35665, 36159, 35668, 36161, 35672, 36163, 15640, 36204, 36206, 36207, 36210, 36213, 15650, 15651, 36216, 15654, 15655, 36219, 36164, 36166, 36168, 36170, 36207, 36210, 36215, 15666, 36216, 15669, 15670, 36219, 36232, 36232, 35687, 35689, 36176, 15677, 36177, 15679, 36178, 35706, 15684, 36184, 36189, 36190, 36192, 15691, 36198, 36199, 36200, 36202, 36203, 36204, 36206, 36207, 36210, 36213, 15705, 15706, 36215, 15708, 36216, 15711, 15712, 36219, 35771, 35773, 36222, 15717, 36223, 36224, 36227, 36226, 15722, 15723, 15724, 36228, 36229, 36231, 36232, 36234, 36236, 35809, 35807, 36240, 36243, 36247, 36248, 35822, 36253, 36255, 36258, 36259, 35834, 36264, 36266, 36269, 36270, 35846, 36275, 36276, 36279, 36278, 36283, 36288, 36296, 36291, 36303, 15772, 35871, 35874, 35872, 36314, 35876, 36296, 36301, 36300, 36303, 15787, 36311, 35904, 36314, 15791, 36318, 36320, 35918, 36325, 35922, 15799, 35926, 15801, 36328, 36332, 36342, 35946, 15810, 36345, 36348, 15815, 15822, 15829, 35998, 36418, 15849, 36423, 15854, 36409, 36407, 36405, 36351, 36409, 36407, 36405, 36412, 36411, 16130, 16192, 36397, 36399, 36401, 36407, 36405, 36412, 36411, 16284, 36415, 16287, 36009, 36425, 36427, 16306, 36031, 16387, 16388, 16389, 16390, 36439, 36440, 36433, 36446, 36050, 36031, 16398, 16399, 36439, 36440, 36433, 36446, 36050, 36061, 36463, 36031, 36433, 36035, 16643, 16644, 36439, 36440, 36442, 36446, 36050, 16721, 36449, 36458, 16738, 36457, 36458, 36470, 36460, 36470, 16777, 36464, 36465, 36470, 36469, 36471, 28, 29, 30, 31, 15427, 36098, 15429, 35569, 15431, 36104, 15433, 35578, 15566, 15567, 15568, 15569, 15570, 15571, 15572, 15573, 36485, 36484, 15576, 15578, 36123, 15581, 36127, 15583, 15584, 15585, 15587, 36488, 36554, 15592, 36137, 15596, 15597, 36142, 15599, 35636, 15601, 36148, 15603, 35645, 15605, 36305, 35894, 36309, 15609, 15610, 15612, 15614, 15615, 15617, 36298, 15619, 35887, 15621, 36305, 35894, 36309, 15625, 15626, 15628, 15629, 15630, 15632, 15633, 15634, 15635, 15636, 15637, 36587, 15643, 15644, 15645, 36499, 15647, 36500, 15649, 36594, 36501, 15653, 15656, 36597, 15657, 15658, 15659, 15660, 15661, 36499, 15663, 36500, 15665, 36501, 15668, 15671, 36609, 15672, 15673, 15674, 15675, 15676, 15678, 15680, 36495, 36494, 15683, 15685, 36186, 15687, 15688, 15689, 36193, 36195, 15693, 15694, 15695, 15696, 15697, 15698, 15699, 15700, 36499, 15702, 36500, 15704, 36638, 15707, 36501, 15710, 15713, 36643, 15714, 15715, 15716, 15718, 15719, 15720, 15721, 36654, 15725, 15726, 15727, 15728, 15729, 15730, 15731, 15732, 15733, 36502, 15735, 36504, 36503, 15738, 15739, 36505, 15741, 15742, 15743, 36507, 15745, 15746, 36509, 15748, 15749, 15750, 36511, 15752, 15753, 36513, 15755, 15756, 15757, 15758, 15759, 36280, 15761, 36285, 15763, 15764, 36298, 15766, 35887, 15768, 36305, 35894, 36309, 15773, 15774, 15775, 15776, 15777, 15778, 36298, 15780, 15781, 35887, 15783, 36305, 35894, 36309, 15788, 15789, 15790, 36316, 15793, 15794, 36322, 15796, 15797, 15798, 15800, 15802, 36524, 15804, 36525, 36337, 36527, 15808, 15809, 15811, 36528, 15813, 36723, 15975, 15976, 15977, 36719, 15979, 15984, 15985, 15986, 36719, 36533, 15989, 16091, 36395, 16275, 16276, 16277, 36409, 16279, 16280, 36719, 16282, 16283, 36721, 16286, 36722, 16289, 36724, 16292, 16293, 16386, 36753, 36755, 16391, 16392, 16393, 36750, 16395, 16396, 16397, 36763, 16400, 16401, 16402, 36750, 16404, 16405, 36062, 16435, 16436, 16642, 36775, 16645, 16646, 16647, 36750, 16649, 16650, 16722, 16723, 16739, 16740, 16751, 16753, 16764, 36770, 16778, 16779, 16873, 16874, 16875, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 15428, 15430, 15432, 15434, 36809, 36812, 36815, 15574, 15575, 15580, 15582, 15588, 15593, 15598, 15600, 15602, 15604, 15606, 15607, 15608, 36845, 36567, 36570, 15618, 15620, 15622, 15623, 15624, 36858, 36860, 36580, 15646, 15648, 15652, 36879, 15662, 15664, 15667, 36892, 15681, 15682, 15686, 15690, 15692, 15701, 15703, 15709, 36927, 36935, 36944, 15734, 15736, 15737, 15740, 15744, 15747, 15751, 15754, 36971, 15760, 15762, 15765, 15767, 15769, 15770, 15771, 36986, 36988, 15779, 36992, 15782, 15784, 15785, 15786, 36702, 15792, 15795, 37009, 15803, 15805, 15806, 15807, 37017, 15812, 15978, 37022, 15987, 37027, 15988, 36938, 36655, 36940, 36950, 36957, 36964, 36618, 36938, 36940, 36950, 36957, 36964, 36938, 36655, 36940, 36950, 36957, 36964, 36544, 36907, 36914, 36912, 36916, 36924, 36922, 36896, 36898, 36932, 36621, 36907, 36914, 36912, 36916, 36924, 36922, 36896, 36898, 36932, 36862, 37007, 37005, 36862, 37007, 36866, 36864, 36868, 36869, 36875, 36883, 36881, 36889, 36894, 36895, 36896, 36898, 36618, 36938, 36950, 36957, 36964, 36621, 36907, 36914, 36912, 36916, 36924, 36922, 36929, 36931, 36932, 36938, 36655, 36940, 36950, 36957, 36964, 36688, 36698, 37007, 37005, 16274, 16278, 16281, 37042, 16285, 16288, 37020, 16291, 37035, 37048, 37035, 37048, 37052, 16394, 16403, 37035, 37048, 37035, 37048, 37035, 37048, 16648, 37053, 37057, 37059, 37061, 37065, 37078, 37053, 37057, 37059, 37061, 37065, 37080, 37070, 37072, 37076, 37067, 37070, 37072, 37076, 37067, 16766, 37068, 37072, 37076, 37086, 37070, 37072, 37076, 37089, 28, 29, 30, 31, 37128, 36847, 36878, 36891, 37160, 36926, 37172, 36953, 36960, 36967, 37204, 36800, 36802, 36804, 36806, 37206, 16040, 16041, 16042, 36942, 36945, 16045, 16048, 36955, 16051, 36962, 36969, 37180, 37179, 16057, 16058, 16059, 36942, 36945, 16062, 16065, 36955, 16068, 36962, 36969, 37180, 37179, 16074, 16075, 16076, 36942, 36945, 16079, 16082, 36955, 16085, 36962, 36969, 37180, 37179, 16093, 37161, 16095, 37162, 37130, 37129, 16099, 16100, 16101, 36920, 36918, 16104, 16105, 16107, 16108, 16109, 37168, 16112, 37161, 37162, 16115, 37163, 16117, 16118, 16119, 36920, 36826, 16122, 16123, 16125, 16126, 16127, 37168, 36829, 36832, 36834, 36836, 36838, 36840, 37138, 37140, 36849, 36851, 36853, 37146, 37148, 37149, 36989, 37189, 36994, 37192, 16149, 36999, 37195, 37003, 37008, 16154, 16155, 37201, 37199, 37198, 37016, 37203, 36832, 36834, 36836, 36838, 36840, 37138, 37140, 36849, 36851, 36853, 37146, 37148, 37149, 36989, 37189, 36994, 37192, 16179, 36999, 37195, 37003, 37008, 16184, 16185, 16186, 37201, 37199, 37198, 37016, 37203, 16193, 16194, 36873, 36871, 16197, 16199, 16200, 36887, 36885, 16203, 16205, 16206, 36955, 36962, 16210, 16211, 16212, 16213, 16214, 16215, 16216, 16218, 37161, 37162, 16221, 37163, 16223, 16224, 16225, 36920, 36918, 16228, 16229, 16231, 16232, 16233, 37168, 16235, 16236, 16237, 36942, 36945, 16240, 16243, 36955, 16246, 36962, 36969, 37180, 37179, 36976, 36978, 36980, 37184, 16256, 37186, 36989, 37189, 36994, 37192, 16262, 36999, 37195, 37003, 37008, 16267, 16268, 37201, 37199, 37198, 37016, 37203, 37038, 37291, 37293, 37294, 16290, 16355, 37289, 16360, 16376, 37289, 16381, 16542, 37289, 16547, 16575, 37289, 16580, 16635, 37289, 16640, 37050, 16714, 37055, 16716, 16717, 16718, 37063, 16720, 37050, 16731, 37055, 16733, 16734, 16735, 37063, 16737, 16747, 16748, 37069, 16750, 16752, 16760, 16761, 37074, 16763, 16765, 16773, 16774, 37069, 16776, 16869, 16870, 37074, 16872, 37316, 37322, 37335, 37339, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 37354, 15980, 15981, 15982, 15983, 37359, 37361, 16043, 16044, 36947, 37351, 16049, 37352, 16052, 37353, 16054, 16055, 16056, 37374, 16060, 16061, 36947, 37351, 16066, 37352, 16069, 37353, 16071, 16072, 16073, 37387, 16077, 16078, 36947, 37351, 16083, 37352, 16086, 37353, 16088, 16089, 16090, 37344, 16094, 16096, 16097, 16098, 37406, 16102, 16103, 37411, 37349, 16110, 37348, 16113, 16114, 16116, 37422, 16120, 16121, 37427, 37349, 16128, 16129, 16131, 16132, 16133, 16134, 16135, 16136, 16137, 37345, 16139, 16140, 16141, 16142, 16143, 16144, 16145, 16146, 16147, 16148, 16150, 16151, 16152, 16153, 16156, 16157, 16158, 16159, 16160, 16161, 16162, 16163, 16164, 16165, 16166, 16167, 37345, 16169, 16170, 16171, 16172, 16173, 16174, 16175, 16176, 16177, 16178, 16180, 16181, 16182, 16183, 37486, 16187, 16188, 16189, 16190, 16191, 16195, 16196, 37346, 37498, 16201, 16202, 37347, 36947, 16208, 16209, 37509, 37348, 16219, 16220, 16222, 37519, 16226, 16227, 37524, 37349, 16234, 37530, 16238, 16239, 36947, 37351, 16244, 37352, 16247, 37353, 16249, 16250, 16251, 16252, 16253, 16254, 16255, 16257, 16258, 16259, 16260, 16261, 16263, 16264, 16265, 16266, 16269, 16270, 16271, 16272, 16273, 37565, 16356, 37567, 37566, 37492, 16377, 37567, 37566, 37568, 37412, 37428, 16543, 37567, 37566, 37568, 16576, 37567, 37566, 37492, 37506, 37506, 37525, 16636, 37567, 37566, 37568, 16713, 16715, 16719, 16730, 16732, 16736, 16749, 37604, 16762, 37609, 16775, 16871, 37588, 16911, 37596, 16918, 37600, 37605, 37610, 16933, 37614, 16968, 26, 27, 28, 29, 30, 31, 16046, 16047, 37643, 16050, 37645, 16053, 37649, 16063, 16064, 37655, 16067, 37657, 16070, 37661, 16080, 16081, 37667, 16084, 37669, 16087, 37673, 16092, 37676, 37678, 37681, 16106, 16111, 37419, 37691, 16124, 16138, 37455, 37719, 16168, 37484, 37747, 37752, 16198, 37756, 16204, 16207, 16217, 37516, 37768, 16230, 16241, 16242, 37777, 16245, 37779, 16248, 37783, 37557, 37798, 37700, 37698, 37696, 37706, 37704, 37708, 37712, 37710, 37450, 37715, 37721, 37727, 37725, 37723, 37739, 37737, 37479, 37742, 37749, 37803, 37632, 16358, 16359, 16361, 37700, 37698, 37696, 37706, 37635, 37633, 37708, 37712, 37710, 37450, 37715, 37721, 37807, 37637, 16379, 16380, 16382, 37802, 37638, 37639, 37650, 37651, 37662, 37663, 37700, 37698, 37696, 37706, 37704, 37708, 37712, 37710, 37450, 37715, 37721, 37727, 37725, 37723, 37739, 37737, 37479, 37742, 37749, 37802, 16507, 37414, 37688, 16514, 37430, 37761, 37773, 37700, 37698, 37696, 37706, 37704, 37708, 37712, 37710, 37450, 37715, 37721, 37727, 37725, 37723, 37742, 37749, 37813, 37802, 16545, 16546, 16548, 37700, 37698, 37696, 37706, 37704, 37708, 37712, 37710, 37450, 37715, 37721, 37727, 37725, 37723, 37733, 37731, 37735, 37739, 37737, 37479, 37742, 37749, 37817, 37802, 16578, 16579, 16581, 37765, 16589, 37527, 37761, 37773, 37761, 37765, 16606, 37761, 37773, 37765, 16618, 37527, 37772, 37773, 37786, 37784, 37546, 37791, 37789, 37552, 37794, 37800, 37824, 37802, 16638, 16639, 16641, 37828, 37829, 16909, 37830, 37831, 37832, 16916, 37833, 16921, 37834, 37835, 16926, 37836, 37837, 16931, 37838, 16966, 37839, 37841, 37843, 37847, 37849, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 37856, 37863, 37870, 37456, 37720, 37745, 37748, 37901, 37558, 37799, 16332, 16333, 16334, 37702, 16336, 16337, 16338, 16339, 16340, 16341, 16342, 16343, 16345, 16346, 16347, 37729, 16349, 16350, 16351, 16352, 16353, 16357, 37932, 37933, 16362, 16363, 16364, 37702, 16366, 16367, 16368, 16369, 16370, 16371, 16372, 16373, 16374, 16378, 37949, 37950, 16383, 16460, 16461, 37860, 37858, 37647, 16466, 16467, 37867, 37865, 37659, 16472, 16473, 37874, 37872, 37671, 16478, 16479, 16480, 37702, 16482, 16483, 16484, 16485, 16486, 16487, 16488, 16489, 16491, 16492, 16493, 37729, 16495, 16496, 16497, 16498, 16499, 16501, 37877, 37879, 37675, 37407, 37682, 16508, 37882, 16510, 37686, 37423, 37692, 16515, 16516, 16517, 37905, 37903, 37781, 16522, 16523, 16524, 37702, 16526, 16527, 16528, 16529, 16530, 16531, 16532, 16533, 16535, 16536, 16537, 37729, 16539, 16540, 16544, 38004, 38005, 16549, 16550, 16551, 37702, 16553, 16554, 16555, 16556, 16557, 16558, 16559, 16560, 16562, 16563, 16564, 37729, 16566, 16567, 16568, 16569, 16570, 16571, 16572, 16573, 16577, 38031, 38032, 37897, 16583, 37763, 37493, 37496, 37754, 37501, 16590, 16591, 16592, 37760, 37759, 37896, 37781, 16597, 37760, 37759, 37896, 37897, 16602, 37763, 37520, 37769, 16607, 16608, 37512, 37511, 37510, 37781, 37897, 16614, 37763, 37520, 37769, 16619, 16620, 16621, 37905, 37903, 37781, 16626, 16627, 16628, 16629, 16630, 16631, 16632, 16633, 16637, 38059, 38060, 16907, 16908, 16910, 16914, 16915, 16917, 16922, 16923, 16927, 16928, 16932, 16967, 16985, 16988, 16994, 17008, 28, 29, 30, 31, 38123, 16335, 38127, 38130, 38115, 38135, 16348, 38139, 38117, 38147, 16365, 38151, 38155, 38115, 16462, 16463, 38112, 16465, 16468, 16469, 38113, 16471, 16474, 16475, 38114, 16477, 38179, 16481, 38183, 38186, 38115, 38191, 16494, 38195, 38117, 16502, 16503, 16504, 16505, 16506, 16509, 16511, 16512, 16513, 16518, 16519, 38119, 16521, 38218, 16525, 38222, 38225, 38115, 38230, 16538, 38117, 38239, 16552, 38243, 38246, 38115, 38251, 16565, 38255, 38258, 38117, 16582, 16584, 16585, 16586, 16587, 16588, 16593, 16594, 16595, 16596, 16598, 16599, 16600, 16601, 16603, 16604, 16605, 16609, 16610, 16611, 16612, 16613, 16615, 16616, 16617, 16622, 16623, 38119, 16625, 38306, 38309, 38120, 37929, 38144, 37946, 38160, 38056, 38314, 37978, 37981, 38163, 38168, 38173, 38044, 38300, 38056, 38314, 37978, 37981, 38212, 38044, 38300, 38001, 38236, 38028, 38263, 38034, 38273, 38279, 38040, 38288, 38044, 38300, 38056, 38314, 38063, 38316, 38067, 38319, 38069, 38323, 38072, 38325, 38075, 38077, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38124, 16344, 38136, 16354, 38148, 38152, 16375, 16464, 38351, 16470, 38355, 16476, 38359, 38180, 16490, 38192, 16500, 38373, 38377, 16520, 38381, 38219, 16534, 38231, 16541, 38240, 16561, 38252, 16574, 38403, 38409, 38413, 38416, 38420, 38424, 16624, 38428, 16634, 38339, 38338, 38343, 38399, 16695, 16696, 38348, 16701, 16702, 38365, 38364, 38369, 38399, 16711, 16712, 16787, 38374, 16790, 38378, 16792, 16794, 16796, 16799, 38425, 16801, 38365, 38364, 38369, 38399, 16811, 16812, 16814, 38374, 16817, 38378, 16819, 16822, 38425, 16824, 38387, 38386, 38400, 38399, 16834, 16835, 38395, 38394, 38400, 38399, 16844, 16845, 16847, 38406, 38404, 16850, 16852, 16855, 38417, 16857, 16860, 38425, 16862, 38432, 38431, 16867, 16868, 16983, 16984, 16986, 16987, 16989, 16990, 16991, 16992, 16993, 17007, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38497, 38499, 38502, 38503, 38505, 38507, 38510, 38512, 38515, 38518, 38520, 38522, 38524, 38410, 38414, 38421, 38531, 38533, 16687, 16688, 38496, 16691, 16692, 38498, 16697, 38501, 38500, 16703, 16704, 38509, 16707, 16708, 38511, 38371, 16788, 38376, 16791, 38423, 16800, 16803, 16804, 38509, 16807, 16808, 38511, 38371, 16815, 38376, 16818, 38423, 16823, 16826, 16827, 38517, 16830, 16831, 38519, 16836, 16837, 38521, 16840, 16841, 38523, 38402, 16848, 16849, 38415, 16856, 38423, 16861, 16864, 16865, 38538, 38541, 38547, 38598, 38563, 38577, 38583, 38598, 38601, 38603, 38608, 38606, 38604, 38609, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 16689, 38643, 38132, 16693, 38646, 38141, 16698, 16699, 38157, 16705, 38652, 38188, 16709, 38655, 38197, 16786, 38658, 16789, 38660, 38627, 38628, 38629, 16798, 38662, 38640, 16805, 38664, 38188, 16809, 38667, 38197, 16813, 38670, 16816, 38672, 38632, 16821, 38674, 38640, 16828, 38676, 38227, 16832, 38679, 38233, 16838, 38682, 38248, 16842, 38685, 38260, 16846, 38688, 38637, 38638, 16854, 38691, 38639, 16859, 38693, 38640, 38695, 38311, 16891, 16894, 16902, 16906, 16945, 16953, 16956, 16965, 17012, 17013, 38705, 17015, 38704, 17020, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38720, 16690, 38723, 16694, 38726, 16700, 38729, 16706, 38732, 16710, 16793, 16795, 16797, 16802, 38745, 16806, 38748, 16810, 16820, 16825, 38759, 16829, 38762, 16833, 38765, 16839, 38768, 16843, 38689, 16851, 16853, 16858, 16863, 16866, 38737, 38735, 38742, 38753, 38751, 38756, 38737, 38735, 38742, 38753, 38751, 38756, 38775, 38778, 17014, 17016, 38792, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38727, 16882, 16883, 38555, 38554, 38553, 16887, 38558, 38818, 38816, 38842, 16895, 16896, 38569, 16898, 38572, 38824, 38822, 38771, 38588, 38781, 16936, 16937, 38555, 38554, 38553, 16941, 38558, 38832, 38830, 16946, 16947, 38569, 16949, 38572, 38838, 38836, 38842, 38840, 38771, 38588, 38589, 16960, 38592, 16962, 38595, 38781, 38794, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38882, 16884, 16885, 16886, 16888, 16889, 16890, 16892, 38880, 38892, 16897, 16899, 16900, 16901, 16903, 16904, 16905, 38902, 16938, 16939, 16940, 16942, 16943, 16944, 38911, 16948, 16950, 16951, 16952, 16954, 16955, 16957, 16958, 16959, 16961, 16963, 16964, 38927, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 38946, 38950, 16893, 38957, 38963, 38967, 38972, 38974, 38886, 38894, 38953, 38924, 38922, 38922, 38958, 38960, 38906, 38913, 38968, 38924, 38922, 38922, 38975, 38980, 38865, 25, 26, 27, 28, 29, 30, 31, 38947, 39010, 38964, 16971, 39009, 16975, 16976, 39011, 16978, 16979, 16980, 16981, 16982, 16995, 39013, 16998, 16999, 39015, 39014, 17002, 17003, 17004, 17005, 17006, 24, 25, 26, 27, 28, 29, 30, 31, 38944, 39041, 16974, 39046, 16977, 39049, 39051, 38961, 16997, 39056, 17000, 17001, 39060, 39062, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 16972, 16973, 39078, 16996, 39083, 39085, 39075, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 39104, 39074, 39107, 39106, 17010, 39109, 39081, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 17009, 39136, 17017, 17018, 39138, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 17011, 39140, 17019, 39171, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 39200, 39202, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 39233, 39232, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 17021, 17022, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 39297, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31}; bool h_Op[]= { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; #define THREADS_PER_BLOCK 32 #define BLOCKS_PER_GRID 1 #define SIZE_OF_IN 17024 #define SIZE_OF_AC 22336 __device__ void ac(float *A, const int *B, const int *C, const bool *Op, int n_iter) { int i= blockDim.x * blockIdx.x + threadIdx.x; __shared__ float R[1230*THREADS_PER_BLOCK]; const int t= THREADS_PER_BLOCK; __shared__ float final; final=0; R[i + 0*t] = A[i + 0*t]; R[i + 1*t] = A[i + 1*t]; R[i + 2*t] = A[i + 2*t]; R[i + 3*t] = A[i + 3*t]; R[i + 4*t] = A[i + 4*t]; R[i + 5*t] = A[i + 5*t]; R[i + 6*t] = A[i + 6*t]; R[i + 7*t] = A[i + 7*t]; R[i + 8*t] = A[i + 8*t]; R[i + 9*t] = A[i + 9*t]; R[i + 10*t] = A[i + 10*t]; R[i + 11*t] = A[i + 11*t]; R[i + 12*t] = A[i + 12*t]; R[i + 13*t] = A[i + 13*t]; R[i + 14*t] = A[i + 14*t]; R[i + 15*t] = A[i + 15*t]; R[i + 16*t] = A[i + 16*t]; R[i + 17*t] = A[i + 17*t]; R[i + 18*t] = A[i + 18*t]; R[i + 19*t] = A[i + 19*t]; R[i + 20*t] = A[i + 20*t]; R[i + 21*t] = A[i + 21*t]; R[i + 22*t] = A[i + 22*t]; R[i + 23*t] = A[i + 23*t]; R[i + 24*t] = A[i + 24*t]; R[i + 25*t] = A[i + 25*t]; R[i + 26*t] = A[i + 26*t]; R[i + 27*t] = A[i + 27*t]; R[i + 28*t] = A[i + 28*t]; R[i + 29*t] = A[i + 29*t]; R[i + 30*t] = A[i + 30*t]; R[i + 31*t] = A[i + 31*t]; R[i + 32*t] = A[i + 32*t]; R[i + 33*t] = A[i + 33*t]; R[i + 34*t] = A[i + 34*t]; R[i + 35*t] = A[i + 35*t]; R[i + 36*t] = A[i + 36*t]; R[i + 37*t] = A[i + 37*t]; R[i + 38*t] = A[i + 38*t]; R[i + 39*t] = A[i + 39*t]; R[i + 40*t] = A[i + 40*t]; R[i + 41*t] = A[i + 41*t]; R[i + 42*t] = A[i + 42*t]; R[i + 43*t] = A[i + 43*t]; R[i + 44*t] = A[i + 44*t]; R[i + 45*t] = A[i + 45*t]; R[i + 46*t] = A[i + 46*t]; R[i + 47*t] = A[i + 47*t]; R[i + 48*t] = A[i + 48*t]; R[i + 49*t] = A[i + 49*t]; R[i + 50*t] = A[i + 50*t]; R[i + 51*t] = A[i + 51*t]; R[i + 52*t] = A[i + 52*t]; R[i + 53*t] = A[i + 53*t]; R[i + 54*t] = A[i + 54*t]; R[i + 55*t] = A[i + 55*t]; R[i + 56*t] = A[i + 56*t]; R[i + 57*t] = A[i + 57*t]; R[i + 58*t] = A[i + 58*t]; R[i + 59*t] = A[i + 59*t]; R[i + 60*t] = A[i + 60*t]; R[i + 61*t] = A[i + 61*t]; R[i + 62*t] = A[i + 62*t]; R[i + 63*t] = A[i + 63*t]; R[i + 64*t] = A[i + 64*t]; R[i + 65*t] = A[i + 65*t]; R[i + 66*t] = A[i + 66*t]; R[i + 67*t] = A[i + 67*t]; R[i + 68*t] = A[i + 68*t]; R[i + 69*t] = A[i + 69*t]; R[i + 70*t] = A[i + 70*t]; R[i + 71*t] = A[i + 71*t]; R[i + 72*t] = A[i + 72*t]; R[i + 73*t] = A[i + 73*t]; R[i + 74*t] = A[i + 74*t]; R[i + 75*t] = A[i + 75*t]; R[i + 76*t] = A[i + 76*t]; R[i + 77*t] = A[i + 77*t]; R[i + 78*t] = A[i + 78*t]; R[i + 79*t] = A[i + 79*t]; R[i + 80*t] = A[i + 80*t]; R[i + 81*t] = A[i + 81*t]; R[i + 82*t] = A[i + 82*t]; R[i + 83*t] = A[i + 83*t]; R[i + 84*t] = A[i + 84*t]; R[i + 85*t] = A[i + 85*t]; R[i + 86*t] = A[i + 86*t]; R[i + 87*t] = A[i + 87*t]; R[i + 88*t] = A[i + 88*t]; R[i + 89*t] = A[i + 89*t]; R[i + 90*t] = A[i + 90*t]; R[i + 91*t] = A[i + 91*t]; R[i + 92*t] = A[i + 92*t]; R[i + 93*t] = A[i + 93*t]; R[i + 94*t] = A[i + 94*t]; R[i + 95*t] = A[i + 95*t]; R[i + 96*t] = A[i + 96*t]; R[i + 97*t] = A[i + 97*t]; R[i + 98*t] = A[i + 98*t]; R[i + 99*t] = A[i + 99*t]; R[i + 100*t] = A[i + 100*t]; R[i + 101*t] = A[i + 101*t]; R[i + 102*t] = A[i + 102*t]; R[i + 103*t] = A[i + 103*t]; R[i + 104*t] = A[i + 104*t]; R[i + 105*t] = A[i + 105*t]; R[i + 106*t] = A[i + 106*t]; R[i + 107*t] = A[i + 107*t]; R[i + 108*t] = A[i + 108*t]; R[i + 109*t] = A[i + 109*t]; R[i + 110*t] = A[i + 110*t]; R[i + 111*t] = A[i + 111*t]; R[i + 112*t] = A[i + 112*t]; R[i + 113*t] = A[i + 113*t]; R[i + 114*t] = A[i + 114*t]; R[i + 115*t] = A[i + 115*t]; R[i + 116*t] = A[i + 116*t]; R[i + 117*t] = A[i + 117*t]; R[i + 118*t] = A[i + 118*t]; R[i + 119*t] = A[i + 119*t]; R[i + 120*t] = A[i + 120*t]; R[i + 121*t] = A[i + 121*t]; R[i + 122*t] = A[i + 122*t]; R[i + 123*t] = A[i + 123*t]; R[i + 124*t] = A[i + 124*t]; R[i + 125*t] = A[i + 125*t]; R[i + 126*t] = A[i + 126*t]; R[i + 127*t] = A[i + 127*t]; R[i + 128*t] = A[i + 128*t]; R[i + 129*t] = A[i + 129*t]; R[i + 130*t] = A[i + 130*t]; R[i + 131*t] = A[i + 131*t]; R[i + 132*t] = A[i + 132*t]; R[i + 133*t] = A[i + 133*t]; R[i + 134*t] = A[i + 134*t]; R[i + 135*t] = A[i + 135*t]; R[i + 136*t] = A[i + 136*t]; R[i + 137*t] = A[i + 137*t]; R[i + 138*t] = A[i + 138*t]; R[i + 139*t] = A[i + 139*t]; R[i + 140*t] = A[i + 140*t]; R[i + 141*t] = A[i + 141*t]; R[i + 142*t] = A[i + 142*t]; R[i + 143*t] = A[i + 143*t]; R[i + 144*t] = A[i + 144*t]; R[i + 145*t] = A[i + 145*t]; R[i + 146*t] = A[i + 146*t]; R[i + 147*t] = A[i + 147*t]; R[i + 148*t] = A[i + 148*t]; R[i + 149*t] = A[i + 149*t]; R[i + 150*t] = A[i + 150*t]; R[i + 151*t] = A[i + 151*t]; R[i + 152*t] = A[i + 152*t]; R[i + 153*t] = A[i + 153*t]; R[i + 154*t] = A[i + 154*t]; R[i + 155*t] = A[i + 155*t]; R[i + 156*t] = A[i + 156*t]; R[i + 157*t] = A[i + 157*t]; R[i + 158*t] = A[i + 158*t]; R[i + 159*t] = A[i + 159*t]; R[i + 160*t] = A[i + 160*t]; R[i + 161*t] = A[i + 161*t]; R[i + 162*t] = A[i + 162*t]; R[i + 163*t] = A[i + 163*t]; R[i + 164*t] = A[i + 164*t]; R[i + 165*t] = A[i + 165*t]; R[i + 166*t] = A[i + 166*t]; R[i + 167*t] = A[i + 167*t]; R[i + 168*t] = A[i + 168*t]; R[i + 169*t] = A[i + 169*t]; R[i + 170*t] = A[i + 170*t]; R[i + 171*t] = A[i + 171*t]; R[i + 172*t] = A[i + 172*t]; R[i + 173*t] = A[i + 173*t]; R[i + 174*t] = A[i + 174*t]; R[i + 175*t] = A[i + 175*t]; R[i + 176*t] = A[i + 176*t]; R[i + 177*t] = A[i + 177*t]; R[i + 178*t] = A[i + 178*t]; R[i + 179*t] = A[i + 179*t]; R[i + 180*t] = A[i + 180*t]; R[i + 181*t] = A[i + 181*t]; R[i + 182*t] = A[i + 182*t]; R[i + 183*t] = A[i + 183*t]; R[i + 184*t] = A[i + 184*t]; R[i + 185*t] = A[i + 185*t]; R[i + 186*t] = A[i + 186*t]; R[i + 187*t] = A[i + 187*t]; R[i + 188*t] = A[i + 188*t]; R[i + 189*t] = A[i + 189*t]; R[i + 190*t] = A[i + 190*t]; R[i + 191*t] = A[i + 191*t]; R[i + 192*t] = A[i + 192*t]; R[i + 193*t] = A[i + 193*t]; R[i + 194*t] = A[i + 194*t]; R[i + 195*t] = A[i + 195*t]; R[i + 196*t] = A[i + 196*t]; R[i + 197*t] = A[i + 197*t]; R[i + 198*t] = A[i + 198*t]; R[i + 199*t] = A[i + 199*t]; R[i + 200*t] = A[i + 200*t]; R[i + 201*t] = A[i + 201*t]; R[i + 202*t] = A[i + 202*t]; R[i + 203*t] = A[i + 203*t]; R[i + 204*t] = A[i + 204*t]; R[i + 205*t] = A[i + 205*t]; R[i + 206*t] = A[i + 206*t]; R[i + 207*t] = A[i + 207*t]; R[i + 208*t] = A[i + 208*t]; R[i + 209*t] = A[i + 209*t]; R[i + 210*t] = A[i + 210*t]; R[i + 211*t] = A[i + 211*t]; R[i + 212*t] = A[i + 212*t]; R[i + 213*t] = A[i + 213*t]; R[i + 214*t] = A[i + 214*t]; R[i + 215*t] = A[i + 215*t]; R[i + 216*t] = A[i + 216*t]; R[i + 217*t] = A[i + 217*t]; R[i + 218*t] = A[i + 218*t]; R[i + 219*t] = A[i + 219*t]; R[i + 220*t] = A[i + 220*t]; R[i + 221*t] = A[i + 221*t]; R[i + 222*t] = A[i + 222*t]; R[i + 223*t] = A[i + 223*t]; R[i + 224*t] = A[i + 224*t]; R[i + 225*t] = A[i + 225*t]; R[i + 226*t] = A[i + 226*t]; R[i + 227*t] = A[i + 227*t]; R[i + 228*t] = A[i + 228*t]; R[i + 229*t] = A[i + 229*t]; R[i + 230*t] = A[i + 230*t]; R[i + 231*t] = A[i + 231*t]; R[i + 232*t] = A[i + 232*t]; R[i + 233*t] = A[i + 233*t]; R[i + 234*t] = A[i + 234*t]; R[i + 235*t] = A[i + 235*t]; R[i + 236*t] = A[i + 236*t]; R[i + 237*t] = A[i + 237*t]; R[i + 238*t] = A[i + 238*t]; R[i + 239*t] = A[i + 239*t]; R[i + 240*t] = A[i + 240*t]; R[i + 241*t] = A[i + 241*t]; R[i + 242*t] = A[i + 242*t]; R[i + 243*t] = A[i + 243*t]; R[i + 244*t] = A[i + 244*t]; R[i + 245*t] = A[i + 245*t]; R[i + 246*t] = A[i + 246*t]; R[i + 247*t] = A[i + 247*t]; R[i + 248*t] = A[i + 248*t]; R[i + 249*t] = A[i + 249*t]; R[i + 250*t] = A[i + 250*t]; R[i + 251*t] = A[i + 251*t]; R[i + 252*t] = A[i + 252*t]; R[i + 253*t] = A[i + 253*t]; R[i + 254*t] = A[i + 254*t]; R[i + 255*t] = A[i + 255*t]; R[i + 256*t] = A[i + 256*t]; R[i + 257*t] = A[i + 257*t]; R[i + 258*t] = A[i + 258*t]; R[i + 259*t] = A[i + 259*t]; R[i + 260*t] = A[i + 260*t]; R[i + 261*t] = A[i + 261*t]; R[i + 262*t] = A[i + 262*t]; R[i + 263*t] = A[i + 263*t]; R[i + 264*t] = A[i + 264*t]; R[i + 265*t] = A[i + 265*t]; R[i + 266*t] = A[i + 266*t]; R[i + 267*t] = A[i + 267*t]; R[i + 268*t] = A[i + 268*t]; R[i + 269*t] = A[i + 269*t]; R[i + 270*t] = A[i + 270*t]; R[i + 271*t] = A[i + 271*t]; R[i + 272*t] = A[i + 272*t]; R[i + 273*t] = A[i + 273*t]; R[i + 274*t] = A[i + 274*t]; R[i + 275*t] = A[i + 275*t]; R[i + 276*t] = A[i + 276*t]; R[i + 277*t] = A[i + 277*t]; R[i + 278*t] = A[i + 278*t]; R[i + 279*t] = A[i + 279*t]; R[i + 280*t] = A[i + 280*t]; R[i + 281*t] = A[i + 281*t]; R[i + 282*t] = A[i + 282*t]; R[i + 283*t] = A[i + 283*t]; R[i + 284*t] = A[i + 284*t]; R[i + 285*t] = A[i + 285*t]; R[i + 286*t] = A[i + 286*t]; R[i + 287*t] = A[i + 287*t]; R[i + 288*t] = A[i + 288*t]; R[i + 289*t] = A[i + 289*t]; R[i + 290*t] = A[i + 290*t]; R[i + 291*t] = A[i + 291*t]; R[i + 292*t] = A[i + 292*t]; R[i + 293*t] = A[i + 293*t]; R[i + 294*t] = A[i + 294*t]; R[i + 295*t] = A[i + 295*t]; R[i + 296*t] = A[i + 296*t]; R[i + 297*t] = A[i + 297*t]; R[i + 298*t] = A[i + 298*t]; R[i + 299*t] = A[i + 299*t]; R[i + 300*t] = A[i + 300*t]; R[i + 301*t] = A[i + 301*t]; R[i + 302*t] = A[i + 302*t]; R[i + 303*t] = A[i + 303*t]; R[i + 304*t] = A[i + 304*t]; R[i + 305*t] = A[i + 305*t]; R[i + 306*t] = A[i + 306*t]; R[i + 307*t] = A[i + 307*t]; R[i + 308*t] = A[i + 308*t]; R[i + 309*t] = A[i + 309*t]; R[i + 310*t] = A[i + 310*t]; R[i + 311*t] = A[i + 311*t]; R[i + 312*t] = A[i + 312*t]; R[i + 313*t] = A[i + 313*t]; R[i + 314*t] = A[i + 314*t]; R[i + 315*t] = A[i + 315*t]; R[i + 316*t] = A[i + 316*t]; R[i + 317*t] = A[i + 317*t]; R[i + 318*t] = A[i + 318*t]; R[i + 319*t] = A[i + 319*t]; R[i + 320*t] = A[i + 320*t]; R[i + 321*t] = A[i + 321*t]; R[i + 322*t] = A[i + 322*t]; R[i + 323*t] = A[i + 323*t]; R[i + 324*t] = A[i + 324*t]; R[i + 325*t] = A[i + 325*t]; R[i + 326*t] = A[i + 326*t]; R[i + 327*t] = A[i + 327*t]; R[i + 328*t] = A[i + 328*t]; R[i + 329*t] = A[i + 329*t]; R[i + 330*t] = A[i + 330*t]; R[i + 331*t] = A[i + 331*t]; R[i + 332*t] = A[i + 332*t]; R[i + 333*t] = A[i + 333*t]; R[i + 334*t] = A[i + 334*t]; R[i + 335*t] = A[i + 335*t]; R[i + 336*t] = A[i + 336*t]; R[i + 337*t] = A[i + 337*t]; R[i + 338*t] = A[i + 338*t]; R[i + 339*t] = A[i + 339*t]; R[i + 340*t] = A[i + 340*t]; R[i + 341*t] = A[i + 341*t]; R[i + 342*t] = A[i + 342*t]; R[i + 343*t] = A[i + 343*t]; R[i + 344*t] = A[i + 344*t]; R[i + 345*t] = A[i + 345*t]; R[i + 346*t] = A[i + 346*t]; R[i + 347*t] = A[i + 347*t]; R[i + 348*t] = A[i + 348*t]; R[i + 349*t] = A[i + 349*t]; R[i + 350*t] = A[i + 350*t]; R[i + 351*t] = A[i + 351*t]; R[i + 352*t] = A[i + 352*t]; R[i + 353*t] = A[i + 353*t]; R[i + 354*t] = A[i + 354*t]; R[i + 355*t] = A[i + 355*t]; R[i + 356*t] = A[i + 356*t]; R[i + 357*t] = A[i + 357*t]; R[i + 358*t] = A[i + 358*t]; R[i + 359*t] = A[i + 359*t]; R[i + 360*t] = A[i + 360*t]; R[i + 361*t] = A[i + 361*t]; R[i + 362*t] = A[i + 362*t]; R[i + 363*t] = A[i + 363*t]; R[i + 364*t] = A[i + 364*t]; R[i + 365*t] = A[i + 365*t]; R[i + 366*t] = A[i + 366*t]; R[i + 367*t] = A[i + 367*t]; R[i + 368*t] = A[i + 368*t]; R[i + 369*t] = A[i + 369*t]; R[i + 370*t] = A[i + 370*t]; R[i + 371*t] = A[i + 371*t]; R[i + 372*t] = A[i + 372*t]; R[i + 373*t] = A[i + 373*t]; R[i + 374*t] = A[i + 374*t]; R[i + 375*t] = A[i + 375*t]; R[i + 376*t] = A[i + 376*t]; R[i + 377*t] = A[i + 377*t]; R[i + 378*t] = A[i + 378*t]; R[i + 379*t] = A[i + 379*t]; R[i + 380*t] = A[i + 380*t]; R[i + 381*t] = A[i + 381*t]; R[i + 382*t] = A[i + 382*t]; R[i + 383*t] = A[i + 383*t]; R[i + 384*t] = A[i + 384*t]; R[i + 385*t] = A[i + 385*t]; R[i + 386*t] = A[i + 386*t]; R[i + 387*t] = A[i + 387*t]; R[i + 388*t] = A[i + 388*t]; R[i + 389*t] = A[i + 389*t]; R[i + 390*t] = A[i + 390*t]; R[i + 391*t] = A[i + 391*t]; R[i + 392*t] = A[i + 392*t]; R[i + 393*t] = A[i + 393*t]; R[i + 394*t] = A[i + 394*t]; R[i + 395*t] = A[i + 395*t]; R[i + 396*t] = A[i + 396*t]; R[i + 397*t] = A[i + 397*t]; R[i + 398*t] = A[i + 398*t]; R[i + 399*t] = A[i + 399*t]; R[i + 400*t] = A[i + 400*t]; R[i + 401*t] = A[i + 401*t]; R[i + 402*t] = A[i + 402*t]; R[i + 403*t] = A[i + 403*t]; R[i + 404*t] = A[i + 404*t]; R[i + 405*t] = A[i + 405*t]; R[i + 406*t] = A[i + 406*t]; R[i + 407*t] = A[i + 407*t]; R[i + 408*t] = A[i + 408*t]; R[i + 409*t] = A[i + 409*t]; R[i + 410*t] = A[i + 410*t]; R[i + 411*t] = A[i + 411*t]; R[i + 412*t] = A[i + 412*t]; R[i + 413*t] = A[i + 413*t]; R[i + 414*t] = A[i + 414*t]; R[i + 415*t] = A[i + 415*t]; R[i + 416*t] = A[i + 416*t]; R[i + 417*t] = A[i + 417*t]; R[i + 418*t] = A[i + 418*t]; R[i + 419*t] = A[i + 419*t]; R[i + 420*t] = A[i + 420*t]; R[i + 421*t] = A[i + 421*t]; R[i + 422*t] = A[i + 422*t]; R[i + 423*t] = A[i + 423*t]; R[i + 424*t] = A[i + 424*t]; R[i + 425*t] = A[i + 425*t]; R[i + 426*t] = A[i + 426*t]; R[i + 427*t] = A[i + 427*t]; R[i + 428*t] = A[i + 428*t]; R[i + 429*t] = A[i + 429*t]; R[i + 430*t] = A[i + 430*t]; R[i + 431*t] = A[i + 431*t]; R[i + 432*t] = A[i + 432*t]; R[i + 433*t] = A[i + 433*t]; R[i + 434*t] = A[i + 434*t]; R[i + 435*t] = A[i + 435*t]; R[i + 436*t] = A[i + 436*t]; R[i + 437*t] = A[i + 437*t]; R[i + 438*t] = A[i + 438*t]; R[i + 439*t] = A[i + 439*t]; R[i + 440*t] = A[i + 440*t]; R[i + 441*t] = A[i + 441*t]; R[i + 442*t] = A[i + 442*t]; R[i + 443*t] = A[i + 443*t]; R[i + 444*t] = A[i + 444*t]; R[i + 445*t] = A[i + 445*t]; R[i + 446*t] = A[i + 446*t]; R[i + 447*t] = A[i + 447*t]; R[i + 448*t] = A[i + 448*t]; R[i + 449*t] = A[i + 449*t]; R[i + 450*t] = A[i + 450*t]; R[i + 451*t] = A[i + 451*t]; R[i + 452*t] = A[i + 452*t]; R[i + 453*t] = A[i + 453*t]; R[i + 454*t] = A[i + 454*t]; R[i + 455*t] = A[i + 455*t]; R[i + 456*t] = A[i + 456*t]; R[i + 457*t] = A[i + 457*t]; R[i + 458*t] = A[i + 458*t]; R[i + 459*t] = A[i + 459*t]; R[i + 460*t] = A[i + 460*t]; R[i + 461*t] = A[i + 461*t]; R[i + 462*t] = A[i + 462*t]; R[i + 463*t] = A[i + 463*t]; R[i + 464*t] = A[i + 464*t]; R[i + 465*t] = A[i + 465*t]; R[i + 466*t] = A[i + 466*t]; R[i + 467*t] = A[i + 467*t]; R[i + 468*t] = A[i + 468*t]; R[i + 469*t] = A[i + 469*t]; R[i + 470*t] = A[i + 470*t]; R[i + 471*t] = A[i + 471*t]; R[i + 472*t] = A[i + 472*t]; R[i + 473*t] = A[i + 473*t]; R[i + 474*t] = A[i + 474*t]; R[i + 475*t] = A[i + 475*t]; R[i + 476*t] = A[i + 476*t]; R[i + 477*t] = A[i + 477*t]; R[i + 478*t] = A[i + 478*t]; R[i + 479*t] = A[i + 479*t]; R[i + 480*t] = A[i + 480*t]; R[i + 481*t] = A[i + 481*t]; R[i + 482*t] = A[i + 482*t]; R[i + 483*t] = A[i + 483*t]; R[i + 484*t] = A[i + 484*t]; R[i + 485*t] = A[i + 485*t]; R[i + 486*t] = A[i + 486*t]; R[i + 487*t] = A[i + 487*t]; R[i + 488*t] = A[i + 488*t]; R[i + 489*t] = A[i + 489*t]; R[i + 490*t] = A[i + 490*t]; R[i + 491*t] = A[i + 491*t]; R[i + 492*t] = A[i + 492*t]; R[i + 493*t] = A[i + 493*t]; R[i + 494*t] = A[i + 494*t]; R[i + 495*t] = A[i + 495*t]; R[i + 496*t] = A[i + 496*t]; R[i + 497*t] = A[i + 497*t]; R[i + 498*t] = A[i + 498*t]; R[i + 499*t] = A[i + 499*t]; R[i + 500*t] = A[i + 500*t]; R[i + 501*t] = A[i + 501*t]; R[i + 502*t] = A[i + 502*t]; R[i + 503*t] = A[i + 503*t]; R[i + 504*t] = A[i + 504*t]; R[i + 505*t] = A[i + 505*t]; R[i + 506*t] = A[i + 506*t]; R[i + 507*t] = A[i + 507*t]; R[i + 508*t] = A[i + 508*t]; R[i + 509*t] = A[i + 509*t]; R[i + 510*t] = A[i + 510*t]; R[i + 511*t] = A[i + 511*t]; R[i + 512*t] = A[i + 512*t]; R[i + 513*t] = A[i + 513*t]; R[i + 514*t] = A[i + 514*t]; R[i + 515*t] = A[i + 515*t]; R[i + 516*t] = A[i + 516*t]; R[i + 517*t] = A[i + 517*t]; R[i + 518*t] = A[i + 518*t]; R[i + 519*t] = A[i + 519*t]; R[i + 520*t] = A[i + 520*t]; R[i + 521*t] = A[i + 521*t]; R[i + 522*t] = A[i + 522*t]; R[i + 523*t] = A[i + 523*t]; R[i + 524*t] = A[i + 524*t]; R[i + 525*t] = A[i + 525*t]; R[i + 526*t] = A[i + 526*t]; R[i + 527*t] = A[i + 527*t]; R[i + 528*t] = A[i + 528*t]; R[i + 529*t] = A[i + 529*t]; R[i + 530*t] = A[i + 530*t]; R[i + 531*t] = A[i + 531*t]; __syncthreads(); for (int iter=0; iter< n_iter; iter++) { R[i + 532*t] = Op[i + 0*t] ? R[B[i + 0*t]] * R[C[i + 0*t]] : R[B[i + 0*t]] + R[C[i + 0*t]]; R[i + 533*t] = Op[i + 1*t] ? R[B[i + 1*t]] * R[C[i + 1*t]] : R[B[i + 1*t]] + R[C[i + 1*t]]; R[i + 534*t] = Op[i + 2*t] ? R[B[i + 2*t]] * R[C[i + 2*t]] : R[B[i + 2*t]] + R[C[i + 2*t]]; R[i + 535*t] = Op[i + 3*t] ? R[B[i + 3*t]] * R[C[i + 3*t]] : R[B[i + 3*t]] + R[C[i + 3*t]]; R[i + 536*t] = Op[i + 4*t] ? R[B[i + 4*t]] * R[C[i + 4*t]] : R[B[i + 4*t]] + R[C[i + 4*t]]; R[i + 537*t] = Op[i + 5*t] ? R[B[i + 5*t]] * R[C[i + 5*t]] : R[B[i + 5*t]] + R[C[i + 5*t]]; R[i + 538*t] = Op[i + 6*t] ? R[B[i + 6*t]] * R[C[i + 6*t]] : R[B[i + 6*t]] + R[C[i + 6*t]]; R[i + 539*t] = Op[i + 7*t] ? R[B[i + 7*t]] * R[C[i + 7*t]] : R[B[i + 7*t]] + R[C[i + 7*t]]; R[i + 540*t] = Op[i + 8*t] ? R[B[i + 8*t]] * R[C[i + 8*t]] : R[B[i + 8*t]] + R[C[i + 8*t]]; R[i + 541*t] = Op[i + 9*t] ? R[B[i + 9*t]] * R[C[i + 9*t]] : R[B[i + 9*t]] + R[C[i + 9*t]]; R[i + 542*t] = Op[i + 10*t] ? R[B[i + 10*t]] * R[C[i + 10*t]] : R[B[i + 10*t]] + R[C[i + 10*t]]; R[i + 543*t] = Op[i + 11*t] ? R[B[i + 11*t]] * R[C[i + 11*t]] : R[B[i + 11*t]] + R[C[i + 11*t]]; R[i + 544*t] = Op[i + 12*t] ? R[B[i + 12*t]] * R[C[i + 12*t]] : R[B[i + 12*t]] + R[C[i + 12*t]]; R[i + 545*t] = Op[i + 13*t] ? R[B[i + 13*t]] * R[C[i + 13*t]] : R[B[i + 13*t]] + R[C[i + 13*t]]; R[i + 546*t] = Op[i + 14*t] ? R[B[i + 14*t]] * R[C[i + 14*t]] : R[B[i + 14*t]] + R[C[i + 14*t]]; R[i + 547*t] = Op[i + 15*t] ? R[B[i + 15*t]] * R[C[i + 15*t]] : R[B[i + 15*t]] + R[C[i + 15*t]]; R[i + 548*t] = Op[i + 16*t] ? R[B[i + 16*t]] * R[C[i + 16*t]] : R[B[i + 16*t]] + R[C[i + 16*t]]; R[i + 549*t] = Op[i + 17*t] ? R[B[i + 17*t]] * R[C[i + 17*t]] : R[B[i + 17*t]] + R[C[i + 17*t]]; R[i + 550*t] = Op[i + 18*t] ? R[B[i + 18*t]] * R[C[i + 18*t]] : R[B[i + 18*t]] + R[C[i + 18*t]]; R[i + 551*t] = Op[i + 19*t] ? R[B[i + 19*t]] * R[C[i + 19*t]] : R[B[i + 19*t]] + R[C[i + 19*t]]; R[i + 552*t] = Op[i + 20*t] ? R[B[i + 20*t]] * R[C[i + 20*t]] : R[B[i + 20*t]] + R[C[i + 20*t]]; R[i + 553*t] = Op[i + 21*t] ? R[B[i + 21*t]] * R[C[i + 21*t]] : R[B[i + 21*t]] + R[C[i + 21*t]]; R[i + 554*t] = Op[i + 22*t] ? R[B[i + 22*t]] * R[C[i + 22*t]] : R[B[i + 22*t]] + R[C[i + 22*t]]; R[i + 555*t] = Op[i + 23*t] ? R[B[i + 23*t]] * R[C[i + 23*t]] : R[B[i + 23*t]] + R[C[i + 23*t]]; R[i + 556*t] = Op[i + 24*t] ? R[B[i + 24*t]] * R[C[i + 24*t]] : R[B[i + 24*t]] + R[C[i + 24*t]]; R[i + 557*t] = Op[i + 25*t] ? R[B[i + 25*t]] * R[C[i + 25*t]] : R[B[i + 25*t]] + R[C[i + 25*t]]; R[i + 558*t] = Op[i + 26*t] ? R[B[i + 26*t]] * R[C[i + 26*t]] : R[B[i + 26*t]] + R[C[i + 26*t]]; R[i + 559*t] = Op[i + 27*t] ? R[B[i + 27*t]] * R[C[i + 27*t]] : R[B[i + 27*t]] + R[C[i + 27*t]]; R[i + 560*t] = Op[i + 28*t] ? R[B[i + 28*t]] * R[C[i + 28*t]] : R[B[i + 28*t]] + R[C[i + 28*t]]; R[i + 561*t] = Op[i + 29*t] ? R[B[i + 29*t]] * R[C[i + 29*t]] : R[B[i + 29*t]] + R[C[i + 29*t]]; R[i + 562*t] = Op[i + 30*t] ? R[B[i + 30*t]] * R[C[i + 30*t]] : R[B[i + 30*t]] + R[C[i + 30*t]]; R[i + 563*t] = Op[i + 31*t] ? R[B[i + 31*t]] * R[C[i + 31*t]] : R[B[i + 31*t]] + R[C[i + 31*t]]; R[i + 564*t] = Op[i + 32*t] ? R[B[i + 32*t]] * R[C[i + 32*t]] : R[B[i + 32*t]] + R[C[i + 32*t]]; R[i + 565*t] = Op[i + 33*t] ? R[B[i + 33*t]] * R[C[i + 33*t]] : R[B[i + 33*t]] + R[C[i + 33*t]]; R[i + 566*t] = Op[i + 34*t] ? R[B[i + 34*t]] * R[C[i + 34*t]] : R[B[i + 34*t]] + R[C[i + 34*t]]; R[i + 567*t] = Op[i + 35*t] ? R[B[i + 35*t]] * R[C[i + 35*t]] : R[B[i + 35*t]] + R[C[i + 35*t]]; R[i + 568*t] = Op[i + 36*t] ? R[B[i + 36*t]] * R[C[i + 36*t]] : R[B[i + 36*t]] + R[C[i + 36*t]]; R[i + 569*t] = Op[i + 37*t] ? R[B[i + 37*t]] * R[C[i + 37*t]] : R[B[i + 37*t]] + R[C[i + 37*t]]; R[i + 570*t] = Op[i + 38*t] ? R[B[i + 38*t]] * R[C[i + 38*t]] : R[B[i + 38*t]] + R[C[i + 38*t]]; R[i + 571*t] = Op[i + 39*t] ? R[B[i + 39*t]] * R[C[i + 39*t]] : R[B[i + 39*t]] + R[C[i + 39*t]]; R[i + 572*t] = Op[i + 40*t] ? R[B[i + 40*t]] * R[C[i + 40*t]] : R[B[i + 40*t]] + R[C[i + 40*t]]; R[i + 573*t] = Op[i + 41*t] ? R[B[i + 41*t]] * R[C[i + 41*t]] : R[B[i + 41*t]] + R[C[i + 41*t]]; R[i + 574*t] = Op[i + 42*t] ? R[B[i + 42*t]] * R[C[i + 42*t]] : R[B[i + 42*t]] + R[C[i + 42*t]]; R[i + 575*t] = Op[i + 43*t] ? R[B[i + 43*t]] * R[C[i + 43*t]] : R[B[i + 43*t]] + R[C[i + 43*t]]; R[i + 576*t] = Op[i + 44*t] ? R[B[i + 44*t]] * R[C[i + 44*t]] : R[B[i + 44*t]] + R[C[i + 44*t]]; R[i + 577*t] = Op[i + 45*t] ? R[B[i + 45*t]] * R[C[i + 45*t]] : R[B[i + 45*t]] + R[C[i + 45*t]]; R[i + 578*t] = Op[i + 46*t] ? R[B[i + 46*t]] * R[C[i + 46*t]] : R[B[i + 46*t]] + R[C[i + 46*t]]; R[i + 579*t] = Op[i + 47*t] ? R[B[i + 47*t]] * R[C[i + 47*t]] : R[B[i + 47*t]] + R[C[i + 47*t]]; R[i + 580*t] = Op[i + 48*t] ? R[B[i + 48*t]] * R[C[i + 48*t]] : R[B[i + 48*t]] + R[C[i + 48*t]]; R[i + 581*t] = Op[i + 49*t] ? R[B[i + 49*t]] * R[C[i + 49*t]] : R[B[i + 49*t]] + R[C[i + 49*t]]; R[i + 582*t] = Op[i + 50*t] ? R[B[i + 50*t]] * R[C[i + 50*t]] : R[B[i + 50*t]] + R[C[i + 50*t]]; R[i + 583*t] = Op[i + 51*t] ? R[B[i + 51*t]] * R[C[i + 51*t]] : R[B[i + 51*t]] + R[C[i + 51*t]]; R[i + 584*t] = Op[i + 52*t] ? R[B[i + 52*t]] * R[C[i + 52*t]] : R[B[i + 52*t]] + R[C[i + 52*t]]; R[i + 585*t] = Op[i + 53*t] ? R[B[i + 53*t]] * R[C[i + 53*t]] : R[B[i + 53*t]] + R[C[i + 53*t]]; R[i + 586*t] = Op[i + 54*t] ? R[B[i + 54*t]] * R[C[i + 54*t]] : R[B[i + 54*t]] + R[C[i + 54*t]]; R[i + 587*t] = Op[i + 55*t] ? R[B[i + 55*t]] * R[C[i + 55*t]] : R[B[i + 55*t]] + R[C[i + 55*t]]; R[i + 588*t] = Op[i + 56*t] ? R[B[i + 56*t]] * R[C[i + 56*t]] : R[B[i + 56*t]] + R[C[i + 56*t]]; R[i + 589*t] = Op[i + 57*t] ? R[B[i + 57*t]] * R[C[i + 57*t]] : R[B[i + 57*t]] + R[C[i + 57*t]]; R[i + 590*t] = Op[i + 58*t] ? R[B[i + 58*t]] * R[C[i + 58*t]] : R[B[i + 58*t]] + R[C[i + 58*t]]; R[i + 591*t] = Op[i + 59*t] ? R[B[i + 59*t]] * R[C[i + 59*t]] : R[B[i + 59*t]] + R[C[i + 59*t]]; R[i + 592*t] = Op[i + 60*t] ? R[B[i + 60*t]] * R[C[i + 60*t]] : R[B[i + 60*t]] + R[C[i + 60*t]]; R[i + 593*t] = Op[i + 61*t] ? R[B[i + 61*t]] * R[C[i + 61*t]] : R[B[i + 61*t]] + R[C[i + 61*t]]; R[i + 594*t] = Op[i + 62*t] ? R[B[i + 62*t]] * R[C[i + 62*t]] : R[B[i + 62*t]] + R[C[i + 62*t]]; R[i + 595*t] = Op[i + 63*t] ? R[B[i + 63*t]] * R[C[i + 63*t]] : R[B[i + 63*t]] + R[C[i + 63*t]]; R[i + 596*t] = Op[i + 64*t] ? R[B[i + 64*t]] * R[C[i + 64*t]] : R[B[i + 64*t]] + R[C[i + 64*t]]; R[i + 597*t] = Op[i + 65*t] ? R[B[i + 65*t]] * R[C[i + 65*t]] : R[B[i + 65*t]] + R[C[i + 65*t]]; R[i + 598*t] = Op[i + 66*t] ? R[B[i + 66*t]] * R[C[i + 66*t]] : R[B[i + 66*t]] + R[C[i + 66*t]]; R[i + 599*t] = Op[i + 67*t] ? R[B[i + 67*t]] * R[C[i + 67*t]] : R[B[i + 67*t]] + R[C[i + 67*t]]; R[i + 600*t] = Op[i + 68*t] ? R[B[i + 68*t]] * R[C[i + 68*t]] : R[B[i + 68*t]] + R[C[i + 68*t]]; R[i + 601*t] = Op[i + 69*t] ? R[B[i + 69*t]] * R[C[i + 69*t]] : R[B[i + 69*t]] + R[C[i + 69*t]]; R[i + 602*t] = Op[i + 70*t] ? R[B[i + 70*t]] * R[C[i + 70*t]] : R[B[i + 70*t]] + R[C[i + 70*t]]; R[i + 603*t] = Op[i + 71*t] ? R[B[i + 71*t]] * R[C[i + 71*t]] : R[B[i + 71*t]] + R[C[i + 71*t]]; R[i + 604*t] = Op[i + 72*t] ? R[B[i + 72*t]] * R[C[i + 72*t]] : R[B[i + 72*t]] + R[C[i + 72*t]]; R[i + 605*t] = Op[i + 73*t] ? R[B[i + 73*t]] * R[C[i + 73*t]] : R[B[i + 73*t]] + R[C[i + 73*t]]; R[i + 606*t] = Op[i + 74*t] ? R[B[i + 74*t]] * R[C[i + 74*t]] : R[B[i + 74*t]] + R[C[i + 74*t]]; R[i + 607*t] = Op[i + 75*t] ? R[B[i + 75*t]] * R[C[i + 75*t]] : R[B[i + 75*t]] + R[C[i + 75*t]]; R[i + 608*t] = Op[i + 76*t] ? R[B[i + 76*t]] * R[C[i + 76*t]] : R[B[i + 76*t]] + R[C[i + 76*t]]; R[i + 609*t] = Op[i + 77*t] ? R[B[i + 77*t]] * R[C[i + 77*t]] : R[B[i + 77*t]] + R[C[i + 77*t]]; R[i + 610*t] = Op[i + 78*t] ? R[B[i + 78*t]] * R[C[i + 78*t]] : R[B[i + 78*t]] + R[C[i + 78*t]]; R[i + 611*t] = Op[i + 79*t] ? R[B[i + 79*t]] * R[C[i + 79*t]] : R[B[i + 79*t]] + R[C[i + 79*t]]; R[i + 612*t] = Op[i + 80*t] ? R[B[i + 80*t]] * R[C[i + 80*t]] : R[B[i + 80*t]] + R[C[i + 80*t]]; R[i + 613*t] = Op[i + 81*t] ? R[B[i + 81*t]] * R[C[i + 81*t]] : R[B[i + 81*t]] + R[C[i + 81*t]]; R[i + 614*t] = Op[i + 82*t] ? R[B[i + 82*t]] * R[C[i + 82*t]] : R[B[i + 82*t]] + R[C[i + 82*t]]; R[i + 615*t] = Op[i + 83*t] ? R[B[i + 83*t]] * R[C[i + 83*t]] : R[B[i + 83*t]] + R[C[i + 83*t]]; R[i + 616*t] = Op[i + 84*t] ? R[B[i + 84*t]] * R[C[i + 84*t]] : R[B[i + 84*t]] + R[C[i + 84*t]]; R[i + 617*t] = Op[i + 85*t] ? R[B[i + 85*t]] * R[C[i + 85*t]] : R[B[i + 85*t]] + R[C[i + 85*t]]; R[i + 618*t] = Op[i + 86*t] ? R[B[i + 86*t]] * R[C[i + 86*t]] : R[B[i + 86*t]] + R[C[i + 86*t]]; R[i + 619*t] = Op[i + 87*t] ? R[B[i + 87*t]] * R[C[i + 87*t]] : R[B[i + 87*t]] + R[C[i + 87*t]]; R[i + 620*t] = Op[i + 88*t] ? R[B[i + 88*t]] * R[C[i + 88*t]] : R[B[i + 88*t]] + R[C[i + 88*t]]; R[i + 621*t] = Op[i + 89*t] ? R[B[i + 89*t]] * R[C[i + 89*t]] : R[B[i + 89*t]] + R[C[i + 89*t]]; R[i + 622*t] = Op[i + 90*t] ? R[B[i + 90*t]] * R[C[i + 90*t]] : R[B[i + 90*t]] + R[C[i + 90*t]]; R[i + 623*t] = Op[i + 91*t] ? R[B[i + 91*t]] * R[C[i + 91*t]] : R[B[i + 91*t]] + R[C[i + 91*t]]; R[i + 624*t] = Op[i + 92*t] ? R[B[i + 92*t]] * R[C[i + 92*t]] : R[B[i + 92*t]] + R[C[i + 92*t]]; R[i + 625*t] = Op[i + 93*t] ? R[B[i + 93*t]] * R[C[i + 93*t]] : R[B[i + 93*t]] + R[C[i + 93*t]]; R[i + 626*t] = Op[i + 94*t] ? R[B[i + 94*t]] * R[C[i + 94*t]] : R[B[i + 94*t]] + R[C[i + 94*t]]; R[i + 627*t] = Op[i + 95*t] ? R[B[i + 95*t]] * R[C[i + 95*t]] : R[B[i + 95*t]] + R[C[i + 95*t]]; R[i + 628*t] = Op[i + 96*t] ? R[B[i + 96*t]] * R[C[i + 96*t]] : R[B[i + 96*t]] + R[C[i + 96*t]]; R[i + 629*t] = Op[i + 97*t] ? R[B[i + 97*t]] * R[C[i + 97*t]] : R[B[i + 97*t]] + R[C[i + 97*t]]; R[i + 630*t] = Op[i + 98*t] ? R[B[i + 98*t]] * R[C[i + 98*t]] : R[B[i + 98*t]] + R[C[i + 98*t]]; R[i + 631*t] = Op[i + 99*t] ? R[B[i + 99*t]] * R[C[i + 99*t]] : R[B[i + 99*t]] + R[C[i + 99*t]]; R[i + 632*t] = Op[i + 100*t] ? R[B[i + 100*t]] * R[C[i + 100*t]] : R[B[i + 100*t]] + R[C[i + 100*t]]; R[i + 633*t] = Op[i + 101*t] ? R[B[i + 101*t]] * R[C[i + 101*t]] : R[B[i + 101*t]] + R[C[i + 101*t]]; R[i + 634*t] = Op[i + 102*t] ? R[B[i + 102*t]] * R[C[i + 102*t]] : R[B[i + 102*t]] + R[C[i + 102*t]]; R[i + 635*t] = Op[i + 103*t] ? R[B[i + 103*t]] * R[C[i + 103*t]] : R[B[i + 103*t]] + R[C[i + 103*t]]; R[i + 636*t] = Op[i + 104*t] ? R[B[i + 104*t]] * R[C[i + 104*t]] : R[B[i + 104*t]] + R[C[i + 104*t]]; R[i + 637*t] = Op[i + 105*t] ? R[B[i + 105*t]] * R[C[i + 105*t]] : R[B[i + 105*t]] + R[C[i + 105*t]]; R[i + 638*t] = Op[i + 106*t] ? R[B[i + 106*t]] * R[C[i + 106*t]] : R[B[i + 106*t]] + R[C[i + 106*t]]; R[i + 639*t] = Op[i + 107*t] ? R[B[i + 107*t]] * R[C[i + 107*t]] : R[B[i + 107*t]] + R[C[i + 107*t]]; R[i + 640*t] = Op[i + 108*t] ? R[B[i + 108*t]] * R[C[i + 108*t]] : R[B[i + 108*t]] + R[C[i + 108*t]]; R[i + 641*t] = Op[i + 109*t] ? R[B[i + 109*t]] * R[C[i + 109*t]] : R[B[i + 109*t]] + R[C[i + 109*t]]; R[i + 642*t] = Op[i + 110*t] ? R[B[i + 110*t]] * R[C[i + 110*t]] : R[B[i + 110*t]] + R[C[i + 110*t]]; R[i + 643*t] = Op[i + 111*t] ? R[B[i + 111*t]] * R[C[i + 111*t]] : R[B[i + 111*t]] + R[C[i + 111*t]]; R[i + 644*t] = Op[i + 112*t] ? R[B[i + 112*t]] * R[C[i + 112*t]] : R[B[i + 112*t]] + R[C[i + 112*t]]; R[i + 645*t] = Op[i + 113*t] ? R[B[i + 113*t]] * R[C[i + 113*t]] : R[B[i + 113*t]] + R[C[i + 113*t]]; R[i + 646*t] = Op[i + 114*t] ? R[B[i + 114*t]] * R[C[i + 114*t]] : R[B[i + 114*t]] + R[C[i + 114*t]]; R[i + 647*t] = Op[i + 115*t] ? R[B[i + 115*t]] * R[C[i + 115*t]] : R[B[i + 115*t]] + R[C[i + 115*t]]; R[i + 648*t] = Op[i + 116*t] ? R[B[i + 116*t]] * R[C[i + 116*t]] : R[B[i + 116*t]] + R[C[i + 116*t]]; R[i + 649*t] = Op[i + 117*t] ? R[B[i + 117*t]] * R[C[i + 117*t]] : R[B[i + 117*t]] + R[C[i + 117*t]]; R[i + 650*t] = Op[i + 118*t] ? R[B[i + 118*t]] * R[C[i + 118*t]] : R[B[i + 118*t]] + R[C[i + 118*t]]; R[i + 651*t] = Op[i + 119*t] ? R[B[i + 119*t]] * R[C[i + 119*t]] : R[B[i + 119*t]] + R[C[i + 119*t]]; R[i + 652*t] = Op[i + 120*t] ? R[B[i + 120*t]] * R[C[i + 120*t]] : R[B[i + 120*t]] + R[C[i + 120*t]]; R[i + 653*t] = Op[i + 121*t] ? R[B[i + 121*t]] * R[C[i + 121*t]] : R[B[i + 121*t]] + R[C[i + 121*t]]; R[i + 654*t] = Op[i + 122*t] ? R[B[i + 122*t]] * R[C[i + 122*t]] : R[B[i + 122*t]] + R[C[i + 122*t]]; R[i + 655*t] = Op[i + 123*t] ? R[B[i + 123*t]] * R[C[i + 123*t]] : R[B[i + 123*t]] + R[C[i + 123*t]]; R[i + 656*t] = Op[i + 124*t] ? R[B[i + 124*t]] * R[C[i + 124*t]] : R[B[i + 124*t]] + R[C[i + 124*t]]; R[i + 657*t] = Op[i + 125*t] ? R[B[i + 125*t]] * R[C[i + 125*t]] : R[B[i + 125*t]] + R[C[i + 125*t]]; R[i + 658*t] = Op[i + 126*t] ? R[B[i + 126*t]] * R[C[i + 126*t]] : R[B[i + 126*t]] + R[C[i + 126*t]]; R[i + 659*t] = Op[i + 127*t] ? R[B[i + 127*t]] * R[C[i + 127*t]] : R[B[i + 127*t]] + R[C[i + 127*t]]; R[i + 660*t] = Op[i + 128*t] ? R[B[i + 128*t]] * R[C[i + 128*t]] : R[B[i + 128*t]] + R[C[i + 128*t]]; R[i + 661*t] = Op[i + 129*t] ? R[B[i + 129*t]] * R[C[i + 129*t]] : R[B[i + 129*t]] + R[C[i + 129*t]]; R[i + 662*t] = Op[i + 130*t] ? R[B[i + 130*t]] * R[C[i + 130*t]] : R[B[i + 130*t]] + R[C[i + 130*t]]; R[i + 663*t] = Op[i + 131*t] ? R[B[i + 131*t]] * R[C[i + 131*t]] : R[B[i + 131*t]] + R[C[i + 131*t]]; R[i + 664*t] = Op[i + 132*t] ? R[B[i + 132*t]] * R[C[i + 132*t]] : R[B[i + 132*t]] + R[C[i + 132*t]]; R[i + 665*t] = Op[i + 133*t] ? R[B[i + 133*t]] * R[C[i + 133*t]] : R[B[i + 133*t]] + R[C[i + 133*t]]; R[i + 666*t] = Op[i + 134*t] ? R[B[i + 134*t]] * R[C[i + 134*t]] : R[B[i + 134*t]] + R[C[i + 134*t]]; R[i + 667*t] = Op[i + 135*t] ? R[B[i + 135*t]] * R[C[i + 135*t]] : R[B[i + 135*t]] + R[C[i + 135*t]]; R[i + 668*t] = Op[i + 136*t] ? R[B[i + 136*t]] * R[C[i + 136*t]] : R[B[i + 136*t]] + R[C[i + 136*t]]; R[i + 669*t] = Op[i + 137*t] ? R[B[i + 137*t]] * R[C[i + 137*t]] : R[B[i + 137*t]] + R[C[i + 137*t]]; R[i + 670*t] = Op[i + 138*t] ? R[B[i + 138*t]] * R[C[i + 138*t]] : R[B[i + 138*t]] + R[C[i + 138*t]]; R[i + 671*t] = Op[i + 139*t] ? R[B[i + 139*t]] * R[C[i + 139*t]] : R[B[i + 139*t]] + R[C[i + 139*t]]; R[i + 672*t] = Op[i + 140*t] ? R[B[i + 140*t]] * R[C[i + 140*t]] : R[B[i + 140*t]] + R[C[i + 140*t]]; R[i + 673*t] = Op[i + 141*t] ? R[B[i + 141*t]] * R[C[i + 141*t]] : R[B[i + 141*t]] + R[C[i + 141*t]]; R[i + 674*t] = Op[i + 142*t] ? R[B[i + 142*t]] * R[C[i + 142*t]] : R[B[i + 142*t]] + R[C[i + 142*t]]; R[i + 675*t] = Op[i + 143*t] ? R[B[i + 143*t]] * R[C[i + 143*t]] : R[B[i + 143*t]] + R[C[i + 143*t]]; R[i + 676*t] = Op[i + 144*t] ? R[B[i + 144*t]] * R[C[i + 144*t]] : R[B[i + 144*t]] + R[C[i + 144*t]]; R[i + 677*t] = Op[i + 145*t] ? R[B[i + 145*t]] * R[C[i + 145*t]] : R[B[i + 145*t]] + R[C[i + 145*t]]; R[i + 678*t] = Op[i + 146*t] ? R[B[i + 146*t]] * R[C[i + 146*t]] : R[B[i + 146*t]] + R[C[i + 146*t]]; R[i + 679*t] = Op[i + 147*t] ? R[B[i + 147*t]] * R[C[i + 147*t]] : R[B[i + 147*t]] + R[C[i + 147*t]]; R[i + 680*t] = Op[i + 148*t] ? R[B[i + 148*t]] * R[C[i + 148*t]] : R[B[i + 148*t]] + R[C[i + 148*t]]; R[i + 681*t] = Op[i + 149*t] ? R[B[i + 149*t]] * R[C[i + 149*t]] : R[B[i + 149*t]] + R[C[i + 149*t]]; R[i + 682*t] = Op[i + 150*t] ? R[B[i + 150*t]] * R[C[i + 150*t]] : R[B[i + 150*t]] + R[C[i + 150*t]]; R[i + 683*t] = Op[i + 151*t] ? R[B[i + 151*t]] * R[C[i + 151*t]] : R[B[i + 151*t]] + R[C[i + 151*t]]; R[i + 684*t] = Op[i + 152*t] ? R[B[i + 152*t]] * R[C[i + 152*t]] : R[B[i + 152*t]] + R[C[i + 152*t]]; R[i + 685*t] = Op[i + 153*t] ? R[B[i + 153*t]] * R[C[i + 153*t]] : R[B[i + 153*t]] + R[C[i + 153*t]]; R[i + 686*t] = Op[i + 154*t] ? R[B[i + 154*t]] * R[C[i + 154*t]] : R[B[i + 154*t]] + R[C[i + 154*t]]; R[i + 687*t] = Op[i + 155*t] ? R[B[i + 155*t]] * R[C[i + 155*t]] : R[B[i + 155*t]] + R[C[i + 155*t]]; R[i + 688*t] = Op[i + 156*t] ? R[B[i + 156*t]] * R[C[i + 156*t]] : R[B[i + 156*t]] + R[C[i + 156*t]]; R[i + 689*t] = Op[i + 157*t] ? R[B[i + 157*t]] * R[C[i + 157*t]] : R[B[i + 157*t]] + R[C[i + 157*t]]; R[i + 690*t] = Op[i + 158*t] ? R[B[i + 158*t]] * R[C[i + 158*t]] : R[B[i + 158*t]] + R[C[i + 158*t]]; R[i + 691*t] = Op[i + 159*t] ? R[B[i + 159*t]] * R[C[i + 159*t]] : R[B[i + 159*t]] + R[C[i + 159*t]]; R[i + 692*t] = Op[i + 160*t] ? R[B[i + 160*t]] * R[C[i + 160*t]] : R[B[i + 160*t]] + R[C[i + 160*t]]; R[i + 693*t] = Op[i + 161*t] ? R[B[i + 161*t]] * R[C[i + 161*t]] : R[B[i + 161*t]] + R[C[i + 161*t]]; R[i + 694*t] = Op[i + 162*t] ? R[B[i + 162*t]] * R[C[i + 162*t]] : R[B[i + 162*t]] + R[C[i + 162*t]]; R[i + 695*t] = Op[i + 163*t] ? R[B[i + 163*t]] * R[C[i + 163*t]] : R[B[i + 163*t]] + R[C[i + 163*t]]; R[i + 696*t] = Op[i + 164*t] ? R[B[i + 164*t]] * R[C[i + 164*t]] : R[B[i + 164*t]] + R[C[i + 164*t]]; R[i + 697*t] = Op[i + 165*t] ? R[B[i + 165*t]] * R[C[i + 165*t]] : R[B[i + 165*t]] + R[C[i + 165*t]]; R[i + 698*t] = Op[i + 166*t] ? R[B[i + 166*t]] * R[C[i + 166*t]] : R[B[i + 166*t]] + R[C[i + 166*t]]; __syncthreads(); R[i + 699*t] = Op[i + 167*t] ? R[B[i + 167*t]] * R[C[i + 167*t]] : R[B[i + 167*t]] + R[C[i + 167*t]]; R[i + 700*t] = Op[i + 168*t] ? R[B[i + 168*t]] * R[C[i + 168*t]] : R[B[i + 168*t]] + R[C[i + 168*t]]; R[i + 701*t] = Op[i + 169*t] ? R[B[i + 169*t]] * R[C[i + 169*t]] : R[B[i + 169*t]] + R[C[i + 169*t]]; R[i + 702*t] = Op[i + 170*t] ? R[B[i + 170*t]] * R[C[i + 170*t]] : R[B[i + 170*t]] + R[C[i + 170*t]]; R[i + 703*t] = Op[i + 171*t] ? R[B[i + 171*t]] * R[C[i + 171*t]] : R[B[i + 171*t]] + R[C[i + 171*t]]; R[i + 704*t] = Op[i + 172*t] ? R[B[i + 172*t]] * R[C[i + 172*t]] : R[B[i + 172*t]] + R[C[i + 172*t]]; R[i + 705*t] = Op[i + 173*t] ? R[B[i + 173*t]] * R[C[i + 173*t]] : R[B[i + 173*t]] + R[C[i + 173*t]]; R[i + 706*t] = Op[i + 174*t] ? R[B[i + 174*t]] * R[C[i + 174*t]] : R[B[i + 174*t]] + R[C[i + 174*t]]; R[i + 707*t] = Op[i + 175*t] ? R[B[i + 175*t]] * R[C[i + 175*t]] : R[B[i + 175*t]] + R[C[i + 175*t]]; R[i + 708*t] = Op[i + 176*t] ? R[B[i + 176*t]] * R[C[i + 176*t]] : R[B[i + 176*t]] + R[C[i + 176*t]]; R[i + 709*t] = Op[i + 177*t] ? R[B[i + 177*t]] * R[C[i + 177*t]] : R[B[i + 177*t]] + R[C[i + 177*t]]; R[i + 710*t] = Op[i + 178*t] ? R[B[i + 178*t]] * R[C[i + 178*t]] : R[B[i + 178*t]] + R[C[i + 178*t]]; R[i + 711*t] = Op[i + 179*t] ? R[B[i + 179*t]] * R[C[i + 179*t]] : R[B[i + 179*t]] + R[C[i + 179*t]]; R[i + 712*t] = Op[i + 180*t] ? R[B[i + 180*t]] * R[C[i + 180*t]] : R[B[i + 180*t]] + R[C[i + 180*t]]; R[i + 713*t] = Op[i + 181*t] ? R[B[i + 181*t]] * R[C[i + 181*t]] : R[B[i + 181*t]] + R[C[i + 181*t]]; R[i + 714*t] = Op[i + 182*t] ? R[B[i + 182*t]] * R[C[i + 182*t]] : R[B[i + 182*t]] + R[C[i + 182*t]]; R[i + 715*t] = Op[i + 183*t] ? R[B[i + 183*t]] * R[C[i + 183*t]] : R[B[i + 183*t]] + R[C[i + 183*t]]; R[i + 716*t] = Op[i + 184*t] ? R[B[i + 184*t]] * R[C[i + 184*t]] : R[B[i + 184*t]] + R[C[i + 184*t]]; R[i + 717*t] = Op[i + 185*t] ? R[B[i + 185*t]] * R[C[i + 185*t]] : R[B[i + 185*t]] + R[C[i + 185*t]]; R[i + 718*t] = Op[i + 186*t] ? R[B[i + 186*t]] * R[C[i + 186*t]] : R[B[i + 186*t]] + R[C[i + 186*t]]; R[i + 719*t] = Op[i + 187*t] ? R[B[i + 187*t]] * R[C[i + 187*t]] : R[B[i + 187*t]] + R[C[i + 187*t]]; R[i + 720*t] = Op[i + 188*t] ? R[B[i + 188*t]] * R[C[i + 188*t]] : R[B[i + 188*t]] + R[C[i + 188*t]]; R[i + 721*t] = Op[i + 189*t] ? R[B[i + 189*t]] * R[C[i + 189*t]] : R[B[i + 189*t]] + R[C[i + 189*t]]; R[i + 722*t] = Op[i + 190*t] ? R[B[i + 190*t]] * R[C[i + 190*t]] : R[B[i + 190*t]] + R[C[i + 190*t]]; R[i + 723*t] = Op[i + 191*t] ? R[B[i + 191*t]] * R[C[i + 191*t]] : R[B[i + 191*t]] + R[C[i + 191*t]]; R[i + 724*t] = Op[i + 192*t] ? R[B[i + 192*t]] * R[C[i + 192*t]] : R[B[i + 192*t]] + R[C[i + 192*t]]; R[i + 725*t] = Op[i + 193*t] ? R[B[i + 193*t]] * R[C[i + 193*t]] : R[B[i + 193*t]] + R[C[i + 193*t]]; R[i + 726*t] = Op[i + 194*t] ? R[B[i + 194*t]] * R[C[i + 194*t]] : R[B[i + 194*t]] + R[C[i + 194*t]]; R[i + 727*t] = Op[i + 195*t] ? R[B[i + 195*t]] * R[C[i + 195*t]] : R[B[i + 195*t]] + R[C[i + 195*t]]; R[i + 728*t] = Op[i + 196*t] ? R[B[i + 196*t]] * R[C[i + 196*t]] : R[B[i + 196*t]] + R[C[i + 196*t]]; R[i + 729*t] = Op[i + 197*t] ? R[B[i + 197*t]] * R[C[i + 197*t]] : R[B[i + 197*t]] + R[C[i + 197*t]]; R[i + 730*t] = Op[i + 198*t] ? R[B[i + 198*t]] * R[C[i + 198*t]] : R[B[i + 198*t]] + R[C[i + 198*t]]; R[i + 731*t] = Op[i + 199*t] ? R[B[i + 199*t]] * R[C[i + 199*t]] : R[B[i + 199*t]] + R[C[i + 199*t]]; R[i + 732*t] = Op[i + 200*t] ? R[B[i + 200*t]] * R[C[i + 200*t]] : R[B[i + 200*t]] + R[C[i + 200*t]]; R[i + 733*t] = Op[i + 201*t] ? R[B[i + 201*t]] * R[C[i + 201*t]] : R[B[i + 201*t]] + R[C[i + 201*t]]; R[i + 734*t] = Op[i + 202*t] ? R[B[i + 202*t]] * R[C[i + 202*t]] : R[B[i + 202*t]] + R[C[i + 202*t]]; R[i + 735*t] = Op[i + 203*t] ? R[B[i + 203*t]] * R[C[i + 203*t]] : R[B[i + 203*t]] + R[C[i + 203*t]]; R[i + 736*t] = Op[i + 204*t] ? R[B[i + 204*t]] * R[C[i + 204*t]] : R[B[i + 204*t]] + R[C[i + 204*t]]; R[i + 737*t] = Op[i + 205*t] ? R[B[i + 205*t]] * R[C[i + 205*t]] : R[B[i + 205*t]] + R[C[i + 205*t]]; R[i + 738*t] = Op[i + 206*t] ? R[B[i + 206*t]] * R[C[i + 206*t]] : R[B[i + 206*t]] + R[C[i + 206*t]]; R[i + 739*t] = Op[i + 207*t] ? R[B[i + 207*t]] * R[C[i + 207*t]] : R[B[i + 207*t]] + R[C[i + 207*t]]; R[i + 740*t] = Op[i + 208*t] ? R[B[i + 208*t]] * R[C[i + 208*t]] : R[B[i + 208*t]] + R[C[i + 208*t]]; R[i + 741*t] = Op[i + 209*t] ? R[B[i + 209*t]] * R[C[i + 209*t]] : R[B[i + 209*t]] + R[C[i + 209*t]]; R[i + 742*t] = Op[i + 210*t] ? R[B[i + 210*t]] * R[C[i + 210*t]] : R[B[i + 210*t]] + R[C[i + 210*t]]; R[i + 743*t] = Op[i + 211*t] ? R[B[i + 211*t]] * R[C[i + 211*t]] : R[B[i + 211*t]] + R[C[i + 211*t]]; R[i + 744*t] = Op[i + 212*t] ? R[B[i + 212*t]] * R[C[i + 212*t]] : R[B[i + 212*t]] + R[C[i + 212*t]]; R[i + 745*t] = Op[i + 213*t] ? R[B[i + 213*t]] * R[C[i + 213*t]] : R[B[i + 213*t]] + R[C[i + 213*t]]; R[i + 746*t] = Op[i + 214*t] ? R[B[i + 214*t]] * R[C[i + 214*t]] : R[B[i + 214*t]] + R[C[i + 214*t]]; R[i + 747*t] = Op[i + 215*t] ? R[B[i + 215*t]] * R[C[i + 215*t]] : R[B[i + 215*t]] + R[C[i + 215*t]]; R[i + 748*t] = Op[i + 216*t] ? R[B[i + 216*t]] * R[C[i + 216*t]] : R[B[i + 216*t]] + R[C[i + 216*t]]; R[i + 749*t] = Op[i + 217*t] ? R[B[i + 217*t]] * R[C[i + 217*t]] : R[B[i + 217*t]] + R[C[i + 217*t]]; R[i + 750*t] = Op[i + 218*t] ? R[B[i + 218*t]] * R[C[i + 218*t]] : R[B[i + 218*t]] + R[C[i + 218*t]]; R[i + 751*t] = Op[i + 219*t] ? R[B[i + 219*t]] * R[C[i + 219*t]] : R[B[i + 219*t]] + R[C[i + 219*t]]; R[i + 752*t] = Op[i + 220*t] ? R[B[i + 220*t]] * R[C[i + 220*t]] : R[B[i + 220*t]] + R[C[i + 220*t]]; R[i + 753*t] = Op[i + 221*t] ? R[B[i + 221*t]] * R[C[i + 221*t]] : R[B[i + 221*t]] + R[C[i + 221*t]]; R[i + 754*t] = Op[i + 222*t] ? R[B[i + 222*t]] * R[C[i + 222*t]] : R[B[i + 222*t]] + R[C[i + 222*t]]; R[i + 755*t] = Op[i + 223*t] ? R[B[i + 223*t]] * R[C[i + 223*t]] : R[B[i + 223*t]] + R[C[i + 223*t]]; R[i + 756*t] = Op[i + 224*t] ? R[B[i + 224*t]] * R[C[i + 224*t]] : R[B[i + 224*t]] + R[C[i + 224*t]]; R[i + 757*t] = Op[i + 225*t] ? R[B[i + 225*t]] * R[C[i + 225*t]] : R[B[i + 225*t]] + R[C[i + 225*t]]; R[i + 758*t] = Op[i + 226*t] ? R[B[i + 226*t]] * R[C[i + 226*t]] : R[B[i + 226*t]] + R[C[i + 226*t]]; R[i + 759*t] = Op[i + 227*t] ? R[B[i + 227*t]] * R[C[i + 227*t]] : R[B[i + 227*t]] + R[C[i + 227*t]]; R[i + 760*t] = Op[i + 228*t] ? R[B[i + 228*t]] * R[C[i + 228*t]] : R[B[i + 228*t]] + R[C[i + 228*t]]; R[i + 761*t] = Op[i + 229*t] ? R[B[i + 229*t]] * R[C[i + 229*t]] : R[B[i + 229*t]] + R[C[i + 229*t]]; R[i + 762*t] = Op[i + 230*t] ? R[B[i + 230*t]] * R[C[i + 230*t]] : R[B[i + 230*t]] + R[C[i + 230*t]]; R[i + 763*t] = Op[i + 231*t] ? R[B[i + 231*t]] * R[C[i + 231*t]] : R[B[i + 231*t]] + R[C[i + 231*t]]; R[i + 764*t] = Op[i + 232*t] ? R[B[i + 232*t]] * R[C[i + 232*t]] : R[B[i + 232*t]] + R[C[i + 232*t]]; R[i + 765*t] = Op[i + 233*t] ? R[B[i + 233*t]] * R[C[i + 233*t]] : R[B[i + 233*t]] + R[C[i + 233*t]]; R[i + 766*t] = Op[i + 234*t] ? R[B[i + 234*t]] * R[C[i + 234*t]] : R[B[i + 234*t]] + R[C[i + 234*t]]; R[i + 767*t] = Op[i + 235*t] ? R[B[i + 235*t]] * R[C[i + 235*t]] : R[B[i + 235*t]] + R[C[i + 235*t]]; R[i + 768*t] = Op[i + 236*t] ? R[B[i + 236*t]] * R[C[i + 236*t]] : R[B[i + 236*t]] + R[C[i + 236*t]]; R[i + 769*t] = Op[i + 237*t] ? R[B[i + 237*t]] * R[C[i + 237*t]] : R[B[i + 237*t]] + R[C[i + 237*t]]; R[i + 770*t] = Op[i + 238*t] ? R[B[i + 238*t]] * R[C[i + 238*t]] : R[B[i + 238*t]] + R[C[i + 238*t]]; R[i + 771*t] = Op[i + 239*t] ? R[B[i + 239*t]] * R[C[i + 239*t]] : R[B[i + 239*t]] + R[C[i + 239*t]]; R[i + 772*t] = Op[i + 240*t] ? R[B[i + 240*t]] * R[C[i + 240*t]] : R[B[i + 240*t]] + R[C[i + 240*t]]; R[i + 773*t] = Op[i + 241*t] ? R[B[i + 241*t]] * R[C[i + 241*t]] : R[B[i + 241*t]] + R[C[i + 241*t]]; R[i + 774*t] = Op[i + 242*t] ? R[B[i + 242*t]] * R[C[i + 242*t]] : R[B[i + 242*t]] + R[C[i + 242*t]]; R[i + 775*t] = Op[i + 243*t] ? R[B[i + 243*t]] * R[C[i + 243*t]] : R[B[i + 243*t]] + R[C[i + 243*t]]; R[i + 776*t] = Op[i + 244*t] ? R[B[i + 244*t]] * R[C[i + 244*t]] : R[B[i + 244*t]] + R[C[i + 244*t]]; R[i + 777*t] = Op[i + 245*t] ? R[B[i + 245*t]] * R[C[i + 245*t]] : R[B[i + 245*t]] + R[C[i + 245*t]]; R[i + 778*t] = Op[i + 246*t] ? R[B[i + 246*t]] * R[C[i + 246*t]] : R[B[i + 246*t]] + R[C[i + 246*t]]; R[i + 779*t] = Op[i + 247*t] ? R[B[i + 247*t]] * R[C[i + 247*t]] : R[B[i + 247*t]] + R[C[i + 247*t]]; R[i + 780*t] = Op[i + 248*t] ? R[B[i + 248*t]] * R[C[i + 248*t]] : R[B[i + 248*t]] + R[C[i + 248*t]]; R[i + 781*t] = Op[i + 249*t] ? R[B[i + 249*t]] * R[C[i + 249*t]] : R[B[i + 249*t]] + R[C[i + 249*t]]; R[i + 782*t] = Op[i + 250*t] ? R[B[i + 250*t]] * R[C[i + 250*t]] : R[B[i + 250*t]] + R[C[i + 250*t]]; R[i + 783*t] = Op[i + 251*t] ? R[B[i + 251*t]] * R[C[i + 251*t]] : R[B[i + 251*t]] + R[C[i + 251*t]]; R[i + 784*t] = Op[i + 252*t] ? R[B[i + 252*t]] * R[C[i + 252*t]] : R[B[i + 252*t]] + R[C[i + 252*t]]; R[i + 785*t] = Op[i + 253*t] ? R[B[i + 253*t]] * R[C[i + 253*t]] : R[B[i + 253*t]] + R[C[i + 253*t]]; R[i + 786*t] = Op[i + 254*t] ? R[B[i + 254*t]] * R[C[i + 254*t]] : R[B[i + 254*t]] + R[C[i + 254*t]]; R[i + 787*t] = Op[i + 255*t] ? R[B[i + 255*t]] * R[C[i + 255*t]] : R[B[i + 255*t]] + R[C[i + 255*t]]; R[i + 788*t] = Op[i + 256*t] ? R[B[i + 256*t]] * R[C[i + 256*t]] : R[B[i + 256*t]] + R[C[i + 256*t]]; R[i + 789*t] = Op[i + 257*t] ? R[B[i + 257*t]] * R[C[i + 257*t]] : R[B[i + 257*t]] + R[C[i + 257*t]]; R[i + 790*t] = Op[i + 258*t] ? R[B[i + 258*t]] * R[C[i + 258*t]] : R[B[i + 258*t]] + R[C[i + 258*t]]; R[i + 791*t] = Op[i + 259*t] ? R[B[i + 259*t]] * R[C[i + 259*t]] : R[B[i + 259*t]] + R[C[i + 259*t]]; __syncthreads(); R[i + 792*t] = Op[i + 260*t] ? R[B[i + 260*t]] * R[C[i + 260*t]] : R[B[i + 260*t]] + R[C[i + 260*t]]; R[i + 793*t] = Op[i + 261*t] ? R[B[i + 261*t]] * R[C[i + 261*t]] : R[B[i + 261*t]] + R[C[i + 261*t]]; R[i + 794*t] = Op[i + 262*t] ? R[B[i + 262*t]] * R[C[i + 262*t]] : R[B[i + 262*t]] + R[C[i + 262*t]]; R[i + 795*t] = Op[i + 263*t] ? R[B[i + 263*t]] * R[C[i + 263*t]] : R[B[i + 263*t]] + R[C[i + 263*t]]; R[i + 796*t] = Op[i + 264*t] ? R[B[i + 264*t]] * R[C[i + 264*t]] : R[B[i + 264*t]] + R[C[i + 264*t]]; R[i + 797*t] = Op[i + 265*t] ? R[B[i + 265*t]] * R[C[i + 265*t]] : R[B[i + 265*t]] + R[C[i + 265*t]]; R[i + 798*t] = Op[i + 266*t] ? R[B[i + 266*t]] * R[C[i + 266*t]] : R[B[i + 266*t]] + R[C[i + 266*t]]; R[i + 799*t] = Op[i + 267*t] ? R[B[i + 267*t]] * R[C[i + 267*t]] : R[B[i + 267*t]] + R[C[i + 267*t]]; R[i + 800*t] = Op[i + 268*t] ? R[B[i + 268*t]] * R[C[i + 268*t]] : R[B[i + 268*t]] + R[C[i + 268*t]]; R[i + 801*t] = Op[i + 269*t] ? R[B[i + 269*t]] * R[C[i + 269*t]] : R[B[i + 269*t]] + R[C[i + 269*t]]; R[i + 802*t] = Op[i + 270*t] ? R[B[i + 270*t]] * R[C[i + 270*t]] : R[B[i + 270*t]] + R[C[i + 270*t]]; R[i + 803*t] = Op[i + 271*t] ? R[B[i + 271*t]] * R[C[i + 271*t]] : R[B[i + 271*t]] + R[C[i + 271*t]]; R[i + 804*t] = Op[i + 272*t] ? R[B[i + 272*t]] * R[C[i + 272*t]] : R[B[i + 272*t]] + R[C[i + 272*t]]; R[i + 805*t] = Op[i + 273*t] ? R[B[i + 273*t]] * R[C[i + 273*t]] : R[B[i + 273*t]] + R[C[i + 273*t]]; R[i + 806*t] = Op[i + 274*t] ? R[B[i + 274*t]] * R[C[i + 274*t]] : R[B[i + 274*t]] + R[C[i + 274*t]]; R[i + 807*t] = Op[i + 275*t] ? R[B[i + 275*t]] * R[C[i + 275*t]] : R[B[i + 275*t]] + R[C[i + 275*t]]; R[i + 808*t] = Op[i + 276*t] ? R[B[i + 276*t]] * R[C[i + 276*t]] : R[B[i + 276*t]] + R[C[i + 276*t]]; R[i + 809*t] = Op[i + 277*t] ? R[B[i + 277*t]] * R[C[i + 277*t]] : R[B[i + 277*t]] + R[C[i + 277*t]]; R[i + 810*t] = Op[i + 278*t] ? R[B[i + 278*t]] * R[C[i + 278*t]] : R[B[i + 278*t]] + R[C[i + 278*t]]; R[i + 811*t] = Op[i + 279*t] ? R[B[i + 279*t]] * R[C[i + 279*t]] : R[B[i + 279*t]] + R[C[i + 279*t]]; R[i + 812*t] = Op[i + 280*t] ? R[B[i + 280*t]] * R[C[i + 280*t]] : R[B[i + 280*t]] + R[C[i + 280*t]]; R[i + 813*t] = Op[i + 281*t] ? R[B[i + 281*t]] * R[C[i + 281*t]] : R[B[i + 281*t]] + R[C[i + 281*t]]; R[i + 814*t] = Op[i + 282*t] ? R[B[i + 282*t]] * R[C[i + 282*t]] : R[B[i + 282*t]] + R[C[i + 282*t]]; R[i + 815*t] = Op[i + 283*t] ? R[B[i + 283*t]] * R[C[i + 283*t]] : R[B[i + 283*t]] + R[C[i + 283*t]]; R[i + 816*t] = Op[i + 284*t] ? R[B[i + 284*t]] * R[C[i + 284*t]] : R[B[i + 284*t]] + R[C[i + 284*t]]; R[i + 817*t] = Op[i + 285*t] ? R[B[i + 285*t]] * R[C[i + 285*t]] : R[B[i + 285*t]] + R[C[i + 285*t]]; R[i + 818*t] = Op[i + 286*t] ? R[B[i + 286*t]] * R[C[i + 286*t]] : R[B[i + 286*t]] + R[C[i + 286*t]]; R[i + 819*t] = Op[i + 287*t] ? R[B[i + 287*t]] * R[C[i + 287*t]] : R[B[i + 287*t]] + R[C[i + 287*t]]; R[i + 820*t] = Op[i + 288*t] ? R[B[i + 288*t]] * R[C[i + 288*t]] : R[B[i + 288*t]] + R[C[i + 288*t]]; R[i + 821*t] = Op[i + 289*t] ? R[B[i + 289*t]] * R[C[i + 289*t]] : R[B[i + 289*t]] + R[C[i + 289*t]]; R[i + 822*t] = Op[i + 290*t] ? R[B[i + 290*t]] * R[C[i + 290*t]] : R[B[i + 290*t]] + R[C[i + 290*t]]; R[i + 823*t] = Op[i + 291*t] ? R[B[i + 291*t]] * R[C[i + 291*t]] : R[B[i + 291*t]] + R[C[i + 291*t]]; R[i + 824*t] = Op[i + 292*t] ? R[B[i + 292*t]] * R[C[i + 292*t]] : R[B[i + 292*t]] + R[C[i + 292*t]]; R[i + 825*t] = Op[i + 293*t] ? R[B[i + 293*t]] * R[C[i + 293*t]] : R[B[i + 293*t]] + R[C[i + 293*t]]; R[i + 826*t] = Op[i + 294*t] ? R[B[i + 294*t]] * R[C[i + 294*t]] : R[B[i + 294*t]] + R[C[i + 294*t]]; R[i + 827*t] = Op[i + 295*t] ? R[B[i + 295*t]] * R[C[i + 295*t]] : R[B[i + 295*t]] + R[C[i + 295*t]]; R[i + 828*t] = Op[i + 296*t] ? R[B[i + 296*t]] * R[C[i + 296*t]] : R[B[i + 296*t]] + R[C[i + 296*t]]; R[i + 829*t] = Op[i + 297*t] ? R[B[i + 297*t]] * R[C[i + 297*t]] : R[B[i + 297*t]] + R[C[i + 297*t]]; R[i + 830*t] = Op[i + 298*t] ? R[B[i + 298*t]] * R[C[i + 298*t]] : R[B[i + 298*t]] + R[C[i + 298*t]]; R[i + 831*t] = Op[i + 299*t] ? R[B[i + 299*t]] * R[C[i + 299*t]] : R[B[i + 299*t]] + R[C[i + 299*t]]; R[i + 832*t] = Op[i + 300*t] ? R[B[i + 300*t]] * R[C[i + 300*t]] : R[B[i + 300*t]] + R[C[i + 300*t]]; R[i + 833*t] = Op[i + 301*t] ? R[B[i + 301*t]] * R[C[i + 301*t]] : R[B[i + 301*t]] + R[C[i + 301*t]]; R[i + 834*t] = Op[i + 302*t] ? R[B[i + 302*t]] * R[C[i + 302*t]] : R[B[i + 302*t]] + R[C[i + 302*t]]; R[i + 835*t] = Op[i + 303*t] ? R[B[i + 303*t]] * R[C[i + 303*t]] : R[B[i + 303*t]] + R[C[i + 303*t]]; R[i + 836*t] = Op[i + 304*t] ? R[B[i + 304*t]] * R[C[i + 304*t]] : R[B[i + 304*t]] + R[C[i + 304*t]]; R[i + 837*t] = Op[i + 305*t] ? R[B[i + 305*t]] * R[C[i + 305*t]] : R[B[i + 305*t]] + R[C[i + 305*t]]; R[i + 838*t] = Op[i + 306*t] ? R[B[i + 306*t]] * R[C[i + 306*t]] : R[B[i + 306*t]] + R[C[i + 306*t]]; R[i + 839*t] = Op[i + 307*t] ? R[B[i + 307*t]] * R[C[i + 307*t]] : R[B[i + 307*t]] + R[C[i + 307*t]]; R[i + 840*t] = Op[i + 308*t] ? R[B[i + 308*t]] * R[C[i + 308*t]] : R[B[i + 308*t]] + R[C[i + 308*t]]; R[i + 841*t] = Op[i + 309*t] ? R[B[i + 309*t]] * R[C[i + 309*t]] : R[B[i + 309*t]] + R[C[i + 309*t]]; R[i + 842*t] = Op[i + 310*t] ? R[B[i + 310*t]] * R[C[i + 310*t]] : R[B[i + 310*t]] + R[C[i + 310*t]]; R[i + 843*t] = Op[i + 311*t] ? R[B[i + 311*t]] * R[C[i + 311*t]] : R[B[i + 311*t]] + R[C[i + 311*t]]; R[i + 844*t] = Op[i + 312*t] ? R[B[i + 312*t]] * R[C[i + 312*t]] : R[B[i + 312*t]] + R[C[i + 312*t]]; R[i + 845*t] = Op[i + 313*t] ? R[B[i + 313*t]] * R[C[i + 313*t]] : R[B[i + 313*t]] + R[C[i + 313*t]]; R[i + 846*t] = Op[i + 314*t] ? R[B[i + 314*t]] * R[C[i + 314*t]] : R[B[i + 314*t]] + R[C[i + 314*t]]; R[i + 847*t] = Op[i + 315*t] ? R[B[i + 315*t]] * R[C[i + 315*t]] : R[B[i + 315*t]] + R[C[i + 315*t]]; R[i + 848*t] = Op[i + 316*t] ? R[B[i + 316*t]] * R[C[i + 316*t]] : R[B[i + 316*t]] + R[C[i + 316*t]]; R[i + 849*t] = Op[i + 317*t] ? R[B[i + 317*t]] * R[C[i + 317*t]] : R[B[i + 317*t]] + R[C[i + 317*t]]; R[i + 850*t] = Op[i + 318*t] ? R[B[i + 318*t]] * R[C[i + 318*t]] : R[B[i + 318*t]] + R[C[i + 318*t]]; R[i + 851*t] = Op[i + 319*t] ? R[B[i + 319*t]] * R[C[i + 319*t]] : R[B[i + 319*t]] + R[C[i + 319*t]]; R[i + 852*t] = Op[i + 320*t] ? R[B[i + 320*t]] * R[C[i + 320*t]] : R[B[i + 320*t]] + R[C[i + 320*t]]; R[i + 853*t] = Op[i + 321*t] ? R[B[i + 321*t]] * R[C[i + 321*t]] : R[B[i + 321*t]] + R[C[i + 321*t]]; R[i + 854*t] = Op[i + 322*t] ? R[B[i + 322*t]] * R[C[i + 322*t]] : R[B[i + 322*t]] + R[C[i + 322*t]]; R[i + 855*t] = Op[i + 323*t] ? R[B[i + 323*t]] * R[C[i + 323*t]] : R[B[i + 323*t]] + R[C[i + 323*t]]; R[i + 856*t] = Op[i + 324*t] ? R[B[i + 324*t]] * R[C[i + 324*t]] : R[B[i + 324*t]] + R[C[i + 324*t]]; R[i + 857*t] = Op[i + 325*t] ? R[B[i + 325*t]] * R[C[i + 325*t]] : R[B[i + 325*t]] + R[C[i + 325*t]]; R[i + 858*t] = Op[i + 326*t] ? R[B[i + 326*t]] * R[C[i + 326*t]] : R[B[i + 326*t]] + R[C[i + 326*t]]; R[i + 859*t] = Op[i + 327*t] ? R[B[i + 327*t]] * R[C[i + 327*t]] : R[B[i + 327*t]] + R[C[i + 327*t]]; R[i + 860*t] = Op[i + 328*t] ? R[B[i + 328*t]] * R[C[i + 328*t]] : R[B[i + 328*t]] + R[C[i + 328*t]]; R[i + 861*t] = Op[i + 329*t] ? R[B[i + 329*t]] * R[C[i + 329*t]] : R[B[i + 329*t]] + R[C[i + 329*t]]; R[i + 862*t] = Op[i + 330*t] ? R[B[i + 330*t]] * R[C[i + 330*t]] : R[B[i + 330*t]] + R[C[i + 330*t]]; R[i + 863*t] = Op[i + 331*t] ? R[B[i + 331*t]] * R[C[i + 331*t]] : R[B[i + 331*t]] + R[C[i + 331*t]]; R[i + 864*t] = Op[i + 332*t] ? R[B[i + 332*t]] * R[C[i + 332*t]] : R[B[i + 332*t]] + R[C[i + 332*t]]; R[i + 865*t] = Op[i + 333*t] ? R[B[i + 333*t]] * R[C[i + 333*t]] : R[B[i + 333*t]] + R[C[i + 333*t]]; R[i + 866*t] = Op[i + 334*t] ? R[B[i + 334*t]] * R[C[i + 334*t]] : R[B[i + 334*t]] + R[C[i + 334*t]]; R[i + 867*t] = Op[i + 335*t] ? R[B[i + 335*t]] * R[C[i + 335*t]] : R[B[i + 335*t]] + R[C[i + 335*t]]; R[i + 868*t] = Op[i + 336*t] ? R[B[i + 336*t]] * R[C[i + 336*t]] : R[B[i + 336*t]] + R[C[i + 336*t]]; R[i + 869*t] = Op[i + 337*t] ? R[B[i + 337*t]] * R[C[i + 337*t]] : R[B[i + 337*t]] + R[C[i + 337*t]]; R[i + 870*t] = Op[i + 338*t] ? R[B[i + 338*t]] * R[C[i + 338*t]] : R[B[i + 338*t]] + R[C[i + 338*t]]; R[i + 871*t] = Op[i + 339*t] ? R[B[i + 339*t]] * R[C[i + 339*t]] : R[B[i + 339*t]] + R[C[i + 339*t]]; R[i + 872*t] = Op[i + 340*t] ? R[B[i + 340*t]] * R[C[i + 340*t]] : R[B[i + 340*t]] + R[C[i + 340*t]]; R[i + 873*t] = Op[i + 341*t] ? R[B[i + 341*t]] * R[C[i + 341*t]] : R[B[i + 341*t]] + R[C[i + 341*t]]; R[i + 874*t] = Op[i + 342*t] ? R[B[i + 342*t]] * R[C[i + 342*t]] : R[B[i + 342*t]] + R[C[i + 342*t]]; R[i + 875*t] = Op[i + 343*t] ? R[B[i + 343*t]] * R[C[i + 343*t]] : R[B[i + 343*t]] + R[C[i + 343*t]]; R[i + 876*t] = Op[i + 344*t] ? R[B[i + 344*t]] * R[C[i + 344*t]] : R[B[i + 344*t]] + R[C[i + 344*t]]; R[i + 877*t] = Op[i + 345*t] ? R[B[i + 345*t]] * R[C[i + 345*t]] : R[B[i + 345*t]] + R[C[i + 345*t]]; R[i + 878*t] = Op[i + 346*t] ? R[B[i + 346*t]] * R[C[i + 346*t]] : R[B[i + 346*t]] + R[C[i + 346*t]]; R[i + 879*t] = Op[i + 347*t] ? R[B[i + 347*t]] * R[C[i + 347*t]] : R[B[i + 347*t]] + R[C[i + 347*t]]; R[i + 880*t] = Op[i + 348*t] ? R[B[i + 348*t]] * R[C[i + 348*t]] : R[B[i + 348*t]] + R[C[i + 348*t]]; R[i + 881*t] = Op[i + 349*t] ? R[B[i + 349*t]] * R[C[i + 349*t]] : R[B[i + 349*t]] + R[C[i + 349*t]]; R[i + 882*t] = Op[i + 350*t] ? R[B[i + 350*t]] * R[C[i + 350*t]] : R[B[i + 350*t]] + R[C[i + 350*t]]; R[i + 883*t] = Op[i + 351*t] ? R[B[i + 351*t]] * R[C[i + 351*t]] : R[B[i + 351*t]] + R[C[i + 351*t]]; R[i + 884*t] = Op[i + 352*t] ? R[B[i + 352*t]] * R[C[i + 352*t]] : R[B[i + 352*t]] + R[C[i + 352*t]]; R[i + 885*t] = Op[i + 353*t] ? R[B[i + 353*t]] * R[C[i + 353*t]] : R[B[i + 353*t]] + R[C[i + 353*t]]; R[i + 886*t] = Op[i + 354*t] ? R[B[i + 354*t]] * R[C[i + 354*t]] : R[B[i + 354*t]] + R[C[i + 354*t]]; __syncthreads(); R[i + 887*t] = Op[i + 355*t] ? R[B[i + 355*t]] * R[C[i + 355*t]] : R[B[i + 355*t]] + R[C[i + 355*t]]; R[i + 888*t] = Op[i + 356*t] ? R[B[i + 356*t]] * R[C[i + 356*t]] : R[B[i + 356*t]] + R[C[i + 356*t]]; R[i + 889*t] = Op[i + 357*t] ? R[B[i + 357*t]] * R[C[i + 357*t]] : R[B[i + 357*t]] + R[C[i + 357*t]]; R[i + 890*t] = Op[i + 358*t] ? R[B[i + 358*t]] * R[C[i + 358*t]] : R[B[i + 358*t]] + R[C[i + 358*t]]; R[i + 891*t] = Op[i + 359*t] ? R[B[i + 359*t]] * R[C[i + 359*t]] : R[B[i + 359*t]] + R[C[i + 359*t]]; R[i + 892*t] = Op[i + 360*t] ? R[B[i + 360*t]] * R[C[i + 360*t]] : R[B[i + 360*t]] + R[C[i + 360*t]]; R[i + 893*t] = Op[i + 361*t] ? R[B[i + 361*t]] * R[C[i + 361*t]] : R[B[i + 361*t]] + R[C[i + 361*t]]; R[i + 894*t] = Op[i + 362*t] ? R[B[i + 362*t]] * R[C[i + 362*t]] : R[B[i + 362*t]] + R[C[i + 362*t]]; R[i + 895*t] = Op[i + 363*t] ? R[B[i + 363*t]] * R[C[i + 363*t]] : R[B[i + 363*t]] + R[C[i + 363*t]]; R[i + 896*t] = Op[i + 364*t] ? R[B[i + 364*t]] * R[C[i + 364*t]] : R[B[i + 364*t]] + R[C[i + 364*t]]; R[i + 897*t] = Op[i + 365*t] ? R[B[i + 365*t]] * R[C[i + 365*t]] : R[B[i + 365*t]] + R[C[i + 365*t]]; R[i + 898*t] = Op[i + 366*t] ? R[B[i + 366*t]] * R[C[i + 366*t]] : R[B[i + 366*t]] + R[C[i + 366*t]]; R[i + 899*t] = Op[i + 367*t] ? R[B[i + 367*t]] * R[C[i + 367*t]] : R[B[i + 367*t]] + R[C[i + 367*t]]; R[i + 900*t] = Op[i + 368*t] ? R[B[i + 368*t]] * R[C[i + 368*t]] : R[B[i + 368*t]] + R[C[i + 368*t]]; R[i + 901*t] = Op[i + 369*t] ? R[B[i + 369*t]] * R[C[i + 369*t]] : R[B[i + 369*t]] + R[C[i + 369*t]]; R[i + 902*t] = Op[i + 370*t] ? R[B[i + 370*t]] * R[C[i + 370*t]] : R[B[i + 370*t]] + R[C[i + 370*t]]; R[i + 903*t] = Op[i + 371*t] ? R[B[i + 371*t]] * R[C[i + 371*t]] : R[B[i + 371*t]] + R[C[i + 371*t]]; R[i + 904*t] = Op[i + 372*t] ? R[B[i + 372*t]] * R[C[i + 372*t]] : R[B[i + 372*t]] + R[C[i + 372*t]]; R[i + 905*t] = Op[i + 373*t] ? R[B[i + 373*t]] * R[C[i + 373*t]] : R[B[i + 373*t]] + R[C[i + 373*t]]; R[i + 906*t] = Op[i + 374*t] ? R[B[i + 374*t]] * R[C[i + 374*t]] : R[B[i + 374*t]] + R[C[i + 374*t]]; R[i + 907*t] = Op[i + 375*t] ? R[B[i + 375*t]] * R[C[i + 375*t]] : R[B[i + 375*t]] + R[C[i + 375*t]]; R[i + 908*t] = Op[i + 376*t] ? R[B[i + 376*t]] * R[C[i + 376*t]] : R[B[i + 376*t]] + R[C[i + 376*t]]; R[i + 909*t] = Op[i + 377*t] ? R[B[i + 377*t]] * R[C[i + 377*t]] : R[B[i + 377*t]] + R[C[i + 377*t]]; R[i + 910*t] = Op[i + 378*t] ? R[B[i + 378*t]] * R[C[i + 378*t]] : R[B[i + 378*t]] + R[C[i + 378*t]]; R[i + 911*t] = Op[i + 379*t] ? R[B[i + 379*t]] * R[C[i + 379*t]] : R[B[i + 379*t]] + R[C[i + 379*t]]; R[i + 912*t] = Op[i + 380*t] ? R[B[i + 380*t]] * R[C[i + 380*t]] : R[B[i + 380*t]] + R[C[i + 380*t]]; R[i + 913*t] = Op[i + 381*t] ? R[B[i + 381*t]] * R[C[i + 381*t]] : R[B[i + 381*t]] + R[C[i + 381*t]]; R[i + 914*t] = Op[i + 382*t] ? R[B[i + 382*t]] * R[C[i + 382*t]] : R[B[i + 382*t]] + R[C[i + 382*t]]; R[i + 915*t] = Op[i + 383*t] ? R[B[i + 383*t]] * R[C[i + 383*t]] : R[B[i + 383*t]] + R[C[i + 383*t]]; R[i + 916*t] = Op[i + 384*t] ? R[B[i + 384*t]] * R[C[i + 384*t]] : R[B[i + 384*t]] + R[C[i + 384*t]]; R[i + 917*t] = Op[i + 385*t] ? R[B[i + 385*t]] * R[C[i + 385*t]] : R[B[i + 385*t]] + R[C[i + 385*t]]; R[i + 918*t] = Op[i + 386*t] ? R[B[i + 386*t]] * R[C[i + 386*t]] : R[B[i + 386*t]] + R[C[i + 386*t]]; R[i + 919*t] = Op[i + 387*t] ? R[B[i + 387*t]] * R[C[i + 387*t]] : R[B[i + 387*t]] + R[C[i + 387*t]]; R[i + 920*t] = Op[i + 388*t] ? R[B[i + 388*t]] * R[C[i + 388*t]] : R[B[i + 388*t]] + R[C[i + 388*t]]; R[i + 921*t] = Op[i + 389*t] ? R[B[i + 389*t]] * R[C[i + 389*t]] : R[B[i + 389*t]] + R[C[i + 389*t]]; R[i + 922*t] = Op[i + 390*t] ? R[B[i + 390*t]] * R[C[i + 390*t]] : R[B[i + 390*t]] + R[C[i + 390*t]]; R[i + 923*t] = Op[i + 391*t] ? R[B[i + 391*t]] * R[C[i + 391*t]] : R[B[i + 391*t]] + R[C[i + 391*t]]; R[i + 924*t] = Op[i + 392*t] ? R[B[i + 392*t]] * R[C[i + 392*t]] : R[B[i + 392*t]] + R[C[i + 392*t]]; R[i + 925*t] = Op[i + 393*t] ? R[B[i + 393*t]] * R[C[i + 393*t]] : R[B[i + 393*t]] + R[C[i + 393*t]]; R[i + 926*t] = Op[i + 394*t] ? R[B[i + 394*t]] * R[C[i + 394*t]] : R[B[i + 394*t]] + R[C[i + 394*t]]; R[i + 927*t] = Op[i + 395*t] ? R[B[i + 395*t]] * R[C[i + 395*t]] : R[B[i + 395*t]] + R[C[i + 395*t]]; R[i + 928*t] = Op[i + 396*t] ? R[B[i + 396*t]] * R[C[i + 396*t]] : R[B[i + 396*t]] + R[C[i + 396*t]]; R[i + 929*t] = Op[i + 397*t] ? R[B[i + 397*t]] * R[C[i + 397*t]] : R[B[i + 397*t]] + R[C[i + 397*t]]; R[i + 930*t] = Op[i + 398*t] ? R[B[i + 398*t]] * R[C[i + 398*t]] : R[B[i + 398*t]] + R[C[i + 398*t]]; R[i + 931*t] = Op[i + 399*t] ? R[B[i + 399*t]] * R[C[i + 399*t]] : R[B[i + 399*t]] + R[C[i + 399*t]]; R[i + 932*t] = Op[i + 400*t] ? R[B[i + 400*t]] * R[C[i + 400*t]] : R[B[i + 400*t]] + R[C[i + 400*t]]; R[i + 933*t] = Op[i + 401*t] ? R[B[i + 401*t]] * R[C[i + 401*t]] : R[B[i + 401*t]] + R[C[i + 401*t]]; R[i + 934*t] = Op[i + 402*t] ? R[B[i + 402*t]] * R[C[i + 402*t]] : R[B[i + 402*t]] + R[C[i + 402*t]]; R[i + 935*t] = Op[i + 403*t] ? R[B[i + 403*t]] * R[C[i + 403*t]] : R[B[i + 403*t]] + R[C[i + 403*t]]; R[i + 936*t] = Op[i + 404*t] ? R[B[i + 404*t]] * R[C[i + 404*t]] : R[B[i + 404*t]] + R[C[i + 404*t]]; R[i + 937*t] = Op[i + 405*t] ? R[B[i + 405*t]] * R[C[i + 405*t]] : R[B[i + 405*t]] + R[C[i + 405*t]]; R[i + 938*t] = Op[i + 406*t] ? R[B[i + 406*t]] * R[C[i + 406*t]] : R[B[i + 406*t]] + R[C[i + 406*t]]; R[i + 939*t] = Op[i + 407*t] ? R[B[i + 407*t]] * R[C[i + 407*t]] : R[B[i + 407*t]] + R[C[i + 407*t]]; R[i + 940*t] = Op[i + 408*t] ? R[B[i + 408*t]] * R[C[i + 408*t]] : R[B[i + 408*t]] + R[C[i + 408*t]]; R[i + 941*t] = Op[i + 409*t] ? R[B[i + 409*t]] * R[C[i + 409*t]] : R[B[i + 409*t]] + R[C[i + 409*t]]; R[i + 942*t] = Op[i + 410*t] ? R[B[i + 410*t]] * R[C[i + 410*t]] : R[B[i + 410*t]] + R[C[i + 410*t]]; R[i + 943*t] = Op[i + 411*t] ? R[B[i + 411*t]] * R[C[i + 411*t]] : R[B[i + 411*t]] + R[C[i + 411*t]]; R[i + 944*t] = Op[i + 412*t] ? R[B[i + 412*t]] * R[C[i + 412*t]] : R[B[i + 412*t]] + R[C[i + 412*t]]; R[i + 945*t] = Op[i + 413*t] ? R[B[i + 413*t]] * R[C[i + 413*t]] : R[B[i + 413*t]] + R[C[i + 413*t]]; R[i + 946*t] = Op[i + 414*t] ? R[B[i + 414*t]] * R[C[i + 414*t]] : R[B[i + 414*t]] + R[C[i + 414*t]]; R[i + 947*t] = Op[i + 415*t] ? R[B[i + 415*t]] * R[C[i + 415*t]] : R[B[i + 415*t]] + R[C[i + 415*t]]; R[i + 948*t] = Op[i + 416*t] ? R[B[i + 416*t]] * R[C[i + 416*t]] : R[B[i + 416*t]] + R[C[i + 416*t]]; R[i + 949*t] = Op[i + 417*t] ? R[B[i + 417*t]] * R[C[i + 417*t]] : R[B[i + 417*t]] + R[C[i + 417*t]]; R[i + 950*t] = Op[i + 418*t] ? R[B[i + 418*t]] * R[C[i + 418*t]] : R[B[i + 418*t]] + R[C[i + 418*t]]; R[i + 951*t] = Op[i + 419*t] ? R[B[i + 419*t]] * R[C[i + 419*t]] : R[B[i + 419*t]] + R[C[i + 419*t]]; R[i + 952*t] = Op[i + 420*t] ? R[B[i + 420*t]] * R[C[i + 420*t]] : R[B[i + 420*t]] + R[C[i + 420*t]]; R[i + 953*t] = Op[i + 421*t] ? R[B[i + 421*t]] * R[C[i + 421*t]] : R[B[i + 421*t]] + R[C[i + 421*t]]; R[i + 954*t] = Op[i + 422*t] ? R[B[i + 422*t]] * R[C[i + 422*t]] : R[B[i + 422*t]] + R[C[i + 422*t]]; R[i + 955*t] = Op[i + 423*t] ? R[B[i + 423*t]] * R[C[i + 423*t]] : R[B[i + 423*t]] + R[C[i + 423*t]]; R[i + 956*t] = Op[i + 424*t] ? R[B[i + 424*t]] * R[C[i + 424*t]] : R[B[i + 424*t]] + R[C[i + 424*t]]; R[i + 957*t] = Op[i + 425*t] ? R[B[i + 425*t]] * R[C[i + 425*t]] : R[B[i + 425*t]] + R[C[i + 425*t]]; R[i + 958*t] = Op[i + 426*t] ? R[B[i + 426*t]] * R[C[i + 426*t]] : R[B[i + 426*t]] + R[C[i + 426*t]]; R[i + 959*t] = Op[i + 427*t] ? R[B[i + 427*t]] * R[C[i + 427*t]] : R[B[i + 427*t]] + R[C[i + 427*t]]; R[i + 960*t] = Op[i + 428*t] ? R[B[i + 428*t]] * R[C[i + 428*t]] : R[B[i + 428*t]] + R[C[i + 428*t]]; R[i + 961*t] = Op[i + 429*t] ? R[B[i + 429*t]] * R[C[i + 429*t]] : R[B[i + 429*t]] + R[C[i + 429*t]]; R[i + 962*t] = Op[i + 430*t] ? R[B[i + 430*t]] * R[C[i + 430*t]] : R[B[i + 430*t]] + R[C[i + 430*t]]; R[i + 963*t] = Op[i + 431*t] ? R[B[i + 431*t]] * R[C[i + 431*t]] : R[B[i + 431*t]] + R[C[i + 431*t]]; R[i + 964*t] = Op[i + 432*t] ? R[B[i + 432*t]] * R[C[i + 432*t]] : R[B[i + 432*t]] + R[C[i + 432*t]]; R[i + 965*t] = Op[i + 433*t] ? R[B[i + 433*t]] * R[C[i + 433*t]] : R[B[i + 433*t]] + R[C[i + 433*t]]; R[i + 966*t] = Op[i + 434*t] ? R[B[i + 434*t]] * R[C[i + 434*t]] : R[B[i + 434*t]] + R[C[i + 434*t]]; R[i + 967*t] = Op[i + 435*t] ? R[B[i + 435*t]] * R[C[i + 435*t]] : R[B[i + 435*t]] + R[C[i + 435*t]]; R[i + 968*t] = Op[i + 436*t] ? R[B[i + 436*t]] * R[C[i + 436*t]] : R[B[i + 436*t]] + R[C[i + 436*t]]; R[i + 969*t] = Op[i + 437*t] ? R[B[i + 437*t]] * R[C[i + 437*t]] : R[B[i + 437*t]] + R[C[i + 437*t]]; R[i + 970*t] = Op[i + 438*t] ? R[B[i + 438*t]] * R[C[i + 438*t]] : R[B[i + 438*t]] + R[C[i + 438*t]]; R[i + 971*t] = Op[i + 439*t] ? R[B[i + 439*t]] * R[C[i + 439*t]] : R[B[i + 439*t]] + R[C[i + 439*t]]; R[i + 972*t] = Op[i + 440*t] ? R[B[i + 440*t]] * R[C[i + 440*t]] : R[B[i + 440*t]] + R[C[i + 440*t]]; R[i + 973*t] = Op[i + 441*t] ? R[B[i + 441*t]] * R[C[i + 441*t]] : R[B[i + 441*t]] + R[C[i + 441*t]]; R[i + 974*t] = Op[i + 442*t] ? R[B[i + 442*t]] * R[C[i + 442*t]] : R[B[i + 442*t]] + R[C[i + 442*t]]; __syncthreads(); R[i + 975*t] = Op[i + 443*t] ? R[B[i + 443*t]] * R[C[i + 443*t]] : R[B[i + 443*t]] + R[C[i + 443*t]]; R[i + 976*t] = Op[i + 444*t] ? R[B[i + 444*t]] * R[C[i + 444*t]] : R[B[i + 444*t]] + R[C[i + 444*t]]; R[i + 977*t] = Op[i + 445*t] ? R[B[i + 445*t]] * R[C[i + 445*t]] : R[B[i + 445*t]] + R[C[i + 445*t]]; R[i + 978*t] = Op[i + 446*t] ? R[B[i + 446*t]] * R[C[i + 446*t]] : R[B[i + 446*t]] + R[C[i + 446*t]]; R[i + 979*t] = Op[i + 447*t] ? R[B[i + 447*t]] * R[C[i + 447*t]] : R[B[i + 447*t]] + R[C[i + 447*t]]; R[i + 980*t] = Op[i + 448*t] ? R[B[i + 448*t]] * R[C[i + 448*t]] : R[B[i + 448*t]] + R[C[i + 448*t]]; R[i + 981*t] = Op[i + 449*t] ? R[B[i + 449*t]] * R[C[i + 449*t]] : R[B[i + 449*t]] + R[C[i + 449*t]]; R[i + 982*t] = Op[i + 450*t] ? R[B[i + 450*t]] * R[C[i + 450*t]] : R[B[i + 450*t]] + R[C[i + 450*t]]; R[i + 983*t] = Op[i + 451*t] ? R[B[i + 451*t]] * R[C[i + 451*t]] : R[B[i + 451*t]] + R[C[i + 451*t]]; R[i + 984*t] = Op[i + 452*t] ? R[B[i + 452*t]] * R[C[i + 452*t]] : R[B[i + 452*t]] + R[C[i + 452*t]]; R[i + 985*t] = Op[i + 453*t] ? R[B[i + 453*t]] * R[C[i + 453*t]] : R[B[i + 453*t]] + R[C[i + 453*t]]; R[i + 986*t] = Op[i + 454*t] ? R[B[i + 454*t]] * R[C[i + 454*t]] : R[B[i + 454*t]] + R[C[i + 454*t]]; R[i + 987*t] = Op[i + 455*t] ? R[B[i + 455*t]] * R[C[i + 455*t]] : R[B[i + 455*t]] + R[C[i + 455*t]]; R[i + 988*t] = Op[i + 456*t] ? R[B[i + 456*t]] * R[C[i + 456*t]] : R[B[i + 456*t]] + R[C[i + 456*t]]; R[i + 989*t] = Op[i + 457*t] ? R[B[i + 457*t]] * R[C[i + 457*t]] : R[B[i + 457*t]] + R[C[i + 457*t]]; R[i + 990*t] = Op[i + 458*t] ? R[B[i + 458*t]] * R[C[i + 458*t]] : R[B[i + 458*t]] + R[C[i + 458*t]]; R[i + 991*t] = Op[i + 459*t] ? R[B[i + 459*t]] * R[C[i + 459*t]] : R[B[i + 459*t]] + R[C[i + 459*t]]; R[i + 992*t] = Op[i + 460*t] ? R[B[i + 460*t]] * R[C[i + 460*t]] : R[B[i + 460*t]] + R[C[i + 460*t]]; R[i + 993*t] = Op[i + 461*t] ? R[B[i + 461*t]] * R[C[i + 461*t]] : R[B[i + 461*t]] + R[C[i + 461*t]]; R[i + 994*t] = Op[i + 462*t] ? R[B[i + 462*t]] * R[C[i + 462*t]] : R[B[i + 462*t]] + R[C[i + 462*t]]; R[i + 995*t] = Op[i + 463*t] ? R[B[i + 463*t]] * R[C[i + 463*t]] : R[B[i + 463*t]] + R[C[i + 463*t]]; R[i + 996*t] = Op[i + 464*t] ? R[B[i + 464*t]] * R[C[i + 464*t]] : R[B[i + 464*t]] + R[C[i + 464*t]]; R[i + 997*t] = Op[i + 465*t] ? R[B[i + 465*t]] * R[C[i + 465*t]] : R[B[i + 465*t]] + R[C[i + 465*t]]; R[i + 998*t] = Op[i + 466*t] ? R[B[i + 466*t]] * R[C[i + 466*t]] : R[B[i + 466*t]] + R[C[i + 466*t]]; R[i + 999*t] = Op[i + 467*t] ? R[B[i + 467*t]] * R[C[i + 467*t]] : R[B[i + 467*t]] + R[C[i + 467*t]]; R[i + 1000*t] = Op[i + 468*t] ? R[B[i + 468*t]] * R[C[i + 468*t]] : R[B[i + 468*t]] + R[C[i + 468*t]]; R[i + 1001*t] = Op[i + 469*t] ? R[B[i + 469*t]] * R[C[i + 469*t]] : R[B[i + 469*t]] + R[C[i + 469*t]]; R[i + 1002*t] = Op[i + 470*t] ? R[B[i + 470*t]] * R[C[i + 470*t]] : R[B[i + 470*t]] + R[C[i + 470*t]]; R[i + 1003*t] = Op[i + 471*t] ? R[B[i + 471*t]] * R[C[i + 471*t]] : R[B[i + 471*t]] + R[C[i + 471*t]]; R[i + 1004*t] = Op[i + 472*t] ? R[B[i + 472*t]] * R[C[i + 472*t]] : R[B[i + 472*t]] + R[C[i + 472*t]]; R[i + 1005*t] = Op[i + 473*t] ? R[B[i + 473*t]] * R[C[i + 473*t]] : R[B[i + 473*t]] + R[C[i + 473*t]]; R[i + 1006*t] = Op[i + 474*t] ? R[B[i + 474*t]] * R[C[i + 474*t]] : R[B[i + 474*t]] + R[C[i + 474*t]]; R[i + 1007*t] = Op[i + 475*t] ? R[B[i + 475*t]] * R[C[i + 475*t]] : R[B[i + 475*t]] + R[C[i + 475*t]]; R[i + 1008*t] = Op[i + 476*t] ? R[B[i + 476*t]] * R[C[i + 476*t]] : R[B[i + 476*t]] + R[C[i + 476*t]]; R[i + 1009*t] = Op[i + 477*t] ? R[B[i + 477*t]] * R[C[i + 477*t]] : R[B[i + 477*t]] + R[C[i + 477*t]]; R[i + 1010*t] = Op[i + 478*t] ? R[B[i + 478*t]] * R[C[i + 478*t]] : R[B[i + 478*t]] + R[C[i + 478*t]]; R[i + 1011*t] = Op[i + 479*t] ? R[B[i + 479*t]] * R[C[i + 479*t]] : R[B[i + 479*t]] + R[C[i + 479*t]]; R[i + 1012*t] = Op[i + 480*t] ? R[B[i + 480*t]] * R[C[i + 480*t]] : R[B[i + 480*t]] + R[C[i + 480*t]]; R[i + 1013*t] = Op[i + 481*t] ? R[B[i + 481*t]] * R[C[i + 481*t]] : R[B[i + 481*t]] + R[C[i + 481*t]]; R[i + 1014*t] = Op[i + 482*t] ? R[B[i + 482*t]] * R[C[i + 482*t]] : R[B[i + 482*t]] + R[C[i + 482*t]]; R[i + 1015*t] = Op[i + 483*t] ? R[B[i + 483*t]] * R[C[i + 483*t]] : R[B[i + 483*t]] + R[C[i + 483*t]]; __syncthreads(); R[i + 1016*t] = Op[i + 484*t] ? R[B[i + 484*t]] * R[C[i + 484*t]] : R[B[i + 484*t]] + R[C[i + 484*t]]; R[i + 1017*t] = Op[i + 485*t] ? R[B[i + 485*t]] * R[C[i + 485*t]] : R[B[i + 485*t]] + R[C[i + 485*t]]; R[i + 1018*t] = Op[i + 486*t] ? R[B[i + 486*t]] * R[C[i + 486*t]] : R[B[i + 486*t]] + R[C[i + 486*t]]; R[i + 1019*t] = Op[i + 487*t] ? R[B[i + 487*t]] * R[C[i + 487*t]] : R[B[i + 487*t]] + R[C[i + 487*t]]; R[i + 1020*t] = Op[i + 488*t] ? R[B[i + 488*t]] * R[C[i + 488*t]] : R[B[i + 488*t]] + R[C[i + 488*t]]; R[i + 1021*t] = Op[i + 489*t] ? R[B[i + 489*t]] * R[C[i + 489*t]] : R[B[i + 489*t]] + R[C[i + 489*t]]; R[i + 1022*t] = Op[i + 490*t] ? R[B[i + 490*t]] * R[C[i + 490*t]] : R[B[i + 490*t]] + R[C[i + 490*t]]; R[i + 1023*t] = Op[i + 491*t] ? R[B[i + 491*t]] * R[C[i + 491*t]] : R[B[i + 491*t]] + R[C[i + 491*t]]; R[i + 1024*t] = Op[i + 492*t] ? R[B[i + 492*t]] * R[C[i + 492*t]] : R[B[i + 492*t]] + R[C[i + 492*t]]; R[i + 1025*t] = Op[i + 493*t] ? R[B[i + 493*t]] * R[C[i + 493*t]] : R[B[i + 493*t]] + R[C[i + 493*t]]; R[i + 1026*t] = Op[i + 494*t] ? R[B[i + 494*t]] * R[C[i + 494*t]] : R[B[i + 494*t]] + R[C[i + 494*t]]; R[i + 1027*t] = Op[i + 495*t] ? R[B[i + 495*t]] * R[C[i + 495*t]] : R[B[i + 495*t]] + R[C[i + 495*t]]; R[i + 1028*t] = Op[i + 496*t] ? R[B[i + 496*t]] * R[C[i + 496*t]] : R[B[i + 496*t]] + R[C[i + 496*t]]; R[i + 1029*t] = Op[i + 497*t] ? R[B[i + 497*t]] * R[C[i + 497*t]] : R[B[i + 497*t]] + R[C[i + 497*t]]; R[i + 1030*t] = Op[i + 498*t] ? R[B[i + 498*t]] * R[C[i + 498*t]] : R[B[i + 498*t]] + R[C[i + 498*t]]; R[i + 1031*t] = Op[i + 499*t] ? R[B[i + 499*t]] * R[C[i + 499*t]] : R[B[i + 499*t]] + R[C[i + 499*t]]; R[i + 1032*t] = Op[i + 500*t] ? R[B[i + 500*t]] * R[C[i + 500*t]] : R[B[i + 500*t]] + R[C[i + 500*t]]; R[i + 1033*t] = Op[i + 501*t] ? R[B[i + 501*t]] * R[C[i + 501*t]] : R[B[i + 501*t]] + R[C[i + 501*t]]; R[i + 1034*t] = Op[i + 502*t] ? R[B[i + 502*t]] * R[C[i + 502*t]] : R[B[i + 502*t]] + R[C[i + 502*t]]; R[i + 1035*t] = Op[i + 503*t] ? R[B[i + 503*t]] * R[C[i + 503*t]] : R[B[i + 503*t]] + R[C[i + 503*t]]; R[i + 1036*t] = Op[i + 504*t] ? R[B[i + 504*t]] * R[C[i + 504*t]] : R[B[i + 504*t]] + R[C[i + 504*t]]; R[i + 1037*t] = Op[i + 505*t] ? R[B[i + 505*t]] * R[C[i + 505*t]] : R[B[i + 505*t]] + R[C[i + 505*t]]; R[i + 1038*t] = Op[i + 506*t] ? R[B[i + 506*t]] * R[C[i + 506*t]] : R[B[i + 506*t]] + R[C[i + 506*t]]; R[i + 1039*t] = Op[i + 507*t] ? R[B[i + 507*t]] * R[C[i + 507*t]] : R[B[i + 507*t]] + R[C[i + 507*t]]; R[i + 1040*t] = Op[i + 508*t] ? R[B[i + 508*t]] * R[C[i + 508*t]] : R[B[i + 508*t]] + R[C[i + 508*t]]; R[i + 1041*t] = Op[i + 509*t] ? R[B[i + 509*t]] * R[C[i + 509*t]] : R[B[i + 509*t]] + R[C[i + 509*t]]; R[i + 1042*t] = Op[i + 510*t] ? R[B[i + 510*t]] * R[C[i + 510*t]] : R[B[i + 510*t]] + R[C[i + 510*t]]; R[i + 1043*t] = Op[i + 511*t] ? R[B[i + 511*t]] * R[C[i + 511*t]] : R[B[i + 511*t]] + R[C[i + 511*t]]; R[i + 1044*t] = Op[i + 512*t] ? R[B[i + 512*t]] * R[C[i + 512*t]] : R[B[i + 512*t]] + R[C[i + 512*t]]; R[i + 1045*t] = Op[i + 513*t] ? R[B[i + 513*t]] * R[C[i + 513*t]] : R[B[i + 513*t]] + R[C[i + 513*t]]; R[i + 1046*t] = Op[i + 514*t] ? R[B[i + 514*t]] * R[C[i + 514*t]] : R[B[i + 514*t]] + R[C[i + 514*t]]; R[i + 1047*t] = Op[i + 515*t] ? R[B[i + 515*t]] * R[C[i + 515*t]] : R[B[i + 515*t]] + R[C[i + 515*t]]; R[i + 1048*t] = Op[i + 516*t] ? R[B[i + 516*t]] * R[C[i + 516*t]] : R[B[i + 516*t]] + R[C[i + 516*t]]; R[i + 1049*t] = Op[i + 517*t] ? R[B[i + 517*t]] * R[C[i + 517*t]] : R[B[i + 517*t]] + R[C[i + 517*t]]; R[i + 1050*t] = Op[i + 518*t] ? R[B[i + 518*t]] * R[C[i + 518*t]] : R[B[i + 518*t]] + R[C[i + 518*t]]; R[i + 1051*t] = Op[i + 519*t] ? R[B[i + 519*t]] * R[C[i + 519*t]] : R[B[i + 519*t]] + R[C[i + 519*t]]; R[i + 1052*t] = Op[i + 520*t] ? R[B[i + 520*t]] * R[C[i + 520*t]] : R[B[i + 520*t]] + R[C[i + 520*t]]; R[i + 1053*t] = Op[i + 521*t] ? R[B[i + 521*t]] * R[C[i + 521*t]] : R[B[i + 521*t]] + R[C[i + 521*t]]; R[i + 1054*t] = Op[i + 522*t] ? R[B[i + 522*t]] * R[C[i + 522*t]] : R[B[i + 522*t]] + R[C[i + 522*t]]; R[i + 1055*t] = Op[i + 523*t] ? R[B[i + 523*t]] * R[C[i + 523*t]] : R[B[i + 523*t]] + R[C[i + 523*t]]; R[i + 1056*t] = Op[i + 524*t] ? R[B[i + 524*t]] * R[C[i + 524*t]] : R[B[i + 524*t]] + R[C[i + 524*t]]; __syncthreads(); R[i + 1057*t] = Op[i + 525*t] ? R[B[i + 525*t]] * R[C[i + 525*t]] : R[B[i + 525*t]] + R[C[i + 525*t]]; R[i + 1058*t] = Op[i + 526*t] ? R[B[i + 526*t]] * R[C[i + 526*t]] : R[B[i + 526*t]] + R[C[i + 526*t]]; R[i + 1059*t] = Op[i + 527*t] ? R[B[i + 527*t]] * R[C[i + 527*t]] : R[B[i + 527*t]] + R[C[i + 527*t]]; R[i + 1060*t] = Op[i + 528*t] ? R[B[i + 528*t]] * R[C[i + 528*t]] : R[B[i + 528*t]] + R[C[i + 528*t]]; R[i + 1061*t] = Op[i + 529*t] ? R[B[i + 529*t]] * R[C[i + 529*t]] : R[B[i + 529*t]] + R[C[i + 529*t]]; R[i + 1062*t] = Op[i + 530*t] ? R[B[i + 530*t]] * R[C[i + 530*t]] : R[B[i + 530*t]] + R[C[i + 530*t]]; R[i + 1063*t] = Op[i + 531*t] ? R[B[i + 531*t]] * R[C[i + 531*t]] : R[B[i + 531*t]] + R[C[i + 531*t]]; R[i + 1064*t] = Op[i + 532*t] ? R[B[i + 532*t]] * R[C[i + 532*t]] : R[B[i + 532*t]] + R[C[i + 532*t]]; R[i + 1065*t] = Op[i + 533*t] ? R[B[i + 533*t]] * R[C[i + 533*t]] : R[B[i + 533*t]] + R[C[i + 533*t]]; R[i + 1066*t] = Op[i + 534*t] ? R[B[i + 534*t]] * R[C[i + 534*t]] : R[B[i + 534*t]] + R[C[i + 534*t]]; R[i + 1067*t] = Op[i + 535*t] ? R[B[i + 535*t]] * R[C[i + 535*t]] : R[B[i + 535*t]] + R[C[i + 535*t]]; R[i + 1068*t] = Op[i + 536*t] ? R[B[i + 536*t]] * R[C[i + 536*t]] : R[B[i + 536*t]] + R[C[i + 536*t]]; R[i + 1069*t] = Op[i + 537*t] ? R[B[i + 537*t]] * R[C[i + 537*t]] : R[B[i + 537*t]] + R[C[i + 537*t]]; R[i + 1070*t] = Op[i + 538*t] ? R[B[i + 538*t]] * R[C[i + 538*t]] : R[B[i + 538*t]] + R[C[i + 538*t]]; R[i + 1071*t] = Op[i + 539*t] ? R[B[i + 539*t]] * R[C[i + 539*t]] : R[B[i + 539*t]] + R[C[i + 539*t]]; R[i + 1072*t] = Op[i + 540*t] ? R[B[i + 540*t]] * R[C[i + 540*t]] : R[B[i + 540*t]] + R[C[i + 540*t]]; R[i + 1073*t] = Op[i + 541*t] ? R[B[i + 541*t]] * R[C[i + 541*t]] : R[B[i + 541*t]] + R[C[i + 541*t]]; R[i + 1074*t] = Op[i + 542*t] ? R[B[i + 542*t]] * R[C[i + 542*t]] : R[B[i + 542*t]] + R[C[i + 542*t]]; R[i + 1075*t] = Op[i + 543*t] ? R[B[i + 543*t]] * R[C[i + 543*t]] : R[B[i + 543*t]] + R[C[i + 543*t]]; R[i + 1076*t] = Op[i + 544*t] ? R[B[i + 544*t]] * R[C[i + 544*t]] : R[B[i + 544*t]] + R[C[i + 544*t]]; R[i + 1077*t] = Op[i + 545*t] ? R[B[i + 545*t]] * R[C[i + 545*t]] : R[B[i + 545*t]] + R[C[i + 545*t]]; R[i + 1078*t] = Op[i + 546*t] ? R[B[i + 546*t]] * R[C[i + 546*t]] : R[B[i + 546*t]] + R[C[i + 546*t]]; R[i + 1079*t] = Op[i + 547*t] ? R[B[i + 547*t]] * R[C[i + 547*t]] : R[B[i + 547*t]] + R[C[i + 547*t]]; R[i + 1080*t] = Op[i + 548*t] ? R[B[i + 548*t]] * R[C[i + 548*t]] : R[B[i + 548*t]] + R[C[i + 548*t]]; R[i + 1081*t] = Op[i + 549*t] ? R[B[i + 549*t]] * R[C[i + 549*t]] : R[B[i + 549*t]] + R[C[i + 549*t]]; R[i + 1082*t] = Op[i + 550*t] ? R[B[i + 550*t]] * R[C[i + 550*t]] : R[B[i + 550*t]] + R[C[i + 550*t]]; R[i + 1083*t] = Op[i + 551*t] ? R[B[i + 551*t]] * R[C[i + 551*t]] : R[B[i + 551*t]] + R[C[i + 551*t]]; R[i + 1084*t] = Op[i + 552*t] ? R[B[i + 552*t]] * R[C[i + 552*t]] : R[B[i + 552*t]] + R[C[i + 552*t]]; R[i + 1085*t] = Op[i + 553*t] ? R[B[i + 553*t]] * R[C[i + 553*t]] : R[B[i + 553*t]] + R[C[i + 553*t]]; R[i + 1086*t] = Op[i + 554*t] ? R[B[i + 554*t]] * R[C[i + 554*t]] : R[B[i + 554*t]] + R[C[i + 554*t]]; R[i + 1087*t] = Op[i + 555*t] ? R[B[i + 555*t]] * R[C[i + 555*t]] : R[B[i + 555*t]] + R[C[i + 555*t]]; R[i + 1088*t] = Op[i + 556*t] ? R[B[i + 556*t]] * R[C[i + 556*t]] : R[B[i + 556*t]] + R[C[i + 556*t]]; R[i + 1089*t] = Op[i + 557*t] ? R[B[i + 557*t]] * R[C[i + 557*t]] : R[B[i + 557*t]] + R[C[i + 557*t]]; R[i + 1090*t] = Op[i + 558*t] ? R[B[i + 558*t]] * R[C[i + 558*t]] : R[B[i + 558*t]] + R[C[i + 558*t]]; R[i + 1091*t] = Op[i + 559*t] ? R[B[i + 559*t]] * R[C[i + 559*t]] : R[B[i + 559*t]] + R[C[i + 559*t]]; R[i + 1092*t] = Op[i + 560*t] ? R[B[i + 560*t]] * R[C[i + 560*t]] : R[B[i + 560*t]] + R[C[i + 560*t]]; __syncthreads(); R[i + 1093*t] = Op[i + 561*t] ? R[B[i + 561*t]] * R[C[i + 561*t]] : R[B[i + 561*t]] + R[C[i + 561*t]]; R[i + 1094*t] = Op[i + 562*t] ? R[B[i + 562*t]] * R[C[i + 562*t]] : R[B[i + 562*t]] + R[C[i + 562*t]]; R[i + 1095*t] = Op[i + 563*t] ? R[B[i + 563*t]] * R[C[i + 563*t]] : R[B[i + 563*t]] + R[C[i + 563*t]]; R[i + 1096*t] = Op[i + 564*t] ? R[B[i + 564*t]] * R[C[i + 564*t]] : R[B[i + 564*t]] + R[C[i + 564*t]]; R[i + 1097*t] = Op[i + 565*t] ? R[B[i + 565*t]] * R[C[i + 565*t]] : R[B[i + 565*t]] + R[C[i + 565*t]]; R[i + 1098*t] = Op[i + 566*t] ? R[B[i + 566*t]] * R[C[i + 566*t]] : R[B[i + 566*t]] + R[C[i + 566*t]]; R[i + 1099*t] = Op[i + 567*t] ? R[B[i + 567*t]] * R[C[i + 567*t]] : R[B[i + 567*t]] + R[C[i + 567*t]]; R[i + 1100*t] = Op[i + 568*t] ? R[B[i + 568*t]] * R[C[i + 568*t]] : R[B[i + 568*t]] + R[C[i + 568*t]]; R[i + 1101*t] = Op[i + 569*t] ? R[B[i + 569*t]] * R[C[i + 569*t]] : R[B[i + 569*t]] + R[C[i + 569*t]]; R[i + 1102*t] = Op[i + 570*t] ? R[B[i + 570*t]] * R[C[i + 570*t]] : R[B[i + 570*t]] + R[C[i + 570*t]]; R[i + 1103*t] = Op[i + 571*t] ? R[B[i + 571*t]] * R[C[i + 571*t]] : R[B[i + 571*t]] + R[C[i + 571*t]]; R[i + 1104*t] = Op[i + 572*t] ? R[B[i + 572*t]] * R[C[i + 572*t]] : R[B[i + 572*t]] + R[C[i + 572*t]]; R[i + 1105*t] = Op[i + 573*t] ? R[B[i + 573*t]] * R[C[i + 573*t]] : R[B[i + 573*t]] + R[C[i + 573*t]]; R[i + 1106*t] = Op[i + 574*t] ? R[B[i + 574*t]] * R[C[i + 574*t]] : R[B[i + 574*t]] + R[C[i + 574*t]]; R[i + 1107*t] = Op[i + 575*t] ? R[B[i + 575*t]] * R[C[i + 575*t]] : R[B[i + 575*t]] + R[C[i + 575*t]]; R[i + 1108*t] = Op[i + 576*t] ? R[B[i + 576*t]] * R[C[i + 576*t]] : R[B[i + 576*t]] + R[C[i + 576*t]]; R[i + 1109*t] = Op[i + 577*t] ? R[B[i + 577*t]] * R[C[i + 577*t]] : R[B[i + 577*t]] + R[C[i + 577*t]]; R[i + 1110*t] = Op[i + 578*t] ? R[B[i + 578*t]] * R[C[i + 578*t]] : R[B[i + 578*t]] + R[C[i + 578*t]]; __syncthreads(); R[i + 1111*t] = Op[i + 579*t] ? R[B[i + 579*t]] * R[C[i + 579*t]] : R[B[i + 579*t]] + R[C[i + 579*t]]; R[i + 1112*t] = Op[i + 580*t] ? R[B[i + 580*t]] * R[C[i + 580*t]] : R[B[i + 580*t]] + R[C[i + 580*t]]; R[i + 1113*t] = Op[i + 581*t] ? R[B[i + 581*t]] * R[C[i + 581*t]] : R[B[i + 581*t]] + R[C[i + 581*t]]; R[i + 1114*t] = Op[i + 582*t] ? R[B[i + 582*t]] * R[C[i + 582*t]] : R[B[i + 582*t]] + R[C[i + 582*t]]; R[i + 1115*t] = Op[i + 583*t] ? R[B[i + 583*t]] * R[C[i + 583*t]] : R[B[i + 583*t]] + R[C[i + 583*t]]; R[i + 1116*t] = Op[i + 584*t] ? R[B[i + 584*t]] * R[C[i + 584*t]] : R[B[i + 584*t]] + R[C[i + 584*t]]; R[i + 1117*t] = Op[i + 585*t] ? R[B[i + 585*t]] * R[C[i + 585*t]] : R[B[i + 585*t]] + R[C[i + 585*t]]; R[i + 1118*t] = Op[i + 586*t] ? R[B[i + 586*t]] * R[C[i + 586*t]] : R[B[i + 586*t]] + R[C[i + 586*t]]; R[i + 1119*t] = Op[i + 587*t] ? R[B[i + 587*t]] * R[C[i + 587*t]] : R[B[i + 587*t]] + R[C[i + 587*t]]; R[i + 1120*t] = Op[i + 588*t] ? R[B[i + 588*t]] * R[C[i + 588*t]] : R[B[i + 588*t]] + R[C[i + 588*t]]; R[i + 1121*t] = Op[i + 589*t] ? R[B[i + 589*t]] * R[C[i + 589*t]] : R[B[i + 589*t]] + R[C[i + 589*t]]; R[i + 1122*t] = Op[i + 590*t] ? R[B[i + 590*t]] * R[C[i + 590*t]] : R[B[i + 590*t]] + R[C[i + 590*t]]; R[i + 1123*t] = Op[i + 591*t] ? R[B[i + 591*t]] * R[C[i + 591*t]] : R[B[i + 591*t]] + R[C[i + 591*t]]; R[i + 1124*t] = Op[i + 592*t] ? R[B[i + 592*t]] * R[C[i + 592*t]] : R[B[i + 592*t]] + R[C[i + 592*t]]; R[i + 1125*t] = Op[i + 593*t] ? R[B[i + 593*t]] * R[C[i + 593*t]] : R[B[i + 593*t]] + R[C[i + 593*t]]; R[i + 1126*t] = Op[i + 594*t] ? R[B[i + 594*t]] * R[C[i + 594*t]] : R[B[i + 594*t]] + R[C[i + 594*t]]; R[i + 1127*t] = Op[i + 595*t] ? R[B[i + 595*t]] * R[C[i + 595*t]] : R[B[i + 595*t]] + R[C[i + 595*t]]; __syncthreads(); R[i + 1128*t] = Op[i + 596*t] ? R[B[i + 596*t]] * R[C[i + 596*t]] : R[B[i + 596*t]] + R[C[i + 596*t]]; R[i + 1129*t] = Op[i + 597*t] ? R[B[i + 597*t]] * R[C[i + 597*t]] : R[B[i + 597*t]] + R[C[i + 597*t]]; R[i + 1130*t] = Op[i + 598*t] ? R[B[i + 598*t]] * R[C[i + 598*t]] : R[B[i + 598*t]] + R[C[i + 598*t]]; R[i + 1131*t] = Op[i + 599*t] ? R[B[i + 599*t]] * R[C[i + 599*t]] : R[B[i + 599*t]] + R[C[i + 599*t]]; R[i + 1132*t] = Op[i + 600*t] ? R[B[i + 600*t]] * R[C[i + 600*t]] : R[B[i + 600*t]] + R[C[i + 600*t]]; R[i + 1133*t] = Op[i + 601*t] ? R[B[i + 601*t]] * R[C[i + 601*t]] : R[B[i + 601*t]] + R[C[i + 601*t]]; R[i + 1134*t] = Op[i + 602*t] ? R[B[i + 602*t]] * R[C[i + 602*t]] : R[B[i + 602*t]] + R[C[i + 602*t]]; R[i + 1135*t] = Op[i + 603*t] ? R[B[i + 603*t]] * R[C[i + 603*t]] : R[B[i + 603*t]] + R[C[i + 603*t]]; R[i + 1136*t] = Op[i + 604*t] ? R[B[i + 604*t]] * R[C[i + 604*t]] : R[B[i + 604*t]] + R[C[i + 604*t]]; R[i + 1137*t] = Op[i + 605*t] ? R[B[i + 605*t]] * R[C[i + 605*t]] : R[B[i + 605*t]] + R[C[i + 605*t]]; R[i + 1138*t] = Op[i + 606*t] ? R[B[i + 606*t]] * R[C[i + 606*t]] : R[B[i + 606*t]] + R[C[i + 606*t]]; R[i + 1139*t] = Op[i + 607*t] ? R[B[i + 607*t]] * R[C[i + 607*t]] : R[B[i + 607*t]] + R[C[i + 607*t]]; __syncthreads(); R[i + 1140*t] = Op[i + 608*t] ? R[B[i + 608*t]] * R[C[i + 608*t]] : R[B[i + 608*t]] + R[C[i + 608*t]]; R[i + 1141*t] = Op[i + 609*t] ? R[B[i + 609*t]] * R[C[i + 609*t]] : R[B[i + 609*t]] + R[C[i + 609*t]]; R[i + 1142*t] = Op[i + 610*t] ? R[B[i + 610*t]] * R[C[i + 610*t]] : R[B[i + 610*t]] + R[C[i + 610*t]]; R[i + 1143*t] = Op[i + 611*t] ? R[B[i + 611*t]] * R[C[i + 611*t]] : R[B[i + 611*t]] + R[C[i + 611*t]]; R[i + 1144*t] = Op[i + 612*t] ? R[B[i + 612*t]] * R[C[i + 612*t]] : R[B[i + 612*t]] + R[C[i + 612*t]]; R[i + 1145*t] = Op[i + 613*t] ? R[B[i + 613*t]] * R[C[i + 613*t]] : R[B[i + 613*t]] + R[C[i + 613*t]]; R[i + 1146*t] = Op[i + 614*t] ? R[B[i + 614*t]] * R[C[i + 614*t]] : R[B[i + 614*t]] + R[C[i + 614*t]]; R[i + 1147*t] = Op[i + 615*t] ? R[B[i + 615*t]] * R[C[i + 615*t]] : R[B[i + 615*t]] + R[C[i + 615*t]]; R[i + 1148*t] = Op[i + 616*t] ? R[B[i + 616*t]] * R[C[i + 616*t]] : R[B[i + 616*t]] + R[C[i + 616*t]]; R[i + 1149*t] = Op[i + 617*t] ? R[B[i + 617*t]] * R[C[i + 617*t]] : R[B[i + 617*t]] + R[C[i + 617*t]]; __syncthreads(); R[i + 1150*t] = Op[i + 618*t] ? R[B[i + 618*t]] * R[C[i + 618*t]] : R[B[i + 618*t]] + R[C[i + 618*t]]; R[i + 1151*t] = Op[i + 619*t] ? R[B[i + 619*t]] * R[C[i + 619*t]] : R[B[i + 619*t]] + R[C[i + 619*t]]; R[i + 1152*t] = Op[i + 620*t] ? R[B[i + 620*t]] * R[C[i + 620*t]] : R[B[i + 620*t]] + R[C[i + 620*t]]; R[i + 1153*t] = Op[i + 621*t] ? R[B[i + 621*t]] * R[C[i + 621*t]] : R[B[i + 621*t]] + R[C[i + 621*t]]; R[i + 1154*t] = Op[i + 622*t] ? R[B[i + 622*t]] * R[C[i + 622*t]] : R[B[i + 622*t]] + R[C[i + 622*t]]; R[i + 1155*t] = Op[i + 623*t] ? R[B[i + 623*t]] * R[C[i + 623*t]] : R[B[i + 623*t]] + R[C[i + 623*t]]; R[i + 1156*t] = Op[i + 624*t] ? R[B[i + 624*t]] * R[C[i + 624*t]] : R[B[i + 624*t]] + R[C[i + 624*t]]; R[i + 1157*t] = Op[i + 625*t] ? R[B[i + 625*t]] * R[C[i + 625*t]] : R[B[i + 625*t]] + R[C[i + 625*t]]; R[i + 1158*t] = Op[i + 626*t] ? R[B[i + 626*t]] * R[C[i + 626*t]] : R[B[i + 626*t]] + R[C[i + 626*t]]; R[i + 1159*t] = Op[i + 627*t] ? R[B[i + 627*t]] * R[C[i + 627*t]] : R[B[i + 627*t]] + R[C[i + 627*t]]; __syncthreads(); R[i + 1160*t] = Op[i + 628*t] ? R[B[i + 628*t]] * R[C[i + 628*t]] : R[B[i + 628*t]] + R[C[i + 628*t]]; R[i + 1161*t] = Op[i + 629*t] ? R[B[i + 629*t]] * R[C[i + 629*t]] : R[B[i + 629*t]] + R[C[i + 629*t]]; R[i + 1162*t] = Op[i + 630*t] ? R[B[i + 630*t]] * R[C[i + 630*t]] : R[B[i + 630*t]] + R[C[i + 630*t]]; R[i + 1163*t] = Op[i + 631*t] ? R[B[i + 631*t]] * R[C[i + 631*t]] : R[B[i + 631*t]] + R[C[i + 631*t]]; R[i + 1164*t] = Op[i + 632*t] ? R[B[i + 632*t]] * R[C[i + 632*t]] : R[B[i + 632*t]] + R[C[i + 632*t]]; R[i + 1165*t] = Op[i + 633*t] ? R[B[i + 633*t]] * R[C[i + 633*t]] : R[B[i + 633*t]] + R[C[i + 633*t]]; R[i + 1166*t] = Op[i + 634*t] ? R[B[i + 634*t]] * R[C[i + 634*t]] : R[B[i + 634*t]] + R[C[i + 634*t]]; __syncthreads(); R[i + 1167*t] = Op[i + 635*t] ? R[B[i + 635*t]] * R[C[i + 635*t]] : R[B[i + 635*t]] + R[C[i + 635*t]]; R[i + 1168*t] = Op[i + 636*t] ? R[B[i + 636*t]] * R[C[i + 636*t]] : R[B[i + 636*t]] + R[C[i + 636*t]]; R[i + 1169*t] = Op[i + 637*t] ? R[B[i + 637*t]] * R[C[i + 637*t]] : R[B[i + 637*t]] + R[C[i + 637*t]]; R[i + 1170*t] = Op[i + 638*t] ? R[B[i + 638*t]] * R[C[i + 638*t]] : R[B[i + 638*t]] + R[C[i + 638*t]]; R[i + 1171*t] = Op[i + 639*t] ? R[B[i + 639*t]] * R[C[i + 639*t]] : R[B[i + 639*t]] + R[C[i + 639*t]]; R[i + 1172*t] = Op[i + 640*t] ? R[B[i + 640*t]] * R[C[i + 640*t]] : R[B[i + 640*t]] + R[C[i + 640*t]]; R[i + 1173*t] = Op[i + 641*t] ? R[B[i + 641*t]] * R[C[i + 641*t]] : R[B[i + 641*t]] + R[C[i + 641*t]]; R[i + 1174*t] = Op[i + 642*t] ? R[B[i + 642*t]] * R[C[i + 642*t]] : R[B[i + 642*t]] + R[C[i + 642*t]]; R[i + 1175*t] = Op[i + 643*t] ? R[B[i + 643*t]] * R[C[i + 643*t]] : R[B[i + 643*t]] + R[C[i + 643*t]]; __syncthreads(); R[i + 1176*t] = Op[i + 644*t] ? R[B[i + 644*t]] * R[C[i + 644*t]] : R[B[i + 644*t]] + R[C[i + 644*t]]; R[i + 1177*t] = Op[i + 645*t] ? R[B[i + 645*t]] * R[C[i + 645*t]] : R[B[i + 645*t]] + R[C[i + 645*t]]; R[i + 1178*t] = Op[i + 646*t] ? R[B[i + 646*t]] * R[C[i + 646*t]] : R[B[i + 646*t]] + R[C[i + 646*t]]; R[i + 1179*t] = Op[i + 647*t] ? R[B[i + 647*t]] * R[C[i + 647*t]] : R[B[i + 647*t]] + R[C[i + 647*t]]; R[i + 1180*t] = Op[i + 648*t] ? R[B[i + 648*t]] * R[C[i + 648*t]] : R[B[i + 648*t]] + R[C[i + 648*t]]; R[i + 1181*t] = Op[i + 649*t] ? R[B[i + 649*t]] * R[C[i + 649*t]] : R[B[i + 649*t]] + R[C[i + 649*t]]; R[i + 1182*t] = Op[i + 650*t] ? R[B[i + 650*t]] * R[C[i + 650*t]] : R[B[i + 650*t]] + R[C[i + 650*t]]; __syncthreads(); R[i + 1183*t] = Op[i + 651*t] ? R[B[i + 651*t]] * R[C[i + 651*t]] : R[B[i + 651*t]] + R[C[i + 651*t]]; R[i + 1184*t] = Op[i + 652*t] ? R[B[i + 652*t]] * R[C[i + 652*t]] : R[B[i + 652*t]] + R[C[i + 652*t]]; R[i + 1185*t] = Op[i + 653*t] ? R[B[i + 653*t]] * R[C[i + 653*t]] : R[B[i + 653*t]] + R[C[i + 653*t]]; R[i + 1186*t] = Op[i + 654*t] ? R[B[i + 654*t]] * R[C[i + 654*t]] : R[B[i + 654*t]] + R[C[i + 654*t]]; R[i + 1187*t] = Op[i + 655*t] ? R[B[i + 655*t]] * R[C[i + 655*t]] : R[B[i + 655*t]] + R[C[i + 655*t]]; R[i + 1188*t] = Op[i + 656*t] ? R[B[i + 656*t]] * R[C[i + 656*t]] : R[B[i + 656*t]] + R[C[i + 656*t]]; R[i + 1189*t] = Op[i + 657*t] ? R[B[i + 657*t]] * R[C[i + 657*t]] : R[B[i + 657*t]] + R[C[i + 657*t]]; R[i + 1190*t] = Op[i + 658*t] ? R[B[i + 658*t]] * R[C[i + 658*t]] : R[B[i + 658*t]] + R[C[i + 658*t]]; __syncthreads(); R[i + 1191*t] = Op[i + 659*t] ? R[B[i + 659*t]] * R[C[i + 659*t]] : R[B[i + 659*t]] + R[C[i + 659*t]]; R[i + 1192*t] = Op[i + 660*t] ? R[B[i + 660*t]] * R[C[i + 660*t]] : R[B[i + 660*t]] + R[C[i + 660*t]]; R[i + 1193*t] = Op[i + 661*t] ? R[B[i + 661*t]] * R[C[i + 661*t]] : R[B[i + 661*t]] + R[C[i + 661*t]]; R[i + 1194*t] = Op[i + 662*t] ? R[B[i + 662*t]] * R[C[i + 662*t]] : R[B[i + 662*t]] + R[C[i + 662*t]]; R[i + 1195*t] = Op[i + 663*t] ? R[B[i + 663*t]] * R[C[i + 663*t]] : R[B[i + 663*t]] + R[C[i + 663*t]]; R[i + 1196*t] = Op[i + 664*t] ? R[B[i + 664*t]] * R[C[i + 664*t]] : R[B[i + 664*t]] + R[C[i + 664*t]]; R[i + 1197*t] = Op[i + 665*t] ? R[B[i + 665*t]] * R[C[i + 665*t]] : R[B[i + 665*t]] + R[C[i + 665*t]]; __syncthreads(); R[i + 1198*t] = Op[i + 666*t] ? R[B[i + 666*t]] * R[C[i + 666*t]] : R[B[i + 666*t]] + R[C[i + 666*t]]; R[i + 1199*t] = Op[i + 667*t] ? R[B[i + 667*t]] * R[C[i + 667*t]] : R[B[i + 667*t]] + R[C[i + 667*t]]; R[i + 1200*t] = Op[i + 668*t] ? R[B[i + 668*t]] * R[C[i + 668*t]] : R[B[i + 668*t]] + R[C[i + 668*t]]; R[i + 1201*t] = Op[i + 669*t] ? R[B[i + 669*t]] * R[C[i + 669*t]] : R[B[i + 669*t]] + R[C[i + 669*t]]; R[i + 1202*t] = Op[i + 670*t] ? R[B[i + 670*t]] * R[C[i + 670*t]] : R[B[i + 670*t]] + R[C[i + 670*t]]; __syncthreads(); R[i + 1203*t] = Op[i + 671*t] ? R[B[i + 671*t]] * R[C[i + 671*t]] : R[B[i + 671*t]] + R[C[i + 671*t]]; R[i + 1204*t] = Op[i + 672*t] ? R[B[i + 672*t]] * R[C[i + 672*t]] : R[B[i + 672*t]] + R[C[i + 672*t]]; R[i + 1205*t] = Op[i + 673*t] ? R[B[i + 673*t]] * R[C[i + 673*t]] : R[B[i + 673*t]] + R[C[i + 673*t]]; R[i + 1206*t] = Op[i + 674*t] ? R[B[i + 674*t]] * R[C[i + 674*t]] : R[B[i + 674*t]] + R[C[i + 674*t]]; __syncthreads(); R[i + 1207*t] = Op[i + 675*t] ? R[B[i + 675*t]] * R[C[i + 675*t]] : R[B[i + 675*t]] + R[C[i + 675*t]]; R[i + 1208*t] = Op[i + 676*t] ? R[B[i + 676*t]] * R[C[i + 676*t]] : R[B[i + 676*t]] + R[C[i + 676*t]]; R[i + 1209*t] = Op[i + 677*t] ? R[B[i + 677*t]] * R[C[i + 677*t]] : R[B[i + 677*t]] + R[C[i + 677*t]]; __syncthreads(); R[i + 1210*t] = Op[i + 678*t] ? R[B[i + 678*t]] * R[C[i + 678*t]] : R[B[i + 678*t]] + R[C[i + 678*t]]; R[i + 1211*t] = Op[i + 679*t] ? R[B[i + 679*t]] * R[C[i + 679*t]] : R[B[i + 679*t]] + R[C[i + 679*t]]; R[i + 1212*t] = Op[i + 680*t] ? R[B[i + 680*t]] * R[C[i + 680*t]] : R[B[i + 680*t]] + R[C[i + 680*t]]; __syncthreads(); R[i + 1213*t] = Op[i + 681*t] ? R[B[i + 681*t]] * R[C[i + 681*t]] : R[B[i + 681*t]] + R[C[i + 681*t]]; R[i + 1214*t] = Op[i + 682*t] ? R[B[i + 682*t]] * R[C[i + 682*t]] : R[B[i + 682*t]] + R[C[i + 682*t]]; __syncthreads(); R[i + 1215*t] = Op[i + 683*t] ? R[B[i + 683*t]] * R[C[i + 683*t]] : R[B[i + 683*t]] + R[C[i + 683*t]]; R[i + 1216*t] = Op[i + 684*t] ? R[B[i + 684*t]] * R[C[i + 684*t]] : R[B[i + 684*t]] + R[C[i + 684*t]]; __syncthreads(); R[i + 1217*t] = Op[i + 685*t] ? R[B[i + 685*t]] * R[C[i + 685*t]] : R[B[i + 685*t]] + R[C[i + 685*t]]; R[i + 1218*t] = Op[i + 686*t] ? R[B[i + 686*t]] * R[C[i + 686*t]] : R[B[i + 686*t]] + R[C[i + 686*t]]; __syncthreads(); R[i + 1219*t] = Op[i + 687*t] ? R[B[i + 687*t]] * R[C[i + 687*t]] : R[B[i + 687*t]] + R[C[i + 687*t]]; __syncthreads(); R[i + 1220*t] = Op[i + 688*t] ? R[B[i + 688*t]] * R[C[i + 688*t]] : R[B[i + 688*t]] + R[C[i + 688*t]]; __syncthreads(); R[i + 1221*t] = Op[i + 689*t] ? R[B[i + 689*t]] * R[C[i + 689*t]] : R[B[i + 689*t]] + R[C[i + 689*t]]; __syncthreads(); R[i + 1222*t] = Op[i + 690*t] ? R[B[i + 690*t]] * R[C[i + 690*t]] : R[B[i + 690*t]] + R[C[i + 690*t]]; __syncthreads(); R[i + 1223*t] = Op[i + 691*t] ? R[B[i + 691*t]] * R[C[i + 691*t]] : R[B[i + 691*t]] + R[C[i + 691*t]]; __syncthreads(); R[i + 1224*t] = Op[i + 692*t] ? R[B[i + 692*t]] * R[C[i + 692*t]] : R[B[i + 692*t]] + R[C[i + 692*t]]; __syncthreads(); R[i + 1225*t] = Op[i + 693*t] ? R[B[i + 693*t]] * R[C[i + 693*t]] : R[B[i + 693*t]] + R[C[i + 693*t]]; __syncthreads(); R[i + 1226*t] = Op[i + 694*t] ? R[B[i + 694*t]] * R[C[i + 694*t]] : R[B[i + 694*t]] + R[C[i + 694*t]]; __syncthreads(); R[i + 1227*t] = Op[i + 695*t] ? R[B[i + 695*t]] * R[C[i + 695*t]] : R[B[i + 695*t]] + R[C[i + 695*t]]; __syncthreads(); R[i + 1228*t] = Op[i + 696*t] ? R[B[i + 696*t]] * R[C[i + 696*t]] : R[B[i + 696*t]] + R[C[i + 696*t]]; __syncthreads(); R[i + 1229*t] = Op[i + 697*t] ? R[B[i + 697*t]] * R[C[i + 697*t]] : R[B[i + 697*t]] + R[C[i + 697*t]]; if (i==0) { final += R[1229*t]; } __syncthreads(); } if (i==0) { A[0]= final;} }
19,470
#include "includes.h" __global__ void InvolveVector(float* input, float* output, int inputSize) { int threadId = blockDim.x*blockIdx.y*gridDim.x //rows preceeding current row in grid + blockDim.x*blockIdx.x //blocks preceeding current block + threadIdx.x; if(threadId < inputSize - 1) { output[0] = input[0]; output[threadId + 1] = input[inputSize - threadId - 1]; } }
19,471
#include <stdlib.h> #include <stdio.h> #include <iostream> #include <unistd.h> #include <sys/time.h> __global__ void add(float *array, int dimensions, int num_elements) { int index = (threadIdx.x + blockIdx.x * blockDim.x) * dimensions; // + blockIdx.y * blockDim.y + blockIdx.z * blockDim.z; if (threadIdx.x + blockIdx.x * blockDim.x < num_elements) { for (int d = 0; d < dimensions; d++) { array[index + d] = index + d + 1; } } } __global__ void makezero(float * __restrict__ array, int dimensions, int num_elements) { int index = (threadIdx.x + blockIdx.x * blockDim.x) * dimensions; //int index = threadIdx.x + threadIdx.y + threadIdx.z + blockIdx.x * blockDim.x + blockIdx.y * blockDim.y + blockIdx.z * blockDim.z; if (threadIdx.x + blockIdx.x * blockDim.x < num_elements) { for (int d = 0; d < dimensions; d++) { array[index + d] = 0; } } } //works, don't change __global__ void distance(float * __restrict__ solution, float * __restrict__ array, int dimensions, int size) { int index = threadIdx.x + blockIdx.x * blockDim.x; float dist; if (index < size) { for (int i = 0; i < size; i++) { solution[index*size + i] = 0; for (int d = 0; d < dimensions; d++) { dist = array[i*dimensions + d] - array[index * dimensions + d]; solution[index*size + i] += dist * dist; } solution[index*size + i] = sqrt(solution[index*size + i]); } } } //works, don't change __global__ void distance2(float * __restrict__ solution, float * __restrict__ array, int dimensions, int size) { int index = threadIdx.x + blockIdx.x * blockDim.x; int i = index/size + index; float dist; while (i < size) { solution[index * size + i] = 0; for (int d = 0; d < dimensions; d++) { dist = (array[i * dimensions + d] - array[index * dimensions + d]); solution[index * size + i] += dist * dist; } solution[index*size + i] = sqrt(solution[index*size + i]); i++; } } //works, don't change __global__ void distance3(float * __restrict__ solution, float * __restrict__ array, int dimensions, int x_size) { int index = threadIdx.x + blockIdx.x * blockDim.x; if (index < (x_size * (x_size - 1)) / 2) { float dist; int column; int row; int rev_index = (x_size * (x_size - 1)) / 2 - index - 1; x_size += -1; column = - ((-1 + sqrt(double (1 + 8 * rev_index))) / 2); column = column + x_size - 1; row = index + column + 1 - column * x_size + (column * (column - 1)) / 2; solution[index] = 0; for (int d = 0; d < dimensions; d++) { dist = (array[column * dimensions + d] - array[row * dimensions + d]); solution[index] += dist * dist; } solution[index] = sqrt(solution[index]); } } float array_sum(float * array, int array_length) { int i = 0; float array_sum = 0; for (i = 0; i < array_length; i++) { array_sum += array[i]; } return array_sum; } int check_solution(float * array_solution, int array_size, float test_value) { float array_summation = 0; array_summation = array_sum(array_solution, array_size); if (array_summation == test_value) { printf("Array solution is correct\n"); } else { printf("Array solution is NOT correct: %f \n",array_summation); } return 0; } void print_cuda_error() { cudaError_t error = cudaGetLastError(); if(error != cudaSuccess) { // print the CUDA error message and exit printf("\nCUDA error: %s\n", cudaGetErrorString(error)); } else { printf("\nno CUDA errors, all good\n"); } } float * centroid(float * array, int array_length, int dimensions) { float * average; average = new float [dimensions]; for (int i = 0; i < array_length; i += dimensions) { for (int d = 0; d < dimensions; d ++) { average[d] += array[i + d]; } } for (int d = 0; d < dimensions; d ++) { average[d] = average[d] / (array_length / dimensions); //printf ("%f", average[d]); } return average; } __global__ void move(float * __restrict__ array, float * vector, int dimensions, int x_size) { int index = threadIdx.x + blockIdx.x * blockDim.x; if (index < x_size) { for (int d = 0; d < dimensions; d++) { array[index + d] += vector[d]; } } } int main(void) { cudaEvent_t startEvent, stopEvent; float ms = 0; int num_elements = 5; int dimensions = 3; int repeats = 1000; //int num_bytes = num_elements * dimensions * sizeof(float); struct timeval tv1, tv2; float *device_array = 0; float *host_array = 0; float *host_solution = 0; float *device_solution = 0; // allocate memory for CPU host_array = (float*)malloc(num_elements * dimensions * sizeof(float)); //array on the computer host_solution = (float*)malloc(num_elements * num_elements * sizeof(float)); //distance matrix on the computer // allocate memory for GPU cudaMalloc((void**)&device_array, num_elements * dimensions * sizeof(float)); //GPU array cudaMalloc((void**)&device_solution, num_elements * num_elements * sizeof(float)); // GPU distance matrix // test if solution was correctly initialized check_solution(host_solution, num_elements*num_elements, 0); // create grid int max_gridsize = 1024; dim3 grid_size; // two dimensional grid grid_size.y = 1; grid_size.z = 1; if (num_elements < max_gridsize) { grid_size.x = num_elements; } else { grid_size.x = max_gridsize; } // create blocks int blocks = (num_elements + grid_size.x - 1)/grid_size.x; dim3 block_size; block_size.x = blocks; block_size.y = 1; block_size.z = 1; // print CUDA variables printf("Blocks: %i \n",block_size.x); printf("Grid size: %i \n",grid_size.x); printf("Number of elements: %i \n", num_elements); printf("Dimensions: %i \n", dimensions); printf("\n###########\n"); printf("\nStarted\n"); printf("\n###########\n"); makezero<<<grid_size.x, blocks>>>(device_array, dimensions, num_elements); cudaMemcpy(host_array, device_array, num_elements * dimensions * sizeof(float), cudaMemcpyDeviceToHost); add<<<grid_size.x, blocks>>>(device_array, dimensions, num_elements); cudaEventCreate(&startEvent); cudaEventCreate(&stopEvent); cudaMemcpy(host_array, device_array, num_elements * dimensions * sizeof(float), cudaMemcpyDeviceToHost); cudaMemcpy(device_solution, host_solution, num_elements * num_elements * sizeof(float), cudaMemcpyHostToDevice); cudaEventRecord(startEvent,0); //gettimeofday(&tv1, NULL); //distance<<<1,1024>>>(device_solution, device_array, dimensions, num_elements); //distance<<<1,1>>>(device_solution, device_array, dimensions, num_elements); //cudaMemcpy(host_solution, device_solution, num_elements * num_elements * sizeof(float), cudaMemcpyDeviceToHost); printf ("%i blocks\n",blocks); printf ("%i grid_size.x\n",grid_size.x); //////////////////////////////////////////////////////////////////////////////////////// gettimeofday(&tv1, NULL); for (int i = 0; i < repeats; i++) { distance<<<blocks,grid_size.x>>>(device_solution, device_array, dimensions, num_elements); } cudaDeviceSynchronize(); gettimeofday(&tv2, NULL); cudaMemcpy(host_solution, device_solution, num_elements * num_elements * sizeof(float), cudaMemcpyDeviceToHost); cudaEventRecord(stopEvent,0); cudaEventElapsedTime(&ms, startEvent, stopEvent); cudaMemcpy(host_solution, device_solution, (num_elements*num_elements-num_elements)/2 * sizeof(float), cudaMemcpyDeviceToHost); printf("GPU1 solution: %12.0f \n", array_sum(host_solution, num_elements*num_elements)); printf("Time needed by GPU1: %8.0f millisecs\n", double (tv2.tv_sec-tv1.tv_sec)*1000 + (tv2.tv_usec-tv1.tv_usec)/1000); print_cuda_error(); printf ("%i blocks\n",blocks); printf ("%i grid_size.x\n",grid_size.x); //////////////////////////////////////////////////////////////////////////////////////// gettimeofday(&tv1, NULL); for (int i = 0; i < repeats; i++) { distance2<<<blocks,grid_size.x>>>(device_solution, device_array, dimensions, num_elements); } cudaDeviceSynchronize(); gettimeofday(&tv2, NULL); cudaMemcpy(host_solution, device_solution, num_elements * num_elements * sizeof(float), cudaMemcpyDeviceToHost); cudaEventRecord(stopEvent,0); cudaEventElapsedTime(&ms, startEvent, stopEvent); cudaMemcpy(host_solution, device_solution, (num_elements*num_elements-num_elements)/2 * sizeof(float), cudaMemcpyDeviceToHost); printf ("%i blocks\n",blocks); printf("%i grid_size.x\n", grid_size.x); printf("GPU2 solution: %12.0f \n", array_sum(host_solution, num_elements*num_elements)); printf("Time needed by GPU2 %8.0f millisecs\n", double (tv2.tv_sec-tv1.tv_sec)*1000 + (tv2.tv_usec-tv1.tv_usec)/1000); print_cuda_error(); cudaMemcpy(device_solution, host_solution, (num_elements*num_elements-num_elements)/2 * sizeof(float), cudaMemcpyHostToDevice); //////////////////////////////////////////////////////////////////////////////////////// makezero<<<grid_size.x, blocks>>>(device_solution, dimensions, num_elements); gettimeofday(&tv1, NULL); if ((num_elements*num_elements-num_elements)/2 < max_gridsize) { grid_size.x = num_elements*(num_elements-1)/2; } else { grid_size.x = max_gridsize; } blocks = ((num_elements*num_elements-num_elements)/2 + grid_size.x - 1)/grid_size.x; for (int i = 0; i < repeats; i++) { distance3<<<blocks,grid_size.x>>>(device_solution, device_array, dimensions, num_elements); } cudaDeviceSynchronize(); gettimeofday(&tv2, NULL); cudaMemcpy(host_solution, device_solution, (num_elements*num_elements-num_elements)/2 * sizeof(float), cudaMemcpyDeviceToHost); printf ("\n%i blocks\n",blocks); printf ("%i grid_size.x\n",grid_size.x); printf("GPU3 solution: %12.0f \n", array_sum(host_solution, num_elements*(num_elements-1)/2)); printf("Time needed by GPU3: %8.0f millisecs\n", double (tv2.tv_sec-tv1.tv_sec)*1000 + (tv2.tv_usec-tv1.tv_usec)/1000); print_cuda_error(); //prints array printf("####array######\n"); for(int i = 0; i < num_elements*dimensions && i < 60; i++) { printf("%4.2f", host_array[i]); printf(".. "); } printf("\n"); // prints solution printf("####solution###\n"); for(int i = 0; i < 25 && i<(num_elements*num_elements-num_elements)/2; i++) { printf("%4.2f", host_solution[i]); printf(".. "); } for (int i = 0; i < num_elements; i++) { for (int j = 0; j < num_elements; j++) { host_solution[i * num_elements + j] = 0; } } gettimeofday(&tv1, NULL); //speed test CPU for (int r = 0; r < repeats/10; r++) { for (int i = 0; i < num_elements; i++) { for (int j = i + 1; j < num_elements; j++) { host_solution[i * num_elements + j] = 0; for (int d = 0; d < dimensions; d++) { host_solution[i * num_elements + j] = host_solution[i*num_elements + j] + (host_array[i*dimensions+d]-host_array[j*dimensions+d]) * (host_array[i*dimensions+d]-host_array[j*dimensions+d]); } host_solution[i * num_elements + j] = sqrt(host_solution[i * num_elements + j]); } } } for(int i = 0; i < 50 && i<(num_elements*num_elements-num_elements)/2; i++) { printf("%4.2f", host_solution[i]); printf(".. "); } gettimeofday(&tv2, NULL); printf("\n"); printf("CPU solution: %12.0f \n", array_sum(host_solution, num_elements*num_elements)); printf("Time needed by CPU: %8.0f millisecs\n", double (tv2.tv_sec-tv1.tv_sec)*10000 + (tv2.tv_usec-tv1.tv_usec)/100); //test whether GPU output is correct //for (int i = 0; i < num_elements; i++) { //for (int j = i; j < num_elements; j++) { //if (host_solution[i * num_elements + j] > 0.0000) { //printf("%f", host_solution[i*num_elements + j]); //printf("error\n"); //} //} //} printf("centroid: \n"); float * center_point; center_point = new float [dimensions - 1]; center_point = centroid(host_array, num_elements * dimensions, dimensions); printf("%f \n", center_point[0]); printf("%f \n", center_point[1]); printf("%f \n", center_point[2]); // deallocate memory free(host_array); free(host_solution); cudaFree(device_array); cudaFree(device_solution); cudaEventDestroy(startEvent); cudaEventDestroy(stopEvent); printf("\ndone\n"); return 0; }
19,472
#include <iostream> #include <cuda.h> static void HandleError( cudaError_t err, const char *file, int line) { if (err != cudaSuccess) { std::cout << "Error Name: " << cudaGetErrorName( err ) << std::endl; std::cout << cudaGetErrorString( err ) << " in " << file << " line " << line << std::endl; exit(EXIT_FAILURE); } } #define HANDLE_ERROR(err)(HandleError(err, __FILE__, __LINE__)) class Base { public: __device__ virtual void fun1() const { //__device__ void fun1() const { printf("Base fun1\n"); } __device__ void fun2() const { printf("Base fun2\n"); fun1(); } }; class Derived : public Base { public: __device__ void fun1() const override { //__device__ void fun1() const { printf("Derived fun2\n"); } }; static __global__ void kernel() { //Base *obj = new Base(); Base *obj = new Derived(); printf("inside kernel\n"); obj->fun1(); obj->fun2(); } int main() { cudaDeviceProp prop; int dev; memset(&prop, 0, sizeof(cudaDeviceProp)); prop.major = 1; prop.minor = 0; HANDLE_ERROR( cudaChooseDevice(&dev,&prop) ); float grids = 1; float threads = 1; kernel<<<grids,threads>>>(); HANDLE_ERROR(cudaDeviceSynchronize()); return 0; }
19,473
#include <stdio.h> #include <stdlib.h> #include <sys/time.h> // a = b * c __global__ void mmult(float *a, float *b, float *c, int N) { int row = blockIdx.y; int col = blockIdx.x*32 + threadIdx.x; float sum = 0.0f; for (int n = 0; n < N; ++n) { sum += a[row*N+n]*b[n*N+col]; } c[row*N+col] = sum; } // a[][] = 0, b[][] = 1; c[][] = 1 void minit(float *a, float *b, float *c, int N) { int i, j; for (j = 0; j < N; j++) for (i = 0; i < N; i++) { a[i+N*j] = 0.0f; b[i+N*j] = 1.0f; c[i+N*j] = 1.0f; } } void mprint(float *a, int N, int M) { int i, j; for (j = 0; j < M; j++) { for (i = 0; i < M; i++) printf("%.2f ", a[i+N*j]); printf("...\n"); } printf("...\n"); } int main(int argc, char* argv[]) { long int N = 4096; int T = 32; if (argc == 2) T = atoi(argv[1]); cudaEvent_t start, stop; float time, flop, gflops; float *a = (float *)malloc(N*N*sizeof(float)); float *b = (float *)malloc(N*N*sizeof(float)); float *c = (float *)malloc(N*N*sizeof(float)); minit(a, b, c, N); // allocate device memory float *devPtrA, *devPtrB, *devPtrC; cudaMalloc((void**)&devPtrA, N*N*sizeof(float)); cudaMalloc((void**)&devPtrB, N*N*sizeof(float)); cudaMalloc((void**)&devPtrC, N*N*sizeof(float)); // copy input arrays to the device memory cudaMemcpy(devPtrB, b, N*N*sizeof(float), cudaMemcpyHostToDevice); cudaMemcpy(devPtrC, c, N*N*sizeof(float), cudaMemcpyHostToDevice); cudaMemset(devPtrA, 0, N*N*sizeof(float)); // define grid and thread block sizes dim3 threads(T); dim3 grid(N/T, N); printf("matrix %ix%i\n", N, N); printf("grid %ix%i\n", grid.x, grid.y); printf("block %ix%ix%i\n", threads.x, threads.y, threads.z); cudaEventCreate(&start); cudaEventCreate(&stop); cudaEventRecord(start, 0); // launch GPU kernel mmult<<<grid, threads>>>(devPtrA, devPtrB, devPtrC, N); cudaEventRecord(stop, 0); cudaEventSynchronize(stop); // copy results to host cudaMemcpy(a, devPtrA, N*N*sizeof(float), cudaMemcpyDeviceToHost); mprint(a, N, 5); // free device memory cudaFree(devPtrA); cudaFree(devPtrB); cudaFree(devPtrC); free(a); free(b); free(c); cudaEventElapsedTime(&time, start, stop); cudaEventDestroy(start); cudaEventDestroy(stop); time /= 1000.0f; // convert from milliseconds to seconds flop = N*N*N*2.0f; gflops = flop / time / 1E9; printf("sec = %.2f GFLOPS = %.3f\n", time, gflops); return EXIT_SUCCESS; }
19,474
// // include files // #include <stdlib.h> #include <stdio.h> #include <string.h> #include <math.h> #include <cuda_runtime.h> #include <device_launch_parameters.h> // // template kernel routine // template <typename T> __global__ void my_first_kernel(T *x) { int tid = threadIdx.x + blockDim.x*blockIdx.x; x[tid] = threadIdx.x; } // // CUDA routine to be called by main code // extern int prac6(int nblocks, int nthreads) { float *h_x, *d_x; int *h_i, *d_i; double *h_xx, *d_xx; int nsize, n; // allocate memory for arrays nsize = nblocks*nthreads ; h_xx = (double *)malloc(nsize*sizeof(double)); cudaMalloc((void **)&d_xx, nsize*sizeof(double)); h_x = (float *)malloc(nsize*sizeof(float)); cudaMalloc((void **)&d_x, nsize*sizeof(float)); h_i = (int *)malloc(nsize*sizeof(int)); cudaMalloc((void **)&d_i, nsize*sizeof(int)); // execute kernel for double my_first_kernel<<<nblocks,nthreads>>>(d_xx); cudaMemcpy(h_xx,d_xx,nsize*sizeof(double),cudaMemcpyDeviceToHost); for (n=0; n<nsize; n++) printf(" n, x = %d %f \n",n,h_xx[n]); // execute kernel for float my_first_kernel<<<nblocks,nthreads>>>(d_x); cudaMemcpy(h_x,d_x,nsize*sizeof(float),cudaMemcpyDeviceToHost); for (n=0; n<nsize; n++) printf(" n, x = %d %f \n",n,h_x[n]); // execute kernel for ints my_first_kernel<<<nblocks,nthreads>>>(d_i); cudaMemcpy(h_i,d_i,nsize*sizeof(int),cudaMemcpyDeviceToHost); for (n=0; n<nsize; n++) printf(" n, i = %d %d \n",n,h_i[n]); // free memory cudaFree(d_xx); free(h_xx); cudaFree(d_x); free(h_x); cudaFree(d_i); free(h_i); return 0; }
19,475
#include "includes.h" __global__ void blendFloatImageFloatLabelToRGBA_kernel( uchar4 *out_image, const float *in_image, const float *label, int width, int height, float lowerLim, float upperLim) { const int x = __mul24(blockIdx.x, blockDim.x) + threadIdx.x; const int y = __mul24(blockIdx.y, blockDim.y) + threadIdx.y; uchar4 temp; if (x < width && y < height) { unsigned char img = (unsigned char)(0.5f * in_image[__mul24(y, width) + x] + 128.0f); float val = label[__mul24(y, width) + x]; // draw everything invalid or out of lim in white if (!isfinite(val) || (val < lowerLim) || (val > upperLim)) { // don't blend temp.x = img; temp.y = img; temp.z = img; temp.w = 255; } else { // blend temp.x = 0.6f * img; temp.y = 0.6f * img; temp.z = img; temp.w = 255; } out_image[__mul24(y, width) + x] = temp; } }
19,476
#include <stdio.h> #include <chrono> #define block_size_x 256 #define num_blocks 1024 //a naive summation in C float sum_floats(float *in_array, int n) { float sum = 0.0; for (int i=0; i<n; i++) { sum += in_array[i]; } return sum; } //Kahan summation to avoid floating-point precision errors float sum_floats_kahan(float *in_array, int n) { float sum = 0.0; float c = 0.0; for (int i=0; i<n; i++) { float v = in_array[i] - c; float t = sum + v; c = (t - sum) - v; sum = t; } return sum; } //CUDA kernel for parallel reduction extern "C" __global__ void reduce_kernel(float *out_array, float *in_array, int n) { int ti = threadIdx.x; int x = blockIdx.x * block_size_x + threadIdx.x; int step_size = gridDim.x * block_size_x; float sum = 0.0f; //cooperatively (with all threads in all thread blocks) iterate over input array for (int i=x; i<n; i+=step_size) { sum += in_array[i]; } //at the point we have reduced the number of values to be summed from n to //the total number of threads in all thread blocks combined //the goal is now to reduce the values within each thread block to a single //value per thread block for this we will need shared memory //declare shared memory array, how much shared memory do we need? //__shared__ float ...; //make every thread store its thread-local sum to the array in shared memory //... = sum; //now let's call syncthreads() to make sure all threads have finished //storing their local sums to shared memory __syncthreads(); //now this interesting looking loop will do the following: //it iterates over the block_size_x with the following values for s: //if block_size_x is 256, 's' will be powers of 2 from 128, 64, 32, down to 1. //these decreasing offsets can be used to reduce the number //of values within the thread block in only a few steps. #pragma unroll for (unsigned int s=block_size_x/2; s>0; s/=2) { //you are to write the code inside this loop such that //threads will add the sums of other threads that are 's' away //do this iteratively such that together the threads compute the //sum of all thread-local sums //use shared memory to access the values of other threads //and store the new value in shared memory to be used in the next round //be careful that values that should be read are //not overwritten before they are read //make sure to call __syncthreads() when needed } //write back one value per thread block if (ti == 0) { //out_array[blockIdx.x] = ; //store the per-thread block reduced value to global memory } } int main() { int n = (int)5e7; //problem size float time; cudaError_t err; //allocate arrays and fill them float *in_array = (float *) malloc(n * sizeof(float)); float *out_array = (float *) malloc(num_blocks * sizeof(float)); for (int i=0; i<n; i++) { in_array[i] = (rand() % 10000) / 100000.0; } memset(out_array, 0, num_blocks * sizeof(float)); //measure the CPU function auto start = std::chrono::high_resolution_clock::now(); float sum = sum_floats(in_array, n); auto stop = std::chrono::high_resolution_clock::now(); time = (float)std::chrono::duration_cast<std::chrono::microseconds>(stop-start).count()/1000.0; printf("sum_floats took %.3f ms\n", time); //allocate GPU memory float *d_in; float *d_out; err = cudaMalloc((void **)&d_in, n*sizeof(float)); if (err != cudaSuccess) fprintf(stderr, "Error in cudaMalloc: %s\n", cudaGetErrorString( err )); err = cudaMalloc((void **)&d_out, num_blocks*sizeof(float)); if (err != cudaSuccess) fprintf(stderr, "Error in cudaMalloc: %s\n", cudaGetErrorString( err )); //copy the input data to the GPU err = cudaMemcpy(d_in, in_array, n*sizeof(float), cudaMemcpyHostToDevice); if (err != cudaSuccess) fprintf(stderr, "Error in cudaMemcpy host to device: %s\n", cudaGetErrorString( err )); //zero the output array err = cudaMemset(d_out, 0, num_blocks*sizeof(float)); if (err != cudaSuccess) fprintf(stderr, "Error in cudaMemset: %s\n", cudaGetErrorString( err )); //setup the grid and thread blocks dim3 grid(num_blocks, 1); dim3 grid2(1, 1); dim3 threads(block_size_x, 1, 1); //measure the GPU function cudaDeviceSynchronize(); start = std::chrono::high_resolution_clock::now(); reduce_kernel<<<grid, threads>>>(d_out, d_in, n); reduce_kernel<<<grid2, threads>>>(d_out, d_out, num_blocks); //call the kernel again with only 1 thread block cudaDeviceSynchronize(); stop = std::chrono::high_resolution_clock::now(); time = (float)std::chrono::duration_cast<std::chrono::microseconds>(stop-start).count()/1000.0; printf("reduce_kernel took %.3f ms\n", time); //check to see if all went well err = cudaGetLastError(); if (err != cudaSuccess) fprintf(stderr, "Error during kernel launch: %s\n", cudaGetErrorString( err )); //copy the result back to host memory err = cudaMemcpy(out_array, d_out, 1*sizeof(float), cudaMemcpyDeviceToHost); if (err != cudaSuccess) fprintf(stderr, "Error in cudaMemcpy device to host: %s\n", cudaGetErrorString( err )); //compute a reliable reference answer on the host float sum2 = sum_floats_kahan(in_array, n); //check the result float diff = abs(*out_array - sum2); printf("cpu: %f, corrected: %f\n", sum, sum2); printf("gpu: %f\n", *out_array); if (diff < 1.0) { printf("TEST PASSED!\n"); } else { printf("TEST FAILED!\n"); } //clean up cudaFree(d_in); cudaFree(d_out); free(in_array); free(out_array); return 0; }
19,477
#include <cstdio> __global__ void my_kernel() { printf("Hello from block %i of %i and thread %i \n ", blockIdx.x, blockDim.x, threadIdx.x); } int main() { my_kernel <<<16, 16 >>> (); cudaError_t cuda_err = cudaDeviceSynchronize(); if (cuda_err != cudaSuccess) printf("kernel launch failed with error \"%s\".\n", cudaGetErrorString(cuda_err)); return 0; }
19,478
// CUDA multiple threads #include <cuda.h> #include <cuda_runtime.h> __global__ void rgb2grey_kernel(const uchar4* const rgbaImage, unsigned char* const greyImage, int numRows, int numCols) { int idx = threadIdx.x+ blockIdx.x* blockDim.x; if (idx < numCols*numRows) { uchar4 rgba = rgbaImage[idx]; float grey = .299f * rgba.x + .587f * rgba.y + .114f * rgba.z; greyImage[idx] = grey; } } void rgb2grey_cuda( const uchar4* const h_rgbaImage, unsigned char *const h_greyImage, size_t numRows, size_t numCols) { uchar4 *d_rgbaImage; unsigned char *d_greyImage; size_t numPixels= numRows*numCols; // Alloc memory cudaMalloc((void **) &d_rgbaImage, sizeof(uchar4) * numPixels); cudaMalloc((void **) &d_greyImage, sizeof(uchar4) * numPixels); // Copy from Host to Device cudaMemset(d_greyImage, 0, numPixels * sizeof(unsigned char)); cudaMemcpy(d_rgbaImage, h_rgbaImage, sizeof(uchar4) * numPixels, cudaMemcpyHostToDevice); // Kernel Launch const int threadPerBlock = 512; const int numBlock = numPixels/threadPerBlock+1; rgb2grey_kernel<<<numBlock, threadPerBlock>>>(d_rgbaImage, d_greyImage, numRows, numCols); // Copy from Device to Host cudaMemcpy(h_greyImage, d_greyImage, sizeof(unsigned char) * numPixels, cudaMemcpyDeviceToHost); // Free memory cudaDeviceSynchronize(); cudaFree(d_greyImage); cudaFree(d_rgbaImage); }
19,479
// // Created by harshvardhanchandirasekar on 8/1/20. // #include "planet.cuh" int main() { return 0; }
19,480
#include "includes.h" __global__ void main_set(float *data, float val) { data[threadIdx.x] = val; }
19,481
#include<cstdio> #include<fstream> #include<cmath> #include<cuda.h> int threshold=256; int xthread=32; __global__ void multiply(float* A,float* B,float* C,int jump,int jump1,int jump2,int iter) { __shared__ float A1[32][32],B1[32][32]; int posy=blockIdx.y*blockDim.y+threadIdx.y; int posx=blockIdx.x*blockDim.x+threadIdx.x; int row=posy*jump+threadIdx.x; int col=posx+threadIdx.y*jump1; int place=posy*jump2+posx; for(int i=0;i<iter;i++) { A1[threadIdx.y][threadIdx.x]=A[row]; B1[threadIdx.y][threadIdx.x]=B[col]; __syncthreads(); for(int i=0;i<blockDim.x;i++) C[place]+=A1[threadIdx.y][i]*B1[i][threadIdx.x]; row+=blockDim.x; col+=blockDim.y*jump1; __syncthreads(); } } //non_square matrix multiplication __global__ void kernel1(float* A,int jump1,int n1,float* B,int jump2,int n2,float* C,int jump3,float* D,int jump4,int m1,int m2,int m3) { int col=blockIdx.x * blockDim.x+threadIdx.x; int row=blockIdx.y * blockDim.y+threadIdx.y; if(col<m2 && row<m1) C[col+jump3*row]=A[col+jump1*row]+A[n1+col+jump1*row]; if(col<m3 && row<m2) D[col+jump4*row]=B[col+jump2*row]+B[n2+col+jump2*row]; } __global__ void kernel7(float* A,int jump1,int n1,float* B,int jump2,int n2,float* C,int jump3,float* D,int jump4,int m1,int m2,int m3) { int col=blockIdx.x * blockDim.x+threadIdx.x; int row=blockIdx.y * blockDim.y+threadIdx.y; if(col<m2 && row<m1) C[col+jump3*row]=A[col+jump1*row]-A[n1+col+jump1*row]; if(col<m3 && row<m2) D[col+jump4*row]=B[col+jump2*row]+B[n2+col+jump2*row]; } __global__ void kernel2(float* A,int jump,int n1,int n2,float* B,int jump1,float* C,int jump2,int n3,int m2,int m3) { int col=blockIdx.x * blockDim.x+threadIdx.x; if(col<m3) { if(3*blockIdx.y<gridDim.y) { int point=col+(blockIdx.y * blockDim.y + threadIdx.y)*jump; A[point+n2]+=A[point]; } else if(3*blockIdx.y<2*gridDim.y) { int point=col+((blockIdx.y-gridDim.y/3) * blockDim.y + threadIdx.y)*jump; A[point]+=A[point+n1]; A[point+n1]=0; } } if(col<m2 && 3*blockIdx.y>=2*gridDim.y) { int row=(blockIdx.y-2*gridDim.y/3) * blockDim.y + threadIdx.y; B[col+jump1*row]=C[col+jump2*row]+C[col+jump2*row+n3]; } } __global__ void kernel3(float* A,int jump,int n,float* B,int jump1,float* C,int jump2,int n1,int m2,int m3) { int col=blockIdx.x * blockDim.x+threadIdx.x; int row=blockIdx.y * blockDim.y + threadIdx.y; if(col<m2) A[col+jump*row+n]-=A[col+jump*row]; if(col<m3) B[col+jump1*row]=C[col+jump2*row]+C[col+jump2*row+n1]; } __global__ void kernel4(float* A,int jump,int n1,float* B,int jump1,float* C,int jump2,float* D,int jump3,int n2,int m1,int m2) { int col=blockIdx.x * blockDim.x+threadIdx.x,row; if(2*blockIdx.y<gridDim.y) { row=blockIdx.y * blockDim.y + threadIdx.y; if(row<m1) { A[col+jump*row]+=B[col+jump1*row]; A[col+jump*row+n1]+=B[col+jump1*row]; B[col+jump1*row]=0; } } else { row=(blockIdx.y-gridDim.y/2) * blockDim.y + threadIdx.y; if(row<m2) C[col+jump2*row]=D[col+jump3*row+n2]-D[col+jump3*row]; } } __global__ void kernel5(float* A,int jump,int n1,float* B,int jump1) { int point=(blockIdx.x * blockDim.x+threadIdx.x)+(blockIdx.y * blockDim.y + threadIdx.y)*jump; int point1=(blockIdx.x * blockDim.x+threadIdx.x)+(blockIdx.y * blockDim.y + threadIdx.y)*jump1; A[point]+=B[point1]; A[point+n1]+=B[point1]; } __global__ void kernel6(float* A,int jump,float* B,int jump1,int n1,float* C,int jump2,float* D,int jump3,int n2,int m1,int m2,int m3) { int col=blockIdx.x*blockDim.x+threadIdx.x; if(col<m2 && 3*blockIdx.y<gridDim.y) { int row=blockIdx.y*blockDim.y+threadIdx.y; if(row<m1) A[col+row*jump]=0; } if(col<m3 && 3*blockIdx.y>=gridDim.y && 3*blockIdx.y<2*gridDim.y) { int row=(blockIdx.y-gridDim.y/3) * blockDim.y + threadIdx.y; if(row<m1) B[col+row*jump1]-=B[col+row*jump1+n1]; } if(col<m3 && 3*blockIdx.y>2*gridDim.y) { int row=(blockIdx.y-(2*gridDim.y/3)) * blockDim.y + threadIdx.y; if(row<m2) C[col+jump2*row]=D[col+jump3*row]-D[col+jump3*row+n2]; } } void strassen(float* A,int jump,float* B,int jump1,float* C,int jump2,int n1,int n2,int n3,float* temp1,float* temp2,int n,int n_) { if(n1<=threshold || n2<=threshold || n3<=threshold) { multiply <<<dim3(n3/xthread,n1/xthread),dim3(xthread,xthread)>>> (A,B,C,jump,jump1,jump2,n2/xthread); } else { n1/=2;n2/=2;n3/=2; n/=2;n_/=2; //M1 kernel1 <<<dim3(n_/xthread,n/xthread),dim3(xthread,xthread)>>> (A,jump,jump*n1+n2,B,jump1,jump1*n2+n3,temp1,n2,temp2,n3,n1,n2,n3); //temp1=A11+A22 //temp2=B11+B22 strassen(temp1,n2,temp2,n3,C,jump2,n1,n2,n3,temp1+n1*n2,temp2+n2*n3,n,n_); //C11=temp1*temp2 //M6 kernel7 <<<dim3(n_/xthread,n/xthread),dim3(xthread,xthread)>>> (A+jump*n1,jump,-jump*n1,B,jump1,n3,temp1,n2,temp2,n3,n1,n2,n3); //temp1=A21-A11//temp2=B11+B12 strassen(temp1,n2,temp2,n3,C+jump2*n1+n3,jump2,n1,n2,n3,temp1+n1*n2,temp2+n2*n3,n,n_); //C22=temp1*temp2 //M7 kernel7 <<<dim3(n_/xthread,n/xthread),dim3(xthread,xthread)>>> (A+n2,jump,jump*n1,B+jump1*n2,jump1,n3,temp1,n2,temp2,n3,n1,n2,n3);//temp1=A12-A22 //temp2=B21+B22 strassen(temp1,n2,temp2,n3,C+n3,jump2,n1,n2,n3,temp1+n1*n2,temp2+n2*n3,n,n_); //C12+=temp1*temp2 kernel2 <<<dim3(n_/xthread,(3*n1)/xthread),dim3(xthread,xthread)>>> (C,jump2,n3,jump2*n1+n3,temp1,n2,A+jump*n1,jump,n2,n2,n3); //C22+=C11//C11+=C12 //temp1=A21+A22 //C12=0 //M2 strassen(temp1,n2,B,jump1,C+jump2*n1,jump2,n1,n2,n3,temp1+n1*n2,temp2+n2*n3,n,n_); //C21=temp1*B11 kernel3 <<<dim3(n_/xthread,n1/xthread),dim3(xthread,xthread)>>> (C+jump2*n1,jump2,n3,temp1,n2,A,jump,n2,n2,n3); //C22-=C21 //temp1=A11+A12 //M5 strassen(temp1,n2,B+jump1*n2+n3,jump1,C+n3,jump2,n1,n2,n3,temp1+n1*n2,temp2+n2*n3,n,n_); //C12=temp1*B22 kernel6<<<dim3(n_/xthread,(3*n)/xthread),dim3(xthread,xthread)>>>(temp1,n2,C,jump2,n3,temp2,n3,B+n3,jump1,jump1*n2,n1,n2,n3); //C11-=C12 //temp2=B12-B22 //temp1=0 //M3 strassen(A,jump,temp2,n3,temp1,n3,n1,n2,n3,temp1+n1*n3,temp2+n2*n3,n,n_); //temp1=A11*temp2 kernel4 <<<dim3(n3/xthread,(2*n)/xthread),dim3(xthread,xthread)>>> (C+n3,jump2,jump2*n1,temp1,n2,temp2,n3,B,jump1,jump1*n2,n1,n2); //C12=C12+temp1//C22=C22+temp1 //temp2=B21-B11 //temp1=0 //M4 strassen(A+jump*n1+n2,jump,temp2,n3,temp1,n3,n1,n2,n3,temp1+n1*n3,temp2+n2*n3,n,n_); //temp1=A22*temp2 kernel5 <<<dim3(n3/xthread,n1/xthread),dim3(xthread,xthread)>>> (C,jump2,jump2*n1,temp1,n2); //C21=C21+temp1//C11=C11+temp1 } } //Square matrix multiplication __global__ void kernel1_sq(float* A,int jump1,int n1,float* B,int jump2,int n2,float* C,float* D,int jump) { int col=blockIdx.x * blockDim.x+threadIdx.x; int row=blockIdx.y * blockDim.y+threadIdx.y; C[col+jump*row]=A[col+jump1*row]+A[n1+col+jump1*row]; D[col+jump*row]=B[col+jump2*row]+B[n2+col+jump2*row]; } __global__ void kernel7_sq(float* A,int jump1,int n1,float* B,int jump2,int n2,float* C,float* D,int jump) { int col=blockIdx.x * blockDim.x+threadIdx.x; int row=blockIdx.y * blockDim.y+threadIdx.y; C[col+jump*row]=A[col+jump1*row]-A[n1+col+jump1*row]; D[col+jump*row]=B[col+jump2*row]+B[n2+col+jump2*row]; } __global__ void kernel2_sq(float* A,int jump,int n1,int n2,float* B,int jump1,float* C,int jump2,int n3) { int col=blockIdx.x * blockDim.x+threadIdx.x; if(3*blockIdx.y<gridDim.y) { int point=col+(blockIdx.y * blockDim.y + threadIdx.y)*jump; A[point+n2]+=A[point]; } else if(3*blockIdx.y<2*gridDim.y) { int point=col+((blockIdx.y-gridDim.y/3) * blockDim.y + threadIdx.y)*jump; A[point]+=A[point+n1]; A[point+n1]=0; } else { int row=(blockIdx.y-2*gridDim.y/3) * blockDim.y + threadIdx.y; B[col+jump1*row]=C[col+jump2*row]+C[col+jump2*row+n3]; } } __global__ void kernel3_sq(float* A,int jump,int n,float* B,int jump1,float* C,int jump2,int n1) { int col=blockIdx.x * blockDim.x+threadIdx.x; int row=blockIdx.y * blockDim.y + threadIdx.y; A[col+jump*row+n]-=A[col+jump*row]; B[col+jump1*row]=C[col+jump2*row]+C[col+jump2*row+n1]; } __global__ void kernel4_sq(float* A,int jump,int n1,float* B,int jump1,float* C,int jump2,float* D,int jump3,int n2) { int col=blockIdx.x * blockDim.x+threadIdx.x,row; if(2*blockIdx.y<gridDim.y) { row=blockIdx.y * blockDim.y + threadIdx.y; A[col+jump*row]+=B[col+jump1*row]; A[col+jump*row+n1]+=B[col+jump1*row]; B[col+jump1*row]=0; } else { row=(blockIdx.y-gridDim.y/2) * blockDim.y + threadIdx.y; C[col+jump2*row]=D[col+jump3*row+n2]-D[col+jump3*row]; } } __global__ void kernel6_sq(float* A,int jump,float* B,int jump1,int n1,float* C,int jump2,float* D,int jump3,int n2) { int col=blockIdx.x*blockDim.x+threadIdx.x; if(3*blockIdx.y<gridDim.y) { int row=blockIdx.y*blockDim.y+threadIdx.y; A[col+row*jump]=0; } else if(3*blockIdx.y<2*gridDim.y) { int row=(blockIdx.y-gridDim.y/3) * blockDim.y + threadIdx.y; B[col+row*jump1]-=B[col+row*jump1+n1]; } else { int row=(blockIdx.y-(2*gridDim.y/3)) * blockDim.y + threadIdx.y; C[col+jump2*row]=D[col+jump3*row]-D[col+jump3*row+n2]; } } void strassen_sq(float* A,int jump,float* B,int jump1,float* C,int jump2,int n,float* temp1,float* temp2,int block_len) { if(n<=threshold) multiply<<<dim3(block_len,block_len),dim3(xthread,xthread)>>>(A,B,C,jump,jump1,jump2,n/xthread); else { n/=2; block_len/=2; kernel1_sq<<<dim3(block_len,block_len),dim3(xthread,xthread)>>>(A,jump,jump*n+n,B,jump1,jump1*n+n,temp1,temp2,n); strassen_sq(temp1,n,temp2,n,C,jump2,n,temp1+n*n,temp2+n*n,block_len); kernel7_sq<<<dim3(block_len,block_len),dim3(xthread,xthread)>>>(A+jump*n,jump,-jump*n,B,jump1,n,temp1,temp2,n); strassen_sq(temp1,n,temp2,n,C+jump2*n+n,jump2,n,temp1+n*n,temp2+n*n,block_len); kernel7_sq<<<dim3(block_len,block_len),dim3(xthread,xthread)>>>(A+n,jump,jump*n,B+jump1*n,jump1,n,temp1,temp2,n); strassen_sq(temp1,n,temp2,n,C+n,jump2,n,temp1+n*n,temp2+n*n,block_len); kernel2_sq<<<dim3(block_len,3*block_len),dim3(xthread,xthread)>>>(C,jump2,n,jump2*n+n,temp1,n,A+jump*n,jump,n); strassen_sq(temp1,n,B,jump1,C+jump2*n,jump2,n,temp1+n*n,temp2+n*n,block_len); kernel3_sq<<<dim3(block_len,block_len),dim3(xthread,xthread)>>>(C+jump2*n,jump2,n,temp1,n,A,jump,n); strassen_sq(temp1,n,B+jump1*n+n,jump1,C+n,jump2,n,temp1+n*n,temp2+n*n,block_len); kernel6_sq<<<dim3(block_len,3*block_len),dim3(xthread,xthread)>>>(temp1,n,C,jump2,n,temp2,n,B+n,jump1,jump1*n); strassen_sq(A,jump,temp2,n,temp1,n,n,temp1+n*n,temp2+n*n,block_len); kernel4_sq<<<dim3(block_len,2*block_len),dim3(xthread,xthread)>>>(C+n,jump2,jump2*n,temp1,n,temp2,n,B,jump1,jump1*n); strassen_sq(A+jump*n+n,jump,temp2,n,temp1,n,n,temp1+n*n,temp2+n*n,block_len); kernel5<<<dim3(block_len,block_len),dim3(xthread,xthread)>>>(C,jump2,jump2*n,temp1,n); } } int nearest_ideal(int &n,int &temp) { int temp1=(xthread-n%xthread)%xthread; int pow=1; n+=temp1; int m=n/xthread; while(m>threshold/xthread) { if(m%2==1) { temp+=pow; m++; } m/=2; pow*=2; } n+=temp*xthread; temp=temp*xthread; temp+=temp1; return pow; } int main(int argc,char** argv) { std::ifstream in(argv[1]); std::ifstream in1(argv[2]); std::ofstream out(argv[3]); float *A,*B,*C; int n1,n2,n3; int temp1=0,temp2=0,temp3=0; in>>n1>>n2; in1>>n2>>n3; out<<n1<<'\t'<<n3<<'\n'; int power=nearest_ideal(n1,temp1); power=std::min(power,nearest_ideal(n2,temp2)); power=std::min(power,nearest_ideal(n3,temp3)); float factor=0; for(int i=power;i>1;i/=2) factor+=1/(float)(i*i); A=new float[n1*n2]; B=new float[n2*n3]; C=new float[n1*n3]; for(int i=0; i<n1-temp1; i++) { for(int j=0; j<n2-temp2; j++) in>>A[i*n2+j]; for(int j=n2-temp2;j<n2;j++) A[i*n2+j]=0; } for(int i=(n1-temp1)*n2;i<n1*n2;i++) A[i]=0; in.close(); for(int i=0; i<n2-temp2; i++) { for(int j=0; j<n3-temp3; j++) in1>>B[i*n3+j]; for(int j=n3-temp3;j<n3;j++) B[i*n3+j]=0; } for(int i=(n2-temp2)*n3;i<n2*n3;i++) B[i]=0; in1.close(); struct timespec start,end; int size_temp1,size_temp2,n_,n; n=n2>n3?n2:n3; n_=n1>n2?n1:n2; size_temp1=(int)(n1*n_)*factor; size_temp2=(int)(n2*n3)*factor; float *d_A, *d_B, *d_C,*temp1_,*temp2_; cudaMalloc( (void **) &d_A, sizeof(float)*n1*n2); cudaMalloc( (void **) &d_B, sizeof(float)*n2*n3); cudaMalloc( (void **) &d_C, sizeof(float)*n1*n3); cudaMalloc( (void **) &temp1_,sizeof(float)*size_temp1); cudaMalloc( (void **) &temp2_,sizeof(float)*size_temp2); //copy from host to device cudaMemcpy (d_A, A, sizeof(float)*n1*n2, cudaMemcpyHostToDevice); cudaMemcpy (d_B, B, sizeof(float)*n2*n3, cudaMemcpyHostToDevice); cudaMemset(d_C,0,sizeof(float)*n1*n3); cudaMemset(temp1_,0,sizeof(float)*size_temp1); cudaMemset(temp2_,0,sizeof(float)*size_temp2); clock_gettime(CLOCK_PROCESS_CPUTIME_ID,&start); if(n1!=n2 || n3!=n2) strassen(d_A,n2,d_B,n3,d_C,n3,n1,n2,n3,temp1_,temp2_,n,n_); else strassen_sq(d_A,n1,d_B,n1,d_C,n1,n1,temp1_,temp2_,n1/xthread); cudaDeviceSynchronize(); clock_gettime(CLOCK_PROCESS_CPUTIME_ID,&end); cudaMemcpy (C, d_C, sizeof(float)*n1*n3, cudaMemcpyDeviceToHost); printf("Error %s \n",cudaGetErrorString(cudaGetLastError())); double time_taken = (end.tv_nsec-start.tv_nsec)+1e+9*(end.tv_sec-start.tv_sec); printf("StrassenRec - Time taken: %f\n",time_taken); for(int i=0;i<n1-temp1;i++) { for(int j=0;j<n3-temp3;j++) out<<C[i*n3+j]<<'\t'; out<<'\n'; } std::ofstream ofile; ofile.open(argv[4],std::ios_base::app); ofile<<"strassenRec - Time taken (ns): "<<time_taken<<"\n"; ofile.close(); cudaFree(d_A); cudaFree(d_B); cudaFree(d_C); cudaFree(temp1_); cudaFree(temp2_); delete C,A,B; }
19,482
#include <stdio.h> //__global__ void kernel( void ) { // does nothing //} int main(int argc, char** argv) { // default the loop count to equal 1 int loopCount = 1; // take in a command line arg to set the loop count if(argc > 1){ loopCount = atoi(argv[1]); } // delcare two variables int *dev_a; // get the size of an int for the cuda malloc int size = 1; // malloc on the device // loop over the loop count and copy to device for(int i = 0; i < loopCount; i++){ cudaMalloc((void **)&dev_a, size); //cudaFree(dev_a); } return 0; }
19,483
/* kernel.cu Holds the kernel for the main program */ #include <iostream> #define BLOCK_WIDTH 32 #define cuda_check_errors(val) check( (val), #val, __FILE__, __LINE__) using namespace std; /* Reports the location of the occured error and exits the program */ template<typename T> void check(T err, const char* const func, const char* const file, const int line) { if (err != cudaSuccess) { cerr << "CUDA error at: " << file << ":" << line << endl; cerr << cudaGetErrorString(err) << " " << func << endl; exit(1); } } /* The primary kernel (heart of the program!) Each pixel p in the RGBA image is a struct of four unsigned chars: - p.x Which is the red channel number. - p.y The green channel. - p.z The blue channel. - p.w The alpha channel (which we ignore). For each greyscale pixel to be created we calculate this formula: p = .299*p.x + .587*p.y + .114*p.z The output is a single char because we only have one channel. In the kernel each thread is responsible for calculating the mentioned formula for each pixel and the put the result into the greyscale image placehold. First we find out where the thread (pixel) is and then we do the above. */ __global__ void rgba_to_grey(uchar4 *const d_rgba, unsigned char *const d_grey, size_t rows, size_t cols) { size_t j = blockIdx.y * blockDim.y + threadIdx.y; size_t i = blockIdx.x * blockDim.x + threadIdx.x; if (i >= rows || j >= cols) return; uchar4 p = d_rgba[i * cols + j]; d_grey[i * cols + j] = (unsigned char) (0.299f * p.x + 0.587f * p.y + 0.114f * p.z); } /* The image is divided into number of blocks. Each block holds BLOCK_WIDTH*BLOCK_WIDTH threads and in total we have (rows/BLOCK_WIDTH)*(cols/BLOCK_WIDTH) blocks. */ void rgba_to_grey_launcher(uchar4 *const d_rgba, unsigned char *const d_grey, size_t rows, size_t cols) { const dim3 block_size (BLOCK_WIDTH, BLOCK_WIDTH, 1); unsigned int grid_x = (unsigned int) (rows / BLOCK_WIDTH + 1); unsigned int grid_y = (unsigned int) (cols / BLOCK_WIDTH + 1); const dim3 grid_size (grid_x, grid_y, 1); rgba_to_grey<<<grid_size, block_size>>>(d_rgba, d_grey, rows, cols); cudaDeviceSynchronize(); cuda_check_errors(cudaGetLastError()); }
19,484
#include <iostream> int main() { cudaDeviceProp prop; int devcount; cudaGetDeviceCount(&devcount); std::cout << "Devices found: " << devcount << std::endl; for(int i=0; i<devcount; i++) { cudaGetDeviceProperties(&prop, i); std::cout << "------------------" << std::endl; std::cout << "Device: " << i << std::endl; std::cout << "------------------" << std::endl; std::cout << "Name:\t\t\t" << prop.name << std::endl; std::cout << "GlobalMemory:\t\t" << prop.totalGlobalMem << std::endl; std::cout << "WarpSize:\t\t" << prop.warpSize << std::endl; std::cout << "MaxThreadsPerBlock:\t" << prop.maxThreadsPerBlock << std::endl; std::cout << "MaxThreadsDim:\t\t" << prop.maxThreadsDim[0] << " : " << prop.maxThreadsDim[1] << " : " << prop.maxThreadsDim[2] << std::endl; std::cout << "MaxGridSize:\t\t" << prop.maxGridSize[0] << " : " << prop.maxGridSize[1] << " : " << prop.maxGridSize[2] << std::endl; std::cout << "MultiProcessorCount:\t" << prop.multiProcessorCount << std::endl; } return 0; }
19,485
#include <chrono> #include <cmath> #include <cstdio> #include <cstdlib> #include <cuda_runtime.h> #include <iomanip> #include <iostream> // helper for time measurement typedef std::chrono::duration<double, std::milli> d_ms; const auto &now = std::chrono::high_resolution_clock::now; // Define Error Checking Macro #define CU_CHK(ERRORCODE) \ { \ cudaError_t error = ERRORCODE; \ if (error != 0) { \ std::cerr << cudaGetErrorName(error) << ": " \ << cudaGetErrorString(error) << " at " << __FILE__ << ":" \ << __LINE__ << "\n"; \ } \ } // Constants const static int DEFAULT_NUM_DATA = 1024; const static int DEFAULT_NUM_CLUSTER = 3; const static int DEFAULT_DIMENSIONS = 2; const static int DEFAULT_NUM_ITERATIONS = 5; const static int DEFAULT_BLOCK_DIM = 1024; extern void kmeans_cluster_assignment_wrapper(int grid_size, int block_size, float *data, int *data_ca, float *centroids, int numData, int numCluster, int numDimensions); extern void kmeans_centroid_sum_wrapper(int grid_size, int block_size, float *data, int *data_ca, float *centroids, int *cluster_count, int numData, int numCluster, int numDimensions); extern void kmeans_centriod_update_wrapper(int grid_size, int block_size, float *centroids, int *cluster_count, int numCluster, int numDimensions); // Main int main(int argc, char *argv[]) { // Process Arguments if (argc < 2 or std::string(argv[1]) == "-h") { std::cout << "Usage:\n\t" << argv[0] << " <data points> [iterations] [dimensions]\n"; return 1; } int numData = 0; numData = std::stoi(argv[1]); numData = numData > 0 ? numData : DEFAULT_NUM_DATA; int numIterations = 0; if (argc > 2) numIterations = std::stoi(argv[2]); numIterations = numIterations != 0 ? numIterations : DEFAULT_NUM_ITERATIONS; int numDimensions = 0; if (argc > 3) numDimensions = std::stoi(argv[2]); numDimensions = numDimensions != 0 ? numDimensions : DEFAULT_DIMENSIONS; int numCluster = DEFAULT_NUM_CLUSTER; // Allocate Memory // Host float *h_data; CU_CHK(cudaMallocHost(&h_data, (size_t)(numData * numDimensions * sizeof(float)))); float *h_centroids; CU_CHK(cudaMallocHost(&h_centroids, (size_t)(numCluster * numDimensions * sizeof(float)))); // Init srand(0); // Always the same random numbers for (int i = 0; i < numData; ++i) for (int d = 0; d < numDimensions; ++d) h_centroids[i * numDimensions + d] = (float)rand() / (double)RAND_MAX; for (int c = 0; c < numCluster; ++c) for (int d = 0; d < numDimensions; ++d) h_centroids[c * numDimensions + d] = (float)rand() / (double)RAND_MAX; // Device Memory float *d_data; CU_CHK(cudaMalloc(&d_data, (size_t)(numData * numDimensions * sizeof(float)))); int *d_data_ca; CU_CHK(cudaMalloc(&d_data_ca, (size_t)(numData * sizeof(int)))); float *d_centroids; CU_CHK(cudaMalloc(&d_centroids, (size_t)(numCluster * numDimensions * sizeof(float)))); int *d_cluster_count; CU_CHK(cudaMalloc(&d_cluster_count, (size_t)(numCluster * sizeof(int)))); // Copy Data to the Device auto t1 = now(); CU_CHK(cudaMemcpy(d_data, h_data, (size_t)(numData * numDimensions * sizeof(float)), cudaMemcpyHostToDevice)); CU_CHK(cudaMemcpy(d_centroids, d_centroids, (size_t)(numCluster * numDimensions * sizeof(float)), cudaMemcpyHostToDevice)); CU_CHK(cudaMemset(d_cluster_count, 0, numCluster * sizeof(int))); auto t2 = now(); // Block Dimension / Threads per Block int block_dim = DEFAULT_BLOCK_DIM; int grid_dim = ceil(static_cast<float>(numData) / static_cast<float>(block_dim)); std::cout << "Computing kmeans with " << numData << " elements and " << numIterations << " iterations\n"; std::cout << "Launch kernel with " << grid_dim << " blocks and " << block_dim << " threads per block\n"; auto t3 = now(); for (int i = 0; i < numIterations; i++) { kmeans_cluster_assignment_wrapper(grid_dim, block_dim, d_data, d_data_ca, d_centroids, numData, numCluster, numDimensions); CU_CHK( cudaMemset(d_centroids, 0, numCluster * numDimensions * sizeof(float))); CU_CHK(cudaMemset(d_cluster_count, 0, numCluster * sizeof(int))); kmeans_centroid_sum_wrapper(grid_dim, block_dim, d_data, d_data_ca, d_centroids, d_cluster_count, numData, numCluster, numDimensions); kmeans_centriod_update_wrapper(grid_dim, numCluster * numDimensions, d_centroids, d_cluster_count, numCluster, numDimensions); } // Synchronize CU_CHK(cudaDeviceSynchronize()); auto t4 = now(); // Compute time for copies and kernel d_ms time_copyH2D = t2 - t1; d_ms time_kernel = t4 - t3; // Free Memory CU_CHK(cudaFreeHost(h_data)); CU_CHK(cudaFreeHost(h_centroids)); CU_CHK(cudaFree(d_data)); CU_CHK(cudaFree(d_centroids)); CU_CHK(cudaFree(d_data_ca)); CU_CHK(cudaFree(d_cluster_count)); // Print Meassurement Results std::cout << "Results:\n" << "H2D [ms], kernel [ms]\n" << time_copyH2D.count() << ", " << time_kernel.count() << "\n"; return 0; }
19,486
#include "includes.h" __global__ static void kernelFindMax4(const int* dataArray, int arraySize, int* maxVal) { __shared__ extern int cache[]; int cacheIndex = threadIdx.x; int arrayIndex1 = (int)(blockDim.x * blockIdx.x + threadIdx.x); // グローバルメモリの1つ目の要素番号 int arrayIndex2 = arrayIndex1 + gridDim.x * blockDim.x; // グローバルメモリの2つ目の要素番号 cache[cacheIndex] = INT_MIN; if (arrayIndex1 < arraySize) { cache[cacheIndex] = max(cache[cacheIndex] , dataArray[arrayIndex1]); // シェアードメモリと比較 } if (arrayIndex2 < arraySize) { cache[cacheIndex] = max(cache[cacheIndex] , dataArray[arrayIndex2]); // シェアードメモリと比較 } __syncthreads(); int blockSize = blockDim.x; for (int offset = blockSize >> 1; offset > 0; offset >>= 1) { if (cacheIndex < offset) { cache[cacheIndex] = max(cache[cacheIndex], cache[cacheIndex ^ offset]); } __syncthreads(); } if (cacheIndex == 0) { atomicMax(maxVal, cache[0]); } }
19,487
#include <cuda_runtime.h> #include <stdio.h> constexpr size_t N = 512; __global__ void add_one(size_t n, float* x) { int i = threadIdx.x; if (i < n) { x[i] = x[i] + 1; } } void switch_device() { // select device 0 size_t size = N * sizeof(float); cudaSetDevice(0); // Set device 0 as current float* p0; cudaMalloc(&p0, size); add_one<<<1, N>>>(N, p0); // Launch kernel on device 0 // switch to device 1 cudaSetDevice(1); // Set device 1 as current float* p1; cudaMalloc(&p1, size); add_one<<<1, N>>>(N, p1); // Launch kernel on device 1 } void p2p_memory_access() { cudaSetDevice(0); // Set device 0 as current float* p0; size_t size = N * sizeof(float); cudaMalloc(&p0, size); // Allocate memory on device 0 add_one<<<1, N>>>(N, p0); // Launch kernel on device 0 cudaSetDevice(1); // Set device 1 as current cudaDeviceEnablePeerAccess(0, 0); // Enable peer-to-peer access with device 0 // Launch kernel on device 1 // This kernel launch can access memory on device 0 at address p0 add_one<<<1, N>>>(N, p0); } void p2p_memory_copy() { cudaSetDevice(0); // Set device 0 as current float* p0; size_t size = N * sizeof(float); cudaMalloc(&p0, size); // Allocate memory on device 0 cudaSetDevice(1); // Set device 1 as current float* p1; cudaMalloc(&p1, size); // Allocate memory on device 1 cudaSetDevice(0); // Set device 0 as current add_one<<<1, N>>>(N, p0); // Launch kernel on device 0 cudaSetDevice(1); // Set device 1 as current /** * implicit barrier * cudaMemcpyPeer starts after all commands on both devices finish * all commands on both devices issue after cudaMemcpyPeer finish */ cudaMemcpyPeer(p1, 1, p0, 0, size); // Copy p0 to p1 add_one<<<1, N>>>(N, p1); // Launch kernel on device 1 } int main(void) { // enumerate these devices int deviceCount; cudaGetDeviceCount(&deviceCount); int device; for (device = 0; device < deviceCount; ++device) { cudaDeviceProp deviceProp; cudaGetDeviceProperties(&deviceProp, device); printf("Device %d has compute capability %d.%d.\n", device, deviceProp.major, deviceProp.minor); } switch_device(); p2p_memory_access(); }
19,488
// Dan Rolfe #define BLOCKSIZE 32 /** * cuda vector add function **/ // there is a problem here, running this ruins the add __global__ void d_add( float* __restrict__ x, float* __restrict__ y, float* __restrict__ z, int size) { int index = threadIdx.x + blockIdx.x * blockDim.x; if(index < size) z[index] = x[index] + y[index]; } /** * mul: * cuda vector multiply function **/ __global__ void d_mul( float* __restrict__ x, float* __restrict__ y, float* __restrict__ z, int size) { int index = threadIdx.x + blockIdx.x * blockDim.x; if(index < size) z[index] = x[index] * y[index]; }
19,489
#include <iostream> struct fields { unsigned a : 4; unsigned b : 4; unsigned c : 4; unsigned d : 4; unsigned e : 4; unsigned f : 4; unsigned g : 4; unsigned h : 4; }; union u { unsigned int i; fields f; }; __device__ __forceinline__ unsigned int bfe(unsigned int x, unsigned int bit, unsigned int numBits) { unsigned int ret; asm volatile ("{ \n\t" " bfe.u32 %0, %1, %2, %3;\n\t" "} \n\t" : "=r"(ret) : "r"(x), "r"(bit), "r"(numBits)); return ret; } __device__ __forceinline__ unsigned int c_extract(unsigned int in, int which) { u x; x.i = in; if (which == 0) return x.f.a; else if (which == 1) return x.f.b; else if (which == 2) return x.f.c; else if (which == 3) return x.f.d; else return 0; } __device__ __forceinline__ unsigned int d_extract(unsigned int in, int which) { if (which == 0) return bfe(in, 0, 4); else if (which == 1) return bfe(in, 4, 4); else if (which == 2) return bfe(in, 8, 4); else if (which == 3) return bfe(in, 12, 4); else return 0; } __global__ void fun_c(int * mem, int size) { for (int i = 0; i < size; ++i) { mem[i] = c_extract(mem[i], 0); } } __global__ void fun_d(int * mem, int size) { for (int i = 0; i < size; ++i) { mem[i] = d_extract(mem[i], 0); } } int main() { u y; y.f.a = 0xf; std::cout << std::hex << y.i << "\n"; y.f.b = 0xf; std::cout << std::hex << y.i << "\n"; y.f.c = 0xf; std::cout << std::hex << y.i << "\n"; y.f.d = 0xf; std::cout << std::hex << y.i << "\n"; y.f.e = 0xf; std::cout << std::hex << y.i << "\n"; y.f.f = 0xf; std::cout << std::hex << y.i << "\n"; y.f.g = 0xf; std::cout << std::hex << y.i << "\n"; y.f.h = 0xf; std::cout << std::hex << y.i << "\n"; int * h; int * d; int n = 50; h = (int*)malloc(n * sizeof(int)); cudaMalloc(&d, n * sizeof(int)); { for (int i = 0; i < n; ++i) h[i] = i; cudaMemcpy(d, h, n * sizeof(int), cudaMemcpyHostToDevice); fun_c<<<1,1>>>(d, n); cudaThreadSynchronize(); int rv = cudaGetLastError(); cudaMemcpy(h, d, n * sizeof(int), cudaMemcpyDeviceToHost); std::cout << "Result:\n"; for (int i = 0; i < n; ++i) std::cout << std::hex << h[i] << "\n"; } { for (int i = 0; i < n; ++i) h[i] = i; cudaMemcpy(d, h, n * sizeof(int), cudaMemcpyHostToDevice); fun_d<<<1,1>>>(d, n); cudaThreadSynchronize(); int rv = cudaGetLastError(); cudaMemcpy(h, d, n * sizeof(int), cudaMemcpyDeviceToHost); std::cout << "Result:\n"; for (int i = 0; i < n; ++i) std::cout << std::hex << h[i] << "\n"; } return 0; }
19,490
#include <thrust/random.h> #include <thrust/iterator/counting_iterator.h> #include <thrust/transform.h> #include <thrust/device_vector.h> #include <thrust/functional.h> #include <iostream> struct randf :public thrust::unary_function<int, float> { int seed; randf(int seed_) :seed(seed_){} __device__ __host__ float operator()(int ind){ thrust::default_random_engine rng(seed); rng.discard(1 * ind); thrust::uniform_real_distribution<float> u01(0,1); return u01(rng); } }; int main(void){ thrust::device_vector<float> output(2); for(int i=0; i<10; i++){ thrust::transform(thrust::counting_iterator<int>(0), thrust::counting_iterator<int>(2), output.begin(), randf(i+1)); // seed of 0 and 1 somehow returns the same number std::cout << output[0] << " " << output[1] << std::endl; } return 0; }
19,491
// file esempio querydevice #include "stdio.h" static void HandleError( cudaError_t err, const char *file, int line) { if (err != cudaSuccess) { printf("%s in %s at line %d\n", cudaGetErrorString( err ), file, line); exit(EXIT_FAILURE); } } #define HANDLE_ERROR(err)(HandleError(err, __FILE__, __LINE__)) int main( void ) { cudaDeviceProp prop; int count; HANDLE_ERROR( cudaGetDeviceCount( &count) ); for (int i=0; i<count; i++) { HANDLE_ERROR( cudaGetDeviceProperties( &prop, i )); printf(" -- General Information for device %d --\n", i); printf("Name: %s\n", prop.name); printf("Compute capability: %d.%d\n", prop.major, prop.minor); printf("Clock rate: %d\n", prop.clockRate); printf("Device copy overlap: "); if(prop.deviceOverlap) printf("Enabled\n"); else printf("Disabled\n"); printf("Kernel executionn timeout: "); if (prop.kernelExecTimeoutEnabled) printf("Enabled\n"); else printf("Disabled\n"); printf(" -- Memory Information for device %d --\n", i); printf("Total global mem: %ld\n", prop.totalGlobalMem); printf("Total constant mem: %ld\n", prop.totalConstMem); printf("Max mem pitch: %ld\n", prop.textureAlignment); printf(" -- MP Information for device %d --\n", i); printf("Multiprocessor count: %d\n", prop.multiProcessorCount); printf("Shared mem per mp: %ld\n", prop.sharedMemPerMultiprocessor); printf("Register per mp: %d\n", prop.regsPerMultiprocessor); printf("Threads in warp: %d\n", prop.warpSize); printf("Max threads per block: %d\n", prop.maxThreadsPerBlock); printf("Max thread dimensions: (%d, %d, %d)\n", prop.maxThreadsDim[0], prop.maxThreadsDim[1], prop.maxThreadsDim[2]); printf("Max grid dimensions: (%d, %d, %d)\n", prop.maxGridSize[0], prop.maxGridSize[1], prop.maxGridSize[2]); printf("\n"); } return 0; }
19,492
#include <cuda.h> extern "C" __global__ void kern(int *out) { out[0] = 1; }
19,493
#include "includes.h" __global__ void MatrixMulKernel (float* Md, float* Nd, float* Pd, int ncols) { int row = blockIdx.y*blockDim.y + threadIdx.y; int col = blockIdx.x*blockDim.x + threadIdx.x; // Pvalue is used to store the element of the output matrix // that is computed by the thread float Pvalue = 0; for (int k=0; k < ncols; ++k) { float Melement = Md[row*ncols+k]; float Nelement = Nd[k*ncols+col]; Pvalue += Melement * Nelement; } Pd[row*ncols+col] = Pvalue; }
19,494
#include "includes.h" __global__ void MatrixTranspose(const float *A_elements, float *B_elements, const int A_width, const int A_height) { int strideRow = blockDim.y * gridDim.y; int strideCol = blockDim.x * gridDim.x; for(int row = blockIdx.y * blockDim.y + threadIdx.y; row < A_width; row += strideRow) for(int col = blockIdx.x * blockDim.x + threadIdx.x; col < A_height; col += strideCol) { B_elements[row * A_height + col] = A_elements[col * A_width + row]; } }
19,495
// nvcc -arch=sm_21 -o cuda_dstar cuda_dstar.cu -lrt -lm #include <cstdio> #include <cstdlib> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <time.h> #define MAPROW 5 #define MAPCOL 5 #define MAX 9999 #define STRCOL 0 #define STRROW 0 #define DSTCOL 4 #define DSTROW 4 #define BLOCK 5 typedef struct { int key1; // min(g(x), rhs(x) + h(x)) int key2; // min(g(x), rhs(x)) } keyvalue; typedef struct { int x, y; // coordinate int px, py; // parents int g, h, rhs; // parameters keyvalue key; // keyvalue int type; // terrain: to be defined, i.e. ostacle / river / mountain / ground int inlist; // used in openlist } point; // Initiation can be done parallelly. // Parallel A* Kernel // In each kernel, a starting and destination point is given and the optimal path is calculate. // Path should be stored in a list. In the meantime, cost between the two points should be stored. __device__ void CalculateKey(point *p) { point *t = p; int temp; temp = t->rhs + t->h; t->key.key1 = (t->g > temp) ? temp : t->g; t->key.key2 = (t->g > t->rhs) ? t->rhs : t->g; //printf("key %d\t%d\t%d\t%d\n", p.y, p.x, p.key.key1, p.key.key2); } __device__ void InitMap(point *map) // can be done in GPU { int i, j; for (i = 0; i < MAPROW; i++) for (j = 0; j < MAPCOL; j++) { map[i*BLOCK+j].g = MAX; // set an extremely large number map[i*BLOCK+j].h = (i > j) ? i : j; // set the origin point as starting point map[i*BLOCK+j].rhs = MAX; // set an extremely large number map[i*BLOCK+j].inlist = 0; // not in list map[i*BLOCK+j].key.key1 = MAX; map[i*BLOCK+j].key.key2 = MAX; } } __device__ void CalculateCost(point dst, point src, int *cst) { int flag, cost; flag = dst.type * src.type; switch (flag) { case 1: cost = 1; break; // ground to ground case 2: cost = 5; break; // ground to water / water to ground case 3: cost = 10; break; // ground to mount / mount to ground case 4: cost = 2; break; // water to water case 6: cost = 20; break; // mount to water / water to mount case 9: cost = 15; break; // mount to mount default: cost = MAX; break; } *cst = cost; } __device__ void UpdateVertex(point p, point *map) { // Update RHS int i, j, temp, cost, row, col; int r = p.rhs; // set a large value at first for (i = -1; i < 2; i++) { row = p.y + i; if (row >=0 && row < MAPROW) for (j = -1; j < 2; j++) { col = p.x + j; if (col >=0 && col < MAPCOL) { if (i == 0 && j == 0) cost = 0; else CalculateCost(p, map[row*BLOCK+col], &cost); temp = map[row*BLOCK+col].g + cost; if (r >= temp) { r = temp; if (col != p.x || row != p.y) { p.px = col; p.py = row; } } } } } p.rhs = r; if (p.rhs != p.g) { p.inlist = 1; CalculateKey(&p); } else p.inlist = 0; map[p.y*BLOCK+p.x] = p; //printf("update debug: %d %d %d %d\n", p.y, p.x, p.py, p.px); //printf("%d\t%d\t%d\t%d\t%d\t%d\t%d\n", p.y, p.x, p.g, p.rhs, p.key.key1, p.key.key2, p.inlist); } __device__ void FindKey(point *map, int *cx, int *ry) { int i, j, x, y; point *data = map; int temp1 = MAX; int temp2 = MAX; x = 0; y = 0; for (i = 0; i < MAPROW; i++) { for (j = 0; j < MAPCOL; j++) { if (data[i*BLOCK+j].inlist == 1) // only points inlist will be compared { keyvalue kk = data[i*BLOCK+j].key; if (temp1 > kk.key1) { temp1 = kk.key1; temp2 = kk.key2; x = j; y = i; } else if (temp1 == kk.key1) { if (temp2 > kk.key2) { temp2 = kk.key2; x = j; y = i; } } } } } *cx = x; *ry = y; //printf("update: %d\t%d\n", y, x); } __device__ void ShortestPath(int cx, int ry, point *map) { int position; // Top Key point *data = map; int i, j, row, col; point cur = data[ry*BLOCK+cx]; //printf("debug: %d %d %d %d\n", cur.x, cur.y, cur.key.key1, cur.key.key2); if (cur.g > cur.rhs) { data[ry*BLOCK+cx].g = data[ry*BLOCK+cx].rhs; for (i = -1; i <= 1; i++) { row = ry + i; if (row >= 0 && row < MAPROW) for (j = -1; j <=1 ; j++) { col = cx + j; if (col >= 0 && col < MAPCOL) { //if (i != 0 || j!= 0) //{ //printf("debug neighbors: %d %d\n", row, col); point temp = data[row*BLOCK+col]; if (temp.type > 0) UpdateVertex(temp, map); //} } } } } else // update itself as well { data[ry*BLOCK+cx].g = MAX; // set a large value for (i = -1; i < 2; i++) { row = ry + i; if (row >= 0 && row < MAPROW) for (j = -1; j < 2; j++) { col = cx + j; if (col >= 0 && col < MAPCOL) { point temp = data[row*BLOCK+col]; if (temp.type > 0) UpdateVertex(temp, map); } } } } } // cuda kernel __global__ void kernel_path(point *map, int mx, int my, int sx, int sy, int dx, int dy) { point top = map[dy*BLOCK+dx]; point goal = map[sy*BLOCK+sx]; int row, col, i, j, it, ry, cx; int flag = 0; InitMap(map); cx = dx; ry = dy; map[ry*BLOCK+cx].inlist = 1; // put start point into list map[ry*BLOCK+cx].rhs = 0; // set start point rhs as 0 map[ry*BLOCK+cx].key.key1 = map[(my-1)*BLOCK+mx-1].h; map[ry*BLOCK+cx].key.key2 = 0; keyvalue topkey = top.key; keyvalue goalkey = goal.key; printf("kernel test: %d\n", map[0].key.key1); if (topkey.key1 < goalkey.key1 || (topkey.key1 == goalkey.key1 && topkey.key2 < goalkey.key2) || goal.rhs != goal.g) flag = 1; else flag = 0; it = 0; while (flag) { printf("iter %d\t%d\t%d\n", it, ry, cx); ShortestPath(cx, ry, map); //printf("dst inlist %d\n", map[MAPROW-1][MAPCOL-1].inlist); FindKey(map, &cx, &ry); //printf("iter %d\t%d\t%d\n", it, ry, cx); top = map[ry*BLOCK+cx]; goal = map[STRROW*BLOCK+STRCOL]; topkey = top.key; goalkey = goal.key; if (topkey.key1 < goalkey.key1 || (topkey.key1 == goalkey.key1 && topkey.key2 < goalkey.key2) || goal.rhs != goal.g) flag = 1; else flag = 0; it++; } } int main() { int i, j, row, col; point *map, *d_map; const size_t map_size = sizeof(point) * MAPROW * MAPCOL; cudaMallocHost((void**)&map, map_size); FILE *fp = fopen("map2.csv", "r"); if (fp != NULL) { for (i = 0; i < MAPROW; i++) for (j = 0; j < MAPCOL; j++) { fscanf(fp, "%d,%d,%d\n", &map[i*BLOCK+j].y, &map[i*BLOCK+j].x, &map[i*BLOCK+j].type); //printf("%d\t%d\t%d\n", map[i][j].x, map[i][j].y, map[i][j].type); } } fclose(fp); cudaMalloc((void **)&d_map, map_size); cudaMemcpy(d_map, map, map_size, cudaMemcpyHostToDevice); printf("cpu test: %d\n", map[0].type); dim3 gridSize(1, 1, 1); //dim3 blockSize(); kernel_path<<<gridSize, 1>>>(d_map, MAPCOL, MAPROW, STRCOL, STRROW, DSTCOL, DSTROW); cudaDeviceSynchronize(); cudaMemcpy(map, d_map, map_size, cudaMemcpyDeviceToHost); // row = STRROW; // col = STRCOL; // point path = map[row*BLOCK+col]; // while (row != DSTROW || col != DSTCOL) // { // printf("Coordinate[%d, %d]\n", row, col); // row = path.py; // col = path.px; // path = map[row*BLOCK+col]; // } // printf("Coordinate[%d, %d]\n", row, col); cudaFreeHost(map); cudaFree(d_map); }
19,496
#include <cstdio> #define DLIMIT 99999999 // Cluster Center // // float* f; // vector of size #channels // float x, y, z; // #define __min(a, b) (((a) < (b)) ? (a) : (b)) #define __max(a, b) (((a) >= (b)) ? (a) : (b)) /* * P = point * S = data shape * F = data # features */ __device__ float at(const float* data, const int4& P, const int3& S) { long s2d = S.y * S.x, s3d = S.z * S.y * S.x; return data[P.w * s3d + P.z * s2d + P.y * S.x + P.x]; } __device__ float gradient(const float* data, int4& P, const int3& S, int nf) { float d; float3 diff; int4 q; q.z = P.z; q.y = P.y; q.x = P.x; for ( int k = 0; k < nf; k++ ) { q.w = P.w = k; q.x = P.x + 1; d = at(data, P, S) - at(data, q, S); diff.x += d * d; q.x = P.x; q.y = P.y + 1; d = at(data, P, S) - at(data, q, S); diff.y += d * d; q.y = P.y; q.z = P.z + 1; d = at(data, P, S) - at(data, q, S); diff.z += d * d; } return diff.x + diff.y + diff.z; } __global__ void init_clusters(const float* data, float* centers, const int n_clusters, const int n_features, const int3 sp_grid, const int3 sp_shape, const int3 im_shape) { long lidx = threadIdx.x + (blockIdx.x * blockDim.x); if ( lidx >= n_clusters ) { return; } int3 idx; int plane = sp_grid.y * sp_grid.x; idx.z = lidx / plane; int aux = lidx % plane; idx.y = aux / sp_grid.x; idx.x = aux % sp_grid.x; int3 jdx; int volume_linear_idx = lidx; jdx.z = volume_linear_idx / (sp_grid.x * sp_grid.y); int plane_linear_idx = volume_linear_idx - jdx.z * sp_grid.x * sp_grid.y; jdx.y = plane_linear_idx / sp_grid.x; jdx.x = plane_linear_idx % sp_grid.x; int4 p, q, r; p.z = r.z = idx.z * sp_shape.z + sp_shape.z / 2; p.y = r.y = idx.y * sp_shape.y + sp_shape.y / 2; p.x = r.x = idx.x * sp_shape.x + sp_shape.x / 2; int shift = n_features + 3; centers[lidx * shift + n_features + 0] = r.z; centers[lidx * shift + n_features + 1] = r.y; centers[lidx * shift + n_features + 2] = r.x; } __global__ void expectation(const float* data, const float* centers, unsigned int* labels, const float m, const float S, const int n_clusters, const int n_features, const float3 spacing, const int3 sp_grid, const int3 sp_shape, const int3 im_shape) { int4 idx, p, q; long gidx = threadIdx.x + (blockIdx.x * blockDim.x); if ( gidx >= im_shape.x * im_shape.y * im_shape.z ) { return; } // linear index to 3D pixel index transformation int plane = im_shape.y * im_shape.x; int aux = gidx % plane; idx.z = gidx / plane; idx.y = aux / im_shape.x; idx.x = aux % im_shape.x; // approx center grid positoin p.z = __max(0, __min(idx.z / sp_shape.z, sp_grid.z - 1)); p.y = __max(0, __min(idx.y / sp_shape.y, sp_grid.y - 1)); p.x = __max(0, __min(idx.x / sp_shape.x, sp_grid.x - 1)); float min_d = DLIMIT, d, dist, adiff, pdiff; int R = 2, cshift = n_features + 3; long cidx, ridx = 0; for ( int k = -R; k <= R; k++ ) { q.z = p.z + k; if ( q.z < 0 || q.z >= sp_grid.z ) {continue;} for ( int i = -R; i <= R; i++ ) { q.y = p.y + i; if ( q.y < 0 || q.y >= sp_grid.y ) {continue;} for ( int j = -R; j <= R; j++ ) { q.x = p.x + j; if ( q.x < 0 || q.x >= sp_grid.x ) {continue;} cidx = q.z * sp_grid.y * sp_grid.x + q.y * sp_grid.x + q.x; if ( centers[cidx * cshift] == DLIMIT ) { continue; } // Appearance diff adiff = 0; for ( int w = 0; w < n_features; w++ ) { idx.w = w; d = at(data, idx, im_shape) - centers[cidx * cshift + w]; adiff += d * d; } // Position diff float3 pd; pd.z = (idx.z - centers[cidx * cshift + n_features + 0]) * spacing.z; pd.y = (idx.y - centers[cidx * cshift + n_features + 1]) * spacing.y; pd.x = (idx.x - centers[cidx * cshift + n_features + 2]) * spacing.x; pdiff = pd.z * pd.z + pd.y * pd.y + pd.x * pd.x; dist = adiff / (m * m * n_features * n_features) + pdiff / (S * S); // Wrapup if ( dist < min_d ) { min_d = dist; ridx = cidx; } } } } labels[gidx] = ridx + 1; } __global__ void maximization(const float* data, const unsigned int* labels, float* centers, int n_clusters, int n_features, const int3 sp_grid, const int3 sp_shape, const int3 im_shape) { long lidx = threadIdx.x + (blockIdx.x * blockDim.x); if ( lidx >= n_clusters ) { return; } long cshift = n_features + 3; int3 cidx; cidx.z = (int) centers[lidx * cshift + n_features + 0]; cidx.y = (int) centers[lidx * cshift + n_features + 1]; cidx.x = (int) centers[lidx * cshift + n_features + 2]; float ratio = 2.0f; int3 from; from.z = __max(cidx.z - sp_shape.z * ratio, 0); from.y = __max(cidx.y - sp_shape.y * ratio, 0); from.x = __max(cidx.x - sp_shape.x * ratio, 0); int3 to; to.z = __min(cidx.z + sp_shape.z * ratio, im_shape.z); to.y = __min(cidx.y + sp_shape.y * ratio, im_shape.y); to.x = __min(cidx.x + sp_shape.x * ratio, im_shape.x); int4 p; float* f = new float[cshift]; for ( int k = 0; k < cshift; k++ ) {f[k] = 0;} long count = 0, offset, s2d = im_shape.x * im_shape.y; for ( p.z = from.z; p.z < to.z; p.z++ ) { for ( p.y = from.y; p.y < to.y; p.y++ ) { for ( p.x = from.x; p.x < to.x; p.x++ ) { offset = p.z * s2d + p.y * im_shape.x + p.x; if ( labels[offset] == lidx + 1 ) { for ( int w = 0; w < n_features; w++ ) { p.w = w; f[w] += at(data, p, im_shape); } f[n_features + 0] += p.z; f[n_features + 1] += p.y; f[n_features + 2] += p.x; count += 1; } } } } if ( count > 0 ) { for ( int w = 0; w < cshift; w++ ) { centers[lidx * cshift + w] = f[w] / count; } } else { centers[lidx * cshift] = DLIMIT; } delete[] f; }
19,497
#include <stdio.h> #define N 3 #define M 2 __global__ void add(int *a, int *b, int *c) { int tid = threadIdx.x; // if(tid < N) for(int i = 0; i < N; i++) c[tid * N + i] = a[tid * N + i] + b[tid * N + i]; } int main() { // int *a, *b, *c; int a[M * N], b[M * N], c[M * N]; // host copies of variables a, b & c int *d_a, *d_b, *d_c; // device copies of variables a, b & c int size = sizeof(int) * M * N; // a = (int *)malloc(sizeof(int) * N); // b = (int *)malloc(sizeof(int) * N); // c = (int *)malloc(sizeof(int) * N); // Allocate space for device copies a, b & c cudaMalloc((void**)&d_a, size); cudaMalloc((void**)&d_b, size); cudaMalloc((void**)&d_c, size); // Setup input values printf("Enter values for a: "); for(int i = 0; i < M; i++) for(int j = 0; j < N; j++) scanf("%d", &a[i * N + j]); printf("Enter values for b: "); for(int i = 0; i < M; i++) for(int j = 0; j < N; j++) scanf("%d", &b[i * N + j]); // Copy inputs to device cudaMemcpy(d_a, &a, size, cudaMemcpyHostToDevice); cudaMemcpy(d_b, &b, size, cudaMemcpyHostToDevice); // Launch add() kernel on GPU add<<<1, N>>>(d_a, d_b, d_c); // Copy result back to host cudaMemcpy(&c, d_c, size, cudaMemcpyDeviceToHost); // print result for(int i = 0; i < M; i++) { for(int j = 0; j < N; j++) printf("%d + %d = %d\n", a[i * N + j], b[i * N + j], c[i * N + j]); } // Cleanup cudaFree(d_a); cudaFree(d_b); cudaFree(d_c); return 0; }
19,498
#include <stdio.h> #include <time.h> #include <unistd.h> #include <stdlib.h> #include <math.h> using namespace std; __device__ void _2Dstencil_(int *d_e,int *d_r,float* c_coeff,int X,int Y,int k, int x, int y,int GX,int Gx,int Gy) { int h_e_i; int h_r_i = x + ( y * (X) ); h_e_i = h_r_i; int temp = d_e[h_r_i]; temp *= c_coeff[0]; for(int lk =1;lk<(k/2)+1;lk++) { h_e_i = (x+lk) + ( (y) * (X) ); temp += d_e[h_e_i]*c_coeff[lk]; h_e_i = (x-lk) + ( (y) * (X) ); temp += d_e[h_e_i]*c_coeff[lk]; h_e_i = (x) + ( (y+lk) * (X) ); temp += d_e[h_e_i]*c_coeff[lk]; h_e_i = (x) + ( (y-lk) * (X) ); temp += d_e[h_e_i]*c_coeff[lk]; } h_r_i = Gx + ( (Gy) * (GX) ); d_r[h_r_i] = temp; } __global__ void _2Dstencil_global(int *d_e,int *d_r,float *c_coeff,int X,int Y,int k,int times){ int x,y;//,h_e_i,h_r_i,Xs,Ys,Dx,Dy; x = threadIdx.x + (blockIdx.x*blockDim.x); y = threadIdx.y + (blockIdx.y*blockDim.y); int k2 = k/2*times; extern __shared__ int shared[]; int blockThreadIndex = threadIdx.x + threadIdx.y*blockDim.x; // Xs = threadIdx.x; // Ys = threadIdx.y; int Dx = blockDim.x+(k*times); int Dy = blockDim.y+(k*times); int sharedTam = Dx*Dy; int * sharedRes = &shared[sharedTam]; for(int stride=blockThreadIndex;stride<sharedTam;stride+=(blockDim.x*blockDim.y)) { int globalIdx = (blockIdx.x*blockDim.x)-k2+stride%Dx + ((blockIdx.y*blockDim.y)-k2+stride/Dx)*X; if(globalIdx > 0 && (blockIdx.x*blockDim.x)-k2+stride%Dx < X && ((blockIdx.y*blockDim.y)-k2+stride/Dx)<Y) shared[stride] = d_e[globalIdx]; else shared[stride] = 0; } __syncthreads(); for(int t=times-1;t>0;t--) { //_2Dstencil_(shared,sharedRes,c_coeff,Dx,Dy,k,threadIdx.x+k2,threadIdx.y+k2,Dx,threadIdx.x+k2,threadIdx.y+k2); int tDx = blockDim.x+(t*k); int tDy = blockDim.y+(t*k); int tk2 = (times-t)*k/2; // int tDx = blockDim.x+(1*k); // int tDy = blockDim.y+(1*k); // int tk2 = (1)*k/2; int tSharedTam = tDx * tDy; for(int stride=blockThreadIndex;stride<tSharedTam;stride+=(blockDim.x*blockDim.y)) { _2Dstencil_(shared,sharedRes,c_coeff,Dx,Dy,k,(stride%tDx)+tk2,(stride/tDx)+tk2,Dx,(stride%tDx)+tk2,(stride/tDx)+tk2); } __syncthreads(); for(int stride=blockThreadIndex;stride<sharedTam;stride+=(blockDim.x*blockDim.y)) { shared[stride]=sharedRes[stride]; } __syncthreads(); } _2Dstencil_(shared,d_r,c_coeff,Dx,Dy,k,threadIdx.x+k2,threadIdx.y+k2,X,x,y); // for(int stride=blockThreadIndex;stride<sharedTam;stride+=(blockDim.x*blockDim.y)) // { // int globalIdx = (blockIdx.x*blockDim.x)-k2+stride%Dx + ((blockIdx.y*blockDim.y)-k2+stride/Dx)*X; // if(globalIdx > 0 && (blockIdx.x*blockDim.x)-k2+stride%Dx < X && ((blockIdx.y*blockDim.y)-k2+stride/Dx)<Y) // d_r[globalIdx] = sharedRes[stride]; // } } int main(int argc, char* argv[]) { int *h_e,*h_r; int *d_e, *d_r; int size,tam,sharedSize,sharedTam; int X=32; int Y=32; int k=4; int times = 1; int BX=32; int BY=32; int GX=1; int GY=1; float *c_coeff,*d_c_coeff; if(argc > 1) { X = atoi(argv[1]); Y = X; } if(argc > 2) { k = atoi(argv[2]); } if(argc > 3) { times = atoi(argv[3]); } if(X>32) { GX = ceil((float)X/(float)32); BX = 32; } if(Y>32) { GY = ceil((float)Y/(float)32); BY = 32; } dim3 block_dim(BX,BY,1); dim3 grid_dim(GX,GY,1); //sharedSize = ((block_dim.x+k)*(block_dim.y+k))*sizeof(int); sharedSize = ((block_dim.x+(k*times))*(block_dim.y+(k*times)))*sizeof(int)*2; //sharedTam = ((block_dim.x+(k*2))*(block_dim.y+(k*2))); size = X * Y * sizeof(int); tam = X * Y; h_e = (int*) malloc(size); h_r = (int*) malloc(size); c_coeff = (float*)malloc((k/2+1)*sizeof(float)); cudaMalloc(&d_e, size); cudaMalloc(&d_r, size); cudaMalloc(&d_c_coeff,(k/2+1)*sizeof(float)); printf("\n coefs \n"); for(int i=0;i<(k/2+1);i++) { c_coeff[i]=(float)((k/2+1)-i)/(float)(k/2+1); } for(int i=0;i<(k/2+1);i++) { printf(" %f",c_coeff[i]); } printf("\n coefs \n"); FILE *arq; arq = fopen("entrada.txt", "rt"); for(int i=0;i<X;i++) for(int j=0;j<Y;j++) fscanf(arq," %d",&h_e[i+j*X]); fclose(arq); /* Copy vectors from host memory to device memory */ cudaMemcpy(d_e, h_e, size, cudaMemcpyHostToDevice); cudaMemcpy(d_c_coeff, c_coeff, (k/2+1)*sizeof(float), cudaMemcpyHostToDevice); cudaEvent_t start, stop; cudaEventCreate (&start); cudaEventCreate (&stop); cudaEventRecord (start, 0); /****************** *** Kernel Call *** *******************/ //_3Dstencil_global<<<blks,th_p_blk>>>(d_e,d_r,X,Y,Z); _2Dstencil_global<<<grid_dim,block_dim,sharedSize>>>(d_e,d_r,d_c_coeff,X,Y,k,times); cudaError_t err = cudaSuccess; err = cudaGetLastError(); if (err != cudaSuccess) { fprintf(stderr, "Failed to launch _3Dstencil_global kernel (error code %s)!\n", cudaGetErrorString(err)); } /****************** *** Kernel Call *** *******************/ cudaDeviceSynchronize(); cudaEventRecord (stop, 0); cudaEventSynchronize (stop); float elapsedTime; cudaEventElapsedTime (&elapsedTime, start, stop); cudaEventDestroy(start); cudaEventDestroy(stop); printf("X %d || Y %d \nBX %d || BY %d \n",X,Y,BX,BY); printf ("[%d,%.5f],\n", tam,elapsedTime); cudaMemcpy(h_r, d_r, size, cudaMemcpyDeviceToHost); arq = fopen("resultado.txt", "wt"); for(int i=0;i<X;i++) { for(int j=0;j<Y;j++) { fprintf(arq," %d",h_r[i+j*X]); } fprintf(arq,"\n"); } fclose(arq); cudaFree(d_e); cudaFree(d_r); cudaFree(d_c_coeff); std::free(h_e); std::free(h_r); std::free(c_coeff); return 0; } /* main */ /* for(int lk = 1;lk<(k/2)+1;lk++) { if(x+lk < X) { if((x+lk)/Dx == blockIdx.x) { h_e_i = ((x+lk)%Dx) + ( (Ys) * (Dx) ); temp += shared[h_e_i]*c_coeff[lk]; }else { h_e_i = (x+lk) + ( (y) * (X) ); temp += d_e[h_e_i]*c_coeff[lk]; } } if(x-lk >= 0) { if((x-lk)/Dx == blockIdx.x) { h_e_i = ((x-lk)%Dx) + ( (Ys) * (Dx) ); temp += shared[h_e_i]*c_coeff[lk]; } else { h_e_i = (x-lk) + ( (y) * (X) ); temp += d_e[h_e_i]*c_coeff[lk]; } } if(y+lk < Y) { if((y+lk)/Dy == blockIdx.y) { h_e_i = ((Xs) + ( ((y+lk)%Dy) * (Dx) )); temp += shared[h_e_i]*c_coeff[lk]; } else { h_e_i = (x) + ( (y+lk) * (X) ); temp += d_e[h_e_i]*c_coeff[lk]; } } if(y-lk >= 0) { if((y-lk)/Dy == blockIdx.y) { h_e_i = ((Xs) + ( ((y-lk)%Dy) * (Dx) )); temp += shared[h_e_i]*c_coeff[lk]; } else { h_e_i = (x) + ( (y-lk) * (X) ); temp += d_e[h_e_i]*c_coeff[lk]; } } } d_r[h_r_i] = temp; */
19,499
#define TUD 2 #define BPW 3 #define WST 8 #define WSU 8 #define WSV 8 #define WS (WST*WSU*WSV) #define CELL_LENGTH 4 #define CELL_SIZE (4*4*4) #define BLOCK_SIZE (WS*CELL_SIZE) #define BS_NUINT (BLOCK_SIZE/4) #define WLT (WST*CELL_LENGTH) #define WLU (WSU*CELL_LENGTH) #define WLV (WSV*CELL_LENGTH) #define TUV_MASK 0x421 #define T_MASK 0x0079 #define U_MASK 0x0782 #define V_MASK 0x7804 #define CELL_MASK 0x88f #include <stdint.h> #define uint uint32_t // #define SLAB_MASK 0x3001 __device__ uint NextPrev(uint site, uint* lattice); __device__ uint GlobalSite(uint lSite, uint lid); __device__ uint EdgeOutside(uint site, uint next); __device__ uint OutOfBounds(uint site, uint next); __device__ uint OnEdge(uint site); __device__ uint RelPos(uint unit); __device__ uint AddUnitToSite(uint unit, uint site); __device__ uint GPUValidateAddUnitVectors(uint a, uint b, uint* c); __device__ uint GPUAddUnitVectors(uint a, uint b); __device__ void TransMove(uint* lattice, uint site, uint* slab, uint* trans, uint4* rngState); __device__ void DiffuseSL(uint* lattice, uint site, uint* slab); __device__ int LocalSiteToSite(uint localSite); __device__ void SetEdges(uint* slab, uint* lattice, uint lidSiteStart); __device__ uint Rng4(uint4* state){ uint b; b = ((((*state).x << 6)^(*state).x) >> 13); (*state).x = ((((*state).x & 4294967294) << 18) ^b); b = ((((*state).y << 2)^(*state).y) >> 27); (*state).y = ((((*state).y & 4294967288) << 2) ^b); b = ((((*state).z << 13)^(*state).z) >> 21); (*state).z = ((((*state).z & 4294967280) << 7) ^b); b = ((((*state).w << 3)^(*state).w) >> 12); (*state).w = ((((*state).w & 4294967168) << 13)^b); return ((*state).x^(*state).y^(*state).z^(*state).w); } __device__ uint NextPrev(uint site, uint* lattice){ return (lattice[site>>2]>>(8*(site&0x3)))&0xff; } __device__ uint AddUnitToSite(uint unit, uint site){ uint flip; uint add; flip = (unit&0x8)?((unit&0x7)^0x7):unit; add = (unit&0x8)?((flip^site)&flip):(flip&site); add = ((add&0x1)<<3)|((add&0x2)<<6)|((add&0x4)<<9); site += (unit&0x8)?(-add):(add); site ^= flip; return site; } __device__ uint GPUValidateAddUnitVectors(uint a, uint b, uint* c){ uint r, valid; if((a|b) != 0xf && (a&b)) return 0; r = (((a|b)==0xf)?(a&b):(a|b)); valid = (r==0x3||r==0xc)?0:1; *c = r; return valid; } __device__ uint GPUAddUnitVectors(uint a, uint b){ return (((a|b)==0xf)?(a&b):(a|b)); } __device__ void TransMove(uint* lattice, uint site, uint* slab, uint* trans, uint4* rngState){ uint next; uint prev; uint bond, temp; uint oldNextSite, oldPrevSite, bondSite, newSite; uint nNext, nPrev; uint prevBond, rand; uint latSiteComplete, nextPrev, slabSite, latNew, latBond, latPrev, latNext; uint slabBond, label; latSiteComplete = lattice[site/4]; nextPrev = (latSiteComplete>>(8*(site&0x3)))&0xff; prev = nextPrev>>4; next=nextPrev&0xf; slabSite = slab[site/8]; if(!nextPrev) return; rand = Rng4(rngState); if((slabSite>>(16|(site&0x7)))&0x1){ // return; ///Forward: SL-> no SL prevBond = (rand&0x4)>>2; bond = (nextPrev>>(prevBond*4))&0xf; if(EdgeOutside(site, bond^(0xf*prevBond))) return; nPrev = (trans[bond/4]>>(4*(2*(bond%4)+(rand&0x1))))&0xf; nNext = GPUAddUnitVectors((~nPrev)&0xf, bond); temp = nPrev; nPrev = (rand&0x2)?nPrev:nNext; nNext = (rand&0x2)?nNext:temp; bondSite = AddUnitToSite(bond^(0xf*prevBond), site); oldNextSite = (prevBond)?site:bondSite; oldPrevSite = (prevBond)?bondSite:site; newSite = AddUnitToSite(nPrev, oldPrevSite); if(EdgeOutside(oldPrevSite, nPrev)) return; latNew = lattice[newSite/4]; if(latNew&(0xff<<((newSite&0x3)*8))) return; latNew |= (nNext|(nPrev<<4))<<((newSite&0x3)*8); latSiteComplete &= ~(0xf<<((site&0x3)*8+4*prevBond)); latSiteComplete |= ((prevBond)?(nNext<<4):nPrev)<<((site&0x3)*8); if(newSite/4 == site/4){ lattice[site/4] = (latSiteComplete&(0xff<<((site&0x3)*8))) | (latNew&(~(0xff<<((site&0x3)*8)))); } else{ lattice[site/4] = latSiteComplete; lattice[newSite/4] = latNew; } latBond = lattice[bondSite/4]; latBond &= ~(0xf<<((bondSite&0x3)*8+4*(prevBond^0x1))); latBond |= ((prevBond)?(nPrev):(nNext<<4))<<((bondSite&0x3)*8); lattice[bondSite/4] = latBond; label = (slabSite >> (((site&0x7)*2)|prevBond))&0x1; slabSite &= ~((1<<((site&0x7)|16))|(1<<(((site&0x7)*2)|prevBond))); if(!prevBond){ slabSite |= (slabSite&(1<<((site&0x7)*2+1)))>>1; slabSite &= ~(1<<((site&0x7)*2+1)); } slab[site/8] = slabSite; slab[newSite/8] |= label<<((newSite&0x7)*2); } else{ ///Backward: no SL -> SL if(((rand>>4)&0x1) != 0) return; prevBond = rand&0x1; if(EdgeOutside(site, (~prev)&0xf)|EdgeOutside(site,next)) return; if(! GPUValidateAddUnitVectors(next,prev,&bond)) return; oldNextSite = AddUnitToSite(next, site); oldPrevSite = AddUnitToSite((~prev)&0xf, site); bondSite = (prevBond)?oldPrevSite:oldNextSite; slabBond = slab[bondSite/8]; if(slabBond & (1<<((bondSite&0x7)|16))) return; slab[bondSite/8] = slabBond | (1<<((bondSite&0x7)|16)); slabSite = slab[site/8]; label = (slabSite>>(2*(site&0x7)))&0x1; slab[site/8] = slabSite&(~(1<<(2*(site&0x7)))); slabBond = slab[bondSite/8]; if(prevBond){ slabBond |= (slabBond&(1<<(2*(bondSite&0x7))))<<1; slabBond &= ~(1<<(2*(bondSite&0x7))); } slab[bondSite/8] = slabBond | (label<<((2*(bondSite&0x7))|(prevBond^0x1))); lattice[site/4] = latSiteComplete &(~(0xff<<((site&0x3)*8))); latPrev = lattice[oldPrevSite/4]; latPrev &= ~(0xf<<((oldPrevSite%4)*8)); latPrev |= (bond<<((oldPrevSite%4)*8)); lattice[oldPrevSite/4] = latPrev; latNext = lattice[oldNextSite/4]; latNext &= ~(0xf0<<((oldNextSite%4)*8)); latNext |= (bond<<((oldNextSite%4)*8+4)); lattice[oldNextSite/4] = latNext; } } __device__ void DiffuseSL(uint* lattice, uint site, uint* slab){ uint next, nextSite, tsl; uint bit, nBit, lBit, lnBit; uint slabSite, slabNext, label; next = NextPrev(site, lattice); next &= 0xf; if(!next || EdgeOutside(site, next)) return; nextSite = AddUnitToSite(next,site); slabSite = slab[site/8]; slabNext = slab[nextSite/8]; bit = 16|(site&0x7); nBit = 16|(nextSite&0x7); lBit = (site&0x7)*2; lnBit = (nextSite&0x7)*2; if((slabSite&(1<<bit)) && !(slabNext&(1<<nBit))){ label = slabSite&(0x3<<lBit); slabSite &= ~(0x3<<lBit); slabSite |= (label&(0x2<<lBit))>>1; label = (label>>lBit)&0x1; slabNext |= label<<(lnBit+1); } else if(!(slabSite&(1<<bit)) && (slabNext&(1<<nBit))){ label = (slabNext>>(lnBit+1))&0x1; slabNext &= ~(1<<(lnBit+1)); slabSite |= (slabSite&(1<<lBit))<<1; slabSite &= ~(1<<lBit); slabSite |= label<<lBit; } else return; tsl = ((slabSite>>bit) & 0x1)<<nBit; slabSite &= ~(1<<bit); slabSite |= ((slabNext>>nBit)&0x1)<<bit; slabNext &= ~(1<<nBit); slabNext |= tsl; if(site/8 == nextSite/8){ slab[site/8] = (slabSite&((0x3<<lBit)|(0x1<<bit)))|(slabNext&(~((0x3<<lBit)|(0x1<<bit)))); } else{ slab[site/8] = slabSite; slab[nextSite/8] = slabNext; } } __device__ uint EdgeOutside(uint site, uint next){ int t,u,v,w; w = next>>3; t = (next&0x1) -w; u = ((next&0x2)>>1)-w; v = ((next&0x4)>>2)-w; if((site&T_MASK) == 0 && t<0) return 1; if((site&T_MASK) == T_MASK && t>0) return 1; if((site&U_MASK) == 0 && u<0) return 1; if((site&U_MASK) == U_MASK && u>0) return 1; if((site&V_MASK) == 0 && v<0) return 1; if((site&V_MASK) == V_MASK && v>0) return 1; return 0; } __device__ int LocalSiteToSite(uint localSite){ localSite |= (localSite&0x10)<<3; localSite |= (localSite&0x20)<<6; localSite &= CELL_MASK; return localSite; } __device__ void SetEdges(uint* sledge, uint* lattice, uint lidSiteStart){ uint site, lSite; uint next,prev; for(lSite=0; lSite<CELL_SIZE; lSite++){ site = lidSiteStart|LocalSiteToSite(lSite); next = NextPrev(site, lattice); prev = (~(next>>4))&0xf; next &= 0xf; sledge[site>>3] |= EdgeOutside(site, next)<<(2*(site&0x7)); sledge[site>>3] |= EdgeOutside(site, prev)<<(2*(site&0x7)+1); } } __global__ void polmove(uint nStep, uint4* seeds, uint* gLattice, uint* gTrans, uint tuvOffset, uint NWT, uint NWU, uint NWV){ __shared__ uint lattice[BLOCK_SIZE/4]; __shared__ uint slab[BLOCK_SIZE/8]; uint trans[4]; uint locId, localOffset,t,u,v, destId, memAddr, unit; uint tOffset, uOffset, vOffset; uint lid = threadIdx.x; uint wid = blockIdx.x; uint gid = wid * blockDim.x + lid; uint i; uint lidSiteStart; uint4 rngl; uint4 rngp; uint site, lSite; for(i=0; i<4; i++) trans[i] = gTrans[i]; tOffset = tuvOffset%WLT; uOffset = (tuvOffset/WLT)%(WLU); vOffset = tuvOffset/(WLT*WLU); tOffset += ((lid&0x7)<<2)|((wid%NWT)*CELL_LENGTH*WST); uOffset += ((lid&0x38)>>1)|(((wid/NWT)%NWU)*CELL_LENGTH*WSU); vOffset += ((lid&0x1c0)>>4)|((wid/NWU/NWT)*CELL_LENGTH*WSV); localOffset = ((lid&0x7)<<4)|((lid&0x38)<<5)|((lid&0x1c0)<<6); for(locId=0; locId<CELL_SIZE/4; locId++){ destId=(locId&0x3)|((locId&0x4)<<3)|((locId&0x8)<<6); destId |= localOffset>>2; lattice[destId]=0; } for(locId=0; locId<CELL_SIZE/8; locId++){ destId=(locId&0x1)|((locId&0x2)<<3)|((locId&0x4)<<6); destId |= localOffset>>3; slab[destId]=0; } for(locId=0; locId<CELL_SIZE; locId++){ t = tOffset+(locId&0x3); u = uOffset+((locId>>2)&0x3); v = vOffset+((locId>>4)&0x3); t %= NWT*CELL_LENGTH*WST; u %= NWU*CELL_LENGTH*WSU; v %= NWV*CELL_LENGTH*WSV; memAddr = ((t&0x3)<<9)|((t&0x1c)>>2) | ((u&0x3)<<11) | ((u&0x1c)<<1) | ((v&0x3)<<13) | ((v&0x1c)<<4); memAddr |= ((t>>5)+(u>>5)*NWT+(v>>5)*NWT*NWU)<<15; unit = gLattice[memAddr]; destId = (locId&0x1)|((locId&0x2)<<2)|((locId&0x4)>>1)|((locId&0x8)<<4)|((locId&0x10)>>2)|((locId&0x20)<<6); destId |= localOffset; lattice[destId/4] |= (unit&0xff)<<(8*(destId%4)); slab[destId/8] |= ((unit&0x100)>>8)<<(16|(destId&0x7)); slab[destId/8] |= ((unit&0x600)>>9)<<((destId&0x7)*2); } lidSiteStart = ((lid&0x7)<<4)|((lid&0x38)<<5)|((lid&0x1c0)<<6); // SetEdges(sledge, lattice, lidSiteStart); rngp = seeds[gid*2]; rngl = seeds[gid*2+1]; for(i=0; i<nStep; i++){ __syncthreads(); site = lidSiteStart | (Rng4(&rngl)&CELL_MASK); DiffuseSL(lattice, site, slab); __syncthreads(); site = lidSiteStart | (Rng4(&rngl)&CELL_MASK); TransMove(lattice, site, slab, trans, &rngp); } __syncthreads(); for(locId=0; locId<CELL_SIZE; locId++){ t = tOffset+(locId&0x3); u = uOffset+((locId>>2)&0x3); v = vOffset+((locId>>4)&0x3); t %= NWT*CELL_LENGTH*WST; u %= NWU*CELL_LENGTH*WSU; v %= NWV*CELL_LENGTH*WSV; memAddr = ((t&0x3)<<9)|((t&0x1c)>>2) | ((u&0x3)<<11) | ((u&0x1c)<<1) | ((v&0x3)<<13) | ((v&0x1c)<<4); memAddr |= ((t>>5)+(u>>5)*NWT+(v>>5)*NWT*NWU)<<15; destId = (locId&0x1)|((locId&0x2)<<2)|((locId&0x4)>>1)|((locId&0x8)<<4)|((locId&0x10)>>2)|((locId&0x20)<<6); destId |= localOffset; unit = (lattice[destId/4]>>(8*(destId%4)))&0xff; unit |= ((slab[destId/8]>>(16|(destId&0x7)))&0x1)<<8; unit |= ((slab[destId/8]>>(2*(destId&0x7)))&0x3)<<9; gLattice[memAddr]=unit; } seeds[gid*2]=rngp; seeds[gid*2+1]=rngl; __syncthreads(); }
19,500
/****************************************************************************** * PROGRAM: copyStruture * PURPOSE: This program is a test which test the ability to transfer multilevel * C++ structured data from host to device, modify them and transfer back. * * * NAME: Vuong Pham-Duy. * College student. * Faculty of Computer Science and Technology. * Ho Chi Minh University of Technology, Viet Nam. * vuongpd95@gmail.com * * DATE: 5/10/2017 * ******************************************************************************/ #include "cuda_runtime.h" #include "device_launch_parameters.h" #include <stdio.h> #include <stdlib.h> #define gpuErrchk(ans) { gpuAssert((ans), __FILE__, __LINE__); } void gpuAssert(cudaError_t code, const char *file, int line, bool abort = true) { if (code != cudaSuccess) { fprintf(stderr, "GPUassert: %s %s %d\n", \ cudaGetErrorString(code), file, line); if (abort) exit(code); } } __global__ void func(int *value) { printf("value[%d] = %d\nvalue[%d] = %d\n", \ value[0], value[0], value[1], value[1]); } int main(int argc, char *argv[]) { int *value; gpuErrchk(cudaMallocManaged(&value, 2 * sizeof(int))); value[0] = 0; value[1] = 1; func<<<1, 1>>>(value); gpuErrchk(cudaDeviceSynchronize()); gpuErrchk(cudaFree(value)); return 0; }